@wix/auto_sdk_events_wix-events-v-2 1.0.35 → 1.0.36
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/{events-v3-event-wix-events-v-2.universal-DqdnERTE.d.ts → events-v3-event-wix-events-v-2.universal-BaXE7UV0.d.ts} +12 -2
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +13 -3
- package/build/es/{events-v3-event-wix-events-v-2.universal-DqdnERTE.d.mts → events-v3-event-wix-events-v-2.universal-BaXE7UV0.d.mts} +12 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/meta.d.mts +13 -3
- package/build/internal/cjs/{events-v3-event-wix-events-v-2.universal-DqdnERTE.d.ts → events-v3-event-wix-events-v-2.universal-BaXE7UV0.d.ts} +12 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +13 -3
- package/build/internal/es/{events-v3-event-wix-events-v-2.universal-DqdnERTE.d.mts → events-v3-event-wix-events-v-2.universal-BaXE7UV0.d.mts} +12 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +13 -3
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { cZ as CreateEventRequest$1, c_ as CreateEventResponse$1, c$ as CloneEventRequest$1, b as CloneEventResponse$1, d2 as UpdateEventRequest$1, d3 as UpdateEventResponse$1, d4 as PublishDraftEventRequest$1, c as PublishDraftEventResponse$1, d5 as CancelEventRequest$1, e as CancelEventResponse$1, d6 as BulkCancelEventsByFilterRequest$1, db as BulkCancelEventsByFilterResponse$1, dc as DeleteEventRequest$1, D as DeleteEventResponse$1, dd as BulkDeleteEventsByFilterRequest$1, de as BulkDeleteEventsByFilterResponse$1, df as QueryEventsRequest$1, dg as QueryEventsResponse$1, dt as CountEventsByStatusRequest$1, h as CountEventsByStatusResponse$1, dA as GetEventRequest$1, dB as GetEventResponse$1, dC as GetEventBySlugRequest$1, j as GetEventBySlugResponse$1 } from './events-v3-event-wix-events-v-2.universal-
|
|
1
|
+
import { cZ as CreateEventRequest$1, c_ as CreateEventResponse$1, c$ as CloneEventRequest$1, b as CloneEventResponse$1, d2 as UpdateEventRequest$1, d3 as UpdateEventResponse$1, d4 as PublishDraftEventRequest$1, c as PublishDraftEventResponse$1, d5 as CancelEventRequest$1, e as CancelEventResponse$1, d6 as BulkCancelEventsByFilterRequest$1, db as BulkCancelEventsByFilterResponse$1, dc as DeleteEventRequest$1, D as DeleteEventResponse$1, dd as BulkDeleteEventsByFilterRequest$1, de as BulkDeleteEventsByFilterResponse$1, df as QueryEventsRequest$1, dg as QueryEventsResponse$1, dt as CountEventsByStatusRequest$1, h as CountEventsByStatusResponse$1, dA as GetEventRequest$1, dB as GetEventResponse$1, dC as GetEventBySlugRequest$1, j as GetEventBySlugResponse$1 } from './events-v3-event-wix-events-v-2.universal-BaXE7UV0.mjs';
|
|
2
2
|
|
|
3
3
|
interface V3Event {
|
|
4
4
|
/**
|
|
@@ -2156,6 +2156,10 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2156
2156
|
spoilerData?: SpoilerData;
|
|
2157
2157
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2158
2158
|
strikethroughData?: boolean | null;
|
|
2159
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2160
|
+
superscriptData?: boolean | null;
|
|
2161
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2162
|
+
subscriptData?: boolean | null;
|
|
2159
2163
|
/** The type of decoration to apply. */
|
|
2160
2164
|
type?: DecorationTypeWithLiterals;
|
|
2161
2165
|
}
|
|
@@ -2181,6 +2185,10 @@ interface DecorationDataOneOf {
|
|
|
2181
2185
|
spoilerData?: SpoilerData;
|
|
2182
2186
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
2183
2187
|
strikethroughData?: boolean | null;
|
|
2188
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
2189
|
+
superscriptData?: boolean | null;
|
|
2190
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2191
|
+
subscriptData?: boolean | null;
|
|
2184
2192
|
}
|
|
2185
2193
|
declare enum DecorationType {
|
|
2186
2194
|
BOLD = "BOLD",
|
|
@@ -2193,10 +2201,12 @@ declare enum DecorationType {
|
|
|
2193
2201
|
COLOR = "COLOR",
|
|
2194
2202
|
FONT_SIZE = "FONT_SIZE",
|
|
2195
2203
|
EXTERNAL = "EXTERNAL",
|
|
2196
|
-
STRIKETHROUGH = "STRIKETHROUGH"
|
|
2204
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2205
|
+
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2206
|
+
SUBSCRIPT = "SUBSCRIPT"
|
|
2197
2207
|
}
|
|
2198
2208
|
/** @enumType */
|
|
2199
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
|
|
2209
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2200
2210
|
interface AnchorData {
|
|
2201
2211
|
/** The target node's ID. */
|
|
2202
2212
|
anchor?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_events_wix-events-v-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"fqdn": "wix.events.v3.event"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
-
"falconPackageHash": "
|
|
52
|
+
"falconPackageHash": "ca97c88586e8f6a537a7afd004383224cdb65a11027388a35cfce34c"
|
|
53
53
|
}
|