@wix/auto_sdk_table-reservations_experiences 1.0.49 → 1.0.51

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.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +35 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js +35 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +114 -5
  8. package/build/cjs/meta.js +35 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-DRR34KWR.d.ts → table-reservations-v1-experience-experiences.universal-DmJvCcqC.d.ts} +117 -5
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +33 -0
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs +33 -0
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +114 -5
  18. package/build/es/meta.mjs +33 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-DRR34KWR.d.mts → table-reservations-v1-experience-experiences.universal-DmJvCcqC.d.mts} +117 -5
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +35 -0
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js +35 -0
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +211 -6
  28. package/build/internal/cjs/meta.js +35 -0
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-DRR34KWR.d.ts → table-reservations-v1-experience-experiences.universal-JFfnG_cQ.d.ts} +194 -6
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +33 -0
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs +33 -0
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +211 -6
  38. package/build/internal/es/meta.mjs +33 -0
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-DRR34KWR.d.mts → table-reservations-v1-experience-experiences.universal-JFfnG_cQ.d.mts} +194 -6
  41. package/package.json +4 -4
@@ -842,15 +842,27 @@ interface Rel {
842
842
  interface Animation {
843
843
  /** Animation kind. */
844
844
  type?: TypeWithLiterals;
845
- /** Entrance animation, played once when the node first enters the viewport. */
845
+ /** Entrance animation, played once when the node first enters the viewport (VIEW). */
846
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 (VIEW). */
848
+ loop?: LoopAnimation;
849
+ /**
850
+ * POINTER carries its fields directly on the union member in the JTD wall, hence
851
+ * flat fields here (ts-proto camelCase must equal the JTD property names). A future
852
+ * SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
853
+ */
854
+ effect?: PointerEffect;
855
+ /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
856
+ transitionDuration?: number | null;
847
857
  }
848
858
  declare enum Type {
849
859
  /** Animations that play while the node is in view. */
850
- VIEW = "VIEW"
860
+ VIEW = "VIEW",
861
+ /** Animations driven by the visitor's mouse position. */
862
+ POINTER = "POINTER"
851
863
  }
852
864
  /** @enumType */
853
- type TypeWithLiterals = Type | 'VIEW';
865
+ type TypeWithLiterals = Type | 'VIEW' | 'POINTER';
854
866
  interface EntranceAnimation {
855
867
  /** The entrance effect to play. */
856
868
  effect?: EntranceEffect;
@@ -918,6 +930,101 @@ declare enum EntranceEffectType {
918
930
  }
919
931
  /** @enumType */
920
932
  type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
933
+ interface LoopAnimation {
934
+ /** The looping effect to repeat. */
935
+ effect?: LoopEffect;
936
+ /** Duration of a single iteration in milliseconds. Each effect has its own default. */
937
+ duration?: number | null;
938
+ /** Pause between iterations in milliseconds. */
939
+ iterationDelay?: number | null;
940
+ }
941
+ interface LoopEffect {
942
+ /** The looping effect type. */
943
+ type?: LoopEffectTypeWithLiterals;
944
+ /**
945
+ * 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).
946
+ * @maxLength 20
947
+ */
948
+ direction?: string | null;
949
+ /**
950
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
951
+ * @maxLength 100
952
+ */
953
+ easing?: string | null;
954
+ }
955
+ declare enum LoopEffectType {
956
+ /** Bounces up and down in place. */
957
+ BOUNCE = "BOUNCE",
958
+ /** Scales gently in and out along an axis. */
959
+ BREATHE = "BREATHE",
960
+ /** Drifts toward one side, then re-enters from the opposite side. */
961
+ CROSS = "CROSS",
962
+ /** Fades out to fully transparent and back in. */
963
+ FLASH = "FLASH",
964
+ /** Rotates a full turn around its horizontal or vertical axis. */
965
+ FLIP = "FLIP",
966
+ /** Folds back and forth around a hinged edge. */
967
+ FOLD = "FOLD",
968
+ /** Wobbles with a jelly-like skew. */
969
+ JELLO = "JELLO",
970
+ /** Nudges repeatedly toward a direction. */
971
+ POKE = "POKE",
972
+ /** Scales up and back down rhythmically. */
973
+ PULSE = "PULSE",
974
+ /** Stretches and squashes like a rubber band. */
975
+ RUBBER = "RUBBER",
976
+ /** Rotates continuously around its center. */
977
+ SPIN = "SPIN",
978
+ /** Swings back and forth around an edge pivot. */
979
+ SWING = "SWING",
980
+ /** Rocks side to side with an accumulating rotation. */
981
+ WIGGLE = "WIGGLE"
982
+ }
983
+ /** @enumType */
984
+ type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
985
+ interface PointerEffect {
986
+ /** The mouse effect type. */
987
+ type?: PointerEffectTypeWithLiterals;
988
+ /** Reacts away from the pointer instead of toward it. */
989
+ inverted?: boolean | null;
990
+ /**
991
+ * One field, two value spaces (the effect type says which): the axis the movement is constrained to — HORIZONTAL, VERTICAL, or BOTH (AIRY, SCALE, SKEW, TRACK, TRACK_3D) — or the edge/center axis the node swivels around — TOP, BOTTOM, LEFT, RIGHT, CENTER_HORIZONTAL, or CENTER_VERTICAL (SWIVEL). Only the effects that expose one accept it.
992
+ * @maxLength 20
993
+ */
994
+ axis?: string | null;
995
+ /**
996
+ * Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
997
+ * @maxLength 8
998
+ */
999
+ direction?: string | null;
1000
+ /**
1001
+ * Motion style: GENTLE, MODERATE, or INTENSE.
1002
+ * @maxLength 100
1003
+ */
1004
+ easing?: string | null;
1005
+ }
1006
+ declare enum PointerEffectType {
1007
+ /** Drifts loosely after the pointer with a light rotation. */
1008
+ AIRY = "AIRY",
1009
+ /** Squashes and stretches toward the pointer. */
1010
+ BLOB = "BLOB",
1011
+ /** Shifts after the pointer while blurring. */
1012
+ BLUR = "BLUR",
1013
+ /** Scales as the pointer approaches. */
1014
+ SCALE = "SCALE",
1015
+ /** Skews toward the pointer. */
1016
+ SKEW = "SKEW",
1017
+ /** Rotates around a pivot edge or axis, following the pointer. */
1018
+ SWIVEL = "SWIVEL",
1019
+ /** Tilts in 3D perspective toward the pointer. */
1020
+ TILT_3D = "TILT_3D",
1021
+ /** Follows the pointer's position. */
1022
+ TRACK = "TRACK",
1023
+ /** Follows the pointer with a 3D depth motion. */
1024
+ TRACK_3D = "TRACK_3D"
1025
+ }
1026
+ /** @enumType */
1027
+ type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
921
1028
  interface CodeBlockData {
922
1029
  /** Styling for the code block's text. */
923
1030
  textStyle?: TextStyle;
@@ -1774,6 +1881,8 @@ interface MentionData {
1774
1881
  slug?: string;
1775
1882
  /** Mentioned user's ID. */
1776
1883
  id?: string | null;
1884
+ /** 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. */
1885
+ type?: string | null;
1777
1886
  }
1778
1887
  interface FontSizeData {
1779
1888
  /** The units used for the font size. */
@@ -4895,7 +5004,10 @@ declare const utils: {
4895
5004
  Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>;
4896
5005
  Sort: _wix_sdk_types.SortFactory<ExperienceSearchSpec>;
4897
5006
  SearchParams: _wix_sdk_types.SearchParamsFactory<ExperienceSearchSpec>;
4898
- Aggregation: _wix_sdk_types.AggregationFactory<ExperienceSearchSpec>;
5007
+ Aggregation: _wix_sdk_types.AggregationFactory<ExperienceSearchSpec>; /**
5008
+ * GIF format URL.
5009
+ * @format WEB_URL
5010
+ */
4899
5011
  };
4900
5012
  };
4901
5013
  interface ExperienceSearchSpec extends SearchSpec {
@@ -5169,4 +5281,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
5169
5281
  */
5170
5282
  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>>;
5171
5283
 
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 };
5284
+ export { Source as $, Target as A, type BulkUpdateExperiencesOptions as B, Type as C, EntranceEffectType as D, type Experience as E, PointerEffectType as F, type GetExperienceBySlugResponse as G, TextAlignment as H, LineCap as I, LineStyle as J, Width as K, LoopEffectType as L, type MaskedExperience as M, NodeType as N, DividerDataAlignment as O, PluginContainerDataAlignment as P, LayoutType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, Orientation as X, Crop as Y, ThumbnailsAlignment as Z, GIFType as _, type UpdateExperienceApplicationErrors as a, type NoticePeriod as a$, StylesPosition as a0, MapType as a1, ViewRole as a2, VoteRole as a3, PollLayoutType as a4, PollLayoutDirection as a5, PollDesignBackgroundType as a6, DecorationType as a7, FontType as a8, Variant as a9, SmartBlockDataType as aA, ColumnSize as aB, PaymentPolicyType as aC, SortOrder as aD, SortType as aE, SortDirection as aF, MissingValues as aG, ScalarType as aH, NestedAggregationType as aI, Interval as aJ, AggregationType as aK, SearchDetailsMode as aL, PlacementType as aM, DayOfWeek as aN, ResolutionMethod as aO, WebhookIdentityType as aP, type Table as aQ, type TableCombination as aR, type SpecificTablesOptions as aS, type OnOptions as aT, type OnOptionsOptionsOneOf as aU, type StartDaysAndTimes as aV, type WeeklyOptions as aW, type OneTimeOptions as aX, type Entry as aY, type EntryRecurrenceOptionsOneOf as aZ, type PartySize as a_, Position as aa, AspectRatio as ab, Resizing as ac, Placement as ad, CardStylesType as ae, Alignment as af, Layout as ag, AppType as ah, InitialExpandedItems as ai, Direction as aj, VerticalAlignment as ak, NullValue as al, ImageScalingScaling as am, ImagePosition as an, LayoutDataBackgroundType as ao, Origin as ap, BannerPosition as aq, BackdropType as ar, VerticalAlignmentAlignment as as, ResponsivenessBehaviour as at, DesignTarget as au, Scaling as av, ImagePositionPosition as aw, CardDataBackgroundType as ax, ListStyle as ay, Indentation as az, type ExperienceSearch as b, type MapData as b$, type Approval as b0, type MaxGuests as b1, type OnlineReservationsBusinessSchedule as b2, type PrivacyPolicy as b3, type PrivacyPolicyValueOneOf as b4, type TermsAndConditions as b5, type TermsAndConditionsValueOneOf as b6, type CustomFieldDefinition as b7, type EmailMarketingCheckbox as b8, type RichContent as b9, type DividerData as bA, type DividerDataStyles as bB, type FileData as bC, type FileSource as bD, type FileSourceDataOneOf as bE, type PDFSettings as bF, type GalleryData as bG, type Media as bH, type Image as bI, type Video as bJ, type Item as bK, type ItemDataOneOf as bL, type GalleryOptions as bM, type GalleryOptionsLayout as bN, type ItemStyle as bO, type Thumbnails as bP, type GIFData as bQ, type GIF as bR, type HeadingData as bS, type HTMLData as bT, type HTMLDataDataOneOf as bU, type ImageData as bV, type StylesBorder as bW, type ImageDataStyles as bX, type ImageDataCrop as bY, type LinkPreviewData as bZ, type LinkPreviewDataStyles as b_, type Node as ba, type NodeDataOneOf as bb, type NodeStyle as bc, type ButtonData as bd, type Gradient as be, type Stop as bf, type Border as bg, type Colors as bh, type Background as bi, type PluginContainerData as bj, type PluginContainerDataWidth as bk, type PluginContainerDataWidthDataOneOf as bl, type Spoiler as bm, type Height as bn, type Styles as bo, type Link as bp, type LinkDataOneOf as bq, type Rel as br, type Animation as bs, type EntranceAnimation as bt, type EntranceEffect as bu, type LoopAnimation as bv, type LoopEffect as bw, type PointerEffect as bx, type CodeBlockData as by, type TextStyle as bz, type BulkUpdateExperiencesResponse as c, type BackgroundImage as c$, type MapSettings as c0, type ParagraphData as c1, type PollData as c2, type Permissions as c3, type Option as c4, type PollSettings as c5, type PollLayout as c6, type OptionLayout as c7, type BackgroundGradient as c8, type PollDesignBackground as c9, type VideoData as cA, type PlaybackOptions as cB, type EmbedData as cC, type Oembed as cD, type CollapsibleListData as cE, type TableData as cF, type Dimensions as cG, type TableCellData as cH, type CellStyle as cI, type BorderColors as cJ, type BorderWidths as cK, type ListValue as cL, type AudioData as cM, type OrderedListData as cN, type BulletedListData as cO, type BlockquoteData as cP, type CaptionData as cQ, type LayoutData as cR, type LayoutDataBackground as cS, type LayoutDataBackgroundImage as cT, type Banner as cU, type Backdrop as cV, type LayoutCellData as cW, type ShapeData as cX, type ShapeDataStyles as cY, type CardData as cZ, type CardDataBackground as c_, type PollDesignBackgroundBackgroundOneOf as ca, type PollDesign as cb, type OptionDesign as cc, type Poll as cd, type PollDataLayout as ce, type Design as cf, type TextData as cg, type Decoration as ch, type DecorationDataOneOf as ci, type AnchorData as cj, type ColorData as ck, type LinkData as cl, type MentionData as cm, type FontSizeData as cn, type SpoilerData as co, type FontFamilyData as cp, type SketchData as cq, type AppEmbedData as cr, type AppEmbedDataAppDataOneOf as cs, type BookingData as ct, type EventData as cu, type ButtonStyles as cv, type ImageStyles as cw, type RibbonStyles as cx, type CardStyles as cy, type PricingData as cz, type BulkUpdateExperiencesApplicationErrors as d, type NestedAggregationItem as d$, type TocData as d0, type SmartBlockData as d1, type SmartBlockCellData as d2, type CheckboxListData as d3, type ListItemNodeData as d4, type Metadata as d5, type DocumentStyle as d6, type TextNodeStyle as d7, type PerGuestOptions as d8, type DisplayInfo as d9, type CreateExperienceRequest as dA, type CreateExperienceResponse as dB, type GetExperienceRequest as dC, type GetExperienceResponse as dD, type GetExperienceBySlugRequest as dE, type UpdateExperienceRequest as dF, type UpdateExperienceResponse as dG, type QueryExperiencesRequest as dH, type CursorQuery as dI, type CursorQueryPagingMethodOneOf as dJ, type Sorting as dK, type CursorPaging as dL, type QueryExperiencesResponse as dM, type CursorPagingMetadata as dN, type Cursors as dO, type SearchExperiencesRequest as dP, type CursorSearch as dQ, type CursorSearchPagingMethodOneOf as dR, type Aggregation as dS, type AggregationKindOneOf as dT, type RangeBucket as dU, type IncludeMissingValuesOptions as dV, type ValueAggregation as dW, type ValueAggregationOptionsOneOf as dX, type RangeAggregation as dY, type ScalarAggregation as dZ, type DateHistogramAggregation as d_, type PaymentPolicy as da, type PaymentPolicyOptionsOneOf as db, type OnlineReservations as dc, type ReservationForm as dd, type TableManagement as de, type TableManagementOptionsOneOf as df, type Configuration as dg, type ExtendedFields as dh, type Tags as di, type TagList as dj, type SeoSettings as dk, type SeoSchema as dl, type Keyword as dm, type Tag as dn, type Settings as dp, type InvalidateCache as dq, type InvalidateCacheGetByOneOf as dr, type App as ds, type Page as dt, type URI as du, type File as dv, type CustomTag as dw, type Pages as dx, type URIs as dy, type TagsModified as dz, type BulkUpdateExperienceTagsOptions as e, type ActionEvent as e$, type NestedAggregationItemKindOneOf as e0, type NestedAggregation as e1, type SearchDetails as e2, type AggregationData as e3, type ValueAggregationResult as e4, type RangeAggregationResult as e5, type NestedAggregationResults as e6, type NestedAggregationResultsResultOneOf as e7, type ValueResults as e8, type RangeResults as e9, type SitePropertiesNotification as eA, type SitePropertiesEvent as eB, type Properties as eC, type Categories as eD, type Locale as eE, type Address as eF, type AddressHint as eG, type GeoCoordinates as eH, type BusinessSchedule as eI, type TimePeriod as eJ, type SpecialHourPeriod as eK, type Multilingual as eL, type SupportedLanguage as eM, type ConsentPolicy as eN, type Translation as eO, type ChangeContext as eP, type ChangeContextPayloadOneOf as eQ, type PropertiesChange as eR, type SiteCreated as eS, type SiteCloned as eT, type Empty as eU, type DomainEvent as eV, type DomainEventBodyOneOf as eW, type EntityCreatedEvent as eX, type RestoreInfo as eY, type EntityUpdatedEvent as eZ, type EntityDeletedEvent as e_, type AggregationResultsScalarResult as ea, type NestedValueAggregationResult as eb, type ValueResult as ec, type RangeResult as ed, type ScalarResult as ee, type NestedResultValue as ef, type NestedResultValueResultOneOf as eg, type Results as eh, type DateHistogramResult as ei, type GroupByValueResults as ej, type DateHistogramResults as ek, type NestedResults as el, type AggregationResults as em, type AggregationResultsResultOneOf as en, type BulkUpdateExperiencesRequest as eo, type ItemMetadata as ep, type ApplicationError as eq, type BulkUpdateExperiencesResult as er, type BulkActionMetadata as es, type BulkUpdateExperienceTagsRequest as et, type BulkUpdateExperienceTagsResult as eu, type BulkUpdateExperienceTagsByFilterRequest as ev, type BulkArchiveExperiencesRequest as ew, type BulkArchiveExperiencesResult as ex, type BulkUnarchiveExperiencesRequest as ey, type BulkUnarchiveExperiencesResult as ez, type BulkUpdateExperienceTagsResponse as f, type ImageScalingScalingWithLiterals as f$, type MessageEnvelope as f0, type IdentificationData as f1, type IdentificationDataIdOneOf as f2, type AccountInfo as f3, type BaseEventMetadata as f4, type EventMetadata as f5, type AccountInfoMetadata as f6, type ExperiencesQueryResult as f7, type ExperienceQuerySpec as f8, type ExperienceSearchSpec as f9, type OrientationWithLiterals as fA, type CropWithLiterals as fB, type ThumbnailsAlignmentWithLiterals as fC, type GIFTypeWithLiterals as fD, type SourceWithLiterals as fE, type StylesPositionWithLiterals as fF, type MapTypeWithLiterals as fG, type ViewRoleWithLiterals as fH, type VoteRoleWithLiterals as fI, type PollLayoutTypeWithLiterals as fJ, type PollLayoutDirectionWithLiterals as fK, type PollDesignBackgroundTypeWithLiterals as fL, type DecorationTypeWithLiterals as fM, type FontTypeWithLiterals as fN, type VariantWithLiterals as fO, type PositionWithLiterals as fP, type AspectRatioWithLiterals as fQ, type ResizingWithLiterals as fR, type PlacementWithLiterals as fS, type CardStylesTypeWithLiterals as fT, type AlignmentWithLiterals as fU, type LayoutWithLiterals as fV, type AppTypeWithLiterals as fW, type InitialExpandedItemsWithLiterals as fX, type DirectionWithLiterals as fY, type VerticalAlignmentWithLiterals as fZ, type NullValueWithLiterals as f_, utils as fa, type TableAvailabilityTypeWithLiterals as fb, type TableAssignmentTypeWithLiterals as fc, type TableManagementModeWithLiterals as fd, type UnitWithLiterals as fe, type ModeWithLiterals as ff, type StartDaysAndTimesDayOfWeekWithLiterals as fg, type RecurrenceWithLiterals as fh, type NodeTypeWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type GradientTypeWithLiterals as fk, type WidthTypeWithLiterals as fl, type PluginContainerDataAlignmentWithLiterals as fm, type ButtonDataTypeWithLiterals as fn, type TargetWithLiterals as fo, type TypeWithLiterals as fp, type EntranceEffectTypeWithLiterals as fq, type LoopEffectTypeWithLiterals as fr, type PointerEffectTypeWithLiterals as fs, type TextAlignmentWithLiterals as ft, type LineCapWithLiterals as fu, type LineStyleWithLiterals as fv, type WidthWithLiterals as fw, type DividerDataAlignmentWithLiterals as fx, type ViewModeWithLiterals as fy, type LayoutTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type ImagePositionWithLiterals as g0, type LayoutDataBackgroundTypeWithLiterals as g1, type OriginWithLiterals as g2, type BannerPositionWithLiterals as g3, type BackdropTypeWithLiterals as g4, type VerticalAlignmentAlignmentWithLiterals as g5, type ResponsivenessBehaviourWithLiterals as g6, type DesignTargetWithLiterals as g7, type ScalingWithLiterals as g8, type ImagePositionPositionWithLiterals as g9, getExperienceBySlug as gA, updateExperience as gB, queryExperiences as gC, bulkUpdateExperiences as gD, bulkUpdateExperienceTags as gE, bulkUpdateExperienceTagsByFilter as gF, bulkArchiveExperiences as gG, bulkUnarchiveExperiences as gH, type CardDataBackgroundTypeWithLiterals as ga, type ListStyleWithLiterals as gb, type IndentationWithLiterals as gc, type SmartBlockDataTypeWithLiterals as gd, type ColumnSizeWithLiterals as ge, type PaymentPolicyTypeWithLiterals as gf, type SortOrderWithLiterals as gg, type SortTypeWithLiterals as gh, type SortDirectionWithLiterals as gi, type MissingValuesWithLiterals as gj, type ScalarTypeWithLiterals as gk, type NestedAggregationTypeWithLiterals as gl, type IntervalWithLiterals as gm, type AggregationTypeWithLiterals as gn, type SearchDetailsModeWithLiterals as go, type PlacementTypeWithLiterals as gp, type DayOfWeekWithLiterals as gq, type ResolutionMethodWithLiterals as gr, type WebhookIdentityTypeWithLiterals as gs, type CommonQueryWithEntityContext as gt, type CommonSearchWithEntityContext as gu, onExperienceCreated as gv, onExperienceTagsModified as gw, onExperienceUpdated as gx, createExperience as gy, getExperience 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-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';
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-DmJvCcqC.mjs';
3
+ export { f3 as AccountInfo, f6 as AccountInfoMetadata, e$ as ActionEvent, eF as Address, eG as AddressHint, dS as Aggregation, e3 as AggregationData, dT as AggregationKindOneOf, em as AggregationResults, en as AggregationResultsResultOneOf, ea as AggregationResultsScalarResult, aK as AggregationType, gn as AggregationTypeWithLiterals, af as Alignment, fU as AlignmentWithLiterals, cj as AnchorData, bs as Animation, ds as App, cr as AppEmbedData, cs as AppEmbedDataAppDataOneOf, ah as AppType, fW as AppTypeWithLiterals, eq as ApplicationError, b0 as Approval, ab as AspectRatio, fQ as AspectRatioWithLiterals, cM as AudioData, cV as Backdrop, ar as BackdropType, g4 as BackdropTypeWithLiterals, bi as Background, c8 as BackgroundGradient, c$ as BackgroundImage, x as BackgroundType, fj as BackgroundTypeWithLiterals, cU as Banner, aq as BannerPosition, g3 as BannerPositionWithLiterals, f4 as BaseEventMetadata, cP as BlockquoteData, ct as BookingData, bg as Border, cJ as BorderColors, cK as BorderWidths, es as BulkActionMetadata, ew as BulkArchiveExperiencesRequest, ex as BulkArchiveExperiencesResult, ey as BulkUnarchiveExperiencesRequest, ez as BulkUnarchiveExperiencesResult, ev as BulkUpdateExperienceTagsByFilterRequest, et as BulkUpdateExperienceTagsRequest, eu as BulkUpdateExperienceTagsResult, eo as BulkUpdateExperiencesRequest, er as BulkUpdateExperiencesResult, cO as BulletedListData, eI as BusinessSchedule, bd as ButtonData, z as ButtonDataType, fn as ButtonDataTypeWithLiterals, cv as ButtonStyles, cQ as CaptionData, cZ as CardData, c_ as CardDataBackground, ax as CardDataBackgroundType, ga as CardDataBackgroundTypeWithLiterals, cy as CardStyles, ae as CardStylesType, fT as CardStylesTypeWithLiterals, eD as Categories, cI as CellStyle, eP as ChangeContext, eQ as ChangeContextPayloadOneOf, d3 as CheckboxListData, by as CodeBlockData, cE as CollapsibleListData, ck as ColorData, bh as Colors, aB as ColumnSize, ge as ColumnSizeWithLiterals, gt as CommonQueryWithEntityContext, gu as CommonSearchWithEntityContext, dg as Configuration, eN as ConsentPolicy, dA as CreateExperienceRequest, dB as CreateExperienceResponse, Y as Crop, fB as CropWithLiterals, dL as CursorPaging, dN as CursorPagingMetadata, dI as CursorQuery, dJ as CursorQueryPagingMethodOneOf, dQ as CursorSearch, dR as CursorSearchPagingMethodOneOf, dO as Cursors, b7 as CustomFieldDefinition, dw as CustomTag, d_ as DateHistogramAggregation, ei as DateHistogramResult, ek as DateHistogramResults, aN as DayOfWeek, gq as DayOfWeekWithLiterals, ch as Decoration, ci as DecorationDataOneOf, a7 as DecorationType, fM as DecorationTypeWithLiterals, cf as Design, au as DesignTarget, g7 as DesignTargetWithLiterals, cG as Dimensions, aj as Direction, fY as DirectionWithLiterals, d9 as DisplayInfo, bA as DividerData, O as DividerDataAlignment, fx as DividerDataAlignmentWithLiterals, bB as DividerDataStyles, d6 as DocumentStyle, eV as DomainEvent, eW as DomainEventBodyOneOf, b8 as EmailMarketingCheckbox, cC as EmbedData, eU as Empty, eX as EntityCreatedEvent, e_ as EntityDeletedEvent, eZ as EntityUpdatedEvent, bt as EntranceAnimation, bu as EntranceEffect, D as EntranceEffectType, fq as EntranceEffectTypeWithLiterals, aY as Entry, aZ as EntryRecurrenceOptionsOneOf, cu as EventData, f5 as EventMetadata, f8 as ExperienceQuerySpec, f9 as ExperienceSearchSpec, f7 as ExperiencesQueryResult, dh as ExtendedFields, dv as File, bC as FileData, bD as FileSource, bE as FileSourceDataOneOf, cp as FontFamilyData, cn as FontSizeData, a8 as FontType, fN as FontTypeWithLiterals, bR as GIF, bQ as GIFData, _ as GIFType, fD as GIFTypeWithLiterals, bG as GalleryData, bM as GalleryOptions, bN as GalleryOptionsLayout, eH as GeoCoordinates, dE as GetExperienceBySlugRequest, dC as GetExperienceRequest, dD as GetExperienceResponse, be as Gradient, y as GradientType, fk as GradientTypeWithLiterals, ej as GroupByValueResults, bT as HTMLData, bU as HTMLDataDataOneOf, bS as HeadingData, bn as Height, f1 as IdentificationData, f2 as IdentificationDataIdOneOf, bI as Image, bV as ImageData, bY as ImageDataCrop, bX as ImageDataStyles, an as ImagePosition, aw as ImagePositionPosition, g9 as ImagePositionPositionWithLiterals, g0 as ImagePositionWithLiterals, am as ImageScalingScaling, f$ as ImageScalingScalingWithLiterals, cw as ImageStyles, dV as IncludeMissingValuesOptions, az as Indentation, gc as IndentationWithLiterals, ai as InitialExpandedItems, fX as InitialExpandedItemsWithLiterals, aJ as Interval, gm as IntervalWithLiterals, dq as InvalidateCache, dr as InvalidateCacheGetByOneOf, bK as Item, bL as ItemDataOneOf, ep as ItemMetadata, bO as ItemStyle, dm as Keyword, ag as Layout, cW as LayoutCellData, cR as LayoutData, cS as LayoutDataBackground, cT as LayoutDataBackgroundImage, ao as LayoutDataBackgroundType, g1 as LayoutDataBackgroundTypeWithLiterals, Q as LayoutType, fz as LayoutTypeWithLiterals, fV as LayoutWithLiterals, I as LineCap, fu as LineCapWithLiterals, J as LineStyle, fv as LineStyleWithLiterals, bp as Link, cl as LinkData, bq as LinkDataOneOf, bZ as LinkPreviewData, b_ as LinkPreviewDataStyles, d4 as ListItemNodeData, ay as ListStyle, gb as ListStyleWithLiterals, cL as ListValue, eE as Locale, bv as LoopAnimation, bw as LoopEffect, L as LoopEffectType, fr as LoopEffectTypeWithLiterals, b$ as MapData, c0 as MapSettings, a1 as MapType, fG as MapTypeWithLiterals, b1 as MaxGuests, bH as Media, cm as MentionData, f0 as MessageEnvelope, d5 as Metadata, aG as MissingValues, gj as MissingValuesWithLiterals, v as Mode, ff as ModeWithLiterals, eL as Multilingual, e1 as NestedAggregation, d$ as NestedAggregationItem, e0 as NestedAggregationItemKindOneOf, e6 as NestedAggregationResults, e7 as NestedAggregationResultsResultOneOf, aI as NestedAggregationType, gl as NestedAggregationTypeWithLiterals, ef as NestedResultValue, eg as NestedResultValueResultOneOf, el as NestedResults, eb as NestedValueAggregationResult, ba as Node, bb as NodeDataOneOf, bc as NodeStyle, N as NodeType, fi as NodeTypeWithLiterals, a$ as NoticePeriod, al as NullValue, f_ as NullValueWithLiterals, cD as Oembed, aT as OnOptions, aU as OnOptionsOptionsOneOf, aX as OneTimeOptions, dc as OnlineReservations, b2 as OnlineReservationsBusinessSchedule, c4 as Option, cc as OptionDesign, c7 as OptionLayout, cN as OrderedListData, X as Orientation, fA as OrientationWithLiterals, ap as Origin, g2 as OriginWithLiterals, bF as PDFSettings, dt as Page, dx as Pages, c1 as ParagraphData, a_ as PartySize, da as PaymentPolicy, db as PaymentPolicyOptionsOneOf, aC as PaymentPolicyType, gf as PaymentPolicyTypeWithLiterals, d8 as PerGuestOptions, c3 as Permissions, ad as Placement, aM as PlacementType, gp as PlacementTypeWithLiterals, fS as PlacementWithLiterals, cB as PlaybackOptions, bj as PluginContainerData, P as PluginContainerDataAlignment, fm as PluginContainerDataAlignmentWithLiterals, bk as PluginContainerDataWidth, bl as PluginContainerDataWidthDataOneOf, bx as PointerEffect, F as PointerEffectType, fs as PointerEffectTypeWithLiterals, cd as Poll, c2 as PollData, ce as PollDataLayout, cb as PollDesign, c9 as PollDesignBackground, ca as PollDesignBackgroundBackgroundOneOf, a6 as PollDesignBackgroundType, fL as PollDesignBackgroundTypeWithLiterals, c6 as PollLayout, a5 as PollLayoutDirection, fK as PollLayoutDirectionWithLiterals, a4 as PollLayoutType, fJ as PollLayoutTypeWithLiterals, c5 as PollSettings, aa as Position, fP as PositionWithLiterals, cz as PricingData, b3 as PrivacyPolicy, b4 as PrivacyPolicyValueOneOf, eC as Properties, eR as PropertiesChange, dH as QueryExperiencesRequest, dM as QueryExperiencesResponse, dY as RangeAggregation, e5 as RangeAggregationResult, dU as RangeBucket, ed as RangeResult, e9 as RangeResults, R as Recurrence, fh as RecurrenceWithLiterals, br as Rel, dd as ReservationForm, ac as Resizing, fR as ResizingWithLiterals, aO as ResolutionMethod, gr as ResolutionMethodWithLiterals, at as ResponsivenessBehaviour, g6 as ResponsivenessBehaviourWithLiterals, eY as RestoreInfo, eh as Results, cx as RibbonStyles, b9 as RichContent, dZ as ScalarAggregation, ee as ScalarResult, aH as ScalarType, gk as ScalarTypeWithLiterals, av as Scaling, g8 as ScalingWithLiterals, e2 as SearchDetails, aL as SearchDetailsMode, go as SearchDetailsModeWithLiterals, dP as SearchExperiencesRequest, dl as SeoSchema, dk as SeoSettings, dp as Settings, cX as ShapeData, cY as ShapeDataStyles, eT as SiteCloned, eS as SiteCreated, eB as SitePropertiesEvent, eA as SitePropertiesNotification, cq as SketchData, d2 as SmartBlockCellData, d1 as SmartBlockData, aA as SmartBlockDataType, gd as SmartBlockDataTypeWithLiterals, aF as SortDirection, gi as SortDirectionWithLiterals, aD as SortOrder, gg as SortOrderWithLiterals, aE as SortType, gh as SortTypeWithLiterals, dK as Sorting, $ as Source, fE as SourceWithLiterals, eK as SpecialHourPeriod, aS as SpecificTablesOptions, bm as Spoiler, co as SpoilerData, aV as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, fg as StartDaysAndTimesDayOfWeekWithLiterals, bf as Stop, bo as Styles, bW as StylesBorder, a0 as StylesPosition, fF as StylesPositionWithLiterals, eM as SupportedLanguage, aQ as Table, r as TableAssignmentType, fc as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, fb as TableAvailabilityTypeWithLiterals, cH as TableCellData, aR as TableCombination, cF as TableData, de as TableManagement, s as TableManagementMode, fd as TableManagementModeWithLiterals, df as TableManagementOptionsOneOf, dn as Tag, dj as TagList, di as Tags, dz as TagsModified, A as Target, fo as TargetWithLiterals, b5 as TermsAndConditions, b6 as TermsAndConditionsValueOneOf, H as TextAlignment, ft as TextAlignmentWithLiterals, cg as TextData, d7 as TextNodeStyle, bz as TextStyle, bP as Thumbnails, Z as ThumbnailsAlignment, fC as ThumbnailsAlignmentWithLiterals, eJ as TimePeriod, d0 as TocData, eO as Translation, C as Type, fp as TypeWithLiterals, du as URI, dy as URIs, u as Unit, fe as UnitWithLiterals, dF as UpdateExperienceRequest, dG as UpdateExperienceResponse, dW as ValueAggregation, dX as ValueAggregationOptionsOneOf, e4 as ValueAggregationResult, ec as ValueResult, e8 as ValueResults, a9 as Variant, fO as VariantWithLiterals, ak as VerticalAlignment, as as VerticalAlignmentAlignment, g5 as VerticalAlignmentAlignmentWithLiterals, fZ as VerticalAlignmentWithLiterals, bJ as Video, cA as VideoData, V as ViewMode, fy as ViewModeWithLiterals, a2 as ViewRole, fH as ViewRoleWithLiterals, a3 as VoteRole, fI as VoteRoleWithLiterals, aP as WebhookIdentityType, gs as WebhookIdentityTypeWithLiterals, aW as WeeklyOptions, K as Width, W as WidthType, fl as WidthTypeWithLiterals, fw as WidthWithLiterals, fa as utils } from './table-reservations-v1-experience-experiences.universal-DmJvCcqC.mjs';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -2244,6 +2244,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
2244
2244
  })(Target || {});
2245
2245
  var Type = /* @__PURE__ */ ((Type2) => {
2246
2246
  Type2["VIEW"] = "VIEW";
2247
+ Type2["POINTER"] = "POINTER";
2247
2248
  return Type2;
2248
2249
  })(Type || {});
2249
2250
  var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
@@ -2267,6 +2268,34 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
2267
2268
  EntranceEffectType2["WINK"] = "WINK";
2268
2269
  return EntranceEffectType2;
2269
2270
  })(EntranceEffectType || {});
