@turndown/library 0.1.62 → 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.cjs CHANGED
@@ -455,6 +455,9 @@ __export(index_exports, {
455
455
  UpdatePropertyRequestSchema: () => UpdatePropertyRequestSchema,
456
456
  UpdateRoomRequestSchema: () => UpdateRoomRequestSchema,
457
457
  UpdateUserRequestSchema: () => UpdateUserRequestSchema,
458
+ WEEK_DAY: () => WEEK_DAY,
459
+ WEEK_DAY_LETTER: () => WEEK_DAY_LETTER,
460
+ WEEK_DAY_SHORT_LABEL: () => WEEK_DAY_SHORT_LABEL,
458
461
  WORK_ORDER_PRIORITY: () => WORK_ORDER_PRIORITY,
459
462
  WORK_ORDER_STATUS: () => WORK_ORDER_STATUS,
460
463
  WORK_SESSION_STATUS: () => WORK_SESSION_STATUS,
@@ -1650,6 +1653,33 @@ var MONTHS = [
1650
1653
  "November",
1651
1654
  "December"
1652
1655
  ];
1656
+ var WEEK_DAY = {
1657
+ Sunday: "Sunday",
1658
+ Monday: "Monday",
1659
+ Tuesday: "Tuesday",
1660
+ Wednesday: "Wednesday",
1661
+ Thursday: "Thursday",
1662
+ Friday: "Friday",
1663
+ Saturday: "Saturday"
1664
+ };
1665
+ var WEEK_DAY_SHORT_LABEL = {
1666
+ Sunday: "Sun",
1667
+ Monday: "Mon",
1668
+ Tuesday: "Tue",
1669
+ Wednesday: "Wed",
1670
+ Thursday: "Thu",
1671
+ Friday: "Fri",
1672
+ Saturday: "Sat"
1673
+ };
1674
+ var WEEK_DAY_LETTER = {
1675
+ Sunday: "S",
1676
+ Monday: "M",
1677
+ Tuesday: "T",
1678
+ Wednesday: "W",
1679
+ Thursday: "T",
1680
+ Friday: "F",
1681
+ Saturday: "S"
1682
+ };
1653
1683
  var createSelectOptions = (values) => values.map((value) => ({
1654
1684
  label: value,
1655
1685
  value
@@ -1925,7 +1955,6 @@ var PropertyTypeValues = Object.values(PROPERTY_TYPES);
1925
1955
  var PropertyStatusValues = Object.values(PROPERTY_STATUS);
1926
1956
  var StateCodeValues2 = Object.keys(US_JURISDICTIONS);
1927
1957
  var CreatePropertyRequestSchema = createValidationSchema({
1928
- companyId: requiredStringField(),
1929
1958
  displayName: requiredStringField(),
1930
1959
  propertyType: requiredEnumField(PropertyTypeValues),
1931
1960
  status: optionalNullableEnumField(PropertyStatusValues),
@@ -2112,6 +2141,9 @@ var CHECKLIST_EXECUTION_STATUS = {
2112
2141
  UpdatePropertyRequestSchema,
2113
2142
  UpdateRoomRequestSchema,
2114
2143
  UpdateUserRequestSchema,
2144
+ WEEK_DAY,
2145
+ WEEK_DAY_LETTER,
2146
+ WEEK_DAY_SHORT_LABEL,
2115
2147
  WORK_ORDER_PRIORITY,
2116
2148
  WORK_ORDER_STATUS,
2117
2149
  WORK_SESSION_STATUS,