@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230928.1 → 1.20230930.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.
@@ -243,6 +243,7 @@ api/contact-assignments-api.ts
243
243
  api/contact-categories-api.ts
244
244
  api/contact-emails-api.ts
245
245
  api/contact-mappings-api.ts
246
+ api/contact-phone-api.ts
246
247
  api/contact-statuses-api.ts
247
248
  api/contacts-api.ts
248
249
  api/context4-health-cost-containment-case-index-api.ts
@@ -454,6 +455,7 @@ api/invoice-levels-api.ts
454
455
  api/invoice-reasons-api.ts
455
456
  api/invoice-status-api.ts
456
457
  api/invoice-types-api.ts
458
+ api/ipwhitelists-api.ts
457
459
  api/issue-duration-values-api.ts
458
460
  api/job-execution-metadata-api.ts
459
461
  api/job-executions-api.ts
@@ -1501,6 +1503,9 @@ models/contact-list-vbaresponse.ts
1501
1503
  models/contact-mapping-list-vbaresponse.ts
1502
1504
  models/contact-mapping-vbaresponse.ts
1503
1505
  models/contact-mapping.ts
1506
+ models/contact-phone-list-vbaresponse.ts
1507
+ models/contact-phone-vbaresponse.ts
1508
+ models/contact-phone.ts
1504
1509
  models/contact-status-list-vbaresponse.ts
1505
1510
  models/contact-status-vbaresponse.ts
1506
1511
  models/contact-status.ts
@@ -2090,6 +2095,9 @@ models/int32-vbaresponse.ts
2090
2095
  models/invoice-reason-list-vbaresponse.ts
2091
2096
  models/invoice-reason-vbaresponse.ts
2092
2097
  models/invoice-reason.ts
2098
+ models/ipwhitelist-list-vbaresponse.ts
2099
+ models/ipwhitelist-vbaresponse.ts
2100
+ models/ipwhitelist.ts
2093
2101
  models/irs1094-c.ts
2094
2102
  models/irs1094-clist-vbaresponse.ts
2095
2103
  models/irs1094-cvbaresponse.ts
