@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250711.1 → 1.20250811.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 +22 -2
- package/api/accounting-api.ts +100 -0
- package/api/adv-accounting-api.ts +100 -0
- package/api/adv-billing-api.ts +120 -0
- package/api/adv-claim-api.ts +226 -17
- package/api/claim-queue-details-api.ts +106 -0
- package/api/premium-distributions-api.ts +120 -0
- package/api/state-surcharge-basis-api.ts +158 -0
- package/api/vbareporting-api.ts +15 -15
- package/api/vbareports-api.ts +5 -5
- package/api/vbassist-api.ts +134 -26
- package/api/visium-code-ex-code-api.ts +685 -0
- package/api.ts +2 -0
- package/docs/AccountingApi.md +57 -0
- package/docs/AdvAccountingApi.md +57 -0
- package/docs/AdvBillingApi.md +65 -0
- package/docs/AdvClaimApi.md +121 -5
- package/docs/ChatFeedbackRequest.md +27 -0
- package/docs/ChatRequest.md +25 -0
- package/docs/ClaimQueueDetailsApi.md +59 -0
- package/docs/ClaimQueueProcessTrack.md +4 -0
- package/docs/CompanyData.md +8 -0
- package/docs/CostContainVisiumExCode.md +32 -0
- package/docs/CostContainVisiumExCodeListVBAResponse.md +24 -0
- package/docs/CostContainVisiumExCodeVBAResponse.md +24 -0
- package/docs/Credit.md +22 -0
- package/docs/{ChatMessage.md → Debit.md} +7 -5
- package/docs/PlanBenefitCopy.md +2 -2
- package/docs/PremInvoiceAdjustment.md +24 -24
- package/docs/PremiumDistributionsApi.md +65 -0
- package/docs/ReportSeriesStep.md +4 -0
- package/docs/SelectedField.md +4 -0
- package/docs/StateSurcharge.md +4 -0
- package/docs/StateSurchargeBasisApi.md +60 -0
- package/docs/VBADisabilityAdvisorVBAResponse.md +24 -0
- package/docs/VBAFullClaim.md +4 -0
- package/docs/VBAFullClaimBatch.md +4 -0
- package/docs/VBAReportingApi.md +5 -3
- package/docs/VBAReportsApi.md +2 -1
- package/docs/VBAUpdateRecon.md +24 -0
- package/docs/VBAssistApi.md +67 -7
- package/docs/VisiumCodeExCodeApi.md +354 -0
- package/models/chat-feedback-request.ts +48 -0
- package/models/chat-request.ts +42 -0
- package/models/claim-queue-process-track.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/cost-contain-visium-ex-code-list-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code.ts +66 -0
- package/models/credit.ts +36 -0
- package/models/{chat-message.ts → debit.ts} +12 -6
- package/models/index.ts +9 -1
- package/models/plan-benefit-copy.ts +1 -1
- package/models/prem-invoice-adjustment.ts +24 -24
- package/models/report-series-step.ts +12 -0
- package/models/selected-field.ts +12 -0
- package/models/state-surcharge.ts +12 -0
- package/models/vbadisability-advisor-vbaresponse.ts +51 -0
- package/models/vbafull-claim-batch.ts +12 -0
- package/models/vbafull-claim.ts +12 -0
- package/models/vbaupdate-recon.ts +48 -0
- package/package.json +1 -1
|
@@ -231,6 +231,65 @@ export const PremiumDistributionsApiAxiosParamCreator = function (configuration?
|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
|
|
234
|
+
if (vbasoftwareDatabase != null) {
|
|
235
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
236
|
+
}
|
|
237
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
238
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
239
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
240
|
+
|
|
241
|
+
return {
|
|
242
|
+
url: toPathString(localVarUrlObj),
|
|
243
|
+
options: localVarRequestOptions,
|
|
244
|
+
};
|
|
245
|
+
},
|
|
246
|
+
/**
|
|
247
|
+
* Given an existing Check Batch, generate a Distribution check in that Check Batch.
|
|
248
|
+
* @summary Create Premium Distributions Check Batch
|
|
249
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
250
|
+
* @param {number} checkBatch Check Batch
|
|
251
|
+
* @param {string} payeeId Payee ID
|
|
252
|
+
* @param {string} payorId Payor ID
|
|
253
|
+
* @param {number} accountKey Account Key
|
|
254
|
+
* @param {*} [options] Override http request option.
|
|
255
|
+
* @throws {RequiredError}
|
|
256
|
+
*/
|
|
257
|
+
generatePremDistributionCheckBatch: async (vbasoftwareDatabase: string, checkBatch: number, payeeId: string, payorId: string, accountKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
258
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
259
|
+
assertParamExists('generatePremDistributionCheckBatch', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
260
|
+
// verify required parameter 'checkBatch' is not null or undefined
|
|
261
|
+
assertParamExists('generatePremDistributionCheckBatch', 'checkBatch', checkBatch)
|
|
262
|
+
// verify required parameter 'payeeId' is not null or undefined
|
|
263
|
+
assertParamExists('generatePremDistributionCheckBatch', 'payeeId', payeeId)
|
|
264
|
+
// verify required parameter 'payorId' is not null or undefined
|
|
265
|
+
assertParamExists('generatePremDistributionCheckBatch', 'payorId', payorId)
|
|
266
|
+
// verify required parameter 'accountKey' is not null or undefined
|
|
267
|
+
assertParamExists('generatePremDistributionCheckBatch', 'accountKey', accountKey)
|
|
268
|
+
const localVarPath = `/premium-distributions-generate-check-batch/{checkBatch}/{payeeId}/{payorId}/{accountKey}`
|
|
269
|
+
.replace(`{${"checkBatch"}}`, encodeURIComponent(String(checkBatch)))
|
|
270
|
+
.replace(`{${"payeeId"}}`, encodeURIComponent(String(payeeId)))
|
|
271
|
+
.replace(`{${"payorId"}}`, encodeURIComponent(String(payorId)))
|
|
272
|
+
.replace(`{${"accountKey"}}`, encodeURIComponent(String(accountKey)));
|
|
273
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
274
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
275
|
+
let baseOptions;
|
|
276
|
+
if (configuration) {
|
|
277
|
+
baseOptions = configuration.baseOptions;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
281
|
+
const localVarHeaderParameter = {} as any;
|
|
282
|
+
const localVarQueryParameter = {} as any;
|
|
283
|
+
|
|
284
|
+
// authentication apiKeyAuth required
|
|
285
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
286
|
+
|
|
287
|
+
// authentication bearerAuth required
|
|
288
|
+
// http bearer authentication required
|
|
289
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
234
293
|
if (vbasoftwareDatabase != null) {
|
|
235
294
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
236
295
|
}
|
|
@@ -567,6 +626,23 @@ export const PremiumDistributionsApiFp = function(configuration?: Configuration)
|
|
|
567
626
|
const localVarOperationServerBasePath = operationServerMap['PremiumDistributionsApi.generatePremDistributionCheck']?.[localVarOperationServerIndex]?.url;
|
|
568
627
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
569
628
|
},
|
|
629
|
+
/**
|
|
630
|
+
* Given an existing Check Batch, generate a Distribution check in that Check Batch.
|
|
631
|
+
* @summary Create Premium Distributions Check Batch
|
|
632
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
633
|
+
* @param {number} checkBatch Check Batch
|
|
634
|
+
* @param {string} payeeId Payee ID
|
|
635
|
+
* @param {string} payorId Payor ID
|
|
636
|
+
* @param {number} accountKey Account Key
|
|
637
|
+
* @param {*} [options] Override http request option.
|
|
638
|
+
* @throws {RequiredError}
|
|
639
|
+
*/
|
|
640
|
+
async generatePremDistributionCheckBatch(vbasoftwareDatabase: string, checkBatch: number, payeeId: string, payorId: string, accountKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
641
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.generatePremDistributionCheckBatch(vbasoftwareDatabase, checkBatch, payeeId, payorId, accountKey, options);
|
|
642
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
643
|
+
const localVarOperationServerBasePath = operationServerMap['PremiumDistributionsApi.generatePremDistributionCheckBatch']?.[localVarOperationServerIndex]?.url;
|
|
644
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
645
|
+
},
|
|
570
646
|
/**
|
|
571
647
|
* Gets PremDistribution
|
|
572
648
|
* @summary Get PremDistribution
|
|
@@ -698,6 +774,20 @@ export const PremiumDistributionsApiFactory = function (configuration?: Configur
|
|
|
698
774
|
generatePremDistributionCheck(vbasoftwareDatabase: string, payeeId: string, payorId: string, accountKey: number, checkNumber: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
699
775
|
return localVarFp.generatePremDistributionCheck(vbasoftwareDatabase, payeeId, payorId, accountKey, checkNumber, options).then((request) => request(axios, basePath));
|
|
700
776
|
},
|
|
777
|
+
/**
|
|
778
|
+
* Given an existing Check Batch, generate a Distribution check in that Check Batch.
|
|
779
|
+
* @summary Create Premium Distributions Check Batch
|
|
780
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
781
|
+
* @param {number} checkBatch Check Batch
|
|
782
|
+
* @param {string} payeeId Payee ID
|
|
783
|
+
* @param {string} payorId Payor ID
|
|
784
|
+
* @param {number} accountKey Account Key
|
|
785
|
+
* @param {*} [options] Override http request option.
|
|
786
|
+
* @throws {RequiredError}
|
|
787
|
+
*/
|
|
788
|
+
generatePremDistributionCheckBatch(vbasoftwareDatabase: string, checkBatch: number, payeeId: string, payorId: string, accountKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
789
|
+
return localVarFp.generatePremDistributionCheckBatch(vbasoftwareDatabase, checkBatch, payeeId, payorId, accountKey, options).then((request) => request(axios, basePath));
|
|
790
|
+
},
|
|
701
791
|
/**
|
|
702
792
|
* Gets PremDistribution
|
|
703
793
|
* @summary Get PremDistribution
|
|
@@ -813,6 +903,20 @@ export interface PremiumDistributionsApiInterface {
|
|
|
813
903
|
*/
|
|
814
904
|
generatePremDistributionCheck(vbasoftwareDatabase: string, payeeId: string, payorId: string, accountKey: number, checkNumber: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
815
905
|
|
|
906
|
+
/**
|
|
907
|
+
* Given an existing Check Batch, generate a Distribution check in that Check Batch.
|
|
908
|
+
* @summary Create Premium Distributions Check Batch
|
|
909
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
910
|
+
* @param {number} checkBatch Check Batch
|
|
911
|
+
* @param {string} payeeId Payee ID
|
|
912
|
+
* @param {string} payorId Payor ID
|
|
913
|
+
* @param {number} accountKey Account Key
|
|
914
|
+
* @param {*} [options] Override http request option.
|
|
915
|
+
* @throws {RequiredError}
|
|
916
|
+
* @memberof PremiumDistributionsApiInterface
|
|
917
|
+
*/
|
|
918
|
+
generatePremDistributionCheckBatch(vbasoftwareDatabase: string, checkBatch: number, payeeId: string, payorId: string, accountKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
919
|
+
|
|
816
920
|
/**
|
|
817
921
|
* Gets PremDistribution
|
|
818
922
|
* @summary Get PremDistribution
|
|
@@ -936,6 +1040,22 @@ export class PremiumDistributionsApi extends BaseAPI implements PremiumDistribut
|
|
|
936
1040
|
return PremiumDistributionsApiFp(this.configuration).generatePremDistributionCheck(vbasoftwareDatabase, payeeId, payorId, accountKey, checkNumber, options).then((request) => request(this.axios, this.basePath));
|
|
937
1041
|
}
|
|
938
1042
|
|
|
1043
|
+
/**
|
|
1044
|
+
* Given an existing Check Batch, generate a Distribution check in that Check Batch.
|
|
1045
|
+
* @summary Create Premium Distributions Check Batch
|
|
1046
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1047
|
+
* @param {number} checkBatch Check Batch
|
|
1048
|
+
* @param {string} payeeId Payee ID
|
|
1049
|
+
* @param {string} payorId Payor ID
|
|
1050
|
+
* @param {number} accountKey Account Key
|
|
1051
|
+
* @param {*} [options] Override http request option.
|
|
1052
|
+
* @throws {RequiredError}
|
|
1053
|
+
* @memberof PremiumDistributionsApi
|
|
1054
|
+
*/
|
|
1055
|
+
public generatePremDistributionCheckBatch(vbasoftwareDatabase: string, checkBatch: number, payeeId: string, payorId: string, accountKey: number, options?: RawAxiosRequestConfig) {
|
|
1056
|
+
return PremiumDistributionsApiFp(this.configuration).generatePremDistributionCheckBatch(vbasoftwareDatabase, checkBatch, payeeId, payorId, accountKey, options).then((request) => request(this.axios, this.basePath));
|
|
1057
|
+
}
|
|
1058
|
+
|
|
939
1059
|
/**
|
|
940
1060
|
* Gets PremDistribution
|
|
941
1061
|
* @summary Get PremDistribution
|
|
@@ -0,0 +1,158 @@
|
|
|
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 { StringStaticOptionListVBAResponse } from '../models';
|
|
26
|
+
/**
|
|
27
|
+
* StateSurchargeBasisApi - axios parameter creator
|
|
28
|
+
* @export
|
|
29
|
+
*/
|
|
30
|
+
export const StateSurchargeBasisApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
31
|
+
return {
|
|
32
|
+
/**
|
|
33
|
+
* List State Surcharge Basis
|
|
34
|
+
* @summary List State Surcharge Basis
|
|
35
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
36
|
+
* @param {*} [options] Override http request option.
|
|
37
|
+
* @throws {RequiredError}
|
|
38
|
+
*/
|
|
39
|
+
listStateSurchargeBasis: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
40
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
41
|
+
assertParamExists('listStateSurchargeBasis', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
42
|
+
const localVarPath = `/state-surcharge-basis`;
|
|
43
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
44
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
45
|
+
let baseOptions;
|
|
46
|
+
if (configuration) {
|
|
47
|
+
baseOptions = configuration.baseOptions;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
51
|
+
const localVarHeaderParameter = {} as any;
|
|
52
|
+
const localVarQueryParameter = {} as any;
|
|
53
|
+
|
|
54
|
+
// authentication apiKeyAuth required
|
|
55
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
56
|
+
|
|
57
|
+
// authentication bearerAuth required
|
|
58
|
+
// http bearer authentication required
|
|
59
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
if (vbasoftwareDatabase != null) {
|
|
64
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
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
|
+
* StateSurchargeBasisApi - functional programming interface
|
|
80
|
+
* @export
|
|
81
|
+
*/
|
|
82
|
+
export const StateSurchargeBasisApiFp = function(configuration?: Configuration) {
|
|
83
|
+
const localVarAxiosParamCreator = StateSurchargeBasisApiAxiosParamCreator(configuration)
|
|
84
|
+
return {
|
|
85
|
+
/**
|
|
86
|
+
* List State Surcharge Basis
|
|
87
|
+
* @summary List State Surcharge Basis
|
|
88
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
async listStateSurchargeBasis(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
93
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listStateSurchargeBasis(vbasoftwareDatabase, options);
|
|
94
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
95
|
+
const localVarOperationServerBasePath = operationServerMap['StateSurchargeBasisApi.listStateSurchargeBasis']?.[localVarOperationServerIndex]?.url;
|
|
96
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
97
|
+
},
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* StateSurchargeBasisApi - factory interface
|
|
103
|
+
* @export
|
|
104
|
+
*/
|
|
105
|
+
export const StateSurchargeBasisApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
106
|
+
const localVarFp = StateSurchargeBasisApiFp(configuration)
|
|
107
|
+
return {
|
|
108
|
+
/**
|
|
109
|
+
* List State Surcharge Basis
|
|
110
|
+
* @summary List State Surcharge Basis
|
|
111
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
listStateSurchargeBasis(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
116
|
+
return localVarFp.listStateSurchargeBasis(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
117
|
+
},
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* StateSurchargeBasisApi - interface
|
|
123
|
+
* @export
|
|
124
|
+
* @interface StateSurchargeBasisApi
|
|
125
|
+
*/
|
|
126
|
+
export interface StateSurchargeBasisApiInterface {
|
|
127
|
+
/**
|
|
128
|
+
* List State Surcharge Basis
|
|
129
|
+
* @summary List State Surcharge Basis
|
|
130
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
* @memberof StateSurchargeBasisApiInterface
|
|
134
|
+
*/
|
|
135
|
+
listStateSurchargeBasis(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
136
|
+
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* StateSurchargeBasisApi - object-oriented interface
|
|
141
|
+
* @export
|
|
142
|
+
* @class StateSurchargeBasisApi
|
|
143
|
+
* @extends {BaseAPI}
|
|
144
|
+
*/
|
|
145
|
+
export class StateSurchargeBasisApi extends BaseAPI implements StateSurchargeBasisApiInterface {
|
|
146
|
+
/**
|
|
147
|
+
* List State Surcharge Basis
|
|
148
|
+
* @summary List State Surcharge Basis
|
|
149
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
150
|
+
* @param {*} [options] Override http request option.
|
|
151
|
+
* @throws {RequiredError}
|
|
152
|
+
* @memberof StateSurchargeBasisApi
|
|
153
|
+
*/
|
|
154
|
+
public listStateSurchargeBasis(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
155
|
+
return StateSurchargeBasisApiFp(this.configuration).listStateSurchargeBasis(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
package/api/vbareporting-api.ts
CHANGED
|
@@ -36,7 +36,7 @@ import type { VBAReportingReportVBAResponse } from '../models';
|
|
|
36
36
|
export const VBAReportingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
37
37
|
return {
|
|
38
38
|
/**
|
|
39
|
-
* Downloads a specific VBAReporting report by its ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
39
|
+
* Downloads a specific VBAReporting report by its VBAReporting ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
40
40
|
* @summary Download VBAReporting Report
|
|
41
41
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
42
42
|
* @param {VBADownloadReportRequest} vBADownloadReportRequest
|
|
@@ -85,7 +85,7 @@ export const VBAReportingApiAxiosParamCreator = function (configuration?: Config
|
|
|
85
85
|
};
|
|
86
86
|
},
|
|
87
87
|
/**
|
|
88
|
-
* Retrieves a specific VBAReporting report by its ID.
|
|
88
|
+
* Retrieves a specific VBAReporting report by its VBAReporting ID.
|
|
89
89
|
* @summary Retrieve VBAReporting Report
|
|
90
90
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
91
91
|
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
@@ -132,7 +132,7 @@ export const VBAReportingApiAxiosParamCreator = function (configuration?: Config
|
|
|
132
132
|
};
|
|
133
133
|
},
|
|
134
134
|
/**
|
|
135
|
-
* Retrieves a list of all available VBAReporting reports.
|
|
135
|
+
* Retrieves a list of all available VBAReporting reports by optional category.
|
|
136
136
|
* @summary List VBAReporting Reports
|
|
137
137
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
138
138
|
* @param {string} [category] category
|
|
@@ -190,7 +190,7 @@ export const VBAReportingApiFp = function(configuration?: Configuration) {
|
|
|
190
190
|
const localVarAxiosParamCreator = VBAReportingApiAxiosParamCreator(configuration)
|
|
191
191
|
return {
|
|
192
192
|
/**
|
|
193
|
-
* Downloads a specific VBAReporting report by its ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
193
|
+
* Downloads a specific VBAReporting report by its VBAReporting ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
194
194
|
* @summary Download VBAReporting Report
|
|
195
195
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
196
196
|
* @param {VBADownloadReportRequest} vBADownloadReportRequest
|
|
@@ -204,7 +204,7 @@ export const VBAReportingApiFp = function(configuration?: Configuration) {
|
|
|
204
204
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
205
205
|
},
|
|
206
206
|
/**
|
|
207
|
-
* Retrieves a specific VBAReporting report by its ID.
|
|
207
|
+
* Retrieves a specific VBAReporting report by its VBAReporting ID.
|
|
208
208
|
* @summary Retrieve VBAReporting Report
|
|
209
209
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
210
210
|
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
@@ -218,7 +218,7 @@ export const VBAReportingApiFp = function(configuration?: Configuration) {
|
|
|
218
218
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
219
219
|
},
|
|
220
220
|
/**
|
|
221
|
-
* Retrieves a list of all available VBAReporting reports.
|
|
221
|
+
* Retrieves a list of all available VBAReporting reports by optional category.
|
|
222
222
|
* @summary List VBAReporting Reports
|
|
223
223
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
224
224
|
* @param {string} [category] category
|
|
@@ -242,7 +242,7 @@ export const VBAReportingApiFactory = function (configuration?: Configuration, b
|
|
|
242
242
|
const localVarFp = VBAReportingApiFp(configuration)
|
|
243
243
|
return {
|
|
244
244
|
/**
|
|
245
|
-
* Downloads a specific VBAReporting report by its ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
245
|
+
* Downloads a specific VBAReporting report by its VBAReporting ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
246
246
|
* @summary Download VBAReporting Report
|
|
247
247
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
248
248
|
* @param {VBADownloadReportRequest} vBADownloadReportRequest
|
|
@@ -253,7 +253,7 @@ export const VBAReportingApiFactory = function (configuration?: Configuration, b
|
|
|
253
253
|
return localVarFp.downloadVBAReport(vbasoftwareDatabase, vBADownloadReportRequest, options).then((request) => request(axios, basePath));
|
|
254
254
|
},
|
|
255
255
|
/**
|
|
256
|
-
* Retrieves a specific VBAReporting report by its ID.
|
|
256
|
+
* Retrieves a specific VBAReporting report by its VBAReporting ID.
|
|
257
257
|
* @summary Retrieve VBAReporting Report
|
|
258
258
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
259
259
|
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
@@ -264,7 +264,7 @@ export const VBAReportingApiFactory = function (configuration?: Configuration, b
|
|
|
264
264
|
return localVarFp.get(vbasoftwareDatabase, vbaReportingId, options).then((request) => request(axios, basePath));
|
|
265
265
|
},
|
|
266
266
|
/**
|
|
267
|
-
* Retrieves a list of all available VBAReporting reports.
|
|
267
|
+
* Retrieves a list of all available VBAReporting reports by optional category.
|
|
268
268
|
* @summary List VBAReporting Reports
|
|
269
269
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
270
270
|
* @param {string} [category] category
|
|
@@ -284,7 +284,7 @@ export const VBAReportingApiFactory = function (configuration?: Configuration, b
|
|
|
284
284
|
*/
|
|
285
285
|
export interface VBAReportingApiInterface {
|
|
286
286
|
/**
|
|
287
|
-
* Downloads a specific VBAReporting report by its ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
287
|
+
* Downloads a specific VBAReporting report by its VBAReporting ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
288
288
|
* @summary Download VBAReporting Report
|
|
289
289
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
290
290
|
* @param {VBADownloadReportRequest} vBADownloadReportRequest
|
|
@@ -295,7 +295,7 @@ export interface VBAReportingApiInterface {
|
|
|
295
295
|
downloadVBAReport(vbasoftwareDatabase: string, vBADownloadReportRequest: VBADownloadReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<VBADownloadReportResponse>;
|
|
296
296
|
|
|
297
297
|
/**
|
|
298
|
-
* Retrieves a specific VBAReporting report by its ID.
|
|
298
|
+
* Retrieves a specific VBAReporting report by its VBAReporting ID.
|
|
299
299
|
* @summary Retrieve VBAReporting Report
|
|
300
300
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
301
301
|
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
@@ -306,7 +306,7 @@ export interface VBAReportingApiInterface {
|
|
|
306
306
|
get(vbasoftwareDatabase: string, vbaReportingId: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportingReportVBAResponse>;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
* Retrieves a list of all available VBAReporting reports.
|
|
309
|
+
* Retrieves a list of all available VBAReporting reports by optional category.
|
|
310
310
|
* @summary List VBAReporting Reports
|
|
311
311
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
312
312
|
* @param {string} [category] category
|
|
@@ -326,7 +326,7 @@ export interface VBAReportingApiInterface {
|
|
|
326
326
|
*/
|
|
327
327
|
export class VBAReportingApi extends BaseAPI implements VBAReportingApiInterface {
|
|
328
328
|
/**
|
|
329
|
-
* Downloads a specific VBAReporting report by its ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
329
|
+
* Downloads a specific VBAReporting report by its VBAReporting ID in PDF format. The report is generated based on the provided parameters. If parameters are missing or not supplied, the report will attempt to run and return results. The caller should ensure that the parameter names and values match the report\'s requirements.
|
|
330
330
|
* @summary Download VBAReporting Report
|
|
331
331
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
332
332
|
* @param {VBADownloadReportRequest} vBADownloadReportRequest
|
|
@@ -339,7 +339,7 @@ export class VBAReportingApi extends BaseAPI implements VBAReportingApiInterface
|
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
|
-
* Retrieves a specific VBAReporting report by its ID.
|
|
342
|
+
* Retrieves a specific VBAReporting report by its VBAReporting ID.
|
|
343
343
|
* @summary Retrieve VBAReporting Report
|
|
344
344
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
345
345
|
* @param {string} vbaReportingId Unique VBAReporting report ID.
|
|
@@ -352,7 +352,7 @@ export class VBAReportingApi extends BaseAPI implements VBAReportingApiInterface
|
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
* Retrieves a list of all available VBAReporting reports.
|
|
355
|
+
* Retrieves a list of all available VBAReporting reports by optional category.
|
|
356
356
|
* @summary List VBAReporting Reports
|
|
357
357
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
358
358
|
* @param {string} [category] category
|
package/api/vbareports-api.ts
CHANGED
|
@@ -78,7 +78,7 @@ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
78
78
|
},
|
|
79
79
|
/**
|
|
80
80
|
* Retrieves a specific VBA Report by its unique definition key.
|
|
81
|
-
* @summary Retrieve VBA Report
|
|
81
|
+
* @summary Retrieve VBA Report associated with a Report Definition
|
|
82
82
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
83
83
|
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
84
84
|
* @param {*} [options] Override http request option.
|
|
@@ -286,7 +286,7 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
286
286
|
},
|
|
287
287
|
/**
|
|
288
288
|
* Retrieves a specific VBA Report by its unique definition key.
|
|
289
|
-
* @summary Retrieve VBA Report
|
|
289
|
+
* @summary Retrieve VBA Report associated with a Report Definition
|
|
290
290
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
291
291
|
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
292
292
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
364
364
|
},
|
|
365
365
|
/**
|
|
366
366
|
* Retrieves a specific VBA Report by its unique definition key.
|
|
367
|
-
* @summary Retrieve VBA Report
|
|
367
|
+
* @summary Retrieve VBA Report associated with a Report Definition
|
|
368
368
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
369
369
|
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -429,7 +429,7 @@ export interface VBAReportsApiInterface {
|
|
|
429
429
|
|
|
430
430
|
/**
|
|
431
431
|
* Retrieves a specific VBA Report by its unique definition key.
|
|
432
|
-
* @summary Retrieve VBA Report
|
|
432
|
+
* @summary Retrieve VBA Report associated with a Report Definition
|
|
433
433
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
434
434
|
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
435
435
|
* @param {*} [options] Override http request option.
|
|
@@ -496,7 +496,7 @@ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
498
|
* Retrieves a specific VBA Report by its unique definition key.
|
|
499
|
-
* @summary Retrieve VBA Report
|
|
499
|
+
* @summary Retrieve VBA Report associated with a Report Definition
|
|
500
500
|
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
501
501
|
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
502
502
|
* @param {*} [options] Override http request option.
|