@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230519.1 → 1.20230616.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 +27 -1
- package/api/claim-batch-logs-api.ts +668 -0
- package/api/claim-batch-references-api.ts +764 -0
- package/api/claim-batches-api.ts +17 -8
- package/api/error-category-api.ts +668 -0
- package/api/error-category-types-api.ts +725 -0
- package/api/error-severity-api.ts +668 -0
- package/api/error-type-api.ts +668 -0
- package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
- package/api/fee-schedule-details-api.ts +68 -107
- package/api/fee-schedule-modifier-discounts-api.ts +68 -107
- package/api/fee-schedule-modifier-excludes-api.ts +68 -107
- package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
- package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
- package/api/funding-request-claims-api.ts +8 -26
- package/api/member-account-plans-api.ts +10 -10
- package/api/payor-accounts-api.ts +105 -0
- package/api/user-api.ts +98 -0
- package/api.ts +7 -1
- package/models/claim-batch-log-list-vbaresponse.ts +45 -0
- package/models/claim-batch-log-vbaresponse.ts +45 -0
- package/models/claim-batch-log.ts +96 -0
- package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
- package/models/claim-batch-reference-vbaresponse.ts +45 -0
- package/models/claim-batch-reference.ts +84 -0
- package/models/company-data.ts +24 -0
- package/models/error-category-list-vbaresponse.ts +45 -0
- package/models/error-category-type-list-vbaresponse.ts +45 -0
- package/models/error-category-type-vbaresponse.ts +45 -0
- package/models/error-category-type.ts +78 -0
- package/models/error-category-vbaresponse.ts +45 -0
- package/models/error-category.ts +60 -0
- package/models/error-severity-list-vbaresponse.ts +45 -0
- package/models/error-severity-vbaresponse.ts +45 -0
- package/models/error-severity.ts +60 -0
- package/models/error-type-list-vbaresponse.ts +45 -0
- package/models/error-type-vbaresponse.ts +45 -0
- package/models/error-type.ts +60 -0
- package/models/fee-sched-anesthesia.ts +25 -1
- package/models/fee-sched-detail.ts +28 -4
- package/models/fee-sched-modifier-discount.ts +27 -3
- package/models/fee-sched-modifier-exclude.ts +25 -1
- package/models/fee-sched-procedure-group-adjust.ts +30 -6
- package/models/fee-sched-provider-type-discount.ts +27 -3
- package/models/idcode-value.ts +25 -1
- package/models/index.ts +20 -0
- package/models/prem-payment-file-format.ts +14 -8
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
- package/models/vbafunding-account-claim-info.ts +276 -0
- package/package.json +1 -1
|
@@ -38,20 +38,16 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
38
38
|
* Creates a new FeeSchedProcedureGroupAdjust
|
|
39
39
|
* @summary Create FeeSchedProcedureGroupAdjust
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {string} feeSched Fee Sched
|
|
42
41
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
45
|
+
createFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
50
|
-
assertParamExists('createFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
51
48
|
// verify required parameter 'feeSchedProcedureGroupAdjust' is not null or undefined
|
|
52
49
|
assertParamExists('createFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjust', feeSchedProcedureGroupAdjust)
|
|
53
|
-
const localVarPath = `/fee-
|
|
54
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
50
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments`;
|
|
55
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
53
|
let baseOptions;
|
|
@@ -92,20 +88,16 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
92
88
|
* Deletes an FeeSchedProcedureGroupAdjust
|
|
93
89
|
* @summary Delete FeeSchedProcedureGroupAdjust
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {string} feeSched Fee Sched
|
|
96
91
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
104
|
-
assertParamExists('deleteFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
105
98
|
// verify required parameter 'feeSchedProcedureGroupAdjustKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjustKey', feeSchedProcedureGroupAdjustKey)
|
|
107
|
-
const localVarPath = `/fee-
|
|
108
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
100
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments/{feeSchedProcedureGroupAdjustKey}`
|
|
109
101
|
.replace(`{${"feeSchedProcedureGroupAdjustKey"}}`, encodeURIComponent(String(feeSchedProcedureGroupAdjustKey)));
|
|
110
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
111
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -144,20 +136,16 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
144
136
|
* Gets FeeSchedProcedureGroupAdjust
|
|
145
137
|
* @summary Get FeeSchedProcedureGroupAdjust
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {string} feeSched Fee Sched
|
|
148
139
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
143
|
+
getFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
156
|
-
assertParamExists('getFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
157
146
|
// verify required parameter 'feeSchedProcedureGroupAdjustKey' is not null or undefined
|
|
158
147
|
assertParamExists('getFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjustKey', feeSchedProcedureGroupAdjustKey)
|
|
159
|
-
const localVarPath = `/fee-
|
|
160
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
148
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments/{feeSchedProcedureGroupAdjustKey}`
|
|
161
149
|
.replace(`{${"feeSchedProcedureGroupAdjustKey"}}`, encodeURIComponent(String(feeSchedProcedureGroupAdjustKey)));
|
|
162
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -193,22 +181,19 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all FeeSchedProcedureGroupAdjust
|
|
184
|
+
* Lists all FeeSchedProcedureGroupAdjust
|
|
197
185
|
* @summary List FeeSchedProcedureGroupAdjust
|
|
198
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
199
|
-
* @param {string}
|
|
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.
|
|
200
188
|
* @param {number} [page] Page
|
|
201
189
|
* @param {number} [pageSize] Page Size
|
|
202
190
|
* @param {*} [options] Override http request option.
|
|
203
191
|
* @throws {RequiredError}
|
|
204
192
|
*/
|
|
205
|
-
listFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
193
|
+
listFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
194
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
207
195
|
assertParamExists('listFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
208
|
-
|
|
209
|
-
assertParamExists('listFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
210
|
-
const localVarPath = `/fee-schedules/{feeSched}/procedure-group-adjustments`
|
|
211
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
196
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments`;
|
|
212
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
213
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
214
199
|
let baseOptions;
|
|
@@ -227,6 +212,10 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
227
212
|
// http bearer authentication required
|
|
228
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
229
214
|
|
|
215
|
+
if (sortBy !== undefined) {
|
|
216
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
217
|
+
}
|
|
218
|
+
|
|
230
219
|
if (page !== undefined) {
|
|
231
220
|
localVarQueryParameter['page'] = page;
|
|
232
221
|
}
|
|
@@ -254,20 +243,16 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
254
243
|
* Create or Update multiple FeeSchedProcedureGroupAdjust at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
255
244
|
* @summary Create or Update Batch FeeSchedProcedureGroupAdjust
|
|
256
245
|
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
-
* @param {string} feeSched Fee Sched
|
|
258
246
|
* @param {Array<FeeSchedProcedureGroupAdjust>} feeSchedProcedureGroupAdjust
|
|
259
247
|
* @param {*} [options] Override http request option.
|
|
260
248
|
* @throws {RequiredError}
|
|
261
249
|
*/
|
|
262
|
-
updateBatchFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
250
|
+
updateBatchFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: Array<FeeSchedProcedureGroupAdjust>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
263
251
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
264
252
|
assertParamExists('updateBatchFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
265
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
266
|
-
assertParamExists('updateBatchFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
267
253
|
// verify required parameter 'feeSchedProcedureGroupAdjust' is not null or undefined
|
|
268
254
|
assertParamExists('updateBatchFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjust', feeSchedProcedureGroupAdjust)
|
|
269
|
-
const localVarPath = `/fee-
|
|
270
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
255
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments-batch`;
|
|
271
256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
272
257
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
273
258
|
let baseOptions;
|
|
@@ -308,23 +293,19 @@ export const FeeScheduleProcedureGroupAdjustmentsApiAxiosParamCreator = function
|
|
|
308
293
|
* Updates a specific FeeSchedProcedureGroupAdjust.
|
|
309
294
|
* @summary Update FeeSchedProcedureGroupAdjust
|
|
310
295
|
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
-
* @param {string} feeSched Fee Sched
|
|
312
296
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
313
297
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
314
298
|
* @param {*} [options] Override http request option.
|
|
315
299
|
* @throws {RequiredError}
|
|
316
300
|
*/
|
|
317
|
-
updateFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string,
|
|
301
|
+
updateFeeSchedProcedureGroupAdjust: async (vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
302
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
319
303
|
assertParamExists('updateFeeSchedProcedureGroupAdjust', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
320
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
321
|
-
assertParamExists('updateFeeSchedProcedureGroupAdjust', 'feeSched', feeSched)
|
|
322
304
|
// verify required parameter 'feeSchedProcedureGroupAdjustKey' is not null or undefined
|
|
323
305
|
assertParamExists('updateFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjustKey', feeSchedProcedureGroupAdjustKey)
|
|
324
306
|
// verify required parameter 'feeSchedProcedureGroupAdjust' is not null or undefined
|
|
325
307
|
assertParamExists('updateFeeSchedProcedureGroupAdjust', 'feeSchedProcedureGroupAdjust', feeSchedProcedureGroupAdjust)
|
|
326
|
-
const localVarPath = `/fee-
|
|
327
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
308
|
+
const localVarPath = `/fee-schedule-procedure-group-adjustments/{feeSchedProcedureGroupAdjustKey}`
|
|
328
309
|
.replace(`{${"feeSchedProcedureGroupAdjustKey"}}`, encodeURIComponent(String(feeSchedProcedureGroupAdjustKey)));
|
|
329
310
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
330
311
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -376,80 +357,75 @@ export const FeeScheduleProcedureGroupAdjustmentsApiFp = function(configuration?
|
|
|
376
357
|
* Creates a new FeeSchedProcedureGroupAdjust
|
|
377
358
|
* @summary Create FeeSchedProcedureGroupAdjust
|
|
378
359
|
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
-
* @param {string} feeSched Fee Sched
|
|
380
360
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
381
361
|
* @param {*} [options] Override http request option.
|
|
382
362
|
* @throws {RequiredError}
|
|
383
363
|
*/
|
|
384
|
-
async createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
385
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
364
|
+
async createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>> {
|
|
365
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options);
|
|
386
366
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
387
367
|
},
|
|
388
368
|
/**
|
|
389
369
|
* Deletes an FeeSchedProcedureGroupAdjust
|
|
390
370
|
* @summary Delete FeeSchedProcedureGroupAdjust
|
|
391
371
|
* @param {string} vbasoftwareDatabase Target database
|
|
392
|
-
* @param {string} feeSched Fee Sched
|
|
393
372
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
394
373
|
* @param {*} [options] Override http request option.
|
|
395
374
|
* @throws {RequiredError}
|
|
396
375
|
*/
|
|
397
|
-
async deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
398
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
376
|
+
async deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
377
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options);
|
|
399
378
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
400
379
|
},
|
|
401
380
|
/**
|
|
402
381
|
* Gets FeeSchedProcedureGroupAdjust
|
|
403
382
|
* @summary Get FeeSchedProcedureGroupAdjust
|
|
404
383
|
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
-
* @param {string} feeSched Fee Sched
|
|
406
384
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
407
385
|
* @param {*} [options] Override http request option.
|
|
408
386
|
* @throws {RequiredError}
|
|
409
387
|
*/
|
|
410
|
-
async getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
411
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
388
|
+
async getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>> {
|
|
389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options);
|
|
412
390
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
413
391
|
},
|
|
414
392
|
/**
|
|
415
|
-
* Lists all FeeSchedProcedureGroupAdjust
|
|
393
|
+
* Lists all FeeSchedProcedureGroupAdjust
|
|
416
394
|
* @summary List FeeSchedProcedureGroupAdjust
|
|
417
395
|
* @param {string} vbasoftwareDatabase Target database
|
|
418
|
-
* @param {string}
|
|
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.
|
|
419
397
|
* @param {number} [page] Page
|
|
420
398
|
* @param {number} [pageSize] Page Size
|
|
421
399
|
* @param {*} [options] Override http request option.
|
|
422
400
|
* @throws {RequiredError}
|
|
423
401
|
*/
|
|
424
|
-
async listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
425
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
402
|
+
async listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedProcedureGroupAdjustListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
426
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
405
|
},
|
|
428
406
|
/**
|
|
429
407
|
* Create or Update multiple FeeSchedProcedureGroupAdjust at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
430
408
|
* @summary Create or Update Batch FeeSchedProcedureGroupAdjust
|
|
431
409
|
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
-
* @param {string} feeSched Fee Sched
|
|
433
410
|
* @param {Array<FeeSchedProcedureGroupAdjust>} feeSchedProcedureGroupAdjust
|
|
434
411
|
* @param {*} [options] Override http request option.
|
|
435
412
|
* @throws {RequiredError}
|
|
436
413
|
*/
|
|
437
|
-
async updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
414
|
+
async updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: Array<FeeSchedProcedureGroupAdjust>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options);
|
|
439
416
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
417
|
},
|
|
441
418
|
/**
|
|
442
419
|
* Updates a specific FeeSchedProcedureGroupAdjust.
|
|
443
420
|
* @summary Update FeeSchedProcedureGroupAdjust
|
|
444
421
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {string} feeSched Fee Sched
|
|
446
422
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
447
423
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
448
424
|
* @param {*} [options] Override http request option.
|
|
449
425
|
* @throws {RequiredError}
|
|
450
426
|
*/
|
|
451
|
-
async updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
427
|
+
async updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>> {
|
|
428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, feeSchedProcedureGroupAdjust, options);
|
|
453
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
430
|
},
|
|
455
431
|
}
|
|
@@ -466,75 +442,70 @@ export const FeeScheduleProcedureGroupAdjustmentsApiFactory = function (configur
|
|
|
466
442
|
* Creates a new FeeSchedProcedureGroupAdjust
|
|
467
443
|
* @summary Create FeeSchedProcedureGroupAdjust
|
|
468
444
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {string} feeSched Fee Sched
|
|
470
445
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
471
446
|
* @param {*} [options] Override http request option.
|
|
472
447
|
* @throws {RequiredError}
|
|
473
448
|
*/
|
|
474
|
-
createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
449
|
+
createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: any): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse> {
|
|
450
|
+
return localVarFp.createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options).then((request) => request(axios, basePath));
|
|
476
451
|
},
|
|
477
452
|
/**
|
|
478
453
|
* Deletes an FeeSchedProcedureGroupAdjust
|
|
479
454
|
* @summary Delete FeeSchedProcedureGroupAdjust
|
|
480
455
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {string} feeSched Fee Sched
|
|
482
456
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
483
457
|
* @param {*} [options] Override http request option.
|
|
484
458
|
* @throws {RequiredError}
|
|
485
459
|
*/
|
|
486
|
-
deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
460
|
+
deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: any): AxiosPromise<void> {
|
|
461
|
+
return localVarFp.deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options).then((request) => request(axios, basePath));
|
|
488
462
|
},
|
|
489
463
|
/**
|
|
490
464
|
* Gets FeeSchedProcedureGroupAdjust
|
|
491
465
|
* @summary Get FeeSchedProcedureGroupAdjust
|
|
492
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {string} feeSched Fee Sched
|
|
494
467
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
495
468
|
* @param {*} [options] Override http request option.
|
|
496
469
|
* @throws {RequiredError}
|
|
497
470
|
*/
|
|
498
|
-
getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
499
|
-
return localVarFp.getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
471
|
+
getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: any): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse> {
|
|
472
|
+
return localVarFp.getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options).then((request) => request(axios, basePath));
|
|
500
473
|
},
|
|
501
474
|
/**
|
|
502
|
-
* Lists all FeeSchedProcedureGroupAdjust
|
|
475
|
+
* Lists all FeeSchedProcedureGroupAdjust
|
|
503
476
|
* @summary List FeeSchedProcedureGroupAdjust
|
|
504
477
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
|
-
* @param {string}
|
|
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.
|
|
506
479
|
* @param {number} [page] Page
|
|
507
480
|
* @param {number} [pageSize] Page Size
|
|
508
481
|
* @param {*} [options] Override http request option.
|
|
509
482
|
* @throws {RequiredError}
|
|
510
483
|
*/
|
|
511
|
-
listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
512
|
-
return localVarFp.listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
484
|
+
listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<FeeSchedProcedureGroupAdjustListVBAResponse> {
|
|
485
|
+
return localVarFp.listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
486
|
},
|
|
514
487
|
/**
|
|
515
488
|
* Create or Update multiple FeeSchedProcedureGroupAdjust at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
516
489
|
* @summary Create or Update Batch FeeSchedProcedureGroupAdjust
|
|
517
490
|
* @param {string} vbasoftwareDatabase Target database
|
|
518
|
-
* @param {string} feeSched Fee Sched
|
|
519
491
|
* @param {Array<FeeSchedProcedureGroupAdjust>} feeSchedProcedureGroupAdjust
|
|
520
492
|
* @param {*} [options] Override http request option.
|
|
521
493
|
* @throws {RequiredError}
|
|
522
494
|
*/
|
|
523
|
-
updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
524
|
-
return localVarFp.updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
495
|
+
updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: Array<FeeSchedProcedureGroupAdjust>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
496
|
+
return localVarFp.updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options).then((request) => request(axios, basePath));
|
|
525
497
|
},
|
|
526
498
|
/**
|
|
527
499
|
* Updates a specific FeeSchedProcedureGroupAdjust.
|
|
528
500
|
* @summary Update FeeSchedProcedureGroupAdjust
|
|
529
501
|
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
-
* @param {string} feeSched Fee Sched
|
|
531
502
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
532
503
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
533
504
|
* @param {*} [options] Override http request option.
|
|
534
505
|
* @throws {RequiredError}
|
|
535
506
|
*/
|
|
536
|
-
updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
537
|
-
return localVarFp.updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
507
|
+
updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: any): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse> {
|
|
508
|
+
return localVarFp.updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, feeSchedProcedureGroupAdjust, options).then((request) => request(axios, basePath));
|
|
538
509
|
},
|
|
539
510
|
};
|
|
540
511
|
};
|
|
@@ -549,75 +520,70 @@ export interface FeeScheduleProcedureGroupAdjustmentsApiInterface {
|
|
|
549
520
|
* Creates a new FeeSchedProcedureGroupAdjust
|
|
550
521
|
* @summary Create FeeSchedProcedureGroupAdjust
|
|
551
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {string} feeSched Fee Sched
|
|
553
523
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
554
524
|
* @param {*} [options] Override http request option.
|
|
555
525
|
* @throws {RequiredError}
|
|
556
526
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
557
527
|
*/
|
|
558
|
-
createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
528
|
+
createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>;
|
|
559
529
|
|
|
560
530
|
/**
|
|
561
531
|
* Deletes an FeeSchedProcedureGroupAdjust
|
|
562
532
|
* @summary Delete FeeSchedProcedureGroupAdjust
|
|
563
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {string} feeSched Fee Sched
|
|
565
534
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
566
535
|
* @param {*} [options] Override http request option.
|
|
567
536
|
* @throws {RequiredError}
|
|
568
537
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
569
538
|
*/
|
|
570
|
-
deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
539
|
+
deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
571
540
|
|
|
572
541
|
/**
|
|
573
542
|
* Gets FeeSchedProcedureGroupAdjust
|
|
574
543
|
* @summary Get FeeSchedProcedureGroupAdjust
|
|
575
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
-
* @param {string} feeSched Fee Sched
|
|
577
545
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
578
546
|
* @param {*} [options] Override http request option.
|
|
579
547
|
* @throws {RequiredError}
|
|
580
548
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
581
549
|
*/
|
|
582
|
-
getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
550
|
+
getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>;
|
|
583
551
|
|
|
584
552
|
/**
|
|
585
|
-
* Lists all FeeSchedProcedureGroupAdjust
|
|
553
|
+
* Lists all FeeSchedProcedureGroupAdjust
|
|
586
554
|
* @summary List FeeSchedProcedureGroupAdjust
|
|
587
555
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {string}
|
|
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.
|
|
589
557
|
* @param {number} [page] Page
|
|
590
558
|
* @param {number} [pageSize] Page Size
|
|
591
559
|
* @param {*} [options] Override http request option.
|
|
592
560
|
* @throws {RequiredError}
|
|
593
561
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
594
562
|
*/
|
|
595
|
-
listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
563
|
+
listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedProcedureGroupAdjustListVBAResponse>;
|
|
596
564
|
|
|
597
565
|
/**
|
|
598
566
|
* Create or Update multiple FeeSchedProcedureGroupAdjust at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
599
567
|
* @summary Create or Update Batch FeeSchedProcedureGroupAdjust
|
|
600
568
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {string} feeSched Fee Sched
|
|
602
569
|
* @param {Array<FeeSchedProcedureGroupAdjust>} feeSchedProcedureGroupAdjust
|
|
603
570
|
* @param {*} [options] Override http request option.
|
|
604
571
|
* @throws {RequiredError}
|
|
605
572
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
606
573
|
*/
|
|
607
|
-
updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
574
|
+
updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: Array<FeeSchedProcedureGroupAdjust>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
608
575
|
|
|
609
576
|
/**
|
|
610
577
|
* Updates a specific FeeSchedProcedureGroupAdjust.
|
|
611
578
|
* @summary Update FeeSchedProcedureGroupAdjust
|
|
612
579
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
|
-
* @param {string} feeSched Fee Sched
|
|
614
580
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
615
581
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
616
582
|
* @param {*} [options] Override http request option.
|
|
617
583
|
* @throws {RequiredError}
|
|
618
584
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApiInterface
|
|
619
585
|
*/
|
|
620
|
-
updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
586
|
+
updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig): AxiosPromise<FeeSchedProcedureGroupAdjustVBAResponse>;
|
|
621
587
|
|
|
622
588
|
}
|
|
623
589
|
|
|
@@ -632,85 +598,80 @@ export class FeeScheduleProcedureGroupAdjustmentsApi extends BaseAPI implements
|
|
|
632
598
|
* Creates a new FeeSchedProcedureGroupAdjust
|
|
633
599
|
* @summary Create FeeSchedProcedureGroupAdjust
|
|
634
600
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {string} feeSched Fee Sched
|
|
636
601
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
637
602
|
* @param {*} [options] Override http request option.
|
|
638
603
|
* @throws {RequiredError}
|
|
639
604
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
640
605
|
*/
|
|
641
|
-
public createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
642
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
606
|
+
public createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig) {
|
|
607
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).createFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options).then((request) => request(this.axios, this.basePath));
|
|
643
608
|
}
|
|
644
609
|
|
|
645
610
|
/**
|
|
646
611
|
* Deletes an FeeSchedProcedureGroupAdjust
|
|
647
612
|
* @summary Delete FeeSchedProcedureGroupAdjust
|
|
648
613
|
* @param {string} vbasoftwareDatabase Target database
|
|
649
|
-
* @param {string} feeSched Fee Sched
|
|
650
614
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
651
615
|
* @param {*} [options] Override http request option.
|
|
652
616
|
* @throws {RequiredError}
|
|
653
617
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
654
618
|
*/
|
|
655
|
-
public deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
656
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
619
|
+
public deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig) {
|
|
620
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).deleteFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options).then((request) => request(this.axios, this.basePath));
|
|
657
621
|
}
|
|
658
622
|
|
|
659
623
|
/**
|
|
660
624
|
* Gets FeeSchedProcedureGroupAdjust
|
|
661
625
|
* @summary Get FeeSchedProcedureGroupAdjust
|
|
662
626
|
* @param {string} vbasoftwareDatabase Target database
|
|
663
|
-
* @param {string} feeSched Fee Sched
|
|
664
627
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
665
628
|
* @param {*} [options] Override http request option.
|
|
666
629
|
* @throws {RequiredError}
|
|
667
630
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
668
631
|
*/
|
|
669
|
-
public getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
670
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
632
|
+
public getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, options?: AxiosRequestConfig) {
|
|
633
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).getFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, options).then((request) => request(this.axios, this.basePath));
|
|
671
634
|
}
|
|
672
635
|
|
|
673
636
|
/**
|
|
674
|
-
* Lists all FeeSchedProcedureGroupAdjust
|
|
637
|
+
* Lists all FeeSchedProcedureGroupAdjust
|
|
675
638
|
* @summary List FeeSchedProcedureGroupAdjust
|
|
676
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {string}
|
|
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.
|
|
678
641
|
* @param {number} [page] Page
|
|
679
642
|
* @param {number} [pageSize] Page Size
|
|
680
643
|
* @param {*} [options] Override http request option.
|
|
681
644
|
* @throws {RequiredError}
|
|
682
645
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
683
646
|
*/
|
|
684
|
-
public listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
685
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
647
|
+
public listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).listFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
649
|
}
|
|
687
650
|
|
|
688
651
|
/**
|
|
689
652
|
* Create or Update multiple FeeSchedProcedureGroupAdjust at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
690
653
|
* @summary Create or Update Batch FeeSchedProcedureGroupAdjust
|
|
691
654
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {string} feeSched Fee Sched
|
|
693
655
|
* @param {Array<FeeSchedProcedureGroupAdjust>} feeSchedProcedureGroupAdjust
|
|
694
656
|
* @param {*} [options] Override http request option.
|
|
695
657
|
* @throws {RequiredError}
|
|
696
658
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
697
659
|
*/
|
|
698
|
-
public updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
699
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
660
|
+
public updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjust: Array<FeeSchedProcedureGroupAdjust>, options?: AxiosRequestConfig) {
|
|
661
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).updateBatchFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjust, options).then((request) => request(this.axios, this.basePath));
|
|
700
662
|
}
|
|
701
663
|
|
|
702
664
|
/**
|
|
703
665
|
* Updates a specific FeeSchedProcedureGroupAdjust.
|
|
704
666
|
* @summary Update FeeSchedProcedureGroupAdjust
|
|
705
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
|
-
* @param {string} feeSched Fee Sched
|
|
707
668
|
* @param {number} feeSchedProcedureGroupAdjustKey FeeSchedProcedureGroupAdjust Key
|
|
708
669
|
* @param {FeeSchedProcedureGroupAdjust} feeSchedProcedureGroupAdjust
|
|
709
670
|
* @param {*} [options] Override http request option.
|
|
710
671
|
* @throws {RequiredError}
|
|
711
672
|
* @memberof FeeScheduleProcedureGroupAdjustmentsApi
|
|
712
673
|
*/
|
|
713
|
-
public updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string,
|
|
714
|
-
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase,
|
|
674
|
+
public updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase: string, feeSchedProcedureGroupAdjustKey: number, feeSchedProcedureGroupAdjust: FeeSchedProcedureGroupAdjust, options?: AxiosRequestConfig) {
|
|
675
|
+
return FeeScheduleProcedureGroupAdjustmentsApiFp(this.configuration).updateFeeSchedProcedureGroupAdjust(vbasoftwareDatabase, feeSchedProcedureGroupAdjustKey, feeSchedProcedureGroupAdjust, options).then((request) => request(this.axios, this.basePath));
|
|
715
676
|
}
|
|
716
677
|
}
|