@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250509.1 → 1.20250620.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 +34 -0
- package/api/adv-billing-api.ts +184 -0
- package/api/adv-care-management-api.ts +166 -0
- package/api/adv-claim-api.ts +204 -6
- package/api/adv-commission-api.ts +96 -0
- package/api/adv-enrollment-api.ts +88 -0
- package/api/adv-vbagateway-api.ts +168 -0
- package/api/care-cases-api.ts +609 -0
- package/api/claim-offset-api.ts +685 -0
- package/api/claim-offset-detail-api.ts +694 -0
- package/api/claims-api.ts +25 -25
- package/api/funding-reconciliations-api.ts +96 -0
- package/api/funding-request-claim-remove-api.ts +773 -0
- package/api/plans-api.ts +26 -8
- package/api/premium-invoices-api.ts +88 -0
- package/api.ts +5 -0
- package/docs/AdvBillingApi.md +109 -0
- package/docs/AdvCareManagementApi.md +63 -0
- package/docs/AdvClaimApi.md +117 -4
- package/docs/AdvCommissionApi.md +56 -0
- package/docs/AdvEnrollmentApi.md +53 -0
- package/docs/AdvVBAGatewayApi.md +64 -0
- package/docs/CareCasesApi.md +347 -0
- package/docs/ClaimOffset.md +30 -0
- package/docs/ClaimOffsetApi.md +354 -0
- package/docs/ClaimOffsetDetail.md +36 -0
- package/docs/ClaimOffsetDetailApi.md +357 -0
- package/docs/ClaimOffsetDetailListVBAResponse.md +24 -0
- package/docs/ClaimOffsetDetailVBAResponse.md +24 -0
- package/docs/ClaimOffsetListVBAResponse.md +24 -0
- package/docs/ClaimOffsetVBAResponse.md +24 -0
- package/docs/ClaimsApi.md +5 -5
- package/docs/CompanyData.md +2 -0
- package/docs/FundingReconciliationsApi.md +56 -0
- package/docs/FundingRequestClaimRemove.md +38 -0
- package/docs/FundingRequestClaimRemoveApi.md +387 -0
- package/docs/FundingRequestClaimRemoveListVBAResponse.md +24 -0
- package/docs/FundingRequestClaimRemoveVBAResponse.md +24 -0
- package/docs/Members.md +4 -0
- package/docs/PlansApi.md +7 -1
- package/docs/PremiumInvoicesApi.md +53 -0
- package/docs/ReportSeriesProcess.md +2 -0
- package/docs/ReportSeriesStep.md +16 -0
- package/docs/VBAClaimBatchCopy.md +60 -0
- package/docs/VBAClaimBatchCopyVBAResponse.md +24 -0
- package/docs/VBAVBAGatewayProcessRequest.md +32 -0
- package/models/claim-offset-detail-list-vbaresponse.ts +51 -0
- package/models/claim-offset-detail-vbaresponse.ts +51 -0
- package/models/claim-offset-detail.ts +78 -0
- package/models/claim-offset-list-vbaresponse.ts +51 -0
- package/models/claim-offset-vbaresponse.ts +51 -0
- package/models/claim-offset.ts +60 -0
- package/models/company-data.ts +6 -0
- package/models/funding-request-claim-remove-list-vbaresponse.ts +51 -0
- package/models/funding-request-claim-remove-vbaresponse.ts +51 -0
- package/models/funding-request-claim-remove.ts +84 -0
- package/models/index.ts +12 -0
- package/models/members.ts +12 -0
- package/models/report-series-process.ts +6 -0
- package/models/report-series-step.ts +48 -0
- package/models/vbaclaim-batch-copy-vbaresponse.ts +51 -0
- package/models/vbaclaim-batch-copy.ts +150 -0
- package/models/vbavbagateway-process-request.ts +66 -0
- package/package.json +1 -1
|
@@ -0,0 +1,773 @@
|
|
|
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 { FundingRequestClaimRemove } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { FundingRequestClaimRemoveListVBAResponse } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
import type { FundingRequestClaimRemoveVBAResponse } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
import type { MultiCodeResponseListVBAResponse } from '../models';
|
|
32
|
+
/**
|
|
33
|
+
* FundingRequestClaimRemoveApi - axios parameter creator
|
|
34
|
+
* @export
|
|
35
|
+
*/
|
|
36
|
+
export const FundingRequestClaimRemoveApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
37
|
+
return {
|
|
38
|
+
/**
|
|
39
|
+
* Creates a new FundingRequestClaimRemove
|
|
40
|
+
* @summary Create FundingRequestClaimRemove
|
|
41
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
42
|
+
* @param {number} requestKey Request Key
|
|
43
|
+
* @param {number} batchNumber Batch Number
|
|
44
|
+
* @param {number} batchClaim Batch Claim
|
|
45
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
46
|
+
* @param {*} [options] Override http request option.
|
|
47
|
+
* @throws {RequiredError}
|
|
48
|
+
*/
|
|
49
|
+
createFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
51
|
+
assertParamExists('createFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
52
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
53
|
+
assertParamExists('createFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
54
|
+
// verify required parameter 'batchNumber' is not null or undefined
|
|
55
|
+
assertParamExists('createFundingRequestClaimRemove', 'batchNumber', batchNumber)
|
|
56
|
+
// verify required parameter 'batchClaim' is not null or undefined
|
|
57
|
+
assertParamExists('createFundingRequestClaimRemove', 'batchClaim', batchClaim)
|
|
58
|
+
// verify required parameter 'fundingRequestClaimRemove' is not null or undefined
|
|
59
|
+
assertParamExists('createFundingRequestClaimRemove', 'fundingRequestClaimRemove', fundingRequestClaimRemove)
|
|
60
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove/{batchNumber}/{batchClaim}`
|
|
61
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)))
|
|
62
|
+
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
63
|
+
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
64
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
65
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
66
|
+
let baseOptions;
|
|
67
|
+
if (configuration) {
|
|
68
|
+
baseOptions = configuration.baseOptions;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
72
|
+
const localVarHeaderParameter = {} as any;
|
|
73
|
+
const localVarQueryParameter = {} as any;
|
|
74
|
+
|
|
75
|
+
// authentication apiKeyAuth required
|
|
76
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
77
|
+
|
|
78
|
+
// authentication bearerAuth required
|
|
79
|
+
// http bearer authentication required
|
|
80
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
85
|
+
|
|
86
|
+
if (vbasoftwareDatabase != null) {
|
|
87
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
88
|
+
}
|
|
89
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
90
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
91
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
92
|
+
localVarRequestOptions.data = serializeDataIfNeeded(fundingRequestClaimRemove, localVarRequestOptions, configuration)
|
|
93
|
+
|
|
94
|
+
return {
|
|
95
|
+
url: toPathString(localVarUrlObj),
|
|
96
|
+
options: localVarRequestOptions,
|
|
97
|
+
};
|
|
98
|
+
},
|
|
99
|
+
/**
|
|
100
|
+
* Deletes an FundingRequestClaimRemove
|
|
101
|
+
* @summary Delete FundingRequestClaimRemove
|
|
102
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
103
|
+
* @param {number} requestKey Request Key
|
|
104
|
+
* @param {number} batchNumber Batch Number
|
|
105
|
+
* @param {number} batchClaim Batch Claim
|
|
106
|
+
* @param {*} [options] Override http request option.
|
|
107
|
+
* @throws {RequiredError}
|
|
108
|
+
*/
|
|
109
|
+
deleteFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
110
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
111
|
+
assertParamExists('deleteFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
112
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
113
|
+
assertParamExists('deleteFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
114
|
+
// verify required parameter 'batchNumber' is not null or undefined
|
|
115
|
+
assertParamExists('deleteFundingRequestClaimRemove', 'batchNumber', batchNumber)
|
|
116
|
+
// verify required parameter 'batchClaim' is not null or undefined
|
|
117
|
+
assertParamExists('deleteFundingRequestClaimRemove', 'batchClaim', batchClaim)
|
|
118
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove/{batchNumber}/{batchClaim}`
|
|
119
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)))
|
|
120
|
+
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
121
|
+
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
122
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
123
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
124
|
+
let baseOptions;
|
|
125
|
+
if (configuration) {
|
|
126
|
+
baseOptions = configuration.baseOptions;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
130
|
+
const localVarHeaderParameter = {} as any;
|
|
131
|
+
const localVarQueryParameter = {} as any;
|
|
132
|
+
|
|
133
|
+
// authentication apiKeyAuth required
|
|
134
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
135
|
+
|
|
136
|
+
// authentication bearerAuth required
|
|
137
|
+
// http bearer authentication required
|
|
138
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
if (vbasoftwareDatabase != null) {
|
|
143
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
144
|
+
}
|
|
145
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
146
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
147
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
148
|
+
|
|
149
|
+
return {
|
|
150
|
+
url: toPathString(localVarUrlObj),
|
|
151
|
+
options: localVarRequestOptions,
|
|
152
|
+
};
|
|
153
|
+
},
|
|
154
|
+
/**
|
|
155
|
+
* Gets FundingRequestClaimRemove
|
|
156
|
+
* @summary Get FundingRequestClaimRemove
|
|
157
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
158
|
+
* @param {number} requestKey Request Key
|
|
159
|
+
* @param {number} batchNumber Batch Number
|
|
160
|
+
* @param {number} batchClaim Batch Claim
|
|
161
|
+
* @param {*} [options] Override http request option.
|
|
162
|
+
* @throws {RequiredError}
|
|
163
|
+
*/
|
|
164
|
+
getFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
165
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
166
|
+
assertParamExists('getFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
167
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
168
|
+
assertParamExists('getFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
169
|
+
// verify required parameter 'batchNumber' is not null or undefined
|
|
170
|
+
assertParamExists('getFundingRequestClaimRemove', 'batchNumber', batchNumber)
|
|
171
|
+
// verify required parameter 'batchClaim' is not null or undefined
|
|
172
|
+
assertParamExists('getFundingRequestClaimRemove', 'batchClaim', batchClaim)
|
|
173
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove/{batchNumber}/{batchClaim}`
|
|
174
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)))
|
|
175
|
+
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
176
|
+
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
177
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
178
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
179
|
+
let baseOptions;
|
|
180
|
+
if (configuration) {
|
|
181
|
+
baseOptions = configuration.baseOptions;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
185
|
+
const localVarHeaderParameter = {} as any;
|
|
186
|
+
const localVarQueryParameter = {} as any;
|
|
187
|
+
|
|
188
|
+
// authentication apiKeyAuth required
|
|
189
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
190
|
+
|
|
191
|
+
// authentication bearerAuth required
|
|
192
|
+
// http bearer authentication required
|
|
193
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
if (vbasoftwareDatabase != null) {
|
|
198
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
199
|
+
}
|
|
200
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
201
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
202
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
203
|
+
|
|
204
|
+
return {
|
|
205
|
+
url: toPathString(localVarUrlObj),
|
|
206
|
+
options: localVarRequestOptions,
|
|
207
|
+
};
|
|
208
|
+
},
|
|
209
|
+
/**
|
|
210
|
+
* Lists all FundingRequestClaimRemove for the given requestKey
|
|
211
|
+
* @summary List FundingRequestClaimRemove
|
|
212
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
213
|
+
* @param {number} requestKey Request Key
|
|
214
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
215
|
+
* @param {number} [page] Page
|
|
216
|
+
* @param {number} [pageSize] Page Size
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
listFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, sortBy?: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
221
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
222
|
+
assertParamExists('listFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
223
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
224
|
+
assertParamExists('listFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
225
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove`
|
|
226
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)));
|
|
227
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
228
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
229
|
+
let baseOptions;
|
|
230
|
+
if (configuration) {
|
|
231
|
+
baseOptions = configuration.baseOptions;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
235
|
+
const localVarHeaderParameter = {} as any;
|
|
236
|
+
const localVarQueryParameter = {} as any;
|
|
237
|
+
|
|
238
|
+
// authentication apiKeyAuth required
|
|
239
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
240
|
+
|
|
241
|
+
// authentication bearerAuth required
|
|
242
|
+
// http bearer authentication required
|
|
243
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
244
|
+
|
|
245
|
+
if (sortBy !== undefined) {
|
|
246
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
if (page !== undefined) {
|
|
250
|
+
localVarQueryParameter['page'] = page;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
if (pageSize !== undefined) {
|
|
254
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
if (vbasoftwareDatabase != null) {
|
|
260
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
261
|
+
}
|
|
262
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
263
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
264
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
265
|
+
|
|
266
|
+
return {
|
|
267
|
+
url: toPathString(localVarUrlObj),
|
|
268
|
+
options: localVarRequestOptions,
|
|
269
|
+
};
|
|
270
|
+
},
|
|
271
|
+
/**
|
|
272
|
+
* Create or Update multiple FundingRequestClaimRemove at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
273
|
+
* @summary Create or Update Batch FundingRequestClaimRemove
|
|
274
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
275
|
+
* @param {number} requestKey Request Key
|
|
276
|
+
* @param {Array<FundingRequestClaimRemove>} fundingRequestClaimRemove
|
|
277
|
+
* @param {*} [options] Override http request option.
|
|
278
|
+
* @throws {RequiredError}
|
|
279
|
+
*/
|
|
280
|
+
updateBatchFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, fundingRequestClaimRemove: Array<FundingRequestClaimRemove>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
281
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
282
|
+
assertParamExists('updateBatchFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
283
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
284
|
+
assertParamExists('updateBatchFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
285
|
+
// verify required parameter 'fundingRequestClaimRemove' is not null or undefined
|
|
286
|
+
assertParamExists('updateBatchFundingRequestClaimRemove', 'fundingRequestClaimRemove', fundingRequestClaimRemove)
|
|
287
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove-batch`
|
|
288
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)));
|
|
289
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
290
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
291
|
+
let baseOptions;
|
|
292
|
+
if (configuration) {
|
|
293
|
+
baseOptions = configuration.baseOptions;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
297
|
+
const localVarHeaderParameter = {} as any;
|
|
298
|
+
const localVarQueryParameter = {} as any;
|
|
299
|
+
|
|
300
|
+
// authentication apiKeyAuth required
|
|
301
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
302
|
+
|
|
303
|
+
// authentication bearerAuth required
|
|
304
|
+
// http bearer authentication required
|
|
305
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
310
|
+
|
|
311
|
+
if (vbasoftwareDatabase != null) {
|
|
312
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
313
|
+
}
|
|
314
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
315
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
316
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
317
|
+
localVarRequestOptions.data = serializeDataIfNeeded(fundingRequestClaimRemove, localVarRequestOptions, configuration)
|
|
318
|
+
|
|
319
|
+
return {
|
|
320
|
+
url: toPathString(localVarUrlObj),
|
|
321
|
+
options: localVarRequestOptions,
|
|
322
|
+
};
|
|
323
|
+
},
|
|
324
|
+
/**
|
|
325
|
+
* Updates a specific FundingRequestClaimRemove.
|
|
326
|
+
* @summary Update FundingRequestClaimRemove
|
|
327
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
328
|
+
* @param {number} requestKey Request Key
|
|
329
|
+
* @param {number} batchNumber Batch Number
|
|
330
|
+
* @param {number} batchClaim Batch Claim
|
|
331
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
332
|
+
* @param {*} [options] Override http request option.
|
|
333
|
+
* @throws {RequiredError}
|
|
334
|
+
*/
|
|
335
|
+
updateFundingRequestClaimRemove: async (vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
336
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
337
|
+
assertParamExists('updateFundingRequestClaimRemove', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
338
|
+
// verify required parameter 'requestKey' is not null or undefined
|
|
339
|
+
assertParamExists('updateFundingRequestClaimRemove', 'requestKey', requestKey)
|
|
340
|
+
// verify required parameter 'batchNumber' is not null or undefined
|
|
341
|
+
assertParamExists('updateFundingRequestClaimRemove', 'batchNumber', batchNumber)
|
|
342
|
+
// verify required parameter 'batchClaim' is not null or undefined
|
|
343
|
+
assertParamExists('updateFundingRequestClaimRemove', 'batchClaim', batchClaim)
|
|
344
|
+
// verify required parameter 'fundingRequestClaimRemove' is not null or undefined
|
|
345
|
+
assertParamExists('updateFundingRequestClaimRemove', 'fundingRequestClaimRemove', fundingRequestClaimRemove)
|
|
346
|
+
const localVarPath = `/funding-requests/{requestKey}/claims-remove/{batchNumber}/{batchClaim}`
|
|
347
|
+
.replace(`{${"requestKey"}}`, encodeURIComponent(String(requestKey)))
|
|
348
|
+
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
349
|
+
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)));
|
|
350
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
351
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
352
|
+
let baseOptions;
|
|
353
|
+
if (configuration) {
|
|
354
|
+
baseOptions = configuration.baseOptions;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
358
|
+
const localVarHeaderParameter = {} as any;
|
|
359
|
+
const localVarQueryParameter = {} as any;
|
|
360
|
+
|
|
361
|
+
// authentication apiKeyAuth required
|
|
362
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
363
|
+
|
|
364
|
+
// authentication bearerAuth required
|
|
365
|
+
// http bearer authentication required
|
|
366
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
371
|
+
|
|
372
|
+
if (vbasoftwareDatabase != null) {
|
|
373
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
374
|
+
}
|
|
375
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
376
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
377
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
378
|
+
localVarRequestOptions.data = serializeDataIfNeeded(fundingRequestClaimRemove, localVarRequestOptions, configuration)
|
|
379
|
+
|
|
380
|
+
return {
|
|
381
|
+
url: toPathString(localVarUrlObj),
|
|
382
|
+
options: localVarRequestOptions,
|
|
383
|
+
};
|
|
384
|
+
},
|
|
385
|
+
}
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* FundingRequestClaimRemoveApi - functional programming interface
|
|
390
|
+
* @export
|
|
391
|
+
*/
|
|
392
|
+
export const FundingRequestClaimRemoveApiFp = function(configuration?: Configuration) {
|
|
393
|
+
const localVarAxiosParamCreator = FundingRequestClaimRemoveApiAxiosParamCreator(configuration)
|
|
394
|
+
return {
|
|
395
|
+
/**
|
|
396
|
+
* Creates a new FundingRequestClaimRemove
|
|
397
|
+
* @summary Create FundingRequestClaimRemove
|
|
398
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
399
|
+
* @param {number} requestKey Request Key
|
|
400
|
+
* @param {number} batchNumber Batch Number
|
|
401
|
+
* @param {number} batchClaim Batch Claim
|
|
402
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
403
|
+
* @param {*} [options] Override http request option.
|
|
404
|
+
* @throws {RequiredError}
|
|
405
|
+
*/
|
|
406
|
+
async createFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingRequestClaimRemoveVBAResponse>> {
|
|
407
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options);
|
|
408
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
409
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.createFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
410
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
411
|
+
},
|
|
412
|
+
/**
|
|
413
|
+
* Deletes an FundingRequestClaimRemove
|
|
414
|
+
* @summary Delete FundingRequestClaimRemove
|
|
415
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
416
|
+
* @param {number} requestKey Request Key
|
|
417
|
+
* @param {number} batchNumber Batch Number
|
|
418
|
+
* @param {number} batchClaim Batch Claim
|
|
419
|
+
* @param {*} [options] Override http request option.
|
|
420
|
+
* @throws {RequiredError}
|
|
421
|
+
*/
|
|
422
|
+
async deleteFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
423
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options);
|
|
424
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
425
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.deleteFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
426
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
427
|
+
},
|
|
428
|
+
/**
|
|
429
|
+
* Gets FundingRequestClaimRemove
|
|
430
|
+
* @summary Get FundingRequestClaimRemove
|
|
431
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
+
* @param {number} requestKey Request Key
|
|
433
|
+
* @param {number} batchNumber Batch Number
|
|
434
|
+
* @param {number} batchClaim Batch Claim
|
|
435
|
+
* @param {*} [options] Override http request option.
|
|
436
|
+
* @throws {RequiredError}
|
|
437
|
+
*/
|
|
438
|
+
async getFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingRequestClaimRemoveVBAResponse>> {
|
|
439
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options);
|
|
440
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
441
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.getFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
442
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
443
|
+
},
|
|
444
|
+
/**
|
|
445
|
+
* Lists all FundingRequestClaimRemove for the given requestKey
|
|
446
|
+
* @summary List FundingRequestClaimRemove
|
|
447
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
448
|
+
* @param {number} requestKey Request Key
|
|
449
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
450
|
+
* @param {number} [page] Page
|
|
451
|
+
* @param {number} [pageSize] Page Size
|
|
452
|
+
* @param {*} [options] Override http request option.
|
|
453
|
+
* @throws {RequiredError}
|
|
454
|
+
*/
|
|
455
|
+
async listFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingRequestClaimRemoveListVBAResponse>> {
|
|
456
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, sortBy, page, pageSize, options);
|
|
457
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
458
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.listFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
459
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
460
|
+
},
|
|
461
|
+
/**
|
|
462
|
+
* Create or Update multiple FundingRequestClaimRemove at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
463
|
+
* @summary Create or Update Batch FundingRequestClaimRemove
|
|
464
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
465
|
+
* @param {number} requestKey Request Key
|
|
466
|
+
* @param {Array<FundingRequestClaimRemove>} fundingRequestClaimRemove
|
|
467
|
+
* @param {*} [options] Override http request option.
|
|
468
|
+
* @throws {RequiredError}
|
|
469
|
+
*/
|
|
470
|
+
async updateBatchFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, fundingRequestClaimRemove: Array<FundingRequestClaimRemove>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
471
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, fundingRequestClaimRemove, options);
|
|
472
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
473
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.updateBatchFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
474
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
475
|
+
},
|
|
476
|
+
/**
|
|
477
|
+
* Updates a specific FundingRequestClaimRemove.
|
|
478
|
+
* @summary Update FundingRequestClaimRemove
|
|
479
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
480
|
+
* @param {number} requestKey Request Key
|
|
481
|
+
* @param {number} batchNumber Batch Number
|
|
482
|
+
* @param {number} batchClaim Batch Claim
|
|
483
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
484
|
+
* @param {*} [options] Override http request option.
|
|
485
|
+
* @throws {RequiredError}
|
|
486
|
+
*/
|
|
487
|
+
async updateFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingRequestClaimRemoveVBAResponse>> {
|
|
488
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options);
|
|
489
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
490
|
+
const localVarOperationServerBasePath = operationServerMap['FundingRequestClaimRemoveApi.updateFundingRequestClaimRemove']?.[localVarOperationServerIndex]?.url;
|
|
491
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
492
|
+
},
|
|
493
|
+
}
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* FundingRequestClaimRemoveApi - factory interface
|
|
498
|
+
* @export
|
|
499
|
+
*/
|
|
500
|
+
export const FundingRequestClaimRemoveApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
501
|
+
const localVarFp = FundingRequestClaimRemoveApiFp(configuration)
|
|
502
|
+
return {
|
|
503
|
+
/**
|
|
504
|
+
* Creates a new FundingRequestClaimRemove
|
|
505
|
+
* @summary Create FundingRequestClaimRemove
|
|
506
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
507
|
+
* @param {number} requestKey Request Key
|
|
508
|
+
* @param {number} batchNumber Batch Number
|
|
509
|
+
* @param {number} batchClaim Batch Claim
|
|
510
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
511
|
+
* @param {*} [options] Override http request option.
|
|
512
|
+
* @throws {RequiredError}
|
|
513
|
+
*/
|
|
514
|
+
createFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse> {
|
|
515
|
+
return localVarFp.createFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options).then((request) => request(axios, basePath));
|
|
516
|
+
},
|
|
517
|
+
/**
|
|
518
|
+
* Deletes an FundingRequestClaimRemove
|
|
519
|
+
* @summary Delete FundingRequestClaimRemove
|
|
520
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
521
|
+
* @param {number} requestKey Request Key
|
|
522
|
+
* @param {number} batchNumber Batch Number
|
|
523
|
+
* @param {number} batchClaim Batch Claim
|
|
524
|
+
* @param {*} [options] Override http request option.
|
|
525
|
+
* @throws {RequiredError}
|
|
526
|
+
*/
|
|
527
|
+
deleteFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
528
|
+
return localVarFp.deleteFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
529
|
+
},
|
|
530
|
+
/**
|
|
531
|
+
* Gets FundingRequestClaimRemove
|
|
532
|
+
* @summary Get FundingRequestClaimRemove
|
|
533
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
534
|
+
* @param {number} requestKey Request Key
|
|
535
|
+
* @param {number} batchNumber Batch Number
|
|
536
|
+
* @param {number} batchClaim Batch Claim
|
|
537
|
+
* @param {*} [options] Override http request option.
|
|
538
|
+
* @throws {RequiredError}
|
|
539
|
+
*/
|
|
540
|
+
getFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse> {
|
|
541
|
+
return localVarFp.getFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
|
|
542
|
+
},
|
|
543
|
+
/**
|
|
544
|
+
* Lists all FundingRequestClaimRemove for the given requestKey
|
|
545
|
+
* @summary List FundingRequestClaimRemove
|
|
546
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
547
|
+
* @param {number} requestKey Request Key
|
|
548
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
549
|
+
* @param {number} [page] Page
|
|
550
|
+
* @param {number} [pageSize] Page Size
|
|
551
|
+
* @param {*} [options] Override http request option.
|
|
552
|
+
* @throws {RequiredError}
|
|
553
|
+
*/
|
|
554
|
+
listFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveListVBAResponse> {
|
|
555
|
+
return localVarFp.listFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
556
|
+
},
|
|
557
|
+
/**
|
|
558
|
+
* Create or Update multiple FundingRequestClaimRemove at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
559
|
+
* @summary Create or Update Batch FundingRequestClaimRemove
|
|
560
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
561
|
+
* @param {number} requestKey Request Key
|
|
562
|
+
* @param {Array<FundingRequestClaimRemove>} fundingRequestClaimRemove
|
|
563
|
+
* @param {*} [options] Override http request option.
|
|
564
|
+
* @throws {RequiredError}
|
|
565
|
+
*/
|
|
566
|
+
updateBatchFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, fundingRequestClaimRemove: Array<FundingRequestClaimRemove>, options?: RawAxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
567
|
+
return localVarFp.updateBatchFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, fundingRequestClaimRemove, options).then((request) => request(axios, basePath));
|
|
568
|
+
},
|
|
569
|
+
/**
|
|
570
|
+
* Updates a specific FundingRequestClaimRemove.
|
|
571
|
+
* @summary Update FundingRequestClaimRemove
|
|
572
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
573
|
+
* @param {number} requestKey Request Key
|
|
574
|
+
* @param {number} batchNumber Batch Number
|
|
575
|
+
* @param {number} batchClaim Batch Claim
|
|
576
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
577
|
+
* @param {*} [options] Override http request option.
|
|
578
|
+
* @throws {RequiredError}
|
|
579
|
+
*/
|
|
580
|
+
updateFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse> {
|
|
581
|
+
return localVarFp.updateFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options).then((request) => request(axios, basePath));
|
|
582
|
+
},
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
|
|
586
|
+
/**
|
|
587
|
+
* FundingRequestClaimRemoveApi - interface
|
|
588
|
+
* @export
|
|
589
|
+
* @interface FundingRequestClaimRemoveApi
|
|
590
|
+
*/
|
|
591
|
+
export interface FundingRequestClaimRemoveApiInterface {
|
|
592
|
+
/**
|
|
593
|
+
* Creates a new FundingRequestClaimRemove
|
|
594
|
+
* @summary Create FundingRequestClaimRemove
|
|
595
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
596
|
+
* @param {number} requestKey Request Key
|
|
597
|
+
* @param {number} batchNumber Batch Number
|
|
598
|
+
* @param {number} batchClaim Batch Claim
|
|
599
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
600
|
+
* @param {*} [options] Override http request option.
|
|
601
|
+
* @throws {RequiredError}
|
|
602
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
603
|
+
*/
|
|
604
|
+
createFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse>;
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* Deletes an FundingRequestClaimRemove
|
|
608
|
+
* @summary Delete FundingRequestClaimRemove
|
|
609
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
610
|
+
* @param {number} requestKey Request Key
|
|
611
|
+
* @param {number} batchNumber Batch Number
|
|
612
|
+
* @param {number} batchClaim Batch Claim
|
|
613
|
+
* @param {*} [options] Override http request option.
|
|
614
|
+
* @throws {RequiredError}
|
|
615
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
616
|
+
*/
|
|
617
|
+
deleteFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* Gets FundingRequestClaimRemove
|
|
621
|
+
* @summary Get FundingRequestClaimRemove
|
|
622
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
623
|
+
* @param {number} requestKey Request Key
|
|
624
|
+
* @param {number} batchNumber Batch Number
|
|
625
|
+
* @param {number} batchClaim Batch Claim
|
|
626
|
+
* @param {*} [options] Override http request option.
|
|
627
|
+
* @throws {RequiredError}
|
|
628
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
629
|
+
*/
|
|
630
|
+
getFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse>;
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Lists all FundingRequestClaimRemove for the given requestKey
|
|
634
|
+
* @summary List FundingRequestClaimRemove
|
|
635
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
636
|
+
* @param {number} requestKey Request Key
|
|
637
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
638
|
+
* @param {number} [page] Page
|
|
639
|
+
* @param {number} [pageSize] Page Size
|
|
640
|
+
* @param {*} [options] Override http request option.
|
|
641
|
+
* @throws {RequiredError}
|
|
642
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
643
|
+
*/
|
|
644
|
+
listFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveListVBAResponse>;
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* Create or Update multiple FundingRequestClaimRemove at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
648
|
+
* @summary Create or Update Batch FundingRequestClaimRemove
|
|
649
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
650
|
+
* @param {number} requestKey Request Key
|
|
651
|
+
* @param {Array<FundingRequestClaimRemove>} fundingRequestClaimRemove
|
|
652
|
+
* @param {*} [options] Override http request option.
|
|
653
|
+
* @throws {RequiredError}
|
|
654
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
655
|
+
*/
|
|
656
|
+
updateBatchFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, fundingRequestClaimRemove: Array<FundingRequestClaimRemove>, options?: RawAxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* Updates a specific FundingRequestClaimRemove.
|
|
660
|
+
* @summary Update FundingRequestClaimRemove
|
|
661
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
662
|
+
* @param {number} requestKey Request Key
|
|
663
|
+
* @param {number} batchNumber Batch Number
|
|
664
|
+
* @param {number} batchClaim Batch Claim
|
|
665
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
666
|
+
* @param {*} [options] Override http request option.
|
|
667
|
+
* @throws {RequiredError}
|
|
668
|
+
* @memberof FundingRequestClaimRemoveApiInterface
|
|
669
|
+
*/
|
|
670
|
+
updateFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig): AxiosPromise<FundingRequestClaimRemoveVBAResponse>;
|
|
671
|
+
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* FundingRequestClaimRemoveApi - object-oriented interface
|
|
676
|
+
* @export
|
|
677
|
+
* @class FundingRequestClaimRemoveApi
|
|
678
|
+
* @extends {BaseAPI}
|
|
679
|
+
*/
|
|
680
|
+
export class FundingRequestClaimRemoveApi extends BaseAPI implements FundingRequestClaimRemoveApiInterface {
|
|
681
|
+
/**
|
|
682
|
+
* Creates a new FundingRequestClaimRemove
|
|
683
|
+
* @summary Create FundingRequestClaimRemove
|
|
684
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
685
|
+
* @param {number} requestKey Request Key
|
|
686
|
+
* @param {number} batchNumber Batch Number
|
|
687
|
+
* @param {number} batchClaim Batch Claim
|
|
688
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
689
|
+
* @param {*} [options] Override http request option.
|
|
690
|
+
* @throws {RequiredError}
|
|
691
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
692
|
+
*/
|
|
693
|
+
public createFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig) {
|
|
694
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).createFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options).then((request) => request(this.axios, this.basePath));
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* Deletes an FundingRequestClaimRemove
|
|
699
|
+
* @summary Delete FundingRequestClaimRemove
|
|
700
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
701
|
+
* @param {number} requestKey Request Key
|
|
702
|
+
* @param {number} batchNumber Batch Number
|
|
703
|
+
* @param {number} batchClaim Batch Claim
|
|
704
|
+
* @param {*} [options] Override http request option.
|
|
705
|
+
* @throws {RequiredError}
|
|
706
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
707
|
+
*/
|
|
708
|
+
public deleteFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig) {
|
|
709
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).deleteFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* Gets FundingRequestClaimRemove
|
|
714
|
+
* @summary Get FundingRequestClaimRemove
|
|
715
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
716
|
+
* @param {number} requestKey Request Key
|
|
717
|
+
* @param {number} batchNumber Batch Number
|
|
718
|
+
* @param {number} batchClaim Batch Claim
|
|
719
|
+
* @param {*} [options] Override http request option.
|
|
720
|
+
* @throws {RequiredError}
|
|
721
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
722
|
+
*/
|
|
723
|
+
public getFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig) {
|
|
724
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).getFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* Lists all FundingRequestClaimRemove for the given requestKey
|
|
729
|
+
* @summary List FundingRequestClaimRemove
|
|
730
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
731
|
+
* @param {number} requestKey Request Key
|
|
732
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
733
|
+
* @param {number} [page] Page
|
|
734
|
+
* @param {number} [pageSize] Page Size
|
|
735
|
+
* @param {*} [options] Override http request option.
|
|
736
|
+
* @throws {RequiredError}
|
|
737
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
738
|
+
*/
|
|
739
|
+
public listFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
740
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).listFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* Create or Update multiple FundingRequestClaimRemove at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
745
|
+
* @summary Create or Update Batch FundingRequestClaimRemove
|
|
746
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
747
|
+
* @param {number} requestKey Request Key
|
|
748
|
+
* @param {Array<FundingRequestClaimRemove>} fundingRequestClaimRemove
|
|
749
|
+
* @param {*} [options] Override http request option.
|
|
750
|
+
* @throws {RequiredError}
|
|
751
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
752
|
+
*/
|
|
753
|
+
public updateBatchFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, fundingRequestClaimRemove: Array<FundingRequestClaimRemove>, options?: RawAxiosRequestConfig) {
|
|
754
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).updateBatchFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, fundingRequestClaimRemove, options).then((request) => request(this.axios, this.basePath));
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* Updates a specific FundingRequestClaimRemove.
|
|
759
|
+
* @summary Update FundingRequestClaimRemove
|
|
760
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
761
|
+
* @param {number} requestKey Request Key
|
|
762
|
+
* @param {number} batchNumber Batch Number
|
|
763
|
+
* @param {number} batchClaim Batch Claim
|
|
764
|
+
* @param {FundingRequestClaimRemove} fundingRequestClaimRemove
|
|
765
|
+
* @param {*} [options] Override http request option.
|
|
766
|
+
* @throws {RequiredError}
|
|
767
|
+
* @memberof FundingRequestClaimRemoveApi
|
|
768
|
+
*/
|
|
769
|
+
public updateFundingRequestClaimRemove(vbasoftwareDatabase: string, requestKey: number, batchNumber: number, batchClaim: number, fundingRequestClaimRemove: FundingRequestClaimRemove, options?: RawAxiosRequestConfig) {
|
|
770
|
+
return FundingRequestClaimRemoveApiFp(this.configuration).updateFundingRequestClaimRemove(vbasoftwareDatabase, requestKey, batchNumber, batchClaim, fundingRequestClaimRemove, options).then((request) => request(this.axios, this.basePath));
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
|