@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231012.1 → 1.20231012.3
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
CHANGED
|
@@ -3084,6 +3084,8 @@ models/vbagroup-contract-list-vbaresponse.ts
|
|
|
3084
3084
|
models/vbagroup-contract.ts
|
|
3085
3085
|
models/vbagroup-enrollment-summary-vbaresponse.ts
|
|
3086
3086
|
models/vbagroup-enrollment-summary.ts
|
|
3087
|
+
models/vbagroup-idcard-selection-vbaresponse.ts
|
|
3088
|
+
models/vbagroup-idcard-selection.ts
|
|
3087
3089
|
models/vbainterface-idcode-list-vbaresponse.ts
|
|
3088
3090
|
models/vbainterface-idcode-vbaresponse.ts
|
|
3089
3091
|
models/vbainterface-idcode.ts
|
package/api/groups-api.ts
CHANGED
|
@@ -35,6 +35,8 @@ import { MultiCodeResponseListVBAResponse } from '../models';
|
|
|
35
35
|
// @ts-ignore
|
|
36
36
|
import { VBAGroupEnrollmentSummaryVBAResponse } from '../models';
|
|
37
37
|
// @ts-ignore
|
|
38
|
+
import { VBAGroupIDCardSelectionVBAResponse } from '../models';
|
|
39
|
+
// @ts-ignore
|
|
38
40
|
import { VBAProcessVBAResponse } from '../models';
|
|
39
41
|
/**
|
|
40
42
|
* GroupsApi - axios parameter creator
|
|
@@ -179,6 +181,94 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
179
181
|
|
|
180
182
|
|
|
181
183
|
|
|
184
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
185
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
186
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
187
|
+
|
|
188
|
+
return {
|
|
189
|
+
url: toPathString(localVarUrlObj),
|
|
190
|
+
options: localVarRequestOptions,
|
|
191
|
+
};
|
|
192
|
+
},
|
|
193
|
+
/**
|
|
194
|
+
* Gets Group ID Card Selections
|
|
195
|
+
* @summary Get Group ID Card Selections
|
|
196
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
197
|
+
* @param {string} asOfDate As of Date
|
|
198
|
+
* @param {string} [groupID] Group ID
|
|
199
|
+
* @param {string} [divisionID] Division ID
|
|
200
|
+
* @param {string} [planID] Plan ID
|
|
201
|
+
* @param {string} [relationship] Relationship
|
|
202
|
+
* @param {string} [flexVendor] Flex Vendor
|
|
203
|
+
* @param {number} [page] Page Index
|
|
204
|
+
* @param {number} [pageSize] Page Size
|
|
205
|
+
* @param {*} [options] Override http request option.
|
|
206
|
+
* @throws {RequiredError}
|
|
207
|
+
*/
|
|
208
|
+
getGroupIDCardSelections: async (vbasoftwareDatabase: string, asOfDate: string, groupID?: string, divisionID?: string, planID?: string, relationship?: string, flexVendor?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
209
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
210
|
+
assertParamExists('getGroupIDCardSelections', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
211
|
+
// verify required parameter 'asOfDate' is not null or undefined
|
|
212
|
+
assertParamExists('getGroupIDCardSelections', 'asOfDate', asOfDate)
|
|
213
|
+
const localVarPath = `/groups/id-card-selection`;
|
|
214
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
215
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
216
|
+
let baseOptions;
|
|
217
|
+
if (configuration) {
|
|
218
|
+
baseOptions = configuration.baseOptions;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
222
|
+
const localVarHeaderParameter = {} as any;
|
|
223
|
+
const localVarQueryParameter = {} as any;
|
|
224
|
+
|
|
225
|
+
// authentication apiKeyAuth required
|
|
226
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
227
|
+
|
|
228
|
+
// authentication bearerAuth required
|
|
229
|
+
// http bearer authentication required
|
|
230
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
231
|
+
|
|
232
|
+
if (groupID !== undefined) {
|
|
233
|
+
localVarQueryParameter['groupID'] = groupID;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
if (divisionID !== undefined) {
|
|
237
|
+
localVarQueryParameter['divisionID'] = divisionID;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
if (planID !== undefined) {
|
|
241
|
+
localVarQueryParameter['planID'] = planID;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
if (relationship !== undefined) {
|
|
245
|
+
localVarQueryParameter['relationship'] = relationship;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
if (asOfDate !== undefined) {
|
|
249
|
+
localVarQueryParameter['asOfDate'] = (asOfDate as any instanceof Date) ?
|
|
250
|
+
(asOfDate as any).toISOString() :
|
|
251
|
+
asOfDate;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
if (flexVendor !== undefined) {
|
|
255
|
+
localVarQueryParameter['flexVendor'] = flexVendor;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
if (page !== undefined) {
|
|
259
|
+
localVarQueryParameter['page'] = page;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
if (pageSize !== undefined) {
|
|
263
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
267
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
182
272
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
183
273
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
184
274
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -548,6 +638,25 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
548
638
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupEnrollmentSummary(vbasoftwareDatabase, groupID, options);
|
|
549
639
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
550
640
|
},
|
|
641
|
+
/**
|
|
642
|
+
* Gets Group ID Card Selections
|
|
643
|
+
* @summary Get Group ID Card Selections
|
|
644
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
645
|
+
* @param {string} asOfDate As of Date
|
|
646
|
+
* @param {string} [groupID] Group ID
|
|
647
|
+
* @param {string} [divisionID] Division ID
|
|
648
|
+
* @param {string} [planID] Plan ID
|
|
649
|
+
* @param {string} [relationship] Relationship
|
|
650
|
+
* @param {string} [flexVendor] Flex Vendor
|
|
651
|
+
* @param {number} [page] Page Index
|
|
652
|
+
* @param {number} [pageSize] Page Size
|
|
653
|
+
* @param {*} [options] Override http request option.
|
|
654
|
+
* @throws {RequiredError}
|
|
655
|
+
*/
|
|
656
|
+
async getGroupIDCardSelections(vbasoftwareDatabase: string, asOfDate: string, groupID?: string, divisionID?: string, planID?: string, relationship?: string, flexVendor?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAGroupIDCardSelectionVBAResponse>> {
|
|
657
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupIDCardSelections(vbasoftwareDatabase, asOfDate, groupID, divisionID, planID, relationship, flexVendor, page, pageSize, options);
|
|
658
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
659
|
+
},
|
|
551
660
|
/**
|
|
552
661
|
* Gets Groups
|
|
553
662
|
* @summary Get Groups
|
|
@@ -667,6 +776,24 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
667
776
|
getGroupEnrollmentSummary(vbasoftwareDatabase: string, groupID: string, options?: any): AxiosPromise<VBAGroupEnrollmentSummaryVBAResponse> {
|
|
668
777
|
return localVarFp.getGroupEnrollmentSummary(vbasoftwareDatabase, groupID, options).then((request) => request(axios, basePath));
|
|
669
778
|
},
|
|
779
|
+
/**
|
|
780
|
+
* Gets Group ID Card Selections
|
|
781
|
+
* @summary Get Group ID Card Selections
|
|
782
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
783
|
+
* @param {string} asOfDate As of Date
|
|
784
|
+
* @param {string} [groupID] Group ID
|
|
785
|
+
* @param {string} [divisionID] Division ID
|
|
786
|
+
* @param {string} [planID] Plan ID
|
|
787
|
+
* @param {string} [relationship] Relationship
|
|
788
|
+
* @param {string} [flexVendor] Flex Vendor
|
|
789
|
+
* @param {number} [page] Page Index
|
|
790
|
+
* @param {number} [pageSize] Page Size
|
|
791
|
+
* @param {*} [options] Override http request option.
|
|
792
|
+
* @throws {RequiredError}
|
|
793
|
+
*/
|
|
794
|
+
getGroupIDCardSelections(vbasoftwareDatabase: string, asOfDate: string, groupID?: string, divisionID?: string, planID?: string, relationship?: string, flexVendor?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<VBAGroupIDCardSelectionVBAResponse> {
|
|
795
|
+
return localVarFp.getGroupIDCardSelections(vbasoftwareDatabase, asOfDate, groupID, divisionID, planID, relationship, flexVendor, page, pageSize, options).then((request) => request(axios, basePath));
|
|
796
|
+
},
|
|
670
797
|
/**
|
|
671
798
|
* Gets Groups
|
|
672
799
|
* @summary Get Groups
|
|
@@ -779,6 +906,24 @@ export interface GroupsApiInterface {
|
|
|
779
906
|
*/
|
|
780
907
|
getGroupEnrollmentSummary(vbasoftwareDatabase: string, groupID: string, options?: AxiosRequestConfig): AxiosPromise<VBAGroupEnrollmentSummaryVBAResponse>;
|
|
781
908
|
|
|
909
|
+
/**
|
|
910
|
+
* Gets Group ID Card Selections
|
|
911
|
+
* @summary Get Group ID Card Selections
|
|
912
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
913
|
+
* @param {string} asOfDate As of Date
|
|
914
|
+
* @param {string} [groupID] Group ID
|
|
915
|
+
* @param {string} [divisionID] Division ID
|
|
916
|
+
* @param {string} [planID] Plan ID
|
|
917
|
+
* @param {string} [relationship] Relationship
|
|
918
|
+
* @param {string} [flexVendor] Flex Vendor
|
|
919
|
+
* @param {number} [page] Page Index
|
|
920
|
+
* @param {number} [pageSize] Page Size
|
|
921
|
+
* @param {*} [options] Override http request option.
|
|
922
|
+
* @throws {RequiredError}
|
|
923
|
+
* @memberof GroupsApiInterface
|
|
924
|
+
*/
|
|
925
|
+
getGroupIDCardSelections(vbasoftwareDatabase: string, asOfDate: string, groupID?: string, divisionID?: string, planID?: string, relationship?: string, flexVendor?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<VBAGroupIDCardSelectionVBAResponse>;
|
|
926
|
+
|
|
782
927
|
/**
|
|
783
928
|
* Gets Groups
|
|
784
929
|
* @summary Get Groups
|
|
@@ -897,6 +1042,26 @@ export class GroupsApi extends BaseAPI implements GroupsApiInterface {
|
|
|
897
1042
|
return GroupsApiFp(this.configuration).getGroupEnrollmentSummary(vbasoftwareDatabase, groupID, options).then((request) => request(this.axios, this.basePath));
|
|
898
1043
|
}
|
|
899
1044
|
|
|
1045
|
+
/**
|
|
1046
|
+
* Gets Group ID Card Selections
|
|
1047
|
+
* @summary Get Group ID Card Selections
|
|
1048
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1049
|
+
* @param {string} asOfDate As of Date
|
|
1050
|
+
* @param {string} [groupID] Group ID
|
|
1051
|
+
* @param {string} [divisionID] Division ID
|
|
1052
|
+
* @param {string} [planID] Plan ID
|
|
1053
|
+
* @param {string} [relationship] Relationship
|
|
1054
|
+
* @param {string} [flexVendor] Flex Vendor
|
|
1055
|
+
* @param {number} [page] Page Index
|
|
1056
|
+
* @param {number} [pageSize] Page Size
|
|
1057
|
+
* @param {*} [options] Override http request option.
|
|
1058
|
+
* @throws {RequiredError}
|
|
1059
|
+
* @memberof GroupsApi
|
|
1060
|
+
*/
|
|
1061
|
+
public getGroupIDCardSelections(vbasoftwareDatabase: string, asOfDate: string, groupID?: string, divisionID?: string, planID?: string, relationship?: string, flexVendor?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
1062
|
+
return GroupsApiFp(this.configuration).getGroupIDCardSelections(vbasoftwareDatabase, asOfDate, groupID, divisionID, planID, relationship, flexVendor, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
1063
|
+
}
|
|
1064
|
+
|
|
900
1065
|
/**
|
|
901
1066
|
* Gets Groups
|
|
902
1067
|
* @summary Get Groups
|
package/models/index.ts
CHANGED
|
@@ -2268,6 +2268,8 @@ export * from './vbagroup-contract-enrollment-summary-list-vbaresponse';
|
|
|
2268
2268
|
export * from './vbagroup-contract-list-vbaresponse';
|
|
2269
2269
|
export * from './vbagroup-enrollment-summary';
|
|
2270
2270
|
export * from './vbagroup-enrollment-summary-vbaresponse';
|
|
2271
|
+
export * from './vbagroup-idcard-selection';
|
|
2272
|
+
export * from './vbagroup-idcard-selection-vbaresponse';
|
|
2271
2273
|
export * from './vbainterface';
|
|
2272
2274
|
export * from './vbainterface-idcode';
|
|
2273
2275
|
export * from './vbainterface-idcode-list-vbaresponse';
|
|
@@ -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 { VBAGroupIDCardSelection } from './vbagroup-idcard-selection';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAGroupIDCardSelectionVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAGroupIDCardSelectionVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {VBAGroupIDCardSelection}
|
|
29
|
+
* @memberof VBAGroupIDCardSelectionVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: VBAGroupIDCardSelection;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAGroupIDCardSelectionVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAGroupIDCardSelectionVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 VBAGroupIDCardSelection
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAGroupIDCardSelection {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBAGroupIDCardSelection
|
|
27
|
+
*/
|
|
28
|
+
'group_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAGroupIDCardSelection
|
|
33
|
+
*/
|
|
34
|
+
'division_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBAGroupIDCardSelection
|
|
39
|
+
*/
|
|
40
|
+
'subscriber_ID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBAGroupIDCardSelection
|
|
45
|
+
*/
|
|
46
|
+
'member_Seq'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof VBAGroupIDCardSelection
|
|
51
|
+
*/
|
|
52
|
+
'first_Name'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof VBAGroupIDCardSelection
|
|
57
|
+
*/
|
|
58
|
+
'last_Name'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof VBAGroupIDCardSelection
|
|
63
|
+
*/
|
|
64
|
+
'relationship'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof VBAGroupIDCardSelection
|
|
69
|
+
*/
|
|
70
|
+
'selected'?: number;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof VBAGroupIDCardSelection
|
|
75
|
+
*/
|
|
76
|
+
'duplicates'?: number;
|
|
77
|
+
}
|
|
78
|
+
|