@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 { StringStaticOptionListVBAResponse } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* COBTypesApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export const COBTypesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
|
+
return {
|
|
31
|
+
/**
|
|
32
|
+
* List of key/value pairs
|
|
33
|
+
* @summary List COB Types
|
|
34
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
listCOBTypes: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
40
|
+
assertParamExists('listCOBTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
41
|
+
const localVarPath = `/cob-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
|
+
* COBTypesApi - functional programming interface
|
|
80
|
+
* @export
|
|
81
|
+
*/
|
|
82
|
+
export const COBTypesApiFp = function(configuration?: Configuration) {
|
|
83
|
+
const localVarAxiosParamCreator = COBTypesApiAxiosParamCreator(configuration)
|
|
84
|
+
return {
|
|
85
|
+
/**
|
|
86
|
+
* List of key/value pairs
|
|
87
|
+
* @summary List COB Types
|
|
88
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
async listCOBTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
93
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listCOBTypes(vbasoftwareDatabase, options);
|
|
94
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
95
|
+
},
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* COBTypesApi - factory interface
|
|
101
|
+
* @export
|
|
102
|
+
*/
|
|
103
|
+
export const COBTypesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
104
|
+
const localVarFp = COBTypesApiFp(configuration)
|
|
105
|
+
return {
|
|
106
|
+
/**
|
|
107
|
+
* List of key/value pairs
|
|
108
|
+
* @summary List COB Types
|
|
109
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
110
|
+
* @param {*} [options] Override http request option.
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listCOBTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
114
|
+
return localVarFp.listCOBTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* COBTypesApi - interface
|
|
121
|
+
* @export
|
|
122
|
+
* @interface COBTypesApi
|
|
123
|
+
*/
|
|
124
|
+
export interface COBTypesApiInterface {
|
|
125
|
+
/**
|
|
126
|
+
* List of key/value pairs
|
|
127
|
+
* @summary List COB Types
|
|
128
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
* @memberof COBTypesApiInterface
|
|
132
|
+
*/
|
|
133
|
+
listCOBTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
134
|
+
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* COBTypesApi - object-oriented interface
|
|
139
|
+
* @export
|
|
140
|
+
* @class COBTypesApi
|
|
141
|
+
* @extends {BaseAPI}
|
|
142
|
+
*/
|
|
143
|
+
export class COBTypesApi extends BaseAPI implements COBTypesApiInterface {
|
|
144
|
+
/**
|
|
145
|
+
* List of key/value pairs
|
|
146
|
+
* @summary List COB Types
|
|
147
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
* @memberof COBTypesApi
|
|
151
|
+
*/
|
|
152
|
+
public listCOBTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
153
|
+
return COBTypesApiFp(this.configuration).listCOBTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -0,0 +1,331 @@
|
|
|
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
|
+
// @ts-ignore
|
|
26
|
+
import { StringStaticOptionListVBAResponse } from '../models';
|
|
27
|
+
/**
|
|
28
|
+
* Context4ListsApi - axios parameter creator
|
|
29
|
+
* @export
|
|
30
|
+
*/
|
|
31
|
+
export const Context4ListsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
|
+
return {
|
|
33
|
+
/**
|
|
34
|
+
* List of key/value pairs
|
|
35
|
+
* @summary List Context4 Fee Options
|
|
36
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
37
|
+
* @param {*} [options] Override http request option.
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
listContext4FeeOptions: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
42
|
+
assertParamExists('listContext4FeeOptions', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
43
|
+
const localVarPath = `/context4-fee-options`;
|
|
44
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
45
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46
|
+
let baseOptions;
|
|
47
|
+
if (configuration) {
|
|
48
|
+
baseOptions = configuration.baseOptions;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
52
|
+
const localVarHeaderParameter = {} as any;
|
|
53
|
+
const localVarQueryParameter = {} as any;
|
|
54
|
+
|
|
55
|
+
// authentication apiKeyAuth required
|
|
56
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
57
|
+
|
|
58
|
+
// authentication bearerAuth required
|
|
59
|
+
// http bearer authentication required
|
|
60
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
61
|
+
|
|
62
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
63
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
69
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
71
|
+
|
|
72
|
+
return {
|
|
73
|
+
url: toPathString(localVarUrlObj),
|
|
74
|
+
options: localVarRequestOptions,
|
|
75
|
+
};
|
|
76
|
+
},
|
|
77
|
+
/**
|
|
78
|
+
* List of key/value pairs
|
|
79
|
+
* @summary List Context4 Payor Types
|
|
80
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
81
|
+
* @param {*} [options] Override http request option.
|
|
82
|
+
* @throws {RequiredError}
|
|
83
|
+
*/
|
|
84
|
+
listContext4PayorTypes: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
86
|
+
assertParamExists('listContext4PayorTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
87
|
+
const localVarPath = `/context4-payor-types`;
|
|
88
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
89
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
90
|
+
let baseOptions;
|
|
91
|
+
if (configuration) {
|
|
92
|
+
baseOptions = configuration.baseOptions;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
96
|
+
const localVarHeaderParameter = {} as any;
|
|
97
|
+
const localVarQueryParameter = {} as any;
|
|
98
|
+
|
|
99
|
+
// authentication apiKeyAuth required
|
|
100
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
101
|
+
|
|
102
|
+
// authentication bearerAuth required
|
|
103
|
+
// http bearer authentication required
|
|
104
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
105
|
+
|
|
106
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
107
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
113
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
114
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
115
|
+
|
|
116
|
+
return {
|
|
117
|
+
url: toPathString(localVarUrlObj),
|
|
118
|
+
options: localVarRequestOptions,
|
|
119
|
+
};
|
|
120
|
+
},
|
|
121
|
+
/**
|
|
122
|
+
* List of key/value pairs
|
|
123
|
+
* @summary List Context4 UCR Percentages
|
|
124
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
125
|
+
* @param {*} [options] Override http request option.
|
|
126
|
+
* @throws {RequiredError}
|
|
127
|
+
*/
|
|
128
|
+
listContext4UCRPercentages: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
129
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
130
|
+
assertParamExists('listContext4UCRPercentages', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
131
|
+
const localVarPath = `/context4-ucr-percentages`;
|
|
132
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
133
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
134
|
+
let baseOptions;
|
|
135
|
+
if (configuration) {
|
|
136
|
+
baseOptions = configuration.baseOptions;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
140
|
+
const localVarHeaderParameter = {} as any;
|
|
141
|
+
const localVarQueryParameter = {} as any;
|
|
142
|
+
|
|
143
|
+
// authentication apiKeyAuth required
|
|
144
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
145
|
+
|
|
146
|
+
// authentication bearerAuth required
|
|
147
|
+
// http bearer authentication required
|
|
148
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
149
|
+
|
|
150
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
151
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
157
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
158
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
159
|
+
|
|
160
|
+
return {
|
|
161
|
+
url: toPathString(localVarUrlObj),
|
|
162
|
+
options: localVarRequestOptions,
|
|
163
|
+
};
|
|
164
|
+
},
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Context4ListsApi - functional programming interface
|
|
170
|
+
* @export
|
|
171
|
+
*/
|
|
172
|
+
export const Context4ListsApiFp = function(configuration?: Configuration) {
|
|
173
|
+
const localVarAxiosParamCreator = Context4ListsApiAxiosParamCreator(configuration)
|
|
174
|
+
return {
|
|
175
|
+
/**
|
|
176
|
+
* List of key/value pairs
|
|
177
|
+
* @summary List Context4 Fee Options
|
|
178
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
179
|
+
* @param {*} [options] Override http request option.
|
|
180
|
+
* @throws {RequiredError}
|
|
181
|
+
*/
|
|
182
|
+
async listContext4FeeOptions(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
183
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listContext4FeeOptions(vbasoftwareDatabase, options);
|
|
184
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
185
|
+
},
|
|
186
|
+
/**
|
|
187
|
+
* List of key/value pairs
|
|
188
|
+
* @summary List Context4 Payor Types
|
|
189
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
190
|
+
* @param {*} [options] Override http request option.
|
|
191
|
+
* @throws {RequiredError}
|
|
192
|
+
*/
|
|
193
|
+
async listContext4PayorTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Int32StaticOptionListVBAResponse>> {
|
|
194
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listContext4PayorTypes(vbasoftwareDatabase, options);
|
|
195
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
196
|
+
},
|
|
197
|
+
/**
|
|
198
|
+
* List of key/value pairs
|
|
199
|
+
* @summary List Context4 UCR Percentages
|
|
200
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
201
|
+
* @param {*} [options] Override http request option.
|
|
202
|
+
* @throws {RequiredError}
|
|
203
|
+
*/
|
|
204
|
+
async listContext4UCRPercentages(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Int32StaticOptionListVBAResponse>> {
|
|
205
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listContext4UCRPercentages(vbasoftwareDatabase, options);
|
|
206
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
207
|
+
},
|
|
208
|
+
}
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Context4ListsApi - factory interface
|
|
213
|
+
* @export
|
|
214
|
+
*/
|
|
215
|
+
export const Context4ListsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
216
|
+
const localVarFp = Context4ListsApiFp(configuration)
|
|
217
|
+
return {
|
|
218
|
+
/**
|
|
219
|
+
* List of key/value pairs
|
|
220
|
+
* @summary List Context4 Fee Options
|
|
221
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
222
|
+
* @param {*} [options] Override http request option.
|
|
223
|
+
* @throws {RequiredError}
|
|
224
|
+
*/
|
|
225
|
+
listContext4FeeOptions(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
226
|
+
return localVarFp.listContext4FeeOptions(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
227
|
+
},
|
|
228
|
+
/**
|
|
229
|
+
* List of key/value pairs
|
|
230
|
+
* @summary List Context4 Payor Types
|
|
231
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
232
|
+
* @param {*} [options] Override http request option.
|
|
233
|
+
* @throws {RequiredError}
|
|
234
|
+
*/
|
|
235
|
+
listContext4PayorTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<Int32StaticOptionListVBAResponse> {
|
|
236
|
+
return localVarFp.listContext4PayorTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
237
|
+
},
|
|
238
|
+
/**
|
|
239
|
+
* List of key/value pairs
|
|
240
|
+
* @summary List Context4 UCR Percentages
|
|
241
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
242
|
+
* @param {*} [options] Override http request option.
|
|
243
|
+
* @throws {RequiredError}
|
|
244
|
+
*/
|
|
245
|
+
listContext4UCRPercentages(vbasoftwareDatabase: string, options?: any): AxiosPromise<Int32StaticOptionListVBAResponse> {
|
|
246
|
+
return localVarFp.listContext4UCRPercentages(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
247
|
+
},
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* Context4ListsApi - interface
|
|
253
|
+
* @export
|
|
254
|
+
* @interface Context4ListsApi
|
|
255
|
+
*/
|
|
256
|
+
export interface Context4ListsApiInterface {
|
|
257
|
+
/**
|
|
258
|
+
* List of key/value pairs
|
|
259
|
+
* @summary List Context4 Fee Options
|
|
260
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
261
|
+
* @param {*} [options] Override http request option.
|
|
262
|
+
* @throws {RequiredError}
|
|
263
|
+
* @memberof Context4ListsApiInterface
|
|
264
|
+
*/
|
|
265
|
+
listContext4FeeOptions(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* List of key/value pairs
|
|
269
|
+
* @summary List Context4 Payor Types
|
|
270
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
271
|
+
* @param {*} [options] Override http request option.
|
|
272
|
+
* @throws {RequiredError}
|
|
273
|
+
* @memberof Context4ListsApiInterface
|
|
274
|
+
*/
|
|
275
|
+
listContext4PayorTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<Int32StaticOptionListVBAResponse>;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* List of key/value pairs
|
|
279
|
+
* @summary List Context4 UCR Percentages
|
|
280
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
281
|
+
* @param {*} [options] Override http request option.
|
|
282
|
+
* @throws {RequiredError}
|
|
283
|
+
* @memberof Context4ListsApiInterface
|
|
284
|
+
*/
|
|
285
|
+
listContext4UCRPercentages(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<Int32StaticOptionListVBAResponse>;
|
|
286
|
+
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* Context4ListsApi - object-oriented interface
|
|
291
|
+
* @export
|
|
292
|
+
* @class Context4ListsApi
|
|
293
|
+
* @extends {BaseAPI}
|
|
294
|
+
*/
|
|
295
|
+
export class Context4ListsApi extends BaseAPI implements Context4ListsApiInterface {
|
|
296
|
+
/**
|
|
297
|
+
* List of key/value pairs
|
|
298
|
+
* @summary List Context4 Fee Options
|
|
299
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
300
|
+
* @param {*} [options] Override http request option.
|
|
301
|
+
* @throws {RequiredError}
|
|
302
|
+
* @memberof Context4ListsApi
|
|
303
|
+
*/
|
|
304
|
+
public listContext4FeeOptions(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
305
|
+
return Context4ListsApiFp(this.configuration).listContext4FeeOptions(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* List of key/value pairs
|
|
310
|
+
* @summary List Context4 Payor Types
|
|
311
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @throws {RequiredError}
|
|
314
|
+
* @memberof Context4ListsApi
|
|
315
|
+
*/
|
|
316
|
+
public listContext4PayorTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
317
|
+
return Context4ListsApiFp(this.configuration).listContext4PayorTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* List of key/value pairs
|
|
322
|
+
* @summary List Context4 UCR Percentages
|
|
323
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
324
|
+
* @param {*} [options] Override http request option.
|
|
325
|
+
* @throws {RequiredError}
|
|
326
|
+
* @memberof Context4ListsApi
|
|
327
|
+
*/
|
|
328
|
+
public listContext4UCRPercentages(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
329
|
+
return Context4ListsApiFp(this.configuration).listContext4UCRPercentages(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
330
|
+
}
|
|
331
|
+
}
|