@reposit/api-client 6.49.0 → 6.49.1-beta.0

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/dist/api.d.ts CHANGED
@@ -1540,6 +1540,7 @@ export interface OrganizationSettingsDTO {
1540
1540
  maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
1541
1541
  offerRepositEnabled?: boolean;
1542
1542
  inventoryChaserDisabled?: boolean;
1543
+ minimumFeeDisabled?: boolean;
1543
1544
  }
1544
1545
  export declare enum OrganizationSettingsDTOPricingRuleEnum {
1545
1546
  STANDARD = "STANDARD",
@@ -3166,7 +3167,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
3166
3167
  reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
3167
3168
  requestMoreInfoClaim(claimId: string, requestInfoClaimDTO: RequestInfoClaimDTO, options?: any): RequestArgs;
3168
3169
  resolveClaim(claimId: string, resolveClaimDTO: ResolveClaimDTO, options?: any): RequestArgs;
3169
- searchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
3170
3170
  skipEvidenceChaser(claimId: string, options?: any): RequestArgs;
3171
3171
  submitMoreInfoClaim(claimId: string, submitMoreInfoClaimDTO: SubmitMoreInfoClaimDTO, options?: any): RequestArgs;
3172
3172
  updateAutoCharge(claimId: string, updateAutoChargeClaimDTO: UpdateAutoChargeClaimDTO, options?: any): RequestArgs;
@@ -3193,7 +3193,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
3193
3193
  reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
3194
3194
  requestMoreInfoClaim(claimId: string, requestInfoClaimDTO: RequestInfoClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
3195
3195
  resolveClaim(claimId: string, resolveClaimDTO: ResolveClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
3196
- searchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
3197
3196
  skipEvidenceChaser(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3198
3197
  submitMoreInfoClaim(claimId: string, submitMoreInfoClaimDTO: SubmitMoreInfoClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
3199
3198
  updateAutoCharge(claimId: string, updateAutoChargeClaimDTO: UpdateAutoChargeClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
@@ -3220,7 +3219,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
3220
3219
  reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
3221
3220
  requestMoreInfoClaim(claimId: string, requestInfoClaimDTO: RequestInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3222
3221
  resolveClaim(claimId: string, resolveClaimDTO: ResolveClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3223
- searchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
3224
3222
  skipEvidenceChaser(claimId: string, options?: any): AxiosPromise<object>;
3225
3223
  submitMoreInfoClaim(claimId: string, submitMoreInfoClaimDTO: SubmitMoreInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3226
3224
  updateAutoCharge(claimId: string, updateAutoChargeClaimDTO: UpdateAutoChargeClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
@@ -3247,7 +3245,6 @@ export interface ClaimsApiInterface {
3247
3245
  reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
3248
3246
  requestMoreInfoClaim(claimId: string, requestInfoClaimDTO: RequestInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3249
3247
  resolveClaim(claimId: string, resolveClaimDTO: ResolveClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3250
- searchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
3251
3248
  skipEvidenceChaser(claimId: string, options?: any): AxiosPromise<object>;
3252
3249
  submitMoreInfoClaim(claimId: string, submitMoreInfoClaimDTO: SubmitMoreInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3253
3250
  updateAutoCharge(claimId: string, updateAutoChargeClaimDTO: UpdateAutoChargeClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
@@ -3274,7 +3271,6 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
3274
3271
  reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
3275
3272
  requestMoreInfoClaim(claimId: string, requestInfoClaimDTO: RequestInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3276
3273
  resolveClaim(claimId: string, resolveClaimDTO: ResolveClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3277
- searchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
3278
3274
  skipEvidenceChaser(claimId: string, options?: any): AxiosPromise<object>;
3279
3275
  submitMoreInfoClaim(claimId: string, submitMoreInfoClaimDTO: SubmitMoreInfoClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
3280
3276
  updateAutoCharge(claimId: string, updateAutoChargeClaimDTO: UpdateAutoChargeClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
@@ -3523,26 +3519,31 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
3523
3519
  processSendGridWebhooks(requestBody: string[], options?: any): RequestArgs;
3524
3520
  processStripeWebhooks(options?: any): RequestArgs;
3525
3521
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
3522
+ processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
3526
3523
  };
3527
3524
  export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
3528
3525
  processSendGridWebhooks(requestBody: string[], options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3529
3526
  processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3530
3527
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3528
+ processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3531
3529
  };
3532
3530
  export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3533
3531
  processSendGridWebhooks(requestBody: string[], options?: any): AxiosPromise<object>;
3534
3532
  processStripeWebhooks(options?: any): AxiosPromise<object>;
3535
3533
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
3534
+ processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
3536
3535
  };
3537
3536
  export interface IncomingWebhooksApiInterface {
3538
3537
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3539
3538
  processStripeWebhooks(options?: any): AxiosPromise<object>;
3540
3539
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
3540
+ processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
3541
3541
  }
3542
3542
  export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
3543
3543
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3544
3544
  processStripeWebhooks(options?: any): AxiosPromise<object>;
3545
3545
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
3546
+ processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
3546
3547
  }
3547
3548
  export declare const InsuranceClaimsApiAxiosParamCreator: (configuration?: Configuration) => {
3548
3549
  createInsuranceClaim(policyId: string, createInsuranceClaimDTO: CreateInsuranceClaimDTO, options?: any): RequestArgs;
@@ -4704,7 +4705,6 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
4704
4705
  optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): RequestArgs;
4705
4706
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
4706
4707
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
4707
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): RequestArgs;
4708
4708
  sendOverdueChasers(id: string, options?: any): RequestArgs;
4709
4709
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): RequestArgs;
4710
4710
  };
@@ -4713,7 +4713,6 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
4713
4713
  optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
4714
4714
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4715
4715
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4716
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
4717
4716
  sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4718
4717
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4719
4718
  };
@@ -4722,7 +4721,6 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
4722
4721
  optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4723
4722
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4724
4723
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4725
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "PENDING" | "DRAFT" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4726
4724
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
4727
4725
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4728
4726
  };
@@ -4731,7 +4729,6 @@ export interface TenancyOrdersApiInterface {
4731
4729
  optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4732
4730
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4733
4731
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4734
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4735
4732
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
4736
4733
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4737
4734
  }
@@ -4740,7 +4737,6 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
4740
4737
  optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4741
4738
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4742
4739
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4743
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4744
4740
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
4745
4741
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4746
4742
  }
package/dist/api.js CHANGED
@@ -3814,55 +3814,6 @@ exports.ClaimsApiAxiosParamCreator = function (configuration) {
3814
3814
  options: localVarRequestOptions,
3815
3815
  };
3816
3816
  },
3817
- searchClaim: function (organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options) {
3818
- if (options === void 0) { options = {}; }
3819
- if (organizationId === null || organizationId === undefined) {
3820
- throw new base_1.RequiredError('organizationId', 'Required parameter organizationId was null or undefined when calling searchClaim.');
3821
- }
3822
- if (page === null || page === undefined) {
3823
- throw new base_1.RequiredError('page', 'Required parameter page was null or undefined when calling searchClaim.');
3824
- }
3825
- if (size === null || size === undefined) {
3826
- throw new base_1.RequiredError('size', 'Required parameter size was null or undefined when calling searchClaim.');
3827
- }
3828
- var localVarPath = "/v2/claims";
3829
- var localVarUrlObj = globalImportUrl.parse(localVarPath, true);
3830
- var baseOptions;
3831
- if (configuration) {
3832
- baseOptions = configuration.baseOptions;
3833
- }
3834
- var localVarRequestOptions = __assign({ method: 'GET' }, baseOptions, options);
3835
- var localVarHeaderParameter = {};
3836
- var localVarQueryParameter = {};
3837
- if (query !== undefined) {
3838
- localVarQueryParameter['query'] = query;
3839
- }
3840
- if (organizationId !== undefined) {
3841
- localVarQueryParameter['organizationId'] = organizationId;
3842
- }
3843
- if (claimStatus !== undefined) {
3844
- localVarQueryParameter['claimStatus'] = claimStatus;
3845
- }
3846
- if (sortBy !== undefined) {
3847
- localVarQueryParameter['sortBy'] = sortBy;
3848
- }
3849
- if (page !== undefined) {
3850
- localVarQueryParameter['page'] = page;
3851
- }
3852
- if (size !== undefined) {
3853
- localVarQueryParameter['size'] = size;
3854
- }
3855
- if (includeDeleted !== undefined) {
3856
- localVarQueryParameter['includeDeleted'] = includeDeleted;
3857
- }
3858
- localVarUrlObj.query = __assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
3859
- delete localVarUrlObj.search;
3860
- localVarRequestOptions.headers = __assign({}, localVarHeaderParameter, options.headers);
3861
- return {
3862
- url: globalImportUrl.format(localVarUrlObj),
3863
- options: localVarRequestOptions,
3864
- };
3865
- },
3866
3817
  skipEvidenceChaser: function (claimId, options) {
3867
3818
  if (options === void 0) { options = {}; }
3868
3819
  if (claimId === null || claimId === undefined) {
@@ -4225,15 +4176,6 @@ exports.ClaimsApiFp = function (configuration) {
4225
4176
  return axios.request(axiosRequestArgs);
4226
4177
  };
4227
4178
  },
4228
- searchClaim: function (organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options) {
4229
- var localVarAxiosArgs = exports.ClaimsApiAxiosParamCreator(configuration).searchClaim(organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options);
4230
- return function (axios, basePath) {
4231
- if (axios === void 0) { axios = axios_1.default; }
4232
- if (basePath === void 0) { basePath = base_1.BASE_PATH; }
4233
- var axiosRequestArgs = __assign({}, localVarAxiosArgs.options, { url: basePath + localVarAxiosArgs.url });
4234
- return axios.request(axiosRequestArgs);
4235
- };
4236
- },
4237
4179
  skipEvidenceChaser: function (claimId, options) {
4238
4180
  var localVarAxiosArgs = exports.ClaimsApiAxiosParamCreator(configuration).skipEvidenceChaser(claimId, options);
4239
4181
  return function (axios, basePath) {
@@ -4358,9 +4300,6 @@ exports.ClaimsApiFactory = function (configuration, basePath, axios) {
4358
4300
  resolveClaim: function (claimId, resolveClaimDTO, options) {
4359
4301
  return exports.ClaimsApiFp(configuration).resolveClaim(claimId, resolveClaimDTO, options)(axios, basePath);
4360
4302
  },
4361
- searchClaim: function (organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options) {
4362
- return exports.ClaimsApiFp(configuration).searchClaim(organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options)(axios, basePath);
4363
- },
4364
4303
  skipEvidenceChaser: function (claimId, options) {
4365
4304
  return exports.ClaimsApiFp(configuration).skipEvidenceChaser(claimId, options)(axios, basePath);
4366
4305
  },
@@ -4440,9 +4379,6 @@ var ClaimsApi = (function (_super) {
4440
4379
  ClaimsApi.prototype.resolveClaim = function (claimId, resolveClaimDTO, options) {
4441
4380
  return exports.ClaimsApiFp(this.configuration).resolveClaim(claimId, resolveClaimDTO, options)(this.axios, this.basePath);
4442
4381
  };
4443
- ClaimsApi.prototype.searchClaim = function (organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options) {
4444
- return exports.ClaimsApiFp(this.configuration).searchClaim(organizationId, page, size, query, claimStatus, sortBy, includeDeleted, options)(this.axios, this.basePath);
4445
- };
4446
4382
  ClaimsApi.prototype.skipEvidenceChaser = function (claimId, options) {
4447
4383
  return exports.ClaimsApiFp(this.configuration).skipEvidenceChaser(claimId, options)(this.axios, this.basePath);
4448
4384
  };
@@ -5836,6 +5772,33 @@ exports.IncomingWebhooksApiAxiosParamCreator = function (configuration) {
5836
5772
  options: localVarRequestOptions,
5837
5773
  };
5838
5774
  },
5775
+ processTwilioIvrWebhooksWithGatherAction: function (ivrCallId, gatherAction, options) {
5776
+ if (options === void 0) { options = {}; }
5777
+ if (ivrCallId === null || ivrCallId === undefined) {
5778
+ throw new base_1.RequiredError('ivrCallId', 'Required parameter ivrCallId was null or undefined when calling processTwilioIvrWebhooksWithGatherAction.');
5779
+ }
5780
+ if (gatherAction === null || gatherAction === undefined) {
5781
+ throw new base_1.RequiredError('gatherAction', 'Required parameter gatherAction was null or undefined when calling processTwilioIvrWebhooksWithGatherAction.');
5782
+ }
5783
+ var localVarPath = "/v2/webhooks/twilio-ivr/{ivrCallId}/gather-action/{gatherAction}"
5784
+ .replace("{" + "ivrCallId" + "}", encodeURIComponent(String(ivrCallId)))
5785
+ .replace("{" + "gatherAction" + "}", encodeURIComponent(String(gatherAction)));
5786
+ var localVarUrlObj = globalImportUrl.parse(localVarPath, true);
5787
+ var baseOptions;
5788
+ if (configuration) {
5789
+ baseOptions = configuration.baseOptions;
5790
+ }
5791
+ var localVarRequestOptions = __assign({ method: 'POST' }, baseOptions, options);
5792
+ var localVarHeaderParameter = {};
5793
+ var localVarQueryParameter = {};
5794
+ localVarUrlObj.query = __assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
5795
+ delete localVarUrlObj.search;
5796
+ localVarRequestOptions.headers = __assign({}, localVarHeaderParameter, options.headers);
5797
+ return {
5798
+ url: globalImportUrl.format(localVarUrlObj),
5799
+ options: localVarRequestOptions,
5800
+ };
5801
+ },
5839
5802
  };
5840
5803
  };
5841
5804
  exports.IncomingWebhooksApiFp = function (configuration) {
@@ -5867,6 +5830,15 @@ exports.IncomingWebhooksApiFp = function (configuration) {
5867
5830
  return axios.request(axiosRequestArgs);
5868
5831
  };
5869
5832
  },
5833
+ processTwilioIvrWebhooksWithGatherAction: function (ivrCallId, gatherAction, options) {
5834
+ var localVarAxiosArgs = exports.IncomingWebhooksApiAxiosParamCreator(configuration).processTwilioIvrWebhooksWithGatherAction(ivrCallId, gatherAction, options);
5835
+ return function (axios, basePath) {
5836
+ if (axios === void 0) { axios = axios_1.default; }
5837
+ if (basePath === void 0) { basePath = base_1.BASE_PATH; }
5838
+ var axiosRequestArgs = __assign({}, localVarAxiosArgs.options, { url: basePath + localVarAxiosArgs.url });
5839
+ return axios.request(axiosRequestArgs);
5840
+ };
5841
+ },
5870
5842
  };
5871
5843
  };
5872
5844
  exports.IncomingWebhooksApiFactory = function (configuration, basePath, axios) {
@@ -5880,6 +5852,9 @@ exports.IncomingWebhooksApiFactory = function (configuration, basePath, axios) {
5880
5852
  processTwilioIvrWebhooks: function (ivrCallId, options) {
5881
5853
  return exports.IncomingWebhooksApiFp(configuration).processTwilioIvrWebhooks(ivrCallId, options)(axios, basePath);
5882
5854
  },
5855
+ processTwilioIvrWebhooksWithGatherAction: function (ivrCallId, gatherAction, options) {
5856
+ return exports.IncomingWebhooksApiFp(configuration).processTwilioIvrWebhooksWithGatherAction(ivrCallId, gatherAction, options)(axios, basePath);
5857
+ },
5883
5858
  };
5884
5859
  };
5885
5860
  var IncomingWebhooksApi = (function (_super) {
@@ -5896,6 +5871,9 @@ var IncomingWebhooksApi = (function (_super) {
5896
5871
  IncomingWebhooksApi.prototype.processTwilioIvrWebhooks = function (ivrCallId, options) {
5897
5872
  return exports.IncomingWebhooksApiFp(this.configuration).processTwilioIvrWebhooks(ivrCallId, options)(this.axios, this.basePath);
5898
5873
  };
5874
+ IncomingWebhooksApi.prototype.processTwilioIvrWebhooksWithGatherAction = function (ivrCallId, gatherAction, options) {
5875
+ return exports.IncomingWebhooksApiFp(this.configuration).processTwilioIvrWebhooksWithGatherAction(ivrCallId, gatherAction, options)(this.axios, this.basePath);
5876
+ };
5899
5877
  return IncomingWebhooksApi;
5900
5878
  }(base_1.BaseAPI));
5901
5879
  exports.IncomingWebhooksApi = IncomingWebhooksApi;
@@ -13166,79 +13144,6 @@ exports.TenancyOrdersApiAxiosParamCreator = function (configuration) {
13166
13144
  options: localVarRequestOptions,
13167
13145
  };
13168
13146
  },
13169
- search: function (productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options) {
13170
- if (options === void 0) { options = {}; }
13171
- if (productId === null || productId === undefined) {
13172
- throw new base_1.RequiredError('productId', 'Required parameter productId was null or undefined when calling search.');
13173
- }
13174
- if (organizationId === null || organizationId === undefined) {
13175
- throw new base_1.RequiredError('organizationId', 'Required parameter organizationId was null or undefined when calling search.');
13176
- }
13177
- if (page === null || page === undefined) {
13178
- throw new base_1.RequiredError('page', 'Required parameter page was null or undefined when calling search.');
13179
- }
13180
- if (size === null || size === undefined) {
13181
- throw new base_1.RequiredError('size', 'Required parameter size was null or undefined when calling search.');
13182
- }
13183
- if (includeDeleted === null || includeDeleted === undefined) {
13184
- throw new base_1.RequiredError('includeDeleted', 'Required parameter includeDeleted was null or undefined when calling search.');
13185
- }
13186
- if (onlyDeleted === null || onlyDeleted === undefined) {
13187
- throw new base_1.RequiredError('onlyDeleted', 'Required parameter onlyDeleted was null or undefined when calling search.');
13188
- }
13189
- var localVarPath = "/v2/tenancy-orders";
13190
- var localVarUrlObj = globalImportUrl.parse(localVarPath, true);
13191
- var baseOptions;
13192
- if (configuration) {
13193
- baseOptions = configuration.baseOptions;
13194
- }
13195
- var localVarRequestOptions = __assign({ method: 'GET' }, baseOptions, options);
13196
- var localVarHeaderParameter = {};
13197
- var localVarQueryParameter = {};
13198
- if (query !== undefined) {
13199
- localVarQueryParameter['query'] = query;
13200
- }
13201
- if (productId !== undefined) {
13202
- localVarQueryParameter['productId'] = productId;
13203
- }
13204
- if (organizationId !== undefined) {
13205
- localVarQueryParameter['organizationId'] = organizationId;
13206
- }
13207
- if (orderStatus !== undefined) {
13208
- localVarQueryParameter['orderStatus'] = orderStatus;
13209
- }
13210
- if (tenancyStatus !== undefined) {
13211
- localVarQueryParameter['tenancyStatus'] = tenancyStatus;
13212
- }
13213
- if (sortBy !== undefined) {
13214
- localVarQueryParameter['sortBy'] = sortBy;
13215
- }
13216
- if (sortDirection !== undefined) {
13217
- localVarQueryParameter['sortDirection'] = sortDirection;
13218
- }
13219
- if (page !== undefined) {
13220
- localVarQueryParameter['page'] = page;
13221
- }
13222
- if (size !== undefined) {
13223
- localVarQueryParameter['size'] = size;
13224
- }
13225
- if (includeDeleted !== undefined) {
13226
- localVarQueryParameter['includeDeleted'] = includeDeleted;
13227
- }
13228
- if (onlyDeleted !== undefined) {
13229
- localVarQueryParameter['onlyDeleted'] = onlyDeleted;
13230
- }
13231
- if (letOnly !== undefined) {
13232
- localVarQueryParameter['letOnly'] = letOnly;
13233
- }
13234
- localVarUrlObj.query = __assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
13235
- delete localVarUrlObj.search;
13236
- localVarRequestOptions.headers = __assign({}, localVarHeaderParameter, options.headers);
13237
- return {
13238
- url: globalImportUrl.format(localVarUrlObj),
13239
- options: localVarRequestOptions,
13240
- };
13241
- },
13242
13147
  sendOverdueChasers: function (id, options) {
13243
13148
  if (options === void 0) { options = {}; }
13244
13149
  if (id === null || id === undefined) {
@@ -13331,15 +13236,6 @@ exports.TenancyOrdersApiFp = function (configuration) {
13331
13236
  return axios.request(axiosRequestArgs);
13332
13237
  };
13333
13238
  },
13334
- search: function (productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options) {
13335
- var localVarAxiosArgs = exports.TenancyOrdersApiAxiosParamCreator(configuration).search(productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options);
13336
- return function (axios, basePath) {
13337
- if (axios === void 0) { axios = axios_1.default; }
13338
- if (basePath === void 0) { basePath = base_1.BASE_PATH; }
13339
- var axiosRequestArgs = __assign({}, localVarAxiosArgs.options, { url: basePath + localVarAxiosArgs.url });
13340
- return axios.request(axiosRequestArgs);
13341
- };
13342
- },
13343
13239
  sendOverdueChasers: function (id, options) {
13344
13240
  var localVarAxiosArgs = exports.TenancyOrdersApiAxiosParamCreator(configuration).sendOverdueChasers(id, options);
13345
13241
  return function (axios, basePath) {
@@ -13374,9 +13270,6 @@ exports.TenancyOrdersApiFactory = function (configuration, basePath, axios) {
13374
13270
  reopenTenancyOrder: function (id, reopenRepositDTO, options) {
13375
13271
  return exports.TenancyOrdersApiFp(configuration).reopenTenancyOrder(id, reopenRepositDTO, options)(axios, basePath);
13376
13272
  },
13377
- search: function (productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options) {
13378
- return exports.TenancyOrdersApiFp(configuration).search(productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options)(axios, basePath);
13379
- },
13380
13273
  sendOverdueChasers: function (id, options) {
13381
13274
  return exports.TenancyOrdersApiFp(configuration).sendOverdueChasers(id, options)(axios, basePath);
13382
13275
  },
@@ -13402,9 +13295,6 @@ var TenancyOrdersApi = (function (_super) {
13402
13295
  TenancyOrdersApi.prototype.reopenTenancyOrder = function (id, reopenRepositDTO, options) {
13403
13296
  return exports.TenancyOrdersApiFp(this.configuration).reopenTenancyOrder(id, reopenRepositDTO, options)(this.axios, this.basePath);
13404
13297
  };
13405
- TenancyOrdersApi.prototype.search = function (productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options) {
13406
- return exports.TenancyOrdersApiFp(this.configuration).search(productId, organizationId, page, size, includeDeleted, onlyDeleted, query, orderStatus, tenancyStatus, sortBy, sortDirection, letOnly, options)(this.axios, this.basePath);
13407
- };
13408
13298
  TenancyOrdersApi.prototype.sendOverdueChasers = function (id, options) {
13409
13299
  return exports.TenancyOrdersApiFp(this.configuration).sendOverdueChasers(id, options)(this.axios, this.basePath);
13410
13300
  };