@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20221210.1 → 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 +17 -0
- package/api/adv-enrollment-api.ts +207 -0
- 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/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/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 +8 -0
- 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/index.ts +9 -0
- 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/provider-withhold.ts +17 -17
- package/models/subscriber-prior-accum.ts +24 -0
- package/package.json +1 -1
|
@@ -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 { StringStaticOptionListVBAResponse } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
26
28
|
import { SubEnrollmentPlan } from '../models';
|
|
27
29
|
// @ts-ignore
|
|
28
30
|
import { SubEnrollmentPlanListVBAResponse } from '../models';
|
|
@@ -313,6 +315,64 @@ export const SubscriberEnrollmentPlansApiAxiosParamCreator = function (configura
|
|
|
313
315
|
|
|
314
316
|
|
|
315
317
|
|
|
318
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
319
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
320
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
321
|
+
|
|
322
|
+
return {
|
|
323
|
+
url: toPathString(localVarUrlObj),
|
|
324
|
+
options: localVarRequestOptions,
|
|
325
|
+
};
|
|
326
|
+
},
|
|
327
|
+
/**
|
|
328
|
+
* Lists all SubEnrollmentPlans for the given Subscriber
|
|
329
|
+
* @summary List Subscriber SubEnrollmentPlans
|
|
330
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
331
|
+
* @param {string} subscriberID Subscriber ID
|
|
332
|
+
* @param {number} [page] Page
|
|
333
|
+
* @param {number} [pageSize] Page Size
|
|
334
|
+
* @param {*} [options] Override http request option.
|
|
335
|
+
* @throws {RequiredError}
|
|
336
|
+
*/
|
|
337
|
+
listSubscriberSubEnrollmentPlans: async (vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
338
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
339
|
+
assertParamExists('listSubscriberSubEnrollmentPlans', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
340
|
+
// verify required parameter 'subscriberID' is not null or undefined
|
|
341
|
+
assertParamExists('listSubscriberSubEnrollmentPlans', 'subscriberID', subscriberID)
|
|
342
|
+
const localVarPath = `/subscribers/{subscriberID}/plans`
|
|
343
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
344
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
345
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
346
|
+
let baseOptions;
|
|
347
|
+
if (configuration) {
|
|
348
|
+
baseOptions = configuration.baseOptions;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
352
|
+
const localVarHeaderParameter = {} as any;
|
|
353
|
+
const localVarQueryParameter = {} as any;
|
|
354
|
+
|
|
355
|
+
// authentication apiKeyAuth required
|
|
356
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
357
|
+
|
|
358
|
+
// authentication bearerAuth required
|
|
359
|
+
// http bearer authentication required
|
|
360
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
361
|
+
|
|
362
|
+
if (page !== undefined) {
|
|
363
|
+
localVarQueryParameter['page'] = page;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
if (pageSize !== undefined) {
|
|
367
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
371
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
316
376
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
317
377
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
318
378
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -551,6 +611,20 @@ export const SubscriberEnrollmentPlansApiFp = function(configuration?: Configura
|
|
|
551
611
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubEnrollmentPlan(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, page, pageSize, options);
|
|
552
612
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
553
613
|
},
|
|
614
|
+
/**
|
|
615
|
+
* Lists all SubEnrollmentPlans for the given Subscriber
|
|
616
|
+
* @summary List Subscriber SubEnrollmentPlans
|
|
617
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
618
|
+
* @param {string} subscriberID Subscriber ID
|
|
619
|
+
* @param {number} [page] Page
|
|
620
|
+
* @param {number} [pageSize] Page Size
|
|
621
|
+
* @param {*} [options] Override http request option.
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
*/
|
|
624
|
+
async listSubscriberSubEnrollmentPlans(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
625
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriberSubEnrollmentPlans(vbasoftwareDatabase, subscriberID, page, pageSize, options);
|
|
626
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
627
|
+
},
|
|
554
628
|
/**
|
|
555
629
|
* Create or Update multiple SubEnrollmentPlan at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
556
630
|
* @summary Create or Update Batch SubEnrollmentPlan
|
|
@@ -664,6 +738,19 @@ export const SubscriberEnrollmentPlansApiFactory = function (configuration?: Con
|
|
|
664
738
|
listSubEnrollmentPlan(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, page?: number, pageSize?: number, options?: any): AxiosPromise<SubEnrollmentPlanListVBAResponse> {
|
|
665
739
|
return localVarFp.listSubEnrollmentPlan(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, page, pageSize, options).then((request) => request(axios, basePath));
|
|
666
740
|
},
|
|
741
|
+
/**
|
|
742
|
+
* Lists all SubEnrollmentPlans for the given Subscriber
|
|
743
|
+
* @summary List Subscriber SubEnrollmentPlans
|
|
744
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
745
|
+
* @param {string} subscriberID Subscriber ID
|
|
746
|
+
* @param {number} [page] Page
|
|
747
|
+
* @param {number} [pageSize] Page Size
|
|
748
|
+
* @param {*} [options] Override http request option.
|
|
749
|
+
* @throws {RequiredError}
|
|
750
|
+
*/
|
|
751
|
+
listSubscriberSubEnrollmentPlans(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
752
|
+
return localVarFp.listSubscriberSubEnrollmentPlans(vbasoftwareDatabase, subscriberID, page, pageSize, options).then((request) => request(axios, basePath));
|
|
753
|
+
},
|
|
667
754
|
/**
|
|
668
755
|
* Create or Update multiple SubEnrollmentPlan at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
669
756
|
* @summary Create or Update Batch SubEnrollmentPlan
|
|
@@ -774,6 +861,19 @@ export interface SubscriberEnrollmentPlansApiInterface {
|
|
|
774
861
|
*/
|
|
775
862
|
listSubEnrollmentPlan(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<SubEnrollmentPlanListVBAResponse>;
|
|
776
863
|
|
|
864
|
+
/**
|
|
865
|
+
* Lists all SubEnrollmentPlans for the given Subscriber
|
|
866
|
+
* @summary List Subscriber SubEnrollmentPlans
|
|
867
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
868
|
+
* @param {string} subscriberID Subscriber ID
|
|
869
|
+
* @param {number} [page] Page
|
|
870
|
+
* @param {number} [pageSize] Page Size
|
|
871
|
+
* @param {*} [options] Override http request option.
|
|
872
|
+
* @throws {RequiredError}
|
|
873
|
+
* @memberof SubscriberEnrollmentPlansApiInterface
|
|
874
|
+
*/
|
|
875
|
+
listSubscriberSubEnrollmentPlans(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
876
|
+
|
|
777
877
|
/**
|
|
778
878
|
* Create or Update multiple SubEnrollmentPlan at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
779
879
|
* @summary Create or Update Batch SubEnrollmentPlan
|
|
@@ -892,6 +992,21 @@ export class SubscriberEnrollmentPlansApi extends BaseAPI implements SubscriberE
|
|
|
892
992
|
return SubscriberEnrollmentPlansApiFp(this.configuration).listSubEnrollmentPlan(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
893
993
|
}
|
|
894
994
|
|
|
995
|
+
/**
|
|
996
|
+
* Lists all SubEnrollmentPlans for the given Subscriber
|
|
997
|
+
* @summary List Subscriber SubEnrollmentPlans
|
|
998
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
999
|
+
* @param {string} subscriberID Subscriber ID
|
|
1000
|
+
* @param {number} [page] Page
|
|
1001
|
+
* @param {number} [pageSize] Page Size
|
|
1002
|
+
* @param {*} [options] Override http request option.
|
|
1003
|
+
* @throws {RequiredError}
|
|
1004
|
+
* @memberof SubscriberEnrollmentPlansApi
|
|
1005
|
+
*/
|
|
1006
|
+
public listSubscriberSubEnrollmentPlans(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
1007
|
+
return SubscriberEnrollmentPlansApiFp(this.configuration).listSubscriberSubEnrollmentPlans(vbasoftwareDatabase, subscriberID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
1008
|
+
}
|
|
1009
|
+
|
|
895
1010
|
/**
|
|
896
1011
|
* Create or Update multiple SubEnrollmentPlan at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
897
1012
|
* @summary Create or Update Batch SubEnrollmentPlan
|
package/api/subscribers-api.ts
CHANGED
|
@@ -415,6 +415,54 @@ export const SubscribersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
415
415
|
|
|
416
416
|
|
|
417
417
|
|
|
418
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
419
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
420
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
421
|
+
|
|
422
|
+
return {
|
|
423
|
+
url: toPathString(localVarUrlObj),
|
|
424
|
+
options: localVarRequestOptions,
|
|
425
|
+
};
|
|
426
|
+
},
|
|
427
|
+
/**
|
|
428
|
+
* List of all Benefits for the given Subscriber ID
|
|
429
|
+
* @summary List Subscriber Benefits
|
|
430
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
431
|
+
* @param {string} subscriberID Subscriber ID
|
|
432
|
+
* @param {*} [options] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
listSubscriberBenefits: async (vbasoftwareDatabase: string, subscriberID: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
436
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
437
|
+
assertParamExists('listSubscriberBenefits', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
438
|
+
// verify required parameter 'subscriberID' is not null or undefined
|
|
439
|
+
assertParamExists('listSubscriberBenefits', 'subscriberID', subscriberID)
|
|
440
|
+
const localVarPath = `/subscribers/{subscriberID}/benefits`
|
|
441
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
442
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
443
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
444
|
+
let baseOptions;
|
|
445
|
+
if (configuration) {
|
|
446
|
+
baseOptions = configuration.baseOptions;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
450
|
+
const localVarHeaderParameter = {} as any;
|
|
451
|
+
const localVarQueryParameter = {} as any;
|
|
452
|
+
|
|
453
|
+
// authentication apiKeyAuth required
|
|
454
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
455
|
+
|
|
456
|
+
// authentication bearerAuth required
|
|
457
|
+
// http bearer authentication required
|
|
458
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
459
|
+
|
|
460
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
461
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
418
466
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
419
467
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
420
468
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -855,6 +903,18 @@ export const SubscribersApiFp = function(configuration?: Configuration) {
|
|
|
855
903
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listReenrollmentFamilyOptions(vbasoftwareDatabase, options);
|
|
856
904
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
857
905
|
},
|
|
906
|
+
/**
|
|
907
|
+
* List of all Benefits for the given Subscriber ID
|
|
908
|
+
* @summary List Subscriber Benefits
|
|
909
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
910
|
+
* @param {string} subscriberID Subscriber ID
|
|
911
|
+
* @param {*} [options] Override http request option.
|
|
912
|
+
* @throws {RequiredError}
|
|
913
|
+
*/
|
|
914
|
+
async listSubscriberBenefits(vbasoftwareDatabase: string, subscriberID: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
915
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriberBenefits(vbasoftwareDatabase, subscriberID, options);
|
|
916
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
917
|
+
},
|
|
858
918
|
/**
|
|
859
919
|
* Lists all Subscribers
|
|
860
920
|
* @summary List Subscribers
|
|
@@ -1029,6 +1089,17 @@ export const SubscribersApiFactory = function (configuration?: Configuration, ba
|
|
|
1029
1089
|
listReenrollmentFamilyOptions(vbasoftwareDatabase: string, options?: any): AxiosPromise<Int32StaticOptionListVBAResponse> {
|
|
1030
1090
|
return localVarFp.listReenrollmentFamilyOptions(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1031
1091
|
},
|
|
1092
|
+
/**
|
|
1093
|
+
* List of all Benefits for the given Subscriber ID
|
|
1094
|
+
* @summary List Subscriber Benefits
|
|
1095
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1096
|
+
* @param {string} subscriberID Subscriber ID
|
|
1097
|
+
* @param {*} [options] Override http request option.
|
|
1098
|
+
* @throws {RequiredError}
|
|
1099
|
+
*/
|
|
1100
|
+
listSubscriberBenefits(vbasoftwareDatabase: string, subscriberID: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
1101
|
+
return localVarFp.listSubscriberBenefits(vbasoftwareDatabase, subscriberID, options).then((request) => request(axios, basePath));
|
|
1102
|
+
},
|
|
1032
1103
|
/**
|
|
1033
1104
|
* Lists all Subscribers
|
|
1034
1105
|
* @summary List Subscribers
|
|
@@ -1196,6 +1267,17 @@ export interface SubscribersApiInterface {
|
|
|
1196
1267
|
*/
|
|
1197
1268
|
listReenrollmentFamilyOptions(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<Int32StaticOptionListVBAResponse>;
|
|
1198
1269
|
|
|
1270
|
+
/**
|
|
1271
|
+
* List of all Benefits for the given Subscriber ID
|
|
1272
|
+
* @summary List Subscriber Benefits
|
|
1273
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1274
|
+
* @param {string} subscriberID Subscriber ID
|
|
1275
|
+
* @param {*} [options] Override http request option.
|
|
1276
|
+
* @throws {RequiredError}
|
|
1277
|
+
* @memberof SubscribersApiInterface
|
|
1278
|
+
*/
|
|
1279
|
+
listSubscriberBenefits(vbasoftwareDatabase: string, subscriberID: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
1280
|
+
|
|
1199
1281
|
/**
|
|
1200
1282
|
* Lists all Subscribers
|
|
1201
1283
|
* @summary List Subscribers
|
|
@@ -1379,6 +1461,19 @@ export class SubscribersApi extends BaseAPI implements SubscribersApiInterface {
|
|
|
1379
1461
|
return SubscribersApiFp(this.configuration).listReenrollmentFamilyOptions(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1380
1462
|
}
|
|
1381
1463
|
|
|
1464
|
+
/**
|
|
1465
|
+
* List of all Benefits for the given Subscriber ID
|
|
1466
|
+
* @summary List Subscriber Benefits
|
|
1467
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1468
|
+
* @param {string} subscriberID Subscriber ID
|
|
1469
|
+
* @param {*} [options] Override http request option.
|
|
1470
|
+
* @throws {RequiredError}
|
|
1471
|
+
* @memberof SubscribersApi
|
|
1472
|
+
*/
|
|
1473
|
+
public listSubscriberBenefits(vbasoftwareDatabase: string, subscriberID: string, options?: AxiosRequestConfig) {
|
|
1474
|
+
return SubscribersApiFp(this.configuration).listSubscriberBenefits(vbasoftwareDatabase, subscriberID, options).then((request) => request(this.axios, this.basePath));
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1382
1477
|
/**
|
|
1383
1478
|
* Lists all Subscribers
|
|
1384
1479
|
* @summary List Subscribers
|
package/api.ts
CHANGED
|
@@ -54,11 +54,14 @@ export * from './api/benefit-procedures-api';
|
|
|
54
54
|
export * from './api/benefit-provider-types-api';
|
|
55
55
|
export * from './api/benefit-specialties-api';
|
|
56
56
|
export * from './api/benefits-api';
|
|
57
|
+
export * from './api/bill-type-places-api';
|
|
58
|
+
export * from './api/bill-types-api';
|
|
57
59
|
export * from './api/billing-basis-api';
|
|
58
60
|
export * from './api/billing-cycles-api';
|
|
59
61
|
export * from './api/brokerage-api';
|
|
60
62
|
export * from './api/cliacertificate-api';
|
|
61
63
|
export * from './api/cliacertificate-procedure-codes-api';
|
|
64
|
+
export * from './api/cobtypes-api';
|
|
62
65
|
export * from './api/call-destinations-api';
|
|
63
66
|
export * from './api/call-statuses-api';
|
|
64
67
|
export * from './api/call-tracking-subscribers-api';
|
|
@@ -254,6 +257,7 @@ export * from './api/context4-health-cost-containment-ex-codes-api';
|
|
|
254
257
|
export * from './api/context4-health-cost-containment-message-types-api';
|
|
255
258
|
export * from './api/context4-health-cost-containment-option-pricing-api';
|
|
256
259
|
export * from './api/context4-health-cost-containment-options-api';
|
|
260
|
+
export * from './api/context4-lists-api';
|
|
257
261
|
export * from './api/contribution-schedules-api';
|
|
258
262
|
export * from './api/cost-contain-zelis-ex-codes-api';
|
|
259
263
|
export * from './api/country-api';
|
|
@@ -293,6 +297,7 @@ export * from './api/data-types-api';
|
|
|
293
297
|
export * from './api/diagnostic-code-groups-api';
|
|
294
298
|
export * from './api/diagnostic-code-types-api';
|
|
295
299
|
export * from './api/diagnostic-codes-api';
|
|
300
|
+
export * from './api/disability-options-api';
|
|
296
301
|
export * from './api/drug-code-units-api';
|
|
297
302
|
export * from './api/drug-codes-api';
|
|
298
303
|
export * from './api/duplicate-columns-api';
|
|
@@ -332,6 +337,7 @@ export * from './api/flex-claim-details-api';
|
|
|
332
337
|
export * from './api/flex-claim-services-api';
|
|
333
338
|
export * from './api/flex-claims-api';
|
|
334
339
|
export * from './api/flex-issuance-types-api';
|
|
340
|
+
export * from './api/flex-types-api';
|
|
335
341
|
export * from './api/flex-vendor-card-status-api';
|
|
336
342
|
export * from './api/flex-vendor-purse-status-api';
|
|
337
343
|
export * from './api/flex-vendors-api';
|
|
@@ -442,12 +448,14 @@ export * from './api/insurance-types-api';
|
|
|
442
448
|
export * from './api/interface-types-api';
|
|
443
449
|
export * from './api/invoice-levels-api';
|
|
444
450
|
export * from './api/invoice-reasons-api';
|
|
451
|
+
export * from './api/issue-duration-values-api';
|
|
445
452
|
export * from './api/job-execution-metadata-api';
|
|
446
453
|
export * from './api/job-executions-api';
|
|
447
454
|
export * from './api/job-types-api';
|
|
448
455
|
export * from './api/jobs-api';
|
|
449
456
|
export * from './api/language-skill-levels-api';
|
|
450
457
|
export * from './api/languages-api';
|
|
458
|
+
export * from './api/life-options-api';
|
|
451
459
|
export * from './api/local-taxes-api';
|
|
452
460
|
export * from './api/log-type-api';
|
|
453
461
|
export * from './api/logging-api';
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillType } from './bill-type';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypeListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypeListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<BillType>}
|
|
29
|
+
* @memberof BillTypeListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<BillType> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypeListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypeListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillTypePlace } from './bill-type-place';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypePlaceListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypePlaceListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<BillTypePlace>}
|
|
29
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<BillTypePlace> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillTypePlace } from './bill-type-place';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypePlaceVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypePlaceVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {BillTypePlace}
|
|
29
|
+
* @memberof BillTypePlaceVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: BillTypePlace;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypePlaceVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypePlaceVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface BillTypePlace
|
|
21
|
+
*/
|
|
22
|
+
export interface BillTypePlace {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the Type of Bill
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BillTypePlace
|
|
27
|
+
*/
|
|
28
|
+
'type_Of_Bill': string;
|
|
29
|
+
/**
|
|
30
|
+
* Place Code for this Type of Bill
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillTypePlace
|
|
33
|
+
*/
|
|
34
|
+
'place_Of_Service': string;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillTypePlace
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillTypePlace
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Excludes this Place Code for this Type of Bill
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof BillTypePlace
|
|
51
|
+
*/
|
|
52
|
+
'excluded_Type_Of_Bill'?: boolean | null;
|
|
53
|
+
/**
|
|
54
|
+
* Date the record was last updated in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillTypePlace
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that last updated the record in the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillTypePlace
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillType } from './bill-type';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypeVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypeVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {BillType}
|
|
29
|
+
* @memberof BillTypeVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: BillType;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypeVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypeVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface BillType
|
|
21
|
+
*/
|
|
22
|
+
export interface BillType {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the Type of Bill
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BillType
|
|
27
|
+
*/
|
|
28
|
+
'type_Of_Bill': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description of Type of Bill
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillType
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillType
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillType
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Inpatient identifies the Type of Bill used for inpatient bills
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof BillType
|
|
51
|
+
*/
|
|
52
|
+
'inpatient': boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Date the record was last updated in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillType
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that last updated the record in the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillType
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
65
|
+
}
|
|
66
|
+
|