@wix/auto_sdk_events_forms 1.0.66 → 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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -9
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -9
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -9
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -9
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1470,12 +1470,7 @@ interface Category {
|
|
|
1470
1470
|
*/
|
|
1471
1471
|
counts?: CategoryCounts;
|
|
1472
1472
|
/**
|
|
1473
|
-
* Category state.
|
|
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
|
-
/**
|
|
1489
|
+
/** Categoty is created manually by the user. */
|
|
1495
1490
|
MANUAL = "MANUAL",
|
|
1496
|
-
/**
|
|
1491
|
+
/** Category is created automatically. */
|
|
1497
1492
|
AUTO = "AUTO",
|
|
1498
|
-
/**
|
|
1493
|
+
/** Category is created automatically when publishing recurring events. */
|
|
1499
1494
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
1500
1495
|
/** Category is hidden. */
|
|
1501
1496
|
HIDDEN = "HIDDEN"
|