@turndown/library 0.1.62 → 0.1.63

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
@@ -2112,6 +2142,9 @@ var CHECKLIST_EXECUTION_STATUS = {
2112
2142
  UpdatePropertyRequestSchema,
2113
2143
  UpdateRoomRequestSchema,
2114
2144
  UpdateUserRequestSchema,
2145
+ WEEK_DAY,
2146
+ WEEK_DAY_LETTER,
2147
+ WEEK_DAY_SHORT_LABEL,
2115
2148
  WORK_ORDER_PRIORITY,
2116
2149
  WORK_ORDER_STATUS,
2117
2150
  WORK_SESSION_STATUS,