@wix/auto_sdk_events_notifications 1.0.53 → 1.0.55

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.
@@ -1390,12 +1390,7 @@ interface Category {
1390
1390
  */
1391
1391
  counts?: CategoryCounts;
1392
1392
  /**
1393
- * Category state. Possible values:
1394
- *
1395
- * `MANUAL`: Category is created manually by the user.
1396
- * `AUTO`: Category is created automatically.
1397
- * `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
1398
- * `HIDDEN`: Category can't be seen.
1393
+ * Category state.
1399
1394
  *
1400
1395
  * Default: `MANUAL`.
1401
1396
  *
@@ -1411,11 +1406,11 @@ interface CategoryCounts {
1411
1406
  assignedDraftEventsCount?: number | null;
1412
1407
  }
1413
1408
  declare enum State {
1414
- /** Created manually by the user. */
1409
+ /** Categoty is created manually by the user. */
1415
1410
  MANUAL = "MANUAL",
1416
- /** Created automatically. */
1411
+ /** Category is created automatically. */
1417
1412
  AUTO = "AUTO",
1418
- /** Created when publishing recurring events. */
1413
+ /** Category is created automatically when publishing recurring events. */
1419
1414
  RECURRING_EVENT = "RECURRING_EVENT",
1420
1415
  /** Category is hidden. */
1421
1416
  HIDDEN = "HIDDEN"