@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.
- 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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1390,12 +1390,7 @@ interface Category {
|
|
|
1390
1390
|
*/
|
|
1391
1391
|
counts?: CategoryCounts;
|
|
1392
1392
|
/**
|
|
1393
|
-
* Category state.
|
|
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
|
-
/**
|
|
1409
|
+
/** Categoty is created manually by the user. */
|
|
1415
1410
|
MANUAL = "MANUAL",
|
|
1416
|
-
/**
|
|
1411
|
+
/** Category is created automatically. */
|
|
1417
1412
|
AUTO = "AUTO",
|
|
1418
|
-
/**
|
|
1413
|
+
/** Category is created automatically when publishing recurring events. */
|
|
1419
1414
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
1420
1415
|
/** Category is hidden. */
|
|
1421
1416
|
HIDDEN = "HIDDEN"
|