bug fixed

This commit is contained in:
richard-loafle 2020-04-03 17:05:33 +09:00
parent 4d0b7690ce
commit 14516f5516
3 changed files with 6 additions and 12 deletions

6
package-lock.json generated
View File

@ -1771,9 +1771,9 @@
"integrity": "sha512-RpCoRJWmHAFVZH809cYyNnHNwCZ3CuJA185d9kzAsIDUq6Y4FPAoGedUfUtZjwiMCfsP582f87sJzMUmVkn8IQ=="
},
"@ucap/core": {
"version": "0.0.6",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@ucap/core/-/core-0.0.6.tgz",
"integrity": "sha512-nLu1l7LzxgB/prkpxiWnF8yBpWRLZps8xRzRVpsC9bzxNsfoKC9ZYsUc48BYY0VlDNNb91oe8B+Dt4ec8q88fQ=="
"version": "0.0.7",
"resolved": "http://10.81.13.221:8081/nexus/repository/npm-all/@ucap/core/-/core-0.0.7.tgz",
"integrity": "sha512-ZtqTkACF5EeIXdJvU6H9eJwPstDhL5I8dQReQi522tZ255505dtt2gdA240dMWgECBU3lxNcnpeDEnbbJxz3dg=="
},
"@ucap/logger": {
"version": "0.0.7",

View File

@ -37,7 +37,7 @@
"@ucap/api-message": "~0.0.3",
"@ucap/api-prompt": "~0.0.3",
"@ucap/api-public": "~0.0.4",
"@ucap/core": "~0.0.6",
"@ucap/core": "~0.0.7",
"@ucap/logger": "~0.0.7",
"@ucap/native": "~0.0.6",
"@ucap/native-browser": "~0.0.5",

View File

@ -1,14 +1,8 @@
import { LocaleCode } from '@ucap/core';
import { UserStore as UCAPUserStore } from '@ucap/core';
import { Settings } from './settings';
export interface UserStore {
loginId?: string;
loginPw?: string;
rememberMe?: boolean;
companyCode?: string;
companyGroupType?: string;
localeCode?: LocaleCode;
export interface UserStore extends UCAPUserStore {
idleCheckTime?: number;
settings?: Settings;