@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
|
@@ -0,0 +1,155 @@
|
|
|
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 globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { Int32StaticOptionListVBAResponse } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* DisabilityOptionsApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export const DisabilityOptionsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
|
+
return {
|
|
31
|
+
/**
|
|
32
|
+
* List of key/value pairs
|
|
33
|
+
* @summary List Disability Interval Types
|
|
34
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
listDisabilityIntervalTypes: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
40
|
+
assertParamExists('listDisabilityIntervalTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
41
|
+
const localVarPath = `/disability-interval-types`;
|
|
42
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
43
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
44
|
+
let baseOptions;
|
|
45
|
+
if (configuration) {
|
|
46
|
+
baseOptions = configuration.baseOptions;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
50
|
+
const localVarHeaderParameter = {} as any;
|
|
51
|
+
const localVarQueryParameter = {} as any;
|
|
52
|
+
|
|
53
|
+
// authentication apiKeyAuth required
|
|
54
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
55
|
+
|
|
56
|
+
// authentication bearerAuth required
|
|
57
|
+
// http bearer authentication required
|
|
58
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
59
|
+
|
|
60
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
61
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
67
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
url: toPathString(localVarUrlObj),
|
|
72
|
+
options: localVarRequestOptions,
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* DisabilityOptionsApi - functional programming interface
|
|
80
|
+
* @export
|
|
81
|
+
*/
|
|
82
|
+
export const DisabilityOptionsApiFp = function(configuration?: Configuration) {
|
|
83
|
+
const localVarAxiosParamCreator = DisabilityOptionsApiAxiosParamCreator(configuration)
|
|
84
|
+
return {
|
|
85
|
+
/**
|
|
86
|
+
* List of key/value pairs
|
|
87
|
+
* @summary List Disability Interval Types
|
|
88
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
async listDisabilityIntervalTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Int32StaticOptionListVBAResponse>> {
|
|
93
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listDisabilityIntervalTypes(vbasoftwareDatabase, options);
|
|
94
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
95
|
+
},
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* DisabilityOptionsApi - factory interface
|
|
101
|
+
* @export
|
|
102
|
+
*/
|
|
103
|
+
export const DisabilityOptionsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
104
|
+
const localVarFp = DisabilityOptionsApiFp(configuration)
|
|
105
|
+
return {
|
|
106
|
+
/**
|
|
107
|
+
* List of key/value pairs
|
|
108
|
+
* @summary List Disability Interval Types
|
|
109
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
110
|
+
* @param {*} [options] Override http request option.
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listDisabilityIntervalTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<Int32StaticOptionListVBAResponse> {
|
|
114
|
+
return localVarFp.listDisabilityIntervalTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* DisabilityOptionsApi - interface
|
|
121
|
+
* @export
|
|
122
|
+
* @interface DisabilityOptionsApi
|
|
123
|
+
*/
|
|
124
|
+
export interface DisabilityOptionsApiInterface {
|
|
125
|
+
/**
|
|
126
|
+
* List of key/value pairs
|
|
127
|
+
* @summary List Disability Interval Types
|
|
128
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
* @memberof DisabilityOptionsApiInterface
|
|
132
|
+
*/
|
|
133
|
+
listDisabilityIntervalTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<Int32StaticOptionListVBAResponse>;
|
|
134
|
+
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* DisabilityOptionsApi - object-oriented interface
|
|
139
|
+
* @export
|
|
140
|
+
* @class DisabilityOptionsApi
|
|
141
|
+
* @extends {BaseAPI}
|
|
142
|
+
*/
|
|
143
|
+
export class DisabilityOptionsApi extends BaseAPI implements DisabilityOptionsApiInterface {
|
|
144
|
+
/**
|
|
145
|
+
* List of key/value pairs
|
|
146
|
+
* @summary List Disability Interval Types
|
|
147
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
* @memberof DisabilityOptionsApi
|
|
151
|
+
*/
|
|
152
|
+
public listDisabilityIntervalTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
153
|
+
return DisabilityOptionsApiFp(this.configuration).listDisabilityIntervalTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -0,0 +1,155 @@
|
|
|
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 globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { StringStaticOptionListVBAResponse } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* FlexTypesApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export const FlexTypesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
|
+
return {
|
|
31
|
+
/**
|
|
32
|
+
* List of key/value pairs
|
|
33
|
+
* @summary List Flex Types
|
|
34
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
listFlexTypes: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
40
|
+
assertParamExists('listFlexTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
41
|
+
const localVarPath = `/flex-types`;
|
|
42
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
43
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
44
|
+
let baseOptions;
|
|
45
|
+
if (configuration) {
|
|
46
|
+
baseOptions = configuration.baseOptions;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
50
|
+
const localVarHeaderParameter = {} as any;
|
|
51
|
+
const localVarQueryParameter = {} as any;
|
|
52
|
+
|
|
53
|
+
// authentication apiKeyAuth required
|
|
54
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
55
|
+
|
|
56
|
+
// authentication bearerAuth required
|
|
57
|
+
// http bearer authentication required
|
|
58
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
59
|
+
|
|
60
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
61
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
67
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
url: toPathString(localVarUrlObj),
|
|
72
|
+
options: localVarRequestOptions,
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* FlexTypesApi - functional programming interface
|
|
80
|
+
* @export
|
|
81
|
+
*/
|
|
82
|
+
export const FlexTypesApiFp = function(configuration?: Configuration) {
|
|
83
|
+
const localVarAxiosParamCreator = FlexTypesApiAxiosParamCreator(configuration)
|
|
84
|
+
return {
|
|
85
|
+
/**
|
|
86
|
+
* List of key/value pairs
|
|
87
|
+
* @summary List Flex Types
|
|
88
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
async listFlexTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
93
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFlexTypes(vbasoftwareDatabase, options);
|
|
94
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
95
|
+
},
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* FlexTypesApi - factory interface
|
|
101
|
+
* @export
|
|
102
|
+
*/
|
|
103
|
+
export const FlexTypesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
104
|
+
const localVarFp = FlexTypesApiFp(configuration)
|
|
105
|
+
return {
|
|
106
|
+
/**
|
|
107
|
+
* List of key/value pairs
|
|
108
|
+
* @summary List Flex Types
|
|
109
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
110
|
+
* @param {*} [options] Override http request option.
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listFlexTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
114
|
+
return localVarFp.listFlexTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* FlexTypesApi - interface
|
|
121
|
+
* @export
|
|
122
|
+
* @interface FlexTypesApi
|
|
123
|
+
*/
|
|
124
|
+
export interface FlexTypesApiInterface {
|
|
125
|
+
/**
|
|
126
|
+
* List of key/value pairs
|
|
127
|
+
* @summary List Flex Types
|
|
128
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
* @memberof FlexTypesApiInterface
|
|
132
|
+
*/
|
|
133
|
+
listFlexTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
134
|
+
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* FlexTypesApi - object-oriented interface
|
|
139
|
+
* @export
|
|
140
|
+
* @class FlexTypesApi
|
|
141
|
+
* @extends {BaseAPI}
|
|
142
|
+
*/
|
|
143
|
+
export class FlexTypesApi extends BaseAPI implements FlexTypesApiInterface {
|
|
144
|
+
/**
|
|
145
|
+
* List of key/value pairs
|
|
146
|
+
* @summary List Flex Types
|
|
147
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
* @memberof FlexTypesApi
|
|
151
|
+
*/
|
|
152
|
+
public listFlexTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
153
|
+
return FlexTypesApiFp(this.configuration).listFlexTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
154
|
+
}
|
|
155
|
+
}
|