kui-crm 0.0.208 → 0.0.210

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 CHANGED
@@ -1485,6 +1485,7 @@ declare type ApartmentLiteModel = {
1485
1485
  payer_code?: string;
1486
1486
  period_status: PeriodStatus;
1487
1487
  has_inventory_inspection?: boolean;
1488
+ has_appraisal?: boolean;
1488
1489
  };
1489
1490
  declare type ApartmentPartialModel = ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & ApartmentModel;
1490
1491
  declare type MainObjectInfoNonRequiredParams = Partial<Pick<ApartmentModel, "distance_to_center_kilometers">>;
@@ -2459,7 +2460,7 @@ type PartialPayerProps<T> = {
2459
2460
  }
2460
2461
 
2461
2462
  type PartialPayerFields = {
2462
- payer?: APISubjectRoles
2463
+ payer?: APISubjectRoles | "partial"
2463
2464
  mainPayer?: APISubjectRoles
2464
2465
  refundFrom?: APISubjectRoles
2465
2466
  partType?: UnitOfPaymentTypes | null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kui-crm",
3
- "version": "0.0.208",
3
+ "version": "0.0.210",
4
4
  "description": "crm complex fields",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./index.d.ts",
package/types/index.d.ts CHANGED
@@ -839,6 +839,7 @@ declare type ApartmentLiteModel = {
839
839
  payer_code?: string;
840
840
  period_status: PeriodStatus;
841
841
  has_inventory_inspection?: boolean;
842
+ has_appraisal?: boolean;
842
843
  };
843
844
  declare type ApartmentPartialModel = ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & ApartmentModel;
844
845
  declare type MainObjectInfoNonRequiredParams = Partial<Pick<ApartmentModel, "distance_to_center_kilometers">>;