@emilgroup/tenant-sdk-node 1.0.1 → 1.0.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/README.md +2 -2
- package/api/custom-schema-api.ts +53 -61
- package/api/data-report-api.ts +66 -76
- package/api/invite-organizations-api.ts +24 -28
- package/api/invite-users-api.ts +69 -79
- package/api/organizations-api.ts +22 -26
- package/api/users-api.ts +130 -148
- package/dist/api/custom-schema-api.d.ts +43 -43
- package/dist/api/custom-schema-api.js +31 -38
- package/dist/api/data-report-api.d.ts +53 -53
- package/dist/api/data-report-api.js +40 -49
- package/dist/api/invite-organizations-api.d.ts +21 -21
- package/dist/api/invite-organizations-api.js +13 -16
- package/dist/api/invite-users-api.d.ts +57 -57
- package/dist/api/invite-users-api.js +40 -49
- package/dist/api/organizations-api.d.ts +19 -19
- package/dist/api/organizations-api.js +13 -16
- package/dist/api/users-api.d.ts +105 -105
- package/dist/api/users-api.js +76 -93
- package/package.json +1 -1
package/dist/api/users-api.d.ts
CHANGED
|
@@ -32,75 +32,75 @@ import { ListUsersResponseClass } from '../models';
|
|
|
32
32
|
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33
33
|
/**
|
|
34
34
|
*
|
|
35
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
36
35
|
* @param {number} id
|
|
37
36
|
* @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
|
|
37
|
+
* @param {string} [authorization] Bearer Token
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
39
|
* @throws {RequiredError}
|
|
40
40
|
*/
|
|
41
|
-
assignUserRoles: (
|
|
41
|
+
assignUserRoles: (id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
45
44
|
* @param {number} id
|
|
45
|
+
* @param {string} [authorization] Bearer Token
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
47
47
|
* @throws {RequiredError}
|
|
48
48
|
*/
|
|
49
|
-
deleteUser: (
|
|
49
|
+
deleteUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
53
52
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
53
|
+
* @param {string} [authorization] Bearer Token
|
|
54
54
|
* @param {*} [options] Override http request option.
|
|
55
55
|
* @throws {RequiredError}
|
|
56
56
|
*/
|
|
57
|
-
deleteUsers: (
|
|
57
|
+
deleteUsers: (batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
58
|
/**
|
|
59
59
|
*
|
|
60
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
61
60
|
* @param {number} id
|
|
61
|
+
* @param {string} [authorization] Bearer Token
|
|
62
62
|
* @param {*} [options] Override http request option.
|
|
63
63
|
* @throws {RequiredError}
|
|
64
64
|
*/
|
|
65
|
-
disableUser: (
|
|
65
|
+
disableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
66
|
/**
|
|
67
67
|
*
|
|
68
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
69
68
|
* @param {DisableUsersRequestDto} disableUsersRequestDto
|
|
69
|
+
* @param {string} [authorization] Bearer Token
|
|
70
70
|
* @param {*} [options] Override http request option.
|
|
71
71
|
* @throws {RequiredError}
|
|
72
72
|
*/
|
|
73
|
-
disableUsers: (
|
|
73
|
+
disableUsers: (disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
77
76
|
* @param {number} id
|
|
77
|
+
* @param {string} [authorization] Bearer Token
|
|
78
78
|
* @param {*} [options] Override http request option.
|
|
79
79
|
* @throws {RequiredError}
|
|
80
80
|
*/
|
|
81
|
-
enableUser: (
|
|
81
|
+
enableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
85
84
|
* @param {EnableUsersRequestDto} enableUsersRequestDto
|
|
85
|
+
* @param {string} [authorization] Bearer Token
|
|
86
86
|
* @param {*} [options] Override http request option.
|
|
87
87
|
* @throws {RequiredError}
|
|
88
88
|
*/
|
|
89
|
-
enableUsers: (
|
|
89
|
+
enableUsers: (enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
90
90
|
/**
|
|
91
91
|
*
|
|
92
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
93
92
|
* @param {string} code
|
|
94
93
|
* @param {string} code2 code
|
|
94
|
+
* @param {string} [authorization] Bearer Token
|
|
95
95
|
* @param {string} [expand] Fields to expand response by
|
|
96
96
|
* @param {*} [options] Override http request option.
|
|
97
97
|
* @throws {RequiredError}
|
|
98
98
|
*/
|
|
99
|
-
getUser: (
|
|
99
|
+
getUser: (code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
100
|
/**
|
|
101
101
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
102
102
|
* @summary List users
|
|
103
|
-
* @param {string} authorization Bearer Token
|
|
103
|
+
* @param {string} [authorization] Bearer Token
|
|
104
104
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
105
105
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
106
106
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -110,7 +110,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
110
110
|
* @param {*} [options] Override http request option.
|
|
111
111
|
* @throws {RequiredError}
|
|
112
112
|
*/
|
|
113
|
-
listUsers: (authorization
|
|
113
|
+
listUsers: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
114
114
|
};
|
|
115
115
|
/**
|
|
116
116
|
* UsersApi - functional programming interface
|
|
@@ -119,75 +119,75 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
119
119
|
export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
120
120
|
/**
|
|
121
121
|
*
|
|
122
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
123
122
|
* @param {number} id
|
|
124
123
|
* @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
|
|
124
|
+
* @param {string} [authorization] Bearer Token
|
|
125
125
|
* @param {*} [options] Override http request option.
|
|
126
126
|
* @throws {RequiredError}
|
|
127
127
|
*/
|
|
128
|
-
assignUserRoles(
|
|
128
|
+
assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssignUserRolesResponseClass>>;
|
|
129
129
|
/**
|
|
130
130
|
*
|
|
131
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
132
131
|
* @param {number} id
|
|
132
|
+
* @param {string} [authorization] Bearer Token
|
|
133
133
|
* @param {*} [options] Override http request option.
|
|
134
134
|
* @throws {RequiredError}
|
|
135
135
|
*/
|
|
136
|
-
deleteUser(
|
|
136
|
+
deleteUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
137
137
|
/**
|
|
138
138
|
*
|
|
139
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
140
139
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
140
|
+
* @param {string} [authorization] Bearer Token
|
|
141
141
|
* @param {*} [options] Override http request option.
|
|
142
142
|
* @throws {RequiredError}
|
|
143
143
|
*/
|
|
144
|
-
deleteUsers(
|
|
144
|
+
deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchDeleteResponseClass>>;
|
|
145
145
|
/**
|
|
146
146
|
*
|
|
147
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
148
147
|
* @param {number} id
|
|
148
|
+
* @param {string} [authorization] Bearer Token
|
|
149
149
|
* @param {*} [options] Override http request option.
|
|
150
150
|
* @throws {RequiredError}
|
|
151
151
|
*/
|
|
152
|
-
disableUser(
|
|
152
|
+
disableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUserResponseClass>>;
|
|
153
153
|
/**
|
|
154
154
|
*
|
|
155
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
156
155
|
* @param {DisableUsersRequestDto} disableUsersRequestDto
|
|
156
|
+
* @param {string} [authorization] Bearer Token
|
|
157
157
|
* @param {*} [options] Override http request option.
|
|
158
158
|
* @throws {RequiredError}
|
|
159
159
|
*/
|
|
160
|
-
disableUsers(
|
|
160
|
+
disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUsersResponseClass>>;
|
|
161
161
|
/**
|
|
162
162
|
*
|
|
163
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
164
163
|
* @param {number} id
|
|
164
|
+
* @param {string} [authorization] Bearer Token
|
|
165
165
|
* @param {*} [options] Override http request option.
|
|
166
166
|
* @throws {RequiredError}
|
|
167
167
|
*/
|
|
168
|
-
enableUser(
|
|
168
|
+
enableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUserResponseClass>>;
|
|
169
169
|
/**
|
|
170
170
|
*
|
|
171
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
172
171
|
* @param {EnableUsersRequestDto} enableUsersRequestDto
|
|
172
|
+
* @param {string} [authorization] Bearer Token
|
|
173
173
|
* @param {*} [options] Override http request option.
|
|
174
174
|
* @throws {RequiredError}
|
|
175
175
|
*/
|
|
176
|
-
enableUsers(
|
|
176
|
+
enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUsersResponseClass>>;
|
|
177
177
|
/**
|
|
178
178
|
*
|
|
179
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
180
179
|
* @param {string} code
|
|
181
180
|
* @param {string} code2 code
|
|
181
|
+
* @param {string} [authorization] Bearer Token
|
|
182
182
|
* @param {string} [expand] Fields to expand response by
|
|
183
183
|
* @param {*} [options] Override http request option.
|
|
184
184
|
* @throws {RequiredError}
|
|
185
185
|
*/
|
|
186
|
-
getUser(
|
|
186
|
+
getUser(code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserResponseClass>>;
|
|
187
187
|
/**
|
|
188
188
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
189
189
|
* @summary List users
|
|
190
|
-
* @param {string} authorization Bearer Token
|
|
190
|
+
* @param {string} [authorization] Bearer Token
|
|
191
191
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
192
192
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
193
193
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -197,7 +197,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
197
197
|
* @param {*} [options] Override http request option.
|
|
198
198
|
* @throws {RequiredError}
|
|
199
199
|
*/
|
|
200
|
-
listUsers(authorization
|
|
200
|
+
listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListUsersResponseClass>>;
|
|
201
201
|
};
|
|
202
202
|
/**
|
|
203
203
|
* UsersApi - factory interface
|
|
@@ -206,75 +206,75 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
206
206
|
export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
207
207
|
/**
|
|
208
208
|
*
|
|
209
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
210
209
|
* @param {number} id
|
|
211
210
|
* @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
|
|
211
|
+
* @param {string} [authorization] Bearer Token
|
|
212
212
|
* @param {*} [options] Override http request option.
|
|
213
213
|
* @throws {RequiredError}
|
|
214
214
|
*/
|
|
215
|
-
assignUserRoles(
|
|
215
|
+
assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: any): AxiosPromise<AssignUserRolesResponseClass>;
|
|
216
216
|
/**
|
|
217
217
|
*
|
|
218
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
219
218
|
* @param {number} id
|
|
219
|
+
* @param {string} [authorization] Bearer Token
|
|
220
220
|
* @param {*} [options] Override http request option.
|
|
221
221
|
* @throws {RequiredError}
|
|
222
222
|
*/
|
|
223
|
-
deleteUser(
|
|
223
|
+
deleteUser(id: number, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
224
224
|
/**
|
|
225
225
|
*
|
|
226
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
227
226
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
227
|
+
* @param {string} [authorization] Bearer Token
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
229
229
|
* @throws {RequiredError}
|
|
230
230
|
*/
|
|
231
|
-
deleteUsers(
|
|
231
|
+
deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: any): AxiosPromise<BatchDeleteResponseClass>;
|
|
232
232
|
/**
|
|
233
233
|
*
|
|
234
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
235
234
|
* @param {number} id
|
|
235
|
+
* @param {string} [authorization] Bearer Token
|
|
236
236
|
* @param {*} [options] Override http request option.
|
|
237
237
|
* @throws {RequiredError}
|
|
238
238
|
*/
|
|
239
|
-
disableUser(
|
|
239
|
+
disableUser(id: number, authorization?: string, options?: any): AxiosPromise<DisableUserResponseClass>;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
243
242
|
* @param {DisableUsersRequestDto} disableUsersRequestDto
|
|
243
|
+
* @param {string} [authorization] Bearer Token
|
|
244
244
|
* @param {*} [options] Override http request option.
|
|
245
245
|
* @throws {RequiredError}
|
|
246
246
|
*/
|
|
247
|
-
disableUsers(
|
|
247
|
+
disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<DisableUsersResponseClass>;
|
|
248
248
|
/**
|
|
249
249
|
*
|
|
250
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
251
250
|
* @param {number} id
|
|
251
|
+
* @param {string} [authorization] Bearer Token
|
|
252
252
|
* @param {*} [options] Override http request option.
|
|
253
253
|
* @throws {RequiredError}
|
|
254
254
|
*/
|
|
255
|
-
enableUser(
|
|
255
|
+
enableUser(id: number, authorization?: string, options?: any): AxiosPromise<EnableUserResponseClass>;
|
|
256
256
|
/**
|
|
257
257
|
*
|
|
258
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
259
258
|
* @param {EnableUsersRequestDto} enableUsersRequestDto
|
|
259
|
+
* @param {string} [authorization] Bearer Token
|
|
260
260
|
* @param {*} [options] Override http request option.
|
|
261
261
|
* @throws {RequiredError}
|
|
262
262
|
*/
|
|
263
|
-
enableUsers(
|
|
263
|
+
enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<EnableUsersResponseClass>;
|
|
264
264
|
/**
|
|
265
265
|
*
|
|
266
|
-
* @param {string} authorization Bearer Token: provided by the login endpoint under the name accessToken.
|
|
267
266
|
* @param {string} code
|
|
268
267
|
* @param {string} code2 code
|
|
268
|
+
* @param {string} [authorization] Bearer Token
|
|
269
269
|
* @param {string} [expand] Fields to expand response by
|
|
270
270
|
* @param {*} [options] Override http request option.
|
|
271
271
|
* @throws {RequiredError}
|
|
272
272
|
*/
|
|
273
|
-
getUser(
|
|
273
|
+
getUser(code: string, code2: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetUserResponseClass>;
|
|
274
274
|
/**
|
|
275
275
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
276
276
|
* @summary List users
|
|
277
|
-
* @param {string} authorization Bearer Token
|
|
277
|
+
* @param {string} [authorization] Bearer Token
|
|
278
278
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
279
279
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
280
280
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -284,7 +284,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
284
284
|
* @param {*} [options] Override http request option.
|
|
285
285
|
* @throws {RequiredError}
|
|
286
286
|
*/
|
|
287
|
-
listUsers(authorization
|
|
287
|
+
listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListUsersResponseClass>;
|
|
288
288
|
};
|
|
289
289
|
/**
|
|
290
290
|
* Request parameters for assignUserRoles operation in UsersApi.
|
|
@@ -292,12 +292,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
292
292
|
* @interface UsersApiAssignUserRolesRequest
|
|
293
293
|
*/
|
|
294
294
|
export interface UsersApiAssignUserRolesRequest {
|
|
295
|
-
/**
|
|
296
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
297
|
-
* @type {string}
|
|
298
|
-
* @memberof UsersApiAssignUserRoles
|
|
299
|
-
*/
|
|
300
|
-
readonly authorization: string;
|
|
301
295
|
/**
|
|
302
296
|
*
|
|
303
297
|
* @type {number}
|
|
@@ -310,6 +304,12 @@ export interface UsersApiAssignUserRolesRequest {
|
|
|
310
304
|
* @memberof UsersApiAssignUserRoles
|
|
311
305
|
*/
|
|
312
306
|
readonly assignUserRolesRequestDto: AssignUserRolesRequestDto;
|
|
307
|
+
/**
|
|
308
|
+
* Bearer Token
|
|
309
|
+
* @type {string}
|
|
310
|
+
* @memberof UsersApiAssignUserRoles
|
|
311
|
+
*/
|
|
312
|
+
readonly authorization?: string;
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
315
|
* Request parameters for deleteUser operation in UsersApi.
|
|
@@ -317,18 +317,18 @@ export interface UsersApiAssignUserRolesRequest {
|
|
|
317
317
|
* @interface UsersApiDeleteUserRequest
|
|
318
318
|
*/
|
|
319
319
|
export interface UsersApiDeleteUserRequest {
|
|
320
|
-
/**
|
|
321
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
322
|
-
* @type {string}
|
|
323
|
-
* @memberof UsersApiDeleteUser
|
|
324
|
-
*/
|
|
325
|
-
readonly authorization: string;
|
|
326
320
|
/**
|
|
327
321
|
*
|
|
328
322
|
* @type {number}
|
|
329
323
|
* @memberof UsersApiDeleteUser
|
|
330
324
|
*/
|
|
331
325
|
readonly id: number;
|
|
326
|
+
/**
|
|
327
|
+
* Bearer Token
|
|
328
|
+
* @type {string}
|
|
329
|
+
* @memberof UsersApiDeleteUser
|
|
330
|
+
*/
|
|
331
|
+
readonly authorization?: string;
|
|
332
332
|
}
|
|
333
333
|
/**
|
|
334
334
|
* Request parameters for deleteUsers operation in UsersApi.
|
|
@@ -336,18 +336,18 @@ export interface UsersApiDeleteUserRequest {
|
|
|
336
336
|
* @interface UsersApiDeleteUsersRequest
|
|
337
337
|
*/
|
|
338
338
|
export interface UsersApiDeleteUsersRequest {
|
|
339
|
-
/**
|
|
340
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
341
|
-
* @type {string}
|
|
342
|
-
* @memberof UsersApiDeleteUsers
|
|
343
|
-
*/
|
|
344
|
-
readonly authorization: string;
|
|
345
339
|
/**
|
|
346
340
|
*
|
|
347
341
|
* @type {BatchDeleteRequestDto}
|
|
348
342
|
* @memberof UsersApiDeleteUsers
|
|
349
343
|
*/
|
|
350
344
|
readonly batchDeleteRequestDto: BatchDeleteRequestDto;
|
|
345
|
+
/**
|
|
346
|
+
* Bearer Token
|
|
347
|
+
* @type {string}
|
|
348
|
+
* @memberof UsersApiDeleteUsers
|
|
349
|
+
*/
|
|
350
|
+
readonly authorization?: string;
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
353
|
* Request parameters for disableUser operation in UsersApi.
|
|
@@ -355,18 +355,18 @@ export interface UsersApiDeleteUsersRequest {
|
|
|
355
355
|
* @interface UsersApiDisableUserRequest
|
|
356
356
|
*/
|
|
357
357
|
export interface UsersApiDisableUserRequest {
|
|
358
|
-
/**
|
|
359
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
360
|
-
* @type {string}
|
|
361
|
-
* @memberof UsersApiDisableUser
|
|
362
|
-
*/
|
|
363
|
-
readonly authorization: string;
|
|
364
358
|
/**
|
|
365
359
|
*
|
|
366
360
|
* @type {number}
|
|
367
361
|
* @memberof UsersApiDisableUser
|
|
368
362
|
*/
|
|
369
363
|
readonly id: number;
|
|
364
|
+
/**
|
|
365
|
+
* Bearer Token
|
|
366
|
+
* @type {string}
|
|
367
|
+
* @memberof UsersApiDisableUser
|
|
368
|
+
*/
|
|
369
|
+
readonly authorization?: string;
|
|
370
370
|
}
|
|
371
371
|
/**
|
|
372
372
|
* Request parameters for disableUsers operation in UsersApi.
|
|
@@ -374,18 +374,18 @@ export interface UsersApiDisableUserRequest {
|
|
|
374
374
|
* @interface UsersApiDisableUsersRequest
|
|
375
375
|
*/
|
|
376
376
|
export interface UsersApiDisableUsersRequest {
|
|
377
|
-
/**
|
|
378
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
379
|
-
* @type {string}
|
|
380
|
-
* @memberof UsersApiDisableUsers
|
|
381
|
-
*/
|
|
382
|
-
readonly authorization: string;
|
|
383
377
|
/**
|
|
384
378
|
*
|
|
385
379
|
* @type {DisableUsersRequestDto}
|
|
386
380
|
* @memberof UsersApiDisableUsers
|
|
387
381
|
*/
|
|
388
382
|
readonly disableUsersRequestDto: DisableUsersRequestDto;
|
|
383
|
+
/**
|
|
384
|
+
* Bearer Token
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof UsersApiDisableUsers
|
|
387
|
+
*/
|
|
388
|
+
readonly authorization?: string;
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
391
|
* Request parameters for enableUser operation in UsersApi.
|
|
@@ -393,18 +393,18 @@ export interface UsersApiDisableUsersRequest {
|
|
|
393
393
|
* @interface UsersApiEnableUserRequest
|
|
394
394
|
*/
|
|
395
395
|
export interface UsersApiEnableUserRequest {
|
|
396
|
-
/**
|
|
397
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
398
|
-
* @type {string}
|
|
399
|
-
* @memberof UsersApiEnableUser
|
|
400
|
-
*/
|
|
401
|
-
readonly authorization: string;
|
|
402
396
|
/**
|
|
403
397
|
*
|
|
404
398
|
* @type {number}
|
|
405
399
|
* @memberof UsersApiEnableUser
|
|
406
400
|
*/
|
|
407
401
|
readonly id: number;
|
|
402
|
+
/**
|
|
403
|
+
* Bearer Token
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof UsersApiEnableUser
|
|
406
|
+
*/
|
|
407
|
+
readonly authorization?: string;
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
410
410
|
* Request parameters for enableUsers operation in UsersApi.
|
|
@@ -412,18 +412,18 @@ export interface UsersApiEnableUserRequest {
|
|
|
412
412
|
* @interface UsersApiEnableUsersRequest
|
|
413
413
|
*/
|
|
414
414
|
export interface UsersApiEnableUsersRequest {
|
|
415
|
-
/**
|
|
416
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
417
|
-
* @type {string}
|
|
418
|
-
* @memberof UsersApiEnableUsers
|
|
419
|
-
*/
|
|
420
|
-
readonly authorization: string;
|
|
421
415
|
/**
|
|
422
416
|
*
|
|
423
417
|
* @type {EnableUsersRequestDto}
|
|
424
418
|
* @memberof UsersApiEnableUsers
|
|
425
419
|
*/
|
|
426
420
|
readonly enableUsersRequestDto: EnableUsersRequestDto;
|
|
421
|
+
/**
|
|
422
|
+
* Bearer Token
|
|
423
|
+
* @type {string}
|
|
424
|
+
* @memberof UsersApiEnableUsers
|
|
425
|
+
*/
|
|
426
|
+
readonly authorization?: string;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
429
|
* Request parameters for getUser operation in UsersApi.
|
|
@@ -431,12 +431,6 @@ export interface UsersApiEnableUsersRequest {
|
|
|
431
431
|
* @interface UsersApiGetUserRequest
|
|
432
432
|
*/
|
|
433
433
|
export interface UsersApiGetUserRequest {
|
|
434
|
-
/**
|
|
435
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
436
|
-
* @type {string}
|
|
437
|
-
* @memberof UsersApiGetUser
|
|
438
|
-
*/
|
|
439
|
-
readonly authorization: string;
|
|
440
434
|
/**
|
|
441
435
|
*
|
|
442
436
|
* @type {string}
|
|
@@ -449,6 +443,12 @@ export interface UsersApiGetUserRequest {
|
|
|
449
443
|
* @memberof UsersApiGetUser
|
|
450
444
|
*/
|
|
451
445
|
readonly code2: string;
|
|
446
|
+
/**
|
|
447
|
+
* Bearer Token
|
|
448
|
+
* @type {string}
|
|
449
|
+
* @memberof UsersApiGetUser
|
|
450
|
+
*/
|
|
451
|
+
readonly authorization?: string;
|
|
452
452
|
/**
|
|
453
453
|
* Fields to expand response by
|
|
454
454
|
* @type {string}
|
|
@@ -463,11 +463,11 @@ export interface UsersApiGetUserRequest {
|
|
|
463
463
|
*/
|
|
464
464
|
export interface UsersApiListUsersRequest {
|
|
465
465
|
/**
|
|
466
|
-
* Bearer Token
|
|
466
|
+
* Bearer Token
|
|
467
467
|
* @type {string}
|
|
468
468
|
* @memberof UsersApiListUsers
|
|
469
469
|
*/
|
|
470
|
-
readonly authorization
|
|
470
|
+
readonly authorization?: string;
|
|
471
471
|
/**
|
|
472
472
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
473
473
|
* @type {any}
|
|
@@ -584,5 +584,5 @@ export declare class UsersApi extends BaseAPI {
|
|
|
584
584
|
* @throws {RequiredError}
|
|
585
585
|
* @memberof UsersApi
|
|
586
586
|
*/
|
|
587
|
-
listUsers(requestParameters
|
|
587
|
+
listUsers(requestParameters?: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListUsersResponseClass, any>>;
|
|
588
588
|
}
|