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