@equisoft/account-service-sdk-typescript 9.10.1-snapshot.20250901223036 → 9.10.1-snapshot.20250912125542
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/UserApi.js +1 -1
- package/dist/esm/apis/UserApi.js +1 -1
- package/dist/esm/models/OAuthClient.d.ts +2 -2
- package/dist/esm/models/UpdateOAuthClientPayload.d.ts +2 -2
- package/dist/esm/models/UserState.d.ts +9 -0
- package/dist/esm/models/UserState.js +9 -0
- package/dist/models/OAuthClient.d.ts +2 -2
- package/dist/models/UpdateOAuthClientPayload.d.ts +2 -2
- package/dist/models/UserState.d.ts +9 -0
- package/dist/models/UserState.js +9 -0
- package/package.json +1 -1
- package/src/apis/UserApi.ts +1 -1
- package/src/models/OAuthClient.ts +2 -2
- package/src/models/UpdateOAuthClientPayload.ts +2 -2
- package/src/models/UserState.ts +9 -0
package/dist/apis/UserApi.js
CHANGED
|
@@ -1402,7 +1402,7 @@ class UserApi extends runtime.BaseAPI {
|
|
|
1402
1402
|
}
|
|
1403
1403
|
}
|
|
1404
1404
|
const response = yield this.request({
|
|
1405
|
-
path: `/users/{uuid}
|
|
1405
|
+
path: `/users/{uuid}`.replace(`{${"uuid"}}`, encodeURIComponent(String(requestParameters['uuid']))),
|
|
1406
1406
|
method: 'PUT',
|
|
1407
1407
|
headers: headerParameters,
|
|
1408
1408
|
query: queryParameters,
|
package/dist/esm/apis/UserApi.js
CHANGED
|
@@ -1399,7 +1399,7 @@ export class UserApi extends runtime.BaseAPI {
|
|
|
1399
1399
|
}
|
|
1400
1400
|
}
|
|
1401
1401
|
const response = yield this.request({
|
|
1402
|
-
path: `/users/{uuid}
|
|
1402
|
+
path: `/users/{uuid}`.replace(`{${"uuid"}}`, encodeURIComponent(String(requestParameters['uuid']))),
|
|
1403
1403
|
method: 'PUT',
|
|
1404
1404
|
headers: headerParameters,
|
|
1405
1405
|
query: queryParameters,
|
|
@@ -96,11 +96,11 @@ export interface OAuthClient {
|
|
|
96
96
|
serviceAccountDelegation: boolean;
|
|
97
97
|
/**
|
|
98
98
|
*
|
|
99
|
-
* @type {{ [key: string]:
|
|
99
|
+
* @type {{ [key: string]: object; }}
|
|
100
100
|
* @memberof OAuthClient
|
|
101
101
|
*/
|
|
102
102
|
additionalTokenFields?: {
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: object;
|
|
104
104
|
} | null;
|
|
105
105
|
/**
|
|
106
106
|
*
|
|
@@ -78,11 +78,11 @@ export interface UpdateOAuthClientPayload {
|
|
|
78
78
|
serviceAccountDelegation?: boolean | null;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
|
-
* @type {{ [key: string]:
|
|
81
|
+
* @type {{ [key: string]: object; }}
|
|
82
82
|
* @memberof UpdateOAuthClientPayload
|
|
83
83
|
*/
|
|
84
84
|
additionalTokenFields?: {
|
|
85
|
-
[key: string]:
|
|
85
|
+
[key: string]: object;
|
|
86
86
|
} | null;
|
|
87
87
|
/**
|
|
88
88
|
*
|
|
@@ -18,8 +18,17 @@
|
|
|
18
18
|
* @export
|
|
19
19
|
*/
|
|
20
20
|
export declare const UserState: {
|
|
21
|
+
/**
|
|
22
|
+
* User is soft deleted or archived.
|
|
23
|
+
*/
|
|
21
24
|
readonly DELETED: "DELETED";
|
|
25
|
+
/**
|
|
26
|
+
* Temporarily denied login.
|
|
27
|
+
*/
|
|
22
28
|
readonly DISABLED: "DISABLED";
|
|
29
|
+
/**
|
|
30
|
+
* Allowed to login.
|
|
31
|
+
*/
|
|
23
32
|
readonly ENABLED: "ENABLED";
|
|
24
33
|
readonly unknown_default_open_api: "11184809";
|
|
25
34
|
};
|
|
@@ -20,8 +20,17 @@
|
|
|
20
20
|
* @export
|
|
21
21
|
*/
|
|
22
22
|
export const UserState = {
|
|
23
|
+
/**
|
|
24
|
+
* User is soft deleted or archived.
|
|
25
|
+
*/
|
|
23
26
|
DELETED: 'DELETED',
|
|
27
|
+
/**
|
|
28
|
+
* Temporarily denied login.
|
|
29
|
+
*/
|
|
24
30
|
DISABLED: 'DISABLED',
|
|
31
|
+
/**
|
|
32
|
+
* Allowed to login.
|
|
33
|
+
*/
|
|
25
34
|
ENABLED: 'ENABLED',
|
|
26
35
|
unknown_default_open_api: '11184809'
|
|
27
36
|
};
|
|
@@ -96,11 +96,11 @@ export interface OAuthClient {
|
|
|
96
96
|
serviceAccountDelegation: boolean;
|
|
97
97
|
/**
|
|
98
98
|
*
|
|
99
|
-
* @type {{ [key: string]:
|
|
99
|
+
* @type {{ [key: string]: object; }}
|
|
100
100
|
* @memberof OAuthClient
|
|
101
101
|
*/
|
|
102
102
|
additionalTokenFields?: {
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: object;
|
|
104
104
|
} | null;
|
|
105
105
|
/**
|
|
106
106
|
*
|
|
@@ -78,11 +78,11 @@ export interface UpdateOAuthClientPayload {
|
|
|
78
78
|
serviceAccountDelegation?: boolean | null;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
|
-
* @type {{ [key: string]:
|
|
81
|
+
* @type {{ [key: string]: object; }}
|
|
82
82
|
* @memberof UpdateOAuthClientPayload
|
|
83
83
|
*/
|
|
84
84
|
additionalTokenFields?: {
|
|
85
|
-
[key: string]:
|
|
85
|
+
[key: string]: object;
|
|
86
86
|
} | null;
|
|
87
87
|
/**
|
|
88
88
|
*
|
|
@@ -18,8 +18,17 @@
|
|
|
18
18
|
* @export
|
|
19
19
|
*/
|
|
20
20
|
export declare const UserState: {
|
|
21
|
+
/**
|
|
22
|
+
* User is soft deleted or archived.
|
|
23
|
+
*/
|
|
21
24
|
readonly DELETED: "DELETED";
|
|
25
|
+
/**
|
|
26
|
+
* Temporarily denied login.
|
|
27
|
+
*/
|
|
22
28
|
readonly DISABLED: "DISABLED";
|
|
29
|
+
/**
|
|
30
|
+
* Allowed to login.
|
|
31
|
+
*/
|
|
23
32
|
readonly ENABLED: "ENABLED";
|
|
24
33
|
readonly unknown_default_open_api: "11184809";
|
|
25
34
|
};
|
package/dist/models/UserState.js
CHANGED
|
@@ -28,8 +28,17 @@ exports.UserStateToJSONTyped = UserStateToJSONTyped;
|
|
|
28
28
|
* @export
|
|
29
29
|
*/
|
|
30
30
|
exports.UserState = {
|
|
31
|
+
/**
|
|
32
|
+
* User is soft deleted or archived.
|
|
33
|
+
*/
|
|
31
34
|
DELETED: 'DELETED',
|
|
35
|
+
/**
|
|
36
|
+
* Temporarily denied login.
|
|
37
|
+
*/
|
|
32
38
|
DISABLED: 'DISABLED',
|
|
39
|
+
/**
|
|
40
|
+
* Allowed to login.
|
|
41
|
+
*/
|
|
33
42
|
ENABLED: 'ENABLED',
|
|
34
43
|
unknown_default_open_api: '11184809'
|
|
35
44
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "9.10.1-snapshot.
|
|
3
|
+
"version": "9.10.1-snapshot.20250912125542",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
package/src/apis/UserApi.ts
CHANGED
|
@@ -1921,7 +1921,7 @@ export class UserApi extends runtime.BaseAPI {
|
|
|
1921
1921
|
}
|
|
1922
1922
|
|
|
1923
1923
|
const response = await this.request({
|
|
1924
|
-
path: `/users/{uuid}
|
|
1924
|
+
path: `/users/{uuid}`.replace(`{${"uuid"}}`, encodeURIComponent(String(requestParameters['uuid']))),
|
|
1925
1925
|
method: 'PUT',
|
|
1926
1926
|
headers: headerParameters,
|
|
1927
1927
|
query: queryParameters,
|
|
@@ -107,10 +107,10 @@ export interface OAuthClient {
|
|
|
107
107
|
serviceAccountDelegation: boolean;
|
|
108
108
|
/**
|
|
109
109
|
*
|
|
110
|
-
* @type {{ [key: string]:
|
|
110
|
+
* @type {{ [key: string]: object; }}
|
|
111
111
|
* @memberof OAuthClient
|
|
112
112
|
*/
|
|
113
|
-
additionalTokenFields?: { [key: string]:
|
|
113
|
+
additionalTokenFields?: { [key: string]: object; } | null;
|
|
114
114
|
/**
|
|
115
115
|
*
|
|
116
116
|
* @type {string}
|
|
@@ -89,10 +89,10 @@ export interface UpdateOAuthClientPayload {
|
|
|
89
89
|
serviceAccountDelegation?: boolean | null;
|
|
90
90
|
/**
|
|
91
91
|
*
|
|
92
|
-
* @type {{ [key: string]:
|
|
92
|
+
* @type {{ [key: string]: object; }}
|
|
93
93
|
* @memberof UpdateOAuthClientPayload
|
|
94
94
|
*/
|
|
95
|
-
additionalTokenFields?: { [key: string]:
|
|
95
|
+
additionalTokenFields?: { [key: string]: object; } | null;
|
|
96
96
|
/**
|
|
97
97
|
*
|
|
98
98
|
* @type {string}
|
package/src/models/UserState.ts
CHANGED
|
@@ -22,8 +22,17 @@
|
|
|
22
22
|
* @export
|
|
23
23
|
*/
|
|
24
24
|
export const UserState = {
|
|
25
|
+
/**
|
|
26
|
+
* User is soft deleted or archived.
|
|
27
|
+
*/
|
|
25
28
|
DELETED: 'DELETED',
|
|
29
|
+
/**
|
|
30
|
+
* Temporarily denied login.
|
|
31
|
+
*/
|
|
26
32
|
DISABLED: 'DISABLED',
|
|
33
|
+
/**
|
|
34
|
+
* Allowed to login.
|
|
35
|
+
*/
|
|
27
36
|
ENABLED: 'ENABLED',
|
|
28
37
|
unknown_default_open_api: '11184809'
|
|
29
38
|
} as const;
|