2271
+ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
2272
+ LoopEffectType2["BOUNCE"] = "BOUNCE";
2273
+ LoopEffectType2["BREATHE"] = "BREATHE";
2274
+ LoopEffectType2["CROSS"] = "CROSS";
2275
+ LoopEffectType2["FLASH"] = "FLASH";
2276
+ LoopEffectType2["FLIP"] = "FLIP";
2277
+ LoopEffectType2["FOLD"] = "FOLD";
2278
+ LoopEffectType2["JELLO"] = "JELLO";
2279
+ LoopEffectType2["POKE"] = "POKE";
2280
+ LoopEffectType2["PULSE"] = "PULSE";
2281
+ LoopEffectType2["RUBBER"] = "RUBBER";
2282
+ LoopEffectType2["SPIN"] = "SPIN";
2283
+ LoopEffectType2["SWING"] = "SWING";
2284
+ LoopEffectType2["WIGGLE"] = "WIGGLE";
2285
+ return LoopEffectType2;
2286
+ })(LoopEffectType || {});
2287
+ var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
2288
+ PointerEffectType2["AIRY"] = "AIRY";
2289
+ PointerEffectType2["BLOB"] = "BLOB";
2290
+ PointerEffectType2["BLUR"] = "BLUR";
2291
+ PointerEffectType2["SCALE"] = "SCALE";
2292
+ PointerEffectType2["SKEW"] = "SKEW";
2293
+ PointerEffectType2["SWIVEL"] = "SWIVEL";
2294
+ PointerEffectType2["TILT_3D"] = "TILT_3D";
2295
+ PointerEffectType2["TRACK"] = "TRACK";
2296
+ PointerEffectType2["TRACK_3D"] = "TRACK_3D";
2297
+ return PointerEffectType2;
2298
+ })(PointerEffectType || {});
2270
2299
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2271
2300
  TextAlignment2["AUTO"] = "AUTO";
