@reposit/api-client 6.45.0 → 6.46.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
@@ -1521,9 +1521,8 @@ export interface OrganizationSettingsDTO {
1521
1521
  extendedInitialTenancyTermEnabled?: boolean;
1522
1522
  autoExtendOutcomeDeadlineEnabled?: boolean;
1523
1523
  maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
1524
- evidenceChaserEnabled?: boolean;
1525
1524
  offerRepositEnabled?: boolean;
1526
- optimisedSearchEnabled?: boolean;
1525
+ inventoryChaserDisabled?: boolean;
1527
1526
  }
1528
1527
  export declare enum OrganizationSettingsDTOPricingRuleEnum {
1529
1528
  STANDARD = "STANDARD",
@@ -1845,6 +1844,8 @@ export declare enum QueueMessageDTOTypeEnum {
1845
1844
  PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
1846
1845
  PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
1847
1846
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
1847
+ PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
1848
+ PROCESSSTRIPEDISPUTECLOSED = "PROCESS_STRIPE_DISPUTE_CLOSED",
1848
1849
  PROCESSEXPIRINGCUSTOMERSOURCE = "PROCESS_EXPIRING_CUSTOMER_SOURCE",
1849
1850
  PROCESSSENDSLACKMESSAGE = "PROCESS_SEND_SLACK_MESSAGE",
1850
1851
  PROCESSSTRIPEREFUNDCREATED = "PROCESS_STRIPE_REFUND_CREATED",
@@ -2479,6 +2480,7 @@ export interface TenancyWithCheckoutAndClaimDTO {
2479
2480
  addendum?: AddendumDTO;
2480
2481
  inventory?: TenancyInventoryDTO;
2481
2482
  preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
2483
+ hasIncompleteTransfers: boolean;
2482
2484
  }
2483
2485
  export interface TenantDTO {
2484
2486
  id: string;
@@ -4467,7 +4469,7 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
4467
4469
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
4468
4470
  disableTopUps(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4469
4471
  extendOutcomeDeadline(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4470
- getTenancyById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
4472
+ getTenancyById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
4471
4473
  getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyDocumentDTO[]>;
4472
4474
  publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4473
4475
  signAddendumForSupplier(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
@@ -4482,7 +4484,7 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
4482
4484
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
4483
4485
  disableTopUps(id: string, options?: any): AxiosPromise<Response>;
4484
4486
  extendOutcomeDeadline(id: string, options?: any): AxiosPromise<Response>;
4485
- getTenancyById(id: string, options?: any): AxiosPromise<TenancyDTO>;
4487
+ getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
4486
4488
  getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
4487
4489
  publish(id: string, options?: any): AxiosPromise<Response>;
4488
4490
  signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
@@ -4497,7 +4499,7 @@ export interface TenanciesApiInterface {
4497
4499
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
4498
4500
  disableTopUps(id: string, options?: any): AxiosPromise<{}>;
4499
4501
  extendOutcomeDeadline(id: string, options?: any): AxiosPromise<{}>;
4500
- getTenancyById(id: string, options?: any): AxiosPromise<TenancyDTO>;
4502
+ getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
4501
4503
  getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
4502
4504
  publish(id: string, options?: any): AxiosPromise<{}>;
4503
4505
  signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
@@ -4512,7 +4514,7 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
4512
4514
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
4513
4515
  disableTopUps(id: string, options?: any): AxiosPromise<Response>;
4514
4516
  extendOutcomeDeadline(id: string, options?: any): AxiosPromise<Response>;
4515
- getTenancyById(id: string, options?: any): AxiosPromise<TenancyDTO>;
4517
+ getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
4516
4518
  getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
4517
4519
  publish(id: string, options?: any): AxiosPromise<Response>;
4518
4520
  signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
package/dist/api.js CHANGED
@@ -729,6 +729,8 @@ var QueueMessageDTOTypeEnum;
729
729
  QueueMessageDTOTypeEnum["PROCESSSTRIPECHARGESUCCEEDED"] = "PROCESS_STRIPE_CHARGE_SUCCEEDED";
730
730
  QueueMessageDTOTypeEnum["PROCESSSTRIPECHARGEFAILED"] = "PROCESS_STRIPE_CHARGE_FAILED";
731
731
  QueueMessageDTOTypeEnum["PROCESSSTRIPECHARGEEXPIRED"] = "PROCESS_STRIPE_CHARGE_EXPIRED";
732
+ QueueMessageDTOTypeEnum["PROCESSSTRIPEDISPUTECREATED"] = "PROCESS_STRIPE_DISPUTE_CREATED";
733
+ QueueMessageDTOTypeEnum["PROCESSSTRIPEDISPUTECLOSED"] = "PROCESS_STRIPE_DISPUTE_CLOSED";
732
734
  QueueMessageDTOTypeEnum["PROCESSEXPIRINGCUSTOMERSOURCE"] = "PROCESS_EXPIRING_CUSTOMER_SOURCE";
733
735
  QueueMessageDTOTypeEnum["PROCESSSENDSLACKMESSAGE"] = "PROCESS_SEND_SLACK_MESSAGE";
734
736
  QueueMessageDTOTypeEnum["PROCESSSTRIPEREFUNDCREATED"] = "PROCESS_STRIPE_REFUND_CREATED";