@wix/auto_sdk_events_forms 1.0.67 → 1.0.69

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.
@@ -1470,12 +1470,7 @@ interface Category {
1470
1470
  */
1471
1471
  counts?: CategoryCounts;
1472
1472
  /**
1473
- * Category state. Possible values:
1474
- *
1475
- * `MANUAL`: Category is created manually by the user.
1476
- * `AUTO`: Category is created automatically.
1477
- * `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
1478
- * `HIDDEN`: Category can't be seen.
1473
+ * Category state.
1479
1474
  *
1480
1475
  * Default: `MANUAL`.
1481
1476
  *
@@ -1491,11 +1486,11 @@ interface CategoryCounts {
1491
1486
  assignedDraftEventsCount?: number | null;
1492
1487
  }
1493
1488
  declare enum State {
1494
- /** Created manually by the user. */
1489
+ /** Categoty is created manually by the user. */
1495
1490
  MANUAL = "MANUAL",
1496
- /** Created automatically. */
1491
+ /** Category is created automatically. */
1497
1492
  AUTO = "AUTO",
1498
- /** Created when publishing recurring events. */
1493
+ /** Category is created automatically when publishing recurring events. */
1499
1494
  RECURRING_EVENT = "RECURRING_EVENT",
1500
1495
  /** Category is hidden. */
1501
1496
  HIDDEN = "HIDDEN"