@wix/auto_sdk_events_forms 1.0.67 → 1.0.68

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.
@@ -1453,12 +1453,7 @@ interface Category {
1453
1453
  */
1454
1454
  counts?: CategoryCounts;
1455
1455
  /**
1456
- * Category state. Possible values:
1457
- *
1458
- * `MANUAL`: Category is created manually by the user.
1459
- * `AUTO`: Category is created automatically.
1460
- * `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
1461
- * `HIDDEN`: Category can't be seen.
1456
+ * Category state.
1462
1457
  *
1463
1458
  * Default: `MANUAL`.
1464
1459
  *
@@ -1474,11 +1469,11 @@ interface CategoryCounts {
1474
1469
  assignedDraftEventsCount?: number | null;
1475
1470
  }
1476
1471
  declare enum State {
1477
- /** Created manually by the user. */
1472
+ /** Categoty is created manually by the user. */
1478
1473
  MANUAL = "MANUAL",
1479
- /** Created automatically. */
1474
+ /** Category is created automatically. */
1480
1475
  AUTO = "AUTO",
1481
- /** Created when publishing recurring events. */
1476
+ /** Category is created automatically when publishing recurring events. */
1482
1477
  RECURRING_EVENT = "RECURRING_EVENT",
1483
1478
  /** Category is hidden. */
1484
1479
  HIDDEN = "HIDDEN"