@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230826.1 → 1.20230830.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/.openapi-generator/FILES +5 -0
- package/api/claim-pre-batch-details-api.ts +71 -254
- package/api/claim-pre-batches-api.ts +71 -158
- package/api/claim-queue-types-api.ts +155 -0
- package/api/reviewed-status-api.ts +677 -0
- package/api.ts +2 -0
- package/models/index.ts +3 -0
- package/models/reviewed-status-list-vbaresponse.ts +45 -0
- package/models/reviewed-status-vbaresponse.ts +45 -0
- package/models/reviewed-status.ts +60 -0
- package/package.json +1 -1
|
@@ -38,24 +38,16 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
38
38
|
* Creates a new ClaimPreBatch
|
|
39
39
|
* @summary Create ClaimPreBatch
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} batchNumber Batch Number
|
|
42
|
-
* @param {number} batchClaim Batch Claim
|
|
43
41
|
* @param {ClaimPreBatch} claimPreBatch
|
|
44
42
|
* @param {*} [options] Override http request option.
|
|
45
43
|
* @throws {RequiredError}
|
|
46
44
|
*/
|
|
47
|
-
createClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
45
|
+
createClaimPreBatch: async (vbasoftwareDatabase: string, claimPreBatch: ClaimPreBatch, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
49
47
|
assertParamExists('createClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
50
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
51
|
-
assertParamExists('createClaimPreBatch', 'batchNumber', batchNumber)
|
|
52
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
53
|
-
assertParamExists('createClaimPreBatch', 'batchClaim', batchClaim)
|
|
54
48
|
// verify required parameter 'claimPreBatch' is not null or undefined
|
|
55
49
|
assertParamExists('createClaimPreBatch', 'claimPreBatch', claimPreBatch)
|
|
56
|
-
const localVarPath = `/claim-
|
|
57
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
58
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
50
|
+
const localVarPath = `/claim-prebatches`;
|
|
59
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
61
53
|
let baseOptions;
|
|
@@ -96,25 +88,17 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
96
88
|
* Deletes an ClaimPreBatch
|
|
97
89
|
* @summary Delete ClaimPreBatch
|
|
98
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
99
|
-
* @param {number} batchNumber Batch Number
|
|
100
|
-
* @param {number} batchClaim Batch Claim
|
|
101
91
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
102
92
|
* @param {*} [options] Override http request option.
|
|
103
93
|
* @throws {RequiredError}
|
|
104
94
|
*/
|
|
105
|
-
deleteClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteClaimPreBatch: async (vbasoftwareDatabase: string, claimPreBatchKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
106
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
107
97
|
assertParamExists('deleteClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
108
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
109
|
-
assertParamExists('deleteClaimPreBatch', 'batchNumber', batchNumber)
|
|
110
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
111
|
-
assertParamExists('deleteClaimPreBatch', 'batchClaim', batchClaim)
|
|
112
98
|
// verify required parameter 'claimPreBatchKey' is not null or undefined
|
|
113
99
|
assertParamExists('deleteClaimPreBatch', 'claimPreBatchKey', claimPreBatchKey)
|
|
114
|
-
const localVarPath = `/claim-
|
|
115
|
-
.replace(`{${"
|
|
116
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
117
|
-
.replace(`{${"claimPreBatchKey"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
100
|
+
const localVarPath = `/claim-prebatches/{ClaimPreBatch_Key}`
|
|
101
|
+
.replace(`{${"ClaimPreBatch_Key"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
118
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120
104
|
let baseOptions;
|
|
@@ -152,25 +136,17 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
152
136
|
* Gets ClaimPreBatch
|
|
153
137
|
* @summary Get ClaimPreBatch
|
|
154
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
155
|
-
* @param {number} batchNumber Batch Number
|
|
156
|
-
* @param {number} batchClaim Batch Claim
|
|
157
139
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
158
140
|
* @param {*} [options] Override http request option.
|
|
159
141
|
* @throws {RequiredError}
|
|
160
142
|
*/
|
|
161
|
-
getClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
143
|
+
getClaimPreBatch: async (vbasoftwareDatabase: string, claimPreBatchKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
162
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
163
145
|
assertParamExists('getClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
164
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
165
|
-
assertParamExists('getClaimPreBatch', 'batchNumber', batchNumber)
|
|
166
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
167
|
-
assertParamExists('getClaimPreBatch', 'batchClaim', batchClaim)
|
|
168
146
|
// verify required parameter 'claimPreBatchKey' is not null or undefined
|
|
169
147
|
assertParamExists('getClaimPreBatch', 'claimPreBatchKey', claimPreBatchKey)
|
|
170
|
-
const localVarPath = `/claim-
|
|
171
|
-
.replace(`{${"
|
|
172
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
173
|
-
.replace(`{${"claimPreBatchKey"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
148
|
+
const localVarPath = `/claim-prebatches/{ClaimPreBatch_Key}`
|
|
149
|
+
.replace(`{${"ClaimPreBatch_Key"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
174
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
175
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
176
152
|
let baseOptions;
|
|
@@ -205,26 +181,19 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
205
181
|
};
|
|
206
182
|
},
|
|
207
183
|
/**
|
|
208
|
-
* Lists all ClaimPreBatch
|
|
184
|
+
* Lists all ClaimPreBatch
|
|
209
185
|
* @summary List ClaimPreBatch
|
|
210
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
211
|
-
* @param {
|
|
212
|
-
* @param {number} batchClaim Batch Claim
|
|
187
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
213
188
|
* @param {number} [page] Page
|
|
214
189
|
* @param {number} [pageSize] Page Size
|
|
215
190
|
* @param {*} [options] Override http request option.
|
|
216
191
|
* @throws {RequiredError}
|
|
217
192
|
*/
|
|
218
|
-
listClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
193
|
+
listClaimPreBatch: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
219
194
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
220
195
|
assertParamExists('listClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
221
|
-
|
|
222
|
-
assertParamExists('listClaimPreBatch', 'batchNumber', batchNumber)
|
|
223
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
224
|
-
assertParamExists('listClaimPreBatch', 'batchClaim', batchClaim)
|
|
225
|
-
const localVarPath = `/claim-batches/{batchNumber}/claims/{batchClaim}/pre-batches`
|
|
226
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
227
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
196
|
+
const localVarPath = `/claim-prebatches`;
|
|
228
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
229
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
230
199
|
let baseOptions;
|
|
@@ -243,6 +212,10 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
243
212
|
// http bearer authentication required
|
|
244
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
245
214
|
|
|
215
|
+
if (sortBy !== undefined) {
|
|
216
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
217
|
+
}
|
|
218
|
+
|
|
246
219
|
if (page !== undefined) {
|
|
247
220
|
localVarQueryParameter['page'] = page;
|
|
248
221
|
}
|
|
@@ -270,24 +243,16 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
270
243
|
* Create or Update multiple ClaimPreBatch at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
271
244
|
* @summary Create or Update Batch ClaimPreBatch
|
|
272
245
|
* @param {string} vbasoftwareDatabase Target database
|
|
273
|
-
* @param {number} batchNumber Batch Number
|
|
274
|
-
* @param {number} batchClaim Batch Claim
|
|
275
246
|
* @param {Array<ClaimPreBatch>} claimPreBatch
|
|
276
247
|
* @param {*} [options] Override http request option.
|
|
277
248
|
* @throws {RequiredError}
|
|
278
249
|
*/
|
|
279
|
-
updateBatchClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
250
|
+
updateBatchClaimPreBatch: async (vbasoftwareDatabase: string, claimPreBatch: Array<ClaimPreBatch>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
280
251
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
281
252
|
assertParamExists('updateBatchClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
282
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
283
|
-
assertParamExists('updateBatchClaimPreBatch', 'batchNumber', batchNumber)
|
|
284
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
285
|
-
assertParamExists('updateBatchClaimPreBatch', 'batchClaim', batchClaim)
|
|
286
253
|
// verify required parameter 'claimPreBatch' is not null or undefined
|
|
287
254
|
assertParamExists('updateBatchClaimPreBatch', 'claimPreBatch', claimPreBatch)
|
|
288
|
-
const localVarPath = `/claim-
|
|
289
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
290
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
255
|
+
const localVarPath = `/claim-prebatches-batch`;
|
|
291
256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
292
257
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
293
258
|
let baseOptions;
|
|
@@ -328,28 +293,20 @@ export const ClaimPreBatchesApiAxiosParamCreator = function (configuration?: Con
|
|
|
328
293
|
* Updates a specific ClaimPreBatch.
|
|
329
294
|
* @summary Update ClaimPreBatch
|
|
330
295
|
* @param {string} vbasoftwareDatabase Target database
|
|
331
|
-
* @param {number} batchNumber Batch Number
|
|
332
|
-
* @param {number} batchClaim Batch Claim
|
|
333
296
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
334
297
|
* @param {ClaimPreBatch} claimPreBatch
|
|
335
298
|
* @param {*} [options] Override http request option.
|
|
336
299
|
* @throws {RequiredError}
|
|
337
300
|
*/
|
|
338
|
-
updateClaimPreBatch: async (vbasoftwareDatabase: string,
|
|
301
|
+
updateClaimPreBatch: async (vbasoftwareDatabase: string, claimPreBatchKey: number, claimPreBatch: ClaimPreBatch, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
339
302
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
340
303
|
assertParamExists('updateClaimPreBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
341
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
342
|
-
assertParamExists('updateClaimPreBatch', 'batchNumber', batchNumber)
|
|
343
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
344
|
-
assertParamExists('updateClaimPreBatch', 'batchClaim', batchClaim)
|
|
345
304
|
// verify required parameter 'claimPreBatchKey' is not null or undefined
|
|
346
305
|
assertParamExists('updateClaimPreBatch', 'claimPreBatchKey', claimPreBatchKey)
|
|
347
306
|
// verify required parameter 'claimPreBatch' is not null or undefined
|
|
348
307
|
assertParamExists('updateClaimPreBatch', 'claimPreBatch', claimPreBatch)
|
|
349
|
-
const localVarPath = `/claim-
|
|
350
|
-
.replace(`{${"
|
|
351
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
352
|
-
.replace(`{${"claimPreBatchKey"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
308
|
+
const localVarPath = `/claim-prebatches/{ClaimPreBatch_Key}`
|
|
309
|
+
.replace(`{${"ClaimPreBatch_Key"}}`, encodeURIComponent(String(claimPreBatchKey)));
|
|
353
310
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
354
311
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
355
312
|
let baseOptions;
|
|
@@ -400,86 +357,75 @@ export const ClaimPreBatchesApiFp = function(configuration?: Configuration) {
|
|
|
400
357
|
* Creates a new ClaimPreBatch
|
|
401
358
|
* @summary Create ClaimPreBatch
|
|
402
359
|
* @param {string} vbasoftwareDatabase Target database
|
|
403
|
-
* @param {number} batchNumber Batch Number
|
|
404
|
-
* @param {number} batchClaim Batch Claim
|
|
405
360
|
* @param {ClaimPreBatch} claimPreBatch
|
|
406
361
|
* @param {*} [options] Override http request option.
|
|
407
362
|
* @throws {RequiredError}
|
|
408
363
|
*/
|
|
409
|
-
async createClaimPreBatch(vbasoftwareDatabase: string,
|
|
410
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPreBatch(vbasoftwareDatabase,
|
|
364
|
+
async createClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchVBAResponse>> {
|
|
365
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options);
|
|
411
366
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
412
367
|
},
|
|
413
368
|
/**
|
|
414
369
|
* Deletes an ClaimPreBatch
|
|
415
370
|
* @summary Delete ClaimPreBatch
|
|
416
371
|
* @param {string} vbasoftwareDatabase Target database
|
|
417
|
-
* @param {number} batchNumber Batch Number
|
|
418
|
-
* @param {number} batchClaim Batch Claim
|
|
419
372
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
420
373
|
* @param {*} [options] Override http request option.
|
|
421
374
|
* @throws {RequiredError}
|
|
422
375
|
*/
|
|
423
|
-
async deleteClaimPreBatch(vbasoftwareDatabase: string,
|
|
424
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPreBatch(vbasoftwareDatabase,
|
|
376
|
+
async deleteClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
377
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options);
|
|
425
378
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
426
379
|
},
|
|
427
380
|
/**
|
|
428
381
|
* Gets ClaimPreBatch
|
|
429
382
|
* @summary Get ClaimPreBatch
|
|
430
383
|
* @param {string} vbasoftwareDatabase Target database
|
|
431
|
-
* @param {number} batchNumber Batch Number
|
|
432
|
-
* @param {number} batchClaim Batch Claim
|
|
433
384
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
434
385
|
* @param {*} [options] Override http request option.
|
|
435
386
|
* @throws {RequiredError}
|
|
436
387
|
*/
|
|
437
|
-
async getClaimPreBatch(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPreBatch(vbasoftwareDatabase,
|
|
388
|
+
async getClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchVBAResponse>> {
|
|
389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options);
|
|
439
390
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
391
|
},
|
|
441
392
|
/**
|
|
442
|
-
* Lists all ClaimPreBatch
|
|
393
|
+
* Lists all ClaimPreBatch
|
|
443
394
|
* @summary List ClaimPreBatch
|
|
444
395
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {
|
|
446
|
-
* @param {number} batchClaim Batch Claim
|
|
396
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
447
397
|
* @param {number} [page] Page
|
|
448
398
|
* @param {number} [pageSize] Page Size
|
|
449
399
|
* @param {*} [options] Override http request option.
|
|
450
400
|
* @throws {RequiredError}
|
|
451
401
|
*/
|
|
452
|
-
async listClaimPreBatch(vbasoftwareDatabase: string,
|
|
453
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPreBatch(vbasoftwareDatabase,
|
|
402
|
+
async listClaimPreBatch(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPreBatch(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
454
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
455
405
|
},
|
|
456
406
|
/**
|
|
457
407
|
* Create or Update multiple ClaimPreBatch at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
458
408
|
* @summary Create or Update Batch ClaimPreBatch
|
|
459
409
|
* @param {string} vbasoftwareDatabase Target database
|
|
460
|
-
* @param {number} batchNumber Batch Number
|
|
461
|
-
* @param {number} batchClaim Batch Claim
|
|
462
410
|
* @param {Array<ClaimPreBatch>} claimPreBatch
|
|
463
411
|
* @param {*} [options] Override http request option.
|
|
464
412
|
* @throws {RequiredError}
|
|
465
413
|
*/
|
|
466
|
-
async updateBatchClaimPreBatch(vbasoftwareDatabase: string,
|
|
467
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchClaimPreBatch(vbasoftwareDatabase,
|
|
414
|
+
async updateBatchClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: Array<ClaimPreBatch>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options);
|
|
468
416
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
469
417
|
},
|
|
470
418
|
/**
|
|
471
419
|
* Updates a specific ClaimPreBatch.
|
|
472
420
|
* @summary Update ClaimPreBatch
|
|
473
421
|
* @param {string} vbasoftwareDatabase Target database
|
|
474
|
-
* @param {number} batchNumber Batch Number
|
|
475
|
-
* @param {number} batchClaim Batch Claim
|
|
476
422
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
477
423
|
* @param {ClaimPreBatch} claimPreBatch
|
|
478
424
|
* @param {*} [options] Override http request option.
|
|
479
425
|
* @throws {RequiredError}
|
|
480
426
|
*/
|
|
481
|
-
async updateClaimPreBatch(vbasoftwareDatabase: string,
|
|
482
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPreBatch(vbasoftwareDatabase,
|
|
427
|
+
async updateClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchVBAResponse>> {
|
|
428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, claimPreBatch, options);
|
|
483
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
484
430
|
},
|
|
485
431
|
}
|
|
@@ -496,81 +442,70 @@ export const ClaimPreBatchesApiFactory = function (configuration?: Configuration
|
|
|
496
442
|
* Creates a new ClaimPreBatch
|
|
497
443
|
* @summary Create ClaimPreBatch
|
|
498
444
|
* @param {string} vbasoftwareDatabase Target database
|
|
499
|
-
* @param {number} batchNumber Batch Number
|
|
500
|
-
* @param {number} batchClaim Batch Claim
|
|
501
445
|
* @param {ClaimPreBatch} claimPreBatch
|
|
502
446
|
* @param {*} [options] Override http request option.
|
|
503
447
|
* @throws {RequiredError}
|
|
504
448
|
*/
|
|
505
|
-
createClaimPreBatch(vbasoftwareDatabase: string,
|
|
506
|
-
return localVarFp.createClaimPreBatch(vbasoftwareDatabase,
|
|
449
|
+
createClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: ClaimPreBatch, options?: any): AxiosPromise<ClaimPreBatchVBAResponse> {
|
|
450
|
+
return localVarFp.createClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options).then((request) => request(axios, basePath));
|
|
507
451
|
},
|
|
508
452
|
/**
|
|
509
453
|
* Deletes an ClaimPreBatch
|
|
510
454
|
* @summary Delete ClaimPreBatch
|
|
511
455
|
* @param {string} vbasoftwareDatabase Target database
|
|
512
|
-
* @param {number} batchNumber Batch Number
|
|
513
|
-
* @param {number} batchClaim Batch Claim
|
|
514
456
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
515
457
|
* @param {*} [options] Override http request option.
|
|
516
458
|
* @throws {RequiredError}
|
|
517
459
|
*/
|
|
518
|
-
deleteClaimPreBatch(vbasoftwareDatabase: string,
|
|
519
|
-
return localVarFp.deleteClaimPreBatch(vbasoftwareDatabase,
|
|
460
|
+
deleteClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: any): AxiosPromise<void> {
|
|
461
|
+
return localVarFp.deleteClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options).then((request) => request(axios, basePath));
|
|
520
462
|
},
|
|
521
463
|
/**
|
|
522
464
|
* Gets ClaimPreBatch
|
|
523
465
|
* @summary Get ClaimPreBatch
|
|
524
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
525
|
-
* @param {number} batchNumber Batch Number
|
|
526
|
-
* @param {number} batchClaim Batch Claim
|
|
527
467
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
528
468
|
* @param {*} [options] Override http request option.
|
|
529
469
|
* @throws {RequiredError}
|
|
530
470
|
*/
|
|
531
|
-
getClaimPreBatch(vbasoftwareDatabase: string,
|
|
532
|
-
return localVarFp.getClaimPreBatch(vbasoftwareDatabase,
|
|
471
|
+
getClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: any): AxiosPromise<ClaimPreBatchVBAResponse> {
|
|
472
|
+
return localVarFp.getClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options).then((request) => request(axios, basePath));
|
|
533
473
|
},
|
|
534
474
|
/**
|
|
535
|
-
* Lists all ClaimPreBatch
|
|
475
|
+
* Lists all ClaimPreBatch
|
|
536
476
|
* @summary List ClaimPreBatch
|
|
537
477
|
* @param {string} vbasoftwareDatabase Target database
|
|
538
|
-
* @param {
|
|
539
|
-
* @param {number} batchClaim Batch Claim
|
|
478
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
540
479
|
* @param {number} [page] Page
|
|
541
480
|
* @param {number} [pageSize] Page Size
|
|
542
481
|
* @param {*} [options] Override http request option.
|
|
543
482
|
* @throws {RequiredError}
|
|
544
483
|
*/
|
|
545
|
-
listClaimPreBatch(vbasoftwareDatabase: string,
|
|
546
|
-
return localVarFp.listClaimPreBatch(vbasoftwareDatabase,
|
|
484
|
+
listClaimPreBatch(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ClaimPreBatchListVBAResponse> {
|
|
485
|
+
return localVarFp.listClaimPreBatch(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
547
486
|
},
|
|
548
487
|
/**
|
|
549
488
|
* Create or Update multiple ClaimPreBatch at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
550
489
|
* @summary Create or Update Batch ClaimPreBatch
|
|
551
490
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {number} batchNumber Batch Number
|
|
553
|
-
* @param {number} batchClaim Batch Claim
|
|
554
491
|
* @param {Array<ClaimPreBatch>} claimPreBatch
|
|
555
492
|
* @param {*} [options] Override http request option.
|
|
556
493
|
* @throws {RequiredError}
|
|
557
494
|
*/
|
|
558
|
-
updateBatchClaimPreBatch(vbasoftwareDatabase: string,
|
|
559
|
-
return localVarFp.updateBatchClaimPreBatch(vbasoftwareDatabase,
|
|
495
|
+
updateBatchClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: Array<ClaimPreBatch>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
496
|
+
return localVarFp.updateBatchClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options).then((request) => request(axios, basePath));
|
|
560
497
|
},
|
|
561
498
|
/**
|
|
562
499
|
* Updates a specific ClaimPreBatch.
|
|
563
500
|
* @summary Update ClaimPreBatch
|
|
564
501
|
* @param {string} vbasoftwareDatabase Target database
|
|
565
|
-
* @param {number} batchNumber Batch Number
|
|
566
|
-
* @param {number} batchClaim Batch Claim
|
|
567
502
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
568
503
|
* @param {ClaimPreBatch} claimPreBatch
|
|
569
504
|
* @param {*} [options] Override http request option.
|
|
570
505
|
* @throws {RequiredError}
|
|
571
506
|
*/
|
|
572
|
-
updateClaimPreBatch(vbasoftwareDatabase: string,
|
|
573
|
-
return localVarFp.updateClaimPreBatch(vbasoftwareDatabase,
|
|
507
|
+
updateClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, claimPreBatch: ClaimPreBatch, options?: any): AxiosPromise<ClaimPreBatchVBAResponse> {
|
|
508
|
+
return localVarFp.updateClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, claimPreBatch, options).then((request) => request(axios, basePath));
|
|
574
509
|
},
|
|
575
510
|
};
|
|
576
511
|
};
|
|
@@ -585,81 +520,70 @@ export interface ClaimPreBatchesApiInterface {
|
|
|
585
520
|
* Creates a new ClaimPreBatch
|
|
586
521
|
* @summary Create ClaimPreBatch
|
|
587
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {number} batchNumber Batch Number
|
|
589
|
-
* @param {number} batchClaim Batch Claim
|
|
590
523
|
* @param {ClaimPreBatch} claimPreBatch
|
|
591
524
|
* @param {*} [options] Override http request option.
|
|
592
525
|
* @throws {RequiredError}
|
|
593
526
|
* @memberof ClaimPreBatchesApiInterface
|
|
594
527
|
*/
|
|
595
|
-
createClaimPreBatch(vbasoftwareDatabase: string,
|
|
528
|
+
createClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchVBAResponse>;
|
|
596
529
|
|
|
597
530
|
/**
|
|
598
531
|
* Deletes an ClaimPreBatch
|
|
599
532
|
* @summary Delete ClaimPreBatch
|
|
600
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {number} batchNumber Batch Number
|
|
602
|
-
* @param {number} batchClaim Batch Claim
|
|
603
534
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
604
535
|
* @param {*} [options] Override http request option.
|
|
605
536
|
* @throws {RequiredError}
|
|
606
537
|
* @memberof ClaimPreBatchesApiInterface
|
|
607
538
|
*/
|
|
608
|
-
deleteClaimPreBatch(vbasoftwareDatabase: string,
|
|
539
|
+
deleteClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
609
540
|
|
|
610
541
|
/**
|
|
611
542
|
* Gets ClaimPreBatch
|
|
612
543
|
* @summary Get ClaimPreBatch
|
|
613
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
614
|
-
* @param {number} batchNumber Batch Number
|
|
615
|
-
* @param {number} batchClaim Batch Claim
|
|
616
545
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
617
546
|
* @param {*} [options] Override http request option.
|
|
618
547
|
* @throws {RequiredError}
|
|
619
548
|
* @memberof ClaimPreBatchesApiInterface
|
|
620
549
|
*/
|
|
621
|
-
getClaimPreBatch(vbasoftwareDatabase: string,
|
|
550
|
+
getClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchVBAResponse>;
|
|
622
551
|
|
|
623
552
|
/**
|
|
624
|
-
* Lists all ClaimPreBatch
|
|
553
|
+
* Lists all ClaimPreBatch
|
|
625
554
|
* @summary List ClaimPreBatch
|
|
626
555
|
* @param {string} vbasoftwareDatabase Target database
|
|
627
|
-
* @param {
|
|
628
|
-
* @param {number} batchClaim Batch Claim
|
|
556
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
629
557
|
* @param {number} [page] Page
|
|
630
558
|
* @param {number} [pageSize] Page Size
|
|
631
559
|
* @param {*} [options] Override http request option.
|
|
632
560
|
* @throws {RequiredError}
|
|
633
561
|
* @memberof ClaimPreBatchesApiInterface
|
|
634
562
|
*/
|
|
635
|
-
listClaimPreBatch(vbasoftwareDatabase: string,
|
|
563
|
+
listClaimPreBatch(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchListVBAResponse>;
|
|
636
564
|
|
|
637
565
|
/**
|
|
638
566
|
* Create or Update multiple ClaimPreBatch at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
639
567
|
* @summary Create or Update Batch ClaimPreBatch
|
|
640
568
|
* @param {string} vbasoftwareDatabase Target database
|
|
641
|
-
* @param {number} batchNumber Batch Number
|
|
642
|
-
* @param {number} batchClaim Batch Claim
|
|
643
569
|
* @param {Array<ClaimPreBatch>} claimPreBatch
|
|
644
570
|
* @param {*} [options] Override http request option.
|
|
645
571
|
* @throws {RequiredError}
|
|
646
572
|
* @memberof ClaimPreBatchesApiInterface
|
|
647
573
|
*/
|
|
648
|
-
updateBatchClaimPreBatch(vbasoftwareDatabase: string,
|
|
574
|
+
updateBatchClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: Array<ClaimPreBatch>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
649
575
|
|
|
650
576
|
/**
|
|
651
577
|
* Updates a specific ClaimPreBatch.
|
|
652
578
|
* @summary Update ClaimPreBatch
|
|
653
579
|
* @param {string} vbasoftwareDatabase Target database
|
|
654
|
-
* @param {number} batchNumber Batch Number
|
|
655
|
-
* @param {number} batchClaim Batch Claim
|
|
656
580
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
657
581
|
* @param {ClaimPreBatch} claimPreBatch
|
|
658
582
|
* @param {*} [options] Override http request option.
|
|
659
583
|
* @throws {RequiredError}
|
|
660
584
|
* @memberof ClaimPreBatchesApiInterface
|
|
661
585
|
*/
|
|
662
|
-
updateClaimPreBatch(vbasoftwareDatabase: string,
|
|
586
|
+
updateClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchVBAResponse>;
|
|
663
587
|
|
|
664
588
|
}
|
|
665
589
|
|
|
@@ -674,91 +598,80 @@ export class ClaimPreBatchesApi extends BaseAPI implements ClaimPreBatchesApiInt
|
|
|
674
598
|
* Creates a new ClaimPreBatch
|
|
675
599
|
* @summary Create ClaimPreBatch
|
|
676
600
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {number} batchNumber Batch Number
|
|
678
|
-
* @param {number} batchClaim Batch Claim
|
|
679
601
|
* @param {ClaimPreBatch} claimPreBatch
|
|
680
602
|
* @param {*} [options] Override http request option.
|
|
681
603
|
* @throws {RequiredError}
|
|
682
604
|
* @memberof ClaimPreBatchesApi
|
|
683
605
|
*/
|
|
684
|
-
public createClaimPreBatch(vbasoftwareDatabase: string,
|
|
685
|
-
return ClaimPreBatchesApiFp(this.configuration).createClaimPreBatch(vbasoftwareDatabase,
|
|
606
|
+
public createClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig) {
|
|
607
|
+
return ClaimPreBatchesApiFp(this.configuration).createClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options).then((request) => request(this.axios, this.basePath));
|
|
686
608
|
}
|
|
687
609
|
|
|
688
610
|
/**
|
|
689
611
|
* Deletes an ClaimPreBatch
|
|
690
612
|
* @summary Delete ClaimPreBatch
|
|
691
613
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {number} batchNumber Batch Number
|
|
693
|
-
* @param {number} batchClaim Batch Claim
|
|
694
614
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
695
615
|
* @param {*} [options] Override http request option.
|
|
696
616
|
* @throws {RequiredError}
|
|
697
617
|
* @memberof ClaimPreBatchesApi
|
|
698
618
|
*/
|
|
699
|
-
public deleteClaimPreBatch(vbasoftwareDatabase: string,
|
|
700
|
-
return ClaimPreBatchesApiFp(this.configuration).deleteClaimPreBatch(vbasoftwareDatabase,
|
|
619
|
+
public deleteClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig) {
|
|
620
|
+
return ClaimPreBatchesApiFp(this.configuration).deleteClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options).then((request) => request(this.axios, this.basePath));
|
|
701
621
|
}
|
|
702
622
|
|
|
703
623
|
/**
|
|
704
624
|
* Gets ClaimPreBatch
|
|
705
625
|
* @summary Get ClaimPreBatch
|
|
706
626
|
* @param {string} vbasoftwareDatabase Target database
|
|
707
|
-
* @param {number} batchNumber Batch Number
|
|
708
|
-
* @param {number} batchClaim Batch Claim
|
|
709
627
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
710
628
|
* @param {*} [options] Override http request option.
|
|
711
629
|
* @throws {RequiredError}
|
|
712
630
|
* @memberof ClaimPreBatchesApi
|
|
713
631
|
*/
|
|
714
|
-
public getClaimPreBatch(vbasoftwareDatabase: string,
|
|
715
|
-
return ClaimPreBatchesApiFp(this.configuration).getClaimPreBatch(vbasoftwareDatabase,
|
|
632
|
+
public getClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, options?: AxiosRequestConfig) {
|
|
633
|
+
return ClaimPreBatchesApiFp(this.configuration).getClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, options).then((request) => request(this.axios, this.basePath));
|
|
716
634
|
}
|
|
717
635
|
|
|
718
636
|
/**
|
|
719
|
-
* Lists all ClaimPreBatch
|
|
637
|
+
* Lists all ClaimPreBatch
|
|
720
638
|
* @summary List ClaimPreBatch
|
|
721
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
722
|
-
* @param {
|
|
723
|
-
* @param {number} batchClaim Batch Claim
|
|
640
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
724
641
|
* @param {number} [page] Page
|
|
725
642
|
* @param {number} [pageSize] Page Size
|
|
726
643
|
* @param {*} [options] Override http request option.
|
|
727
644
|
* @throws {RequiredError}
|
|
728
645
|
* @memberof ClaimPreBatchesApi
|
|
729
646
|
*/
|
|
730
|
-
public listClaimPreBatch(vbasoftwareDatabase: string,
|
|
731
|
-
return ClaimPreBatchesApiFp(this.configuration).listClaimPreBatch(vbasoftwareDatabase,
|
|
647
|
+
public listClaimPreBatch(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return ClaimPreBatchesApiFp(this.configuration).listClaimPreBatch(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
732
649
|
}
|
|
733
650
|
|
|
734
651
|
/**
|
|
735
652
|
* Create or Update multiple ClaimPreBatch at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
736
653
|
* @summary Create or Update Batch ClaimPreBatch
|
|
737
654
|
* @param {string} vbasoftwareDatabase Target database
|
|
738
|
-
* @param {number} batchNumber Batch Number
|
|
739
|
-
* @param {number} batchClaim Batch Claim
|
|
740
655
|
* @param {Array<ClaimPreBatch>} claimPreBatch
|
|
741
656
|
* @param {*} [options] Override http request option.
|
|
742
657
|
* @throws {RequiredError}
|
|
743
658
|
* @memberof ClaimPreBatchesApi
|
|
744
659
|
*/
|
|
745
|
-
public updateBatchClaimPreBatch(vbasoftwareDatabase: string,
|
|
746
|
-
return ClaimPreBatchesApiFp(this.configuration).updateBatchClaimPreBatch(vbasoftwareDatabase,
|
|
660
|
+
public updateBatchClaimPreBatch(vbasoftwareDatabase: string, claimPreBatch: Array<ClaimPreBatch>, options?: AxiosRequestConfig) {
|
|
661
|
+
return ClaimPreBatchesApiFp(this.configuration).updateBatchClaimPreBatch(vbasoftwareDatabase, claimPreBatch, options).then((request) => request(this.axios, this.basePath));
|
|
747
662
|
}
|
|
748
663
|
|
|
749
664
|
/**
|
|
750
665
|
* Updates a specific ClaimPreBatch.
|
|
751
666
|
* @summary Update ClaimPreBatch
|
|
752
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
753
|
-
* @param {number} batchNumber Batch Number
|
|
754
|
-
* @param {number} batchClaim Batch Claim
|
|
755
668
|
* @param {number} claimPreBatchKey ClaimPreBatch Key
|
|
756
669
|
* @param {ClaimPreBatch} claimPreBatch
|
|
757
670
|
* @param {*} [options] Override http request option.
|
|
758
671
|
* @throws {RequiredError}
|
|
759
672
|
* @memberof ClaimPreBatchesApi
|
|
760
673
|
*/
|
|
761
|
-
public updateClaimPreBatch(vbasoftwareDatabase: string,
|
|
762
|
-
return ClaimPreBatchesApiFp(this.configuration).updateClaimPreBatch(vbasoftwareDatabase,
|
|
674
|
+
public updateClaimPreBatch(vbasoftwareDatabase: string, claimPreBatchKey: number, claimPreBatch: ClaimPreBatch, options?: AxiosRequestConfig) {
|
|
675
|
+
return ClaimPreBatchesApiFp(this.configuration).updateClaimPreBatch(vbasoftwareDatabase, claimPreBatchKey, claimPreBatch, options).then((request) => request(this.axios, this.basePath));
|
|
763
676
|
}
|
|
764
677
|
}
|