2272
2301
  TextAlignment2["LEFT"] = "LEFT";
@@ -2640,6 +2669,8 @@ var ScalarType = /* @__PURE__ */ ((ScalarType2) => {
2640
2669
  ScalarType2["COUNT_DISTINCT"] = "COUNT_DISTINCT";
2641
2670
  ScalarType2["MIN"] = "MIN";
2642
2671
  ScalarType2["MAX"] = "MAX";
2672
+ ScalarType2["SUM"] = "SUM";
2673
+ ScalarType2["AVG"] = "AVG";
2643
2674
  return ScalarType2;
2644
2675
  })(ScalarType || {});
2645
2676
  var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
@@ -4186,6 +4217,7 @@ export {
4186
4217
  LineCap,
4187
4218
  LineStyle,
4188
4219
  ListStyle,
4220
+ LoopEffectType,
4189
4221
  MapType,
4190
4222
  MissingValues,
4191
4223
  Mode,
@@ -4198,6 +4230,7 @@ export {
4198
4230
  Placement,
4199
4231
  PlacementType,
4200
4232
  PluginContainerDataAlignment,
4233
+ PointerEffectType,
4201
4234
  PollDesignBackgroundType,
4202
4235
  PollLayoutDirection,
4203
4236
  PollLayoutType,