@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20221108.4 → 1.20230117.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 +28 -1
- package/api/adv-benefits-api.ts +167 -0
- package/api/adv-enrollment-api.ts +207 -0
- package/api/auth-reference-api.ts +5 -5
- package/api/benefits-api.ts +87 -0
- package/api/bill-type-places-api.ts +716 -0
- package/api/bill-types-api.ts +668 -0
- package/api/care-case-clinical-fact-category-types-api.ts +107 -59
- package/api/care-case-clinical-facts-api.ts +155 -107
- package/api/cobtypes-api.ts +155 -0
- package/api/context4-lists-api.ts +331 -0
- package/api/cost-contain-zelis-ex-codes-api.ts +668 -0
- package/api/disability-options-api.ts +155 -0
- package/api/flex-types-api.ts +155 -0
- package/api/issue-duration-values-api.ts +677 -0
- package/api/life-options-api.ts +242 -0
- package/api/plan-benefit-clusters-api.ts +668 -0
- package/api/plans-api.ts +99 -0
- package/api/premium-rates-api.ts +125 -0
- package/api/provider-withholds-api.ts +31 -13
- package/api/report-definitions-api.ts +17 -8
- package/api/subscriber-enrollment-plans-api.ts +115 -0
- package/api/subscribers-api.ts +95 -0
- package/api.ts +11 -0
- package/models/{auth-reference-list-vbaresponse.ts → auth-list-vbaresponse.ts} +8 -8
- package/models/bill-type-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-vbaresponse.ts +45 -0
- package/models/bill-type-place.ts +66 -0
- package/models/bill-type-vbaresponse.ts +45 -0
- package/models/bill-type.ts +66 -0
- package/models/care-case-clinical-fact-category-type.ts +7 -7
- package/models/care-case-clinical-fact.ts +9 -9
- package/models/claim-batch.ts +6 -0
- package/models/claim.ts +6 -0
- package/models/company-data.ts +24 -0
- package/models/cost-contain-zelis-ex-code-list-vbaresponse.ts +45 -0
- package/models/cost-contain-zelis-ex-code-vbaresponse.ts +45 -0
- package/models/cost-contain-zelis-ex-code.ts +60 -0
- package/models/index.ts +17 -1
- package/models/issue-duration-value-list-vbaresponse.ts +45 -0
- package/models/issue-duration-value-vbaresponse.ts +45 -0
- package/models/issue-duration-value.ts +66 -0
- package/models/member-prior-accum.ts +24 -0
- package/models/plan-benefit-cluster-list-vbaresponse.ts +45 -0
- package/models/plan-benefit-cluster-vbaresponse.ts +45 -0
- package/models/plan-benefit-cluster.ts +96 -0
- package/models/plan-copy.ts +192 -0
- package/models/plans.ts +128 -98
- package/models/prem-rate.ts +6 -0
- package/models/provider-withhold.ts +17 -17
- package/models/subscriber-prior-accum.ts +24 -0
- package/package.json +1 -1
package/api/plans-api.ts
CHANGED
|
@@ -23,6 +23,8 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { MultiCodeResponseListVBAResponse } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
|
+
import { PlanCopy } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
26
28
|
import { Plans } from '../models';
|
|
27
29
|
// @ts-ignore
|
|
28
30
|
import { PlansListVBAResponse } from '../models';
|
|
@@ -34,6 +36,56 @@ import { PlansVBAResponse } from '../models';
|
|
|
34
36
|
*/
|
|
35
37
|
export const PlansApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
38
|
return {
|
|
39
|
+
/**
|
|
40
|
+
* Copies an existing plan. This copy can be to a completely new Plan ID, or to overwrite an existing Plan ID.
|
|
41
|
+
* @summary Copy Plan
|
|
42
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
43
|
+
* @param {PlanCopy} planCopy
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
copyPlan: async (vbasoftwareDatabase: string, planCopy: PlanCopy, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
49
|
+
assertParamExists('copyPlan', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
50
|
+
// verify required parameter 'planCopy' is not null or undefined
|
|
51
|
+
assertParamExists('copyPlan', 'planCopy', planCopy)
|
|
52
|
+
const localVarPath = `/plans-copy`;
|
|
53
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
54
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
55
|
+
let baseOptions;
|
|
56
|
+
if (configuration) {
|
|
57
|
+
baseOptions = configuration.baseOptions;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
61
|
+
const localVarHeaderParameter = {} as any;
|
|
62
|
+
const localVarQueryParameter = {} as any;
|
|
63
|
+
|
|
64
|
+
// authentication apiKeyAuth required
|
|
65
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
66
|
+
|
|
67
|
+
// authentication bearerAuth required
|
|
68
|
+
// http bearer authentication required
|
|
69
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
70
|
+
|
|
71
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
72
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
78
|
+
|
|
79
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
82
|
+
localVarRequestOptions.data = serializeDataIfNeeded(planCopy, localVarRequestOptions, configuration)
|
|
83
|
+
|
|
84
|
+
return {
|
|
85
|
+
url: toPathString(localVarUrlObj),
|
|
86
|
+
options: localVarRequestOptions,
|
|
87
|
+
};
|
|
88
|
+
},
|
|
37
89
|
/**
|
|
38
90
|
* Creates a new Plan
|
|
39
91
|
* @summary Create Plan
|
|
@@ -343,6 +395,18 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
343
395
|
export const PlansApiFp = function(configuration?: Configuration) {
|
|
344
396
|
const localVarAxiosParamCreator = PlansApiAxiosParamCreator(configuration)
|
|
345
397
|
return {
|
|
398
|
+
/**
|
|
399
|
+
* Copies an existing plan. This copy can be to a completely new Plan ID, or to overwrite an existing Plan ID.
|
|
400
|
+
* @summary Copy Plan
|
|
401
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
402
|
+
* @param {PlanCopy} planCopy
|
|
403
|
+
* @param {*} [options] Override http request option.
|
|
404
|
+
* @throws {RequiredError}
|
|
405
|
+
*/
|
|
406
|
+
async copyPlan(vbasoftwareDatabase: string, planCopy: PlanCopy, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlansVBAResponse>> {
|
|
407
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.copyPlan(vbasoftwareDatabase, planCopy, options);
|
|
408
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
409
|
+
},
|
|
346
410
|
/**
|
|
347
411
|
* Creates a new Plan
|
|
348
412
|
* @summary Create Plan
|
|
@@ -426,6 +490,17 @@ export const PlansApiFp = function(configuration?: Configuration) {
|
|
|
426
490
|
export const PlansApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
427
491
|
const localVarFp = PlansApiFp(configuration)
|
|
428
492
|
return {
|
|
493
|
+
/**
|
|
494
|
+
* Copies an existing plan. This copy can be to a completely new Plan ID, or to overwrite an existing Plan ID.
|
|
495
|
+
* @summary Copy Plan
|
|
496
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
497
|
+
* @param {PlanCopy} planCopy
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
*/
|
|
501
|
+
copyPlan(vbasoftwareDatabase: string, planCopy: PlanCopy, options?: any): AxiosPromise<PlansVBAResponse> {
|
|
502
|
+
return localVarFp.copyPlan(vbasoftwareDatabase, planCopy, options).then((request) => request(axios, basePath));
|
|
503
|
+
},
|
|
429
504
|
/**
|
|
430
505
|
* Creates a new Plan
|
|
431
506
|
* @summary Create Plan
|
|
@@ -502,6 +577,17 @@ export const PlansApiFactory = function (configuration?: Configuration, basePath
|
|
|
502
577
|
* @interface PlansApi
|
|
503
578
|
*/
|
|
504
579
|
export interface PlansApiInterface {
|
|
580
|
+
/**
|
|
581
|
+
* Copies an existing plan. This copy can be to a completely new Plan ID, or to overwrite an existing Plan ID.
|
|
582
|
+
* @summary Copy Plan
|
|
583
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
584
|
+
* @param {PlanCopy} planCopy
|
|
585
|
+
* @param {*} [options] Override http request option.
|
|
586
|
+
* @throws {RequiredError}
|
|
587
|
+
* @memberof PlansApiInterface
|
|
588
|
+
*/
|
|
589
|
+
copyPlan(vbasoftwareDatabase: string, planCopy: PlanCopy, options?: AxiosRequestConfig): AxiosPromise<PlansVBAResponse>;
|
|
590
|
+
|
|
505
591
|
/**
|
|
506
592
|
* Creates a new Plan
|
|
507
593
|
* @summary Create Plan
|
|
@@ -578,6 +664,19 @@ export interface PlansApiInterface {
|
|
|
578
664
|
* @extends {BaseAPI}
|
|
579
665
|
*/
|
|
580
666
|
export class PlansApi extends BaseAPI implements PlansApiInterface {
|
|
667
|
+
/**
|
|
668
|
+
* Copies an existing plan. This copy can be to a completely new Plan ID, or to overwrite an existing Plan ID.
|
|
669
|
+
* @summary Copy Plan
|
|
670
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
671
|
+
* @param {PlanCopy} planCopy
|
|
672
|
+
* @param {*} [options] Override http request option.
|
|
673
|
+
* @throws {RequiredError}
|
|
674
|
+
* @memberof PlansApi
|
|
675
|
+
*/
|
|
676
|
+
public copyPlan(vbasoftwareDatabase: string, planCopy: PlanCopy, options?: AxiosRequestConfig) {
|
|
677
|
+
return PlansApiFp(this.configuration).copyPlan(vbasoftwareDatabase, planCopy, options).then((request) => request(this.axios, this.basePath));
|
|
678
|
+
}
|
|
679
|
+
|
|
581
680
|
/**
|
|
582
681
|
* Creates a new Plan
|
|
583
682
|
* @summary Create Plan
|
package/api/premium-rates-api.ts
CHANGED
|
@@ -171,6 +171,72 @@ export const PremiumRatesApiAxiosParamCreator = function (configuration?: Config
|
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
|
|
174
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
175
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
176
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
177
|
+
|
|
178
|
+
return {
|
|
179
|
+
url: toPathString(localVarUrlObj),
|
|
180
|
+
options: localVarRequestOptions,
|
|
181
|
+
};
|
|
182
|
+
},
|
|
183
|
+
/**
|
|
184
|
+
* Lists all PremRate included in the specified Group ID and Division ID.
|
|
185
|
+
* @summary List Included PremRate
|
|
186
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
187
|
+
* @param {string} groupId Group ID
|
|
188
|
+
* @param {string} [divisionId] Division ID
|
|
189
|
+
* @param {number} [page] Page
|
|
190
|
+
* @param {number} [pageSize] Page Size
|
|
191
|
+
* @param {*} [options] Override http request option.
|
|
192
|
+
* @throws {RequiredError}
|
|
193
|
+
*/
|
|
194
|
+
listIncludedPremRates: async (vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
195
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
196
|
+
assertParamExists('listIncludedPremRates', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
197
|
+
// verify required parameter 'groupId' is not null or undefined
|
|
198
|
+
assertParamExists('listIncludedPremRates', 'groupId', groupId)
|
|
199
|
+
const localVarPath = `/included-premium-rates`;
|
|
200
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
201
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
202
|
+
let baseOptions;
|
|
203
|
+
if (configuration) {
|
|
204
|
+
baseOptions = configuration.baseOptions;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
208
|
+
const localVarHeaderParameter = {} as any;
|
|
209
|
+
const localVarQueryParameter = {} as any;
|
|
210
|
+
|
|
211
|
+
// authentication apiKeyAuth required
|
|
212
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
213
|
+
|
|
214
|
+
// authentication bearerAuth required
|
|
215
|
+
// http bearer authentication required
|
|
216
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
217
|
+
|
|
218
|
+
if (groupId !== undefined) {
|
|
219
|
+
localVarQueryParameter['groupId'] = groupId;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
if (divisionId !== undefined) {
|
|
223
|
+
localVarQueryParameter['divisionId'] = divisionId;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
if (page !== undefined) {
|
|
227
|
+
localVarQueryParameter['page'] = page;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
if (pageSize !== undefined) {
|
|
231
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
235
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
174
240
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
175
241
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
176
242
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -389,6 +455,21 @@ export const PremiumRatesApiFp = function(configuration?: Configuration) {
|
|
|
389
455
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getPremRate(vbasoftwareDatabase, premRateKey, options);
|
|
390
456
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
391
457
|
},
|
|
458
|
+
/**
|
|
459
|
+
* Lists all PremRate included in the specified Group ID and Division ID.
|
|
460
|
+
* @summary List Included PremRate
|
|
461
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
462
|
+
* @param {string} groupId Group ID
|
|
463
|
+
* @param {string} [divisionId] Division ID
|
|
464
|
+
* @param {number} [page] Page
|
|
465
|
+
* @param {number} [pageSize] Page Size
|
|
466
|
+
* @param {*} [options] Override http request option.
|
|
467
|
+
* @throws {RequiredError}
|
|
468
|
+
*/
|
|
469
|
+
async listIncludedPremRates(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PremRateListVBAResponse>> {
|
|
470
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIncludedPremRates(vbasoftwareDatabase, groupId, divisionId, page, pageSize, options);
|
|
471
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
472
|
+
},
|
|
392
473
|
/**
|
|
393
474
|
* Lists all PremRate
|
|
394
475
|
* @summary List PremRate
|
|
@@ -471,6 +552,20 @@ export const PremiumRatesApiFactory = function (configuration?: Configuration, b
|
|
|
471
552
|
getPremRate(vbasoftwareDatabase: string, premRateKey: number, options?: any): AxiosPromise<PremRateVBAResponse> {
|
|
472
553
|
return localVarFp.getPremRate(vbasoftwareDatabase, premRateKey, options).then((request) => request(axios, basePath));
|
|
473
554
|
},
|
|
555
|
+
/**
|
|
556
|
+
* Lists all PremRate included in the specified Group ID and Division ID.
|
|
557
|
+
* @summary List Included PremRate
|
|
558
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
559
|
+
* @param {string} groupId Group ID
|
|
560
|
+
* @param {string} [divisionId] Division ID
|
|
561
|
+
* @param {number} [page] Page
|
|
562
|
+
* @param {number} [pageSize] Page Size
|
|
563
|
+
* @param {*} [options] Override http request option.
|
|
564
|
+
* @throws {RequiredError}
|
|
565
|
+
*/
|
|
566
|
+
listIncludedPremRates(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<PremRateListVBAResponse> {
|
|
567
|
+
return localVarFp.listIncludedPremRates(vbasoftwareDatabase, groupId, divisionId, page, pageSize, options).then((request) => request(axios, basePath));
|
|
568
|
+
},
|
|
474
569
|
/**
|
|
475
570
|
* Lists all PremRate
|
|
476
571
|
* @summary List PremRate
|
|
@@ -549,6 +644,20 @@ export interface PremiumRatesApiInterface {
|
|
|
549
644
|
*/
|
|
550
645
|
getPremRate(vbasoftwareDatabase: string, premRateKey: number, options?: AxiosRequestConfig): AxiosPromise<PremRateVBAResponse>;
|
|
551
646
|
|
|
647
|
+
/**
|
|
648
|
+
* Lists all PremRate included in the specified Group ID and Division ID.
|
|
649
|
+
* @summary List Included PremRate
|
|
650
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
651
|
+
* @param {string} groupId Group ID
|
|
652
|
+
* @param {string} [divisionId] Division ID
|
|
653
|
+
* @param {number} [page] Page
|
|
654
|
+
* @param {number} [pageSize] Page Size
|
|
655
|
+
* @param {*} [options] Override http request option.
|
|
656
|
+
* @throws {RequiredError}
|
|
657
|
+
* @memberof PremiumRatesApiInterface
|
|
658
|
+
*/
|
|
659
|
+
listIncludedPremRates(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<PremRateListVBAResponse>;
|
|
660
|
+
|
|
552
661
|
/**
|
|
553
662
|
* Lists all PremRate
|
|
554
663
|
* @summary List PremRate
|
|
@@ -633,6 +742,22 @@ export class PremiumRatesApi extends BaseAPI implements PremiumRatesApiInterface
|
|
|
633
742
|
return PremiumRatesApiFp(this.configuration).getPremRate(vbasoftwareDatabase, premRateKey, options).then((request) => request(this.axios, this.basePath));
|
|
634
743
|
}
|
|
635
744
|
|
|
745
|
+
/**
|
|
746
|
+
* Lists all PremRate included in the specified Group ID and Division ID.
|
|
747
|
+
* @summary List Included PremRate
|
|
748
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
749
|
+
* @param {string} groupId Group ID
|
|
750
|
+
* @param {string} [divisionId] Division ID
|
|
751
|
+
* @param {number} [page] Page
|
|
752
|
+
* @param {number} [pageSize] Page Size
|
|
753
|
+
* @param {*} [options] Override http request option.
|
|
754
|
+
* @throws {RequiredError}
|
|
755
|
+
* @memberof PremiumRatesApi
|
|
756
|
+
*/
|
|
757
|
+
public listIncludedPremRates(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
758
|
+
return PremiumRatesApiFp(this.configuration).listIncludedPremRates(vbasoftwareDatabase, groupId, divisionId, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
759
|
+
}
|
|
760
|
+
|
|
636
761
|
/**
|
|
637
762
|
* Lists all PremRate
|
|
638
763
|
* @summary List PremRate
|
|
@@ -181,15 +181,17 @@ export const ProviderWithholdsApiAxiosParamCreator = function (configuration?: C
|
|
|
181
181
|
};
|
|
182
182
|
},
|
|
183
183
|
/**
|
|
184
|
-
* Lists all ProviderWithhold
|
|
184
|
+
* Lists all ProviderWithhold. Supply optional ProviderID and/or FederalID parameters to filter results.
|
|
185
185
|
* @summary List ProviderWithhold
|
|
186
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
187
|
+
* @param {string} [providerId] ProviderID
|
|
188
|
+
* @param {string} [federalId] FederalID
|
|
187
189
|
* @param {number} [page] Page
|
|
188
190
|
* @param {number} [pageSize] Page Size
|
|
189
191
|
* @param {*} [options] Override http request option.
|
|
190
192
|
* @throws {RequiredError}
|
|
191
193
|
*/
|
|
192
|
-
listProviderWithhold: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
194
|
+
listProviderWithhold: async (vbasoftwareDatabase: string, providerId?: string, federalId?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
195
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
194
196
|
assertParamExists('listProviderWithhold', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
195
197
|
const localVarPath = `/provider-withholds`;
|
|
@@ -211,6 +213,14 @@ export const ProviderWithholdsApiAxiosParamCreator = function (configuration?: C
|
|
|
211
213
|
// http bearer authentication required
|
|
212
214
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
213
215
|
|
|
216
|
+
if (providerId !== undefined) {
|
|
217
|
+
localVarQueryParameter['providerId'] = providerId;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (federalId !== undefined) {
|
|
221
|
+
localVarQueryParameter['federalId'] = federalId;
|
|
222
|
+
}
|
|
223
|
+
|
|
214
224
|
if (page !== undefined) {
|
|
215
225
|
localVarQueryParameter['page'] = page;
|
|
216
226
|
}
|
|
@@ -385,16 +395,18 @@ export const ProviderWithholdsApiFp = function(configuration?: Configuration) {
|
|
|
385
395
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
386
396
|
},
|
|
387
397
|
/**
|
|
388
|
-
* Lists all ProviderWithhold
|
|
398
|
+
* Lists all ProviderWithhold. Supply optional ProviderID and/or FederalID parameters to filter results.
|
|
389
399
|
* @summary List ProviderWithhold
|
|
390
400
|
* @param {string} vbasoftwareDatabase Target database
|
|
401
|
+
* @param {string} [providerId] ProviderID
|
|
402
|
+
* @param {string} [federalId] FederalID
|
|
391
403
|
* @param {number} [page] Page
|
|
392
404
|
* @param {number} [pageSize] Page Size
|
|
393
405
|
* @param {*} [options] Override http request option.
|
|
394
406
|
* @throws {RequiredError}
|
|
395
407
|
*/
|
|
396
|
-
async listProviderWithhold(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProviderWithholdListVBAResponse>> {
|
|
397
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listProviderWithhold(vbasoftwareDatabase, page, pageSize, options);
|
|
408
|
+
async listProviderWithhold(vbasoftwareDatabase: string, providerId?: string, federalId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProviderWithholdListVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listProviderWithhold(vbasoftwareDatabase, providerId, federalId, page, pageSize, options);
|
|
398
410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
399
411
|
},
|
|
400
412
|
/**
|
|
@@ -466,16 +478,18 @@ export const ProviderWithholdsApiFactory = function (configuration?: Configurati
|
|
|
466
478
|
return localVarFp.getProviderWithhold(vbasoftwareDatabase, providerWithholdKey, options).then((request) => request(axios, basePath));
|
|
467
479
|
},
|
|
468
480
|
/**
|
|
469
|
-
* Lists all ProviderWithhold
|
|
481
|
+
* Lists all ProviderWithhold. Supply optional ProviderID and/or FederalID parameters to filter results.
|
|
470
482
|
* @summary List ProviderWithhold
|
|
471
483
|
* @param {string} vbasoftwareDatabase Target database
|
|
484
|
+
* @param {string} [providerId] ProviderID
|
|
485
|
+
* @param {string} [federalId] FederalID
|
|
472
486
|
* @param {number} [page] Page
|
|
473
487
|
* @param {number} [pageSize] Page Size
|
|
474
488
|
* @param {*} [options] Override http request option.
|
|
475
489
|
* @throws {RequiredError}
|
|
476
490
|
*/
|
|
477
|
-
listProviderWithhold(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ProviderWithholdListVBAResponse> {
|
|
478
|
-
return localVarFp.listProviderWithhold(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
|
|
491
|
+
listProviderWithhold(vbasoftwareDatabase: string, providerId?: string, federalId?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ProviderWithholdListVBAResponse> {
|
|
492
|
+
return localVarFp.listProviderWithhold(vbasoftwareDatabase, providerId, federalId, page, pageSize, options).then((request) => request(axios, basePath));
|
|
479
493
|
},
|
|
480
494
|
/**
|
|
481
495
|
* Create or Update multiple ProviderWithhold at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -543,16 +557,18 @@ export interface ProviderWithholdsApiInterface {
|
|
|
543
557
|
getProviderWithhold(vbasoftwareDatabase: string, providerWithholdKey: number, options?: AxiosRequestConfig): AxiosPromise<ProviderWithholdVBAResponse>;
|
|
544
558
|
|
|
545
559
|
/**
|
|
546
|
-
* Lists all ProviderWithhold
|
|
560
|
+
* Lists all ProviderWithhold. Supply optional ProviderID and/or FederalID parameters to filter results.
|
|
547
561
|
* @summary List ProviderWithhold
|
|
548
562
|
* @param {string} vbasoftwareDatabase Target database
|
|
563
|
+
* @param {string} [providerId] ProviderID
|
|
564
|
+
* @param {string} [federalId] FederalID
|
|
549
565
|
* @param {number} [page] Page
|
|
550
566
|
* @param {number} [pageSize] Page Size
|
|
551
567
|
* @param {*} [options] Override http request option.
|
|
552
568
|
* @throws {RequiredError}
|
|
553
569
|
* @memberof ProviderWithholdsApiInterface
|
|
554
570
|
*/
|
|
555
|
-
listProviderWithhold(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ProviderWithholdListVBAResponse>;
|
|
571
|
+
listProviderWithhold(vbasoftwareDatabase: string, providerId?: string, federalId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ProviderWithholdListVBAResponse>;
|
|
556
572
|
|
|
557
573
|
/**
|
|
558
574
|
* Create or Update multiple ProviderWithhold at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -626,17 +642,19 @@ export class ProviderWithholdsApi extends BaseAPI implements ProviderWithholdsAp
|
|
|
626
642
|
}
|
|
627
643
|
|
|
628
644
|
/**
|
|
629
|
-
* Lists all ProviderWithhold
|
|
645
|
+
* Lists all ProviderWithhold. Supply optional ProviderID and/or FederalID parameters to filter results.
|
|
630
646
|
* @summary List ProviderWithhold
|
|
631
647
|
* @param {string} vbasoftwareDatabase Target database
|
|
648
|
+
* @param {string} [providerId] ProviderID
|
|
649
|
+
* @param {string} [federalId] FederalID
|
|
632
650
|
* @param {number} [page] Page
|
|
633
651
|
* @param {number} [pageSize] Page Size
|
|
634
652
|
* @param {*} [options] Override http request option.
|
|
635
653
|
* @throws {RequiredError}
|
|
636
654
|
* @memberof ProviderWithholdsApi
|
|
637
655
|
*/
|
|
638
|
-
public listProviderWithhold(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
639
|
-
return ProviderWithholdsApiFp(this.configuration).listProviderWithhold(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
656
|
+
public listProviderWithhold(vbasoftwareDatabase: string, providerId?: string, federalId?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
657
|
+
return ProviderWithholdsApiFp(this.configuration).listProviderWithhold(vbasoftwareDatabase, providerId, federalId, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
640
658
|
}
|
|
641
659
|
|
|
642
660
|
/**
|
|
@@ -184,12 +184,13 @@ export const ReportDefinitionsApiAxiosParamCreator = function (configuration?: C
|
|
|
184
184
|
* Lists all ReportDefinition
|
|
185
185
|
* @summary List ReportDefinition
|
|
186
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
187
|
+
* @param {string} [criteriaObject] Criteria Object
|
|
187
188
|
* @param {number} [page] Page
|
|
188
189
|
* @param {number} [pageSize] Page Size
|
|
189
190
|
* @param {*} [options] Override http request option.
|
|
190
191
|
* @throws {RequiredError}
|
|
191
192
|
*/
|
|
192
|
-
listReportDefinition: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
|
+
listReportDefinition: async (vbasoftwareDatabase: string, criteriaObject?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
194
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
194
195
|
assertParamExists('listReportDefinition', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
195
196
|
const localVarPath = `/report-definitions`;
|
|
@@ -211,6 +212,10 @@ export const ReportDefinitionsApiAxiosParamCreator = function (configuration?: C
|
|
|
211
212
|
// http bearer authentication required
|
|
212
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
213
214
|
|
|
215
|
+
if (criteriaObject !== undefined) {
|
|
216
|
+
localVarQueryParameter['criteriaObject'] = criteriaObject;
|
|
217
|
+
}
|
|
218
|
+
|
|
214
219
|
if (page !== undefined) {
|
|
215
220
|
localVarQueryParameter['page'] = page;
|
|
216
221
|
}
|
|
@@ -388,13 +393,14 @@ export const ReportDefinitionsApiFp = function(configuration?: Configuration) {
|
|
|
388
393
|
* Lists all ReportDefinition
|
|
389
394
|
* @summary List ReportDefinition
|
|
390
395
|
* @param {string} vbasoftwareDatabase Target database
|
|
396
|
+
* @param {string} [criteriaObject] Criteria Object
|
|
391
397
|
* @param {number} [page] Page
|
|
392
398
|
* @param {number} [pageSize] Page Size
|
|
393
399
|
* @param {*} [options] Override http request option.
|
|
394
400
|
* @throws {RequiredError}
|
|
395
401
|
*/
|
|
396
|
-
async listReportDefinition(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportDefinitionListVBAResponse>> {
|
|
397
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportDefinition(vbasoftwareDatabase, page, pageSize, options);
|
|
402
|
+
async listReportDefinition(vbasoftwareDatabase: string, criteriaObject?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportDefinitionListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportDefinition(vbasoftwareDatabase, criteriaObject, page, pageSize, options);
|
|
398
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
399
405
|
},
|
|
400
406
|
/**
|
|
@@ -469,13 +475,14 @@ export const ReportDefinitionsApiFactory = function (configuration?: Configurati
|
|
|
469
475
|
* Lists all ReportDefinition
|
|
470
476
|
* @summary List ReportDefinition
|
|
471
477
|
* @param {string} vbasoftwareDatabase Target database
|
|
478
|
+
* @param {string} [criteriaObject] Criteria Object
|
|
472
479
|
* @param {number} [page] Page
|
|
473
480
|
* @param {number} [pageSize] Page Size
|
|
474
481
|
* @param {*} [options] Override http request option.
|
|
475
482
|
* @throws {RequiredError}
|
|
476
483
|
*/
|
|
477
|
-
listReportDefinition(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportDefinitionListVBAResponse> {
|
|
478
|
-
return localVarFp.listReportDefinition(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
|
|
484
|
+
listReportDefinition(vbasoftwareDatabase: string, criteriaObject?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportDefinitionListVBAResponse> {
|
|
485
|
+
return localVarFp.listReportDefinition(vbasoftwareDatabase, criteriaObject, page, pageSize, options).then((request) => request(axios, basePath));
|
|
479
486
|
},
|
|
480
487
|
/**
|
|
481
488
|
* Create or Update multiple ReportDefinition at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -546,13 +553,14 @@ export interface ReportDefinitionsApiInterface {
|
|
|
546
553
|
* Lists all ReportDefinition
|
|
547
554
|
* @summary List ReportDefinition
|
|
548
555
|
* @param {string} vbasoftwareDatabase Target database
|
|
556
|
+
* @param {string} [criteriaObject] Criteria Object
|
|
549
557
|
* @param {number} [page] Page
|
|
550
558
|
* @param {number} [pageSize] Page Size
|
|
551
559
|
* @param {*} [options] Override http request option.
|
|
552
560
|
* @throws {RequiredError}
|
|
553
561
|
* @memberof ReportDefinitionsApiInterface
|
|
554
562
|
*/
|
|
555
|
-
listReportDefinition(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportDefinitionListVBAResponse>;
|
|
563
|
+
listReportDefinition(vbasoftwareDatabase: string, criteriaObject?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportDefinitionListVBAResponse>;
|
|
556
564
|
|
|
557
565
|
/**
|
|
558
566
|
* Create or Update multiple ReportDefinition at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -629,14 +637,15 @@ export class ReportDefinitionsApi extends BaseAPI implements ReportDefinitionsAp
|
|
|
629
637
|
* Lists all ReportDefinition
|
|
630
638
|
* @summary List ReportDefinition
|
|
631
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
640
|
+
* @param {string} [criteriaObject] Criteria Object
|
|
632
641
|
* @param {number} [page] Page
|
|
633
642
|
* @param {number} [pageSize] Page Size
|
|
634
643
|
* @param {*} [options] Override http request option.
|
|
635
644
|
* @throws {RequiredError}
|
|
636
645
|
* @memberof ReportDefinitionsApi
|
|
637
646
|
*/
|
|
638
|
-
public listReportDefinition(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
639
|
-
return ReportDefinitionsApiFp(this.configuration).listReportDefinition(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
647
|
+
public listReportDefinition(vbasoftwareDatabase: string, criteriaObject?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return ReportDefinitionsApiFp(this.configuration).listReportDefinition(vbasoftwareDatabase, criteriaObject, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
640
649
|
}
|
|
641
650
|
|
|
642
651
|
/**
|