@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230403.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 +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/events-api.ts +87 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +152 -140
- package/models/claim-batch.ts +1697 -479
- package/models/claim-detail.ts +137 -125
- package/models/claim-pre-batch-detail.ts +101 -95
- package/models/claim-pre-batch.ts +1703 -425
- package/models/claim.ts +1562 -338
- package/models/company-data.ts +433 -403
- package/models/cost-contain-zelis-ex-code.ts +12 -6
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +15 -0
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +58 -52
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +91 -85
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/user-reset-password-request.ts +42 -0
- package/models/users.ts +8 -8
- package/package.json +1 -1
|
@@ -39,27 +39,19 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
39
39
|
* @summary Create SubscriberPlanPolicy
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
41
|
* @param {string} subscriberID Subscriber ID
|
|
42
|
-
* @param {string} planID Plan ID
|
|
43
|
-
* @param {string} benefitCode Benefit Code
|
|
44
42
|
* @param {SubscriberPlanPolicy} subscriberPlanPolicy
|
|
45
43
|
* @param {*} [options] Override http request option.
|
|
46
44
|
* @throws {RequiredError}
|
|
47
45
|
*/
|
|
48
|
-
createSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string,
|
|
46
|
+
createSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: SubscriberPlanPolicy, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
49
47
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
50
48
|
assertParamExists('createSubscriberPlanPolicy', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
51
49
|
// verify required parameter 'subscriberID' is not null or undefined
|
|
52
50
|
assertParamExists('createSubscriberPlanPolicy', 'subscriberID', subscriberID)
|
|
53
|
-
// verify required parameter 'planID' is not null or undefined
|
|
54
|
-
assertParamExists('createSubscriberPlanPolicy', 'planID', planID)
|
|
55
|
-
// verify required parameter 'benefitCode' is not null or undefined
|
|
56
|
-
assertParamExists('createSubscriberPlanPolicy', 'benefitCode', benefitCode)
|
|
57
51
|
// verify required parameter 'subscriberPlanPolicy' is not null or undefined
|
|
58
52
|
assertParamExists('createSubscriberPlanPolicy', 'subscriberPlanPolicy', subscriberPlanPolicy)
|
|
59
|
-
const localVarPath = `/subscribers/{subscriberID}/
|
|
60
|
-
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
61
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
62
|
-
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
|
|
53
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies`
|
|
54
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
63
55
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64
56
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
65
57
|
let baseOptions;
|
|
@@ -118,7 +110,7 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
118
110
|
assertParamExists('deleteSubscriberPlanPolicy', 'benefitCode', benefitCode)
|
|
119
111
|
// verify required parameter 'policyNumber' is not null or undefined
|
|
120
112
|
assertParamExists('deleteSubscriberPlanPolicy', 'policyNumber', policyNumber)
|
|
121
|
-
const localVarPath = `/subscribers/{subscriberID}/
|
|
113
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies/{planID}/{benefitCode}/{policyNumber}`
|
|
122
114
|
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
123
115
|
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
124
116
|
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
|
|
@@ -178,7 +170,7 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
178
170
|
assertParamExists('getSubscriberPlanPolicy', 'benefitCode', benefitCode)
|
|
179
171
|
// verify required parameter 'policyNumber' is not null or undefined
|
|
180
172
|
assertParamExists('getSubscriberPlanPolicy', 'policyNumber', policyNumber)
|
|
181
|
-
const localVarPath = `/subscribers/{subscriberID}/
|
|
173
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies/{planID}/{benefitCode}/{policyNumber}`
|
|
182
174
|
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
183
175
|
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
184
176
|
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
|
|
@@ -217,30 +209,22 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
217
209
|
};
|
|
218
210
|
},
|
|
219
211
|
/**
|
|
220
|
-
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
212
|
+
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
221
213
|
* @summary List SubscriberPlanPolicy
|
|
222
214
|
* @param {string} vbasoftwareDatabase Target database
|
|
223
215
|
* @param {string} subscriberID Subscriber ID
|
|
224
|
-
* @param {string} planID Plan ID
|
|
225
|
-
* @param {string} benefitCode Benefit Code
|
|
226
216
|
* @param {number} [page] Page
|
|
227
217
|
* @param {number} [pageSize] Page Size
|
|
228
218
|
* @param {*} [options] Override http request option.
|
|
229
219
|
* @throws {RequiredError}
|
|
230
220
|
*/
|
|
231
|
-
listSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string,
|
|
221
|
+
listSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
232
222
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
233
223
|
assertParamExists('listSubscriberPlanPolicy', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
234
224
|
// verify required parameter 'subscriberID' is not null or undefined
|
|
235
225
|
assertParamExists('listSubscriberPlanPolicy', 'subscriberID', subscriberID)
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
// verify required parameter 'benefitCode' is not null or undefined
|
|
239
|
-
assertParamExists('listSubscriberPlanPolicy', 'benefitCode', benefitCode)
|
|
240
|
-
const localVarPath = `/subscribers/{subscriberID}/plans/{planID}/benefits/{benefitCode}/policies`
|
|
241
|
-
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
242
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
243
|
-
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
|
|
226
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies`
|
|
227
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
244
228
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
245
229
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
246
230
|
let baseOptions;
|
|
@@ -286,28 +270,20 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
286
270
|
* Create or Update multiple SubscriberPlanPolicy at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
287
271
|
* @summary Create or Update Batch SubscriberPlanPolicy
|
|
288
272
|
* @param {string} vbasoftwareDatabase Target database
|
|
289
|
-
* @param {string} subscriberID
|
|
290
|
-
* @param {string} planID
|
|
291
|
-
* @param {string} benefitCode
|
|
273
|
+
* @param {string} subscriberID Ssubscriber ID
|
|
292
274
|
* @param {Array<SubscriberPlanPolicy>} subscriberPlanPolicy
|
|
293
275
|
* @param {*} [options] Override http request option.
|
|
294
276
|
* @throws {RequiredError}
|
|
295
277
|
*/
|
|
296
|
-
updateBatchSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string,
|
|
278
|
+
updateBatchSubscriberPlanPolicy: async (vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: Array<SubscriberPlanPolicy>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
297
279
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
298
280
|
assertParamExists('updateBatchSubscriberPlanPolicy', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
299
281
|
// verify required parameter 'subscriberID' is not null or undefined
|
|
300
282
|
assertParamExists('updateBatchSubscriberPlanPolicy', 'subscriberID', subscriberID)
|
|
301
|
-
// verify required parameter 'planID' is not null or undefined
|
|
302
|
-
assertParamExists('updateBatchSubscriberPlanPolicy', 'planID', planID)
|
|
303
|
-
// verify required parameter 'benefitCode' is not null or undefined
|
|
304
|
-
assertParamExists('updateBatchSubscriberPlanPolicy', 'benefitCode', benefitCode)
|
|
305
283
|
// verify required parameter 'subscriberPlanPolicy' is not null or undefined
|
|
306
284
|
assertParamExists('updateBatchSubscriberPlanPolicy', 'subscriberPlanPolicy', subscriberPlanPolicy)
|
|
307
|
-
const localVarPath = `/subscribers/{subscriberID}/
|
|
308
|
-
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
309
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
310
|
-
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
|
|
285
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies-batch`
|
|
286
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
311
287
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
312
288
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
313
289
|
let baseOptions;
|
|
@@ -369,7 +345,7 @@ export const SubscriberPlanPoliciesApiAxiosParamCreator = function (configuratio
|
|
|
369
345
|
assertParamExists('updateSubscriberPlanPolicy', 'policyNumber', policyNumber)
|
|
370
346
|
// verify required parameter 'subscriberPlanPolicy' is not null or undefined
|
|
371
347
|
assertParamExists('updateSubscriberPlanPolicy', 'subscriberPlanPolicy', subscriberPlanPolicy)
|
|
372
|
-
const localVarPath = `/subscribers/{subscriberID}/
|
|
348
|
+
const localVarPath = `/subscribers/{subscriberID}/plan-policies/{planID}/{benefitCode}/{policyNumber}`
|
|
373
349
|
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
374
350
|
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
375
351
|
.replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
|
|
@@ -425,14 +401,12 @@ export const SubscriberPlanPoliciesApiFp = function(configuration?: Configuratio
|
|
|
425
401
|
* @summary Create SubscriberPlanPolicy
|
|
426
402
|
* @param {string} vbasoftwareDatabase Target database
|
|
427
403
|
* @param {string} subscriberID Subscriber ID
|
|
428
|
-
* @param {string} planID Plan ID
|
|
429
|
-
* @param {string} benefitCode Benefit Code
|
|
430
404
|
* @param {SubscriberPlanPolicy} subscriberPlanPolicy
|
|
431
405
|
* @param {*} [options] Override http request option.
|
|
432
406
|
* @throws {RequiredError}
|
|
433
407
|
*/
|
|
434
|
-
async createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
435
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
408
|
+
async createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: SubscriberPlanPolicy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriberPlanPolicyVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options);
|
|
436
410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
437
411
|
},
|
|
438
412
|
/**
|
|
@@ -466,34 +440,30 @@ export const SubscriberPlanPoliciesApiFp = function(configuration?: Configuratio
|
|
|
466
440
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
467
441
|
},
|
|
468
442
|
/**
|
|
469
|
-
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
443
|
+
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
470
444
|
* @summary List SubscriberPlanPolicy
|
|
471
445
|
* @param {string} vbasoftwareDatabase Target database
|
|
472
446
|
* @param {string} subscriberID Subscriber ID
|
|
473
|
-
* @param {string} planID Plan ID
|
|
474
|
-
* @param {string} benefitCode Benefit Code
|
|
475
447
|
* @param {number} [page] Page
|
|
476
448
|
* @param {number} [pageSize] Page Size
|
|
477
449
|
* @param {*} [options] Override http request option.
|
|
478
450
|
* @throws {RequiredError}
|
|
479
451
|
*/
|
|
480
|
-
async listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
481
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
452
|
+
async listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriberPlanPolicyListVBAResponse>> {
|
|
453
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, page, pageSize, options);
|
|
482
454
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
483
455
|
},
|
|
484
456
|
/**
|
|
485
457
|
* Create or Update multiple SubscriberPlanPolicy at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
486
458
|
* @summary Create or Update Batch SubscriberPlanPolicy
|
|
487
459
|
* @param {string} vbasoftwareDatabase Target database
|
|
488
|
-
* @param {string} subscriberID
|
|
489
|
-
* @param {string} planID
|
|
490
|
-
* @param {string} benefitCode
|
|
460
|
+
* @param {string} subscriberID Ssubscriber ID
|
|
491
461
|
* @param {Array<SubscriberPlanPolicy>} subscriberPlanPolicy
|
|
492
462
|
* @param {*} [options] Override http request option.
|
|
493
463
|
* @throws {RequiredError}
|
|
494
464
|
*/
|
|
495
|
-
async updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
496
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
465
|
+
async updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: Array<SubscriberPlanPolicy>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
466
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options);
|
|
497
467
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
498
468
|
},
|
|
499
469
|
/**
|
|
@@ -527,14 +497,12 @@ export const SubscriberPlanPoliciesApiFactory = function (configuration?: Config
|
|
|
527
497
|
* @summary Create SubscriberPlanPolicy
|
|
528
498
|
* @param {string} vbasoftwareDatabase Target database
|
|
529
499
|
* @param {string} subscriberID Subscriber ID
|
|
530
|
-
* @param {string} planID Plan ID
|
|
531
|
-
* @param {string} benefitCode Benefit Code
|
|
532
500
|
* @param {SubscriberPlanPolicy} subscriberPlanPolicy
|
|
533
501
|
* @param {*} [options] Override http request option.
|
|
534
502
|
* @throws {RequiredError}
|
|
535
503
|
*/
|
|
536
|
-
createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
537
|
-
return localVarFp.createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
504
|
+
createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: SubscriberPlanPolicy, options?: any): AxiosPromise<SubscriberPlanPolicyVBAResponse> {
|
|
505
|
+
return localVarFp.createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options).then((request) => request(axios, basePath));
|
|
538
506
|
},
|
|
539
507
|
/**
|
|
540
508
|
* Deletes an SubscriberPlanPolicy
|
|
@@ -565,33 +533,29 @@ export const SubscriberPlanPoliciesApiFactory = function (configuration?: Config
|
|
|
565
533
|
return localVarFp.getSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, planID, benefitCode, policyNumber, options).then((request) => request(axios, basePath));
|
|
566
534
|
},
|
|
567
535
|
/**
|
|
568
|
-
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
536
|
+
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
569
537
|
* @summary List SubscriberPlanPolicy
|
|
570
538
|
* @param {string} vbasoftwareDatabase Target database
|
|
571
539
|
* @param {string} subscriberID Subscriber ID
|
|
572
|
-
* @param {string} planID Plan ID
|
|
573
|
-
* @param {string} benefitCode Benefit Code
|
|
574
540
|
* @param {number} [page] Page
|
|
575
541
|
* @param {number} [pageSize] Page Size
|
|
576
542
|
* @param {*} [options] Override http request option.
|
|
577
543
|
* @throws {RequiredError}
|
|
578
544
|
*/
|
|
579
|
-
listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
580
|
-
return localVarFp.listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
545
|
+
listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: any): AxiosPromise<SubscriberPlanPolicyListVBAResponse> {
|
|
546
|
+
return localVarFp.listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, page, pageSize, options).then((request) => request(axios, basePath));
|
|
581
547
|
},
|
|
582
548
|
/**
|
|
583
549
|
* Create or Update multiple SubscriberPlanPolicy at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
584
550
|
* @summary Create or Update Batch SubscriberPlanPolicy
|
|
585
551
|
* @param {string} vbasoftwareDatabase Target database
|
|
586
|
-
* @param {string} subscriberID
|
|
587
|
-
* @param {string} planID
|
|
588
|
-
* @param {string} benefitCode
|
|
552
|
+
* @param {string} subscriberID Ssubscriber ID
|
|
589
553
|
* @param {Array<SubscriberPlanPolicy>} subscriberPlanPolicy
|
|
590
554
|
* @param {*} [options] Override http request option.
|
|
591
555
|
* @throws {RequiredError}
|
|
592
556
|
*/
|
|
593
|
-
updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
594
|
-
return localVarFp.updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
557
|
+
updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: Array<SubscriberPlanPolicy>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
558
|
+
return localVarFp.updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options).then((request) => request(axios, basePath));
|
|
595
559
|
},
|
|
596
560
|
/**
|
|
597
561
|
* Updates a specific SubscriberPlanPolicy.
|
|
@@ -622,14 +586,12 @@ export interface SubscriberPlanPoliciesApiInterface {
|
|
|
622
586
|
* @summary Create SubscriberPlanPolicy
|
|
623
587
|
* @param {string} vbasoftwareDatabase Target database
|
|
624
588
|
* @param {string} subscriberID Subscriber ID
|
|
625
|
-
* @param {string} planID Plan ID
|
|
626
|
-
* @param {string} benefitCode Benefit Code
|
|
627
589
|
* @param {SubscriberPlanPolicy} subscriberPlanPolicy
|
|
628
590
|
* @param {*} [options] Override http request option.
|
|
629
591
|
* @throws {RequiredError}
|
|
630
592
|
* @memberof SubscriberPlanPoliciesApiInterface
|
|
631
593
|
*/
|
|
632
|
-
createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
594
|
+
createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: SubscriberPlanPolicy, options?: AxiosRequestConfig): AxiosPromise<SubscriberPlanPolicyVBAResponse>;
|
|
633
595
|
|
|
634
596
|
/**
|
|
635
597
|
* Deletes an SubscriberPlanPolicy
|
|
@@ -660,33 +622,29 @@ export interface SubscriberPlanPoliciesApiInterface {
|
|
|
660
622
|
getSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, planID: string, benefitCode: string, policyNumber: string, options?: AxiosRequestConfig): AxiosPromise<SubscriberPlanPolicyVBAResponse>;
|
|
661
623
|
|
|
662
624
|
/**
|
|
663
|
-
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
625
|
+
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
664
626
|
* @summary List SubscriberPlanPolicy
|
|
665
627
|
* @param {string} vbasoftwareDatabase Target database
|
|
666
628
|
* @param {string} subscriberID Subscriber ID
|
|
667
|
-
* @param {string} planID Plan ID
|
|
668
|
-
* @param {string} benefitCode Benefit Code
|
|
669
629
|
* @param {number} [page] Page
|
|
670
630
|
* @param {number} [pageSize] Page Size
|
|
671
631
|
* @param {*} [options] Override http request option.
|
|
672
632
|
* @throws {RequiredError}
|
|
673
633
|
* @memberof SubscriberPlanPoliciesApiInterface
|
|
674
634
|
*/
|
|
675
|
-
listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
635
|
+
listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<SubscriberPlanPolicyListVBAResponse>;
|
|
676
636
|
|
|
677
637
|
/**
|
|
678
638
|
* Create or Update multiple SubscriberPlanPolicy at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
679
639
|
* @summary Create or Update Batch SubscriberPlanPolicy
|
|
680
640
|
* @param {string} vbasoftwareDatabase Target database
|
|
681
|
-
* @param {string} subscriberID
|
|
682
|
-
* @param {string} planID
|
|
683
|
-
* @param {string} benefitCode
|
|
641
|
+
* @param {string} subscriberID Ssubscriber ID
|
|
684
642
|
* @param {Array<SubscriberPlanPolicy>} subscriberPlanPolicy
|
|
685
643
|
* @param {*} [options] Override http request option.
|
|
686
644
|
* @throws {RequiredError}
|
|
687
645
|
* @memberof SubscriberPlanPoliciesApiInterface
|
|
688
646
|
*/
|
|
689
|
-
updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
647
|
+
updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: Array<SubscriberPlanPolicy>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
690
648
|
|
|
691
649
|
/**
|
|
692
650
|
* Updates a specific SubscriberPlanPolicy.
|
|
@@ -717,15 +675,13 @@ export class SubscriberPlanPoliciesApi extends BaseAPI implements SubscriberPlan
|
|
|
717
675
|
* @summary Create SubscriberPlanPolicy
|
|
718
676
|
* @param {string} vbasoftwareDatabase Target database
|
|
719
677
|
* @param {string} subscriberID Subscriber ID
|
|
720
|
-
* @param {string} planID Plan ID
|
|
721
|
-
* @param {string} benefitCode Benefit Code
|
|
722
678
|
* @param {SubscriberPlanPolicy} subscriberPlanPolicy
|
|
723
679
|
* @param {*} [options] Override http request option.
|
|
724
680
|
* @throws {RequiredError}
|
|
725
681
|
* @memberof SubscriberPlanPoliciesApi
|
|
726
682
|
*/
|
|
727
|
-
public createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
728
|
-
return SubscriberPlanPoliciesApiFp(this.configuration).createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
683
|
+
public createSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: SubscriberPlanPolicy, options?: AxiosRequestConfig) {
|
|
684
|
+
return SubscriberPlanPoliciesApiFp(this.configuration).createSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options).then((request) => request(this.axios, this.basePath));
|
|
729
685
|
}
|
|
730
686
|
|
|
731
687
|
/**
|
|
@@ -761,36 +717,32 @@ export class SubscriberPlanPoliciesApi extends BaseAPI implements SubscriberPlan
|
|
|
761
717
|
}
|
|
762
718
|
|
|
763
719
|
/**
|
|
764
|
-
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
720
|
+
* Lists all SubscriberPlanPolicy for the given subscriberID
|
|
765
721
|
* @summary List SubscriberPlanPolicy
|
|
766
722
|
* @param {string} vbasoftwareDatabase Target database
|
|
767
723
|
* @param {string} subscriberID Subscriber ID
|
|
768
|
-
* @param {string} planID Plan ID
|
|
769
|
-
* @param {string} benefitCode Benefit Code
|
|
770
724
|
* @param {number} [page] Page
|
|
771
725
|
* @param {number} [pageSize] Page Size
|
|
772
726
|
* @param {*} [options] Override http request option.
|
|
773
727
|
* @throws {RequiredError}
|
|
774
728
|
* @memberof SubscriberPlanPoliciesApi
|
|
775
729
|
*/
|
|
776
|
-
public listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
777
|
-
return SubscriberPlanPoliciesApiFp(this.configuration).listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
730
|
+
public listSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
731
|
+
return SubscriberPlanPoliciesApiFp(this.configuration).listSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
778
732
|
}
|
|
779
733
|
|
|
780
734
|
/**
|
|
781
735
|
* Create or Update multiple SubscriberPlanPolicy at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
782
736
|
* @summary Create or Update Batch SubscriberPlanPolicy
|
|
783
737
|
* @param {string} vbasoftwareDatabase Target database
|
|
784
|
-
* @param {string} subscriberID
|
|
785
|
-
* @param {string} planID
|
|
786
|
-
* @param {string} benefitCode
|
|
738
|
+
* @param {string} subscriberID Ssubscriber ID
|
|
787
739
|
* @param {Array<SubscriberPlanPolicy>} subscriberPlanPolicy
|
|
788
740
|
* @param {*} [options] Override http request option.
|
|
789
741
|
* @throws {RequiredError}
|
|
790
742
|
* @memberof SubscriberPlanPoliciesApi
|
|
791
743
|
*/
|
|
792
|
-
public updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string,
|
|
793
|
-
return SubscriberPlanPoliciesApiFp(this.configuration).updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID,
|
|
744
|
+
public updateBatchSubscriberPlanPolicy(vbasoftwareDatabase: string, subscriberID: string, subscriberPlanPolicy: Array<SubscriberPlanPolicy>, options?: AxiosRequestConfig) {
|
|
745
|
+
return SubscriberPlanPoliciesApiFp(this.configuration).updateBatchSubscriberPlanPolicy(vbasoftwareDatabase, subscriberID, subscriberPlanPolicy, options).then((request) => request(this.axios, this.basePath));
|
|
794
746
|
}
|
|
795
747
|
|
|
796
748
|
/**
|