bug fixed

This commit is contained in:
richard-loafle 2020-04-09 10:29:37 +09:00
parent 072ffb24aa
commit 2ab9c2c9cf
4 changed files with 36 additions and 6 deletions

20
package-lock.json generated
View File

@ -2172,6 +2172,12 @@
"integrity": "sha512-nLu1l7LzxgB/prkpxiWnF8yBpWRLZps8xRzRVpsC9bzxNsfoKC9ZYsUc48BYY0VlDNNb91oe8B+Dt4ec8q88fQ==",
"dev": true
},
"@ucap/logger": {
"version": "0.0.12",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@ucap/logger/-/logger-0.0.12.tgz",
"integrity": "sha512-oBbIQGxuU7xR8s06s8OFgjolZdhS9KKQQ4hPcKq9onngIQfquvPL2ZiaRYdZvWCWD8Ey+NgxJmQcEzsKY8LqcA==",
"dev": true
},
"@ucap/native": {
"version": "0.0.2",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@ucap/native/-/native-0.0.2.tgz",
@ -2363,9 +2369,8 @@
"dev": true
},
"@ucap/ng-store-authentication": {
"version": "file:pack/ucap-ng-store-authentication-0.0.7.tgz",
"integrity": "sha512-6IxxjFYpmN3xC2zIix9BfXbHHKpZeeS09SlT7RujMGt58CPyLnWkCFa/a4NILYQpUaXwQn+CmB1o8nhaZvwMNw==",
"dev": true
"version": "file:pack/ucap-ng-store-authentication-0.0.9.tgz",
"integrity": "sha512-NHOtAZzZpEBvrFk0CpRz+AiGe8keOTvk0No0e/Wy6CqIJFbtUsqUrILNBL8EtulZM5EDXSI2SvKt9iA7olPrEA=="
},
"@ucap/ng-store-chat": {
"version": "file:pack/ucap-ng-store-chat-0.0.4.tgz",
@ -2389,7 +2394,8 @@
},
"@ucap/ng-ui-authentication": {
"version": "file:pack/ucap-ng-ui-authentication-0.0.15.tgz",
"integrity": "sha512-RDDubvBs14kL5yiISq34lPWDMGCitcwmWR3QFYF1gv2X3xEyqzr8Cg35GWIuhyyaSDIx69sG+mn+IYKBarJwlA=="
"integrity": "sha512-RDDubvBs14kL5yiISq34lPWDMGCitcwmWR3QFYF1gv2X3xEyqzr8Cg35GWIuhyyaSDIx69sG+mn+IYKBarJwlA==",
"dev": true
},
"@ucap/ng-ui-organization": {
"version": "file:pack/ucap-ng-ui-organization-0.0.2.tgz",
@ -2514,6 +2520,12 @@
"integrity": "sha512-hKAEsIzMhUuR8u26ENkuIAh4Xp8ltzBlZggxhqtLifP8KbgQdWD3w3+1M1697MPni8q42+Q/ZH/1IHLdi8KB7w==",
"dev": true
},
"@ucap/web-storage": {
"version": "0.0.5",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@ucap/web-storage/-/web-storage-0.0.5.tgz",
"integrity": "sha512-p6xCNGAe/4J45S3rgqkhopH2X9PsCHFgeQGc3cfXq+YT4aVOqkJaLoTFf1fZws3RCly+wSa/qUcNXu4lEPXNHw==",
"dev": true
},
"@webassemblyjs/ast": {
"version": "1.8.5",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@webassemblyjs/ast/-/ast-1.8.5.tgz",

View File

@ -165,7 +165,7 @@
"@ucap/ng-protocol-status": "file:pack/ucap-ng-protocol-status-0.0.3.tgz",
"@ucap/ng-protocol-sync": "file:pack/ucap-ng-protocol-sync-0.0.3.tgz",
"@ucap/ng-protocol-umg": "file:pack/ucap-ng-protocol-umg-0.0.3.tgz",
"@ucap/ng-store-authentication": "file:pack/ucap-ng-store-authentication-0.0.7.tgz",
"@ucap/ng-store-authentication": "file:pack/ucap-ng-store-authentication-0.0.9.tgz",
"@ucap/ng-store-chat": "file:pack/ucap-ng-store-chat-0.0.4.tgz",
"@ucap/ng-store-group": "file:pack/ucap-ng-store-group-0.0.5.tgz",
"@ucap/ng-store-organization": "file:pack/ucap-ng-store-organization-0.0.3.tgz",

View File

@ -1,6 +1,6 @@
{
"name": "@ucap/ng-store-authentication",
"version": "0.0.7",
"version": "0.0.9",
"publishConfig": {
"registry": "http://10.81.13.221:8081/nexus/repository/npm-ucap/"
},

View File

@ -88,3 +88,21 @@ export const logoutFailure = createAction(
'[ucap::authentication::login] logout Failure',
props<{ error: any }>()
);
/**
* session created
*/
export const sessionCreated = createAction(
'[ucap::authentication::login] session Created',
props<{
res: LoginResponse;
loginSession: LoginSession;
}>()
);
/**
* session destroyed
*/
export const sessionDestroyed = createAction(
'[ucap::authentication::login] session Destroyed',
props<{ error: any }>()
);