@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250404.1 → 1.20250425.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 +42 -2
- package/api/adv-claim-api.ts +246 -52
- package/api/group-state-surcharge-api.ts +733 -0
- package/api/hipaaremittance-codes-api.ts +685 -0
- package/api/member-alternate-payee-api.ts +781 -0
- package/api/member-alternate-payee-plan-api.ts +829 -0
- package/api/report-definitions-api.ts +108 -0
- package/api/state-surcharge-api.ts +685 -0
- package/api/subscribers-api.ts +98 -0
- package/api/vbareporting-api.ts +265 -0
- package/api/vbareports-api.ts +162 -55
- package/api.ts +6 -1
- package/models/all-enrollments-subscriber-result-list-vbaresponse.ts +51 -0
- package/models/all-enrollments-subscriber-result.ts +108 -0
- package/models/checks-detail.ts +6 -0
- package/models/claim-audit.ts +12 -0
- package/models/claim-batch-benefit.ts +36 -0
- package/models/claim-batch-payee.ts +108 -0
- package/models/claim-benefit.ts +36 -0
- package/models/claim-network.ts +36 -0
- package/models/claim-payee.ts +108 -0
- package/models/claim-plan.ts +36 -0
- package/models/claim-relationship.ts +36 -0
- package/models/claim-send-check-to.ts +36 -0
- package/models/company-data.ts +24 -0
- package/models/email-report-dto.ts +0 -6
- package/models/explanation-codes.ts +6 -0
- package/models/generate-prem-invoice.ts +12 -0
- package/models/group-contract-plan.ts +6 -0
- package/models/group-state-surcharge-list-vbaresponse.ts +51 -0
- package/models/group-state-surcharge-vbaresponse.ts +51 -0
- package/models/group-state-surcharge.ts +78 -0
- package/models/hipaaremittance-code-list-vbaresponse.ts +51 -0
- package/models/hipaaremittance-code-vbaresponse.ts +51 -0
- package/models/hipaaremittance-code.ts +60 -0
- package/models/index.ts +36 -1
- package/models/member-alternate-payee-list-vbaresponse.ts +51 -0
- package/models/member-alternate-payee-plan-list-vbaresponse.ts +51 -0
- package/models/member-alternate-payee-plan-vbaresponse.ts +51 -0
- package/models/member-alternate-payee-plan.ts +72 -0
- package/models/member-alternate-payee-vbaresponse.ts +51 -0
- package/models/member-alternate-payee.ts +150 -0
- package/models/plan-benefits.ts +6 -0
- package/models/reins-contract-conditional-specific-detail.ts +36 -0
- package/models/report-tracking-metadata.ts +42 -0
- package/models/smsdto.ts +0 -6
- package/models/state-surcharge-list-vbaresponse.ts +51 -0
- package/models/state-surcharge-vbaresponse.ts +51 -0
- package/models/state-surcharge.ts +96 -0
- package/models/vbaclaim-number-parm.ts +30 -0
- package/models/vbafull-claim-batch-vbaresponse.ts +51 -0
- package/models/vbafull-claim-batch.ts +426 -0
- package/models/vbafull-claim-vbaresponse.ts +51 -0
- package/models/vbafull-claim.ts +441 -0
- package/models/vbareport.ts +14 -2
- package/models/vbareporting-embed-token-vbaresponse.ts +51 -0
- package/models/vbareporting-embed-token.ts +30 -0
- package/models/vbareporting-report-list-vbaresponse.ts +51 -0
- package/models/vbareporting-report-vbaresponse.ts +51 -0
- package/models/vbareporting-report.ts +54 -0
- package/package.json +1 -1
- package/api/bold-reports-api.ts +0 -167
- package/models/trackable-report.ts +0 -78
package/api/subscribers-api.ts
CHANGED
|
@@ -26,6 +26,8 @@ import type { ActiveSubscriberListVBAResponse } from '../models';
|
|
|
26
26
|
// @ts-ignore
|
|
27
27
|
import type { AddEnrollmentRequest } from '../models';
|
|
28
28
|
// @ts-ignore
|
|
29
|
+
import type { AllEnrollmentsSubscriberResultListVBAResponse } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
29
31
|
import type { ChangeSubscriberIDRequest } from '../models';
|
|
30
32
|
// @ts-ignore
|
|
31
33
|
import type { EnrollmentDisenroll } from '../models';
|
|
@@ -354,6 +356,53 @@ export const SubscribersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
354
356
|
|
|
355
357
|
|
|
356
358
|
|
|
359
|
+
if (vbasoftwareDatabase != null) {
|
|
360
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
361
|
+
}
|
|
362
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
363
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
364
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
365
|
+
|
|
366
|
+
return {
|
|
367
|
+
url: toPathString(localVarUrlObj),
|
|
368
|
+
options: localVarRequestOptions,
|
|
369
|
+
};
|
|
370
|
+
},
|
|
371
|
+
/**
|
|
372
|
+
* Return a compiled list of enrollments for all members of a given family including Group, Division, Plan, and Tier information. Takes into account Subenrollment and Memenrollment options.
|
|
373
|
+
* @summary List Enrollment Detail
|
|
374
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
375
|
+
* @param {string} subscriberID Subscriber ID
|
|
376
|
+
* @param {*} [options] Override http request option.
|
|
377
|
+
* @throws {RequiredError}
|
|
378
|
+
*/
|
|
379
|
+
listAllEnrollmentsSubscriber: async (vbasoftwareDatabase: string, subscriberID: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
380
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
381
|
+
assertParamExists('listAllEnrollmentsSubscriber', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
382
|
+
// verify required parameter 'subscriberID' is not null or undefined
|
|
383
|
+
assertParamExists('listAllEnrollmentsSubscriber', 'subscriberID', subscriberID)
|
|
384
|
+
const localVarPath = `/subscribers/{subscriberID}/list-all-enrollments`
|
|
385
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)));
|
|
386
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
387
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
388
|
+
let baseOptions;
|
|
389
|
+
if (configuration) {
|
|
390
|
+
baseOptions = configuration.baseOptions;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
394
|
+
const localVarHeaderParameter = {} as any;
|
|
395
|
+
const localVarQueryParameter = {} as any;
|
|
396
|
+
|
|
397
|
+
// authentication apiKeyAuth required
|
|
398
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
399
|
+
|
|
400
|
+
// authentication bearerAuth required
|
|
401
|
+
// http bearer authentication required
|
|
402
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
357
406
|
if (vbasoftwareDatabase != null) {
|
|
358
407
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
359
408
|
}
|
|
@@ -1126,6 +1175,20 @@ export const SubscribersApiFp = function(configuration?: Configuration) {
|
|
|
1126
1175
|
const localVarOperationServerBasePath = operationServerMap['SubscribersApi.listActiveSubscribers']?.[localVarOperationServerIndex]?.url;
|
|
1127
1176
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1128
1177
|
},
|
|
1178
|
+
/**
|
|
1179
|
+
* Return a compiled list of enrollments for all members of a given family including Group, Division, Plan, and Tier information. Takes into account Subenrollment and Memenrollment options.
|
|
1180
|
+
* @summary List Enrollment Detail
|
|
1181
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1182
|
+
* @param {string} subscriberID Subscriber ID
|
|
1183
|
+
* @param {*} [options] Override http request option.
|
|
1184
|
+
* @throws {RequiredError}
|
|
1185
|
+
*/
|
|
1186
|
+
async listAllEnrollmentsSubscriber(vbasoftwareDatabase: string, subscriberID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllEnrollmentsSubscriberResultListVBAResponse>> {
|
|
1187
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllEnrollmentsSubscriber(vbasoftwareDatabase, subscriberID, options);
|
|
1188
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1189
|
+
const localVarOperationServerBasePath = operationServerMap['SubscribersApi.listAllEnrollmentsSubscriber']?.[localVarOperationServerIndex]?.url;
|
|
1190
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1191
|
+
},
|
|
1129
1192
|
/**
|
|
1130
1193
|
* List of all Cobra Disenroll Reason Types
|
|
1131
1194
|
* @summary List Cobra Disenroll Reason Types
|
|
@@ -1396,6 +1459,17 @@ export const SubscribersApiFactory = function (configuration?: Configuration, ba
|
|
|
1396
1459
|
listActiveSubscribers(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<ActiveSubscriberListVBAResponse> {
|
|
1397
1460
|
return localVarFp.listActiveSubscribers(vbasoftwareDatabase, groupId, divisionId, page, pageSize, sortBy, options).then((request) => request(axios, basePath));
|
|
1398
1461
|
},
|
|
1462
|
+
/**
|
|
1463
|
+
* Return a compiled list of enrollments for all members of a given family including Group, Division, Plan, and Tier information. Takes into account Subenrollment and Memenrollment options.
|
|
1464
|
+
* @summary List Enrollment Detail
|
|
1465
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1466
|
+
* @param {string} subscriberID Subscriber ID
|
|
1467
|
+
* @param {*} [options] Override http request option.
|
|
1468
|
+
* @throws {RequiredError}
|
|
1469
|
+
*/
|
|
1470
|
+
listAllEnrollmentsSubscriber(vbasoftwareDatabase: string, subscriberID: string, options?: RawAxiosRequestConfig): AxiosPromise<AllEnrollmentsSubscriberResultListVBAResponse> {
|
|
1471
|
+
return localVarFp.listAllEnrollmentsSubscriber(vbasoftwareDatabase, subscriberID, options).then((request) => request(axios, basePath));
|
|
1472
|
+
},
|
|
1399
1473
|
/**
|
|
1400
1474
|
* List of all Cobra Disenroll Reason Types
|
|
1401
1475
|
* @summary List Cobra Disenroll Reason Types
|
|
@@ -1626,6 +1700,17 @@ export interface SubscribersApiInterface {
|
|
|
1626
1700
|
*/
|
|
1627
1701
|
listActiveSubscribers(vbasoftwareDatabase: string, groupId: string, divisionId?: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<ActiveSubscriberListVBAResponse>;
|
|
1628
1702
|
|
|
1703
|
+
/**
|
|
1704
|
+
* Return a compiled list of enrollments for all members of a given family including Group, Division, Plan, and Tier information. Takes into account Subenrollment and Memenrollment options.
|
|
1705
|
+
* @summary List Enrollment Detail
|
|
1706
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1707
|
+
* @param {string} subscriberID Subscriber ID
|
|
1708
|
+
* @param {*} [options] Override http request option.
|
|
1709
|
+
* @throws {RequiredError}
|
|
1710
|
+
* @memberof SubscribersApiInterface
|
|
1711
|
+
*/
|
|
1712
|
+
listAllEnrollmentsSubscriber(vbasoftwareDatabase: string, subscriberID: string, options?: RawAxiosRequestConfig): AxiosPromise<AllEnrollmentsSubscriberResultListVBAResponse>;
|
|
1713
|
+
|
|
1629
1714
|
/**
|
|
1630
1715
|
* List of all Cobra Disenroll Reason Types
|
|
1631
1716
|
* @summary List Cobra Disenroll Reason Types
|
|
@@ -1868,6 +1953,19 @@ export class SubscribersApi extends BaseAPI implements SubscribersApiInterface {
|
|
|
1868
1953
|
return SubscribersApiFp(this.configuration).listActiveSubscribers(vbasoftwareDatabase, groupId, divisionId, page, pageSize, sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
1869
1954
|
}
|
|
1870
1955
|
|
|
1956
|
+
/**
|
|
1957
|
+
* Return a compiled list of enrollments for all members of a given family including Group, Division, Plan, and Tier information. Takes into account Subenrollment and Memenrollment options.
|
|
1958
|
+
* @summary List Enrollment Detail
|
|
1959
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1960
|
+
* @param {string} subscriberID Subscriber ID
|
|
1961
|
+
* @param {*} [options] Override http request option.
|
|
1962
|
+
* @throws {RequiredError}
|
|
1963
|
+
* @memberof SubscribersApi
|
|
1964
|
+
*/
|
|
1965
|
+
public listAllEnrollmentsSubscriber(vbasoftwareDatabase: string, subscriberID: string, options?: RawAxiosRequestConfig) {
|
|
1966
|
+
return SubscribersApiFp(this.configuration).listAllEnrollmentsSubscriber(vbasoftwareDatabase, subscriberID, options).then((request) => request(this.axios, this.basePath));
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1871
1969
|
/**
|
|
1872
1970
|
* List of all Cobra Disenroll Reason Types
|
|
1873
1971
|
* @summary List Cobra Disenroll Reason Types
|
|
@@ -0,0 +1,265 @@
|
|
|
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 type { Configuration } from '../configuration';
|
|
17
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
18
|
+
import globalAxios from 'axios';
|
|
19
|
+
// Some imports not used depending on template conditions
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import type { VBAReportingReportListVBAResponse } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { VBAReportingReportVBAResponse } from '../models';
|
|
28
|
+
/**
|
|
29
|
+
* VBAReportingApi - axios parameter creator
|
|
30
|
+
* @export
|
|
31
|
+
*/
|
|
32
|
+
export const VBAReportingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
33
|
+
return {
|
|
34
|
+
/**
|
|
35
|
+
* Retrieves a specific VBAReporting report by its ID.
|
|
36
|
+
* @summary Retrieve VBAReporting Report
|
|
37
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
38
|
+
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
get: async (vbasoftwareDatabase: string, vbaReportingId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
43
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
44
|
+
assertParamExists('get', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
45
|
+
// verify required parameter 'vbaReportingId' is not null or undefined
|
|
46
|
+
assertParamExists('get', 'vbaReportingId', vbaReportingId)
|
|
47
|
+
const localVarPath = `/vbareporting/reports/{vbaReportingId}`
|
|
48
|
+
.replace(`{${"vbaReportingId"}}`, encodeURIComponent(String(vbaReportingId)));
|
|
49
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
50
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51
|
+
let baseOptions;
|
|
52
|
+
if (configuration) {
|
|
53
|
+
baseOptions = configuration.baseOptions;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
57
|
+
const localVarHeaderParameter = {} as any;
|
|
58
|
+
const localVarQueryParameter = {} as any;
|
|
59
|
+
|
|
60
|
+
// authentication apiKeyAuth required
|
|
61
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
62
|
+
|
|
63
|
+
// authentication bearerAuth required
|
|
64
|
+
// http bearer authentication required
|
|
65
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
if (vbasoftwareDatabase != null) {
|
|
70
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
71
|
+
}
|
|
72
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
73
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
74
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
75
|
+
|
|
76
|
+
return {
|
|
77
|
+
url: toPathString(localVarUrlObj),
|
|
78
|
+
options: localVarRequestOptions,
|
|
79
|
+
};
|
|
80
|
+
},
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves a list of all available VBAReporting reports.
|
|
83
|
+
* @summary List VBAReporting Reports
|
|
84
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
85
|
+
* @param {string} [category] category
|
|
86
|
+
* @param {*} [options] Override http request option.
|
|
87
|
+
* @throws {RequiredError}
|
|
88
|
+
*/
|
|
89
|
+
list: async (vbasoftwareDatabase: string, category?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
90
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
91
|
+
assertParamExists('list', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
92
|
+
const localVarPath = `/vbareporting/reports`;
|
|
93
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
94
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
95
|
+
let baseOptions;
|
|
96
|
+
if (configuration) {
|
|
97
|
+
baseOptions = configuration.baseOptions;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
101
|
+
const localVarHeaderParameter = {} as any;
|
|
102
|
+
const localVarQueryParameter = {} as any;
|
|
103
|
+
|
|
104
|
+
// authentication apiKeyAuth required
|
|
105
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
106
|
+
|
|
107
|
+
// authentication bearerAuth required
|
|
108
|
+
// http bearer authentication required
|
|
109
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
110
|
+
|
|
111
|
+
if (category !== undefined) {
|
|
112
|
+
localVarQueryParameter['category'] = category;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
if (vbasoftwareDatabase != null) {
|
|
118
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
119
|
+
}
|
|
120
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
121
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
123
|
+
|
|
124
|
+
return {
|
|
125
|
+
url: toPathString(localVarUrlObj),
|
|
126
|
+
options: localVarRequestOptions,
|
|
127
|
+
};
|
|
128
|
+
},
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* VBAReportingApi - functional programming interface
|
|
134
|
+
* @export
|
|
135
|
+
*/
|
|
136
|
+
export const VBAReportingApiFp = function(configuration?: Configuration) {
|
|
137
|
+
const localVarAxiosParamCreator = VBAReportingApiAxiosParamCreator(configuration)
|
|
138
|
+
return {
|
|
139
|
+
/**
|
|
140
|
+
* Retrieves a specific VBAReporting report by its ID.
|
|
141
|
+
* @summary Retrieve VBAReporting Report
|
|
142
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
143
|
+
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
144
|
+
* @param {*} [options] Override http request option.
|
|
145
|
+
* @throws {RequiredError}
|
|
146
|
+
*/
|
|
147
|
+
async get(vbasoftwareDatabase: string, vbaReportingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportingReportVBAResponse>> {
|
|
148
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.get(vbasoftwareDatabase, vbaReportingId, options);
|
|
149
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
150
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportingApi.get']?.[localVarOperationServerIndex]?.url;
|
|
151
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
152
|
+
},
|
|
153
|
+
/**
|
|
154
|
+
* Retrieves a list of all available VBAReporting reports.
|
|
155
|
+
* @summary List VBAReporting Reports
|
|
156
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
157
|
+
* @param {string} [category] category
|
|
158
|
+
* @param {*} [options] Override http request option.
|
|
159
|
+
* @throws {RequiredError}
|
|
160
|
+
*/
|
|
161
|
+
async list(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportingReportListVBAResponse>> {
|
|
162
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.list(vbasoftwareDatabase, category, options);
|
|
163
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
164
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportingApi.list']?.[localVarOperationServerIndex]?.url;
|
|
165
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
166
|
+
},
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* VBAReportingApi - factory interface
|
|
172
|
+
* @export
|
|
173
|
+
*/
|
|
174
|
+
export const VBAReportingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
175
|
+
const localVarFp = VBAReportingApiFp(configuration)
|
|
176
|
+
return {
|
|
177
|
+
/**
|
|
178
|
+
* Retrieves a specific VBAReporting report by its ID.
|
|
179
|
+
* @summary Retrieve VBAReporting Report
|
|
180
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
181
|
+
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
182
|
+
* @param {*} [options] Override http request option.
|
|
183
|
+
* @throws {RequiredError}
|
|
184
|
+
*/
|
|
185
|
+
get(vbasoftwareDatabase: string, vbaReportingId: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportingReportVBAResponse> {
|
|
186
|
+
return localVarFp.get(vbasoftwareDatabase, vbaReportingId, options).then((request) => request(axios, basePath));
|
|
187
|
+
},
|
|
188
|
+
/**
|
|
189
|
+
* Retrieves a list of all available VBAReporting reports.
|
|
190
|
+
* @summary List VBAReporting Reports
|
|
191
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
192
|
+
* @param {string} [category] category
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
list(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportingReportListVBAResponse> {
|
|
197
|
+
return localVarFp.list(vbasoftwareDatabase, category, options).then((request) => request(axios, basePath));
|
|
198
|
+
},
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* VBAReportingApi - interface
|
|
204
|
+
* @export
|
|
205
|
+
* @interface VBAReportingApi
|
|
206
|
+
*/
|
|
207
|
+
export interface VBAReportingApiInterface {
|
|
208
|
+
/**
|
|
209
|
+
* Retrieves a specific VBAReporting report by its ID.
|
|
210
|
+
* @summary Retrieve VBAReporting Report
|
|
211
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
212
|
+
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
213
|
+
* @param {*} [options] Override http request option.
|
|
214
|
+
* @throws {RequiredError}
|
|
215
|
+
* @memberof VBAReportingApiInterface
|
|
216
|
+
*/
|
|
217
|
+
get(vbasoftwareDatabase: string, vbaReportingId: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportingReportVBAResponse>;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Retrieves a list of all available VBAReporting reports.
|
|
221
|
+
* @summary List VBAReporting Reports
|
|
222
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
223
|
+
* @param {string} [category] category
|
|
224
|
+
* @param {*} [options] Override http request option.
|
|
225
|
+
* @throws {RequiredError}
|
|
226
|
+
* @memberof VBAReportingApiInterface
|
|
227
|
+
*/
|
|
228
|
+
list(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportingReportListVBAResponse>;
|
|
229
|
+
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* VBAReportingApi - object-oriented interface
|
|
234
|
+
* @export
|
|
235
|
+
* @class VBAReportingApi
|
|
236
|
+
* @extends {BaseAPI}
|
|
237
|
+
*/
|
|
238
|
+
export class VBAReportingApi extends BaseAPI implements VBAReportingApiInterface {
|
|
239
|
+
/**
|
|
240
|
+
* Retrieves a specific VBAReporting report by its ID.
|
|
241
|
+
* @summary Retrieve VBAReporting Report
|
|
242
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
243
|
+
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
244
|
+
* @param {*} [options] Override http request option.
|
|
245
|
+
* @throws {RequiredError}
|
|
246
|
+
* @memberof VBAReportingApi
|
|
247
|
+
*/
|
|
248
|
+
public get(vbasoftwareDatabase: string, vbaReportingId: string, options?: RawAxiosRequestConfig) {
|
|
249
|
+
return VBAReportingApiFp(this.configuration).get(vbasoftwareDatabase, vbaReportingId, options).then((request) => request(this.axios, this.basePath));
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Retrieves a list of all available VBAReporting reports.
|
|
254
|
+
* @summary List VBAReporting Reports
|
|
255
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
256
|
+
* @param {string} [category] category
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
* @memberof VBAReportingApi
|
|
260
|
+
*/
|
|
261
|
+
public list(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig) {
|
|
262
|
+
return VBAReportingApiFp(this.configuration).list(vbasoftwareDatabase, category, options).then((request) => request(this.axios, this.basePath));
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|