@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240120.1 → 1.20240302.1
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/.openapi-generator/FILES +30 -0
- package/api/adv-workflow-api.ts +456 -0
- package/api/benefits-api.ts +122 -0
- package/api/client-config-api.ts +869 -0
- package/api/commission-rates-api.ts +8 -18
- package/api/group-ucpercent-criterias-api.ts +677 -0
- package/api/process-automation-api.ts +365 -0
- package/api/support-api.ts +532 -0
- package/api/user-api.ts +0 -96
- package/api/vbareports-api.ts +155 -0
- package/api.ts +6 -0
- package/models/auth.ts +29 -5
- package/models/callback-dto.ts +43 -0
- package/models/company-data.ts +14 -2
- package/models/database-connection.ts +36 -0
- package/models/email-report-dto.ts +103 -0
- package/models/fax-report-dto.ts +85 -0
- package/models/group-ucpercent-criteria-list-vbaresponse.ts +45 -0
- package/models/group-ucpercent-criteria-vbaresponse.ts +45 -0
- package/models/group-ucpercent-criteria.ts +84 -0
- package/models/groups.ts +6 -0
- package/models/index.ts +24 -0
- package/models/json-node-options.ts +30 -0
- package/models/json-node.ts +43 -0
- package/models/json-value.ts +44 -0
- package/models/report-series-step.ts +6 -0
- package/models/smsdto.ts +67 -0
- package/models/ssoconfig-list-vbaresponse.ts +45 -0
- package/models/ssoconfig-vbaresponse.ts +45 -0
- package/models/ssoconfig.ts +84 -0
- package/models/users.ts +13 -1
- package/models/vbaclient-environment-list-vbaresponse.ts +45 -0
- package/models/vbaclient-environment.ts +37 -0
- package/models/vbaclient-list-vbaresponse.ts +45 -0
- package/models/vbaclient-vbaresponse.ts +45 -0
- package/models/vbaclient.ts +55 -0
- package/models/vbareport-list-vbaresponse.ts +45 -0
- package/models/vbareport.ts +60 -0
- package/models/vbassologin-config.ts +42 -0
- package/models/workflow-claim.ts +60 -0
- package/models/workflow-processing.ts +49 -0
- package/package.json +1 -1
|
@@ -0,0 +1,532 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { UsersListVBAResponse } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { UsersVBAResponse } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
import { VBAClientListVBAResponse } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { VBAClientVBAResponse } from '../models';
|
|
31
|
+
/**
|
|
32
|
+
* SupportApi - axios parameter creator
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
export const SupportApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
|
+
return {
|
|
37
|
+
/**
|
|
38
|
+
* This endpoint allows you to create a support user and add them to a specific client\'s database.
|
|
39
|
+
* @summary Create Support User in a client environment
|
|
40
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
41
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
42
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
43
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
44
|
+
* @param {string} userIdToClone Client User ID to Clone
|
|
45
|
+
* @param {boolean} makeAdmin Make Administrator
|
|
46
|
+
* @param {*} [options] Override http request option.
|
|
47
|
+
* @throws {RequiredError}
|
|
48
|
+
*/
|
|
49
|
+
createSupportUser: async (vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, userIdToClone: string, makeAdmin: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
51
|
+
assertParamExists('createSupportUser', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
52
|
+
// verify required parameter 'targetVbasoftwareClientId' is not null or undefined
|
|
53
|
+
assertParamExists('createSupportUser', 'targetVbasoftwareClientId', targetVbasoftwareClientId)
|
|
54
|
+
// verify required parameter 'targetVbasoftwareClientCode' is not null or undefined
|
|
55
|
+
assertParamExists('createSupportUser', 'targetVbasoftwareClientCode', targetVbasoftwareClientCode)
|
|
56
|
+
// verify required parameter 'targetVbasoftwareDatabase' is not null or undefined
|
|
57
|
+
assertParamExists('createSupportUser', 'targetVbasoftwareDatabase', targetVbasoftwareDatabase)
|
|
58
|
+
// verify required parameter 'userIdToClone' is not null or undefined
|
|
59
|
+
assertParamExists('createSupportUser', 'userIdToClone', userIdToClone)
|
|
60
|
+
// verify required parameter 'makeAdmin' is not null or undefined
|
|
61
|
+
assertParamExists('createSupportUser', 'makeAdmin', makeAdmin)
|
|
62
|
+
const localVarPath = `/support/client-users`;
|
|
63
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
65
|
+
let baseOptions;
|
|
66
|
+
if (configuration) {
|
|
67
|
+
baseOptions = configuration.baseOptions;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
71
|
+
const localVarHeaderParameter = {} as any;
|
|
72
|
+
const localVarQueryParameter = {} as any;
|
|
73
|
+
|
|
74
|
+
// authentication apiKeyAuth required
|
|
75
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
76
|
+
|
|
77
|
+
// authentication bearerAuth required
|
|
78
|
+
// http bearer authentication required
|
|
79
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
80
|
+
|
|
81
|
+
if (userIdToClone !== undefined) {
|
|
82
|
+
localVarQueryParameter['userIdToClone'] = userIdToClone;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
if (makeAdmin !== undefined) {
|
|
86
|
+
localVarQueryParameter['makeAdmin'] = makeAdmin;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
90
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (targetVbasoftwareClientId !== undefined && targetVbasoftwareClientId !== null) {
|
|
94
|
+
localVarHeaderParameter['target-vbasoftware-client-id'] = String(targetVbasoftwareClientId);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (targetVbasoftwareClientCode !== undefined && targetVbasoftwareClientCode !== null) {
|
|
98
|
+
localVarHeaderParameter['target-vbasoftware-client-code'] = String(targetVbasoftwareClientCode);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
if (targetVbasoftwareDatabase !== undefined && targetVbasoftwareDatabase !== null) {
|
|
102
|
+
localVarHeaderParameter['target-vbasoftware-database'] = String(targetVbasoftwareDatabase);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
108
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
109
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
110
|
+
|
|
111
|
+
return {
|
|
112
|
+
url: toPathString(localVarUrlObj),
|
|
113
|
+
options: localVarRequestOptions,
|
|
114
|
+
};
|
|
115
|
+
},
|
|
116
|
+
/**
|
|
117
|
+
* Gets the client details for the given client id and client code.
|
|
118
|
+
* @summary Get Client
|
|
119
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
120
|
+
* @param {string} clientId Client ID
|
|
121
|
+
* @param {string} clientCode Client Code
|
|
122
|
+
* @param {*} [options] Override http request option.
|
|
123
|
+
* @throws {RequiredError}
|
|
124
|
+
*/
|
|
125
|
+
getClient: async (vbasoftwareDatabase: string, clientId: string, clientCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
126
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
127
|
+
assertParamExists('getClient', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
128
|
+
// verify required parameter 'clientId' is not null or undefined
|
|
129
|
+
assertParamExists('getClient', 'clientId', clientId)
|
|
130
|
+
// verify required parameter 'clientCode' is not null or undefined
|
|
131
|
+
assertParamExists('getClient', 'clientCode', clientCode)
|
|
132
|
+
const localVarPath = `/support/client`;
|
|
133
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
134
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
135
|
+
let baseOptions;
|
|
136
|
+
if (configuration) {
|
|
137
|
+
baseOptions = configuration.baseOptions;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
141
|
+
const localVarHeaderParameter = {} as any;
|
|
142
|
+
const localVarQueryParameter = {} as any;
|
|
143
|
+
|
|
144
|
+
// authentication apiKeyAuth required
|
|
145
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
146
|
+
|
|
147
|
+
// authentication bearerAuth required
|
|
148
|
+
// http bearer authentication required
|
|
149
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
150
|
+
|
|
151
|
+
if (clientId !== undefined) {
|
|
152
|
+
localVarQueryParameter['clientId'] = clientId;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
if (clientCode !== undefined) {
|
|
156
|
+
localVarQueryParameter['clientCode'] = clientCode;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
160
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
166
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
167
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
168
|
+
|
|
169
|
+
return {
|
|
170
|
+
url: toPathString(localVarUrlObj),
|
|
171
|
+
options: localVarRequestOptions,
|
|
172
|
+
};
|
|
173
|
+
},
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @summary List of all Users in a client environment
|
|
177
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
178
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
179
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
180
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
181
|
+
* @param {*} [options] Override http request option.
|
|
182
|
+
* @throws {RequiredError}
|
|
183
|
+
*/
|
|
184
|
+
listClientUsers: async (vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
185
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
186
|
+
assertParamExists('listClientUsers', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
187
|
+
// verify required parameter 'targetVbasoftwareClientId' is not null or undefined
|
|
188
|
+
assertParamExists('listClientUsers', 'targetVbasoftwareClientId', targetVbasoftwareClientId)
|
|
189
|
+
// verify required parameter 'targetVbasoftwareClientCode' is not null or undefined
|
|
190
|
+
assertParamExists('listClientUsers', 'targetVbasoftwareClientCode', targetVbasoftwareClientCode)
|
|
191
|
+
// verify required parameter 'targetVbasoftwareDatabase' is not null or undefined
|
|
192
|
+
assertParamExists('listClientUsers', 'targetVbasoftwareDatabase', targetVbasoftwareDatabase)
|
|
193
|
+
const localVarPath = `/support/client-users`;
|
|
194
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
195
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
196
|
+
let baseOptions;
|
|
197
|
+
if (configuration) {
|
|
198
|
+
baseOptions = configuration.baseOptions;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
202
|
+
const localVarHeaderParameter = {} as any;
|
|
203
|
+
const localVarQueryParameter = {} as any;
|
|
204
|
+
|
|
205
|
+
// authentication apiKeyAuth required
|
|
206
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
207
|
+
|
|
208
|
+
// authentication bearerAuth required
|
|
209
|
+
// http bearer authentication required
|
|
210
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
211
|
+
|
|
212
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
213
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
if (targetVbasoftwareClientId !== undefined && targetVbasoftwareClientId !== null) {
|
|
217
|
+
localVarHeaderParameter['target-vbasoftware-client-id'] = String(targetVbasoftwareClientId);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (targetVbasoftwareClientCode !== undefined && targetVbasoftwareClientCode !== null) {
|
|
221
|
+
localVarHeaderParameter['target-vbasoftware-client-code'] = String(targetVbasoftwareClientCode);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
if (targetVbasoftwareDatabase !== undefined && targetVbasoftwareDatabase !== null) {
|
|
225
|
+
localVarHeaderParameter['target-vbasoftware-database'] = String(targetVbasoftwareDatabase);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
231
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
232
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
233
|
+
|
|
234
|
+
return {
|
|
235
|
+
url: toPathString(localVarUrlObj),
|
|
236
|
+
options: localVarRequestOptions,
|
|
237
|
+
};
|
|
238
|
+
},
|
|
239
|
+
/**
|
|
240
|
+
* Lists the clients
|
|
241
|
+
* @summary List All Clients
|
|
242
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
*/
|
|
246
|
+
listClients: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
247
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
248
|
+
assertParamExists('listClients', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
249
|
+
const localVarPath = `/support/clients`;
|
|
250
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
251
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
252
|
+
let baseOptions;
|
|
253
|
+
if (configuration) {
|
|
254
|
+
baseOptions = configuration.baseOptions;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
258
|
+
const localVarHeaderParameter = {} as any;
|
|
259
|
+
const localVarQueryParameter = {} as any;
|
|
260
|
+
|
|
261
|
+
// authentication apiKeyAuth required
|
|
262
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
263
|
+
|
|
264
|
+
// authentication bearerAuth required
|
|
265
|
+
// http bearer authentication required
|
|
266
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
267
|
+
|
|
268
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
269
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
275
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
276
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
277
|
+
|
|
278
|
+
return {
|
|
279
|
+
url: toPathString(localVarUrlObj),
|
|
280
|
+
options: localVarRequestOptions,
|
|
281
|
+
};
|
|
282
|
+
},
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* SupportApi - functional programming interface
|
|
288
|
+
* @export
|
|
289
|
+
*/
|
|
290
|
+
export const SupportApiFp = function(configuration?: Configuration) {
|
|
291
|
+
const localVarAxiosParamCreator = SupportApiAxiosParamCreator(configuration)
|
|
292
|
+
return {
|
|
293
|
+
/**
|
|
294
|
+
* This endpoint allows you to create a support user and add them to a specific client\'s database.
|
|
295
|
+
* @summary Create Support User in a client environment
|
|
296
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
297
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
298
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
299
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
300
|
+
* @param {string} userIdToClone Client User ID to Clone
|
|
301
|
+
* @param {boolean} makeAdmin Make Administrator
|
|
302
|
+
* @param {*} [options] Override http request option.
|
|
303
|
+
* @throws {RequiredError}
|
|
304
|
+
*/
|
|
305
|
+
async createSupportUser(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, userIdToClone: string, makeAdmin: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsersVBAResponse>> {
|
|
306
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSupportUser(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, userIdToClone, makeAdmin, options);
|
|
307
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
308
|
+
},
|
|
309
|
+
/**
|
|
310
|
+
* Gets the client details for the given client id and client code.
|
|
311
|
+
* @summary Get Client
|
|
312
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
313
|
+
* @param {string} clientId Client ID
|
|
314
|
+
* @param {string} clientCode Client Code
|
|
315
|
+
* @param {*} [options] Override http request option.
|
|
316
|
+
* @throws {RequiredError}
|
|
317
|
+
*/
|
|
318
|
+
async getClient(vbasoftwareDatabase: string, clientId: string, clientCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAClientVBAResponse>> {
|
|
319
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClient(vbasoftwareDatabase, clientId, clientCode, options);
|
|
320
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
321
|
+
},
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @summary List of all Users in a client environment
|
|
325
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
326
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
327
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
328
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
329
|
+
* @param {*} [options] Override http request option.
|
|
330
|
+
* @throws {RequiredError}
|
|
331
|
+
*/
|
|
332
|
+
async listClientUsers(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsersListVBAResponse>> {
|
|
333
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClientUsers(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, options);
|
|
334
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
335
|
+
},
|
|
336
|
+
/**
|
|
337
|
+
* Lists the clients
|
|
338
|
+
* @summary List All Clients
|
|
339
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
340
|
+
* @param {*} [options] Override http request option.
|
|
341
|
+
* @throws {RequiredError}
|
|
342
|
+
*/
|
|
343
|
+
async listClients(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAClientListVBAResponse>> {
|
|
344
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(vbasoftwareDatabase, options);
|
|
345
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
346
|
+
},
|
|
347
|
+
}
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* SupportApi - factory interface
|
|
352
|
+
* @export
|
|
353
|
+
*/
|
|
354
|
+
export const SupportApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
355
|
+
const localVarFp = SupportApiFp(configuration)
|
|
356
|
+
return {
|
|
357
|
+
/**
|
|
358
|
+
* This endpoint allows you to create a support user and add them to a specific client\'s database.
|
|
359
|
+
* @summary Create Support User in a client environment
|
|
360
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
361
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
362
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
363
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
364
|
+
* @param {string} userIdToClone Client User ID to Clone
|
|
365
|
+
* @param {boolean} makeAdmin Make Administrator
|
|
366
|
+
* @param {*} [options] Override http request option.
|
|
367
|
+
* @throws {RequiredError}
|
|
368
|
+
*/
|
|
369
|
+
createSupportUser(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, userIdToClone: string, makeAdmin: boolean, options?: any): AxiosPromise<UsersVBAResponse> {
|
|
370
|
+
return localVarFp.createSupportUser(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, userIdToClone, makeAdmin, options).then((request) => request(axios, basePath));
|
|
371
|
+
},
|
|
372
|
+
/**
|
|
373
|
+
* Gets the client details for the given client id and client code.
|
|
374
|
+
* @summary Get Client
|
|
375
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
376
|
+
* @param {string} clientId Client ID
|
|
377
|
+
* @param {string} clientCode Client Code
|
|
378
|
+
* @param {*} [options] Override http request option.
|
|
379
|
+
* @throws {RequiredError}
|
|
380
|
+
*/
|
|
381
|
+
getClient(vbasoftwareDatabase: string, clientId: string, clientCode: string, options?: any): AxiosPromise<VBAClientVBAResponse> {
|
|
382
|
+
return localVarFp.getClient(vbasoftwareDatabase, clientId, clientCode, options).then((request) => request(axios, basePath));
|
|
383
|
+
},
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @summary List of all Users in a client environment
|
|
387
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
388
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
389
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
390
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @throws {RequiredError}
|
|
393
|
+
*/
|
|
394
|
+
listClientUsers(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, options?: any): AxiosPromise<UsersListVBAResponse> {
|
|
395
|
+
return localVarFp.listClientUsers(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
396
|
+
},
|
|
397
|
+
/**
|
|
398
|
+
* Lists the clients
|
|
399
|
+
* @summary List All Clients
|
|
400
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
401
|
+
* @param {*} [options] Override http request option.
|
|
402
|
+
* @throws {RequiredError}
|
|
403
|
+
*/
|
|
404
|
+
listClients(vbasoftwareDatabase: string, options?: any): AxiosPromise<VBAClientListVBAResponse> {
|
|
405
|
+
return localVarFp.listClients(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
406
|
+
},
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* SupportApi - interface
|
|
412
|
+
* @export
|
|
413
|
+
* @interface SupportApi
|
|
414
|
+
*/
|
|
415
|
+
export interface SupportApiInterface {
|
|
416
|
+
/**
|
|
417
|
+
* This endpoint allows you to create a support user and add them to a specific client\'s database.
|
|
418
|
+
* @summary Create Support User in a client environment
|
|
419
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
420
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
421
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
422
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
423
|
+
* @param {string} userIdToClone Client User ID to Clone
|
|
424
|
+
* @param {boolean} makeAdmin Make Administrator
|
|
425
|
+
* @param {*} [options] Override http request option.
|
|
426
|
+
* @throws {RequiredError}
|
|
427
|
+
* @memberof SupportApiInterface
|
|
428
|
+
*/
|
|
429
|
+
createSupportUser(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, userIdToClone: string, makeAdmin: boolean, options?: AxiosRequestConfig): AxiosPromise<UsersVBAResponse>;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Gets the client details for the given client id and client code.
|
|
433
|
+
* @summary Get Client
|
|
434
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
435
|
+
* @param {string} clientId Client ID
|
|
436
|
+
* @param {string} clientCode Client Code
|
|
437
|
+
* @param {*} [options] Override http request option.
|
|
438
|
+
* @throws {RequiredError}
|
|
439
|
+
* @memberof SupportApiInterface
|
|
440
|
+
*/
|
|
441
|
+
getClient(vbasoftwareDatabase: string, clientId: string, clientCode: string, options?: AxiosRequestConfig): AxiosPromise<VBAClientVBAResponse>;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @summary List of all Users in a client environment
|
|
446
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
447
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
448
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
449
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
450
|
+
* @param {*} [options] Override http request option.
|
|
451
|
+
* @throws {RequiredError}
|
|
452
|
+
* @memberof SupportApiInterface
|
|
453
|
+
*/
|
|
454
|
+
listClientUsers(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<UsersListVBAResponse>;
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* Lists the clients
|
|
458
|
+
* @summary List All Clients
|
|
459
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
460
|
+
* @param {*} [options] Override http request option.
|
|
461
|
+
* @throws {RequiredError}
|
|
462
|
+
* @memberof SupportApiInterface
|
|
463
|
+
*/
|
|
464
|
+
listClients(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<VBAClientListVBAResponse>;
|
|
465
|
+
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* SupportApi - object-oriented interface
|
|
470
|
+
* @export
|
|
471
|
+
* @class SupportApi
|
|
472
|
+
* @extends {BaseAPI}
|
|
473
|
+
*/
|
|
474
|
+
export class SupportApi extends BaseAPI implements SupportApiInterface {
|
|
475
|
+
/**
|
|
476
|
+
* This endpoint allows you to create a support user and add them to a specific client\'s database.
|
|
477
|
+
* @summary Create Support User in a client environment
|
|
478
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
479
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
480
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
481
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
482
|
+
* @param {string} userIdToClone Client User ID to Clone
|
|
483
|
+
* @param {boolean} makeAdmin Make Administrator
|
|
484
|
+
* @param {*} [options] Override http request option.
|
|
485
|
+
* @throws {RequiredError}
|
|
486
|
+
* @memberof SupportApi
|
|
487
|
+
*/
|
|
488
|
+
public createSupportUser(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, userIdToClone: string, makeAdmin: boolean, options?: AxiosRequestConfig) {
|
|
489
|
+
return SupportApiFp(this.configuration).createSupportUser(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, userIdToClone, makeAdmin, options).then((request) => request(this.axios, this.basePath));
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* Gets the client details for the given client id and client code.
|
|
494
|
+
* @summary Get Client
|
|
495
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
496
|
+
* @param {string} clientId Client ID
|
|
497
|
+
* @param {string} clientCode Client Code
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
* @memberof SupportApi
|
|
501
|
+
*/
|
|
502
|
+
public getClient(vbasoftwareDatabase: string, clientId: string, clientCode: string, options?: AxiosRequestConfig) {
|
|
503
|
+
return SupportApiFp(this.configuration).getClient(vbasoftwareDatabase, clientId, clientCode, options).then((request) => request(this.axios, this.basePath));
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
*
|
|
508
|
+
* @summary List of all Users in a client environment
|
|
509
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
510
|
+
* @param {string} targetVbasoftwareClientId Target Client ID
|
|
511
|
+
* @param {string} targetVbasoftwareClientCode Target Client Code
|
|
512
|
+
* @param {string} targetVbasoftwareDatabase Target Client Database
|
|
513
|
+
* @param {*} [options] Override http request option.
|
|
514
|
+
* @throws {RequiredError}
|
|
515
|
+
* @memberof SupportApi
|
|
516
|
+
*/
|
|
517
|
+
public listClientUsers(vbasoftwareDatabase: string, targetVbasoftwareClientId: string, targetVbasoftwareClientCode: string, targetVbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
518
|
+
return SupportApiFp(this.configuration).listClientUsers(vbasoftwareDatabase, targetVbasoftwareClientId, targetVbasoftwareClientCode, targetVbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* Lists the clients
|
|
523
|
+
* @summary List All Clients
|
|
524
|
+
* @param {string} vbasoftwareDatabase Support Database
|
|
525
|
+
* @param {*} [options] Override http request option.
|
|
526
|
+
* @throws {RequiredError}
|
|
527
|
+
* @memberof SupportApi
|
|
528
|
+
*/
|
|
529
|
+
public listClients(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
530
|
+
return SupportApiFp(this.configuration).listClients(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
531
|
+
}
|
|
532
|
+
}
|
package/api/user-api.ts
CHANGED
|
@@ -23,8 +23,6 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { MultiCodeResponseListVBAResponse } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
|
-
import { StringListVBAResponse } from '../models';
|
|
27
|
-
// @ts-ignore
|
|
28
26
|
import { StringVBAResponse } from '../models';
|
|
29
27
|
// @ts-ignore
|
|
30
28
|
import { UserAuthenticationResponseVBAResponse } from '../models';
|
|
@@ -407,53 +405,6 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
407
405
|
|
|
408
406
|
|
|
409
407
|
|
|
410
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
411
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
412
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
413
|
-
|
|
414
|
-
return {
|
|
415
|
-
url: toPathString(localVarUrlObj),
|
|
416
|
-
options: localVarRequestOptions,
|
|
417
|
-
};
|
|
418
|
-
},
|
|
419
|
-
/**
|
|
420
|
-
* Lists the databases that are available for API access for the given client id and client code.
|
|
421
|
-
* @summary List Databases
|
|
422
|
-
* @param {string} vbasoftwareClientId Client ID
|
|
423
|
-
* @param {string} vbasoftwareClientCode Client Code
|
|
424
|
-
* @param {*} [options] Override http request option.
|
|
425
|
-
* @throws {RequiredError}
|
|
426
|
-
*/
|
|
427
|
-
listDatabases: async (vbasoftwareClientId: string, vbasoftwareClientCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
428
|
-
// verify required parameter 'vbasoftwareClientId' is not null or undefined
|
|
429
|
-
assertParamExists('listDatabases', 'vbasoftwareClientId', vbasoftwareClientId)
|
|
430
|
-
// verify required parameter 'vbasoftwareClientCode' is not null or undefined
|
|
431
|
-
assertParamExists('listDatabases', 'vbasoftwareClientCode', vbasoftwareClientCode)
|
|
432
|
-
const localVarPath = `/databases`;
|
|
433
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
434
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
435
|
-
let baseOptions;
|
|
436
|
-
if (configuration) {
|
|
437
|
-
baseOptions = configuration.baseOptions;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
441
|
-
const localVarHeaderParameter = {} as any;
|
|
442
|
-
const localVarQueryParameter = {} as any;
|
|
443
|
-
|
|
444
|
-
// authentication apiKeyAuth required
|
|
445
|
-
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
446
|
-
|
|
447
|
-
if (vbasoftwareClientId !== undefined && vbasoftwareClientId !== null) {
|
|
448
|
-
localVarHeaderParameter['vbasoftware-client-id'] = String(vbasoftwareClientId);
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
if (vbasoftwareClientCode !== undefined && vbasoftwareClientCode !== null) {
|
|
452
|
-
localVarHeaderParameter['vbasoftware-client-code'] = String(vbasoftwareClientCode);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
408
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
458
409
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
459
410
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -997,18 +948,6 @@ export const UserApiFp = function(configuration?: Configuration) {
|
|
|
997
948
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUser(vbasoftwareDatabase, userID, options);
|
|
998
949
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
999
950
|
},
|
|
1000
|
-
/**
|
|
1001
|
-
* Lists the databases that are available for API access for the given client id and client code.
|
|
1002
|
-
* @summary List Databases
|
|
1003
|
-
* @param {string} vbasoftwareClientId Client ID
|
|
1004
|
-
* @param {string} vbasoftwareClientCode Client Code
|
|
1005
|
-
* @param {*} [options] Override http request option.
|
|
1006
|
-
* @throws {RequiredError}
|
|
1007
|
-
*/
|
|
1008
|
-
async listDatabases(vbasoftwareClientId: string, vbasoftwareClientCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringListVBAResponse>> {
|
|
1009
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listDatabases(vbasoftwareClientId, vbasoftwareClientCode, options);
|
|
1010
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1011
|
-
},
|
|
1012
951
|
/**
|
|
1013
952
|
* Lists all Users
|
|
1014
953
|
* @summary List Users
|
|
@@ -1203,17 +1142,6 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1203
1142
|
getUser(vbasoftwareDatabase: string, userID: string, options?: any): AxiosPromise<UsersVBAResponse> {
|
|
1204
1143
|
return localVarFp.getUser(vbasoftwareDatabase, userID, options).then((request) => request(axios, basePath));
|
|
1205
1144
|
},
|
|
1206
|
-
/**
|
|
1207
|
-
* Lists the databases that are available for API access for the given client id and client code.
|
|
1208
|
-
* @summary List Databases
|
|
1209
|
-
* @param {string} vbasoftwareClientId Client ID
|
|
1210
|
-
* @param {string} vbasoftwareClientCode Client Code
|
|
1211
|
-
* @param {*} [options] Override http request option.
|
|
1212
|
-
* @throws {RequiredError}
|
|
1213
|
-
*/
|
|
1214
|
-
listDatabases(vbasoftwareClientId: string, vbasoftwareClientCode: string, options?: any): AxiosPromise<StringListVBAResponse> {
|
|
1215
|
-
return localVarFp.listDatabases(vbasoftwareClientId, vbasoftwareClientCode, options).then((request) => request(axios, basePath));
|
|
1216
|
-
},
|
|
1217
1145
|
/**
|
|
1218
1146
|
* Lists all Users
|
|
1219
1147
|
* @summary List Users
|
|
@@ -1399,17 +1327,6 @@ export interface UserApiInterface {
|
|
|
1399
1327
|
*/
|
|
1400
1328
|
getUser(vbasoftwareDatabase: string, userID: string, options?: AxiosRequestConfig): AxiosPromise<UsersVBAResponse>;
|
|
1401
1329
|
|
|
1402
|
-
/**
|
|
1403
|
-
* Lists the databases that are available for API access for the given client id and client code.
|
|
1404
|
-
* @summary List Databases
|
|
1405
|
-
* @param {string} vbasoftwareClientId Client ID
|
|
1406
|
-
* @param {string} vbasoftwareClientCode Client Code
|
|
1407
|
-
* @param {*} [options] Override http request option.
|
|
1408
|
-
* @throws {RequiredError}
|
|
1409
|
-
* @memberof UserApiInterface
|
|
1410
|
-
*/
|
|
1411
|
-
listDatabases(vbasoftwareClientId: string, vbasoftwareClientCode: string, options?: AxiosRequestConfig): AxiosPromise<StringListVBAResponse>;
|
|
1412
|
-
|
|
1413
1330
|
/**
|
|
1414
1331
|
* Lists all Users
|
|
1415
1332
|
* @summary List Users
|
|
@@ -1609,19 +1526,6 @@ export class UserApi extends BaseAPI implements UserApiInterface {
|
|
|
1609
1526
|
return UserApiFp(this.configuration).getUser(vbasoftwareDatabase, userID, options).then((request) => request(this.axios, this.basePath));
|
|
1610
1527
|
}
|
|
1611
1528
|
|
|
1612
|
-
/**
|
|
1613
|
-
* Lists the databases that are available for API access for the given client id and client code.
|
|
1614
|
-
* @summary List Databases
|
|
1615
|
-
* @param {string} vbasoftwareClientId Client ID
|
|
1616
|
-
* @param {string} vbasoftwareClientCode Client Code
|
|
1617
|
-
* @param {*} [options] Override http request option.
|
|
1618
|
-
* @throws {RequiredError}
|
|
1619
|
-
* @memberof UserApi
|
|
1620
|
-
*/
|
|
1621
|
-
public listDatabases(vbasoftwareClientId: string, vbasoftwareClientCode: string, options?: AxiosRequestConfig) {
|
|
1622
|
-
return UserApiFp(this.configuration).listDatabases(vbasoftwareClientId, vbasoftwareClientCode, options).then((request) => request(this.axios, this.basePath));
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
1529
|
/**
|
|
1626
1530
|
* Lists all Users
|
|
1627
1531
|
* @summary List Users
|