@d19n/youfibre-odin-sdk 2.0.62 → 2.0.63
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.
|
@@ -22,7 +22,7 @@ export interface CreateUserMessage extends OdinRecordCreatedEvent<CreateUserDto,
|
|
|
22
22
|
* Properties for CreateUser action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 13
|
|
26
26
|
*/
|
|
27
27
|
export interface CreateUserProperties {
|
|
28
28
|
/**
|
|
@@ -109,6 +109,13 @@ export interface CreateUserProperties {
|
|
|
109
109
|
* @type {TEXT}
|
|
110
110
|
*/
|
|
111
111
|
EmailAddress?: string | null;
|
|
112
|
+
/**
|
|
113
|
+
* FullName
|
|
114
|
+
*
|
|
115
|
+
* FullName used as
|
|
116
|
+
* @type {TEXT}
|
|
117
|
+
*/
|
|
118
|
+
FullName?: string | null;
|
|
112
119
|
}
|
|
113
120
|
/**
|
|
114
121
|
* CreateUser
|
|
@@ -95,6 +95,8 @@ export declare enum UserPropertyKeys {
|
|
|
95
95
|
UseResponseId = "UseResponseId",
|
|
96
96
|
/** TwilioWorkerStatus (IT Security - User) */
|
|
97
97
|
TwilioWorkerStatus = "TwilioWorkerStatus",
|
|
98
|
+
/** FullName used as */
|
|
99
|
+
FullName = "FullName",
|
|
98
100
|
/** email address (IT Security - User) */
|
|
99
101
|
EmailAddress = "EmailAddress"
|
|
100
102
|
}
|
|
@@ -209,6 +211,11 @@ export interface UserProperties {
|
|
|
209
211
|
* @type {TEXT}
|
|
210
212
|
*/
|
|
211
213
|
TwilioWorkerStatus: string;
|
|
214
|
+
/** FullName used as
|
|
215
|
+
*
|
|
216
|
+
* @type {TEXT}
|
|
217
|
+
*/
|
|
218
|
+
FullName: string;
|
|
212
219
|
/** email address (IT Security - User)
|
|
213
220
|
*
|
|
214
221
|
* @type {TEXT}
|
package/dist/entities-v2/User.js
CHANGED
|
@@ -80,6 +80,8 @@ var UserPropertyKeys;
|
|
|
80
80
|
UserPropertyKeys["UseResponseId"] = "UseResponseId";
|
|
81
81
|
/** TwilioWorkerStatus (IT Security - User) */
|
|
82
82
|
UserPropertyKeys["TwilioWorkerStatus"] = "TwilioWorkerStatus";
|
|
83
|
+
/** FullName used as */
|
|
84
|
+
UserPropertyKeys["FullName"] = "FullName";
|
|
83
85
|
/** email address (IT Security - User) */
|
|
84
86
|
UserPropertyKeys["EmailAddress"] = "EmailAddress";
|
|
85
87
|
})(UserPropertyKeys = exports.UserPropertyKeys || (exports.UserPropertyKeys = {}));
|