@wix/auto_sdk_table-reservations_experiences 1.0.48 → 1.0.50
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 +52 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +52 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +196 -7
- package/build/cjs/meta.js +52 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-80engBaS.d.ts → table-reservations-v1-experience-experiences.universal-CRvAiLxj.d.ts} +196 -7
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +49 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +49 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +196 -7
- package/build/es/meta.mjs +49 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-80engBaS.d.mts → table-reservations-v1-experience-experiences.universal-CRvAiLxj.d.mts} +196 -7
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +52 -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 +52 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +196 -7
- package/build/internal/cjs/meta.js +52 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-80engBaS.d.ts → table-reservations-v1-experience-experiences.universal-CRvAiLxj.d.ts} +196 -7
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +49 -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 +49 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +196 -7
- package/build/internal/es/meta.mjs +49 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-80engBaS.d.mts → table-reservations-v1-experience-experiences.universal-CRvAiLxj.d.mts} +196 -7
- 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,144 @@ 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
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
848
|
+
loop?: LoopAnimation;
|
|
849
|
+
}
|
|
850
|
+
declare enum Type {
|
|
851
|
+
/** Animations that play while the node is in view. */
|
|
852
|
+
VIEW = "VIEW"
|
|
853
|
+
}
|
|
854
|
+
/** @enumType */
|
|
855
|
+
type TypeWithLiterals = Type | 'VIEW';
|
|
856
|
+
interface EntranceAnimation {
|
|
857
|
+
/** The entrance effect to play. */
|
|
858
|
+
effect?: EntranceEffect;
|
|
859
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
860
|
+
duration?: number | null;
|
|
861
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
862
|
+
delay?: number | null;
|
|
863
|
+
}
|
|
864
|
+
interface EntranceEffect {
|
|
865
|
+
/** The entrance effect type. */
|
|
866
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
867
|
+
/**
|
|
868
|
+
* 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).
|
|
869
|
+
* @maxLength 20
|
|
870
|
+
*/
|
|
871
|
+
direction?: string | null;
|
|
872
|
+
/**
|
|
873
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
874
|
+
* @maxLength 12
|
|
875
|
+
*/
|
|
876
|
+
shape?: string | null;
|
|
877
|
+
/**
|
|
878
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
879
|
+
* @maxLength 100
|
|
880
|
+
*/
|
|
881
|
+
easing?: string | null;
|
|
882
|
+
}
|
|
883
|
+
declare enum EntranceEffectType {
|
|
884
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
885
|
+
FADE = "FADE",
|
|
886
|
+
/** Enters along a 3D arc path. */
|
|
887
|
+
ARC = "ARC",
|
|
888
|
+
/** Transitions from blurred to sharp. */
|
|
889
|
+
BLUR = "BLUR",
|
|
890
|
+
/** Bounces into place with an elastic curve. */
|
|
891
|
+
BOUNCE = "BOUNCE",
|
|
892
|
+
/** Shrinks down from a larger size. */
|
|
893
|
+
DROP = "DROP",
|
|
894
|
+
/** Expands from a point, scaling to full size. */
|
|
895
|
+
EXPAND = "EXPAND",
|
|
896
|
+
/** Flips into view with a 3D rotation. */
|
|
897
|
+
FLIP = "FLIP",
|
|
898
|
+
/** Drifts gently into place. */
|
|
899
|
+
FLOAT = "FLOAT",
|
|
900
|
+
/** Unfolds from an edge as if hinged. */
|
|
901
|
+
FOLD = "FOLD",
|
|
902
|
+
/** Glides in smoothly from off-screen. */
|
|
903
|
+
GLIDE = "GLIDE",
|
|
904
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
905
|
+
REVEAL = "REVEAL",
|
|
906
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
907
|
+
SHAPE = "SHAPE",
|
|
908
|
+
/** Revealed through shutter-like strips. */
|
|
909
|
+
SHUTTERS = "SHUTTERS",
|
|
910
|
+
/** Slides in from one side. */
|
|
911
|
+
SLIDE = "SLIDE",
|
|
912
|
+
/** Spins into view while scaling up. */
|
|
913
|
+
SPIN = "SPIN",
|
|
914
|
+
/** Tilts in from the side with 3D rotation. */
|
|
915
|
+
TILT = "TILT",
|
|
916
|
+
/** Rotates into view around a corner pivot. */
|
|
917
|
+
TURN = "TURN",
|
|
918
|
+
/** Expands from its horizontal or vertical center. */
|
|
919
|
+
WINK = "WINK"
|
|
920
|
+
}
|
|
921
|
+
/** @enumType */
|
|
922
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
923
|
+
interface LoopAnimation {
|
|
924
|
+
/** The looping effect to repeat. */
|
|
925
|
+
effect?: LoopEffect;
|
|
926
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
927
|
+
duration?: number | null;
|
|
928
|
+
/** Pause between iterations in milliseconds. */
|
|
929
|
+
iterationDelay?: number | null;
|
|
930
|
+
}
|
|
931
|
+
interface LoopEffect {
|
|
932
|
+
/** The looping effect type. */
|
|
933
|
+
type?: LoopEffectTypeWithLiterals;
|
|
934
|
+
/**
|
|
935
|
+
* Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
936
|
+
* @maxLength 20
|
|
937
|
+
*/
|
|
938
|
+
direction?: string | null;
|
|
939
|
+
/**
|
|
940
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
941
|
+
* @maxLength 100
|
|
942
|
+
*/
|
|
943
|
+
easing?: string | null;
|
|
944
|
+
}
|
|
945
|
+
declare enum LoopEffectType {
|
|
946
|
+
/** Bounces up and down in place. */
|
|
947
|
+
BOUNCE = "BOUNCE",
|
|
948
|
+
/** Scales gently in and out along an axis. */
|
|
949
|
+
BREATHE = "BREATHE",
|
|
950
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
951
|
+
CROSS = "CROSS",
|
|
952
|
+
/** Fades out to fully transparent and back in. */
|
|
953
|
+
FLASH = "FLASH",
|
|
954
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
955
|
+
FLIP = "FLIP",
|
|
956
|
+
/** Folds back and forth around a hinged edge. */
|
|
957
|
+
FOLD = "FOLD",
|
|
958
|
+
/** Wobbles with a jelly-like skew. */
|
|
959
|
+
JELLO = "JELLO",
|
|
960
|
+
/** Nudges repeatedly toward a direction. */
|
|
961
|
+
POKE = "POKE",
|
|
962
|
+
/** Scales up and back down rhythmically. */
|
|
963
|
+
PULSE = "PULSE",
|
|
964
|
+
/** Stretches and squashes like a rubber band. */
|
|
965
|
+
RUBBER = "RUBBER",
|
|
966
|
+
/** Rotates continuously around its center. */
|
|
967
|
+
SPIN = "SPIN",
|
|
968
|
+
/** Swings back and forth around an edge pivot. */
|
|
969
|
+
SWING = "SWING",
|
|
970
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
971
|
+
WIGGLE = "WIGGLE"
|
|
972
|
+
}
|
|
973
|
+
/** @enumType */
|
|
974
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
840
975
|
interface CodeBlockData {
|
|
841
976
|
/** Styling for the code block's text. */
|
|
842
977
|
textStyle?: TextStyle;
|
|
978
|
+
/** Node animation. */
|
|
979
|
+
animation?: Animation;
|
|
843
980
|
}
|
|
844
981
|
interface TextStyle {
|
|
845
982
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -872,6 +1009,8 @@ interface DividerData {
|
|
|
872
1009
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
873
1010
|
/** Visual styling for the divider lines. */
|
|
874
1011
|
styles?: DividerDataStyles;
|
|
1012
|
+
/** Node animation. */
|
|
1013
|
+
animation?: Animation;
|
|
875
1014
|
}
|
|
876
1015
|
declare enum LineCap {
|
|
877
1016
|
/** Square line endings. */
|
|
@@ -926,9 +1065,9 @@ interface DividerDataStyles {
|
|
|
926
1065
|
* @maxSize 10
|
|
927
1066
|
*/
|
|
928
1067
|
lineThickness?: number[];
|
|
929
|
-
/**
|
|
1068
|
+
/** 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
1069
|
dashLength?: number | null;
|
|
931
|
-
/**
|
|
1070
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
932
1071
|
dashGap?: number | null;
|
|
933
1072
|
/** Gap between divider lines in pixels. */
|
|
934
1073
|
lineGap?: number | null;
|
|
@@ -955,6 +1094,8 @@ interface FileData {
|
|
|
955
1094
|
path?: string | null;
|
|
956
1095
|
/** File size in KB. */
|
|
957
1096
|
sizeInKb?: string | null;
|
|
1097
|
+
/** Node animation. */
|
|
1098
|
+
animation?: Animation;
|
|
958
1099
|
}
|
|
959
1100
|
declare enum ViewMode {
|
|
960
1101
|
/** No PDF view */
|
|
@@ -1015,6 +1156,8 @@ interface GalleryData {
|
|
|
1015
1156
|
disableExpand?: boolean | null;
|
|
1016
1157
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
1017
1158
|
disableDownload?: boolean | null;
|
|
1159
|
+
/** Node animation. */
|
|
1160
|
+
animation?: Animation;
|
|
1018
1161
|
}
|
|
1019
1162
|
interface Media {
|
|
1020
1163
|
/** The source for the media's data. */
|
|
@@ -1158,6 +1301,8 @@ interface GIFData {
|
|
|
1158
1301
|
width?: number;
|
|
1159
1302
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1160
1303
|
gifType?: GIFTypeWithLiterals;
|
|
1304
|
+
/** Node animation. */
|
|
1305
|
+
animation?: Animation;
|
|
1161
1306
|
}
|
|
1162
1307
|
interface GIF {
|
|
1163
1308
|
/**
|
|
@@ -1191,6 +1336,8 @@ interface HeadingData {
|
|
|
1191
1336
|
indentation?: number | null;
|
|
1192
1337
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1193
1338
|
renderedLevel?: number | null;
|
|
1339
|
+
/** Node animation. */
|
|
1340
|
+
animation?: Animation;
|
|
1194
1341
|
}
|
|
1195
1342
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1196
1343
|
/** The URL for the HTML code for the node. */
|
|
@@ -1210,6 +1357,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1210
1357
|
source?: SourceWithLiterals;
|
|
1211
1358
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1212
1359
|
autoHeight?: boolean | null;
|
|
1360
|
+
/** Node animation. */
|
|
1361
|
+
animation?: Animation;
|
|
1213
1362
|
}
|
|
1214
1363
|
/** @oneof */
|
|
1215
1364
|
interface HTMLDataDataOneOf {
|
|
@@ -1259,6 +1408,8 @@ interface ImageData {
|
|
|
1259
1408
|
crop?: ImageDataCrop;
|
|
1260
1409
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1261
1410
|
cropShape?: string | null;
|
|
1411
|
+
/** Node animation. */
|
|
1412
|
+
animation?: Animation;
|
|
1262
1413
|
}
|
|
1263
1414
|
interface StylesBorder {
|
|
1264
1415
|
/** Border width in pixels. */
|
|
@@ -1300,6 +1451,8 @@ interface LinkPreviewData {
|
|
|
1300
1451
|
html?: string | null;
|
|
1301
1452
|
/** Styling for the link preview. */
|
|
1302
1453
|
styles?: LinkPreviewDataStyles;
|
|
1454
|
+
/** Node animation. */
|
|
1455
|
+
animation?: Animation;
|
|
1303
1456
|
}
|
|
1304
1457
|
declare enum StylesPosition {
|
|
1305
1458
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1395,6 +1548,8 @@ interface ParagraphData {
|
|
|
1395
1548
|
indentation?: number | null;
|
|
1396
1549
|
/** Paragraph level */
|
|
1397
1550
|
level?: number | null;
|
|
1551
|
+
/** Node animation. */
|
|
1552
|
+
animation?: Animation;
|
|
1398
1553
|
}
|
|
1399
1554
|
interface PollData {
|
|
1400
1555
|
/** Styling for the poll's container. */
|
|
@@ -1405,6 +1560,8 @@ interface PollData {
|
|
|
1405
1560
|
layout?: PollDataLayout;
|
|
1406
1561
|
/** Styling for the poll and voting options. */
|
|
1407
1562
|
design?: Design;
|
|
1563
|
+
/** Node animation. */
|
|
1564
|
+
animation?: Animation;
|
|
1408
1565
|
}
|
|
1409
1566
|
declare enum ViewRole {
|
|
1410
1567
|
/** Only Poll creator can view the results */
|
|
@@ -1671,6 +1828,8 @@ interface MentionData {
|
|
|
1671
1828
|
slug?: string;
|
|
1672
1829
|
/** Mentioned user's ID. */
|
|
1673
1830
|
id?: string | null;
|
|
1831
|
+
/** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
|
|
1832
|
+
type?: string | null;
|
|
1674
1833
|
}
|
|
1675
1834
|
interface FontSizeData {
|
|
1676
1835
|
/** The units used for the font size. */
|
|
@@ -1763,6 +1922,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1763
1922
|
containerData?: PluginContainerData;
|
|
1764
1923
|
/** Pricing data for embedded Wix App content. */
|
|
1765
1924
|
pricingData?: PricingData;
|
|
1925
|
+
/** Node animation. */
|
|
1926
|
+
animation?: Animation;
|
|
1766
1927
|
}
|
|
1767
1928
|
/** @oneof */
|
|
1768
1929
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1805,14 +1966,14 @@ declare enum Placement {
|
|
|
1805
1966
|
}
|
|
1806
1967
|
/** @enumType */
|
|
1807
1968
|
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
1808
|
-
declare enum
|
|
1969
|
+
declare enum CardStylesType {
|
|
1809
1970
|
/** Card with visible border and background */
|
|
1810
1971
|
CONTAINED = "CONTAINED",
|
|
1811
1972
|
/** Card without visible border */
|
|
1812
1973
|
FRAMELESS = "FRAMELESS"
|
|
1813
1974
|
}
|
|
1814
1975
|
/** @enumType */
|
|
1815
|
-
type
|
|
1976
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
1816
1977
|
declare enum Alignment {
|
|
1817
1978
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
1818
1979
|
START = "START",
|
|
@@ -1948,7 +2109,7 @@ interface CardStyles {
|
|
|
1948
2109
|
/** Card border radius in pixels. */
|
|
1949
2110
|
borderRadius?: number | null;
|
|
1950
2111
|
/** Card type. Defaults to `CONTAINED`. */
|
|
1951
|
-
type?:
|
|
2112
|
+
type?: CardStylesTypeWithLiterals;
|
|
1952
2113
|
/** Content alignment. Defaults to `START`. */
|
|
1953
2114
|
alignment?: AlignmentWithLiterals;
|
|
1954
2115
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
@@ -2004,6 +2165,8 @@ interface VideoData {
|
|
|
2004
2165
|
title?: string | null;
|
|
2005
2166
|
/** Video options. */
|
|
2006
2167
|
options?: PlaybackOptions;
|
|
2168
|
+
/** Node animation. */
|
|
2169
|
+
animation?: Animation;
|
|
2007
2170
|
}
|
|
2008
2171
|
interface PlaybackOptions {
|
|
2009
2172
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -2020,6 +2183,8 @@ interface EmbedData {
|
|
|
2020
2183
|
oembed?: Oembed;
|
|
2021
2184
|
/** Origin asset source. */
|
|
2022
2185
|
src?: string | null;
|
|
2186
|
+
/** Node animation. */
|
|
2187
|
+
animation?: Animation;
|
|
2023
2188
|
}
|
|
2024
2189
|
interface Oembed {
|
|
2025
2190
|
/** The resource type. */
|
|
@@ -2064,6 +2229,8 @@ interface CollapsibleListData {
|
|
|
2064
2229
|
direction?: DirectionWithLiterals;
|
|
2065
2230
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
2066
2231
|
isQapageData?: boolean | null;
|
|
2232
|
+
/** Node animation. */
|
|
2233
|
+
animation?: Animation;
|
|
2067
2234
|
}
|
|
2068
2235
|
declare enum InitialExpandedItems {
|
|
2069
2236
|
/** First item will be expended initally */
|
|
@@ -2106,6 +2273,8 @@ interface TableData {
|
|
|
2106
2273
|
cellPadding?: number[];
|
|
2107
2274
|
/** Table's alternative text. */
|
|
2108
2275
|
altText?: string | null;
|
|
2276
|
+
/** Node animation. */
|
|
2277
|
+
animation?: Animation;
|
|
2109
2278
|
}
|
|
2110
2279
|
interface Dimensions {
|
|
2111
2280
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2214,6 +2383,8 @@ interface AudioData {
|
|
|
2214
2383
|
authorName?: string | null;
|
|
2215
2384
|
/** An HTML version of the audio node. */
|
|
2216
2385
|
html?: string | null;
|
|
2386
|
+
/** Node animation. */
|
|
2387
|
+
animation?: Animation;
|
|
2217
2388
|
}
|
|
2218
2389
|
interface OrderedListData {
|
|
2219
2390
|
/** Indentation level from 0-4. */
|
|
@@ -2222,16 +2393,22 @@ interface OrderedListData {
|
|
|
2222
2393
|
offset?: number | null;
|
|
2223
2394
|
/** List start number. */
|
|
2224
2395
|
start?: number | null;
|
|
2396
|
+
/** Node animation. */
|
|
2397
|
+
animation?: Animation;
|
|
2225
2398
|
}
|
|
2226
2399
|
interface BulletedListData {
|
|
2227
2400
|
/** Indentation level from 0-4. */
|
|
2228
2401
|
indentation?: number;
|
|
2229
2402
|
/** Offset level from 0-4. */
|
|
2230
2403
|
offset?: number | null;
|
|
2404
|
+
/** Node animation. */
|
|
2405
|
+
animation?: Animation;
|
|
2231
2406
|
}
|
|
2232
2407
|
interface BlockquoteData {
|
|
2233
2408
|
/** Indentation level from 1-4. */
|
|
2234
2409
|
indentation?: number;
|
|
2410
|
+
/** Node animation. */
|
|
2411
|
+
animation?: Animation;
|
|
2235
2412
|
}
|
|
2236
2413
|
interface CaptionData {
|
|
2237
2414
|
textStyle?: TextStyle;
|
|
@@ -2289,6 +2466,8 @@ interface LayoutData {
|
|
|
2289
2466
|
background?: LayoutDataBackground;
|
|
2290
2467
|
/** Backdrop styling (color or gradient). */
|
|
2291
2468
|
backdrop?: Backdrop;
|
|
2469
|
+
/** Node animation. */
|
|
2470
|
+
animation?: Animation;
|
|
2292
2471
|
}
|
|
2293
2472
|
declare enum ImageScalingScaling {
|
|
2294
2473
|
/** Auto image scaling */
|
|
@@ -2440,6 +2619,8 @@ interface ShapeData {
|
|
|
2440
2619
|
shape?: Media;
|
|
2441
2620
|
/** Styling for the shape. */
|
|
2442
2621
|
styles?: ShapeDataStyles;
|
|
2622
|
+
/** Node animation. */
|
|
2623
|
+
animation?: Animation;
|
|
2443
2624
|
}
|
|
2444
2625
|
interface ShapeDataStyles {
|
|
2445
2626
|
/**
|
|
@@ -2542,6 +2723,8 @@ interface TocData {
|
|
|
2542
2723
|
color?: string | null;
|
|
2543
2724
|
/** Indentation style. Default: NESTED. */
|
|
2544
2725
|
indentation?: IndentationWithLiterals;
|
|
2726
|
+
/** Node animation. */
|
|
2727
|
+
animation?: Animation;
|
|
2545
2728
|
}
|
|
2546
2729
|
/** List style. */
|
|
2547
2730
|
declare enum ListStyle {
|
|
@@ -2588,6 +2771,8 @@ interface SmartBlockData {
|
|
|
2588
2771
|
borderWidth?: number | null;
|
|
2589
2772
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2590
2773
|
borderRadius?: number | null;
|
|
2774
|
+
/** Node animation. */
|
|
2775
|
+
animation?: Animation;
|
|
2591
2776
|
}
|
|
2592
2777
|
/** Layout type of the smart block */
|
|
2593
2778
|
declare enum SmartBlockDataType {
|
|
@@ -2691,10 +2876,14 @@ interface CheckboxListData {
|
|
|
2691
2876
|
indentation?: number;
|
|
2692
2877
|
/** Offset level from 0-4. */
|
|
2693
2878
|
offset?: number | null;
|
|
2879
|
+
/** Node animation. */
|
|
2880
|
+
animation?: Animation;
|
|
2694
2881
|
}
|
|
2695
2882
|
interface ListItemNodeData {
|
|
2696
2883
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2697
2884
|
checked?: boolean | null;
|
|
2885
|
+
/** Node animation. */
|
|
2886
|
+
animation?: Animation;
|
|
2698
2887
|
}
|
|
2699
2888
|
interface Metadata {
|
|
2700
2889
|
/** Schema version. */
|
|
@@ -4753,7 +4942,7 @@ type ExperienceQuery = {
|
|
|
4753
4942
|
};
|
|
4754
4943
|
declare const utils: {
|
|
4755
4944
|
query: {
|
|
4756
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4945
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4757
4946
|
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4758
4947
|
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4759
4948
|
};
|
|
@@ -5036,4 +5225,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
5036
5225
|
*/
|
|
5037
5226
|
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>>;
|
|
5038
5227
|
|
|
5039
|
-
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 };
|
|
5228
|
+
export { StylesPosition 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, LineCap as H, LineStyle as I, Width as J, DividerDataAlignment as K, LoopEffectType as L, type MaskedExperience as M, NodeType as N, LayoutType as O, PluginContainerDataAlignment as P, Orientation as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, Crop as X, ThumbnailsAlignment as Y, GIFType as Z, Source as _, type UpdateExperienceApplicationErrors as a, type Approval as a$, MapType as a0, ViewRole as a1, VoteRole as a2, PollLayoutType as a3, PollLayoutDirection as a4, PollDesignBackgroundType as a5, DecorationType as a6, FontType as a7, Variant as a8, Position as a9, ColumnSize as aA, PaymentPolicyType as aB, SortOrder as aC, SortType as aD, SortDirection as aE, MissingValues as aF, ScalarType as aG, NestedAggregationType as aH, Interval as aI, AggregationType as aJ, SearchDetailsMode as aK, PlacementType as aL, DayOfWeek as aM, ResolutionMethod as aN, WebhookIdentityType as aO, type Table as aP, type TableCombination as aQ, type SpecificTablesOptions as aR, type OnOptions as aS, type OnOptionsOptionsOneOf as aT, type StartDaysAndTimes as aU, type WeeklyOptions as aV, type OneTimeOptions as aW, type Entry as aX, type EntryRecurrenceOptionsOneOf as aY, type PartySize as aZ, type NoticePeriod as a_, AspectRatio as aa, Resizing as ab, Placement as ac, CardStylesType as ad, Alignment as ae, Layout as af, AppType as ag, InitialExpandedItems as ah, Direction as ai, VerticalAlignment as aj, NullValue as ak, ImageScalingScaling as al, ImagePosition as am, LayoutDataBackgroundType as an, Origin as ao, BannerPosition as ap, BackdropType as aq, VerticalAlignmentAlignment as ar, ResponsivenessBehaviour as as, DesignTarget as at, Scaling as au, ImagePositionPosition as av, CardDataBackgroundType as aw, ListStyle as ax, Indentation as ay, SmartBlockDataType as az, type ExperienceSearch as b, type ParagraphData as b$, type MaxGuests as b0, type OnlineReservationsBusinessSchedule as b1, type PrivacyPolicy as b2, type PrivacyPolicyValueOneOf as b3, type TermsAndConditions as b4, type TermsAndConditionsValueOneOf as b5, type CustomFieldDefinition as b6, type EmailMarketingCheckbox as b7, type RichContent as b8, type Node as b9, type FileData as bA, type FileSource as bB, type FileSourceDataOneOf as bC, type PDFSettings as bD, type GalleryData as bE, type Media as bF, type Image as bG, type Video as bH, type Item as bI, type ItemDataOneOf as bJ, type GalleryOptions as bK, type GalleryOptionsLayout as bL, type ItemStyle as bM, type Thumbnails as bN, type GIFData as bO, type GIF as bP, type HeadingData as bQ, type HTMLData as bR, type HTMLDataDataOneOf as bS, type ImageData as bT, type StylesBorder as bU, type ImageDataStyles as bV, type ImageDataCrop as bW, type LinkPreviewData as bX, type LinkPreviewDataStyles as bY, type MapData as bZ, type MapSettings as b_, type NodeDataOneOf as ba, type NodeStyle as bb, type ButtonData as bc, type Gradient as bd, type Stop as be, type Border as bf, type Colors as bg, type Background as bh, type PluginContainerData as bi, type PluginContainerDataWidth as bj, type PluginContainerDataWidthDataOneOf as bk, type Spoiler as bl, type Height as bm, type Styles as bn, type Link as bo, type LinkDataOneOf as bp, type Rel as bq, type Animation as br, type EntranceAnimation as bs, type EntranceEffect as bt, type LoopAnimation as bu, type LoopEffect as bv, type CodeBlockData as bw, type TextStyle as bx, type DividerData as by, type DividerDataStyles as bz, type BulkUpdateExperiencesResponse as c, type SmartBlockData as c$, type PollData as c0, type Permissions as c1, type Option as c2, type PollSettings as c3, type PollLayout as c4, type OptionLayout as c5, type BackgroundGradient as c6, type PollDesignBackground as c7, type PollDesignBackgroundBackgroundOneOf as c8, type PollDesign as c9, type EmbedData as cA, type Oembed as cB, type CollapsibleListData as cC, type TableData as cD, type Dimensions as cE, type TableCellData as cF, type CellStyle as cG, type BorderColors as cH, type BorderWidths as cI, type ListValue as cJ, type AudioData as cK, type OrderedListData as cL, type BulletedListData as cM, type BlockquoteData as cN, type CaptionData as cO, type LayoutData as cP, type LayoutDataBackground as cQ, type LayoutDataBackgroundImage as cR, type Banner as cS, type Backdrop as cT, type LayoutCellData as cU, type ShapeData as cV, type ShapeDataStyles as cW, type CardData as cX, type CardDataBackground as cY, type BackgroundImage as cZ, type TocData as c_, type OptionDesign as ca, type Poll as cb, type PollDataLayout as cc, type Design as cd, type TextData as ce, type Decoration as cf, type DecorationDataOneOf as cg, type AnchorData as ch, type ColorData as ci, type LinkData as cj, type MentionData as ck, type FontSizeData as cl, type SpoilerData as cm, type FontFamilyData as cn, type SketchData as co, type AppEmbedData as cp, type AppEmbedDataAppDataOneOf as cq, type BookingData as cr, type EventData as cs, type ButtonStyles as ct, type ImageStyles as cu, type RibbonStyles as cv, type CardStyles as cw, type PricingData as cx, type VideoData as cy, type PlaybackOptions as cz, type BulkUpdateExperiencesApplicationErrors as d, type NestedAggregation as d$, type SmartBlockCellData as d0, type CheckboxListData as d1, type ListItemNodeData as d2, type Metadata as d3, type DocumentStyle as d4, type TextNodeStyle as d5, type PerGuestOptions as d6, type DisplayInfo as d7, type PaymentPolicy as d8, type PaymentPolicyOptionsOneOf as d9, type GetExperienceRequest as dA, type GetExperienceResponse as dB, type GetExperienceBySlugRequest as dC, type UpdateExperienceRequest as dD, type UpdateExperienceResponse as dE, type QueryExperiencesRequest as dF, type CursorQuery as dG, type CursorQueryPagingMethodOneOf as dH, type Sorting as dI, type CursorPaging as dJ, type QueryExperiencesResponse as dK, type CursorPagingMetadata as dL, type Cursors as dM, type SearchExperiencesRequest as dN, type CursorSearch as dO, type CursorSearchPagingMethodOneOf as dP, type Aggregation as dQ, type AggregationKindOneOf as dR, type RangeBucket as dS, type IncludeMissingValuesOptions as dT, type ValueAggregation as dU, type ValueAggregationOptionsOneOf as dV, type RangeAggregation as dW, type ScalarAggregation as dX, type DateHistogramAggregation as dY, type NestedAggregationItem as dZ, type NestedAggregationItemKindOneOf as d_, type OnlineReservations as da, type ReservationForm as db, type TableManagement as dc, type TableManagementOptionsOneOf as dd, type Configuration as de, type ExtendedFields as df, type Tags as dg, type TagList as dh, type SeoSettings as di, type SeoSchema as dj, type Keyword as dk, type Tag as dl, type Settings as dm, type InvalidateCache as dn, type InvalidateCacheGetByOneOf as dp, type App as dq, type Page as dr, type URI as ds, type File as dt, type CustomTag as du, type Pages as dv, type URIs as dw, type TagsModified as dx, type CreateExperienceRequest as dy, type CreateExperienceResponse as dz, type BulkUpdateExperienceTagsOptions as e, type IdentificationData as e$, type SearchDetails as e0, type AggregationData as e1, type ValueAggregationResult as e2, type RangeAggregationResult as e3, type NestedAggregationResults as e4, type NestedAggregationResultsResultOneOf as e5, type ValueResults as e6, type RangeResults as e7, type AggregationResultsScalarResult as e8, type NestedValueAggregationResult as e9, type Properties as eA, type Categories as eB, type Locale as eC, type Address as eD, type AddressHint as eE, type GeoCoordinates as eF, type BusinessSchedule as eG, type TimePeriod as eH, type SpecialHourPeriod as eI, type Multilingual as eJ, type SupportedLanguage as eK, type ConsentPolicy as eL, type Translation as eM, type ChangeContext as eN, type ChangeContextPayloadOneOf as eO, type PropertiesChange as eP, type SiteCreated as eQ, type SiteCloned as eR, type Empty as eS, type DomainEvent as eT, type DomainEventBodyOneOf as eU, type EntityCreatedEvent as eV, type RestoreInfo as eW, type EntityUpdatedEvent as eX, type EntityDeletedEvent as eY, type ActionEvent as eZ, type MessageEnvelope as e_, type ValueResult as ea, type RangeResult as eb, type ScalarResult as ec, type NestedResultValue as ed, type NestedResultValueResultOneOf as ee, type Results as ef, type DateHistogramResult as eg, type GroupByValueResults as eh, type DateHistogramResults as ei, type NestedResults as ej, type AggregationResults as ek, type AggregationResultsResultOneOf as el, type BulkUpdateExperiencesRequest as em, type ItemMetadata as en, type ApplicationError as eo, type BulkUpdateExperiencesResult as ep, type BulkActionMetadata as eq, type BulkUpdateExperienceTagsRequest as er, type BulkUpdateExperienceTagsResult as es, type BulkUpdateExperienceTagsByFilterRequest as et, type BulkArchiveExperiencesRequest as eu, type BulkArchiveExperiencesResult as ev, type BulkUnarchiveExperiencesRequest as ew, type BulkUnarchiveExperiencesResult as ex, type SitePropertiesNotification as ey, type SitePropertiesEvent as ez, type BulkUpdateExperienceTagsResponse as f, type OriginWithLiterals as f$, type IdentificationDataIdOneOf as f0, type AccountInfo as f1, type BaseEventMetadata as f2, type EventMetadata as f3, type AccountInfoMetadata as f4, type ExperiencesQueryResult as f5, type ExperienceQuerySpec as f6, type ExperienceSearchSpec as f7, utils as f8, type TableAvailabilityTypeWithLiterals as f9, type GIFTypeWithLiterals as fA, type SourceWithLiterals as fB, type StylesPositionWithLiterals as fC, type MapTypeWithLiterals as fD, type ViewRoleWithLiterals as fE, type VoteRoleWithLiterals as fF, type PollLayoutTypeWithLiterals as fG, type PollLayoutDirectionWithLiterals as fH, type PollDesignBackgroundTypeWithLiterals as fI, type DecorationTypeWithLiterals as fJ, type FontTypeWithLiterals as fK, type VariantWithLiterals as fL, type PositionWithLiterals as fM, type AspectRatioWithLiterals as fN, type ResizingWithLiterals as fO, type PlacementWithLiterals as fP, type CardStylesTypeWithLiterals as fQ, type AlignmentWithLiterals as fR, type LayoutWithLiterals as fS, type AppTypeWithLiterals as fT, type InitialExpandedItemsWithLiterals as fU, type DirectionWithLiterals as fV, type VerticalAlignmentWithLiterals as fW, type NullValueWithLiterals as fX, type ImageScalingScalingWithLiterals as fY, type ImagePositionWithLiterals as fZ, type LayoutDataBackgroundTypeWithLiterals as f_, type TableAssignmentTypeWithLiterals as fa, type TableManagementModeWithLiterals as fb, type UnitWithLiterals as fc, type ModeWithLiterals as fd, type StartDaysAndTimesDayOfWeekWithLiterals as fe, type RecurrenceWithLiterals as ff, type NodeTypeWithLiterals as fg, type BackgroundTypeWithLiterals as fh, type GradientTypeWithLiterals as fi, type WidthTypeWithLiterals as fj, type PluginContainerDataAlignmentWithLiterals as fk, type ButtonDataTypeWithLiterals as fl, type TargetWithLiterals as fm, type TypeWithLiterals as fn, type EntranceEffectTypeWithLiterals as fo, type LoopEffectTypeWithLiterals as fp, type TextAlignmentWithLiterals as fq, type LineCapWithLiterals as fr, type LineStyleWithLiterals as fs, type WidthWithLiterals as ft, type DividerDataAlignmentWithLiterals as fu, type ViewModeWithLiterals as fv, type LayoutTypeWithLiterals as fw, type OrientationWithLiterals as fx, type CropWithLiterals as fy, type ThumbnailsAlignmentWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type BannerPositionWithLiterals as g0, type BackdropTypeWithLiterals as g1, type VerticalAlignmentAlignmentWithLiterals as g2, type ResponsivenessBehaviourWithLiterals as g3, type DesignTargetWithLiterals as g4, type ScalingWithLiterals as g5, type ImagePositionPositionWithLiterals as g6, type CardDataBackgroundTypeWithLiterals as g7, type ListStyleWithLiterals as g8, type IndentationWithLiterals as g9, bulkUpdateExperiences as gA, bulkUpdateExperienceTags as gB, bulkUpdateExperienceTagsByFilter as gC, bulkArchiveExperiences as gD, bulkUnarchiveExperiences as gE, type SmartBlockDataTypeWithLiterals as ga, type ColumnSizeWithLiterals as gb, type PaymentPolicyTypeWithLiterals as gc, type SortOrderWithLiterals as gd, type SortTypeWithLiterals as ge, type SortDirectionWithLiterals as gf, type MissingValuesWithLiterals as gg, type ScalarTypeWithLiterals as gh, type NestedAggregationTypeWithLiterals as gi, type IntervalWithLiterals as gj, type AggregationTypeWithLiterals as gk, type SearchDetailsModeWithLiterals as gl, type PlacementTypeWithLiterals as gm, type DayOfWeekWithLiterals as gn, type ResolutionMethodWithLiterals as go, type WebhookIdentityTypeWithLiterals as gp, type CommonQueryWithEntityContext as gq, type CommonSearchWithEntityContext as gr, onExperienceCreated as gs, onExperienceTagsModified as gt, onExperienceUpdated as gu, createExperience as gv, getExperience as gw, getExperienceBySlug as gx, updateExperience as gy, queryExperiences 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-80engBaS.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-CRvAiLxj.mjs';
|
|
3
|
+
export { f1 as AccountInfo, f4 as AccountInfoMetadata, eZ as ActionEvent, eD as Address, eE as AddressHint, dQ as Aggregation, e1 as AggregationData, dR as AggregationKindOneOf, ek as AggregationResults, el as AggregationResultsResultOneOf, e8 as AggregationResultsScalarResult, aJ as AggregationType, gk as AggregationTypeWithLiterals, ae as Alignment, fR as AlignmentWithLiterals, ch as AnchorData, br as Animation, dq as App, cp as AppEmbedData, cq as AppEmbedDataAppDataOneOf, ag as AppType, fT as AppTypeWithLiterals, eo as ApplicationError, a$ as Approval, aa as AspectRatio, fN as AspectRatioWithLiterals, cK as AudioData, cT as Backdrop, aq as BackdropType, g1 as BackdropTypeWithLiterals, bh as Background, c6 as BackgroundGradient, cZ as BackgroundImage, x as BackgroundType, fh as BackgroundTypeWithLiterals, cS as Banner, ap as BannerPosition, g0 as BannerPositionWithLiterals, f2 as BaseEventMetadata, cN as BlockquoteData, cr as BookingData, bf as Border, cH as BorderColors, cI as BorderWidths, eq as BulkActionMetadata, eu as BulkArchiveExperiencesRequest, ev as BulkArchiveExperiencesResult, ew as BulkUnarchiveExperiencesRequest, ex as BulkUnarchiveExperiencesResult, et as BulkUpdateExperienceTagsByFilterRequest, er as BulkUpdateExperienceTagsRequest, es as BulkUpdateExperienceTagsResult, em as BulkUpdateExperiencesRequest, ep as BulkUpdateExperiencesResult, cM as BulletedListData, eG as BusinessSchedule, bc as ButtonData, z as ButtonDataType, fl as ButtonDataTypeWithLiterals, ct as ButtonStyles, cO as CaptionData, cX as CardData, cY as CardDataBackground, aw as CardDataBackgroundType, g7 as CardDataBackgroundTypeWithLiterals, cw as CardStyles, ad as CardStylesType, fQ as CardStylesTypeWithLiterals, eB as Categories, cG as CellStyle, eN as ChangeContext, eO as ChangeContextPayloadOneOf, d1 as CheckboxListData, bw as CodeBlockData, cC as CollapsibleListData, ci as ColorData, bg as Colors, aA as ColumnSize, gb as ColumnSizeWithLiterals, gq as CommonQueryWithEntityContext, gr as CommonSearchWithEntityContext, de as Configuration, eL as ConsentPolicy, dy as CreateExperienceRequest, dz as CreateExperienceResponse, X as Crop, fy as CropWithLiterals, dJ as CursorPaging, dL as CursorPagingMetadata, dG as CursorQuery, dH as CursorQueryPagingMethodOneOf, dO as CursorSearch, dP as CursorSearchPagingMethodOneOf, dM as Cursors, b6 as CustomFieldDefinition, du as CustomTag, dY as DateHistogramAggregation, eg as DateHistogramResult, ei as DateHistogramResults, aM as DayOfWeek, gn as DayOfWeekWithLiterals, cf as Decoration, cg as DecorationDataOneOf, a6 as DecorationType, fJ as DecorationTypeWithLiterals, cd as Design, at as DesignTarget, g4 as DesignTargetWithLiterals, cE as Dimensions, ai as Direction, fV as DirectionWithLiterals, d7 as DisplayInfo, by as DividerData, K as DividerDataAlignment, fu as DividerDataAlignmentWithLiterals, bz as DividerDataStyles, d4 as DocumentStyle, eT as DomainEvent, eU as DomainEventBodyOneOf, b7 as EmailMarketingCheckbox, cA as EmbedData, eS as Empty, eV as EntityCreatedEvent, eY as EntityDeletedEvent, eX as EntityUpdatedEvent, bs as EntranceAnimation, bt as EntranceEffect, D as EntranceEffectType, fo as EntranceEffectTypeWithLiterals, aX as Entry, aY as EntryRecurrenceOptionsOneOf, cs as EventData, f3 as EventMetadata, f6 as ExperienceQuerySpec, f7 as ExperienceSearchSpec, f5 as ExperiencesQueryResult, df as ExtendedFields, dt as File, bA as FileData, bB as FileSource, bC as FileSourceDataOneOf, cn as FontFamilyData, cl as FontSizeData, a7 as FontType, fK as FontTypeWithLiterals, bP as GIF, bO as GIFData, Z as GIFType, fA as GIFTypeWithLiterals, bE as GalleryData, bK as GalleryOptions, bL as GalleryOptionsLayout, eF as GeoCoordinates, dC as GetExperienceBySlugRequest, dA as GetExperienceRequest, dB as GetExperienceResponse, bd as Gradient, y as GradientType, fi as GradientTypeWithLiterals, eh as GroupByValueResults, bR as HTMLData, bS as HTMLDataDataOneOf, bQ as HeadingData, bm as Height, e$ as IdentificationData, f0 as IdentificationDataIdOneOf, bG as Image, bT as ImageData, bW as ImageDataCrop, bV as ImageDataStyles, am as ImagePosition, av as ImagePositionPosition, g6 as ImagePositionPositionWithLiterals, fZ as ImagePositionWithLiterals, al as ImageScalingScaling, fY as ImageScalingScalingWithLiterals, cu as ImageStyles, dT as IncludeMissingValuesOptions, ay as Indentation, g9 as IndentationWithLiterals, ah as InitialExpandedItems, fU as InitialExpandedItemsWithLiterals, aI as Interval, gj as IntervalWithLiterals, dn as InvalidateCache, dp as InvalidateCacheGetByOneOf, bI as Item, bJ as ItemDataOneOf, en as ItemMetadata, bM as ItemStyle, dk as Keyword, af as Layout, cU as LayoutCellData, cP as LayoutData, cQ as LayoutDataBackground, cR as LayoutDataBackgroundImage, an as LayoutDataBackgroundType, f_ as LayoutDataBackgroundTypeWithLiterals, O as LayoutType, fw as LayoutTypeWithLiterals, fS as LayoutWithLiterals, H as LineCap, fr as LineCapWithLiterals, I as LineStyle, fs as LineStyleWithLiterals, bo as Link, cj as LinkData, bp as LinkDataOneOf, bX as LinkPreviewData, bY as LinkPreviewDataStyles, d2 as ListItemNodeData, ax as ListStyle, g8 as ListStyleWithLiterals, cJ as ListValue, eC as Locale, bu as LoopAnimation, bv as LoopEffect, L as LoopEffectType, fp as LoopEffectTypeWithLiterals, bZ as MapData, b_ as MapSettings, a0 as MapType, fD as MapTypeWithLiterals, b0 as MaxGuests, bF as Media, ck as MentionData, e_ as MessageEnvelope, d3 as Metadata, aF as MissingValues, gg as MissingValuesWithLiterals, v as Mode, fd as ModeWithLiterals, eJ as Multilingual, d$ as NestedAggregation, dZ as NestedAggregationItem, d_ as NestedAggregationItemKindOneOf, e4 as NestedAggregationResults, e5 as NestedAggregationResultsResultOneOf, aH as NestedAggregationType, gi as NestedAggregationTypeWithLiterals, ed as NestedResultValue, ee as NestedResultValueResultOneOf, ej as NestedResults, e9 as NestedValueAggregationResult, b9 as Node, ba as NodeDataOneOf, bb as NodeStyle, N as NodeType, fg as NodeTypeWithLiterals, a_ as NoticePeriod, ak as NullValue, fX as NullValueWithLiterals, cB as Oembed, aS as OnOptions, aT as OnOptionsOptionsOneOf, aW as OneTimeOptions, da as OnlineReservations, b1 as OnlineReservationsBusinessSchedule, c2 as Option, ca as OptionDesign, c5 as OptionLayout, cL as OrderedListData, Q as Orientation, fx as OrientationWithLiterals, ao as Origin, f$ as OriginWithLiterals, bD as PDFSettings, dr as Page, dv as Pages, b$ as ParagraphData, aZ as PartySize, d8 as PaymentPolicy, d9 as PaymentPolicyOptionsOneOf, aB as PaymentPolicyType, gc as PaymentPolicyTypeWithLiterals, d6 as PerGuestOptions, c1 as Permissions, ac as Placement, aL as PlacementType, gm as PlacementTypeWithLiterals, fP as PlacementWithLiterals, cz as PlaybackOptions, bi as PluginContainerData, P as PluginContainerDataAlignment, fk as PluginContainerDataAlignmentWithLiterals, bj as PluginContainerDataWidth, bk as PluginContainerDataWidthDataOneOf, cb as Poll, c0 as PollData, cc as PollDataLayout, c9 as PollDesign, c7 as PollDesignBackground, c8 as PollDesignBackgroundBackgroundOneOf, a5 as PollDesignBackgroundType, fI as PollDesignBackgroundTypeWithLiterals, c4 as PollLayout, a4 as PollLayoutDirection, fH as PollLayoutDirectionWithLiterals, a3 as PollLayoutType, fG as PollLayoutTypeWithLiterals, c3 as PollSettings, a9 as Position, fM as PositionWithLiterals, cx as PricingData, b2 as PrivacyPolicy, b3 as PrivacyPolicyValueOneOf, eA as Properties, eP as PropertiesChange, dF as QueryExperiencesRequest, dK as QueryExperiencesResponse, dW as RangeAggregation, e3 as RangeAggregationResult, dS as RangeBucket, eb as RangeResult, e7 as RangeResults, R as Recurrence, ff as RecurrenceWithLiterals, bq as Rel, db as ReservationForm, ab as Resizing, fO as ResizingWithLiterals, aN as ResolutionMethod, go as ResolutionMethodWithLiterals, as as ResponsivenessBehaviour, g3 as ResponsivenessBehaviourWithLiterals, eW as RestoreInfo, ef as Results, cv as RibbonStyles, b8 as RichContent, dX as ScalarAggregation, ec as ScalarResult, aG as ScalarType, gh as ScalarTypeWithLiterals, au as Scaling, g5 as ScalingWithLiterals, e0 as SearchDetails, aK as SearchDetailsMode, gl as SearchDetailsModeWithLiterals, dN as SearchExperiencesRequest, dj as SeoSchema, di as SeoSettings, dm as Settings, cV as ShapeData, cW as ShapeDataStyles, eR as SiteCloned, eQ as SiteCreated, ez as SitePropertiesEvent, ey as SitePropertiesNotification, co as SketchData, d0 as SmartBlockCellData, c$ as SmartBlockData, az as SmartBlockDataType, ga as SmartBlockDataTypeWithLiterals, aE as SortDirection, gf as SortDirectionWithLiterals, aC as SortOrder, gd as SortOrderWithLiterals, aD as SortType, ge as SortTypeWithLiterals, dI as Sorting, _ as Source, fB as SourceWithLiterals, eI as SpecialHourPeriod, aR as SpecificTablesOptions, bl as Spoiler, cm as SpoilerData, aU as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, fe as StartDaysAndTimesDayOfWeekWithLiterals, be as Stop, bn as Styles, bU as StylesBorder, $ as StylesPosition, fC as StylesPositionWithLiterals, eK as SupportedLanguage, aP as Table, r as TableAssignmentType, fa as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, f9 as TableAvailabilityTypeWithLiterals, cF as TableCellData, aQ as TableCombination, cD as TableData, dc as TableManagement, s as TableManagementMode, fb as TableManagementModeWithLiterals, dd as TableManagementOptionsOneOf, dl as Tag, dh as TagList, dg as Tags, dx as TagsModified, A as Target, fm as TargetWithLiterals, b4 as TermsAndConditions, b5 as TermsAndConditionsValueOneOf, F as TextAlignment, fq as TextAlignmentWithLiterals, ce as TextData, d5 as TextNodeStyle, bx as TextStyle, bN as Thumbnails, Y as ThumbnailsAlignment, fz as ThumbnailsAlignmentWithLiterals, eH as TimePeriod, c_ as TocData, eM as Translation, C as Type, fn as TypeWithLiterals, ds as URI, dw as URIs, u as Unit, fc as UnitWithLiterals, dD as UpdateExperienceRequest, dE as UpdateExperienceResponse, dU as ValueAggregation, dV as ValueAggregationOptionsOneOf, e2 as ValueAggregationResult, ea as ValueResult, e6 as ValueResults, a8 as Variant, fL as VariantWithLiterals, aj as VerticalAlignment, ar as VerticalAlignmentAlignment, g2 as VerticalAlignmentAlignmentWithLiterals, fW as VerticalAlignmentWithLiterals, bH as Video, cy as VideoData, V as ViewMode, fv as ViewModeWithLiterals, a1 as ViewRole, fE as ViewRoleWithLiterals, a2 as VoteRole, fF as VoteRoleWithLiterals, aO as WebhookIdentityType, gp as WebhookIdentityTypeWithLiterals, aV as WeeklyOptions, J as Width, W as WidthType, fj as WidthTypeWithLiterals, ft as WidthWithLiterals, f8 as utils } from './table-reservations-v1-experience-experiences.universal-CRvAiLxj.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
|
@@ -2242,6 +2242,47 @@ 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 || {});
|
|
2270
|
+
var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
2271
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
2272
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
2273
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
2274
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
2275
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
2276
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
2277
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
2278
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
2279
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
2280
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
2281
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
2282
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
2283
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
2284
|
+
return LoopEffectType2;
|
|
2285
|
+
})(LoopEffectType || {});
|
|
2245
2286
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
2246
2287
|
TextAlignment2["AUTO"] = "AUTO";
|
|
2247
2288
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -2417,11 +2458,11 @@ var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
|
2417
2458
|
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
2418
2459
|
return Placement2;
|
|
2419
2460
|
})(Placement || {});
|
|
2420
|
-
var
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
return
|
|
2424
|
-
})(
|
|
2461
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
2462
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
2463
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
2464
|
+
return CardStylesType2;
|
|
2465
|
+
})(CardStylesType || {});
|
|
2425
2466
|
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
2426
2467
|
Alignment2["START"] = "START";
|
|
2427
2468
|
Alignment2["CENTER"] = "CENTER";
|
|
@@ -4137,6 +4178,7 @@ export {
|
|
|
4137
4178
|
BannerPosition,
|
|
4138
4179
|
ButtonDataType,
|
|
4139
4180
|
CardDataBackgroundType,
|
|
4181
|
+
CardStylesType,
|
|
4140
4182
|
ColumnSize,
|
|
4141
4183
|
Crop,
|
|
4142
4184
|
DayOfWeek,
|
|
@@ -4144,6 +4186,7 @@ export {
|
|
|
4144
4186
|
DesignTarget,
|
|
4145
4187
|
Direction,
|
|
4146
4188
|
DividerDataAlignment,
|
|
4189
|
+
EntranceEffectType,
|
|
4147
4190
|
FontType,
|
|
4148
4191
|
GIFType,
|
|
4149
4192
|
GradientType,
|
|
@@ -4159,6 +4202,7 @@ export {
|
|
|
4159
4202
|
LineCap,
|
|
4160
4203
|
LineStyle,
|
|
4161
4204
|
ListStyle,
|
|
4205
|
+
LoopEffectType,
|
|
4162
4206
|
MapType,
|
|
4163
4207
|
MissingValues,
|
|
4164
4208
|
Mode,
|