@wix/auto_sdk_events_notifications 1.0.54 → 1.0.56
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
|
@@ -1371,12 +1371,7 @@ interface Category {
|
|
|
1371
1371
|
*/
|
|
1372
1372
|
counts?: CategoryCounts;
|
|
1373
1373
|
/**
|
|
1374
|
-
* Category state.
|
|
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
|
-
/**
|
|
1390
|
+
/** Categoty is created manually by the user. */
|
|
1396
1391
|
MANUAL = "MANUAL",
|
|
1397
|
-
/**
|
|
1392
|
+
/** Category is created automatically. */
|
|
1398
1393
|
AUTO = "AUTO",
|
|
1399
|
-
/**
|
|
1394
|
+
/** Category is created automatically when publishing recurring events. */
|
|
1400
1395
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
1401
1396
|
/** Category is hidden. */
|
|
1402
1397
|
HIDDEN = "HIDDEN"
|