kui-crm 0.0.239 → 0.0.240
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/index.d.ts +2 -0
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/utils/index.d.ts +2 -0
package/index.d.ts
CHANGED
|
@@ -548,6 +548,7 @@ declare type RentalContractModel = {
|
|
|
548
548
|
closing_conditions: ClosingRentalContractFields;
|
|
549
549
|
first_appraisal_interval_month: number;
|
|
550
550
|
estate_agent?: ClientLiteModel;
|
|
551
|
+
can_activate?: boolean;
|
|
551
552
|
};
|
|
552
553
|
|
|
553
554
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
@@ -612,6 +613,7 @@ declare type ServiceContractModel = {
|
|
|
612
613
|
close_date?: string | null;
|
|
613
614
|
planned_end_date?: string | null;
|
|
614
615
|
closing_conditions: ClosingServiceContractFields;
|
|
616
|
+
can_activate?: boolean;
|
|
615
617
|
};
|
|
616
618
|
declare type ServiceContractListModel = {
|
|
617
619
|
id: number;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -566,6 +566,7 @@ declare type RentalContractModel = {
|
|
|
566
566
|
closing_conditions: ClosingRentalContractFields;
|
|
567
567
|
first_appraisal_interval_month: number;
|
|
568
568
|
estate_agent?: ClientLiteModel;
|
|
569
|
+
can_activate?: boolean;
|
|
569
570
|
};
|
|
570
571
|
|
|
571
572
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
@@ -630,6 +631,7 @@ declare type ServiceContractModel = {
|
|
|
630
631
|
close_date?: string | null;
|
|
631
632
|
planned_end_date?: string | null;
|
|
632
633
|
closing_conditions: ClosingServiceContractFields;
|
|
634
|
+
can_activate?: boolean;
|
|
633
635
|
};
|
|
634
636
|
declare type ServiceContractListModel = {
|
|
635
637
|
id: number;
|
package/utils/index.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ declare type RentalContractModel = {
|
|
|
295
295
|
closing_conditions: ClosingRentalContractFields;
|
|
296
296
|
first_appraisal_interval_month: number;
|
|
297
297
|
estate_agent?: ClientLiteModel;
|
|
298
|
+
can_activate?: boolean;
|
|
298
299
|
};
|
|
299
300
|
|
|
300
301
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
@@ -359,6 +360,7 @@ declare type ServiceContractModel = {
|
|
|
359
360
|
close_date?: string | null;
|
|
360
361
|
planned_end_date?: string | null;
|
|
361
362
|
closing_conditions: ClosingServiceContractFields;
|
|
363
|
+
can_activate?: boolean;
|
|
362
364
|
};
|
|
363
365
|
|
|
364
366
|
declare type PeriodStatus = "new" | "closed" | "overdue";
|