@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240913.2 → 1.20241220.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 +77 -2
- package/api/accounting-api.ts +101 -0
- package/api/adv-accounting-api.ts +199 -0
- package/api/adv-billing-api.ts +926 -57
- package/api/adv-capitation-api.ts +99 -0
- package/api/adv-claim-api.ts +529 -0
- package/api/adv-enrollment-api.ts +204 -4
- package/api/adv-reinsurance-api.ts +97 -0
- package/api/billing-api.ts +198 -0
- package/api/capitations-api.ts +99 -0
- package/api/care-case-clinical-facts-api.ts +71 -167
- package/api/check-batches-api.ts +87 -0
- package/api/checks-api.ts +292 -0
- package/api/claim-invoice-adjustment-reasons-api.ts +677 -0
- package/api/claim-invoice-adjustment-received-api.ts +685 -0
- package/api/claim-invoice-adjustments-api.ts +693 -0
- package/api/claim-invoice-api.ts +677 -0
- package/api/claim-invoice-details-api.ts +741 -0
- package/api/claim-invoice-payments-api.ts +725 -0
- package/api/claim-invoice-received-api.ts +693 -0
- package/api/claim-payments-api.ts +677 -0
- package/api/enrollment-accumulators-api.ts +909 -0
- package/api/events-api.ts +87 -0
- package/api/members-api.ts +206 -0
- package/api/prem-invoice-api.ts +171 -0
- package/api/premium-invoices-api.ts +95 -0
- package/api/premium-payments-api.ts +133 -0
- package/api/premium-rates-api.ts +223 -39
- package/api/reinsurance-contracts-api.ts +97 -0
- package/api/security-area-user-groups-api.ts +118 -5
- package/api/subscribers-api.ts +5 -5
- package/api/vbagateway-messaging-api.ts +379 -0
- package/api/vbareports-api.ts +112 -15
- package/api.ts +10 -0
- package/models/accounting-withhold-check-config.ts +36 -0
- package/models/accumulator-added-accum-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-added-accum-detail-result.ts +378 -0
- package/models/accumulator-all-benefit-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-all-benefit-detail-result.ts +420 -0
- package/models/{prem-invoice-generate-inv-list-result-list-vbaresponse.ts → accumulator-benefit-detail-result-list-vbaresponse.ts} +8 -8
- package/models/accumulator-benefit-detail-result.ts +414 -0
- package/models/accumulator-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-detail-result.ts +402 -0
- package/models/benefit-codes.ts +18 -18
- package/models/billing-add-rate-from-template-config.ts +42 -0
- package/models/billing-apply-payment-config.ts +74 -0
- package/models/billing-auto-apply-config.ts +84 -0
- package/models/billing-rate-modify-config.ts +140 -0
- package/models/capitation-generate.ts +12 -0
- package/models/care-case-clinical-fact.ts +1 -1
- package/models/claim-batch-claim-batch-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason.ts +60 -0
- package/models/claim-invoice-adjustment-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received.ts +78 -0
- package/models/claim-invoice-adjustment-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment.ts +90 -0
- package/models/claim-invoice-config.ts +37 -0
- package/models/claim-invoice-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail.ts +66 -0
- package/models/claim-invoice-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment.ts +72 -0
- package/models/claim-invoice-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-received.ts +78 -0
- package/models/claim-invoice-vbaresponse.ts +45 -0
- package/models/claim-invoice.ts +90 -0
- package/models/claim-payment-list-vbaresponse.ts +45 -0
- package/models/claim-payment-vbaresponse.ts +45 -0
- package/models/claim-payment.ts +96 -0
- package/models/commission-adjustment.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/covered-benefit.ts +49 -0
- package/models/elig-detail.ts +114 -0
- package/models/email-report-dto.ts +0 -6
- package/models/enrollment-disenroll-adjustment-list-vbaresponse.ts +45 -0
- package/models/enrollment-disenroll-adjustment.ts +138 -0
- package/models/fax-report-dto.ts +0 -6
- package/models/file-detail.ts +4 -4
- package/models/fundaccountbalancelist.ts +114 -0
- package/models/get-plan-max-claim-detail-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-claim-detail-result.ts +180 -0
- package/models/get-plan-max-summary-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-summary-result.ts +114 -0
- package/models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-subscriber-disenroll-adjustments-result.ts +144 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result.ts +132 -0
- package/models/idcard-request-report-series-config.ts +30 -0
- package/models/index.ts +67 -2
- package/models/json-node-options.ts +1 -7
- package/models/member-detail.ts +102 -0
- package/models/message-thread-vbaresponse.ts +45 -0
- package/models/message-thread.ts +60 -0
- package/models/messages-vbaresponse.ts +45 -0
- package/models/messages.ts +66 -0
- package/models/prem-apply-payment-category-result-list-vbaresponse.ts +45 -0
- package/models/prem-apply-payment-category-result.ts +102 -0
- package/models/search-request.ts +12 -0
- package/models/security-area-user-group.ts +26 -2
- package/models/subscriber-detail.ts +144 -0
- package/models/vbaapp-info.ts +12 -6
- package/models/vbabenefit-inquiry-request.ts +96 -0
- package/models/vbabenefit-inquiry-vbaresponse.ts +45 -0
- package/models/vbabenefit-inquiry.ts +122 -0
- package/models/vbadisability-advisor-deduction.ts +72 -0
- package/models/vbadisability-advisor.ts +571 -0
- package/models/vbareport-vbaresponse.ts +45 -0
- package/models/vbareport.ts +7 -7
- package/package.json +1 -1
- package/models/prem-invoice-generate-inv-list-result.ts +0 -138
package/api/adv-claim-api.ts
CHANGED
|
@@ -25,11 +25,21 @@ import { AdjudicateBenefitMatchDetailListVBAResponse } from '../models';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { ClaimAdjustmentConfig } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
28
|
+
import { ClaimBatchClaimBatchDetailListVBAResponse } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { ClaimBatchDetail } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
import { ClaimInvoiceConfig } from '../models';
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
import { ClaimInvoiceVBAResponse } from '../models';
|
|
35
|
+
// @ts-ignore
|
|
28
36
|
import { Int32VBAResponse } from '../models';
|
|
29
37
|
// @ts-ignore
|
|
30
38
|
import { LifeClaimAdvisor } from '../models';
|
|
31
39
|
// @ts-ignore
|
|
32
40
|
import { SuspenseClaimList } from '../models';
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
import { VBADisabilityAdvisor } from '../models';
|
|
33
43
|
/**
|
|
34
44
|
* AdvClaimApi - axios parameter creator
|
|
35
45
|
* @export
|
|
@@ -202,6 +212,120 @@ export const AdvClaimApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
202
212
|
options: localVarRequestOptions,
|
|
203
213
|
};
|
|
204
214
|
},
|
|
215
|
+
/**
|
|
216
|
+
* Copy a list of ClaimBatchDetails x amount of times and add y amount of days to each copy.
|
|
217
|
+
* @summary Copy Selected Service Lines
|
|
218
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
219
|
+
* @param {number} numberOfCopies Number of Copies
|
|
220
|
+
* @param {number} daysOnCopy Days on Copy
|
|
221
|
+
* @param {Array<ClaimBatchDetail>} claimBatchDetail
|
|
222
|
+
* @param {*} [options] Override http request option.
|
|
223
|
+
* @throws {RequiredError}
|
|
224
|
+
*/
|
|
225
|
+
copyClaimServiceLine: async (vbasoftwareDatabase: string, numberOfCopies: number, daysOnCopy: number, claimBatchDetail: Array<ClaimBatchDetail>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
226
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
227
|
+
assertParamExists('copyClaimServiceLine', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
228
|
+
// verify required parameter 'numberOfCopies' is not null or undefined
|
|
229
|
+
assertParamExists('copyClaimServiceLine', 'numberOfCopies', numberOfCopies)
|
|
230
|
+
// verify required parameter 'daysOnCopy' is not null or undefined
|
|
231
|
+
assertParamExists('copyClaimServiceLine', 'daysOnCopy', daysOnCopy)
|
|
232
|
+
// verify required parameter 'claimBatchDetail' is not null or undefined
|
|
233
|
+
assertParamExists('copyClaimServiceLine', 'claimBatchDetail', claimBatchDetail)
|
|
234
|
+
const localVarPath = `/claim-copy-service-lines`;
|
|
235
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
236
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
237
|
+
let baseOptions;
|
|
238
|
+
if (configuration) {
|
|
239
|
+
baseOptions = configuration.baseOptions;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
243
|
+
const localVarHeaderParameter = {} as any;
|
|
244
|
+
const localVarQueryParameter = {} as any;
|
|
245
|
+
|
|
246
|
+
// authentication apiKeyAuth required
|
|
247
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
248
|
+
|
|
249
|
+
// authentication bearerAuth required
|
|
250
|
+
// http bearer authentication required
|
|
251
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
252
|
+
|
|
253
|
+
if (numberOfCopies !== undefined) {
|
|
254
|
+
localVarQueryParameter['numberOfCopies'] = numberOfCopies;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
if (daysOnCopy !== undefined) {
|
|
258
|
+
localVarQueryParameter['daysOnCopy'] = daysOnCopy;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
262
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
268
|
+
|
|
269
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
270
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
271
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
272
|
+
localVarRequestOptions.data = serializeDataIfNeeded(claimBatchDetail, localVarRequestOptions, configuration)
|
|
273
|
+
|
|
274
|
+
return {
|
|
275
|
+
url: toPathString(localVarUrlObj),
|
|
276
|
+
options: localVarRequestOptions,
|
|
277
|
+
};
|
|
278
|
+
},
|
|
279
|
+
/**
|
|
280
|
+
* Copy a selected list of claims to batch.
|
|
281
|
+
* @summary Copy Claim(s) to Batch
|
|
282
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
283
|
+
* @param {Array<number>} requestBody
|
|
284
|
+
* @param {*} [options] Override http request option.
|
|
285
|
+
* @throws {RequiredError}
|
|
286
|
+
*/
|
|
287
|
+
copyClaimToBatch: async (vbasoftwareDatabase: string, requestBody: Array<number>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
288
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
289
|
+
assertParamExists('copyClaimToBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
290
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
291
|
+
assertParamExists('copyClaimToBatch', 'requestBody', requestBody)
|
|
292
|
+
const localVarPath = `/claim-copy-to-batch`;
|
|
293
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
294
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
295
|
+
let baseOptions;
|
|
296
|
+
if (configuration) {
|
|
297
|
+
baseOptions = configuration.baseOptions;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
301
|
+
const localVarHeaderParameter = {} as any;
|
|
302
|
+
const localVarQueryParameter = {} as any;
|
|
303
|
+
|
|
304
|
+
// authentication apiKeyAuth required
|
|
305
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
306
|
+
|
|
307
|
+
// authentication bearerAuth required
|
|
308
|
+
// http bearer authentication required
|
|
309
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
310
|
+
|
|
311
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
312
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
318
|
+
|
|
319
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
320
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
321
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
322
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
323
|
+
|
|
324
|
+
return {
|
|
325
|
+
url: toPathString(localVarUrlObj),
|
|
326
|
+
options: localVarRequestOptions,
|
|
327
|
+
};
|
|
328
|
+
},
|
|
205
329
|
/**
|
|
206
330
|
* Setup a Life Claim based on defined configuration and optionally setup the Life Claim payments.
|
|
207
331
|
* @summary Create a Life Claim
|
|
@@ -252,6 +376,114 @@ export const AdvClaimApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
252
376
|
options: localVarRequestOptions,
|
|
253
377
|
};
|
|
254
378
|
},
|
|
379
|
+
/**
|
|
380
|
+
* Create a Batch of Claims that represent Disability Payments for a STD or LTD disability claim.
|
|
381
|
+
* @summary Create Disability Payments
|
|
382
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
383
|
+
* @param {VBADisabilityAdvisor} vBADisabilityAdvisor
|
|
384
|
+
* @param {*} [options] Override http request option.
|
|
385
|
+
* @throws {RequiredError}
|
|
386
|
+
*/
|
|
387
|
+
disabilityAdvisorCreateClaim: async (vbasoftwareDatabase: string, vBADisabilityAdvisor: VBADisabilityAdvisor, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
388
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
389
|
+
assertParamExists('disabilityAdvisorCreateClaim', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
390
|
+
// verify required parameter 'vBADisabilityAdvisor' is not null or undefined
|
|
391
|
+
assertParamExists('disabilityAdvisorCreateClaim', 'vBADisabilityAdvisor', vBADisabilityAdvisor)
|
|
392
|
+
const localVarPath = `/disability-advisor-create-claim`;
|
|
393
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
394
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
395
|
+
let baseOptions;
|
|
396
|
+
if (configuration) {
|
|
397
|
+
baseOptions = configuration.baseOptions;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
401
|
+
const localVarHeaderParameter = {} as any;
|
|
402
|
+
const localVarQueryParameter = {} as any;
|
|
403
|
+
|
|
404
|
+
// authentication apiKeyAuth required
|
|
405
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
406
|
+
|
|
407
|
+
// authentication bearerAuth required
|
|
408
|
+
// http bearer authentication required
|
|
409
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
410
|
+
|
|
411
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
412
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
418
|
+
|
|
419
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
420
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
421
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
422
|
+
localVarRequestOptions.data = serializeDataIfNeeded(vBADisabilityAdvisor, localVarRequestOptions, configuration)
|
|
423
|
+
|
|
424
|
+
return {
|
|
425
|
+
url: toPathString(localVarUrlObj),
|
|
426
|
+
options: localVarRequestOptions,
|
|
427
|
+
};
|
|
428
|
+
},
|
|
429
|
+
/**
|
|
430
|
+
* Send in a ClaimBatch record and have all other ClaimBatch records remaining in Batch syncd to the Disability values on that submitted header.
|
|
431
|
+
* @summary Sync ClaimBatch Disability
|
|
432
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
433
|
+
* @param {number} batchNumber Batch Number
|
|
434
|
+
* @param {number} batchClaim Batch Claim
|
|
435
|
+
* @param {*} [options] Override http request option.
|
|
436
|
+
* @throws {RequiredError}
|
|
437
|
+
*/
|
|
438
|
+
disabilityClaimSync: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
439
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
440
|
+
assertParamExists('disabilityClaimSync', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
441
|
+
// verify required parameter 'batchNumber' is not null or undefined
|
|
442
|
+
assertParamExists('disabilityClaimSync', 'batchNumber', batchNumber)
|
|
443
|
+
// verify required parameter 'batchClaim' is not null or undefined
|
|
444
|
+
assertParamExists('disabilityClaimSync', 'batchClaim', batchClaim)
|
|
445
|
+
const localVarPath = `/disability-claim-sync-header`;
|
|
446
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
447
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
448
|
+
let baseOptions;
|
|
449
|
+
if (configuration) {
|
|
450
|
+
baseOptions = configuration.baseOptions;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
454
|
+
const localVarHeaderParameter = {} as any;
|
|
455
|
+
const localVarQueryParameter = {} as any;
|
|
456
|
+
|
|
457
|
+
// authentication apiKeyAuth required
|
|
458
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
459
|
+
|
|
460
|
+
// authentication bearerAuth required
|
|
461
|
+
// http bearer authentication required
|
|
462
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
463
|
+
|
|
464
|
+
if (batchNumber !== undefined) {
|
|
465
|
+
localVarQueryParameter['batchNumber'] = batchNumber;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
if (batchClaim !== undefined) {
|
|
469
|
+
localVarQueryParameter['batchClaim'] = batchClaim;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
473
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
479
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
480
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
481
|
+
|
|
482
|
+
return {
|
|
483
|
+
url: toPathString(localVarUrlObj),
|
|
484
|
+
options: localVarRequestOptions,
|
|
485
|
+
};
|
|
486
|
+
},
|
|
255
487
|
/**
|
|
256
488
|
* Deletes an ClaimBatch record along with all associated processing needed as a result of that delete.
|
|
257
489
|
* @summary Full Delete ClaimBatch
|
|
@@ -314,6 +546,56 @@ export const AdvClaimApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
314
546
|
options: localVarRequestOptions,
|
|
315
547
|
};
|
|
316
548
|
},
|
|
549
|
+
/**
|
|
550
|
+
* Creates a Claim Invoice and attaches a list of Claims.
|
|
551
|
+
* @summary Generate Claim Invoice
|
|
552
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
553
|
+
* @param {ClaimInvoiceConfig} claimInvoiceConfig
|
|
554
|
+
* @param {*} [options] Override http request option.
|
|
555
|
+
* @throws {RequiredError}
|
|
556
|
+
*/
|
|
557
|
+
generateClaimInvoice: async (vbasoftwareDatabase: string, claimInvoiceConfig: ClaimInvoiceConfig, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
558
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
559
|
+
assertParamExists('generateClaimInvoice', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
560
|
+
// verify required parameter 'claimInvoiceConfig' is not null or undefined
|
|
561
|
+
assertParamExists('generateClaimInvoice', 'claimInvoiceConfig', claimInvoiceConfig)
|
|
562
|
+
const localVarPath = `/claim-invoice-generate`;
|
|
563
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
564
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
565
|
+
let baseOptions;
|
|
566
|
+
if (configuration) {
|
|
567
|
+
baseOptions = configuration.baseOptions;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
571
|
+
const localVarHeaderParameter = {} as any;
|
|
572
|
+
const localVarQueryParameter = {} as any;
|
|
573
|
+
|
|
574
|
+
// authentication apiKeyAuth required
|
|
575
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
576
|
+
|
|
577
|
+
// authentication bearerAuth required
|
|
578
|
+
// http bearer authentication required
|
|
579
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
580
|
+
|
|
581
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
582
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
588
|
+
|
|
589
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
590
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
591
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
592
|
+
localVarRequestOptions.data = serializeDataIfNeeded(claimInvoiceConfig, localVarRequestOptions, configuration)
|
|
593
|
+
|
|
594
|
+
return {
|
|
595
|
+
url: toPathString(localVarUrlObj),
|
|
596
|
+
options: localVarRequestOptions,
|
|
597
|
+
};
|
|
598
|
+
},
|
|
317
599
|
/**
|
|
318
600
|
* List of potential benefit matches along with a match count for a specific claim service line.
|
|
319
601
|
* @summary List matching benefit detail
|
|
@@ -638,6 +920,32 @@ export const AdvClaimApiFp = function(configuration?: Configuration) {
|
|
|
638
920
|
const localVarAxiosArgs = await localVarAxiosParamCreator.copyClaimMultiPlanYear(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
639
921
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
640
922
|
},
|
|
923
|
+
/**
|
|
924
|
+
* Copy a list of ClaimBatchDetails x amount of times and add y amount of days to each copy.
|
|
925
|
+
* @summary Copy Selected Service Lines
|
|
926
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
927
|
+
* @param {number} numberOfCopies Number of Copies
|
|
928
|
+
* @param {number} daysOnCopy Days on Copy
|
|
929
|
+
* @param {Array<ClaimBatchDetail>} claimBatchDetail
|
|
930
|
+
* @param {*} [options] Override http request option.
|
|
931
|
+
* @throws {RequiredError}
|
|
932
|
+
*/
|
|
933
|
+
async copyClaimServiceLine(vbasoftwareDatabase: string, numberOfCopies: number, daysOnCopy: number, claimBatchDetail: Array<ClaimBatchDetail>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
934
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.copyClaimServiceLine(vbasoftwareDatabase, numberOfCopies, daysOnCopy, claimBatchDetail, options);
|
|
935
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
936
|
+
},
|
|
937
|
+
/**
|
|
938
|
+
* Copy a selected list of claims to batch.
|
|
939
|
+
* @summary Copy Claim(s) to Batch
|
|
940
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
941
|
+
* @param {Array<number>} requestBody
|
|
942
|
+
* @param {*} [options] Override http request option.
|
|
943
|
+
* @throws {RequiredError}
|
|
944
|
+
*/
|
|
945
|
+
async copyClaimToBatch(vbasoftwareDatabase: string, requestBody: Array<number>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
946
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.copyClaimToBatch(vbasoftwareDatabase, requestBody, options);
|
|
947
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
948
|
+
},
|
|
641
949
|
/**
|
|
642
950
|
* Setup a Life Claim based on defined configuration and optionally setup the Life Claim payments.
|
|
643
951
|
* @summary Create a Life Claim
|
|
@@ -650,6 +958,31 @@ export const AdvClaimApiFp = function(configuration?: Configuration) {
|
|
|
650
958
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createLifeClaim(vbasoftwareDatabase, lifeClaimAdvisor, options);
|
|
651
959
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
652
960
|
},
|
|
961
|
+
/**
|
|
962
|
+
* Create a Batch of Claims that represent Disability Payments for a STD or LTD disability claim.
|
|
963
|
+
* @summary Create Disability Payments
|
|
964
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
965
|
+
* @param {VBADisabilityAdvisor} vBADisabilityAdvisor
|
|
966
|
+
* @param {*} [options] Override http request option.
|
|
967
|
+
* @throws {RequiredError}
|
|
968
|
+
*/
|
|
969
|
+
async disabilityAdvisorCreateClaim(vbasoftwareDatabase: string, vBADisabilityAdvisor: VBADisabilityAdvisor, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimInvoiceVBAResponse>> {
|
|
970
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.disabilityAdvisorCreateClaim(vbasoftwareDatabase, vBADisabilityAdvisor, options);
|
|
971
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
972
|
+
},
|
|
973
|
+
/**
|
|
974
|
+
* Send in a ClaimBatch record and have all other ClaimBatch records remaining in Batch syncd to the Disability values on that submitted header.
|
|
975
|
+
* @summary Sync ClaimBatch Disability
|
|
976
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
977
|
+
* @param {number} batchNumber Batch Number
|
|
978
|
+
* @param {number} batchClaim Batch Claim
|
|
979
|
+
* @param {*} [options] Override http request option.
|
|
980
|
+
* @throws {RequiredError}
|
|
981
|
+
*/
|
|
982
|
+
async disabilityClaimSync(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
983
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.disabilityClaimSync(vbasoftwareDatabase, batchNumber, batchClaim, options);
|
|
984
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
985
|
+
},
|
|
653
986
|
/**
|
|
654
987
|
* Deletes an ClaimBatch record along with all associated processing needed as a result of that delete.
|
|
655
988
|
* @summary Full Delete ClaimBatch
|
|
@@ -665,6 +998,18 @@ export const AdvClaimApiFp = function(configuration?: Configuration) {
|
|
|
665
998
|
const localVarAxiosArgs = await localVarAxiosParamCreator.fullDeleteClaimBatch(vbasoftwareDatabase, batchNumber, batchClaim, claimStatusCategoryCode, claimStatusCode, options);
|
|
666
999
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
667
1000
|
},
|
|
1001
|
+
/**
|
|
1002
|
+
* Creates a Claim Invoice and attaches a list of Claims.
|
|
1003
|
+
* @summary Generate Claim Invoice
|
|
1004
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1005
|
+
* @param {ClaimInvoiceConfig} claimInvoiceConfig
|
|
1006
|
+
* @param {*} [options] Override http request option.
|
|
1007
|
+
* @throws {RequiredError}
|
|
1008
|
+
*/
|
|
1009
|
+
async generateClaimInvoice(vbasoftwareDatabase: string, claimInvoiceConfig: ClaimInvoiceConfig, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchClaimBatchDetailListVBAResponse>> {
|
|
1010
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.generateClaimInvoice(vbasoftwareDatabase, claimInvoiceConfig, options);
|
|
1011
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1012
|
+
},
|
|
668
1013
|
/**
|
|
669
1014
|
* List of potential benefit matches along with a match count for a specific claim service line.
|
|
670
1015
|
* @summary List matching benefit detail
|
|
@@ -776,6 +1121,30 @@ export const AdvClaimApiFactory = function (configuration?: Configuration, baseP
|
|
|
776
1121
|
copyClaimMultiPlanYear(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<void> {
|
|
777
1122
|
return localVarFp.copyClaimMultiPlanYear(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
778
1123
|
},
|
|
1124
|
+
/**
|
|
1125
|
+
* Copy a list of ClaimBatchDetails x amount of times and add y amount of days to each copy.
|
|
1126
|
+
* @summary Copy Selected Service Lines
|
|
1127
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1128
|
+
* @param {number} numberOfCopies Number of Copies
|
|
1129
|
+
* @param {number} daysOnCopy Days on Copy
|
|
1130
|
+
* @param {Array<ClaimBatchDetail>} claimBatchDetail
|
|
1131
|
+
* @param {*} [options] Override http request option.
|
|
1132
|
+
* @throws {RequiredError}
|
|
1133
|
+
*/
|
|
1134
|
+
copyClaimServiceLine(vbasoftwareDatabase: string, numberOfCopies: number, daysOnCopy: number, claimBatchDetail: Array<ClaimBatchDetail>, options?: any): AxiosPromise<void> {
|
|
1135
|
+
return localVarFp.copyClaimServiceLine(vbasoftwareDatabase, numberOfCopies, daysOnCopy, claimBatchDetail, options).then((request) => request(axios, basePath));
|
|
1136
|
+
},
|
|
1137
|
+
/**
|
|
1138
|
+
* Copy a selected list of claims to batch.
|
|
1139
|
+
* @summary Copy Claim(s) to Batch
|
|
1140
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1141
|
+
* @param {Array<number>} requestBody
|
|
1142
|
+
* @param {*} [options] Override http request option.
|
|
1143
|
+
* @throws {RequiredError}
|
|
1144
|
+
*/
|
|
1145
|
+
copyClaimToBatch(vbasoftwareDatabase: string, requestBody: Array<number>, options?: any): AxiosPromise<void> {
|
|
1146
|
+
return localVarFp.copyClaimToBatch(vbasoftwareDatabase, requestBody, options).then((request) => request(axios, basePath));
|
|
1147
|
+
},
|
|
779
1148
|
/**
|
|
780
1149
|
* Setup a Life Claim based on defined configuration and optionally setup the Life Claim payments.
|
|
781
1150
|
* @summary Create a Life Claim
|
|
@@ -787,6 +1156,29 @@ export const AdvClaimApiFactory = function (configuration?: Configuration, baseP
|
|
|
787
1156
|
createLifeClaim(vbasoftwareDatabase: string, lifeClaimAdvisor: LifeClaimAdvisor, options?: any): AxiosPromise<Int32VBAResponse> {
|
|
788
1157
|
return localVarFp.createLifeClaim(vbasoftwareDatabase, lifeClaimAdvisor, options).then((request) => request(axios, basePath));
|
|
789
1158
|
},
|
|
1159
|
+
/**
|
|
1160
|
+
* Create a Batch of Claims that represent Disability Payments for a STD or LTD disability claim.
|
|
1161
|
+
* @summary Create Disability Payments
|
|
1162
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1163
|
+
* @param {VBADisabilityAdvisor} vBADisabilityAdvisor
|
|
1164
|
+
* @param {*} [options] Override http request option.
|
|
1165
|
+
* @throws {RequiredError}
|
|
1166
|
+
*/
|
|
1167
|
+
disabilityAdvisorCreateClaim(vbasoftwareDatabase: string, vBADisabilityAdvisor: VBADisabilityAdvisor, options?: any): AxiosPromise<ClaimInvoiceVBAResponse> {
|
|
1168
|
+
return localVarFp.disabilityAdvisorCreateClaim(vbasoftwareDatabase, vBADisabilityAdvisor, options).then((request) => request(axios, basePath));
|
|
1169
|
+
},
|
|
1170
|
+
/**
|
|
1171
|
+
* Send in a ClaimBatch record and have all other ClaimBatch records remaining in Batch syncd to the Disability values on that submitted header.
|
|
1172
|
+
* @summary Sync ClaimBatch Disability
|
|
1173
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1174
|
+
* @param {number} batchNumber Batch Number
|
|
1175
|
+
* @param {number} batchClaim Batch Claim
|
|
1176
|
+
* @param {*} [options] Override http request option.
|
|
1177
|
+
* @throws {RequiredError}
|
|
1178
|
+
*/
|
|
1179
|
+
disabilityClaimSync(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: any): AxiosPromise<void> {
|
|
1180
|
+
return localVarFp.disabilityClaimSync(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
1181
|
+
},
|
|
790
1182
|
/**
|
|
791
1183
|
* Deletes an ClaimBatch record along with all associated processing needed as a result of that delete.
|
|
792
1184
|
* @summary Full Delete ClaimBatch
|
|
@@ -801,6 +1193,17 @@ export const AdvClaimApiFactory = function (configuration?: Configuration, baseP
|
|
|
801
1193
|
fullDeleteClaimBatch(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, claimStatusCategoryCode?: string, claimStatusCode?: string, options?: any): AxiosPromise<void> {
|
|
802
1194
|
return localVarFp.fullDeleteClaimBatch(vbasoftwareDatabase, batchNumber, batchClaim, claimStatusCategoryCode, claimStatusCode, options).then((request) => request(axios, basePath));
|
|
803
1195
|
},
|
|
1196
|
+
/**
|
|
1197
|
+
* Creates a Claim Invoice and attaches a list of Claims.
|
|
1198
|
+
* @summary Generate Claim Invoice
|
|
1199
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1200
|
+
* @param {ClaimInvoiceConfig} claimInvoiceConfig
|
|
1201
|
+
* @param {*} [options] Override http request option.
|
|
1202
|
+
* @throws {RequiredError}
|
|
1203
|
+
*/
|
|
1204
|
+
generateClaimInvoice(vbasoftwareDatabase: string, claimInvoiceConfig: ClaimInvoiceConfig, options?: any): AxiosPromise<ClaimBatchClaimBatchDetailListVBAResponse> {
|
|
1205
|
+
return localVarFp.generateClaimInvoice(vbasoftwareDatabase, claimInvoiceConfig, options).then((request) => request(axios, basePath));
|
|
1206
|
+
},
|
|
804
1207
|
/**
|
|
805
1208
|
* List of potential benefit matches along with a match count for a specific claim service line.
|
|
806
1209
|
* @summary List matching benefit detail
|
|
@@ -906,6 +1309,30 @@ export interface AdvClaimApiInterface {
|
|
|
906
1309
|
*/
|
|
907
1310
|
copyClaimMultiPlanYear(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
908
1311
|
|
|
1312
|
+
/**
|
|
1313
|
+
* Copy a list of ClaimBatchDetails x amount of times and add y amount of days to each copy.
|
|
1314
|
+
* @summary Copy Selected Service Lines
|
|
1315
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1316
|
+
* @param {number} numberOfCopies Number of Copies
|
|
1317
|
+
* @param {number} daysOnCopy Days on Copy
|
|
1318
|
+
* @param {Array<ClaimBatchDetail>} claimBatchDetail
|
|
1319
|
+
* @param {*} [options] Override http request option.
|
|
1320
|
+
* @throws {RequiredError}
|
|
1321
|
+
* @memberof AdvClaimApiInterface
|
|
1322
|
+
*/
|
|
1323
|
+
copyClaimServiceLine(vbasoftwareDatabase: string, numberOfCopies: number, daysOnCopy: number, claimBatchDetail: Array<ClaimBatchDetail>, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1324
|
+
|
|
1325
|
+
/**
|
|
1326
|
+
* Copy a selected list of claims to batch.
|
|
1327
|
+
* @summary Copy Claim(s) to Batch
|
|
1328
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1329
|
+
* @param {Array<number>} requestBody
|
|
1330
|
+
* @param {*} [options] Override http request option.
|
|
1331
|
+
* @throws {RequiredError}
|
|
1332
|
+
* @memberof AdvClaimApiInterface
|
|
1333
|
+
*/
|
|
1334
|
+
copyClaimToBatch(vbasoftwareDatabase: string, requestBody: Array<number>, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1335
|
+
|
|
909
1336
|
/**
|
|
910
1337
|
* Setup a Life Claim based on defined configuration and optionally setup the Life Claim payments.
|
|
911
1338
|
* @summary Create a Life Claim
|
|
@@ -917,6 +1344,29 @@ export interface AdvClaimApiInterface {
|
|
|
917
1344
|
*/
|
|
918
1345
|
createLifeClaim(vbasoftwareDatabase: string, lifeClaimAdvisor: LifeClaimAdvisor, options?: AxiosRequestConfig): AxiosPromise<Int32VBAResponse>;
|
|
919
1346
|
|
|
1347
|
+
/**
|
|
1348
|
+
* Create a Batch of Claims that represent Disability Payments for a STD or LTD disability claim.
|
|
1349
|
+
* @summary Create Disability Payments
|
|
1350
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1351
|
+
* @param {VBADisabilityAdvisor} vBADisabilityAdvisor
|
|
1352
|
+
* @param {*} [options] Override http request option.
|
|
1353
|
+
* @throws {RequiredError}
|
|
1354
|
+
* @memberof AdvClaimApiInterface
|
|
1355
|
+
*/
|
|
1356
|
+
disabilityAdvisorCreateClaim(vbasoftwareDatabase: string, vBADisabilityAdvisor: VBADisabilityAdvisor, options?: AxiosRequestConfig): AxiosPromise<ClaimInvoiceVBAResponse>;
|
|
1357
|
+
|
|
1358
|
+
/**
|
|
1359
|
+
* Send in a ClaimBatch record and have all other ClaimBatch records remaining in Batch syncd to the Disability values on that submitted header.
|
|
1360
|
+
* @summary Sync ClaimBatch Disability
|
|
1361
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1362
|
+
* @param {number} batchNumber Batch Number
|
|
1363
|
+
* @param {number} batchClaim Batch Claim
|
|
1364
|
+
* @param {*} [options] Override http request option.
|
|
1365
|
+
* @throws {RequiredError}
|
|
1366
|
+
* @memberof AdvClaimApiInterface
|
|
1367
|
+
*/
|
|
1368
|
+
disabilityClaimSync(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1369
|
+
|
|
920
1370
|
/**
|
|
921
1371
|
* Deletes an ClaimBatch record along with all associated processing needed as a result of that delete.
|
|
922
1372
|
* @summary Full Delete ClaimBatch
|
|
@@ -931,6 +1381,17 @@ export interface AdvClaimApiInterface {
|
|
|
931
1381
|
*/
|
|
932
1382
|
fullDeleteClaimBatch(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, claimStatusCategoryCode?: string, claimStatusCode?: string, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
933
1383
|
|
|
1384
|
+
/**
|
|
1385
|
+
* Creates a Claim Invoice and attaches a list of Claims.
|
|
1386
|
+
* @summary Generate Claim Invoice
|
|
1387
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1388
|
+
* @param {ClaimInvoiceConfig} claimInvoiceConfig
|
|
1389
|
+
* @param {*} [options] Override http request option.
|
|
1390
|
+
* @throws {RequiredError}
|
|
1391
|
+
* @memberof AdvClaimApiInterface
|
|
1392
|
+
*/
|
|
1393
|
+
generateClaimInvoice(vbasoftwareDatabase: string, claimInvoiceConfig: ClaimInvoiceConfig, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchClaimBatchDetailListVBAResponse>;
|
|
1394
|
+
|
|
934
1395
|
/**
|
|
935
1396
|
* List of potential benefit matches along with a match count for a specific claim service line.
|
|
936
1397
|
* @summary List matching benefit detail
|
|
@@ -1042,6 +1503,34 @@ export class AdvClaimApi extends BaseAPI implements AdvClaimApiInterface {
|
|
|
1042
1503
|
return AdvClaimApiFp(this.configuration).copyClaimMultiPlanYear(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
1043
1504
|
}
|
|
1044
1505
|
|
|
1506
|
+
/**
|
|
1507
|
+
* Copy a list of ClaimBatchDetails x amount of times and add y amount of days to each copy.
|
|
1508
|
+
* @summary Copy Selected Service Lines
|
|
1509
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1510
|
+
* @param {number} numberOfCopies Number of Copies
|
|
1511
|
+
* @param {number} daysOnCopy Days on Copy
|
|
1512
|
+
* @param {Array<ClaimBatchDetail>} claimBatchDetail
|
|
1513
|
+
* @param {*} [options] Override http request option.
|
|
1514
|
+
* @throws {RequiredError}
|
|
1515
|
+
* @memberof AdvClaimApi
|
|
1516
|
+
*/
|
|
1517
|
+
public copyClaimServiceLine(vbasoftwareDatabase: string, numberOfCopies: number, daysOnCopy: number, claimBatchDetail: Array<ClaimBatchDetail>, options?: AxiosRequestConfig) {
|
|
1518
|
+
return AdvClaimApiFp(this.configuration).copyClaimServiceLine(vbasoftwareDatabase, numberOfCopies, daysOnCopy, claimBatchDetail, options).then((request) => request(this.axios, this.basePath));
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* Copy a selected list of claims to batch.
|
|
1523
|
+
* @summary Copy Claim(s) to Batch
|
|
1524
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1525
|
+
* @param {Array<number>} requestBody
|
|
1526
|
+
* @param {*} [options] Override http request option.
|
|
1527
|
+
* @throws {RequiredError}
|
|
1528
|
+
* @memberof AdvClaimApi
|
|
1529
|
+
*/
|
|
1530
|
+
public copyClaimToBatch(vbasoftwareDatabase: string, requestBody: Array<number>, options?: AxiosRequestConfig) {
|
|
1531
|
+
return AdvClaimApiFp(this.configuration).copyClaimToBatch(vbasoftwareDatabase, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1045
1534
|
/**
|
|
1046
1535
|
* Setup a Life Claim based on defined configuration and optionally setup the Life Claim payments.
|
|
1047
1536
|
* @summary Create a Life Claim
|
|
@@ -1055,6 +1544,33 @@ export class AdvClaimApi extends BaseAPI implements AdvClaimApiInterface {
|
|
|
1055
1544
|
return AdvClaimApiFp(this.configuration).createLifeClaim(vbasoftwareDatabase, lifeClaimAdvisor, options).then((request) => request(this.axios, this.basePath));
|
|
1056
1545
|
}
|
|
1057
1546
|
|
|
1547
|
+
/**
|
|
1548
|
+
* Create a Batch of Claims that represent Disability Payments for a STD or LTD disability claim.
|
|
1549
|
+
* @summary Create Disability Payments
|
|
1550
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1551
|
+
* @param {VBADisabilityAdvisor} vBADisabilityAdvisor
|
|
1552
|
+
* @param {*} [options] Override http request option.
|
|
1553
|
+
* @throws {RequiredError}
|
|
1554
|
+
* @memberof AdvClaimApi
|
|
1555
|
+
*/
|
|
1556
|
+
public disabilityAdvisorCreateClaim(vbasoftwareDatabase: string, vBADisabilityAdvisor: VBADisabilityAdvisor, options?: AxiosRequestConfig) {
|
|
1557
|
+
return AdvClaimApiFp(this.configuration).disabilityAdvisorCreateClaim(vbasoftwareDatabase, vBADisabilityAdvisor, options).then((request) => request(this.axios, this.basePath));
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
/**
|
|
1561
|
+
* Send in a ClaimBatch record and have all other ClaimBatch records remaining in Batch syncd to the Disability values on that submitted header.
|
|
1562
|
+
* @summary Sync ClaimBatch Disability
|
|
1563
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1564
|
+
* @param {number} batchNumber Batch Number
|
|
1565
|
+
* @param {number} batchClaim Batch Claim
|
|
1566
|
+
* @param {*} [options] Override http request option.
|
|
1567
|
+
* @throws {RequiredError}
|
|
1568
|
+
* @memberof AdvClaimApi
|
|
1569
|
+
*/
|
|
1570
|
+
public disabilityClaimSync(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: AxiosRequestConfig) {
|
|
1571
|
+
return AdvClaimApiFp(this.configuration).disabilityClaimSync(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1058
1574
|
/**
|
|
1059
1575
|
* Deletes an ClaimBatch record along with all associated processing needed as a result of that delete.
|
|
1060
1576
|
* @summary Full Delete ClaimBatch
|
|
@@ -1071,6 +1587,19 @@ export class AdvClaimApi extends BaseAPI implements AdvClaimApiInterface {
|
|
|
1071
1587
|
return AdvClaimApiFp(this.configuration).fullDeleteClaimBatch(vbasoftwareDatabase, batchNumber, batchClaim, claimStatusCategoryCode, claimStatusCode, options).then((request) => request(this.axios, this.basePath));
|
|
1072
1588
|
}
|
|
1073
1589
|
|
|
1590
|
+
/**
|
|
1591
|
+
* Creates a Claim Invoice and attaches a list of Claims.
|
|
1592
|
+
* @summary Generate Claim Invoice
|
|
1593
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1594
|
+
* @param {ClaimInvoiceConfig} claimInvoiceConfig
|
|
1595
|
+
* @param {*} [options] Override http request option.
|
|
1596
|
+
* @throws {RequiredError}
|
|
1597
|
+
* @memberof AdvClaimApi
|
|
1598
|
+
*/
|
|
1599
|
+
public generateClaimInvoice(vbasoftwareDatabase: string, claimInvoiceConfig: ClaimInvoiceConfig, options?: AxiosRequestConfig) {
|
|
1600
|
+
return AdvClaimApiFp(this.configuration).generateClaimInvoice(vbasoftwareDatabase, claimInvoiceConfig, options).then((request) => request(this.axios, this.basePath));
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1074
1603
|
/**
|
|
1075
1604
|
* List of potential benefit matches along with a match count for a specific claim service line.
|
|
1076
1605
|
* @summary List matching benefit detail
|