@smartytalent/api-client 0.5.0 → 0.5.2
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/apis/UsersApi.d.ts +4 -4
- package/dist/apis/UsersApi.js +4 -4
- package/dist/models/UserAttributesSchema.d.ts +18 -0
- package/dist/models/UserAttributesSchema.d.ts.map +1 -1
- package/dist/models/UserAttributesSchema.js +6 -0
- package/dist/models/UserAttributesSchema.js.map +1 -1
- package/package.json +1 -1
package/dist/apis/UsersApi.d.ts
CHANGED
|
@@ -91,12 +91,12 @@ export declare class UsersApi extends runtime.BaseAPI {
|
|
|
91
91
|
*/
|
|
92
92
|
createUserRequestOpts(requestParameters: CreateUserRequest): Promise<runtime.RequestOpts>;
|
|
93
93
|
/**
|
|
94
|
-
* Creates a new user in your account. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
94
|
+
* Creates a new user in your account. By default Cognito sends the invitation email with a temporary password (valid 7 days). Manual credentials: `sendInvitation: false` suppresses the email; the request must then carry `password` (write-only, never returned or logged). With `passwordPermanent: false` (default) the user must change the password at first sign-in; `true` activates the account immediately. Both toggles require role sysowner/owner/admin. Attaching a `role` relationship assigns the user\'s role at birth - this is privilege assignment, so it requires role sysowner/owner/admin, the role must exist, and assigning `owner`/`sysowner` requires standing on that rung. Creates without a role are open to any write-capable caller; the account then has no role and lands read-only. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
95
95
|
* Create User
|
|
96
96
|
*/
|
|
97
97
|
createUserRaw(requestParameters: CreateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserSchema>>;
|
|
98
98
|
/**
|
|
99
|
-
* Creates a new user in your account. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
99
|
+
* Creates a new user in your account. By default Cognito sends the invitation email with a temporary password (valid 7 days). Manual credentials: `sendInvitation: false` suppresses the email; the request must then carry `password` (write-only, never returned or logged). With `passwordPermanent: false` (default) the user must change the password at first sign-in; `true` activates the account immediately. Both toggles require role sysowner/owner/admin. Attaching a `role` relationship assigns the user\'s role at birth - this is privilege assignment, so it requires role sysowner/owner/admin, the role must exist, and assigning `owner`/`sysowner` requires standing on that rung. Creates without a role are open to any write-capable caller; the account then has no role and lands read-only. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
100
100
|
* Create User
|
|
101
101
|
*/
|
|
102
102
|
createUser(requestParameters: CreateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserSchema>;
|
|
@@ -245,12 +245,12 @@ export declare class UsersApi extends runtime.BaseAPI {
|
|
|
245
245
|
*/
|
|
246
246
|
updateUserRequestOpts(requestParameters: UpdateUserRequest): Promise<runtime.RequestOpts>;
|
|
247
247
|
/**
|
|
248
|
-
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched.
|
|
248
|
+
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. Sending `role` with `data: null` (unassign) is rejected - every user keeps exactly one role. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched. `password`, `sendInvitation` and `passwordPermanent` are create-only and rejected here.
|
|
249
249
|
* Update User
|
|
250
250
|
*/
|
|
251
251
|
updateUserRaw(requestParameters: UpdateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserSchema>>;
|
|
252
252
|
/**
|
|
253
|
-
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched.
|
|
253
|
+
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. Sending `role` with `data: null` (unassign) is rejected - every user keeps exactly one role. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched. `password`, `sendInvitation` and `passwordPermanent` are create-only and rejected here.
|
|
254
254
|
* Update User
|
|
255
255
|
*/
|
|
256
256
|
updateUser(requestParameters: UpdateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserSchema>;
|
package/dist/apis/UsersApi.js
CHANGED
|
@@ -80,7 +80,7 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
80
80
|
};
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
* Creates a new user in your account. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
83
|
+
* Creates a new user in your account. By default Cognito sends the invitation email with a temporary password (valid 7 days). Manual credentials: `sendInvitation: false` suppresses the email; the request must then carry `password` (write-only, never returned or logged). With `passwordPermanent: false` (default) the user must change the password at first sign-in; `true` activates the account immediately. Both toggles require role sysowner/owner/admin. Attaching a `role` relationship assigns the user\'s role at birth - this is privilege assignment, so it requires role sysowner/owner/admin, the role must exist, and assigning `owner`/`sysowner` requires standing on that rung. Creates without a role are open to any write-capable caller; the account then has no role and lands read-only. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
84
84
|
* Create User
|
|
85
85
|
*/
|
|
86
86
|
async createUserRaw(requestParameters, initOverrides) {
|
|
@@ -89,7 +89,7 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
89
89
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.UserSchemaFromJSON)(jsonValue));
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
* Creates a new user in your account. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
92
|
+
* Creates a new user in your account. By default Cognito sends the invitation email with a temporary password (valid 7 days). Manual credentials: `sendInvitation: false` suppresses the email; the request must then carry `password` (write-only, never returned or logged). With `passwordPermanent: false` (default) the user must change the password at first sign-in; `true` activates the account immediately. Both toggles require role sysowner/owner/admin. Attaching a `role` relationship assigns the user\'s role at birth - this is privilege assignment, so it requires role sysowner/owner/admin, the role must exist, and assigning `owner`/`sysowner` requires standing on that rung. Creates without a role are open to any write-capable caller; the account then has no role and lands read-only. ### User\'s Attributes Here is a table that describes the attributes of the user object: | Attribute | Type | Description | |----------------------------|--------|-----------------------------------------------------------------------------| | `name` | string | The full name of the user. | | `status` | string | The current status of the user (e.g., active, inactive). | | `timestamps.created` | string | The date and time when the user was created (ISO 8601 format). | | `timestamps.modified` | string | The date and time when the user was last modified (ISO 8601 format). |
|
|
93
93
|
* Create User
|
|
94
94
|
*/
|
|
95
95
|
async createUser(requestParameters, initOverrides) {
|
|
@@ -577,7 +577,7 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
577
577
|
};
|
|
578
578
|
}
|
|
579
579
|
/**
|
|
580
|
-
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched.
|
|
580
|
+
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. Sending `role` with `data: null` (unassign) is rejected - every user keeps exactly one role. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched. `password`, `sendInvitation` and `passwordPermanent` are create-only and rejected here.
|
|
581
581
|
* Update User
|
|
582
582
|
*/
|
|
583
583
|
async updateUserRaw(requestParameters, initOverrides) {
|
|
@@ -586,7 +586,7 @@ class UsersApi extends runtime.BaseAPI {
|
|
|
586
586
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.UserSchemaFromJSON)(jsonValue));
|
|
587
587
|
}
|
|
588
588
|
/**
|
|
589
|
-
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched.
|
|
589
|
+
* This endpoint allows you to update details of a specific user in your account. You can modify information such as name, and other relevant attributes of the user. Only the fields provided in the request will be updated. Role change: a to-one `role` relationship in the request switches the user\'s role (and their Cognito `custom:userRole`). Callers need role sysowner/owner/admin; assigning or displacing `owner`/`sysowner` requires standing on that rung; system users\' roles cannot be changed. Sending `role` with `data: null` (unassign) is rejected - every user keeps exactly one role. `jobs`/`apikeys` relationships are ignored on update. Status change: `status` flips between `active` and `archived` and enables/disables the Cognito account accordingly (the restore door for a soft-deleted user). An actual status transition requires role sysowner/owner/admin, and archiving/restoring a user holding `owner`/`sysowner` requires standing on that rung. Omitting `status` (or echoing the current value) leaves permissions checks untouched. `password`, `sendInvitation` and `passwordPermanent` are create-only and rejected here.
|
|
590
590
|
* Update User
|
|
591
591
|
*/
|
|
592
592
|
async updateUser(requestParameters, initOverrides) {
|
|
@@ -97,6 +97,24 @@ export interface UserAttributesSchema {
|
|
|
97
97
|
* @memberof UserAttributesSchema
|
|
98
98
|
*/
|
|
99
99
|
avatarUrl?: string;
|
|
100
|
+
/**
|
|
101
|
+
* CREATE-ONLY. Default true: Cognito emails the temporary password. Set false to suppress the invitation - then `password` is required. Requires role sysowner/owner/admin. Rejected on update.
|
|
102
|
+
* @type {boolean}
|
|
103
|
+
* @memberof UserAttributesSchema
|
|
104
|
+
*/
|
|
105
|
+
sendInvitation?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* CREATE-ONLY, never returned. Admin-set password for the new account; requires `sendInvitation: false` and role sysowner/owner/admin. Must satisfy the pool password policy (min 8, upper+lower+digit+symbol). Rejected on update.
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof UserAttributesSchema
|
|
110
|
+
*/
|
|
111
|
+
password?: string;
|
|
112
|
+
/**
|
|
113
|
+
* CREATE-ONLY. False (default): the account lands in FORCE_CHANGE_PASSWORD and the user must change the password at first sign-in. True: the password is permanent and the account is active immediately (audited).
|
|
114
|
+
* @type {boolean}
|
|
115
|
+
* @memberof UserAttributesSchema
|
|
116
|
+
*/
|
|
117
|
+
passwordPermanent?: boolean;
|
|
100
118
|
/**
|
|
101
119
|
*
|
|
102
120
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserAttributesSchema.d.ts","sourceRoot":"","sources":["../../src/models/UserAttributesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAOvE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAQ3E;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;;;;;;;;;OAaG;IACH,IAAI,CAAC,EAAE,4BAA4B,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,4BAA4B,CAAC;IACxC;;;;OAIG;IACH,WAAW,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC;IAC9C;;;;OAIG;IACH,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACzC;AAGD;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;CAG/B,CAAC;AACX,MAAM,MAAM,4BAA4B,GAAG,OAAO,4BAA4B,CAAC,MAAM,OAAO,4BAA4B,CAAC,CAAC;AAG1H;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAI3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,
|
|
1
|
+
{"version":3,"file":"UserAttributesSchema.d.ts","sourceRoot":"","sources":["../../src/models/UserAttributesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAOvE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAQ3E;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;;;;;;;;;OAaG;IACH,IAAI,CAAC,EAAE,4BAA4B,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,4BAA4B,CAAC;IACxC;;;;OAIG;IACH,WAAW,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC;IAC9C;;;;OAIG;IACH,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACzC;AAGD;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;CAG/B,CAAC;AACX,MAAM,MAAM,4BAA4B,GAAG,OAAO,4BAA4B,CAAC,MAAM,OAAO,4BAA4B,CAAC,CAAC;AAG1H;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAI3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAwB/G;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE1E;AAED,wBAAgB,+BAA+B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAyB9H"}
|
|
@@ -58,6 +58,9 @@ function UserAttributesSchemaFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
58
58
|
'settings': json['settings'] == null ? undefined : (0, UserAttributesSchemaSettings_1.UserAttributesSchemaSettingsFromJSON)(json['settings']),
|
|
59
59
|
'connections': json['connections'] == null ? undefined : json['connections'],
|
|
60
60
|
'avatarUrl': json['avatarUrl'] == null ? undefined : json['avatarUrl'],
|
|
61
|
+
'sendInvitation': json['sendInvitation'] == null ? undefined : json['sendInvitation'],
|
|
62
|
+
'password': json['password'] == null ? undefined : json['password'],
|
|
63
|
+
'passwordPermanent': json['passwordPermanent'] == null ? undefined : json['passwordPermanent'],
|
|
61
64
|
'status': json['status'] == null ? undefined : json['status'],
|
|
62
65
|
'historyEvents': json['historyEvents'] == null ? undefined : (json['historyEvents'].map(UserHistoryEventSchema_1.UserHistoryEventSchemaFromJSON)),
|
|
63
66
|
'timestamps': json['timestamps'] == null ? undefined : (0, ResourceTimestampsSchema_1.ResourceTimestampsSchemaFromJSON)(json['timestamps']),
|
|
@@ -82,6 +85,9 @@ function UserAttributesSchemaToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
82
85
|
'settings': (0, UserAttributesSchemaSettings_1.UserAttributesSchemaSettingsToJSON)(value['settings']),
|
|
83
86
|
'connections': value['connections'],
|
|
84
87
|
'avatarUrl': value['avatarUrl'],
|
|
88
|
+
'sendInvitation': value['sendInvitation'],
|
|
89
|
+
'password': value['password'],
|
|
90
|
+
'passwordPermanent': value['passwordPermanent'],
|
|
85
91
|
'status': value['status'],
|
|
86
92
|
'historyEvents': value['historyEvents'] == null ? undefined : (value['historyEvents'].map(UserHistoryEventSchema_1.UserHistoryEventSchemaToJSON)),
|
|
87
93
|
'timestamps': (0, ResourceTimestampsSchema_1.ResourceTimestampsSchemaToJSON)(value['timestamps']),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserAttributesSchema.js","sourceRoot":"","sources":["../../src/models/UserAttributesSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"UserAttributesSchema.js","sourceRoot":"","sources":["../../src/models/UserAttributesSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AA8JH,wEAIC;AAED,oEAEC;AAED,8EAwBC;AAED,gEAEC;AAED,0EAyBC;AA3ND,iFAKwC;AAExC,qEAKkC;AAElC,yEAKoC;AA0HpC;;GAEG;AACU,QAAA,4BAA4B,GAAG;IACxC,KAAK,EAAE,OAAO;IACd,EAAE,EAAE,IAAI;CACF,CAAC;AAIX;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;QAC1D,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC;QAChE,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,mEAAoC,EAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACzG,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;QACrF,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,mBAAmB,EAAE,IAAI,CAAC,mBAAmB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC;QAC9F,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,eAAe,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,eAAe,CAAgB,CAAC,GAAG,CAAC,uDAA8B,CAAC,CAAC;QACxI,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,2DAAgC,EAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KAC9G,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,UAAU,EAAE,IAAA,iEAAkC,EAAC,KAAK,CAAC,UAAU,CAAC,CAAC;QACjE,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC;QACzC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,mBAAmB,EAAE,KAAK,CAAC,mBAAmB,CAAC;QAC/C,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,eAAe,EAAE,KAAK,CAAC,eAAe,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,eAAe,CAAgB,CAAC,GAAG,CAAC,qDAA4B,CAAC,CAAC;QACxI,YAAY,EAAE,IAAA,yDAA8B,EAAC,KAAK,CAAC,YAAY,CAAC,CAAC;KACpE,CAAC;AACN,CAAC"}
|