@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.
- 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 +3 -3
|
@@ -1453,12 +1453,7 @@ interface Category {
|
|
|
1453
1453
|
*/
|
|
1454
1454
|
counts?: CategoryCounts;
|
|
1455
1455
|
/**
|
|
1456
|
-
* Category state.
|
|
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
|
-
/**
|
|
1472
|
+
/** Categoty is created manually by the user. */
|
|
1478
1473
|
MANUAL = "MANUAL",
|
|
1479
|
-
/**
|
|
1474
|
+
/** Category is created automatically. */
|
|
1480
1475
|
AUTO = "AUTO",
|
|
1481
|
-
/**
|
|
1476
|
+
/** Category is created automatically when publishing recurring events. */
|
|
1482
1477
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
1483
1478
|
/** Category is hidden. */
|
|
1484
1479
|
HIDDEN = "HIDDEN"
|