@turndown/library 0.1.63 → 0.1.64

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/index.d.cts CHANGED
@@ -2239,7 +2239,6 @@ interface ICompanyIdParams {
2239
2239
  companyId: string;
2240
2240
  }
2241
2241
  declare const CreatePropertyRequestSchema: IRuntimeValidationSchema<{
2242
- companyId: IValidationField<string, true>;
2243
2242
  displayName: IValidationField<string, true>;
2244
2243
  propertyType: IValidationField<"APARTMENT" | "COMMERCIAL" | "CONDO" | "DUPLEX" | "HOUSE" | "MULTI_FAMILY" | "OFFICE" | "RETAIL" | "TOWNHOUSE" | "VACATION_RENTAL" | "WAREHOUSE", true>;
2245
2244
  status: IValidationField<"ACTIVE" | "INACTIVE" | null, false>;
package/dist/index.d.ts CHANGED
@@ -2239,7 +2239,6 @@ interface ICompanyIdParams {
2239
2239
  companyId: string;
2240
2240
  }
2241
2241
  declare const CreatePropertyRequestSchema: IRuntimeValidationSchema<{
2242
- companyId: IValidationField<string, true>;
2243
2242
  displayName: IValidationField<string, true>;
2244
2243
  propertyType: IValidationField<"APARTMENT" | "COMMERCIAL" | "CONDO" | "DUPLEX" | "HOUSE" | "MULTI_FAMILY" | "OFFICE" | "RETAIL" | "TOWNHOUSE" | "VACATION_RENTAL" | "WAREHOUSE", true>;
2245
2244
  status: IValidationField<"ACTIVE" | "INACTIVE" | null, false>;
package/dist/index.mjs CHANGED
@@ -1769,7 +1769,6 @@ var PropertyTypeValues = Object.values(PROPERTY_TYPES);
1769
1769
  var PropertyStatusValues = Object.values(PROPERTY_STATUS);
1770
1770
  var StateCodeValues2 = Object.keys(US_JURISDICTIONS);
1771
1771
  var CreatePropertyRequestSchema = createValidationSchema({
1772
- companyId: requiredStringField(),
1773
1772
  displayName: requiredStringField(),
1774
1773
  propertyType: requiredEnumField(PropertyTypeValues),
1775
1774
  status: optionalNullableEnumField(PropertyStatusValues),