@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231121.1 → 1.20231129.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 +3 -0
- package/api/group-disenroll-affected-claims-api.ts +194 -0
- package/api.ts +1 -0
- package/models/index.ts +2 -0
- package/models/vbagroup-disenroll-affected-claims-list-vbaresponse.ts +45 -0
- package/models/vbagroup-disenroll-affected-claims.ts +114 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -392,6 +392,7 @@ api/group-contract-plans-api.ts
|
|
|
392
392
|
api/group-contract-tiers-api.ts
|
|
393
393
|
api/group-contracts-api.ts
|
|
394
394
|
api/group-coverage-calculations-api.ts
|
|
395
|
+
api/group-disenroll-affected-claims-api.ts
|
|
395
396
|
api/group-division-captives-api.ts
|
|
396
397
|
api/group-division-cobras-api.ts
|
|
397
398
|
api/group-division-deduction-types-api.ts
|
|
@@ -3084,6 +3085,8 @@ models/vbagroup-contract-enrollment-summary-list-vbaresponse.ts
|
|
|
3084
3085
|
models/vbagroup-contract-enrollment-summary.ts
|
|
3085
3086
|
models/vbagroup-contract-list-vbaresponse.ts
|
|
3086
3087
|
models/vbagroup-contract.ts
|
|
3088
|
+
models/vbagroup-disenroll-affected-claims-list-vbaresponse.ts
|
|
3089
|
+
models/vbagroup-disenroll-affected-claims.ts
|
|
3087
3090
|
models/vbagroup-enrollment-summary-vbaresponse.ts
|
|
3088
3091
|
models/vbagroup-enrollment-summary.ts
|
|
3089
3092
|
models/vbagroup-idcard-selection-vbaresponse.ts
|
|
@@ -0,0 +1,194 @@
|
|
|
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 { VBAGroupDisenrollAffectedClaimsListVBAResponse } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* GroupDisenrollAffectedClaimsApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export const GroupDisenrollAffectedClaimsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
|
+
return {
|
|
31
|
+
/**
|
|
32
|
+
* List Affected Claims for Disrolling Group ID
|
|
33
|
+
* @summary Get Affected Claims for Disrolling Group ID
|
|
34
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
35
|
+
* @param {string} groupID Group ID
|
|
36
|
+
* @param {string} disenrollDate Disenroll Date
|
|
37
|
+
* @param {number} [page] Page
|
|
38
|
+
* @param {number} [pageSize] Page Size
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
listGroupDisenrollAffectedClaims: async (vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
43
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
44
|
+
assertParamExists('listGroupDisenrollAffectedClaims', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
45
|
+
// verify required parameter 'groupID' is not null or undefined
|
|
46
|
+
assertParamExists('listGroupDisenrollAffectedClaims', 'groupID', groupID)
|
|
47
|
+
// verify required parameter 'disenrollDate' is not null or undefined
|
|
48
|
+
assertParamExists('listGroupDisenrollAffectedClaims', 'disenrollDate', disenrollDate)
|
|
49
|
+
const localVarPath = `/groups/{groupID}/disenroll-affected-claims`
|
|
50
|
+
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
|
|
51
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53
|
+
let baseOptions;
|
|
54
|
+
if (configuration) {
|
|
55
|
+
baseOptions = configuration.baseOptions;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
59
|
+
const localVarHeaderParameter = {} as any;
|
|
60
|
+
const localVarQueryParameter = {} as any;
|
|
61
|
+
|
|
62
|
+
// authentication apiKeyAuth required
|
|
63
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
64
|
+
|
|
65
|
+
// authentication bearerAuth required
|
|
66
|
+
// http bearer authentication required
|
|
67
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
68
|
+
|
|
69
|
+
if (disenrollDate !== undefined) {
|
|
70
|
+
localVarQueryParameter['disenrollDate'] = (disenrollDate as any instanceof Date) ?
|
|
71
|
+
(disenrollDate as any).toISOString() :
|
|
72
|
+
disenrollDate;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if (page !== undefined) {
|
|
76
|
+
localVarQueryParameter['page'] = page;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (pageSize !== undefined) {
|
|
80
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
84
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
90
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
91
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
92
|
+
|
|
93
|
+
return {
|
|
94
|
+
url: toPathString(localVarUrlObj),
|
|
95
|
+
options: localVarRequestOptions,
|
|
96
|
+
};
|
|
97
|
+
},
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* GroupDisenrollAffectedClaimsApi - functional programming interface
|
|
103
|
+
* @export
|
|
104
|
+
*/
|
|
105
|
+
export const GroupDisenrollAffectedClaimsApiFp = function(configuration?: Configuration) {
|
|
106
|
+
const localVarAxiosParamCreator = GroupDisenrollAffectedClaimsApiAxiosParamCreator(configuration)
|
|
107
|
+
return {
|
|
108
|
+
/**
|
|
109
|
+
* List Affected Claims for Disrolling Group ID
|
|
110
|
+
* @summary Get Affected Claims for Disrolling Group ID
|
|
111
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
112
|
+
* @param {string} groupID Group ID
|
|
113
|
+
* @param {string} disenrollDate Disenroll Date
|
|
114
|
+
* @param {number} [page] Page
|
|
115
|
+
* @param {number} [pageSize] Page Size
|
|
116
|
+
* @param {*} [options] Override http request option.
|
|
117
|
+
* @throws {RequiredError}
|
|
118
|
+
*/
|
|
119
|
+
async listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse>> {
|
|
120
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options);
|
|
121
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
122
|
+
},
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* GroupDisenrollAffectedClaimsApi - factory interface
|
|
128
|
+
* @export
|
|
129
|
+
*/
|
|
130
|
+
export const GroupDisenrollAffectedClaimsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
131
|
+
const localVarFp = GroupDisenrollAffectedClaimsApiFp(configuration)
|
|
132
|
+
return {
|
|
133
|
+
/**
|
|
134
|
+
* List Affected Claims for Disrolling Group ID
|
|
135
|
+
* @summary Get Affected Claims for Disrolling Group ID
|
|
136
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
137
|
+
* @param {string} groupID Group ID
|
|
138
|
+
* @param {string} disenrollDate Disenroll Date
|
|
139
|
+
* @param {number} [page] Page
|
|
140
|
+
* @param {number} [pageSize] Page Size
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: any): AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse> {
|
|
145
|
+
return localVarFp.listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options).then((request) => request(axios, basePath));
|
|
146
|
+
},
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* GroupDisenrollAffectedClaimsApi - interface
|
|
152
|
+
* @export
|
|
153
|
+
* @interface GroupDisenrollAffectedClaimsApi
|
|
154
|
+
*/
|
|
155
|
+
export interface GroupDisenrollAffectedClaimsApiInterface {
|
|
156
|
+
/**
|
|
157
|
+
* List Affected Claims for Disrolling Group ID
|
|
158
|
+
* @summary Get Affected Claims for Disrolling Group ID
|
|
159
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
160
|
+
* @param {string} groupID Group ID
|
|
161
|
+
* @param {string} disenrollDate Disenroll Date
|
|
162
|
+
* @param {number} [page] Page
|
|
163
|
+
* @param {number} [pageSize] Page Size
|
|
164
|
+
* @param {*} [options] Override http request option.
|
|
165
|
+
* @throws {RequiredError}
|
|
166
|
+
* @memberof GroupDisenrollAffectedClaimsApiInterface
|
|
167
|
+
*/
|
|
168
|
+
listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse>;
|
|
169
|
+
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* GroupDisenrollAffectedClaimsApi - object-oriented interface
|
|
174
|
+
* @export
|
|
175
|
+
* @class GroupDisenrollAffectedClaimsApi
|
|
176
|
+
* @extends {BaseAPI}
|
|
177
|
+
*/
|
|
178
|
+
export class GroupDisenrollAffectedClaimsApi extends BaseAPI implements GroupDisenrollAffectedClaimsApiInterface {
|
|
179
|
+
/**
|
|
180
|
+
* List Affected Claims for Disrolling Group ID
|
|
181
|
+
* @summary Get Affected Claims for Disrolling Group ID
|
|
182
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
183
|
+
* @param {string} groupID Group ID
|
|
184
|
+
* @param {string} disenrollDate Disenroll Date
|
|
185
|
+
* @param {number} [page] Page
|
|
186
|
+
* @param {number} [pageSize] Page Size
|
|
187
|
+
* @param {*} [options] Override http request option.
|
|
188
|
+
* @throws {RequiredError}
|
|
189
|
+
* @memberof GroupDisenrollAffectedClaimsApi
|
|
190
|
+
*/
|
|
191
|
+
public listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
192
|
+
return GroupDisenrollAffectedClaimsApiFp(this.configuration).listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
193
|
+
}
|
|
194
|
+
}
|
package/api.ts
CHANGED
|
@@ -404,6 +404,7 @@ export * from './api/group-contract-plans-api';
|
|
|
404
404
|
export * from './api/group-contract-tiers-api';
|
|
405
405
|
export * from './api/group-contracts-api';
|
|
406
406
|
export * from './api/group-coverage-calculations-api';
|
|
407
|
+
export * from './api/group-disenroll-affected-claims-api';
|
|
407
408
|
export * from './api/group-division-captives-api';
|
|
408
409
|
export * from './api/group-division-cobras-api';
|
|
409
410
|
export * from './api/group-division-deduction-types-api';
|
package/models/index.ts
CHANGED
|
@@ -2268,6 +2268,8 @@ export * from './vbagroup-contract';
|
|
|
2268
2268
|
export * from './vbagroup-contract-enrollment-summary';
|
|
2269
2269
|
export * from './vbagroup-contract-enrollment-summary-list-vbaresponse';
|
|
2270
2270
|
export * from './vbagroup-contract-list-vbaresponse';
|
|
2271
|
+
export * from './vbagroup-disenroll-affected-claims';
|
|
2272
|
+
export * from './vbagroup-disenroll-affected-claims-list-vbaresponse';
|
|
2271
2273
|
export * from './vbagroup-enrollment-summary';
|
|
2272
2274
|
export * from './vbagroup-enrollment-summary-vbaresponse';
|
|
2273
2275
|
export * from './vbagroup-idcard-selection';
|
|
@@ -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 { Debug } from './debug';
|
|
17
|
+
import { VBAGroupDisenrollAffectedClaims } from './vbagroup-disenroll-affected-claims';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAGroupDisenrollAffectedClaimsListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAGroupDisenrollAffectedClaimsListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VBAGroupDisenrollAffectedClaims>}
|
|
29
|
+
* @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<VBAGroupDisenrollAffectedClaims> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
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 VBAGroupDisenrollAffectedClaims
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAGroupDisenrollAffectedClaims {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
27
|
+
*/
|
|
28
|
+
'group_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
33
|
+
*/
|
|
34
|
+
'division_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
39
|
+
*/
|
|
40
|
+
'subscriber_ID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
45
|
+
*/
|
|
46
|
+
'member_Seq'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
51
|
+
*/
|
|
52
|
+
'claim_Number'?: number;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
57
|
+
*/
|
|
58
|
+
'diagnostic_Code_Type'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
63
|
+
*/
|
|
64
|
+
'diagnostic_Code1'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
69
|
+
*/
|
|
70
|
+
'diagnostic_Code2'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
75
|
+
*/
|
|
76
|
+
'provider_ID'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
81
|
+
*/
|
|
82
|
+
'service_Date'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
87
|
+
*/
|
|
88
|
+
'service_Thru'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
93
|
+
*/
|
|
94
|
+
'check_Batch'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
99
|
+
*/
|
|
100
|
+
'check_Number'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
105
|
+
*/
|
|
106
|
+
'claimPaid'?: number;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof VBAGroupDisenrollAffectedClaims
|
|
111
|
+
*/
|
|
112
|
+
'claimPaidAmount'?: number | null;
|
|
113
|
+
}
|
|
114
|
+
|