@d19n/youfibre-odin-sdk 2.0.65 → 2.0.66
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 UpdateUserMessage extends OdinRecordUpdatedEvent<UpdateUserDto,
|
|
|
22
22
|
* Properties for UpdateUser action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 20
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateUserProperties {
|
|
28
28
|
/**
|
|
@@ -158,6 +158,13 @@ export interface UpdateUserProperties {
|
|
|
158
158
|
* @type {TEXT}
|
|
159
159
|
*/
|
|
160
160
|
TwilioSid?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
* Status
|
|
163
|
+
*
|
|
164
|
+
* status of the user (IT Security - User)
|
|
165
|
+
* @type {TEXT}
|
|
166
|
+
*/
|
|
167
|
+
Status?: string | null;
|
|
161
168
|
}
|
|
162
169
|
/**
|
|
163
170
|
* UpdateUser
|
|
@@ -57,12 +57,12 @@ export declare enum UserAccredited {
|
|
|
57
57
|
* Use these constants instead of string literals for type safety
|
|
58
58
|
*/
|
|
59
59
|
export declare enum UserPropertyKeys {
|
|
60
|
-
/** status of the user (IT Security - User) */
|
|
61
|
-
Status = "Status",
|
|
62
60
|
/** Reference identifier for User relationships. Used for data integrity. */
|
|
63
61
|
TwilioSid = "TwilioSid",
|
|
64
62
|
/** the team name (IT Security - User) */
|
|
65
63
|
Team = "Team",
|
|
64
|
+
/** status of the user (IT Security - User) */
|
|
65
|
+
Status = "Status",
|
|
66
66
|
/** TwilioWorker (IT Security - User) */
|
|
67
67
|
TwilioWorker = "TwilioWorker",
|
|
68
68
|
/** The working area is aligned with an (EX polygon ID) (IT Security - User) */
|
|
@@ -106,12 +106,6 @@ export declare enum UserPropertyKeys {
|
|
|
106
106
|
* @see IdentityModule:User
|
|
107
107
|
*/
|
|
108
108
|
export interface UserProperties {
|
|
109
|
-
/** status of the user (IT Security - User)
|
|
110
|
-
*
|
|
111
|
-
* @type {TEXT}
|
|
112
|
-
* @hidden This field is hidden in the UI
|
|
113
|
-
*/
|
|
114
|
-
Status: string;
|
|
115
109
|
/** Reference identifier for User relationships. Used for data integrity.
|
|
116
110
|
*
|
|
117
111
|
* @type {TEXT}
|
|
@@ -123,6 +117,11 @@ export interface UserProperties {
|
|
|
123
117
|
* @tracked Changes to this field are tracked in audit history
|
|
124
118
|
*/
|
|
125
119
|
Team: string;
|
|
120
|
+
/** status of the user (IT Security - User)
|
|
121
|
+
*
|
|
122
|
+
* @type {TEXT}
|
|
123
|
+
*/
|
|
124
|
+
Status: string;
|
|
126
125
|
/** TwilioWorker (IT Security - User)
|
|
127
126
|
*
|
|
128
127
|
* @type {BOOLEAN}
|
package/dist/entities-v2/User.js
CHANGED
|
@@ -42,12 +42,12 @@ var UserAccredited;
|
|
|
42
42
|
*/
|
|
43
43
|
var UserPropertyKeys;
|
|
44
44
|
(function (UserPropertyKeys) {
|
|
45
|
-
/** status of the user (IT Security - User) */
|
|
46
|
-
UserPropertyKeys["Status"] = "Status";
|
|
47
45
|
/** Reference identifier for User relationships. Used for data integrity. */
|
|
48
46
|
UserPropertyKeys["TwilioSid"] = "TwilioSid";
|
|
49
47
|
/** the team name (IT Security - User) */
|
|
50
48
|
UserPropertyKeys["Team"] = "Team";
|
|
49
|
+
/** status of the user (IT Security - User) */
|
|
50
|
+
UserPropertyKeys["Status"] = "Status";
|
|
51
51
|
/** TwilioWorker (IT Security - User) */
|
|
52
52
|
UserPropertyKeys["TwilioWorker"] = "TwilioWorker";
|
|
53
53
|
/** The working area is aligned with an (EX polygon ID) (IT Security - User) */
|