@wix/auto_sdk_events_ticket-definitions-v-2 1.0.76 → 1.0.77
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/es/meta.d.mts
CHANGED
|
@@ -2200,12 +2200,7 @@ interface Category {
|
|
|
2200
2200
|
*/
|
|
2201
2201
|
counts?: CategoryCounts;
|
|
2202
2202
|
/**
|
|
2203
|
-
* Category state.
|
|
2204
|
-
*
|
|
2205
|
-
* `MANUAL`: Category is created manually by the user.
|
|
2206
|
-
* `AUTO`: Category is created automatically.
|
|
2207
|
-
* `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
|
|
2208
|
-
* `HIDDEN`: Category can't be seen.
|
|
2203
|
+
* Category state.
|
|
2209
2204
|
*
|
|
2210
2205
|
* Default: `MANUAL`.
|
|
2211
2206
|
*
|
|
@@ -2221,11 +2216,11 @@ interface CategoryCounts {
|
|
|
2221
2216
|
assignedDraftEventsCount?: number | null;
|
|
2222
2217
|
}
|
|
2223
2218
|
declare enum CategoryStateState {
|
|
2224
|
-
/**
|
|
2219
|
+
/** Categoty is created manually by the user. */
|
|
2225
2220
|
MANUAL = "MANUAL",
|
|
2226
|
-
/**
|
|
2221
|
+
/** Category is created automatically. */
|
|
2227
2222
|
AUTO = "AUTO",
|
|
2228
|
-
/**
|
|
2223
|
+
/** Category is created automatically when publishing recurring events. */
|
|
2229
2224
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
2230
2225
|
/** Category is hidden. */
|
|
2231
2226
|
HIDDEN = "HIDDEN"
|