@@ -97,8 +97,8 @@ export const ClaimQueuesApiAxiosParamCreator = function (configuration?: Configu
97
97
  assertParamExists('deleteClaimQueue', 'vbasoftwareDatabase', vbasoftwareDatabase)
98
98
  // verify required parameter 'claimQueueKey' is not null or undefined
99
99
  assertParamExists('deleteClaimQueue', 'claimQueueKey', claimQueueKey)
100
- const localVarPath = `/claim-queues/{claimQueueKey}`
101
- .replace(`{${"claimQueueKey"}}`, encodeURIComponent(String(claimQueueKey)));
100
+ const localVarPath = `/claim-queues/{claimQueue_Key}`
101
+ .replace(`{${"claimQueue_Key"}}`, encodeURIComponent(String(claimQueueKey)));
102
102
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
103
103
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
104
104
  let baseOptions;
@@ -145,8 +145,8 @@ export const ClaimQueuesApiAxiosParamCreator = function (configuration?: Configu
145
145
  assertParamExists('getClaimQueue', 'vbasoftwareDatabase', vbasoftwareDatabase)
146
146
  // verify required parameter 'claimQueueKey' is not null or undefined
147
147
  assertParamExists('getClaimQueue', 'claimQueueKey', claimQueueKey)
148
- const localVarPath = `/claim-queues/{claimQueueKey}`
149
- .replace(`{${"claimQueueKey"}}`, encodeURIComponent(String(claimQueueKey)));
148
+ const localVarPath = `/claim-queues/{claimQueue_Key}`
149
+ .replace(`{${"claimQueue_Key"}}`, encodeURIComponent(String(claimQueueKey)));
150
150
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
151
151
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
152
152
  let baseOptions;
@@ -184,12 +184,13 @@ export const ClaimQueuesApiAxiosParamCreator = function (configuration?: Configu
184
184
  * Lists all ClaimQueue
185
185
  * @summary List ClaimQueue
186
186
  * @param {string} vbasoftwareDatabase Target database
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.
187
188
  * @param {number} [page] Page
188
189
  * @param {number} [pageSize] Page Size
189
190
  * @param {*} [options] Override http request option.
190
191
  * @throws {RequiredError}
191
192
  */
192
- listClaimQueue: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
+ listClaimQueue: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
194
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
194
195
  assertParamExists('listClaimQueue', 'vbasoftwareDatabase', vbasoftwareDatabase)
195
196
  const localVarPath = `/claim-queues`;
@@ -211,6 +212,10 @@ export const ClaimQueuesApiAxiosParamCreator = function (configuration?: Configu
211
212
  // http bearer authentication required
212
213
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
213
214
 
215
+ if (sortBy !== undefined) {
216
+ localVarQueryParameter['sortBy'] = sortBy;
217
+ }
218
+
214
219
  if (page !== undefined) {
215
220
  localVarQueryParameter['page'] = page;
216
221
  }
@@ -300,8 +305,8 @@ export const ClaimQueuesApiAxiosParamCreator = function (configuration?: Configu
300
305
  assertParamExists('updateClaimQueue', 'claimQueueKey', claimQueueKey)
301
306
  // verify required parameter 'claimQueue' is not null or undefined
302
307
  assertParamExists('updateClaimQueue', 'claimQueue', claimQueue)
303
- const localVarPath = `/claim-queues/{claimQueueKey}`
304
- .replace(`{${"claimQueueKey"}}`, encodeURIComponent(String(claimQueueKey)));
308
+ const localVarPath = `/claim-queues/{claimQueue_Key}`
309
+ .replace(`{${"claimQueue_Key"}}`, encodeURIComponent(String(claimQueueKey)));
305
310
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
306
311
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
307
312
  let baseOptions;
@@ -388,13 +393,14 @@ export const ClaimQueuesApiFp = function(configuration?: Configuration) {
388
393
  * Lists all ClaimQueue
389
394
  * @summary List ClaimQueue
390
395
  * @param {string} vbasoftwareDatabase Target database
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.
391
397
  * @param {number} [page] Page
392
398
  * @param {number} [pageSize] Page Size
393
399
  * @param {*} [options] Override http request option.
394
400
  * @throws {RequiredError}
395
401
  */
396
- async listClaimQueue(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimQueueListVBAResponse>> {
397
- const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimQueue(vbasoftwareDatabase, page, pageSize, options);
402
+ async listClaimQueue(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimQueueListVBAResponse>> {
403
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimQueue(vbasoftwareDatabase, sortBy, page, pageSize, options);
398
404
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
399
405
  },
400
406
  /**
@@ -469,13 +475,14 @@ export const ClaimQueuesApiFactory = function (configuration?: Configuration, ba
469
475
  * Lists all ClaimQueue
470
476
  * @summary List ClaimQueue
471
477
  * @param {string} vbasoftwareDatabase Target database
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.
472
479
  * @param {number} [page] Page
473
480
  * @param {number} [pageSize] Page Size
474
481
  * @param {*} [options] Override http request option.
475
482
  * @throws {RequiredError}
476
483
  */
477
- listClaimQueue(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ClaimQueueListVBAResponse> {
478
- return localVarFp.listClaimQueue(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
484
+ listClaimQueue(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ClaimQueueListVBAResponse> {
485
+ return localVarFp.listClaimQueue(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
479
486
  },
480
487
  /**
481
488
  * Create or Update multiple ClaimQueue at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -546,13 +553,14 @@ export interface ClaimQueuesApiInterface {
546
553
  * Lists all ClaimQueue
547
554
  * @summary List ClaimQueue
548
555
  * @param {string} vbasoftwareDatabase Target database
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.
549
557
  * @param {number} [page] Page
550
558
  * @param {number} [pageSize] Page Size
551
559
  * @param {*} [options] Override http request option.
552
560
  * @throws {RequiredError}
553
561
  * @memberof ClaimQueuesApiInterface
554
562
  */
555
- listClaimQueue(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ClaimQueueListVBAResponse>;
563
+ listClaimQueue(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ClaimQueueListVBAResponse>;
556
564
 
557
565
  /**
558
566
  * Create or Update multiple ClaimQueue at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -629,14 +637,15 @@ export class ClaimQueuesApi extends BaseAPI implements ClaimQueuesApiInterface {
629
637
  * Lists all ClaimQueue
630
638
  * @summary List ClaimQueue
631
639
  * @param {string} vbasoftwareDatabase Target database
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.
632
641
  * @param {number} [page] Page
633
642
  * @param {number} [pageSize] Page Size
634
643
  * @param {*} [options] Override http request option.
635
644
  * @throws {RequiredError}
636
645
  * @memberof ClaimQueuesApi
637
646
  */
638
- public listClaimQueue(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
639
- return ClaimQueuesApiFp(this.configuration).listClaimQueue(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
647
+ public listClaimQueue(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
648
+ return ClaimQueuesApiFp(this.configuration).listClaimQueue(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
640
649
  }
641
650
 
642
651
  /**