@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
|
@@ -29,29 +29,25 @@ import { FeeSchedAnesthesiaVBAResponse } from '../models';
|
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { MultiCodeResponseListVBAResponse } from '../models';
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* FeeScheduleAnesthesiasApi - axios parameter creator
|
|
33
33
|
* @export
|
|
34
34
|
*/
|
|
35
|
-
export const
|
|
35
|
+
export const FeeScheduleAnesthesiasApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
36
|
return {
|
|
37
37
|
/**
|
|
38
38
|
* Creates a new FeeSchedAnesthesia
|
|
39
39
|
* @summary Create FeeSchedAnesthesia
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {string} feeSched Fee Sched
|
|
42
41
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
45
|
+
createFeeSchedAnesthesia: async (vbasoftwareDatabase: string, feeSchedAnesthesia: FeeSchedAnesthesia, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
50
|
-
assertParamExists('createFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
51
48
|
// verify required parameter 'feeSchedAnesthesia' is not null or undefined
|
|
52
49
|
assertParamExists('createFeeSchedAnesthesia', 'feeSchedAnesthesia', feeSchedAnesthesia)
|
|
53
|
-
const localVarPath = `/fee-
|
|
54
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
50
|
+
const localVarPath = `/fee-schedule-anesthesias`;
|
|
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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
92
88
|
* Deletes an FeeSchedAnesthesia
|
|
93
89
|
* @summary Delete FeeSchedAnesthesia
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {string} feeSched Fee Sched
|
|
96
91
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteFeeSchedAnesthesia: async (vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
104
|
-
assertParamExists('deleteFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
105
98
|
// verify required parameter 'feeSchedAnesthesiaKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteFeeSchedAnesthesia', 'feeSchedAnesthesiaKey', feeSchedAnesthesiaKey)
|
|
107
|
-
const localVarPath = `/fee-
|
|
108
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
100
|
+
const localVarPath = `/fee-schedule-anesthesias/{feeSchedAnesthesiaKey}`
|
|
109
101
|
.replace(`{${"feeSchedAnesthesiaKey"}}`, encodeURIComponent(String(feeSchedAnesthesiaKey)));
|
|
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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
144
136
|
* Gets FeeSchedAnesthesia
|
|
145
137
|
* @summary Get FeeSchedAnesthesia
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {string} feeSched Fee Sched
|
|
148
139
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
143
|
+
getFeeSchedAnesthesia: async (vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
156
|
-
assertParamExists('getFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
157
146
|
// verify required parameter 'feeSchedAnesthesiaKey' is not null or undefined
|
|
158
147
|
assertParamExists('getFeeSchedAnesthesia', 'feeSchedAnesthesiaKey', feeSchedAnesthesiaKey)
|
|
159
|
-
const localVarPath = `/fee-
|
|
160
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
148
|
+
const localVarPath = `/fee-schedule-anesthesias/{feeSchedAnesthesiaKey}`
|
|
161
149
|
.replace(`{${"feeSchedAnesthesiaKey"}}`, encodeURIComponent(String(feeSchedAnesthesiaKey)));
|
|
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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all FeeSchedAnesthesia
|
|
184
|
+
* Lists all FeeSchedAnesthesia
|
|
197
185
|
* @summary List FeeSchedAnesthesia
|
|
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
|
-
listFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
193
|
+
listFeeSchedAnesthesia: 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('listFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
208
|
-
|
|
209
|
-
assertParamExists('listFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
210
|
-
const localVarPath = `/fee-schedules/{feeSched}/anesthesias`
|
|
211
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
196
|
+
const localVarPath = `/fee-schedule-anesthesias`;
|
|
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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
254
243
|
* Create or Update multiple FeeSchedAnesthesia 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 FeeSchedAnesthesia
|
|
256
245
|
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
-
* @param {string} feeSched Fee Sched
|
|
258
246
|
* @param {Array<FeeSchedAnesthesia>} feeSchedAnesthesia
|
|
259
247
|
* @param {*} [options] Override http request option.
|
|
260
248
|
* @throws {RequiredError}
|
|
261
249
|
*/
|
|
262
|
-
updateBatchFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
250
|
+
updateBatchFeeSchedAnesthesia: async (vbasoftwareDatabase: string, feeSchedAnesthesia: Array<FeeSchedAnesthesia>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
263
251
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
264
252
|
assertParamExists('updateBatchFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
265
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
266
|
-
assertParamExists('updateBatchFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
267
253
|
// verify required parameter 'feeSchedAnesthesia' is not null or undefined
|
|
268
254
|
assertParamExists('updateBatchFeeSchedAnesthesia', 'feeSchedAnesthesia', feeSchedAnesthesia)
|
|
269
|
-
const localVarPath = `/fee-
|
|
270
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
255
|
+
const localVarPath = `/fee-schedule-anesthesias-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 FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
308
293
|
* Updates a specific FeeSchedAnesthesia.
|
|
309
294
|
* @summary Update FeeSchedAnesthesia
|
|
310
295
|
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
-
* @param {string} feeSched Fee Sched
|
|
312
296
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
313
297
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
314
298
|
* @param {*} [options] Override http request option.
|
|
315
299
|
* @throws {RequiredError}
|
|
316
300
|
*/
|
|
317
|
-
updateFeeSchedAnesthesia: async (vbasoftwareDatabase: string,
|
|
301
|
+
updateFeeSchedAnesthesia: async (vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, feeSchedAnesthesia: FeeSchedAnesthesia, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
302
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
319
303
|
assertParamExists('updateFeeSchedAnesthesia', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
320
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
321
|
-
assertParamExists('updateFeeSchedAnesthesia', 'feeSched', feeSched)
|
|
322
304
|
// verify required parameter 'feeSchedAnesthesiaKey' is not null or undefined
|
|
323
305
|
assertParamExists('updateFeeSchedAnesthesia', 'feeSchedAnesthesiaKey', feeSchedAnesthesiaKey)
|
|
324
306
|
// verify required parameter 'feeSchedAnesthesia' is not null or undefined
|
|
325
307
|
assertParamExists('updateFeeSchedAnesthesia', 'feeSchedAnesthesia', feeSchedAnesthesia)
|
|
326
|
-
const localVarPath = `/fee-
|
|
327
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
308
|
+
const localVarPath = `/fee-schedule-anesthesias/{feeSchedAnesthesiaKey}`
|
|
328
309
|
.replace(`{${"feeSchedAnesthesiaKey"}}`, encodeURIComponent(String(feeSchedAnesthesiaKey)));
|
|
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);
|
|
@@ -366,351 +347,331 @@ export const FeeScheduleAnesthesiaApiAxiosParamCreator = function (configuration
|
|
|
366
347
|
};
|
|
367
348
|
|
|
368
349
|
/**
|
|
369
|
-
*
|
|
350
|
+
* FeeScheduleAnesthesiasApi - functional programming interface
|
|
370
351
|
* @export
|
|
371
352
|
*/
|
|
372
|
-
export const
|
|
373
|
-
const localVarAxiosParamCreator =
|
|
353
|
+
export const FeeScheduleAnesthesiasApiFp = function(configuration?: Configuration) {
|
|
354
|
+
const localVarAxiosParamCreator = FeeScheduleAnesthesiasApiAxiosParamCreator(configuration)
|
|
374
355
|
return {
|
|
375
356
|
/**
|
|
376
357
|
* Creates a new FeeSchedAnesthesia
|
|
377
358
|
* @summary Create FeeSchedAnesthesia
|
|
378
359
|
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
-
* @param {string} feeSched Fee Sched
|
|
380
360
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
381
361
|
* @param {*} [options] Override http request option.
|
|
382
362
|
* @throws {RequiredError}
|
|
383
363
|
*/
|
|
384
|
-
async createFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
385
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
364
|
+
async createFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedAnesthesiaVBAResponse>> {
|
|
365
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options);
|
|
386
366
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
387
367
|
},
|
|
388
368
|
/**
|
|
389
369
|
* Deletes an FeeSchedAnesthesia
|
|
390
370
|
* @summary Delete FeeSchedAnesthesia
|
|
391
371
|
* @param {string} vbasoftwareDatabase Target database
|
|
392
|
-
* @param {string} feeSched Fee Sched
|
|
393
372
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
394
373
|
* @param {*} [options] Override http request option.
|
|
395
374
|
* @throws {RequiredError}
|
|
396
375
|
*/
|
|
397
|
-
async deleteFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
398
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
376
|
+
async deleteFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
377
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options);
|
|
399
378
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
400
379
|
},
|
|
401
380
|
/**
|
|
402
381
|
* Gets FeeSchedAnesthesia
|
|
403
382
|
* @summary Get FeeSchedAnesthesia
|
|
404
383
|
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
-
* @param {string} feeSched Fee Sched
|
|
406
384
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
407
385
|
* @param {*} [options] Override http request option.
|
|
408
386
|
* @throws {RequiredError}
|
|
409
387
|
*/
|
|
410
|
-
async getFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
411
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
388
|
+
async getFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedAnesthesiaVBAResponse>> {
|
|
389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options);
|
|
412
390
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
413
391
|
},
|
|
414
392
|
/**
|
|
415
|
-
* Lists all FeeSchedAnesthesia
|
|
393
|
+
* Lists all FeeSchedAnesthesia
|
|
416
394
|
* @summary List FeeSchedAnesthesia
|
|
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 listFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
425
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
402
|
+
async listFeeSchedAnesthesia(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedAnesthesiaListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedAnesthesia(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
426
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
405
|
},
|
|
428
406
|
/**
|
|
429
407
|
* Create or Update multiple FeeSchedAnesthesia 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 FeeSchedAnesthesia
|
|
431
409
|
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
-
* @param {string} feeSched Fee Sched
|
|
433
410
|
* @param {Array<FeeSchedAnesthesia>} feeSchedAnesthesia
|
|
434
411
|
* @param {*} [options] Override http request option.
|
|
435
412
|
* @throws {RequiredError}
|
|
436
413
|
*/
|
|
437
|
-
async updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
414
|
+
async updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: Array<FeeSchedAnesthesia>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options);
|
|
439
416
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
417
|
},
|
|
441
418
|
/**
|
|
442
419
|
* Updates a specific FeeSchedAnesthesia.
|
|
443
420
|
* @summary Update FeeSchedAnesthesia
|
|
444
421
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {string} feeSched Fee Sched
|
|
446
422
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
447
423
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
448
424
|
* @param {*} [options] Override http request option.
|
|
449
425
|
* @throws {RequiredError}
|
|
450
426
|
*/
|
|
451
|
-
async updateFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
427
|
+
async updateFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedAnesthesiaVBAResponse>> {
|
|
428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, feeSchedAnesthesia, options);
|
|
453
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
430
|
},
|
|
455
431
|
}
|
|
456
432
|
};
|
|
457
433
|
|
|
458
434
|
/**
|
|
459
|
-
*
|
|
435
|
+
* FeeScheduleAnesthesiasApi - factory interface
|
|
460
436
|
* @export
|
|
461
437
|
*/
|
|
462
|
-
export const
|
|
463
|
-
const localVarFp =
|
|
438
|
+
export const FeeScheduleAnesthesiasApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
439
|
+
const localVarFp = FeeScheduleAnesthesiasApiFp(configuration)
|
|
464
440
|
return {
|
|
465
441
|
/**
|
|
466
442
|
* Creates a new FeeSchedAnesthesia
|
|
467
443
|
* @summary Create FeeSchedAnesthesia
|
|
468
444
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {string} feeSched Fee Sched
|
|
470
445
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
471
446
|
* @param {*} [options] Override http request option.
|
|
472
447
|
* @throws {RequiredError}
|
|
473
448
|
*/
|
|
474
|
-
createFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.createFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
449
|
+
createFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: FeeSchedAnesthesia, options?: any): AxiosPromise<FeeSchedAnesthesiaVBAResponse> {
|
|
450
|
+
return localVarFp.createFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options).then((request) => request(axios, basePath));
|
|
476
451
|
},
|
|
477
452
|
/**
|
|
478
453
|
* Deletes an FeeSchedAnesthesia
|
|
479
454
|
* @summary Delete FeeSchedAnesthesia
|
|
480
455
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {string} feeSched Fee Sched
|
|
482
456
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
483
457
|
* @param {*} [options] Override http request option.
|
|
484
458
|
* @throws {RequiredError}
|
|
485
459
|
*/
|
|
486
|
-
deleteFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.deleteFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
460
|
+
deleteFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: any): AxiosPromise<void> {
|
|
461
|
+
return localVarFp.deleteFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options).then((request) => request(axios, basePath));
|
|
488
462
|
},
|
|
489
463
|
/**
|
|
490
464
|
* Gets FeeSchedAnesthesia
|
|
491
465
|
* @summary Get FeeSchedAnesthesia
|
|
492
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {string} feeSched Fee Sched
|
|
494
467
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
495
468
|
* @param {*} [options] Override http request option.
|
|
496
469
|
* @throws {RequiredError}
|
|
497
470
|
*/
|
|
498
|
-
getFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
499
|
-
return localVarFp.getFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
471
|
+
getFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: any): AxiosPromise<FeeSchedAnesthesiaVBAResponse> {
|
|
472
|
+
return localVarFp.getFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options).then((request) => request(axios, basePath));
|
|
500
473
|
},
|
|
501
474
|
/**
|
|
502
|
-
* Lists all FeeSchedAnesthesia
|
|
475
|
+
* Lists all FeeSchedAnesthesia
|
|
503
476
|
* @summary List FeeSchedAnesthesia
|
|
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
|
-
listFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
512
|
-
return localVarFp.listFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
484
|
+
listFeeSchedAnesthesia(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<FeeSchedAnesthesiaListVBAResponse> {
|
|
485
|
+
return localVarFp.listFeeSchedAnesthesia(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
486
|
},
|
|
514
487
|
/**
|
|
515
488
|
* Create or Update multiple FeeSchedAnesthesia 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 FeeSchedAnesthesia
|
|
517
490
|
* @param {string} vbasoftwareDatabase Target database
|
|
518
|
-
* @param {string} feeSched Fee Sched
|
|
519
491
|
* @param {Array<FeeSchedAnesthesia>} feeSchedAnesthesia
|
|
520
492
|
* @param {*} [options] Override http request option.
|
|
521
493
|
* @throws {RequiredError}
|
|
522
494
|
*/
|
|
523
|
-
updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
524
|
-
return localVarFp.updateBatchFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
495
|
+
updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: Array<FeeSchedAnesthesia>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
496
|
+
return localVarFp.updateBatchFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options).then((request) => request(axios, basePath));
|
|
525
497
|
},
|
|
526
498
|
/**
|
|
527
499
|
* Updates a specific FeeSchedAnesthesia.
|
|
528
500
|
* @summary Update FeeSchedAnesthesia
|
|
529
501
|
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
-
* @param {string} feeSched Fee Sched
|
|
531
502
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
532
503
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
533
504
|
* @param {*} [options] Override http request option.
|
|
534
505
|
* @throws {RequiredError}
|
|
535
506
|
*/
|
|
536
|
-
updateFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
537
|
-
return localVarFp.updateFeeSchedAnesthesia(vbasoftwareDatabase,
|
|
507
|
+
updateFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, feeSchedAnesthesia: FeeSchedAnesthesia, options?: any): AxiosPromise<FeeSchedAnesthesiaVBAResponse> {
|
|
508
|
+
return localVarFp.updateFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, feeSchedAnesthesia, options).then((request) => request(axios, basePath));
|
|
538
509
|
},
|
|
539
510
|
};
|
|
540
511
|
};
|
|
541
512
|
|
|
542
513
|
/**
|
|
543
|
-
*
|
|
514
|
+
* FeeScheduleAnesthesiasApi - interface
|
|
544
515
|
* @export
|
|
545
|
-
* @interface
|
|
516
|
+
* @interface FeeScheduleAnesthesiasApi
|
|
546
517
|
*/
|
|
547
|
-
export interface
|
|
518
|
+
export interface FeeScheduleAnesthesiasApiInterface {
|
|
548
519
|
/**
|
|
549
520
|
* Creates a new FeeSchedAnesthesia
|
|
550
521
|
* @summary Create FeeSchedAnesthesia
|
|
551
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {string} feeSched Fee Sched
|
|
553
523
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
554
524
|
* @param {*} [options] Override http request option.
|
|
555
525
|
* @throws {RequiredError}
|
|
556
|
-
* @memberof
|
|
526
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
557
527
|
*/
|
|
558
|
-
createFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
528
|
+
createFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig): AxiosPromise<FeeSchedAnesthesiaVBAResponse>;
|
|
559
529
|
|
|
560
530
|
/**
|
|
561
531
|
* Deletes an FeeSchedAnesthesia
|
|
562
532
|
* @summary Delete FeeSchedAnesthesia
|
|
563
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {string} feeSched Fee Sched
|
|
565
534
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
566
535
|
* @param {*} [options] Override http request option.
|
|
567
536
|
* @throws {RequiredError}
|
|
568
|
-
* @memberof
|
|
537
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
569
538
|
*/
|
|
570
|
-
deleteFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
539
|
+
deleteFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
571
540
|
|
|
572
541
|
/**
|
|
573
542
|
* Gets FeeSchedAnesthesia
|
|
574
543
|
* @summary Get FeeSchedAnesthesia
|
|
575
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
-
* @param {string} feeSched Fee Sched
|
|
577
545
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
578
546
|
* @param {*} [options] Override http request option.
|
|
579
547
|
* @throws {RequiredError}
|
|
580
|
-
* @memberof
|
|
548
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
581
549
|
*/
|
|
582
|
-
getFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
550
|
+
getFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedAnesthesiaVBAResponse>;
|
|
583
551
|
|
|
584
552
|
/**
|
|
585
|
-
* Lists all FeeSchedAnesthesia
|
|
553
|
+
* Lists all FeeSchedAnesthesia
|
|
586
554
|
* @summary List FeeSchedAnesthesia
|
|
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
|
-
* @memberof
|
|
561
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
594
562
|
*/
|
|
595
|
-
listFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
563
|
+
listFeeSchedAnesthesia(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedAnesthesiaListVBAResponse>;
|
|
596
564
|
|
|
597
565
|
/**
|
|
598
566
|
* Create or Update multiple FeeSchedAnesthesia 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 FeeSchedAnesthesia
|
|
600
568
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {string} feeSched Fee Sched
|
|
602
569
|
* @param {Array<FeeSchedAnesthesia>} feeSchedAnesthesia
|
|
603
570
|
* @param {*} [options] Override http request option.
|
|
604
571
|
* @throws {RequiredError}
|
|
605
|
-
* @memberof
|
|
572
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
606
573
|
*/
|
|
607
|
-
updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
574
|
+
updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: Array<FeeSchedAnesthesia>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
608
575
|
|
|
609
576
|
/**
|
|
610
577
|
* Updates a specific FeeSchedAnesthesia.
|
|
611
578
|
* @summary Update FeeSchedAnesthesia
|
|
612
579
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
|
-
* @param {string} feeSched Fee Sched
|
|
614
580
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
615
581
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
616
582
|
* @param {*} [options] Override http request option.
|
|
617
583
|
* @throws {RequiredError}
|
|
618
|
-
* @memberof
|
|
584
|
+
* @memberof FeeScheduleAnesthesiasApiInterface
|
|
619
585
|
*/
|
|
620
|
-
updateFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
586
|
+
updateFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig): AxiosPromise<FeeSchedAnesthesiaVBAResponse>;
|
|
621
587
|
|
|
622
588
|
}
|
|
623
589
|
|
|
624
590
|
/**
|
|
625
|
-
*
|
|
591
|
+
* FeeScheduleAnesthesiasApi - object-oriented interface
|
|
626
592
|
* @export
|
|
627
|
-
* @class
|
|
593
|
+
* @class FeeScheduleAnesthesiasApi
|
|
628
594
|
* @extends {BaseAPI}
|
|
629
595
|
*/
|
|
630
|
-
export class
|
|
596
|
+
export class FeeScheduleAnesthesiasApi extends BaseAPI implements FeeScheduleAnesthesiasApiInterface {
|
|
631
597
|
/**
|
|
632
598
|
* Creates a new FeeSchedAnesthesia
|
|
633
599
|
* @summary Create FeeSchedAnesthesia
|
|
634
600
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {string} feeSched Fee Sched
|
|
636
601
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
637
602
|
* @param {*} [options] Override http request option.
|
|
638
603
|
* @throws {RequiredError}
|
|
639
|
-
* @memberof
|
|
604
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
640
605
|
*/
|
|
641
|
-
public createFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
642
|
-
return
|
|
606
|
+
public createFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig) {
|
|
607
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).createFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options).then((request) => request(this.axios, this.basePath));
|
|
643
608
|
}
|
|
644
609
|
|
|
645
610
|
/**
|
|
646
611
|
* Deletes an FeeSchedAnesthesia
|
|
647
612
|
* @summary Delete FeeSchedAnesthesia
|
|
648
613
|
* @param {string} vbasoftwareDatabase Target database
|
|
649
|
-
* @param {string} feeSched Fee Sched
|
|
650
614
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
651
615
|
* @param {*} [options] Override http request option.
|
|
652
616
|
* @throws {RequiredError}
|
|
653
|
-
* @memberof
|
|
617
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
654
618
|
*/
|
|
655
|
-
public deleteFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
656
|
-
return
|
|
619
|
+
public deleteFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig) {
|
|
620
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).deleteFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options).then((request) => request(this.axios, this.basePath));
|
|
657
621
|
}
|
|
658
622
|
|
|
659
623
|
/**
|
|
660
624
|
* Gets FeeSchedAnesthesia
|
|
661
625
|
* @summary Get FeeSchedAnesthesia
|
|
662
626
|
* @param {string} vbasoftwareDatabase Target database
|
|
663
|
-
* @param {string} feeSched Fee Sched
|
|
664
627
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
665
628
|
* @param {*} [options] Override http request option.
|
|
666
629
|
* @throws {RequiredError}
|
|
667
|
-
* @memberof
|
|
630
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
668
631
|
*/
|
|
669
|
-
public getFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
670
|
-
return
|
|
632
|
+
public getFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, options?: AxiosRequestConfig) {
|
|
633
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).getFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, options).then((request) => request(this.axios, this.basePath));
|
|
671
634
|
}
|
|
672
635
|
|
|
673
636
|
/**
|
|
674
|
-
* Lists all FeeSchedAnesthesia
|
|
637
|
+
* Lists all FeeSchedAnesthesia
|
|
675
638
|
* @summary List FeeSchedAnesthesia
|
|
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
|
-
* @memberof
|
|
645
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
683
646
|
*/
|
|
684
|
-
public listFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
685
|
-
return
|
|
647
|
+
public listFeeSchedAnesthesia(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).listFeeSchedAnesthesia(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
649
|
}
|
|
687
650
|
|
|
688
651
|
/**
|
|
689
652
|
* Create or Update multiple FeeSchedAnesthesia 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 FeeSchedAnesthesia
|
|
691
654
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {string} feeSched Fee Sched
|
|
693
655
|
* @param {Array<FeeSchedAnesthesia>} feeSchedAnesthesia
|
|
694
656
|
* @param {*} [options] Override http request option.
|
|
695
657
|
* @throws {RequiredError}
|
|
696
|
-
* @memberof
|
|
658
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
697
659
|
*/
|
|
698
|
-
public updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
699
|
-
return
|
|
660
|
+
public updateBatchFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesia: Array<FeeSchedAnesthesia>, options?: AxiosRequestConfig) {
|
|
661
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).updateBatchFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesia, options).then((request) => request(this.axios, this.basePath));
|
|
700
662
|
}
|
|
701
663
|
|
|
702
664
|
/**
|
|
703
665
|
* Updates a specific FeeSchedAnesthesia.
|
|
704
666
|
* @summary Update FeeSchedAnesthesia
|
|
705
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
|
-
* @param {string} feeSched Fee Sched
|
|
707
668
|
* @param {number} feeSchedAnesthesiaKey FeeSchedAnesthesia Key
|
|
708
669
|
* @param {FeeSchedAnesthesia} feeSchedAnesthesia
|
|
709
670
|
* @param {*} [options] Override http request option.
|
|
710
671
|
* @throws {RequiredError}
|
|
711
|
-
* @memberof
|
|
672
|
+
* @memberof FeeScheduleAnesthesiasApi
|
|
712
673
|
*/
|
|
713
|
-
public updateFeeSchedAnesthesia(vbasoftwareDatabase: string,
|
|
714
|
-
return
|
|
674
|
+
public updateFeeSchedAnesthesia(vbasoftwareDatabase: string, feeSchedAnesthesiaKey: number, feeSchedAnesthesia: FeeSchedAnesthesia, options?: AxiosRequestConfig) {
|
|
675
|
+
return FeeScheduleAnesthesiasApiFp(this.configuration).updateFeeSchedAnesthesia(vbasoftwareDatabase, feeSchedAnesthesiaKey, feeSchedAnesthesia, options).then((request) => request(this.axios, this.basePath));
|
|
715
676
|
}
|
|
716
677
|
}
|