@wix/auto_sdk_table-reservations_experiences 1.0.47 → 1.0.49
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.d.ts +2 -2
- package/build/cjs/index.js +34 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +34 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +140 -7
- package/build/cjs/meta.js +34 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.ts → table-reservations-v1-experience-experiences.universal-DRR34KWR.d.ts} +140 -10
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +32 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +32 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +140 -7
- package/build/es/meta.mjs +32 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.mts → table-reservations-v1-experience-experiences.universal-DRR34KWR.d.mts} +140 -10
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +34 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +34 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +140 -7
- package/build/internal/cjs/meta.js +34 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.ts → table-reservations-v1-experience-experiences.universal-DRR34KWR.d.ts} +140 -10
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +32 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +32 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +140 -7
- package/build/internal/es/meta.mjs +32 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.mts → table-reservations-v1-experience-experiences.universal-DRR34KWR.d.mts} +140 -10
- package/package.json +2 -2
|
@@ -561,6 +561,8 @@ interface ButtonData {
|
|
|
561
561
|
text?: string | null;
|
|
562
562
|
/** Button link details. */
|
|
563
563
|
link?: Link;
|
|
564
|
+
/** Node animation. */
|
|
565
|
+
animation?: Animation;
|
|
564
566
|
}
|
|
565
567
|
/** Background type */
|
|
566
568
|
declare enum BackgroundType {
|
|
@@ -837,9 +839,90 @@ interface Rel {
|
|
|
837
839
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
838
840
|
noreferrer?: boolean | null;
|
|
839
841
|
}
|
|
842
|
+
interface Animation {
|
|
843
|
+
/** Animation kind. */
|
|
844
|
+
type?: TypeWithLiterals;
|
|
845
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
846
|
+
entrance?: EntranceAnimation;
|
|
847
|
+
}
|
|
848
|
+
declare enum Type {
|
|
849
|
+
/** Animations that play while the node is in view. */
|
|
850
|
+
VIEW = "VIEW"
|
|
851
|
+
}
|
|
852
|
+
/** @enumType */
|
|
853
|
+
type TypeWithLiterals = Type | 'VIEW';
|
|
854
|
+
interface EntranceAnimation {
|
|
855
|
+
/** The entrance effect to play. */
|
|
856
|
+
effect?: EntranceEffect;
|
|
857
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
858
|
+
duration?: number | null;
|
|
859
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
860
|
+
delay?: number | null;
|
|
861
|
+
}
|
|
862
|
+
interface EntranceEffect {
|
|
863
|
+
/** The entrance effect type. */
|
|
864
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
865
|
+
/**
|
|
866
|
+
* Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
867
|
+
* @maxLength 20
|
|
868
|
+
*/
|
|
869
|
+
direction?: string | null;
|
|
870
|
+
/**
|
|
871
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
872
|
+
* @maxLength 12
|
|
873
|
+
*/
|
|
874
|
+
shape?: string | null;
|
|
875
|
+
/**
|
|
876
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
877
|
+
* @maxLength 100
|
|
878
|
+
*/
|
|
879
|
+
easing?: string | null;
|
|
880
|
+
}
|
|
881
|
+
declare enum EntranceEffectType {
|
|
882
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
883
|
+
FADE = "FADE",
|
|
884
|
+
/** Enters along a 3D arc path. */
|
|
885
|
+
ARC = "ARC",
|
|
886
|
+
/** Transitions from blurred to sharp. */
|
|
887
|
+
BLUR = "BLUR",
|
|
888
|
+
/** Bounces into place with an elastic curve. */
|
|
889
|
+
BOUNCE = "BOUNCE",
|
|
890
|
+
/** Shrinks down from a larger size. */
|
|
891
|
+
DROP = "DROP",
|
|
892
|
+
/** Expands from a point, scaling to full size. */
|
|
893
|
+
EXPAND = "EXPAND",
|
|
894
|
+
/** Flips into view with a 3D rotation. */
|
|
895
|
+
FLIP = "FLIP",
|
|
896
|
+
/** Drifts gently into place. */
|
|
897
|
+
FLOAT = "FLOAT",
|
|
898
|
+
/** Unfolds from an edge as if hinged. */
|
|
899
|
+
FOLD = "FOLD",
|
|
900
|
+
/** Glides in smoothly from off-screen. */
|
|
901
|
+
GLIDE = "GLIDE",
|
|
902
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
903
|
+
REVEAL = "REVEAL",
|
|
904
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
905
|
+
SHAPE = "SHAPE",
|
|
906
|
+
/** Revealed through shutter-like strips. */
|
|
907
|
+
SHUTTERS = "SHUTTERS",
|
|
908
|
+
/** Slides in from one side. */
|
|
909
|
+
SLIDE = "SLIDE",
|
|
910
|
+
/** Spins into view while scaling up. */
|
|
911
|
+
SPIN = "SPIN",
|
|
912
|
+
/** Tilts in from the side with 3D rotation. */
|
|
913
|
+
TILT = "TILT",
|
|
914
|
+
/** Rotates into view around a corner pivot. */
|
|
915
|
+
TURN = "TURN",
|
|
916
|
+
/** Expands from its horizontal or vertical center. */
|
|
917
|
+
WINK = "WINK"
|
|
918
|
+
}
|
|
919
|
+
/** @enumType */
|
|
920
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
840
921
|
interface CodeBlockData {
|
|
841
922
|
/** Styling for the code block's text. */
|
|
842
923
|
textStyle?: TextStyle;
|
|
924
|
+
/** Node animation. */
|
|
925
|
+
animation?: Animation;
|
|
843
926
|
}
|
|
844
927
|
interface TextStyle {
|
|
845
928
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -872,6 +955,8 @@ interface DividerData {
|
|
|
872
955
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
873
956
|
/** Visual styling for the divider lines. */
|
|
874
957
|
styles?: DividerDataStyles;
|
|
958
|
+
/** Node animation. */
|
|
959
|
+
animation?: Animation;
|
|
875
960
|
}
|
|
876
961
|
declare enum LineCap {
|
|
877
962
|
/** Square line endings. */
|
|
@@ -926,9 +1011,9 @@ interface DividerDataStyles {
|
|
|
926
1011
|
* @maxSize 10
|
|
927
1012
|
*/
|
|
928
1013
|
lineThickness?: number[];
|
|
929
|
-
/**
|
|
1014
|
+
/** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
|
|
930
1015
|
dashLength?: number | null;
|
|
931
|
-
/**
|
|
1016
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
932
1017
|
dashGap?: number | null;
|
|
933
1018
|
/** Gap between divider lines in pixels. */
|
|
934
1019
|
lineGap?: number | null;
|
|
@@ -955,6 +1040,8 @@ interface FileData {
|
|
|
955
1040
|
path?: string | null;
|
|
956
1041
|
/** File size in KB. */
|
|
957
1042
|
sizeInKb?: string | null;
|
|
1043
|
+
/** Node animation. */
|
|
1044
|
+
animation?: Animation;
|
|
958
1045
|
}
|
|
959
1046
|
declare enum ViewMode {
|
|
960
1047
|
/** No PDF view */
|
|
@@ -1015,6 +1102,8 @@ interface GalleryData {
|
|
|
1015
1102
|
disableExpand?: boolean | null;
|
|
1016
1103
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
1017
1104
|
disableDownload?: boolean | null;
|
|
1105
|
+
/** Node animation. */
|
|
1106
|
+
animation?: Animation;
|
|
1018
1107
|
}
|
|
1019
1108
|
interface Media {
|
|
1020
1109
|
/** The source for the media's data. */
|
|
@@ -1158,6 +1247,8 @@ interface GIFData {
|
|
|
1158
1247
|
width?: number;
|
|
1159
1248
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1160
1249
|
gifType?: GIFTypeWithLiterals;
|
|
1250
|
+
/** Node animation. */
|
|
1251
|
+
animation?: Animation;
|
|
1161
1252
|
}
|
|
1162
1253
|
interface GIF {
|
|
1163
1254
|
/**
|
|
@@ -1191,6 +1282,8 @@ interface HeadingData {
|
|
|
1191
1282
|
indentation?: number | null;
|
|
1192
1283
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1193
1284
|
renderedLevel?: number | null;
|
|
1285
|
+
/** Node animation. */
|
|
1286
|
+
animation?: Animation;
|
|
1194
1287
|
}
|
|
1195
1288
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1196
1289
|
/** The URL for the HTML code for the node. */
|
|
@@ -1210,6 +1303,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1210
1303
|
source?: SourceWithLiterals;
|
|
1211
1304
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1212
1305
|
autoHeight?: boolean | null;
|
|
1306
|
+
/** Node animation. */
|
|
1307
|
+
animation?: Animation;
|
|
1213
1308
|
}
|
|
1214
1309
|
/** @oneof */
|
|
1215
1310
|
interface HTMLDataDataOneOf {
|
|
@@ -1259,6 +1354,8 @@ interface ImageData {
|
|
|
1259
1354
|
crop?: ImageDataCrop;
|
|
1260
1355
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1261
1356
|
cropShape?: string | null;
|
|
1357
|
+
/** Node animation. */
|
|
1358
|
+
animation?: Animation;
|
|
1262
1359
|
}
|
|
1263
1360
|
interface StylesBorder {
|
|
1264
1361
|
/** Border width in pixels. */
|
|
@@ -1300,6 +1397,8 @@ interface LinkPreviewData {
|
|
|
1300
1397
|
html?: string | null;
|
|
1301
1398
|
/** Styling for the link preview. */
|
|
1302
1399
|
styles?: LinkPreviewDataStyles;
|
|
1400
|
+
/** Node animation. */
|
|
1401
|
+
animation?: Animation;
|
|
1303
1402
|
}
|
|
1304
1403
|
declare enum StylesPosition {
|
|
1305
1404
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1395,6 +1494,8 @@ interface ParagraphData {
|
|
|
1395
1494
|
indentation?: number | null;
|
|
1396
1495
|
/** Paragraph level */
|
|
1397
1496
|
level?: number | null;
|
|
1497
|
+
/** Node animation. */
|
|
1498
|
+
animation?: Animation;
|
|
1398
1499
|
}
|
|
1399
1500
|
interface PollData {
|
|
1400
1501
|
/** Styling for the poll's container. */
|
|
@@ -1405,6 +1506,8 @@ interface PollData {
|
|
|
1405
1506
|
layout?: PollDataLayout;
|
|
1406
1507
|
/** Styling for the poll and voting options. */
|
|
1407
1508
|
design?: Design;
|
|
1509
|
+
/** Node animation. */
|
|
1510
|
+
animation?: Animation;
|
|
1408
1511
|
}
|
|
1409
1512
|
declare enum ViewRole {
|
|
1410
1513
|
/** Only Poll creator can view the results */
|
|
@@ -1763,6 +1866,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1763
1866
|
containerData?: PluginContainerData;
|
|
1764
1867
|
/** Pricing data for embedded Wix App content. */
|
|
1765
1868
|
pricingData?: PricingData;
|
|
1869
|
+
/** Node animation. */
|
|
1870
|
+
animation?: Animation;
|
|
1766
1871
|
}
|
|
1767
1872
|
/** @oneof */
|
|
1768
1873
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1805,14 +1910,14 @@ declare enum Placement {
|
|
|
1805
1910
|
}
|
|
1806
1911
|
/** @enumType */
|
|
1807
1912
|
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
1808
|
-
declare enum
|
|
1913
|
+
declare enum CardStylesType {
|
|
1809
1914
|
/** Card with visible border and background */
|
|
1810
1915
|
CONTAINED = "CONTAINED",
|
|
1811
1916
|
/** Card without visible border */
|
|
1812
1917
|
FRAMELESS = "FRAMELESS"
|
|
1813
1918
|
}
|
|
1814
1919
|
/** @enumType */
|
|
1815
|
-
type
|
|
1920
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
1816
1921
|
declare enum Alignment {
|
|
1817
1922
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
1818
1923
|
START = "START",
|
|
@@ -1948,7 +2053,7 @@ interface CardStyles {
|
|
|
1948
2053
|
/** Card border radius in pixels. */
|
|
1949
2054
|
borderRadius?: number | null;
|
|
1950
2055
|
/** Card type. Defaults to `CONTAINED`. */
|
|
1951
|
-
type?:
|
|
2056
|
+
type?: CardStylesTypeWithLiterals;
|
|
1952
2057
|
/** Content alignment. Defaults to `START`. */
|
|
1953
2058
|
alignment?: AlignmentWithLiterals;
|
|
1954
2059
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
@@ -2004,6 +2109,8 @@ interface VideoData {
|
|
|
2004
2109
|
title?: string | null;
|
|
2005
2110
|
/** Video options. */
|
|
2006
2111
|
options?: PlaybackOptions;
|
|
2112
|
+
/** Node animation. */
|
|
2113
|
+
animation?: Animation;
|
|
2007
2114
|
}
|
|
2008
2115
|
interface PlaybackOptions {
|
|
2009
2116
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -2020,6 +2127,8 @@ interface EmbedData {
|
|
|
2020
2127
|
oembed?: Oembed;
|
|
2021
2128
|
/** Origin asset source. */
|
|
2022
2129
|
src?: string | null;
|
|
2130
|
+
/** Node animation. */
|
|
2131
|
+
animation?: Animation;
|
|
2023
2132
|
}
|
|
2024
2133
|
interface Oembed {
|
|
2025
2134
|
/** The resource type. */
|
|
@@ -2064,6 +2173,8 @@ interface CollapsibleListData {
|
|
|
2064
2173
|
direction?: DirectionWithLiterals;
|
|
2065
2174
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
2066
2175
|
isQapageData?: boolean | null;
|
|
2176
|
+
/** Node animation. */
|
|
2177
|
+
animation?: Animation;
|
|
2067
2178
|
}
|
|
2068
2179
|
declare enum InitialExpandedItems {
|
|
2069
2180
|
/** First item will be expended initally */
|
|
@@ -2106,6 +2217,8 @@ interface TableData {
|
|
|
2106
2217
|
cellPadding?: number[];
|
|
2107
2218
|
/** Table's alternative text. */
|
|
2108
2219
|
altText?: string | null;
|
|
2220
|
+
/** Node animation. */
|
|
2221
|
+
animation?: Animation;
|
|
2109
2222
|
}
|
|
2110
2223
|
interface Dimensions {
|
|
2111
2224
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2214,6 +2327,8 @@ interface AudioData {
|
|
|
2214
2327
|
authorName?: string | null;
|
|
2215
2328
|
/** An HTML version of the audio node. */
|
|
2216
2329
|
html?: string | null;
|
|
2330
|
+
/** Node animation. */
|
|
2331
|
+
animation?: Animation;
|
|
2217
2332
|
}
|
|
2218
2333
|
interface OrderedListData {
|
|
2219
2334
|
/** Indentation level from 0-4. */
|
|
@@ -2222,16 +2337,22 @@ interface OrderedListData {
|
|
|
2222
2337
|
offset?: number | null;
|
|
2223
2338
|
/** List start number. */
|
|
2224
2339
|
start?: number | null;
|
|
2340
|
+
/** Node animation. */
|
|
2341
|
+
animation?: Animation;
|
|
2225
2342
|
}
|
|
2226
2343
|
interface BulletedListData {
|
|
2227
2344
|
/** Indentation level from 0-4. */
|
|
2228
2345
|
indentation?: number;
|
|
2229
2346
|
/** Offset level from 0-4. */
|
|
2230
2347
|
offset?: number | null;
|
|
2348
|
+
/** Node animation. */
|
|
2349
|
+
animation?: Animation;
|
|
2231
2350
|
}
|
|
2232
2351
|
interface BlockquoteData {
|
|
2233
2352
|
/** Indentation level from 1-4. */
|
|
2234
2353
|
indentation?: number;
|
|
2354
|
+
/** Node animation. */
|
|
2355
|
+
animation?: Animation;
|
|
2235
2356
|
}
|
|
2236
2357
|
interface CaptionData {
|
|
2237
2358
|
textStyle?: TextStyle;
|
|
@@ -2289,6 +2410,8 @@ interface LayoutData {
|
|
|
2289
2410
|
background?: LayoutDataBackground;
|
|
2290
2411
|
/** Backdrop styling (color or gradient). */
|
|
2291
2412
|
backdrop?: Backdrop;
|
|
2413
|
+
/** Node animation. */
|
|
2414
|
+
animation?: Animation;
|
|
2292
2415
|
}
|
|
2293
2416
|
declare enum ImageScalingScaling {
|
|
2294
2417
|
/** Auto image scaling */
|
|
@@ -2440,6 +2563,8 @@ interface ShapeData {
|
|
|
2440
2563
|
shape?: Media;
|
|
2441
2564
|
/** Styling for the shape. */
|
|
2442
2565
|
styles?: ShapeDataStyles;
|
|
2566
|
+
/** Node animation. */
|
|
2567
|
+
animation?: Animation;
|
|
2443
2568
|
}
|
|
2444
2569
|
interface ShapeDataStyles {
|
|
2445
2570
|
/**
|
|
@@ -2542,6 +2667,8 @@ interface TocData {
|
|
|
2542
2667
|
color?: string | null;
|
|
2543
2668
|
/** Indentation style. Default: NESTED. */
|
|
2544
2669
|
indentation?: IndentationWithLiterals;
|
|
2670
|
+
/** Node animation. */
|
|
2671
|
+
animation?: Animation;
|
|
2545
2672
|
}
|
|
2546
2673
|
/** List style. */
|
|
2547
2674
|
declare enum ListStyle {
|
|
@@ -2588,6 +2715,8 @@ interface SmartBlockData {
|
|
|
2588
2715
|
borderWidth?: number | null;
|
|
2589
2716
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2590
2717
|
borderRadius?: number | null;
|
|
2718
|
+
/** Node animation. */
|
|
2719
|
+
animation?: Animation;
|
|
2591
2720
|
}
|
|
2592
2721
|
/** Layout type of the smart block */
|
|
2593
2722
|
declare enum SmartBlockDataType {
|
|
@@ -2691,10 +2820,14 @@ interface CheckboxListData {
|
|
|
2691
2820
|
indentation?: number;
|
|
2692
2821
|
/** Offset level from 0-4. */
|
|
2693
2822
|
offset?: number | null;
|
|
2823
|
+
/** Node animation. */
|
|
2824
|
+
animation?: Animation;
|
|
2694
2825
|
}
|
|
2695
2826
|
interface ListItemNodeData {
|
|
2696
2827
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2697
2828
|
checked?: boolean | null;
|
|
2829
|
+
/** Node animation. */
|
|
2830
|
+
animation?: Animation;
|
|
2698
2831
|
}
|
|
2699
2832
|
interface Metadata {
|
|
2700
2833
|
/** Schema version. */
|
|
@@ -4754,10 +4887,7 @@ type ExperienceQuery = {
|
|
|
4754
4887
|
declare const utils: {
|
|
4755
4888
|
query: {
|
|
4756
4889
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4757
|
-
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4758
|
-
* The start color as a hexademical value.
|
|
4759
|
-
* @maxLength 19
|
|
4760
|
-
*/
|
|
4890
|
+
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4761
4891
|
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4762
4892
|
};
|
|
4763
4893
|
search: {
|
|
@@ -5039,4 +5169,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
5039
5169
|
*/
|
|
5040
5170
|
declare function bulkUnarchiveExperiences(experienceIds: string[]): Promise<NonNullablePaths<BulkUnarchiveExperiencesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
5041
5171
|
|
|
5042
|
-
export { VoteRole as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, LineStyle as D, type Experience as E, Width as F, type GetExperienceBySlugResponse as G, DividerDataAlignment as H, LayoutType as I, Crop as J, ThumbnailsAlignment as K, LineCap as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, GIFType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, Source as X, StylesPosition as Y, MapType as Z, ViewRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicy as a$, PollLayoutType as a0, PollLayoutDirection as a1, PollDesignBackgroundType as a2, DecorationType as a3, FontType as a4, Variant as a5, Position as a6, AspectRatio as a7, Resizing as a8, Placement as a9, SortType as aA, SortDirection as aB, MissingValues as aC, ScalarType as aD, NestedAggregationType as aE, Interval as aF, AggregationType as aG, SearchDetailsMode as aH, PlacementType as aI, DayOfWeek as aJ, ResolutionMethod as aK, WebhookIdentityType as aL, type Table as aM, type TableCombination as aN, type SpecificTablesOptions as aO, type OnOptions as aP, type OnOptionsOptionsOneOf as aQ, type StartDaysAndTimes as aR, type WeeklyOptions as aS, type OneTimeOptions as aT, type Entry as aU, type EntryRecurrenceOptionsOneOf as aV, type PartySize as aW, type NoticePeriod as aX, type Approval as aY, type MaxGuests as aZ, type OnlineReservationsBusinessSchedule as a_, Type as aa, Alignment as ab, Layout as ac, AppType as ad, InitialExpandedItems as ae, Direction as af, VerticalAlignment as ag, NullValue as ah, ImageScalingScaling as ai, ImagePosition as aj, LayoutDataBackgroundType as ak, Origin as al, BannerPosition as am, BackdropType as an, VerticalAlignmentAlignment as ao, ResponsivenessBehaviour as ap, DesignTarget as aq, Scaling as ar, ImagePositionPosition as as, CardDataBackgroundType as at, ListStyle as au, Indentation as av, SmartBlockDataType as aw, ColumnSize as ax, PaymentPolicyType as ay, SortOrder as az, type ExperienceSearch as b, type PollDesignBackground as b$, type PrivacyPolicyValueOneOf as b0, type TermsAndConditions as b1, type TermsAndConditionsValueOneOf as b2, type CustomFieldDefinition as b3, type EmailMarketingCheckbox as b4, type RichContent as b5, type Node as b6, type NodeDataOneOf as b7, type NodeStyle as b8, type ButtonData as b9, type Item as bA, type ItemDataOneOf as bB, type GalleryOptions as bC, type GalleryOptionsLayout as bD, type ItemStyle as bE, type Thumbnails as bF, type GIFData as bG, type GIF as bH, type HeadingData as bI, type HTMLData as bJ, type HTMLDataDataOneOf as bK, type ImageData as bL, type StylesBorder as bM, type ImageDataStyles as bN, type ImageDataCrop as bO, type LinkPreviewData as bP, type LinkPreviewDataStyles as bQ, type MapData as bR, type MapSettings as bS, type ParagraphData as bT, type PollData as bU, type Permissions as bV, type Option as bW, type PollSettings as bX, type PollLayout as bY, type OptionLayout as bZ, type BackgroundGradient as b_, type Gradient as ba, type Stop as bb, type Border as bc, type Colors as bd, type Background as be, type PluginContainerData as bf, type PluginContainerDataWidth as bg, type PluginContainerDataWidthDataOneOf as bh, type Spoiler as bi, type Height as bj, type Styles as bk, type Link as bl, type LinkDataOneOf as bm, type Rel as bn, type CodeBlockData as bo, type TextStyle as bp, type DividerData as bq, type DividerDataStyles as br, type FileData as bs, type FileSource as bt, type FileSourceDataOneOf as bu, type PDFSettings as bv, type GalleryData as bw, type Media as bx, type Image as by, type Video as bz, type BulkUpdateExperiencesResponse as c, type DisplayInfo as c$, type PollDesignBackgroundBackgroundOneOf as c0, type PollDesign as c1, type OptionDesign as c2, type Poll as c3, type PollDataLayout as c4, type Design as c5, type TextData as c6, type Decoration as c7, type DecorationDataOneOf as c8, type AnchorData as c9, type BorderWidths as cA, type ListValue as cB, type AudioData as cC, type OrderedListData as cD, type BulletedListData as cE, type BlockquoteData as cF, type CaptionData as cG, type LayoutData as cH, type LayoutDataBackground as cI, type LayoutDataBackgroundImage as cJ, type Banner as cK, type Backdrop as cL, type LayoutCellData as cM, type ShapeData as cN, type ShapeDataStyles as cO, type CardData as cP, type CardDataBackground as cQ, type BackgroundImage as cR, type TocData as cS, type SmartBlockData as cT, type SmartBlockCellData as cU, type CheckboxListData as cV, type ListItemNodeData as cW, type Metadata as cX, type DocumentStyle as cY, type TextNodeStyle as cZ, type PerGuestOptions as c_, type ColorData as ca, type LinkData as cb, type MentionData as cc, type FontSizeData as cd, type SpoilerData as ce, type FontFamilyData as cf, type SketchData as cg, type AppEmbedData as ch, type AppEmbedDataAppDataOneOf as ci, type BookingData as cj, type EventData as ck, type ButtonStyles as cl, type ImageStyles as cm, type RibbonStyles as cn, type CardStyles as co, type PricingData as cp, type VideoData as cq, type PlaybackOptions as cr, type EmbedData as cs, type Oembed as ct, type CollapsibleListData as cu, type TableData as cv, type Dimensions as cw, type TableCellData as cx, type CellStyle as cy, type BorderColors as cz, type BulkUpdateExperiencesApplicationErrors as d, type RangeResults as d$, type PaymentPolicy as d0, type PaymentPolicyOptionsOneOf as d1, type OnlineReservations as d2, type ReservationForm as d3, type TableManagement as d4, type TableManagementOptionsOneOf as d5, type Configuration as d6, type ExtendedFields as d7, type Tags as d8, type TagList as d9, type Sorting as dA, type CursorPaging as dB, type QueryExperiencesResponse as dC, type CursorPagingMetadata as dD, type Cursors as dE, type SearchExperiencesRequest as dF, type CursorSearch as dG, type CursorSearchPagingMethodOneOf as dH, type Aggregation as dI, type AggregationKindOneOf as dJ, type RangeBucket as dK, type IncludeMissingValuesOptions as dL, type ValueAggregation as dM, type ValueAggregationOptionsOneOf as dN, type RangeAggregation as dO, type ScalarAggregation as dP, type DateHistogramAggregation as dQ, type NestedAggregationItem as dR, type NestedAggregationItemKindOneOf as dS, type NestedAggregation as dT, type SearchDetails as dU, type AggregationData as dV, type ValueAggregationResult as dW, type RangeAggregationResult as dX, type NestedAggregationResults as dY, type NestedAggregationResultsResultOneOf as dZ, type ValueResults as d_, type SeoSettings as da, type SeoSchema as db, type Keyword as dc, type Tag as dd, type Settings as de, type InvalidateCache as df, type InvalidateCacheGetByOneOf as dg, type App as dh, type Page as di, type URI as dj, type File as dk, type CustomTag as dl, type Pages as dm, type URIs as dn, type TagsModified as dp, type CreateExperienceRequest as dq, type CreateExperienceResponse as dr, type GetExperienceRequest as ds, type GetExperienceResponse as dt, type GetExperienceBySlugRequest as du, type UpdateExperienceRequest as dv, type UpdateExperienceResponse as dw, type QueryExperiencesRequest as dx, type CursorQuery as dy, type CursorQueryPagingMethodOneOf as dz, type BulkUpdateExperienceTagsOptions as e, type ExperienceSearchSpec as e$, type AggregationResultsScalarResult as e0, type NestedValueAggregationResult as e1, type ValueResult as e2, type RangeResult as e3, type ScalarResult as e4, type NestedResultValue as e5, type NestedResultValueResultOneOf as e6, type Results as e7, type DateHistogramResult as e8, type GroupByValueResults as e9, type SpecialHourPeriod as eA, type Multilingual as eB, type SupportedLanguage as eC, type ConsentPolicy as eD, type Translation as eE, type ChangeContext as eF, type ChangeContextPayloadOneOf as eG, type PropertiesChange as eH, type SiteCreated as eI, type SiteCloned as eJ, type Empty as eK, type DomainEvent as eL, type DomainEventBodyOneOf as eM, type EntityCreatedEvent as eN, type RestoreInfo as eO, type EntityUpdatedEvent as eP, type EntityDeletedEvent as eQ, type ActionEvent as eR, type MessageEnvelope as eS, type IdentificationData as eT, type IdentificationDataIdOneOf as eU, type AccountInfo as eV, type BaseEventMetadata as eW, type EventMetadata as eX, type AccountInfoMetadata as eY, type ExperiencesQueryResult as eZ, type ExperienceQuerySpec as e_, type DateHistogramResults as ea, type NestedResults as eb, type AggregationResults as ec, type AggregationResultsResultOneOf as ed, type BulkUpdateExperiencesRequest as ee, type ItemMetadata as ef, type ApplicationError as eg, type BulkUpdateExperiencesResult as eh, type BulkActionMetadata as ei, type BulkUpdateExperienceTagsRequest as ej, type BulkUpdateExperienceTagsResult as ek, type BulkUpdateExperienceTagsByFilterRequest as el, type BulkArchiveExperiencesRequest as em, type BulkArchiveExperiencesResult as en, type BulkUnarchiveExperiencesRequest as eo, type BulkUnarchiveExperiencesResult as ep, type SitePropertiesNotification as eq, type SitePropertiesEvent as er, type Properties as es, type Categories as et, type Locale as eu, type Address as ev, type AddressHint as ew, type GeoCoordinates as ex, type BusinessSchedule as ey, type TimePeriod as ez, type BulkUpdateExperienceTagsResponse as f, type SmartBlockDataTypeWithLiterals as f$, utils as f0, type TableAvailabilityTypeWithLiterals as f1, type TableAssignmentTypeWithLiterals as f2, type TableManagementModeWithLiterals as f3, type UnitWithLiterals as f4, type ModeWithLiterals as f5, type StartDaysAndTimesDayOfWeekWithLiterals as f6, type RecurrenceWithLiterals as f7, type NodeTypeWithLiterals as f8, type BackgroundTypeWithLiterals as f9, type VariantWithLiterals as fA, type PositionWithLiterals as fB, type AspectRatioWithLiterals as fC, type ResizingWithLiterals as fD, type PlacementWithLiterals as fE, type TypeWithLiterals as fF, type AlignmentWithLiterals as fG, type LayoutWithLiterals as fH, type AppTypeWithLiterals as fI, type InitialExpandedItemsWithLiterals as fJ, type DirectionWithLiterals as fK, type VerticalAlignmentWithLiterals as fL, type NullValueWithLiterals as fM, type ImageScalingScalingWithLiterals as fN, type ImagePositionWithLiterals as fO, type LayoutDataBackgroundTypeWithLiterals as fP, type OriginWithLiterals as fQ, type BannerPositionWithLiterals as fR, type BackdropTypeWithLiterals as fS, type VerticalAlignmentAlignmentWithLiterals as fT, type ResponsivenessBehaviourWithLiterals as fU, type DesignTargetWithLiterals as fV, type ScalingWithLiterals as fW, type ImagePositionPositionWithLiterals as fX, type CardDataBackgroundTypeWithLiterals as fY, type ListStyleWithLiterals as fZ, type IndentationWithLiterals as f_, type GradientTypeWithLiterals as fa, type WidthTypeWithLiterals as fb, type PluginContainerDataAlignmentWithLiterals as fc, type ButtonDataTypeWithLiterals as fd, type TargetWithLiterals as fe, type TextAlignmentWithLiterals as ff, type LineCapWithLiterals as fg, type LineStyleWithLiterals as fh, type WidthWithLiterals as fi, type DividerDataAlignmentWithLiterals as fj, type ViewModeWithLiterals as fk, type LayoutTypeWithLiterals as fl, type OrientationWithLiterals as fm, type CropWithLiterals as fn, type ThumbnailsAlignmentWithLiterals as fo, type GIFTypeWithLiterals as fp, type SourceWithLiterals as fq, type StylesPositionWithLiterals as fr, type MapTypeWithLiterals as fs, type ViewRoleWithLiterals as ft, type VoteRoleWithLiterals as fu, type PollLayoutTypeWithLiterals as fv, type PollLayoutDirectionWithLiterals as fw, type PollDesignBackgroundTypeWithLiterals as fx, type DecorationTypeWithLiterals as fy, type FontTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type ColumnSizeWithLiterals as g0, type PaymentPolicyTypeWithLiterals as g1, type SortOrderWithLiterals as g2, type SortTypeWithLiterals as g3, type SortDirectionWithLiterals as g4, type MissingValuesWithLiterals as g5, type ScalarTypeWithLiterals as g6, type NestedAggregationTypeWithLiterals as g7, type IntervalWithLiterals as g8, type AggregationTypeWithLiterals as g9, type SearchDetailsModeWithLiterals as ga, type PlacementTypeWithLiterals as gb, type DayOfWeekWithLiterals as gc, type ResolutionMethodWithLiterals as gd, type WebhookIdentityTypeWithLiterals as ge, type CommonQueryWithEntityContext as gf, type CommonSearchWithEntityContext as gg, onExperienceCreated as gh, onExperienceTagsModified as gi, onExperienceUpdated as gj, createExperience as gk, getExperience as gl, getExperienceBySlug as gm, updateExperience as gn, queryExperiences as go, bulkUpdateExperiences as gp, bulkUpdateExperienceTags as gq, bulkUpdateExperienceTagsByFilter as gr, bulkArchiveExperiences as gs, bulkUnarchiveExperiences as gt, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
|
5172
|
+
export { MapType as $, Target as A, type BulkUpdateExperiencesOptions as B, Type as C, EntranceEffectType as D, type Experience as E, TextAlignment as F, type GetExperienceBySlugResponse as G, LineStyle as H, Width as I, DividerDataAlignment as J, LayoutType as K, LineCap as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Crop as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, ThumbnailsAlignment as X, GIFType as Y, Source as Z, StylesPosition as _, type UpdateExperienceApplicationErrors as a, type MaxGuests as a$, ViewRole as a0, VoteRole as a1, PollLayoutType as a2, PollLayoutDirection as a3, PollDesignBackgroundType as a4, DecorationType as a5, FontType as a6, Variant as a7, Position as a8, AspectRatio as a9, PaymentPolicyType as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, SearchDetailsMode as aJ, PlacementType as aK, DayOfWeek as aL, ResolutionMethod as aM, WebhookIdentityType as aN, type Table as aO, type TableCombination as aP, type SpecificTablesOptions as aQ, type OnOptions as aR, type OnOptionsOptionsOneOf as aS, type StartDaysAndTimes as aT, type WeeklyOptions as aU, type OneTimeOptions as aV, type Entry as aW, type EntryRecurrenceOptionsOneOf as aX, type PartySize as aY, type NoticePeriod as aZ, type Approval as a_, Resizing as aa, Placement as ab, CardStylesType as ac, Alignment as ad, Layout as ae, AppType as af, InitialExpandedItems as ag, Direction as ah, VerticalAlignment as ai, NullValue as aj, ImageScalingScaling as ak, ImagePosition as al, LayoutDataBackgroundType as am, Origin as an, BannerPosition as ao, BackdropType as ap, VerticalAlignmentAlignment as aq, ResponsivenessBehaviour as ar, DesignTarget as as, Scaling as at, ImagePositionPosition as au, CardDataBackgroundType as av, ListStyle as aw, Indentation as ax, SmartBlockDataType as ay, ColumnSize as az, type ExperienceSearch as b, type Option as b$, type OnlineReservationsBusinessSchedule as b0, type PrivacyPolicy as b1, type PrivacyPolicyValueOneOf as b2, type TermsAndConditions as b3, type TermsAndConditionsValueOneOf as b4, type CustomFieldDefinition as b5, type EmailMarketingCheckbox as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type PDFSettings as bA, type GalleryData as bB, type Media as bC, type Image as bD, type Video as bE, type Item as bF, type ItemDataOneOf as bG, type GalleryOptions as bH, type GalleryOptionsLayout as bI, type ItemStyle as bJ, type Thumbnails as bK, type GIFData as bL, type GIF as bM, type HeadingData as bN, type HTMLData as bO, type HTMLDataDataOneOf as bP, type ImageData as bQ, type StylesBorder as bR, type ImageDataStyles as bS, type ImageDataCrop as bT, type LinkPreviewData as bU, type LinkPreviewDataStyles as bV, type MapData as bW, type MapSettings as bX, type ParagraphData as bY, type PollData as bZ, type Permissions as b_, type NodeStyle as ba, type ButtonData as bb, type Gradient as bc, type Stop as bd, type Border as be, type Colors as bf, type Background as bg, type PluginContainerData as bh, type PluginContainerDataWidth as bi, type PluginContainerDataWidthDataOneOf as bj, type Spoiler as bk, type Height as bl, type Styles as bm, type Link as bn, type LinkDataOneOf as bo, type Rel as bp, type Animation as bq, type EntranceAnimation as br, type EntranceEffect as bs, type CodeBlockData as bt, type TextStyle as bu, type DividerData as bv, type DividerDataStyles as bw, type FileData as bx, type FileSource as by, type FileSourceDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type ListItemNodeData as c$, type PollSettings as c0, type PollLayout as c1, type OptionLayout as c2, type BackgroundGradient as c3, type PollDesignBackground as c4, type PollDesignBackgroundBackgroundOneOf as c5, type PollDesign as c6, type OptionDesign as c7, type Poll as c8, type PollDataLayout as c9, type TableData as cA, type Dimensions as cB, type TableCellData as cC, type CellStyle as cD, type BorderColors as cE, type BorderWidths as cF, type ListValue as cG, type AudioData as cH, type OrderedListData as cI, type BulletedListData as cJ, type BlockquoteData as cK, type CaptionData as cL, type LayoutData as cM, type LayoutDataBackground as cN, type LayoutDataBackgroundImage as cO, type Banner as cP, type Backdrop as cQ, type LayoutCellData as cR, type ShapeData as cS, type ShapeDataStyles as cT, type CardData as cU, type CardDataBackground as cV, type BackgroundImage as cW, type TocData as cX, type SmartBlockData as cY, type SmartBlockCellData as cZ, type CheckboxListData as c_, type Design as ca, type TextData as cb, type Decoration as cc, type DecorationDataOneOf as cd, type AnchorData as ce, type ColorData as cf, type LinkData as cg, type MentionData as ch, type FontSizeData as ci, type SpoilerData as cj, type FontFamilyData as ck, type SketchData as cl, type AppEmbedData as cm, type AppEmbedDataAppDataOneOf as cn, type BookingData as co, type EventData as cp, type ButtonStyles as cq, type ImageStyles as cr, type RibbonStyles as cs, type CardStyles as ct, type PricingData as cu, type VideoData as cv, type PlaybackOptions as cw, type EmbedData as cx, type Oembed as cy, type CollapsibleListData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ValueAggregationResult as d$, type Metadata as d0, type DocumentStyle as d1, type TextNodeStyle as d2, type PerGuestOptions as d3, type DisplayInfo as d4, type PaymentPolicy as d5, type PaymentPolicyOptionsOneOf as d6, type OnlineReservations as d7, type ReservationForm as d8, type TableManagement as d9, type UpdateExperienceRequest as dA, type UpdateExperienceResponse as dB, type QueryExperiencesRequest as dC, type CursorQuery as dD, type CursorQueryPagingMethodOneOf as dE, type Sorting as dF, type CursorPaging as dG, type QueryExperiencesResponse as dH, type CursorPagingMetadata as dI, type Cursors as dJ, type SearchExperiencesRequest as dK, type CursorSearch as dL, type CursorSearchPagingMethodOneOf as dM, type Aggregation as dN, type AggregationKindOneOf as dO, type RangeBucket as dP, type IncludeMissingValuesOptions as dQ, type ValueAggregation as dR, type ValueAggregationOptionsOneOf as dS, type RangeAggregation as dT, type ScalarAggregation as dU, type DateHistogramAggregation as dV, type NestedAggregationItem as dW, type NestedAggregationItemKindOneOf as dX, type NestedAggregation as dY, type SearchDetails as dZ, type AggregationData as d_, type TableManagementOptionsOneOf as da, type Configuration as db, type ExtendedFields as dc, type Tags as dd, type TagList as de, type SeoSettings as df, type SeoSchema as dg, type Keyword as dh, type Tag as di, type Settings as dj, type InvalidateCache as dk, type InvalidateCacheGetByOneOf as dl, type App as dm, type Page as dn, type URI as dp, type File as dq, type CustomTag as dr, type Pages as ds, type URIs as dt, type TagsModified as du, type CreateExperienceRequest as dv, type CreateExperienceResponse as dw, type GetExperienceRequest as dx, type GetExperienceResponse as dy, type GetExperienceBySlugRequest as dz, type BulkUpdateExperienceTagsOptions as e, type BaseEventMetadata as e$, type RangeAggregationResult as e0, type NestedAggregationResults as e1, type NestedAggregationResultsResultOneOf as e2, type ValueResults as e3, type RangeResults as e4, type AggregationResultsScalarResult as e5, type NestedValueAggregationResult as e6, type ValueResult as e7, type RangeResult as e8, type ScalarResult as e9, type Address as eA, type AddressHint as eB, type GeoCoordinates as eC, type BusinessSchedule as eD, type TimePeriod as eE, type SpecialHourPeriod as eF, type Multilingual as eG, type SupportedLanguage as eH, type ConsentPolicy as eI, type Translation as eJ, type ChangeContext as eK, type ChangeContextPayloadOneOf as eL, type PropertiesChange as eM, type SiteCreated as eN, type SiteCloned as eO, type Empty as eP, type DomainEvent as eQ, type DomainEventBodyOneOf as eR, type EntityCreatedEvent as eS, type RestoreInfo as eT, type EntityUpdatedEvent as eU, type EntityDeletedEvent as eV, type ActionEvent as eW, type MessageEnvelope as eX, type IdentificationData as eY, type IdentificationDataIdOneOf as eZ, type AccountInfo as e_, type NestedResultValue as ea, type NestedResultValueResultOneOf as eb, type Results as ec, type DateHistogramResult as ed, type GroupByValueResults as ee, type DateHistogramResults as ef, type NestedResults as eg, type AggregationResults as eh, type AggregationResultsResultOneOf as ei, type BulkUpdateExperiencesRequest as ej, type ItemMetadata as ek, type ApplicationError as el, type BulkUpdateExperiencesResult as em, type BulkActionMetadata as en, type BulkUpdateExperienceTagsRequest as eo, type BulkUpdateExperienceTagsResult as ep, type BulkUpdateExperienceTagsByFilterRequest as eq, type BulkArchiveExperiencesRequest as er, type BulkArchiveExperiencesResult as es, type BulkUnarchiveExperiencesRequest as et, type BulkUnarchiveExperiencesResult as eu, type SitePropertiesNotification as ev, type SitePropertiesEvent as ew, type Properties as ex, type Categories as ey, type Locale as ez, type BulkUpdateExperienceTagsResponse as f, type ResponsivenessBehaviourWithLiterals as f$, type EventMetadata as f0, type AccountInfoMetadata as f1, type ExperiencesQueryResult as f2, type ExperienceQuerySpec as f3, type ExperienceSearchSpec as f4, utils as f5, type TableAvailabilityTypeWithLiterals as f6, type TableAssignmentTypeWithLiterals as f7, type TableManagementModeWithLiterals as f8, type UnitWithLiterals as f9, type ViewRoleWithLiterals as fA, type VoteRoleWithLiterals as fB, type PollLayoutTypeWithLiterals as fC, type PollLayoutDirectionWithLiterals as fD, type PollDesignBackgroundTypeWithLiterals as fE, type DecorationTypeWithLiterals as fF, type FontTypeWithLiterals as fG, type VariantWithLiterals as fH, type PositionWithLiterals as fI, type AspectRatioWithLiterals as fJ, type ResizingWithLiterals as fK, type PlacementWithLiterals as fL, type CardStylesTypeWithLiterals as fM, type AlignmentWithLiterals as fN, type LayoutWithLiterals as fO, type AppTypeWithLiterals as fP, type InitialExpandedItemsWithLiterals as fQ, type DirectionWithLiterals as fR, type VerticalAlignmentWithLiterals as fS, type NullValueWithLiterals as fT, type ImageScalingScalingWithLiterals as fU, type ImagePositionWithLiterals as fV, type LayoutDataBackgroundTypeWithLiterals as fW, type OriginWithLiterals as fX, type BannerPositionWithLiterals as fY, type BackdropTypeWithLiterals as fZ, type VerticalAlignmentAlignmentWithLiterals as f_, type ModeWithLiterals as fa, type StartDaysAndTimesDayOfWeekWithLiterals as fb, type RecurrenceWithLiterals as fc, type NodeTypeWithLiterals as fd, type BackgroundTypeWithLiterals as fe, type GradientTypeWithLiterals as ff, type WidthTypeWithLiterals as fg, type PluginContainerDataAlignmentWithLiterals as fh, type ButtonDataTypeWithLiterals as fi, type TargetWithLiterals as fj, type TypeWithLiterals as fk, type EntranceEffectTypeWithLiterals as fl, type TextAlignmentWithLiterals as fm, type LineCapWithLiterals as fn, type LineStyleWithLiterals as fo, type WidthWithLiterals as fp, type DividerDataAlignmentWithLiterals as fq, type ViewModeWithLiterals as fr, type LayoutTypeWithLiterals as fs, type OrientationWithLiterals as ft, type CropWithLiterals as fu, type ThumbnailsAlignmentWithLiterals as fv, type GIFTypeWithLiterals as fw, type SourceWithLiterals as fx, type StylesPositionWithLiterals as fy, type MapTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type DesignTargetWithLiterals as g0, type ScalingWithLiterals as g1, type ImagePositionPositionWithLiterals as g2, type CardDataBackgroundTypeWithLiterals as g3, type ListStyleWithLiterals as g4, type IndentationWithLiterals as g5, type SmartBlockDataTypeWithLiterals as g6, type ColumnSizeWithLiterals as g7, type PaymentPolicyTypeWithLiterals as g8, type SortOrderWithLiterals as g9, bulkUnarchiveExperiences as gA, type SortTypeWithLiterals as ga, type SortDirectionWithLiterals as gb, type MissingValuesWithLiterals as gc, type ScalarTypeWithLiterals as gd, type NestedAggregationTypeWithLiterals as ge, type IntervalWithLiterals as gf, type AggregationTypeWithLiterals as gg, type SearchDetailsModeWithLiterals as gh, type PlacementTypeWithLiterals as gi, type DayOfWeekWithLiterals as gj, type ResolutionMethodWithLiterals as gk, type WebhookIdentityTypeWithLiterals as gl, type CommonQueryWithEntityContext as gm, type CommonSearchWithEntityContext as gn, onExperienceCreated as go, onExperienceTagsModified as gp, onExperienceUpdated as gq, createExperience as gr, getExperience as gs, getExperienceBySlug as gt, updateExperience as gu, queryExperiences as gv, bulkUpdateExperiences as gw, bulkUpdateExperienceTags as gx, bulkUpdateExperienceTagsByFilter as gy, bulkArchiveExperiences as gz, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-
|
|
3
|
-
export { eV as AccountInfo, eY as AccountInfoMetadata, eR as ActionEvent, ev as Address, ew as AddressHint, dI as Aggregation, dV as AggregationData, dJ as AggregationKindOneOf, ec as AggregationResults, ed as AggregationResultsResultOneOf, e0 as AggregationResultsScalarResult, aG as AggregationType, g9 as AggregationTypeWithLiterals, ab as Alignment, fG as AlignmentWithLiterals, c9 as AnchorData, dh as App, ch as AppEmbedData, ci as AppEmbedDataAppDataOneOf, ad as AppType, fI as AppTypeWithLiterals, eg as ApplicationError, aY as Approval, a7 as AspectRatio, fC as AspectRatioWithLiterals, cC as AudioData, cL as Backdrop, an as BackdropType, fS as BackdropTypeWithLiterals, be as Background, b_ as BackgroundGradient, cR as BackgroundImage, x as BackgroundType, f9 as BackgroundTypeWithLiterals, cK as Banner, am as BannerPosition, fR as BannerPositionWithLiterals, eW as BaseEventMetadata, cF as BlockquoteData, cj as BookingData, bc as Border, cz as BorderColors, cA as BorderWidths, ei as BulkActionMetadata, em as BulkArchiveExperiencesRequest, en as BulkArchiveExperiencesResult, eo as BulkUnarchiveExperiencesRequest, ep as BulkUnarchiveExperiencesResult, el as BulkUpdateExperienceTagsByFilterRequest, ej as BulkUpdateExperienceTagsRequest, ek as BulkUpdateExperienceTagsResult, ee as BulkUpdateExperiencesRequest, eh as BulkUpdateExperiencesResult, cE as BulletedListData, ey as BusinessSchedule, b9 as ButtonData, z as ButtonDataType, fd as ButtonDataTypeWithLiterals, cl as ButtonStyles, cG as CaptionData, cP as CardData, cQ as CardDataBackground, at as CardDataBackgroundType, fY as CardDataBackgroundTypeWithLiterals, co as CardStyles, et as Categories, cy as CellStyle, eF as ChangeContext, eG as ChangeContextPayloadOneOf, cV as CheckboxListData, bo as CodeBlockData, cu as CollapsibleListData, ca as ColorData, bd as Colors, ax as ColumnSize, g0 as ColumnSizeWithLiterals, gf as CommonQueryWithEntityContext, gg as CommonSearchWithEntityContext, d6 as Configuration, eD as ConsentPolicy, dq as CreateExperienceRequest, dr as CreateExperienceResponse, J as Crop, fn as CropWithLiterals, dB as CursorPaging, dD as CursorPagingMetadata, dy as CursorQuery, dz as CursorQueryPagingMethodOneOf, dG as CursorSearch, dH as CursorSearchPagingMethodOneOf, dE as Cursors, b3 as CustomFieldDefinition, dl as CustomTag, dQ as DateHistogramAggregation, e8 as DateHistogramResult, ea as DateHistogramResults, aJ as DayOfWeek, gc as DayOfWeekWithLiterals, c7 as Decoration, c8 as DecorationDataOneOf, a3 as DecorationType, fy as DecorationTypeWithLiterals, c5 as Design, aq as DesignTarget, fV as DesignTargetWithLiterals, cw as Dimensions, af as Direction, fK as DirectionWithLiterals, c$ as DisplayInfo, bq as DividerData, H as DividerDataAlignment, fj as DividerDataAlignmentWithLiterals, br as DividerDataStyles, cY as DocumentStyle, eL as DomainEvent, eM as DomainEventBodyOneOf, b4 as EmailMarketingCheckbox, cs as EmbedData, eK as Empty, eN as EntityCreatedEvent, eQ as EntityDeletedEvent, eP as EntityUpdatedEvent, aU as Entry, aV as EntryRecurrenceOptionsOneOf, ck as EventData, eX as EventMetadata, e_ as ExperienceQuerySpec, e$ as ExperienceSearchSpec, eZ as ExperiencesQueryResult, d7 as ExtendedFields, dk as File, bs as FileData, bt as FileSource, bu as FileSourceDataOneOf, cf as FontFamilyData, cd as FontSizeData, a4 as FontType, fz as FontTypeWithLiterals, bH as GIF, bG as GIFData, Q as GIFType, fp as GIFTypeWithLiterals, bw as GalleryData, bC as GalleryOptions, bD as GalleryOptionsLayout, ex as GeoCoordinates, du as GetExperienceBySlugRequest, ds as GetExperienceRequest, dt as GetExperienceResponse, ba as Gradient, y as GradientType, fa as GradientTypeWithLiterals, e9 as GroupByValueResults, bJ as HTMLData, bK as HTMLDataDataOneOf, bI as HeadingData, bj as Height, eT as IdentificationData, eU as IdentificationDataIdOneOf, by as Image, bL as ImageData, bO as ImageDataCrop, bN as ImageDataStyles, aj as ImagePosition, as as ImagePositionPosition, fX as ImagePositionPositionWithLiterals, fO as ImagePositionWithLiterals, ai as ImageScalingScaling, fN as ImageScalingScalingWithLiterals, cm as ImageStyles, dL as IncludeMissingValuesOptions, av as Indentation, f_ as IndentationWithLiterals, ae as InitialExpandedItems, fJ as InitialExpandedItemsWithLiterals, aF as Interval, g8 as IntervalWithLiterals, df as InvalidateCache, dg as InvalidateCacheGetByOneOf, bA as Item, bB as ItemDataOneOf, ef as ItemMetadata, bE as ItemStyle, dc as Keyword, ac as Layout, cM as LayoutCellData, cH as LayoutData, cI as LayoutDataBackground, cJ as LayoutDataBackgroundImage, ak as LayoutDataBackgroundType, fP as LayoutDataBackgroundTypeWithLiterals, I as LayoutType, fl as LayoutTypeWithLiterals, fH as LayoutWithLiterals, L as LineCap, fg as LineCapWithLiterals, D as LineStyle, fh as LineStyleWithLiterals, bl as Link, cb as LinkData, bm as LinkDataOneOf, bP as LinkPreviewData, bQ as LinkPreviewDataStyles, cW as ListItemNodeData, au as ListStyle, fZ as ListStyleWithLiterals, cB as ListValue, eu as Locale, bR as MapData, bS as MapSettings, Z as MapType, fs as MapTypeWithLiterals, aZ as MaxGuests, bx as Media, cc as MentionData, eS as MessageEnvelope, cX as Metadata, aC as MissingValues, g5 as MissingValuesWithLiterals, v as Mode, f5 as ModeWithLiterals, eB as Multilingual, dT as NestedAggregation, dR as NestedAggregationItem, dS as NestedAggregationItemKindOneOf, dY as NestedAggregationResults, dZ as NestedAggregationResultsResultOneOf, aE as NestedAggregationType, g7 as NestedAggregationTypeWithLiterals, e5 as NestedResultValue, e6 as NestedResultValueResultOneOf, eb as NestedResults, e1 as NestedValueAggregationResult, b6 as Node, b7 as NodeDataOneOf, b8 as NodeStyle, N as NodeType, f8 as NodeTypeWithLiterals, aX as NoticePeriod, ah as NullValue, fM as NullValueWithLiterals, ct as Oembed, aP as OnOptions, aQ as OnOptionsOptionsOneOf, aT as OneTimeOptions, d2 as OnlineReservations, a_ as OnlineReservationsBusinessSchedule, bW as Option, c2 as OptionDesign, bZ as OptionLayout, cD as OrderedListData, O as Orientation, fm as OrientationWithLiterals, al as Origin, fQ as OriginWithLiterals, bv as PDFSettings, di as Page, dm as Pages, bT as ParagraphData, aW as PartySize, d0 as PaymentPolicy, d1 as PaymentPolicyOptionsOneOf, ay as PaymentPolicyType, g1 as PaymentPolicyTypeWithLiterals, c_ as PerGuestOptions, bV as Permissions, a9 as Placement, aI as PlacementType, gb as PlacementTypeWithLiterals, fE as PlacementWithLiterals, cr as PlaybackOptions, bf as PluginContainerData, P as PluginContainerDataAlignment, fc as PluginContainerDataAlignmentWithLiterals, bg as PluginContainerDataWidth, bh as PluginContainerDataWidthDataOneOf, c3 as Poll, bU as PollData, c4 as PollDataLayout, c1 as PollDesign, b$ as PollDesignBackground, c0 as PollDesignBackgroundBackgroundOneOf, a2 as PollDesignBackgroundType, fx as PollDesignBackgroundTypeWithLiterals, bY as PollLayout, a1 as PollLayoutDirection, fw as PollLayoutDirectionWithLiterals, a0 as PollLayoutType, fv as PollLayoutTypeWithLiterals, bX as PollSettings, a6 as Position, fB as PositionWithLiterals, cp as PricingData, a$ as PrivacyPolicy, b0 as PrivacyPolicyValueOneOf, es as Properties, eH as PropertiesChange, dx as QueryExperiencesRequest, dC as QueryExperiencesResponse, dO as RangeAggregation, dX as RangeAggregationResult, dK as RangeBucket, e3 as RangeResult, d$ as RangeResults, R as Recurrence, f7 as RecurrenceWithLiterals, bn as Rel, d3 as ReservationForm, a8 as Resizing, fD as ResizingWithLiterals, aK as ResolutionMethod, gd as ResolutionMethodWithLiterals, ap as ResponsivenessBehaviour, fU as ResponsivenessBehaviourWithLiterals, eO as RestoreInfo, e7 as Results, cn as RibbonStyles, b5 as RichContent, dP as ScalarAggregation, e4 as ScalarResult, aD as ScalarType, g6 as ScalarTypeWithLiterals, ar as Scaling, fW as ScalingWithLiterals, dU as SearchDetails, aH as SearchDetailsMode, ga as SearchDetailsModeWithLiterals, dF as SearchExperiencesRequest, db as SeoSchema, da as SeoSettings, de as Settings, cN as ShapeData, cO as ShapeDataStyles, eJ as SiteCloned, eI as SiteCreated, er as SitePropertiesEvent, eq as SitePropertiesNotification, cg as SketchData, cU as SmartBlockCellData, cT as SmartBlockData, aw as SmartBlockDataType, f$ as SmartBlockDataTypeWithLiterals, aB as SortDirection, g4 as SortDirectionWithLiterals, az as SortOrder, g2 as SortOrderWithLiterals, aA as SortType, g3 as SortTypeWithLiterals, dA as Sorting, X as Source, fq as SourceWithLiterals, eA as SpecialHourPeriod, aO as SpecificTablesOptions, bi as Spoiler, ce as SpoilerData, aR as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f6 as StartDaysAndTimesDayOfWeekWithLiterals, bb as Stop, bk as Styles, bM as StylesBorder, Y as StylesPosition, fr as StylesPositionWithLiterals, eC as SupportedLanguage, aM as Table, r as TableAssignmentType, f2 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, f1 as TableAvailabilityTypeWithLiterals, cx as TableCellData, aN as TableCombination, cv as TableData, d4 as TableManagement, s as TableManagementMode, f3 as TableManagementModeWithLiterals, d5 as TableManagementOptionsOneOf, dd as Tag, d9 as TagList, d8 as Tags, dp as TagsModified, A as Target, fe as TargetWithLiterals, b1 as TermsAndConditions, b2 as TermsAndConditionsValueOneOf, C as TextAlignment, ff as TextAlignmentWithLiterals, c6 as TextData, cZ as TextNodeStyle, bp as TextStyle, bF as Thumbnails, K as ThumbnailsAlignment, fo as ThumbnailsAlignmentWithLiterals, ez as TimePeriod, cS as TocData, eE as Translation, aa as Type, fF as TypeWithLiterals, dj as URI, dn as URIs, u as Unit, f4 as UnitWithLiterals, dv as UpdateExperienceRequest, dw as UpdateExperienceResponse, dM as ValueAggregation, dN as ValueAggregationOptionsOneOf, dW as ValueAggregationResult, e2 as ValueResult, d_ as ValueResults, a5 as Variant, fA as VariantWithLiterals, ag as VerticalAlignment, ao as VerticalAlignmentAlignment, fT as VerticalAlignmentAlignmentWithLiterals, fL as VerticalAlignmentWithLiterals, bz as Video, cq as VideoData, V as ViewMode, fk as ViewModeWithLiterals, _ as ViewRole, ft as ViewRoleWithLiterals, $ as VoteRole, fu as VoteRoleWithLiterals, aL as WebhookIdentityType, ge as WebhookIdentityTypeWithLiterals, aS as WeeklyOptions, F as Width, W as WidthType, fb as WidthTypeWithLiterals, fi as WidthWithLiterals, f0 as utils } from './table-reservations-v1-experience-experiences.universal-UuAl1xmZ.mjs';
|
|
2
|
+
import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-DRR34KWR.mjs';
|
|
3
|
+
export { e_ as AccountInfo, f1 as AccountInfoMetadata, eW as ActionEvent, eA as Address, eB as AddressHint, dN as Aggregation, d_ as AggregationData, dO as AggregationKindOneOf, eh as AggregationResults, ei as AggregationResultsResultOneOf, e5 as AggregationResultsScalarResult, aI as AggregationType, gg as AggregationTypeWithLiterals, ad as Alignment, fN as AlignmentWithLiterals, ce as AnchorData, bq as Animation, dm as App, cm as AppEmbedData, cn as AppEmbedDataAppDataOneOf, af as AppType, fP as AppTypeWithLiterals, el as ApplicationError, a_ as Approval, a9 as AspectRatio, fJ as AspectRatioWithLiterals, cH as AudioData, cQ as Backdrop, ap as BackdropType, fZ as BackdropTypeWithLiterals, bg as Background, c3 as BackgroundGradient, cW as BackgroundImage, x as BackgroundType, fe as BackgroundTypeWithLiterals, cP as Banner, ao as BannerPosition, fY as BannerPositionWithLiterals, e$ as BaseEventMetadata, cK as BlockquoteData, co as BookingData, be as Border, cE as BorderColors, cF as BorderWidths, en as BulkActionMetadata, er as BulkArchiveExperiencesRequest, es as BulkArchiveExperiencesResult, et as BulkUnarchiveExperiencesRequest, eu as BulkUnarchiveExperiencesResult, eq as BulkUpdateExperienceTagsByFilterRequest, eo as BulkUpdateExperienceTagsRequest, ep as BulkUpdateExperienceTagsResult, ej as BulkUpdateExperiencesRequest, em as BulkUpdateExperiencesResult, cJ as BulletedListData, eD as BusinessSchedule, bb as ButtonData, z as ButtonDataType, fi as ButtonDataTypeWithLiterals, cq as ButtonStyles, cL as CaptionData, cU as CardData, cV as CardDataBackground, av as CardDataBackgroundType, g3 as CardDataBackgroundTypeWithLiterals, ct as CardStyles, ac as CardStylesType, fM as CardStylesTypeWithLiterals, ey as Categories, cD as CellStyle, eK as ChangeContext, eL as ChangeContextPayloadOneOf, c_ as CheckboxListData, bt as CodeBlockData, cz as CollapsibleListData, cf as ColorData, bf as Colors, az as ColumnSize, g7 as ColumnSizeWithLiterals, gm as CommonQueryWithEntityContext, gn as CommonSearchWithEntityContext, db as Configuration, eI as ConsentPolicy, dv as CreateExperienceRequest, dw as CreateExperienceResponse, Q as Crop, fu as CropWithLiterals, dG as CursorPaging, dI as CursorPagingMetadata, dD as CursorQuery, dE as CursorQueryPagingMethodOneOf, dL as CursorSearch, dM as CursorSearchPagingMethodOneOf, dJ as Cursors, b5 as CustomFieldDefinition, dr as CustomTag, dV as DateHistogramAggregation, ed as DateHistogramResult, ef as DateHistogramResults, aL as DayOfWeek, gj as DayOfWeekWithLiterals, cc as Decoration, cd as DecorationDataOneOf, a5 as DecorationType, fF as DecorationTypeWithLiterals, ca as Design, as as DesignTarget, g0 as DesignTargetWithLiterals, cB as Dimensions, ah as Direction, fR as DirectionWithLiterals, d4 as DisplayInfo, bv as DividerData, J as DividerDataAlignment, fq as DividerDataAlignmentWithLiterals, bw as DividerDataStyles, d1 as DocumentStyle, eQ as DomainEvent, eR as DomainEventBodyOneOf, b6 as EmailMarketingCheckbox, cx as EmbedData, eP as Empty, eS as EntityCreatedEvent, eV as EntityDeletedEvent, eU as EntityUpdatedEvent, br as EntranceAnimation, bs as EntranceEffect, D as EntranceEffectType, fl as EntranceEffectTypeWithLiterals, aW as Entry, aX as EntryRecurrenceOptionsOneOf, cp as EventData, f0 as EventMetadata, f3 as ExperienceQuerySpec, f4 as ExperienceSearchSpec, f2 as ExperiencesQueryResult, dc as ExtendedFields, dq as File, bx as FileData, by as FileSource, bz as FileSourceDataOneOf, ck as FontFamilyData, ci as FontSizeData, a6 as FontType, fG as FontTypeWithLiterals, bM as GIF, bL as GIFData, Y as GIFType, fw as GIFTypeWithLiterals, bB as GalleryData, bH as GalleryOptions, bI as GalleryOptionsLayout, eC as GeoCoordinates, dz as GetExperienceBySlugRequest, dx as GetExperienceRequest, dy as GetExperienceResponse, bc as Gradient, y as GradientType, ff as GradientTypeWithLiterals, ee as GroupByValueResults, bO as HTMLData, bP as HTMLDataDataOneOf, bN as HeadingData, bl as Height, eY as IdentificationData, eZ as IdentificationDataIdOneOf, bD as Image, bQ as ImageData, bT as ImageDataCrop, bS as ImageDataStyles, al as ImagePosition, au as ImagePositionPosition, g2 as ImagePositionPositionWithLiterals, fV as ImagePositionWithLiterals, ak as ImageScalingScaling, fU as ImageScalingScalingWithLiterals, cr as ImageStyles, dQ as IncludeMissingValuesOptions, ax as Indentation, g5 as IndentationWithLiterals, ag as InitialExpandedItems, fQ as InitialExpandedItemsWithLiterals, aH as Interval, gf as IntervalWithLiterals, dk as InvalidateCache, dl as InvalidateCacheGetByOneOf, bF as Item, bG as ItemDataOneOf, ek as ItemMetadata, bJ as ItemStyle, dh as Keyword, ae as Layout, cR as LayoutCellData, cM as LayoutData, cN as LayoutDataBackground, cO as LayoutDataBackgroundImage, am as LayoutDataBackgroundType, fW as LayoutDataBackgroundTypeWithLiterals, K as LayoutType, fs as LayoutTypeWithLiterals, fO as LayoutWithLiterals, L as LineCap, fn as LineCapWithLiterals, H as LineStyle, fo as LineStyleWithLiterals, bn as Link, cg as LinkData, bo as LinkDataOneOf, bU as LinkPreviewData, bV as LinkPreviewDataStyles, c$ as ListItemNodeData, aw as ListStyle, g4 as ListStyleWithLiterals, cG as ListValue, ez as Locale, bW as MapData, bX as MapSettings, $ as MapType, fz as MapTypeWithLiterals, a$ as MaxGuests, bC as Media, ch as MentionData, eX as MessageEnvelope, d0 as Metadata, aE as MissingValues, gc as MissingValuesWithLiterals, v as Mode, fa as ModeWithLiterals, eG as Multilingual, dY as NestedAggregation, dW as NestedAggregationItem, dX as NestedAggregationItemKindOneOf, e1 as NestedAggregationResults, e2 as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, ge as NestedAggregationTypeWithLiterals, ea as NestedResultValue, eb as NestedResultValueResultOneOf, eg as NestedResults, e6 as NestedValueAggregationResult, b8 as Node, b9 as NodeDataOneOf, ba as NodeStyle, N as NodeType, fd as NodeTypeWithLiterals, aZ as NoticePeriod, aj as NullValue, fT as NullValueWithLiterals, cy as Oembed, aR as OnOptions, aS as OnOptionsOptionsOneOf, aV as OneTimeOptions, d7 as OnlineReservations, b0 as OnlineReservationsBusinessSchedule, b$ as Option, c7 as OptionDesign, c2 as OptionLayout, cI as OrderedListData, O as Orientation, ft as OrientationWithLiterals, an as Origin, fX as OriginWithLiterals, bA as PDFSettings, dn as Page, ds as Pages, bY as ParagraphData, aY as PartySize, d5 as PaymentPolicy, d6 as PaymentPolicyOptionsOneOf, aA as PaymentPolicyType, g8 as PaymentPolicyTypeWithLiterals, d3 as PerGuestOptions, b_ as Permissions, ab as Placement, aK as PlacementType, gi as PlacementTypeWithLiterals, fL as PlacementWithLiterals, cw as PlaybackOptions, bh as PluginContainerData, P as PluginContainerDataAlignment, fh as PluginContainerDataAlignmentWithLiterals, bi as PluginContainerDataWidth, bj as PluginContainerDataWidthDataOneOf, c8 as Poll, bZ as PollData, c9 as PollDataLayout, c6 as PollDesign, c4 as PollDesignBackground, c5 as PollDesignBackgroundBackgroundOneOf, a4 as PollDesignBackgroundType, fE as PollDesignBackgroundTypeWithLiterals, c1 as PollLayout, a3 as PollLayoutDirection, fD as PollLayoutDirectionWithLiterals, a2 as PollLayoutType, fC as PollLayoutTypeWithLiterals, c0 as PollSettings, a8 as Position, fI as PositionWithLiterals, cu as PricingData, b1 as PrivacyPolicy, b2 as PrivacyPolicyValueOneOf, ex as Properties, eM as PropertiesChange, dC as QueryExperiencesRequest, dH as QueryExperiencesResponse, dT as RangeAggregation, e0 as RangeAggregationResult, dP as RangeBucket, e8 as RangeResult, e4 as RangeResults, R as Recurrence, fc as RecurrenceWithLiterals, bp as Rel, d8 as ReservationForm, aa as Resizing, fK as ResizingWithLiterals, aM as ResolutionMethod, gk as ResolutionMethodWithLiterals, ar as ResponsivenessBehaviour, f$ as ResponsivenessBehaviourWithLiterals, eT as RestoreInfo, ec as Results, cs as RibbonStyles, b7 as RichContent, dU as ScalarAggregation, e9 as ScalarResult, aF as ScalarType, gd as ScalarTypeWithLiterals, at as Scaling, g1 as ScalingWithLiterals, dZ as SearchDetails, aJ as SearchDetailsMode, gh as SearchDetailsModeWithLiterals, dK as SearchExperiencesRequest, dg as SeoSchema, df as SeoSettings, dj as Settings, cS as ShapeData, cT as ShapeDataStyles, eO as SiteCloned, eN as SiteCreated, ew as SitePropertiesEvent, ev as SitePropertiesNotification, cl as SketchData, cZ as SmartBlockCellData, cY as SmartBlockData, ay as SmartBlockDataType, g6 as SmartBlockDataTypeWithLiterals, aD as SortDirection, gb as SortDirectionWithLiterals, aB as SortOrder, g9 as SortOrderWithLiterals, aC as SortType, ga as SortTypeWithLiterals, dF as Sorting, Z as Source, fx as SourceWithLiterals, eF as SpecialHourPeriod, aQ as SpecificTablesOptions, bk as Spoiler, cj as SpoilerData, aT as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, fb as StartDaysAndTimesDayOfWeekWithLiterals, bd as Stop, bm as Styles, bR as StylesBorder, _ as StylesPosition, fy as StylesPositionWithLiterals, eH as SupportedLanguage, aO as Table, r as TableAssignmentType, f7 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, f6 as TableAvailabilityTypeWithLiterals, cC as TableCellData, aP as TableCombination, cA as TableData, d9 as TableManagement, s as TableManagementMode, f8 as TableManagementModeWithLiterals, da as TableManagementOptionsOneOf, di as Tag, de as TagList, dd as Tags, du as TagsModified, A as Target, fj as TargetWithLiterals, b3 as TermsAndConditions, b4 as TermsAndConditionsValueOneOf, F as TextAlignment, fm as TextAlignmentWithLiterals, cb as TextData, d2 as TextNodeStyle, bu as TextStyle, bK as Thumbnails, X as ThumbnailsAlignment, fv as ThumbnailsAlignmentWithLiterals, eE as TimePeriod, cX as TocData, eJ as Translation, C as Type, fk as TypeWithLiterals, dp as URI, dt as URIs, u as Unit, f9 as UnitWithLiterals, dA as UpdateExperienceRequest, dB as UpdateExperienceResponse, dR as ValueAggregation, dS as ValueAggregationOptionsOneOf, d$ as ValueAggregationResult, e7 as ValueResult, e3 as ValueResults, a7 as Variant, fH as VariantWithLiterals, ai as VerticalAlignment, aq as VerticalAlignmentAlignment, f_ as VerticalAlignmentAlignmentWithLiterals, fS as VerticalAlignmentWithLiterals, bE as Video, cv as VideoData, V as ViewMode, fr as ViewModeWithLiterals, a0 as ViewRole, fA as ViewRoleWithLiterals, a1 as VoteRole, fB as VoteRoleWithLiterals, aN as WebhookIdentityType, gl as WebhookIdentityTypeWithLiterals, aU as WeeklyOptions, I as Width, W as WidthType, fg as WidthTypeWithLiterals, fp as WidthWithLiterals, f5 as utils } from './table-reservations-v1-experience-experiences.universal-DRR34KWR.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
|
@@ -2242,6 +2242,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
2242
2242
|
Target2["TOP"] = "TOP";
|
|
2243
2243
|
return Target2;
|
|
2244
2244
|
})(Target || {});
|
|
2245
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
|
2246
|
+
Type2["VIEW"] = "VIEW";
|
|
2247
|
+
return Type2;
|
|
2248
|
+
})(Type || {});
|
|
2249
|
+
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
2250
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
2251
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
2252
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
2253
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
2254
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
2255
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
2256
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
2257
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
2258
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
2259
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
2260
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
2261
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
2262
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
2263
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
2264
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
2265
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
2266
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
2267
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
2268
|
+
return EntranceEffectType2;
|
|
2269
|
+
})(EntranceEffectType || {});
|
|
2245
2270
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
2246
2271
|
TextAlignment2["AUTO"] = "AUTO";
|
|
2247
2272
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -2417,11 +2442,11 @@ var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
|
2417
2442
|
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
2418
2443
|
return Placement2;
|
|
2419
2444
|
})(Placement || {});
|
|
2420
|
-
var
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
return
|
|
2424
|
-
})(
|
|
2445
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
2446
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
2447
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
2448
|
+
return CardStylesType2;
|
|
2449
|
+
})(CardStylesType || {});
|
|
2425
2450
|
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
2426
2451
|
Alignment2["START"] = "START";
|
|
2427
2452
|
Alignment2["CENTER"] = "CENTER";
|
|
@@ -4137,6 +4162,7 @@ export {
|
|
|
4137
4162
|
BannerPosition,
|
|
4138
4163
|
ButtonDataType,
|
|
4139
4164
|
CardDataBackgroundType,
|
|
4165
|
+
CardStylesType,
|
|
4140
4166
|
ColumnSize,
|
|
4141
4167
|
Crop,
|
|
4142
4168
|
DayOfWeek,
|
|
@@ -4144,6 +4170,7 @@ export {
|
|
|
4144
4170
|
DesignTarget,
|
|
4145
4171
|
Direction,
|
|
4146
4172
|
DividerDataAlignment,
|
|
4173
|
+
EntranceEffectType,
|
|
4147
4174
|
FontType,
|
|
4148
4175
|
GIFType,
|
|
4149
4176
|
GradientType,
|