@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230807.2 → 1.20230808.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/api/claim-adjudication-api.ts +88 -52
- package/package.json +1 -1
|
@@ -29,15 +29,16 @@ import { ClaimBatchClaimBatchDetailVBAResponse } from '../models';
|
|
|
29
29
|
export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
30
|
return {
|
|
31
31
|
/**
|
|
32
|
-
* Adjudicates a single claim and waits for the response
|
|
32
|
+
* Adjudicates a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
33
33
|
* @summary Adjudicate Single Claim
|
|
34
34
|
* @param {string} vbasoftwareDatabase Target database
|
|
35
35
|
* @param {number} batchNumber Batch Number
|
|
36
36
|
* @param {number} batchClaim Batch Claim
|
|
37
|
+
* @param {string} [requestingUser] Requesting User
|
|
37
38
|
* @param {*} [options] Override http request option.
|
|
38
39
|
* @throws {RequiredError}
|
|
39
40
|
*/
|
|
40
|
-
adjudicateClaim: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41
|
+
adjudicateClaim: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41
42
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
42
43
|
assertParamExists('adjudicateClaim', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
43
44
|
// verify required parameter 'batchNumber' is not null or undefined
|
|
@@ -65,6 +66,10 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
65
66
|
// http bearer authentication required
|
|
66
67
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
67
68
|
|
|
69
|
+
if (requestingUser !== undefined) {
|
|
70
|
+
localVarQueryParameter['requestingUser'] = requestingUser;
|
|
71
|
+
}
|
|
72
|
+
|
|
68
73
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
69
74
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
70
75
|
}
|
|
@@ -81,15 +86,16 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
81
86
|
};
|
|
82
87
|
},
|
|
83
88
|
/**
|
|
84
|
-
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
89
|
+
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
85
90
|
* @summary Adjudicate Single Claim without response
|
|
86
91
|
* @param {string} vbasoftwareDatabase Target database
|
|
87
92
|
* @param {number} batchNumber Batch Number
|
|
88
93
|
* @param {number} batchClaim Batch Claim
|
|
94
|
+
* @param {string} [requestingUser] Requesting User
|
|
89
95
|
* @param {*} [options] Override http request option.
|
|
90
96
|
* @throws {RequiredError}
|
|
91
97
|
*/
|
|
92
|
-
adjudicateClaimNoResponse: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98
|
+
adjudicateClaimNoResponse: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
93
99
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
94
100
|
assertParamExists('adjudicateClaimNoResponse', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
95
101
|
// verify required parameter 'batchNumber' is not null or undefined
|
|
@@ -117,6 +123,10 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
117
123
|
// http bearer authentication required
|
|
118
124
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
119
125
|
|
|
126
|
+
if (requestingUser !== undefined) {
|
|
127
|
+
localVarQueryParameter['requestingUser'] = requestingUser;
|
|
128
|
+
}
|
|
129
|
+
|
|
120
130
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
121
131
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
122
132
|
}
|
|
@@ -181,15 +191,16 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
181
191
|
};
|
|
182
192
|
},
|
|
183
193
|
/**
|
|
184
|
-
* Process a single claim and waits for the response
|
|
194
|
+
* Process a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
185
195
|
* @summary Process Single Claim
|
|
186
196
|
* @param {string} vbasoftwareDatabase Target database
|
|
187
197
|
* @param {number} batchNumber Batch Number
|
|
188
198
|
* @param {number} batchClaim Batch Claim
|
|
199
|
+
* @param {string} [requestingUser] Requesting User
|
|
189
200
|
* @param {*} [options] Override http request option.
|
|
190
201
|
* @throws {RequiredError}
|
|
191
202
|
*/
|
|
192
|
-
processClaim: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
203
|
+
processClaim: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
204
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
194
205
|
assertParamExists('processClaim', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
195
206
|
// verify required parameter 'batchNumber' is not null or undefined
|
|
@@ -217,6 +228,10 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
217
228
|
// http bearer authentication required
|
|
218
229
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
219
230
|
|
|
231
|
+
if (requestingUser !== undefined) {
|
|
232
|
+
localVarQueryParameter['requestingUser'] = requestingUser;
|
|
233
|
+
}
|
|
234
|
+
|
|
220
235
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
221
236
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
222
237
|
}
|
|
@@ -233,15 +248,16 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
233
248
|
};
|
|
234
249
|
},
|
|
235
250
|
/**
|
|
236
|
-
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
251
|
+
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
237
252
|
* @summary Process Single Claim without response
|
|
238
253
|
* @param {string} vbasoftwareDatabase Target database
|
|
239
254
|
* @param {number} batchNumber Batch Number
|
|
240
255
|
* @param {number} batchClaim Batch Claim
|
|
256
|
+
* @param {string} [requestingUser] Requesting User
|
|
241
257
|
* @param {*} [options] Override http request option.
|
|
242
258
|
* @throws {RequiredError}
|
|
243
259
|
*/
|
|
244
|
-
processClaimNoResponse: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
260
|
+
processClaimNoResponse: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
245
261
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
246
262
|
assertParamExists('processClaimNoResponse', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
247
263
|
// verify required parameter 'batchNumber' is not null or undefined
|
|
@@ -269,6 +285,10 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
269
285
|
// http bearer authentication required
|
|
270
286
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
271
287
|
|
|
288
|
+
if (requestingUser !== undefined) {
|
|
289
|
+
localVarQueryParameter['requestingUser'] = requestingUser;
|
|
290
|
+
}
|
|
291
|
+
|
|
272
292
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
273
293
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
274
294
|
}
|
|
@@ -343,29 +363,31 @@ export const ClaimAdjudicationApiFp = function(configuration?: Configuration) {
|
|
|
343
363
|
const localVarAxiosParamCreator = ClaimAdjudicationApiAxiosParamCreator(configuration)
|
|
344
364
|
return {
|
|
345
365
|
/**
|
|
346
|
-
* Adjudicates a single claim and waits for the response
|
|
366
|
+
* Adjudicates a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
347
367
|
* @summary Adjudicate Single Claim
|
|
348
368
|
* @param {string} vbasoftwareDatabase Target database
|
|
349
369
|
* @param {number} batchNumber Batch Number
|
|
350
370
|
* @param {number} batchClaim Batch Claim
|
|
371
|
+
* @param {string} [requestingUser] Requesting User
|
|
351
372
|
* @param {*} [options] Override http request option.
|
|
352
373
|
* @throws {RequiredError}
|
|
353
374
|
*/
|
|
354
|
-
async adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>> {
|
|
355
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
375
|
+
async adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>> {
|
|
376
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options);
|
|
356
377
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
357
378
|
},
|
|
358
379
|
/**
|
|
359
|
-
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
380
|
+
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
360
381
|
* @summary Adjudicate Single Claim without response
|
|
361
382
|
* @param {string} vbasoftwareDatabase Target database
|
|
362
383
|
* @param {number} batchNumber Batch Number
|
|
363
384
|
* @param {number} batchClaim Batch Claim
|
|
385
|
+
* @param {string} [requestingUser] Requesting User
|
|
364
386
|
* @param {*} [options] Override http request option.
|
|
365
387
|
* @throws {RequiredError}
|
|
366
388
|
*/
|
|
367
|
-
async adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
368
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
389
|
+
async adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
390
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options);
|
|
369
391
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
370
392
|
},
|
|
371
393
|
/**
|
|
@@ -381,29 +403,31 @@ export const ClaimAdjudicationApiFp = function(configuration?: Configuration) {
|
|
|
381
403
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
382
404
|
},
|
|
383
405
|
/**
|
|
384
|
-
* Process a single claim and waits for the response
|
|
406
|
+
* Process a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
385
407
|
* @summary Process Single Claim
|
|
386
408
|
* @param {string} vbasoftwareDatabase Target database
|
|
387
409
|
* @param {number} batchNumber Batch Number
|
|
388
410
|
* @param {number} batchClaim Batch Claim
|
|
411
|
+
* @param {string} [requestingUser] Requesting User
|
|
389
412
|
* @param {*} [options] Override http request option.
|
|
390
413
|
* @throws {RequiredError}
|
|
391
414
|
*/
|
|
392
|
-
async processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>> {
|
|
393
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.processClaim(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
415
|
+
async processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>> {
|
|
416
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.processClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options);
|
|
394
417
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
395
418
|
},
|
|
396
419
|
/**
|
|
397
|
-
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
420
|
+
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
398
421
|
* @summary Process Single Claim without response
|
|
399
422
|
* @param {string} vbasoftwareDatabase Target database
|
|
400
423
|
* @param {number} batchNumber Batch Number
|
|
401
424
|
* @param {number} batchClaim Batch Claim
|
|
425
|
+
* @param {string} [requestingUser] Requesting User
|
|
402
426
|
* @param {*} [options] Override http request option.
|
|
403
427
|
* @throws {RequiredError}
|
|
404
428
|
*/
|
|
405
|
-
async processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
406
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
429
|
+
async processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
430
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options);
|
|
407
431
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
408
432
|
},
|
|
409
433
|
/**
|
|
@@ -429,28 +453,30 @@ export const ClaimAdjudicationApiFactory = function (configuration?: Configurati
|
|
|
429
453
|
const localVarFp = ClaimAdjudicationApiFp(configuration)
|
|
430
454
|
return {
|
|
431
455
|
/**
|
|
432
|
-
* Adjudicates a single claim and waits for the response
|
|
456
|
+
* Adjudicates a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
433
457
|
* @summary Adjudicate Single Claim
|
|
434
458
|
* @param {string} vbasoftwareDatabase Target database
|
|
435
459
|
* @param {number} batchNumber Batch Number
|
|
436
460
|
* @param {number} batchClaim Batch Claim
|
|
461
|
+
* @param {string} [requestingUser] Requesting User
|
|
437
462
|
* @param {*} [options] Override http request option.
|
|
438
463
|
* @throws {RequiredError}
|
|
439
464
|
*/
|
|
440
|
-
adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse> {
|
|
441
|
-
return localVarFp.adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
465
|
+
adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: any): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse> {
|
|
466
|
+
return localVarFp.adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(axios, basePath));
|
|
442
467
|
},
|
|
443
468
|
/**
|
|
444
|
-
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
469
|
+
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
445
470
|
* @summary Adjudicate Single Claim without response
|
|
446
471
|
* @param {string} vbasoftwareDatabase Target database
|
|
447
472
|
* @param {number} batchNumber Batch Number
|
|
448
473
|
* @param {number} batchClaim Batch Claim
|
|
474
|
+
* @param {string} [requestingUser] Requesting User
|
|
449
475
|
* @param {*} [options] Override http request option.
|
|
450
476
|
* @throws {RequiredError}
|
|
451
477
|
*/
|
|
452
|
-
adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<void> {
|
|
453
|
-
return localVarFp.adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
478
|
+
adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: any): AxiosPromise<void> {
|
|
479
|
+
return localVarFp.adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(axios, basePath));
|
|
454
480
|
},
|
|
455
481
|
/**
|
|
456
482
|
* Adjudicates all Claims within a Claim Queue. This is a Fire and Forget. Results of the adjudication will start to be visible shortly after calling this endpoint.
|
|
@@ -464,28 +490,30 @@ export const ClaimAdjudicationApiFactory = function (configuration?: Configurati
|
|
|
464
490
|
return localVarFp.adjudicateClaimQueue(vbasoftwareDatabase, claimQueueKey, options).then((request) => request(axios, basePath));
|
|
465
491
|
},
|
|
466
492
|
/**
|
|
467
|
-
* Process a single claim and waits for the response
|
|
493
|
+
* Process a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
468
494
|
* @summary Process Single Claim
|
|
469
495
|
* @param {string} vbasoftwareDatabase Target database
|
|
470
496
|
* @param {number} batchNumber Batch Number
|
|
471
497
|
* @param {number} batchClaim Batch Claim
|
|
498
|
+
* @param {string} [requestingUser] Requesting User
|
|
472
499
|
* @param {*} [options] Override http request option.
|
|
473
500
|
* @throws {RequiredError}
|
|
474
501
|
*/
|
|
475
|
-
processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse> {
|
|
476
|
-
return localVarFp.processClaim(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
502
|
+
processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: any): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse> {
|
|
503
|
+
return localVarFp.processClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(axios, basePath));
|
|
477
504
|
},
|
|
478
505
|
/**
|
|
479
|
-
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
506
|
+
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
480
507
|
* @summary Process Single Claim without response
|
|
481
508
|
* @param {string} vbasoftwareDatabase Target database
|
|
482
509
|
* @param {number} batchNumber Batch Number
|
|
483
510
|
* @param {number} batchClaim Batch Claim
|
|
511
|
+
* @param {string} [requestingUser] Requesting User
|
|
484
512
|
* @param {*} [options] Override http request option.
|
|
485
513
|
* @throws {RequiredError}
|
|
486
514
|
*/
|
|
487
|
-
processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<void> {
|
|
488
|
-
return localVarFp.processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
515
|
+
processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: any): AxiosPromise<void> {
|
|
516
|
+
return localVarFp.processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(axios, basePath));
|
|
489
517
|
},
|
|
490
518
|
/**
|
|
491
519
|
* Process all Claims within a Claim Queue. This is a Fire and Forget. Results of the adjudication will start to be visible shortly after calling this endpoint.
|
|
@@ -508,28 +536,30 @@ export const ClaimAdjudicationApiFactory = function (configuration?: Configurati
|
|
|
508
536
|
*/
|
|
509
537
|
export interface ClaimAdjudicationApiInterface {
|
|
510
538
|
/**
|
|
511
|
-
* Adjudicates a single claim and waits for the response
|
|
539
|
+
* Adjudicates a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
512
540
|
* @summary Adjudicate Single Claim
|
|
513
541
|
* @param {string} vbasoftwareDatabase Target database
|
|
514
542
|
* @param {number} batchNumber Batch Number
|
|
515
543
|
* @param {number} batchClaim Batch Claim
|
|
544
|
+
* @param {string} [requestingUser] Requesting User
|
|
516
545
|
* @param {*} [options] Override http request option.
|
|
517
546
|
* @throws {RequiredError}
|
|
518
547
|
* @memberof ClaimAdjudicationApiInterface
|
|
519
548
|
*/
|
|
520
|
-
adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>;
|
|
549
|
+
adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>;
|
|
521
550
|
|
|
522
551
|
/**
|
|
523
|
-
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
552
|
+
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
524
553
|
* @summary Adjudicate Single Claim without response
|
|
525
554
|
* @param {string} vbasoftwareDatabase Target database
|
|
526
555
|
* @param {number} batchNumber Batch Number
|
|
527
556
|
* @param {number} batchClaim Batch Claim
|
|
557
|
+
* @param {string} [requestingUser] Requesting User
|
|
528
558
|
* @param {*} [options] Override http request option.
|
|
529
559
|
* @throws {RequiredError}
|
|
530
560
|
* @memberof ClaimAdjudicationApiInterface
|
|
531
561
|
*/
|
|
532
|
-
adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
562
|
+
adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
533
563
|
|
|
534
564
|
/**
|
|
535
565
|
* Adjudicates all Claims within a Claim Queue. This is a Fire and Forget. Results of the adjudication will start to be visible shortly after calling this endpoint.
|
|
@@ -543,28 +573,30 @@ export interface ClaimAdjudicationApiInterface {
|
|
|
543
573
|
adjudicateClaimQueue(vbasoftwareDatabase: string, claimQueueKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
544
574
|
|
|
545
575
|
/**
|
|
546
|
-
* Process a single claim and waits for the response
|
|
576
|
+
* Process a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
547
577
|
* @summary Process Single Claim
|
|
548
578
|
* @param {string} vbasoftwareDatabase Target database
|
|
549
579
|
* @param {number} batchNumber Batch Number
|
|
550
580
|
* @param {number} batchClaim Batch Claim
|
|
581
|
+
* @param {string} [requestingUser] Requesting User
|
|
551
582
|
* @param {*} [options] Override http request option.
|
|
552
583
|
* @throws {RequiredError}
|
|
553
584
|
* @memberof ClaimAdjudicationApiInterface
|
|
554
585
|
*/
|
|
555
|
-
processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>;
|
|
586
|
+
processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchClaimBatchDetailVBAResponse>;
|
|
556
587
|
|
|
557
588
|
/**
|
|
558
|
-
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
589
|
+
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
559
590
|
* @summary Process Single Claim without response
|
|
560
591
|
* @param {string} vbasoftwareDatabase Target database
|
|
561
592
|
* @param {number} batchNumber Batch Number
|
|
562
593
|
* @param {number} batchClaim Batch Claim
|
|
594
|
+
* @param {string} [requestingUser] Requesting User
|
|
563
595
|
* @param {*} [options] Override http request option.
|
|
564
596
|
* @throws {RequiredError}
|
|
565
597
|
* @memberof ClaimAdjudicationApiInterface
|
|
566
598
|
*/
|
|
567
|
-
processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
599
|
+
processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
568
600
|
|
|
569
601
|
/**
|
|
570
602
|
* Process all Claims within a Claim Queue. This is a Fire and Forget. Results of the adjudication will start to be visible shortly after calling this endpoint.
|
|
@@ -587,31 +619,33 @@ export interface ClaimAdjudicationApiInterface {
|
|
|
587
619
|
*/
|
|
588
620
|
export class ClaimAdjudicationApi extends BaseAPI implements ClaimAdjudicationApiInterface {
|
|
589
621
|
/**
|
|
590
|
-
* Adjudicates a single claim and waits for the response
|
|
622
|
+
* Adjudicates a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
591
623
|
* @summary Adjudicate Single Claim
|
|
592
624
|
* @param {string} vbasoftwareDatabase Target database
|
|
593
625
|
* @param {number} batchNumber Batch Number
|
|
594
626
|
* @param {number} batchClaim Batch Claim
|
|
627
|
+
* @param {string} [requestingUser] Requesting User
|
|
595
628
|
* @param {*} [options] Override http request option.
|
|
596
629
|
* @throws {RequiredError}
|
|
597
630
|
* @memberof ClaimAdjudicationApi
|
|
598
631
|
*/
|
|
599
|
-
public adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig) {
|
|
600
|
-
return ClaimAdjudicationApiFp(this.configuration).adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
632
|
+
public adjudicateClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig) {
|
|
633
|
+
return ClaimAdjudicationApiFp(this.configuration).adjudicateClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(this.axios, this.basePath));
|
|
601
634
|
}
|
|
602
635
|
|
|
603
636
|
/**
|
|
604
|
-
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
637
|
+
* Adjudicates a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
605
638
|
* @summary Adjudicate Single Claim without response
|
|
606
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
607
640
|
* @param {number} batchNumber Batch Number
|
|
608
641
|
* @param {number} batchClaim Batch Claim
|
|
642
|
+
* @param {string} [requestingUser] Requesting User
|
|
609
643
|
* @param {*} [options] Override http request option.
|
|
610
644
|
* @throws {RequiredError}
|
|
611
645
|
* @memberof ClaimAdjudicationApi
|
|
612
646
|
*/
|
|
613
|
-
public adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig) {
|
|
614
|
-
return ClaimAdjudicationApiFp(this.configuration).adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
647
|
+
public adjudicateClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig) {
|
|
648
|
+
return ClaimAdjudicationApiFp(this.configuration).adjudicateClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(this.axios, this.basePath));
|
|
615
649
|
}
|
|
616
650
|
|
|
617
651
|
/**
|
|
@@ -628,31 +662,33 @@ export class ClaimAdjudicationApi extends BaseAPI implements ClaimAdjudicationAp
|
|
|
628
662
|
}
|
|
629
663
|
|
|
630
664
|
/**
|
|
631
|
-
* Process a single claim and waits for the response
|
|
665
|
+
* Process a single claim and waits for the response. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
632
666
|
* @summary Process Single Claim
|
|
633
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
634
668
|
* @param {number} batchNumber Batch Number
|
|
635
669
|
* @param {number} batchClaim Batch Claim
|
|
670
|
+
* @param {string} [requestingUser] Requesting User
|
|
636
671
|
* @param {*} [options] Override http request option.
|
|
637
672
|
* @throws {RequiredError}
|
|
638
673
|
* @memberof ClaimAdjudicationApi
|
|
639
674
|
*/
|
|
640
|
-
public processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig) {
|
|
641
|
-
return ClaimAdjudicationApiFp(this.configuration).processClaim(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
675
|
+
public processClaim(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig) {
|
|
676
|
+
return ClaimAdjudicationApiFp(this.configuration).processClaim(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(this.axios, this.basePath));
|
|
642
677
|
}
|
|
643
678
|
|
|
644
679
|
/**
|
|
645
|
-
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request.
|
|
680
|
+
* Processes a single claim and does not include a response body of the resulting Claim details. This makes for faster request. If a value is provided for the optional parameter requestingUser, the value will be included in the logs as the user initiating the action.
|
|
646
681
|
* @summary Process Single Claim without response
|
|
647
682
|
* @param {string} vbasoftwareDatabase Target database
|
|
648
683
|
* @param {number} batchNumber Batch Number
|
|
649
684
|
* @param {number} batchClaim Batch Claim
|
|
685
|
+
* @param {string} [requestingUser] Requesting User
|
|
650
686
|
* @param {*} [options] Override http request option.
|
|
651
687
|
* @throws {RequiredError}
|
|
652
688
|
* @memberof ClaimAdjudicationApi
|
|
653
689
|
*/
|
|
654
|
-
public processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig) {
|
|
655
|
-
return ClaimAdjudicationApiFp(this.configuration).processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
690
|
+
public processClaimNoResponse(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, requestingUser?: string, options?: AxiosRequestConfig) {
|
|
691
|
+
return ClaimAdjudicationApiFp(this.configuration).processClaimNoResponse(vbasoftwareDatabase, batchNumber, batchClaim, requestingUser, options).then((request) => request(this.axios, this.basePath));
|
|
656
692
|
}
|
|
657
693
|
|
|
658
694
|
/**
|