gant-core 0.1.49 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cli/index.js +42 -29
- package/lib/cli/index.js.map +1 -1
- package/lib/index.d.ts +10 -2
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1791,7 +1791,7 @@ type SYSMGMT_CONFIG_TYPE = {
|
|
|
1791
1791
|
ediable?: boolean;
|
|
1792
1792
|
updatePassword?: boolean;
|
|
1793
1793
|
storageClear?: boolean;
|
|
1794
|
-
staffNumberFormat
|
|
1794
|
+
staffNumberFormat?: RegExp;
|
|
1795
1795
|
};
|
|
1796
1796
|
workflowConfig?: {
|
|
1797
1797
|
onStartAutoSelectOwner?: boolean;
|
|
@@ -1958,7 +1958,7 @@ interface UserAggregateInfo {
|
|
|
1958
1958
|
isSuperAdmin: boolean;
|
|
1959
1959
|
roles: any[];
|
|
1960
1960
|
startMenus: any[];
|
|
1961
|
-
user:
|
|
1961
|
+
user: User;
|
|
1962
1962
|
}
|
|
1963
1963
|
interface User {
|
|
1964
1964
|
extOrganizationIds?: string[];
|
|
@@ -1968,6 +1968,14 @@ interface User {
|
|
|
1968
1968
|
userLoginName: string;
|
|
1969
1969
|
userName: string;
|
|
1970
1970
|
pictureId?: string;
|
|
1971
|
+
gender?: string;
|
|
1972
|
+
userType?: string;
|
|
1973
|
+
organizationId: string;
|
|
1974
|
+
organizationIdDisplayName?: string;
|
|
1975
|
+
position?: string;
|
|
1976
|
+
email?: string;
|
|
1977
|
+
mobil?: string;
|
|
1978
|
+
telephone?: string;
|
|
1971
1979
|
}
|
|
1972
1980
|
type Perferences = {
|
|
1973
1981
|
numberFormat?: string;
|
package/lib/index.js
CHANGED