@reposit/api-client 6.44.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 +9 -6
- package/dist/api.js +2 -0
- package/dist/api.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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;
|
|
@@ -2581,6 +2583,7 @@ export interface UpdateClosingRemindersEnabledRequestDTO {
|
|
|
2581
2583
|
export interface UpdateEvidenceChaserItemDTO {
|
|
2582
2584
|
claimItemIds?: Array<string>;
|
|
2583
2585
|
message?: string;
|
|
2586
|
+
displayTitle?: string;
|
|
2584
2587
|
}
|
|
2585
2588
|
export interface UpdateEvidenceChaserItemResponseDTO {
|
|
2586
2589
|
message?: string;
|
|
@@ -4466,7 +4469,7 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
4466
4469
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
4467
4470
|
disableTopUps(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4468
4471
|
extendOutcomeDeadline(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4469
|
-
getTenancyById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4472
|
+
getTenancyById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
|
|
4470
4473
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyDocumentDTO[]>;
|
|
4471
4474
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4472
4475
|
signAddendumForSupplier(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -4481,7 +4484,7 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
4481
4484
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
4482
4485
|
disableTopUps(id: string, options?: any): AxiosPromise<Response>;
|
|
4483
4486
|
extendOutcomeDeadline(id: string, options?: any): AxiosPromise<Response>;
|
|
4484
|
-
getTenancyById(id: string, options?: any): AxiosPromise<
|
|
4487
|
+
getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
|
|
4485
4488
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
4486
4489
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
4487
4490
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -4496,7 +4499,7 @@ export interface TenanciesApiInterface {
|
|
|
4496
4499
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
4497
4500
|
disableTopUps(id: string, options?: any): AxiosPromise<{}>;
|
|
4498
4501
|
extendOutcomeDeadline(id: string, options?: any): AxiosPromise<{}>;
|
|
4499
|
-
getTenancyById(id: string, options?: any): AxiosPromise<
|
|
4502
|
+
getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
|
|
4500
4503
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
4501
4504
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
4502
4505
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -4511,7 +4514,7 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
4511
4514
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
4512
4515
|
disableTopUps(id: string, options?: any): AxiosPromise<Response>;
|
|
4513
4516
|
extendOutcomeDeadline(id: string, options?: any): AxiosPromise<Response>;
|
|
4514
|
-
getTenancyById(id: string, options?: any): AxiosPromise<
|
|
4517
|
+
getTenancyById(id: string, options?: any): AxiosPromise<TenancyWithCheckoutAndClaimDTO>;
|
|
4515
4518
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
4516
4519
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
4517
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";
|