@equisoft/equisoft-connect-sdk-typescript 13.4.1-snapshot.20240506124930 → 13.5.0
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/dist/esm/models/LegacyProvisioningUserPayload.d.ts +16 -0
- package/dist/esm/models/LegacyProvisioningUserPayload.js +11 -0
- package/dist/models/LegacyProvisioningUserPayload.d.ts +16 -0
- package/dist/models/LegacyProvisioningUserPayload.js +12 -1
- package/package.json +1 -1
- package/src/models/LegacyProvisioningUserPayload.ts +19 -0
|
@@ -86,6 +86,12 @@ export interface LegacyProvisioningUserPayload {
|
|
|
86
86
|
* @memberof LegacyProvisioningUserPayload
|
|
87
87
|
*/
|
|
88
88
|
allowDelegation?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Gender of this user.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof LegacyProvisioningUserPayload
|
|
93
|
+
*/
|
|
94
|
+
gender?: LegacyProvisioningUserPayloadGenderEnum;
|
|
89
95
|
/**
|
|
90
96
|
* Work phone number of this user.
|
|
91
97
|
* @type {string}
|
|
@@ -154,6 +160,16 @@ export declare const LegacyProvisioningUserPayloadRoleEnum: {
|
|
|
154
160
|
readonly unknown_default_open_api: "11184809";
|
|
155
161
|
};
|
|
156
162
|
export type LegacyProvisioningUserPayloadRoleEnum = typeof LegacyProvisioningUserPayloadRoleEnum[keyof typeof LegacyProvisioningUserPayloadRoleEnum];
|
|
163
|
+
/**
|
|
164
|
+
* @export
|
|
165
|
+
*/
|
|
166
|
+
export declare const LegacyProvisioningUserPayloadGenderEnum: {
|
|
167
|
+
readonly F: "F";
|
|
168
|
+
readonly M: "M";
|
|
169
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
170
|
+
readonly unknown_default_open_api: "11184809";
|
|
171
|
+
};
|
|
172
|
+
export type LegacyProvisioningUserPayloadGenderEnum = typeof LegacyProvisioningUserPayloadGenderEnum[keyof typeof LegacyProvisioningUserPayloadGenderEnum];
|
|
157
173
|
/**
|
|
158
174
|
* @export
|
|
159
175
|
*/
|
|
@@ -30,6 +30,15 @@ export const LegacyProvisioningUserPayloadRoleEnum = {
|
|
|
30
30
|
KRONOS: 'KRONOS',
|
|
31
31
|
unknown_default_open_api: '11184809'
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* @export
|
|
35
|
+
*/
|
|
36
|
+
export const LegacyProvisioningUserPayloadGenderEnum = {
|
|
37
|
+
F: 'F',
|
|
38
|
+
M: 'M',
|
|
39
|
+
UNKNOWN: 'UNKNOWN',
|
|
40
|
+
unknown_default_open_api: '11184809'
|
|
41
|
+
};
|
|
33
42
|
/**
|
|
34
43
|
* @export
|
|
35
44
|
*/
|
|
@@ -66,6 +75,7 @@ export function LegacyProvisioningUserPayloadFromJSONTyped(json, ignoreDiscrimin
|
|
|
66
75
|
'requirePasswordChange': !exists(json, 'requirePasswordChange') ? undefined : json['requirePasswordChange'],
|
|
67
76
|
'enableMobile': !exists(json, 'enableMobile') ? undefined : json['enableMobile'],
|
|
68
77
|
'allowDelegation': !exists(json, 'allowDelegation') ? undefined : json['allowDelegation'],
|
|
78
|
+
'gender': !exists(json, 'gender') ? undefined : json['gender'],
|
|
69
79
|
'phoneWork': !exists(json, 'phoneWork') ? undefined : json['phoneWork'],
|
|
70
80
|
'phoneWorkExtension': !exists(json, 'phoneWorkExtension') ? undefined : json['phoneWorkExtension'],
|
|
71
81
|
'phoneHome': !exists(json, 'phoneHome') ? undefined : json['phoneHome'],
|
|
@@ -95,6 +105,7 @@ export function LegacyProvisioningUserPayloadToJSON(value) {
|
|
|
95
105
|
'requirePasswordChange': value.requirePasswordChange,
|
|
96
106
|
'enableMobile': value.enableMobile,
|
|
97
107
|
'allowDelegation': value.allowDelegation,
|
|
108
|
+
'gender': value.gender,
|
|
98
109
|
'phoneWork': value.phoneWork,
|
|
99
110
|
'phoneWorkExtension': value.phoneWorkExtension,
|
|
100
111
|
'phoneHome': value.phoneHome,
|
|
@@ -86,6 +86,12 @@ export interface LegacyProvisioningUserPayload {
|
|
|
86
86
|
* @memberof LegacyProvisioningUserPayload
|
|
87
87
|
*/
|
|
88
88
|
allowDelegation?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Gender of this user.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof LegacyProvisioningUserPayload
|
|
93
|
+
*/
|
|
94
|
+
gender?: LegacyProvisioningUserPayloadGenderEnum;
|
|
89
95
|
/**
|
|
90
96
|
* Work phone number of this user.
|
|
91
97
|
* @type {string}
|
|
@@ -154,6 +160,16 @@ export declare const LegacyProvisioningUserPayloadRoleEnum: {
|
|
|
154
160
|
readonly unknown_default_open_api: "11184809";
|
|
155
161
|
};
|
|
156
162
|
export type LegacyProvisioningUserPayloadRoleEnum = typeof LegacyProvisioningUserPayloadRoleEnum[keyof typeof LegacyProvisioningUserPayloadRoleEnum];
|
|
163
|
+
/**
|
|
164
|
+
* @export
|
|
165
|
+
*/
|
|
166
|
+
export declare const LegacyProvisioningUserPayloadGenderEnum: {
|
|
167
|
+
readonly F: "F";
|
|
168
|
+
readonly M: "M";
|
|
169
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
170
|
+
readonly unknown_default_open_api: "11184809";
|
|
171
|
+
};
|
|
172
|
+
export type LegacyProvisioningUserPayloadGenderEnum = typeof LegacyProvisioningUserPayloadGenderEnum[keyof typeof LegacyProvisioningUserPayloadGenderEnum];
|
|
157
173
|
/**
|
|
158
174
|
* @export
|
|
159
175
|
*/
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.LegacyProvisioningUserPayloadToJSON = exports.LegacyProvisioningUserPayloadFromJSONTyped = exports.LegacyProvisioningUserPayloadFromJSON = exports.instanceOfLegacyProvisioningUserPayload = exports.LegacyProvisioningUserPayloadPhoneMainEnum = exports.LegacyProvisioningUserPayloadRoleEnum = exports.LegacyProvisioningUserPayloadLangEnum = void 0;
|
|
16
|
+
exports.LegacyProvisioningUserPayloadToJSON = exports.LegacyProvisioningUserPayloadFromJSONTyped = exports.LegacyProvisioningUserPayloadFromJSON = exports.instanceOfLegacyProvisioningUserPayload = exports.LegacyProvisioningUserPayloadPhoneMainEnum = exports.LegacyProvisioningUserPayloadGenderEnum = exports.LegacyProvisioningUserPayloadRoleEnum = exports.LegacyProvisioningUserPayloadLangEnum = void 0;
|
|
17
17
|
const runtime_1 = require("../runtime");
|
|
18
18
|
const LegacyContactAddress_1 = require("./LegacyContactAddress");
|
|
19
19
|
/**
|
|
@@ -33,6 +33,15 @@ exports.LegacyProvisioningUserPayloadRoleEnum = {
|
|
|
33
33
|
KRONOS: 'KRONOS',
|
|
34
34
|
unknown_default_open_api: '11184809'
|
|
35
35
|
};
|
|
36
|
+
/**
|
|
37
|
+
* @export
|
|
38
|
+
*/
|
|
39
|
+
exports.LegacyProvisioningUserPayloadGenderEnum = {
|
|
40
|
+
F: 'F',
|
|
41
|
+
M: 'M',
|
|
42
|
+
UNKNOWN: 'UNKNOWN',
|
|
43
|
+
unknown_default_open_api: '11184809'
|
|
44
|
+
};
|
|
36
45
|
/**
|
|
37
46
|
* @export
|
|
38
47
|
*/
|
|
@@ -71,6 +80,7 @@ function LegacyProvisioningUserPayloadFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
71
80
|
'requirePasswordChange': !(0, runtime_1.exists)(json, 'requirePasswordChange') ? undefined : json['requirePasswordChange'],
|
|
72
81
|
'enableMobile': !(0, runtime_1.exists)(json, 'enableMobile') ? undefined : json['enableMobile'],
|
|
73
82
|
'allowDelegation': !(0, runtime_1.exists)(json, 'allowDelegation') ? undefined : json['allowDelegation'],
|
|
83
|
+
'gender': !(0, runtime_1.exists)(json, 'gender') ? undefined : json['gender'],
|
|
74
84
|
'phoneWork': !(0, runtime_1.exists)(json, 'phoneWork') ? undefined : json['phoneWork'],
|
|
75
85
|
'phoneWorkExtension': !(0, runtime_1.exists)(json, 'phoneWorkExtension') ? undefined : json['phoneWorkExtension'],
|
|
76
86
|
'phoneHome': !(0, runtime_1.exists)(json, 'phoneHome') ? undefined : json['phoneHome'],
|
|
@@ -101,6 +111,7 @@ function LegacyProvisioningUserPayloadToJSON(value) {
|
|
|
101
111
|
'requirePasswordChange': value.requirePasswordChange,
|
|
102
112
|
'enableMobile': value.enableMobile,
|
|
103
113
|
'allowDelegation': value.allowDelegation,
|
|
114
|
+
'gender': value.gender,
|
|
104
115
|
'phoneWork': value.phoneWork,
|
|
105
116
|
'phoneWorkExtension': value.phoneWorkExtension,
|
|
106
117
|
'phoneHome': value.phoneHome,
|
package/package.json
CHANGED
|
@@ -96,6 +96,12 @@ export interface LegacyProvisioningUserPayload {
|
|
|
96
96
|
* @memberof LegacyProvisioningUserPayload
|
|
97
97
|
*/
|
|
98
98
|
allowDelegation?: string;
|
|
99
|
+
/**
|
|
100
|
+
* Gender of this user.
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof LegacyProvisioningUserPayload
|
|
103
|
+
*/
|
|
104
|
+
gender?: LegacyProvisioningUserPayloadGenderEnum;
|
|
99
105
|
/**
|
|
100
106
|
* Work phone number of this user.
|
|
101
107
|
* @type {string}
|
|
@@ -168,6 +174,17 @@ export const LegacyProvisioningUserPayloadRoleEnum = {
|
|
|
168
174
|
} as const;
|
|
169
175
|
export type LegacyProvisioningUserPayloadRoleEnum = typeof LegacyProvisioningUserPayloadRoleEnum[keyof typeof LegacyProvisioningUserPayloadRoleEnum];
|
|
170
176
|
|
|
177
|
+
/**
|
|
178
|
+
* @export
|
|
179
|
+
*/
|
|
180
|
+
export const LegacyProvisioningUserPayloadGenderEnum = {
|
|
181
|
+
F: 'F',
|
|
182
|
+
M: 'M',
|
|
183
|
+
UNKNOWN: 'UNKNOWN',
|
|
184
|
+
unknown_default_open_api: '11184809'
|
|
185
|
+
} as const;
|
|
186
|
+
export type LegacyProvisioningUserPayloadGenderEnum = typeof LegacyProvisioningUserPayloadGenderEnum[keyof typeof LegacyProvisioningUserPayloadGenderEnum];
|
|
187
|
+
|
|
171
188
|
/**
|
|
172
189
|
* @export
|
|
173
190
|
*/
|
|
@@ -211,6 +228,7 @@ export function LegacyProvisioningUserPayloadFromJSONTyped(json: any, ignoreDisc
|
|
|
211
228
|
'requirePasswordChange': !exists(json, 'requirePasswordChange') ? undefined : json['requirePasswordChange'],
|
|
212
229
|
'enableMobile': !exists(json, 'enableMobile') ? undefined : json['enableMobile'],
|
|
213
230
|
'allowDelegation': !exists(json, 'allowDelegation') ? undefined : json['allowDelegation'],
|
|
231
|
+
'gender': !exists(json, 'gender') ? undefined : json['gender'],
|
|
214
232
|
'phoneWork': !exists(json, 'phoneWork') ? undefined : json['phoneWork'],
|
|
215
233
|
'phoneWorkExtension': !exists(json, 'phoneWorkExtension') ? undefined : json['phoneWorkExtension'],
|
|
216
234
|
'phoneHome': !exists(json, 'phoneHome') ? undefined : json['phoneHome'],
|
|
@@ -242,6 +260,7 @@ export function LegacyProvisioningUserPayloadToJSON(value?: LegacyProvisioningUs
|
|
|
242
260
|
'requirePasswordChange': value.requirePasswordChange,
|
|
243
261
|
'enableMobile': value.enableMobile,
|
|
244
262
|
'allowDelegation': value.allowDelegation,
|
|
263
|
+
'gender': value.gender,
|
|
245
264
|
'phoneWork': value.phoneWork,
|
|
246
265
|
'phoneWorkExtension': value.phoneWorkExtension,
|
|
247
266
|
'phoneHome': value.phoneHome,
|