@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230826.1 → 1.20230830.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 +5 -0
- package/api/claim-pre-batch-details-api.ts +71 -254
- package/api/claim-pre-batches-api.ts +71 -158
- package/api/claim-queue-types-api.ts +155 -0
- package/api/reviewed-status-api.ts +677 -0
- package/api.ts +2 -0
- package/models/index.ts +3 -0
- package/models/reviewed-status-list-vbaresponse.ts +45 -0
- package/models/reviewed-status-vbaresponse.ts +45 -0
- package/models/reviewed-status.ts +60 -0
- package/package.json +1 -1
|
@@ -38,32 +38,16 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
38
38
|
* Creates a new ClaimPreBatchDetail
|
|
39
39
|
* @summary Create ClaimPreBatchDetail
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} batchNumber Batch Number
|
|
42
|
-
* @param {number} batchClaim Batch Claim
|
|
43
|
-
* @param {string} claimSeq Claim Seq
|
|
44
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
45
41
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
46
42
|
* @param {*} [options] Override http request option.
|
|
47
43
|
* @throws {RequiredError}
|
|
48
44
|
*/
|
|
49
|
-
createClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
45
|
+
createClaimPreBatchDetail: async (vbasoftwareDatabase: string, claimPreBatchDetail: ClaimPreBatchDetail, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
51
47
|
assertParamExists('createClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
52
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
53
|
-
assertParamExists('createClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
54
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
55
|
-
assertParamExists('createClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
56
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
57
|
-
assertParamExists('createClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
58
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
59
|
-
assertParamExists('createClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
60
48
|
// verify required parameter 'claimPreBatchDetail' is not null or undefined
|
|
61
49
|
assertParamExists('createClaimPreBatchDetail', 'claimPreBatchDetail', claimPreBatchDetail)
|
|
62
|
-
const localVarPath = `/claim-
|
|
63
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
64
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
65
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
66
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)));
|
|
50
|
+
const localVarPath = `/claim-prebatch-details`;
|
|
67
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
68
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
69
53
|
let baseOptions;
|
|
@@ -104,33 +88,17 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
104
88
|
* Deletes an ClaimPreBatchDetail
|
|
105
89
|
* @summary Delete ClaimPreBatchDetail
|
|
106
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
107
|
-
* @param {number} batchNumber Batch Number
|
|
108
|
-
* @param {number} batchClaim Batch Claim
|
|
109
|
-
* @param {string} claimSeq Claim Seq
|
|
110
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
111
91
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
112
92
|
* @param {*} [options] Override http request option.
|
|
113
93
|
* @throws {RequiredError}
|
|
114
94
|
*/
|
|
115
|
-
deleteClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteClaimPreBatchDetail: async (vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
116
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
117
97
|
assertParamExists('deleteClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
118
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
119
|
-
assertParamExists('deleteClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
120
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
121
|
-
assertParamExists('deleteClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
122
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
123
|
-
assertParamExists('deleteClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
124
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
125
|
-
assertParamExists('deleteClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
126
98
|
// verify required parameter 'claimPreBatchDetailKey' is not null or undefined
|
|
127
99
|
assertParamExists('deleteClaimPreBatchDetail', 'claimPreBatchDetailKey', claimPreBatchDetailKey)
|
|
128
|
-
const localVarPath = `/claim-
|
|
129
|
-
.replace(`{${"
|
|
130
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
131
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
132
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)))
|
|
133
|
-
.replace(`{${"claimPreBatchDetailKey"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
100
|
+
const localVarPath = `/claim-prebatch-details/{ClaimPreBatchDetail_Key}`
|
|
101
|
+
.replace(`{${"ClaimPreBatchDetail_Key"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
134
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
135
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
136
104
|
let baseOptions;
|
|
@@ -168,33 +136,17 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
168
136
|
* Gets ClaimPreBatchDetail
|
|
169
137
|
* @summary Get ClaimPreBatchDetail
|
|
170
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
171
|
-
* @param {number} batchNumber Batch Number
|
|
172
|
-
* @param {number} batchClaim Batch Claim
|
|
173
|
-
* @param {string} claimSeq Claim Seq
|
|
174
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
175
139
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
176
140
|
* @param {*} [options] Override http request option.
|
|
177
141
|
* @throws {RequiredError}
|
|
178
142
|
*/
|
|
179
|
-
getClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
143
|
+
getClaimPreBatchDetail: async (vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
180
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
181
145
|
assertParamExists('getClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
182
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
183
|
-
assertParamExists('getClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
184
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
185
|
-
assertParamExists('getClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
186
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
187
|
-
assertParamExists('getClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
188
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
189
|
-
assertParamExists('getClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
190
146
|
// verify required parameter 'claimPreBatchDetailKey' is not null or undefined
|
|
191
147
|
assertParamExists('getClaimPreBatchDetail', 'claimPreBatchDetailKey', claimPreBatchDetailKey)
|
|
192
|
-
const localVarPath = `/claim-
|
|
193
|
-
.replace(`{${"
|
|
194
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
195
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
196
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)))
|
|
197
|
-
.replace(`{${"claimPreBatchDetailKey"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
148
|
+
const localVarPath = `/claim-prebatch-details/{ClaimPreBatchDetail_Key}`
|
|
149
|
+
.replace(`{${"ClaimPreBatchDetail_Key"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
198
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
199
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
200
152
|
let baseOptions;
|
|
@@ -229,34 +181,19 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
229
181
|
};
|
|
230
182
|
},
|
|
231
183
|
/**
|
|
232
|
-
* Lists all ClaimPreBatchDetail
|
|
184
|
+
* Lists all ClaimPreBatchDetail
|
|
233
185
|
* @summary List ClaimPreBatchDetail
|
|
234
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
235
|
-
* @param {
|
|
236
|
-
* @param {number} batchClaim Batch Claim
|
|
237
|
-
* @param {string} claimSeq Claim Seq
|
|
238
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
187
|
+
* @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.
|
|
239
188
|
* @param {number} [page] Page
|
|
240
189
|
* @param {number} [pageSize] Page Size
|
|
241
190
|
* @param {*} [options] Override http request option.
|
|
242
191
|
* @throws {RequiredError}
|
|
243
192
|
*/
|
|
244
|
-
listClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
193
|
+
listClaimPreBatchDetail: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
245
194
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
246
195
|
assertParamExists('listClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
247
|
-
|
|
248
|
-
assertParamExists('listClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
249
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
250
|
-
assertParamExists('listClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
251
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
252
|
-
assertParamExists('listClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
253
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
254
|
-
assertParamExists('listClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
255
|
-
const localVarPath = `/claim-batches/{batchNumber}/claims/{batchClaim}/details/{claimSeq}/{adjustmentSeq}/pre-batch-details`
|
|
256
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
257
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
258
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
259
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)));
|
|
196
|
+
const localVarPath = `/claim-prebatch-details`;
|
|
260
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
261
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
262
199
|
let baseOptions;
|
|
@@ -275,6 +212,10 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
275
212
|
// http bearer authentication required
|
|
276
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
277
214
|
|
|
215
|
+
if (sortBy !== undefined) {
|
|
216
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
217
|
+
}
|
|
218
|
+
|
|
278
219
|
if (page !== undefined) {
|
|
279
220
|
localVarQueryParameter['page'] = page;
|
|
280
221
|
}
|
|
@@ -302,32 +243,16 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
302
243
|
* Create or Update multiple ClaimPreBatchDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
303
244
|
* @summary Create or Update Batch ClaimPreBatchDetail
|
|
304
245
|
* @param {string} vbasoftwareDatabase Target database
|
|
305
|
-
* @param {number} batchNumber Batch Number
|
|
306
|
-
* @param {number} batchClaim Batch Claim
|
|
307
|
-
* @param {string} claimSeq Claim Seq
|
|
308
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
309
246
|
* @param {Array<ClaimPreBatchDetail>} claimPreBatchDetail
|
|
310
247
|
* @param {*} [options] Override http request option.
|
|
311
248
|
* @throws {RequiredError}
|
|
312
249
|
*/
|
|
313
|
-
updateBatchClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
250
|
+
updateBatchClaimPreBatchDetail: async (vbasoftwareDatabase: string, claimPreBatchDetail: Array<ClaimPreBatchDetail>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
314
251
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
315
252
|
assertParamExists('updateBatchClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
316
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
317
|
-
assertParamExists('updateBatchClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
318
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
319
|
-
assertParamExists('updateBatchClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
320
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
321
|
-
assertParamExists('updateBatchClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
322
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
323
|
-
assertParamExists('updateBatchClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
324
253
|
// verify required parameter 'claimPreBatchDetail' is not null or undefined
|
|
325
254
|
assertParamExists('updateBatchClaimPreBatchDetail', 'claimPreBatchDetail', claimPreBatchDetail)
|
|
326
|
-
const localVarPath = `/claim-
|
|
327
|
-
.replace(`{${"batchNumber"}}`, encodeURIComponent(String(batchNumber)))
|
|
328
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
329
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
330
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)));
|
|
255
|
+
const localVarPath = `/claim-prebatch-details-batch`;
|
|
331
256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
332
257
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
333
258
|
let baseOptions;
|
|
@@ -368,36 +293,20 @@ export const ClaimPreBatchDetailsApiAxiosParamCreator = function (configuration?
|
|
|
368
293
|
* Updates a specific ClaimPreBatchDetail.
|
|
369
294
|
* @summary Update ClaimPreBatchDetail
|
|
370
295
|
* @param {string} vbasoftwareDatabase Target database
|
|
371
|
-
* @param {number} batchNumber Batch Number
|
|
372
|
-
* @param {number} batchClaim Batch Claim
|
|
373
|
-
* @param {string} claimSeq Claim Seq
|
|
374
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
375
296
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
376
297
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
377
298
|
* @param {*} [options] Override http request option.
|
|
378
299
|
* @throws {RequiredError}
|
|
379
300
|
*/
|
|
380
|
-
updateClaimPreBatchDetail: async (vbasoftwareDatabase: string,
|
|
301
|
+
updateClaimPreBatchDetail: async (vbasoftwareDatabase: string, claimPreBatchDetailKey: number, claimPreBatchDetail: ClaimPreBatchDetail, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
381
302
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
382
303
|
assertParamExists('updateClaimPreBatchDetail', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
383
|
-
// verify required parameter 'batchNumber' is not null or undefined
|
|
384
|
-
assertParamExists('updateClaimPreBatchDetail', 'batchNumber', batchNumber)
|
|
385
|
-
// verify required parameter 'batchClaim' is not null or undefined
|
|
386
|
-
assertParamExists('updateClaimPreBatchDetail', 'batchClaim', batchClaim)
|
|
387
|
-
// verify required parameter 'claimSeq' is not null or undefined
|
|
388
|
-
assertParamExists('updateClaimPreBatchDetail', 'claimSeq', claimSeq)
|
|
389
|
-
// verify required parameter 'adjustmentSeq' is not null or undefined
|
|
390
|
-
assertParamExists('updateClaimPreBatchDetail', 'adjustmentSeq', adjustmentSeq)
|
|
391
304
|
// verify required parameter 'claimPreBatchDetailKey' is not null or undefined
|
|
392
305
|
assertParamExists('updateClaimPreBatchDetail', 'claimPreBatchDetailKey', claimPreBatchDetailKey)
|
|
393
306
|
// verify required parameter 'claimPreBatchDetail' is not null or undefined
|
|
394
307
|
assertParamExists('updateClaimPreBatchDetail', 'claimPreBatchDetail', claimPreBatchDetail)
|
|
395
|
-
const localVarPath = `/claim-
|
|
396
|
-
.replace(`{${"
|
|
397
|
-
.replace(`{${"batchClaim"}}`, encodeURIComponent(String(batchClaim)))
|
|
398
|
-
.replace(`{${"claimSeq"}}`, encodeURIComponent(String(claimSeq)))
|
|
399
|
-
.replace(`{${"adjustmentSeq"}}`, encodeURIComponent(String(adjustmentSeq)))
|
|
400
|
-
.replace(`{${"claimPreBatchDetailKey"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
308
|
+
const localVarPath = `/claim-prebatch-details/{ClaimPreBatchDetail_Key}`
|
|
309
|
+
.replace(`{${"ClaimPreBatchDetail_Key"}}`, encodeURIComponent(String(claimPreBatchDetailKey)));
|
|
401
310
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
402
311
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
403
312
|
let baseOptions;
|
|
@@ -448,98 +357,75 @@ export const ClaimPreBatchDetailsApiFp = function(configuration?: Configuration)
|
|
|
448
357
|
* Creates a new ClaimPreBatchDetail
|
|
449
358
|
* @summary Create ClaimPreBatchDetail
|
|
450
359
|
* @param {string} vbasoftwareDatabase Target database
|
|
451
|
-
* @param {number} batchNumber Batch Number
|
|
452
|
-
* @param {number} batchClaim Batch Claim
|
|
453
|
-
* @param {string} claimSeq Claim Seq
|
|
454
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
455
360
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
456
361
|
* @param {*} [options] Override http request option.
|
|
457
362
|
* @throws {RequiredError}
|
|
458
363
|
*/
|
|
459
|
-
async createClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
460
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPreBatchDetail(vbasoftwareDatabase,
|
|
364
|
+
async createClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchDetailVBAResponse>> {
|
|
365
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options);
|
|
461
366
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
462
367
|
},
|
|
463
368
|
/**
|
|
464
369
|
* Deletes an ClaimPreBatchDetail
|
|
465
370
|
* @summary Delete ClaimPreBatchDetail
|
|
466
371
|
* @param {string} vbasoftwareDatabase Target database
|
|
467
|
-
* @param {number} batchNumber Batch Number
|
|
468
|
-
* @param {number} batchClaim Batch Claim
|
|
469
|
-
* @param {string} claimSeq Claim Seq
|
|
470
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
471
372
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
472
373
|
* @param {*} [options] Override http request option.
|
|
473
374
|
* @throws {RequiredError}
|
|
474
375
|
*/
|
|
475
|
-
async deleteClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
476
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPreBatchDetail(vbasoftwareDatabase,
|
|
376
|
+
async deleteClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
377
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options);
|
|
477
378
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
478
379
|
},
|
|
479
380
|
/**
|
|
480
381
|
* Gets ClaimPreBatchDetail
|
|
481
382
|
* @summary Get ClaimPreBatchDetail
|
|
482
383
|
* @param {string} vbasoftwareDatabase Target database
|
|
483
|
-
* @param {number} batchNumber Batch Number
|
|
484
|
-
* @param {number} batchClaim Batch Claim
|
|
485
|
-
* @param {string} claimSeq Claim Seq
|
|
486
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
487
384
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
488
385
|
* @param {*} [options] Override http request option.
|
|
489
386
|
* @throws {RequiredError}
|
|
490
387
|
*/
|
|
491
|
-
async getClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
492
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPreBatchDetail(vbasoftwareDatabase,
|
|
388
|
+
async getClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchDetailVBAResponse>> {
|
|
389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options);
|
|
493
390
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
494
391
|
},
|
|
495
392
|
/**
|
|
496
|
-
* Lists all ClaimPreBatchDetail
|
|
393
|
+
* Lists all ClaimPreBatchDetail
|
|
497
394
|
* @summary List ClaimPreBatchDetail
|
|
498
395
|
* @param {string} vbasoftwareDatabase Target database
|
|
499
|
-
* @param {
|
|
500
|
-
* @param {number} batchClaim Batch Claim
|
|
501
|
-
* @param {string} claimSeq Claim Seq
|
|
502
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
396
|
+
* @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.
|
|
503
397
|
* @param {number} [page] Page
|
|
504
398
|
* @param {number} [pageSize] Page Size
|
|
505
399
|
* @param {*} [options] Override http request option.
|
|
506
400
|
* @throws {RequiredError}
|
|
507
401
|
*/
|
|
508
|
-
async listClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
509
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPreBatchDetail(vbasoftwareDatabase,
|
|
402
|
+
async listClaimPreBatchDetail(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchDetailListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPreBatchDetail(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
510
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
511
405
|
},
|
|
512
406
|
/**
|
|
513
407
|
* Create or Update multiple ClaimPreBatchDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
514
408
|
* @summary Create or Update Batch ClaimPreBatchDetail
|
|
515
409
|
* @param {string} vbasoftwareDatabase Target database
|
|
516
|
-
* @param {number} batchNumber Batch Number
|
|
517
|
-
* @param {number} batchClaim Batch Claim
|
|
518
|
-
* @param {string} claimSeq Claim Seq
|
|
519
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
520
410
|
* @param {Array<ClaimPreBatchDetail>} claimPreBatchDetail
|
|
521
411
|
* @param {*} [options] Override http request option.
|
|
522
412
|
* @throws {RequiredError}
|
|
523
413
|
*/
|
|
524
|
-
async updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
525
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchClaimPreBatchDetail(vbasoftwareDatabase,
|
|
414
|
+
async updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: Array<ClaimPreBatchDetail>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options);
|
|
526
416
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
527
417
|
},
|
|
528
418
|
/**
|
|
529
419
|
* Updates a specific ClaimPreBatchDetail.
|
|
530
420
|
* @summary Update ClaimPreBatchDetail
|
|
531
421
|
* @param {string} vbasoftwareDatabase Target database
|
|
532
|
-
* @param {number} batchNumber Batch Number
|
|
533
|
-
* @param {number} batchClaim Batch Claim
|
|
534
|
-
* @param {string} claimSeq Claim Seq
|
|
535
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
536
422
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
537
423
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
538
424
|
* @param {*} [options] Override http request option.
|
|
539
425
|
* @throws {RequiredError}
|
|
540
426
|
*/
|
|
541
|
-
async updateClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
542
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPreBatchDetail(vbasoftwareDatabase,
|
|
427
|
+
async updateClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimPreBatchDetailVBAResponse>> {
|
|
428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, claimPreBatchDetail, options);
|
|
543
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
544
430
|
},
|
|
545
431
|
}
|
|
@@ -556,93 +442,70 @@ export const ClaimPreBatchDetailsApiFactory = function (configuration?: Configur
|
|
|
556
442
|
* Creates a new ClaimPreBatchDetail
|
|
557
443
|
* @summary Create ClaimPreBatchDetail
|
|
558
444
|
* @param {string} vbasoftwareDatabase Target database
|
|
559
|
-
* @param {number} batchNumber Batch Number
|
|
560
|
-
* @param {number} batchClaim Batch Claim
|
|
561
|
-
* @param {string} claimSeq Claim Seq
|
|
562
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
563
445
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
564
446
|
* @param {*} [options] Override http request option.
|
|
565
447
|
* @throws {RequiredError}
|
|
566
448
|
*/
|
|
567
|
-
createClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
568
|
-
return localVarFp.createClaimPreBatchDetail(vbasoftwareDatabase,
|
|
449
|
+
createClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: ClaimPreBatchDetail, options?: any): AxiosPromise<ClaimPreBatchDetailVBAResponse> {
|
|
450
|
+
return localVarFp.createClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options).then((request) => request(axios, basePath));
|
|
569
451
|
},
|
|
570
452
|
/**
|
|
571
453
|
* Deletes an ClaimPreBatchDetail
|
|
572
454
|
* @summary Delete ClaimPreBatchDetail
|
|
573
455
|
* @param {string} vbasoftwareDatabase Target database
|
|
574
|
-
* @param {number} batchNumber Batch Number
|
|
575
|
-
* @param {number} batchClaim Batch Claim
|
|
576
|
-
* @param {string} claimSeq Claim Seq
|
|
577
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
578
456
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
579
457
|
* @param {*} [options] Override http request option.
|
|
580
458
|
* @throws {RequiredError}
|
|
581
459
|
*/
|
|
582
|
-
deleteClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
583
|
-
return localVarFp.deleteClaimPreBatchDetail(vbasoftwareDatabase,
|
|
460
|
+
deleteClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: any): AxiosPromise<void> {
|
|
461
|
+
return localVarFp.deleteClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options).then((request) => request(axios, basePath));
|
|
584
462
|
},
|
|
585
463
|
/**
|
|
586
464
|
* Gets ClaimPreBatchDetail
|
|
587
465
|
* @summary Get ClaimPreBatchDetail
|
|
588
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
589
|
-
* @param {number} batchNumber Batch Number
|
|
590
|
-
* @param {number} batchClaim Batch Claim
|
|
591
|
-
* @param {string} claimSeq Claim Seq
|
|
592
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
593
467
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
594
468
|
* @param {*} [options] Override http request option.
|
|
595
469
|
* @throws {RequiredError}
|
|
596
470
|
*/
|
|
597
|
-
getClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
598
|
-
return localVarFp.getClaimPreBatchDetail(vbasoftwareDatabase,
|
|
471
|
+
getClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: any): AxiosPromise<ClaimPreBatchDetailVBAResponse> {
|
|
472
|
+
return localVarFp.getClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options).then((request) => request(axios, basePath));
|
|
599
473
|
},
|
|
600
474
|
/**
|
|
601
|
-
* Lists all ClaimPreBatchDetail
|
|
475
|
+
* Lists all ClaimPreBatchDetail
|
|
602
476
|
* @summary List ClaimPreBatchDetail
|
|
603
477
|
* @param {string} vbasoftwareDatabase Target database
|
|
604
|
-
* @param {
|
|
605
|
-
* @param {number} batchClaim Batch Claim
|
|
606
|
-
* @param {string} claimSeq Claim Seq
|
|
607
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
478
|
+
* @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.
|
|
608
479
|
* @param {number} [page] Page
|
|
609
480
|
* @param {number} [pageSize] Page Size
|
|
610
481
|
* @param {*} [options] Override http request option.
|
|
611
482
|
* @throws {RequiredError}
|
|
612
483
|
*/
|
|
613
|
-
listClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
614
|
-
return localVarFp.listClaimPreBatchDetail(vbasoftwareDatabase,
|
|
484
|
+
listClaimPreBatchDetail(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ClaimPreBatchDetailListVBAResponse> {
|
|
485
|
+
return localVarFp.listClaimPreBatchDetail(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
615
486
|
},
|
|
616
487
|
/**
|
|
617
488
|
* Create or Update multiple ClaimPreBatchDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
618
489
|
* @summary Create or Update Batch ClaimPreBatchDetail
|
|
619
490
|
* @param {string} vbasoftwareDatabase Target database
|
|
620
|
-
* @param {number} batchNumber Batch Number
|
|
621
|
-
* @param {number} batchClaim Batch Claim
|
|
622
|
-
* @param {string} claimSeq Claim Seq
|
|
623
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
624
491
|
* @param {Array<ClaimPreBatchDetail>} claimPreBatchDetail
|
|
625
492
|
* @param {*} [options] Override http request option.
|
|
626
493
|
* @throws {RequiredError}
|
|
627
494
|
*/
|
|
628
|
-
updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
629
|
-
return localVarFp.updateBatchClaimPreBatchDetail(vbasoftwareDatabase,
|
|
495
|
+
updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: Array<ClaimPreBatchDetail>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
496
|
+
return localVarFp.updateBatchClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options).then((request) => request(axios, basePath));
|
|
630
497
|
},
|
|
631
498
|
/**
|
|
632
499
|
* Updates a specific ClaimPreBatchDetail.
|
|
633
500
|
* @summary Update ClaimPreBatchDetail
|
|
634
501
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {number} batchNumber Batch Number
|
|
636
|
-
* @param {number} batchClaim Batch Claim
|
|
637
|
-
* @param {string} claimSeq Claim Seq
|
|
638
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
639
502
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
640
503
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
641
504
|
* @param {*} [options] Override http request option.
|
|
642
505
|
* @throws {RequiredError}
|
|
643
506
|
*/
|
|
644
|
-
updateClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
645
|
-
return localVarFp.updateClaimPreBatchDetail(vbasoftwareDatabase,
|
|
507
|
+
updateClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, claimPreBatchDetail: ClaimPreBatchDetail, options?: any): AxiosPromise<ClaimPreBatchDetailVBAResponse> {
|
|
508
|
+
return localVarFp.updateClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, claimPreBatchDetail, options).then((request) => request(axios, basePath));
|
|
646
509
|
},
|
|
647
510
|
};
|
|
648
511
|
};
|
|
@@ -657,93 +520,70 @@ export interface ClaimPreBatchDetailsApiInterface {
|
|
|
657
520
|
* Creates a new ClaimPreBatchDetail
|
|
658
521
|
* @summary Create ClaimPreBatchDetail
|
|
659
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
660
|
-
* @param {number} batchNumber Batch Number
|
|
661
|
-
* @param {number} batchClaim Batch Claim
|
|
662
|
-
* @param {string} claimSeq Claim Seq
|
|
663
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
664
523
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
665
524
|
* @param {*} [options] Override http request option.
|
|
666
525
|
* @throws {RequiredError}
|
|
667
526
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
668
527
|
*/
|
|
669
|
-
createClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
528
|
+
createClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchDetailVBAResponse>;
|
|
670
529
|
|
|
671
530
|
/**
|
|
672
531
|
* Deletes an ClaimPreBatchDetail
|
|
673
532
|
* @summary Delete ClaimPreBatchDetail
|
|
674
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
675
|
-
* @param {number} batchNumber Batch Number
|
|
676
|
-
* @param {number} batchClaim Batch Claim
|
|
677
|
-
* @param {string} claimSeq Claim Seq
|
|
678
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
679
534
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
680
535
|
* @param {*} [options] Override http request option.
|
|
681
536
|
* @throws {RequiredError}
|
|
682
537
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
683
538
|
*/
|
|
684
|
-
deleteClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
539
|
+
deleteClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
685
540
|
|
|
686
541
|
/**
|
|
687
542
|
* Gets ClaimPreBatchDetail
|
|
688
543
|
* @summary Get ClaimPreBatchDetail
|
|
689
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
690
|
-
* @param {number} batchNumber Batch Number
|
|
691
|
-
* @param {number} batchClaim Batch Claim
|
|
692
|
-
* @param {string} claimSeq Claim Seq
|
|
693
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
694
545
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
695
546
|
* @param {*} [options] Override http request option.
|
|
696
547
|
* @throws {RequiredError}
|
|
697
548
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
698
549
|
*/
|
|
699
|
-
getClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
550
|
+
getClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchDetailVBAResponse>;
|
|
700
551
|
|
|
701
552
|
/**
|
|
702
|
-
* Lists all ClaimPreBatchDetail
|
|
553
|
+
* Lists all ClaimPreBatchDetail
|
|
703
554
|
* @summary List ClaimPreBatchDetail
|
|
704
555
|
* @param {string} vbasoftwareDatabase Target database
|
|
705
|
-
* @param {
|
|
706
|
-
* @param {number} batchClaim Batch Claim
|
|
707
|
-
* @param {string} claimSeq Claim Seq
|
|
708
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
556
|
+
* @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.
|
|
709
557
|
* @param {number} [page] Page
|
|
710
558
|
* @param {number} [pageSize] Page Size
|
|
711
559
|
* @param {*} [options] Override http request option.
|
|
712
560
|
* @throws {RequiredError}
|
|
713
561
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
714
562
|
*/
|
|
715
|
-
listClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
563
|
+
listClaimPreBatchDetail(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchDetailListVBAResponse>;
|
|
716
564
|
|
|
717
565
|
/**
|
|
718
566
|
* Create or Update multiple ClaimPreBatchDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
719
567
|
* @summary Create or Update Batch ClaimPreBatchDetail
|
|
720
568
|
* @param {string} vbasoftwareDatabase Target database
|
|
721
|
-
* @param {number} batchNumber Batch Number
|
|
722
|
-
* @param {number} batchClaim Batch Claim
|
|
723
|
-
* @param {string} claimSeq Claim Seq
|
|
724
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
725
569
|
* @param {Array<ClaimPreBatchDetail>} claimPreBatchDetail
|
|
726
570
|
* @param {*} [options] Override http request option.
|
|
727
571
|
* @throws {RequiredError}
|
|
728
572
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
729
573
|
*/
|
|
730
|
-
updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
574
|
+
updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: Array<ClaimPreBatchDetail>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
731
575
|
|
|
732
576
|
/**
|
|
733
577
|
* Updates a specific ClaimPreBatchDetail.
|
|
734
578
|
* @summary Update ClaimPreBatchDetail
|
|
735
579
|
* @param {string} vbasoftwareDatabase Target database
|
|
736
|
-
* @param {number} batchNumber Batch Number
|
|
737
|
-
* @param {number} batchClaim Batch Claim
|
|
738
|
-
* @param {string} claimSeq Claim Seq
|
|
739
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
740
580
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
741
581
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
742
582
|
* @param {*} [options] Override http request option.
|
|
743
583
|
* @throws {RequiredError}
|
|
744
584
|
* @memberof ClaimPreBatchDetailsApiInterface
|
|
745
585
|
*/
|
|
746
|
-
updateClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
586
|
+
updateClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig): AxiosPromise<ClaimPreBatchDetailVBAResponse>;
|
|
747
587
|
|
|
748
588
|
}
|
|
749
589
|
|
|
@@ -758,103 +598,80 @@ export class ClaimPreBatchDetailsApi extends BaseAPI implements ClaimPreBatchDet
|
|
|
758
598
|
* Creates a new ClaimPreBatchDetail
|
|
759
599
|
* @summary Create ClaimPreBatchDetail
|
|
760
600
|
* @param {string} vbasoftwareDatabase Target database
|
|
761
|
-
* @param {number} batchNumber Batch Number
|
|
762
|
-
* @param {number} batchClaim Batch Claim
|
|
763
|
-
* @param {string} claimSeq Claim Seq
|
|
764
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
765
601
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
766
602
|
* @param {*} [options] Override http request option.
|
|
767
603
|
* @throws {RequiredError}
|
|
768
604
|
* @memberof ClaimPreBatchDetailsApi
|
|
769
605
|
*/
|
|
770
|
-
public createClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
771
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).createClaimPreBatchDetail(vbasoftwareDatabase,
|
|
606
|
+
public createClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig) {
|
|
607
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).createClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options).then((request) => request(this.axios, this.basePath));
|
|
772
608
|
}
|
|
773
609
|
|
|
774
610
|
/**
|
|
775
611
|
* Deletes an ClaimPreBatchDetail
|
|
776
612
|
* @summary Delete ClaimPreBatchDetail
|
|
777
613
|
* @param {string} vbasoftwareDatabase Target database
|
|
778
|
-
* @param {number} batchNumber Batch Number
|
|
779
|
-
* @param {number} batchClaim Batch Claim
|
|
780
|
-
* @param {string} claimSeq Claim Seq
|
|
781
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
782
614
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
783
615
|
* @param {*} [options] Override http request option.
|
|
784
616
|
* @throws {RequiredError}
|
|
785
617
|
* @memberof ClaimPreBatchDetailsApi
|
|
786
618
|
*/
|
|
787
|
-
public deleteClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
788
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).deleteClaimPreBatchDetail(vbasoftwareDatabase,
|
|
619
|
+
public deleteClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig) {
|
|
620
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).deleteClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options).then((request) => request(this.axios, this.basePath));
|
|
789
621
|
}
|
|
790
622
|
|
|
791
623
|
/**
|
|
792
624
|
* Gets ClaimPreBatchDetail
|
|
793
625
|
* @summary Get ClaimPreBatchDetail
|
|
794
626
|
* @param {string} vbasoftwareDatabase Target database
|
|
795
|
-
* @param {number} batchNumber Batch Number
|
|
796
|
-
* @param {number} batchClaim Batch Claim
|
|
797
|
-
* @param {string} claimSeq Claim Seq
|
|
798
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
799
627
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
800
628
|
* @param {*} [options] Override http request option.
|
|
801
629
|
* @throws {RequiredError}
|
|
802
630
|
* @memberof ClaimPreBatchDetailsApi
|
|
803
631
|
*/
|
|
804
|
-
public getClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
805
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).getClaimPreBatchDetail(vbasoftwareDatabase,
|
|
632
|
+
public getClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, options?: AxiosRequestConfig) {
|
|
633
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).getClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, options).then((request) => request(this.axios, this.basePath));
|
|
806
634
|
}
|
|
807
635
|
|
|
808
636
|
/**
|
|
809
|
-
* Lists all ClaimPreBatchDetail
|
|
637
|
+
* Lists all ClaimPreBatchDetail
|
|
810
638
|
* @summary List ClaimPreBatchDetail
|
|
811
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
812
|
-
* @param {
|
|
813
|
-
* @param {number} batchClaim Batch Claim
|
|
814
|
-
* @param {string} claimSeq Claim Seq
|
|
815
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
640
|
+
* @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.
|
|
816
641
|
* @param {number} [page] Page
|
|
817
642
|
* @param {number} [pageSize] Page Size
|
|
818
643
|
* @param {*} [options] Override http request option.
|
|
819
644
|
* @throws {RequiredError}
|
|
820
645
|
* @memberof ClaimPreBatchDetailsApi
|
|
821
646
|
*/
|
|
822
|
-
public listClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
823
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).listClaimPreBatchDetail(vbasoftwareDatabase,
|
|
647
|
+
public listClaimPreBatchDetail(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).listClaimPreBatchDetail(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
824
649
|
}
|
|
825
650
|
|
|
826
651
|
/**
|
|
827
652
|
* Create or Update multiple ClaimPreBatchDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
828
653
|
* @summary Create or Update Batch ClaimPreBatchDetail
|
|
829
654
|
* @param {string} vbasoftwareDatabase Target database
|
|
830
|
-
* @param {number} batchNumber Batch Number
|
|
831
|
-
* @param {number} batchClaim Batch Claim
|
|
832
|
-
* @param {string} claimSeq Claim Seq
|
|
833
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
834
655
|
* @param {Array<ClaimPreBatchDetail>} claimPreBatchDetail
|
|
835
656
|
* @param {*} [options] Override http request option.
|
|
836
657
|
* @throws {RequiredError}
|
|
837
658
|
* @memberof ClaimPreBatchDetailsApi
|
|
838
659
|
*/
|
|
839
|
-
public updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
840
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).updateBatchClaimPreBatchDetail(vbasoftwareDatabase,
|
|
660
|
+
public updateBatchClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetail: Array<ClaimPreBatchDetail>, options?: AxiosRequestConfig) {
|
|
661
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).updateBatchClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetail, options).then((request) => request(this.axios, this.basePath));
|
|
841
662
|
}
|
|
842
663
|
|
|
843
664
|
/**
|
|
844
665
|
* Updates a specific ClaimPreBatchDetail.
|
|
845
666
|
* @summary Update ClaimPreBatchDetail
|
|
846
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
847
|
-
* @param {number} batchNumber Batch Number
|
|
848
|
-
* @param {number} batchClaim Batch Claim
|
|
849
|
-
* @param {string} claimSeq Claim Seq
|
|
850
|
-
* @param {string} adjustmentSeq Adjustment Seq
|
|
851
668
|
* @param {number} claimPreBatchDetailKey ClaimPreBatchDetail Key
|
|
852
669
|
* @param {ClaimPreBatchDetail} claimPreBatchDetail
|
|
853
670
|
* @param {*} [options] Override http request option.
|
|
854
671
|
* @throws {RequiredError}
|
|
855
672
|
* @memberof ClaimPreBatchDetailsApi
|
|
856
673
|
*/
|
|
857
|
-
public updateClaimPreBatchDetail(vbasoftwareDatabase: string,
|
|
858
|
-
return ClaimPreBatchDetailsApiFp(this.configuration).updateClaimPreBatchDetail(vbasoftwareDatabase,
|
|
674
|
+
public updateClaimPreBatchDetail(vbasoftwareDatabase: string, claimPreBatchDetailKey: number, claimPreBatchDetail: ClaimPreBatchDetail, options?: AxiosRequestConfig) {
|
|
675
|
+
return ClaimPreBatchDetailsApiFp(this.configuration).updateClaimPreBatchDetail(vbasoftwareDatabase, claimPreBatchDetailKey, claimPreBatchDetail, options).then((request) => request(this.axios, this.basePath));
|
|
859
676
|
}
|
|
860
677
|
}
|