@wix/auto_sdk_events_notifications 1.0.54 → 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.
@@ -1371,12 +1371,7 @@ interface Category {
1371
1371
  */
1372
1372
  counts?: CategoryCounts;
1373
1373
  /**
1374
- * Category state. Possible values:
1375
- *
1376
- * `MANUAL`: Category is created manually by the user.
1377
- * `AUTO`: Category is created automatically.
1378
- * `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
1379
- * `HIDDEN`: Category can't be seen.
1374
+ * Category state.
1380
1375
  *
1381
1376
  * Default: `MANUAL`.
1382
1377
  *
@@ -1392,11 +1387,11 @@ interface CategoryCounts {
1392
1387
  assignedDraftEventsCount?: number | null;
1393
1388
  }
1394
1389
  declare enum State {
1395
- /** Created manually by the user. */
1390
+ /** Categoty is created manually by the user. */
1396
1391
  MANUAL = "MANUAL",
1397
- /** Created automatically. */
1392
+ /** Category is created automatically. */
1398
1393
  AUTO = "AUTO",
1399
- /** Created when publishing recurring events. */
1394
+ /** Category is created automatically when publishing recurring events. */
1400
1395
  RECURRING_EVENT = "RECURRING_EVENT",
1401
1396
  /** Category is hidden. */
1402
1397
  HIDDEN = "HIDDEN"