@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250328.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 +46 -2
- package/api/adv-billing-api.ts +96 -0
- package/api/adv-claim-api.ts +438 -0
- 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/premium-invoices-api.ts +96 -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 +40 -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-funding-member-pay-to-amount-list-vbaresponse.ts +51 -0
- package/models/vbaclaim-funding-member-pay-to-amount.ts +54 -0
- package/models/vbaclaim-funding-pay-to-amount-list-vbaresponse.ts +51 -0
- package/models/vbaclaim-funding-pay-to-amount.ts +42 -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/bold-reports-api.ts
DELETED
|
@@ -1,167 +0,0 @@
|
|
|
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 { VBAReportListVBAResponse } from '../models';
|
|
26
|
-
/**
|
|
27
|
-
* BoldReportsApi - axios parameter creator
|
|
28
|
-
* @export
|
|
29
|
-
*/
|
|
30
|
-
export const BoldReportsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
31
|
-
return {
|
|
32
|
-
/**
|
|
33
|
-
* Retrieves a list of all available Bold Reports.
|
|
34
|
-
* @summary List Bold Reports
|
|
35
|
-
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
36
|
-
* @param {string} [category] category
|
|
37
|
-
* @param {*} [options] Override http request option.
|
|
38
|
-
* @throws {RequiredError}
|
|
39
|
-
*/
|
|
40
|
-
listBoldReports: async (vbasoftwareDatabase: string, category?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41
|
-
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
42
|
-
assertParamExists('listBoldReports', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
43
|
-
const localVarPath = `/reports/vbareporting`;
|
|
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 (category !== undefined) {
|
|
63
|
-
localVarQueryParameter['category'] = category;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
if (vbasoftwareDatabase != null) {
|
|
69
|
-
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
70
|
-
}
|
|
71
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
72
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
73
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
74
|
-
|
|
75
|
-
return {
|
|
76
|
-
url: toPathString(localVarUrlObj),
|
|
77
|
-
options: localVarRequestOptions,
|
|
78
|
-
};
|
|
79
|
-
},
|
|
80
|
-
}
|
|
81
|
-
};
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* BoldReportsApi - functional programming interface
|
|
85
|
-
* @export
|
|
86
|
-
*/
|
|
87
|
-
export const BoldReportsApiFp = function(configuration?: Configuration) {
|
|
88
|
-
const localVarAxiosParamCreator = BoldReportsApiAxiosParamCreator(configuration)
|
|
89
|
-
return {
|
|
90
|
-
/**
|
|
91
|
-
* Retrieves a list of all available Bold Reports.
|
|
92
|
-
* @summary List Bold Reports
|
|
93
|
-
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
94
|
-
* @param {string} [category] category
|
|
95
|
-
* @param {*} [options] Override http request option.
|
|
96
|
-
* @throws {RequiredError}
|
|
97
|
-
*/
|
|
98
|
-
async listBoldReports(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportListVBAResponse>> {
|
|
99
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listBoldReports(vbasoftwareDatabase, category, options);
|
|
100
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
101
|
-
const localVarOperationServerBasePath = operationServerMap['BoldReportsApi.listBoldReports']?.[localVarOperationServerIndex]?.url;
|
|
102
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103
|
-
},
|
|
104
|
-
}
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* BoldReportsApi - factory interface
|
|
109
|
-
* @export
|
|
110
|
-
*/
|
|
111
|
-
export const BoldReportsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
112
|
-
const localVarFp = BoldReportsApiFp(configuration)
|
|
113
|
-
return {
|
|
114
|
-
/**
|
|
115
|
-
* Retrieves a list of all available Bold Reports.
|
|
116
|
-
* @summary List Bold Reports
|
|
117
|
-
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
118
|
-
* @param {string} [category] category
|
|
119
|
-
* @param {*} [options] Override http request option.
|
|
120
|
-
* @throws {RequiredError}
|
|
121
|
-
*/
|
|
122
|
-
listBoldReports(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse> {
|
|
123
|
-
return localVarFp.listBoldReports(vbasoftwareDatabase, category, options).then((request) => request(axios, basePath));
|
|
124
|
-
},
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* BoldReportsApi - interface
|
|
130
|
-
* @export
|
|
131
|
-
* @interface BoldReportsApi
|
|
132
|
-
*/
|
|
133
|
-
export interface BoldReportsApiInterface {
|
|
134
|
-
/**
|
|
135
|
-
* Retrieves a list of all available Bold Reports.
|
|
136
|
-
* @summary List Bold Reports
|
|
137
|
-
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
138
|
-
* @param {string} [category] category
|
|
139
|
-
* @param {*} [options] Override http request option.
|
|
140
|
-
* @throws {RequiredError}
|
|
141
|
-
* @memberof BoldReportsApiInterface
|
|
142
|
-
*/
|
|
143
|
-
listBoldReports(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse>;
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* BoldReportsApi - object-oriented interface
|
|
149
|
-
* @export
|
|
150
|
-
* @class BoldReportsApi
|
|
151
|
-
* @extends {BaseAPI}
|
|
152
|
-
*/
|
|
153
|
-
export class BoldReportsApi extends BaseAPI implements BoldReportsApiInterface {
|
|
154
|
-
/**
|
|
155
|
-
* Retrieves a list of all available Bold Reports.
|
|
156
|
-
* @summary List Bold Reports
|
|
157
|
-
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
158
|
-
* @param {string} [category] category
|
|
159
|
-
* @param {*} [options] Override http request option.
|
|
160
|
-
* @throws {RequiredError}
|
|
161
|
-
* @memberof BoldReportsApi
|
|
162
|
-
*/
|
|
163
|
-
public listBoldReports(vbasoftwareDatabase: string, category?: string, options?: RawAxiosRequestConfig) {
|
|
164
|
-
return BoldReportsApiFp(this.configuration).listBoldReports(vbasoftwareDatabase, category, options).then((request) => request(this.axios, this.basePath));
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
|
|
@@ -1,78 +0,0 @@
|
|
|
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 TrackableReport
|
|
21
|
-
*/
|
|
22
|
-
export interface TrackableReport {
|
|
23
|
-
/**
|
|
24
|
-
* Unique identifier for the report definition.
|
|
25
|
-
* @type {number}
|
|
26
|
-
* @memberof TrackableReport
|
|
27
|
-
*/
|
|
28
|
-
'reportDefinition_Key'?: number;
|
|
29
|
-
/**
|
|
30
|
-
* ID of the report, often used as a unique string identifier.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof TrackableReport
|
|
33
|
-
*/
|
|
34
|
-
'report_ID'?: string | null;
|
|
35
|
-
/**
|
|
36
|
-
* Name of the report.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof TrackableReport
|
|
39
|
-
*/
|
|
40
|
-
'report_Name'?: string | null;
|
|
41
|
-
/**
|
|
42
|
-
* Category under which the report falls.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof TrackableReport
|
|
45
|
-
*/
|
|
46
|
-
'report_Category'?: string | null;
|
|
47
|
-
/**
|
|
48
|
-
* Description of the report and its purpose.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof TrackableReport
|
|
51
|
-
*/
|
|
52
|
-
'report_Description'?: string | null;
|
|
53
|
-
/**
|
|
54
|
-
* URL for embedding the report in other applications.
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof TrackableReport
|
|
57
|
-
*/
|
|
58
|
-
'embed_Url'?: string | null;
|
|
59
|
-
/**
|
|
60
|
-
* Subscriber ID if the report uses it
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof TrackableReport
|
|
63
|
-
*/
|
|
64
|
-
'subscriberID'?: string | null;
|
|
65
|
-
/**
|
|
66
|
-
* MemberSeq if the report uses it
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof TrackableReport
|
|
69
|
-
*/
|
|
70
|
-
'memberSeq'?: string | null;
|
|
71
|
-
/**
|
|
72
|
-
* Report Parameters used in the report
|
|
73
|
-
* @type {{ [key: string]: string | null; }}
|
|
74
|
-
* @memberof TrackableReport
|
|
75
|
-
*/
|
|
76
|
-
'reportParameters'?: { [key: string]: string | null; } | null;
|
|
77
|
-
}
|
|
78
|
-
|