@wix/auto_sdk_table-reservations_experiences 1.0.46 → 1.0.47
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 +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +32 -2
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-_0Jh_yem.d.ts → table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.ts} +35 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +32 -2
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-_0Jh_yem.d.mts → table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.mts} +35 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +7 -0
- 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 +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +32 -2
- package/build/internal/cjs/meta.js +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-_0Jh_yem.d.ts → table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.ts} +35 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +6 -0
- 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 +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +32 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-_0Jh_yem.d.mts → table-reservations-v1-experience-experiences.universal-UuAl1xmZ.d.mts} +35 -2
- package/package.json +2 -2
|
@@ -870,7 +870,17 @@ interface DividerData {
|
|
|
870
870
|
width?: WidthWithLiterals;
|
|
871
871
|
/** Divider alignment. */
|
|
872
872
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
873
|
+
/** Visual styling for the divider lines. */
|
|
874
|
+
styles?: DividerDataStyles;
|
|
873
875
|
}
|
|
876
|
+
declare enum LineCap {
|
|
877
|
+
/** Square line endings. */
|
|
878
|
+
SQUARE = "SQUARE",
|
|
879
|
+
/** Rounded line endings. */
|
|
880
|
+
ROUND = "ROUND"
|
|
881
|
+
}
|
|
882
|
+
/** @enumType */
|
|
883
|
+
type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
|
|
874
884
|
declare enum LineStyle {
|
|
875
885
|
/** Single Line */
|
|
876
886
|
SINGLE = "SINGLE",
|
|
@@ -903,6 +913,26 @@ declare enum DividerDataAlignment {
|
|
|
903
913
|
}
|
|
904
914
|
/** @enumType */
|
|
905
915
|
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
916
|
+
interface DividerDataStyles {
|
|
917
|
+
/**
|
|
918
|
+
* Divider color as a hexadecimal value. An alpha channel controls opacity.
|
|
919
|
+
* @maxLength 19
|
|
920
|
+
*/
|
|
921
|
+
color?: string | null;
|
|
922
|
+
/** Divider line ending shape. */
|
|
923
|
+
lineCap?: LineCapWithLiterals;
|
|
924
|
+
/**
|
|
925
|
+
* Line thicknesses in pixels, ordered from first line to last line.
|
|
926
|
+
* @maxSize 10
|
|
927
|
+
*/
|
|
928
|
+
lineThickness?: number[];
|
|
929
|
+
/** Dash length in pixels for dashed dividers. */
|
|
930
|
+
dashLength?: number | null;
|
|
931
|
+
/** Gap between dashes or dots in pixels. */
|
|
932
|
+
dashGap?: number | null;
|
|
933
|
+
/** Gap between divider lines in pixels. */
|
|
934
|
+
lineGap?: number | null;
|
|
935
|
+
}
|
|
906
936
|
interface FileData {
|
|
907
937
|
/** Styling for the file's container. */
|
|
908
938
|
containerData?: PluginContainerData;
|
|
@@ -4724,7 +4754,10 @@ type ExperienceQuery = {
|
|
|
4724
4754
|
declare const utils: {
|
|
4725
4755
|
query: {
|
|
4726
4756
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4727
|
-
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4757
|
+
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>; /**
|
|
4758
|
+
* The start color as a hexademical value.
|
|
4759
|
+
* @maxLength 19
|
|
4760
|
+
*/
|
|
4728
4761
|
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4729
4762
|
};
|
|
4730
4763
|
search: {
|
|
@@ -5006,4 +5039,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
5006
5039
|
*/
|
|
5007
5040
|
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>>;
|
|
5008
5041
|
|
|
5009
|
-
export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicyValueOneOf as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Variant as a4, Position as a5, AspectRatio as a6, Resizing as a7, Placement as a8, Type as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, SearchDetailsMode as aG, PlacementType as aH, DayOfWeek as aI, ResolutionMethod as aJ, WebhookIdentityType as aK, type Table as aL, type TableCombination as aM, type SpecificTablesOptions as aN, type OnOptions as aO, type OnOptionsOptionsOneOf as aP, type StartDaysAndTimes as aQ, type WeeklyOptions as aR, type OneTimeOptions as aS, type Entry as aT, type EntryRecurrenceOptionsOneOf as aU, type PartySize as aV, type NoticePeriod as aW, type Approval as aX, type MaxGuests as aY, type OnlineReservationsBusinessSchedule as aZ, type PrivacyPolicy as a_, Alignment as aa, Layout as ab, AppType as ac, InitialExpandedItems as ad, Direction as ae, VerticalAlignment as af, NullValue as ag, ImageScalingScaling as ah, ImagePosition as ai, LayoutDataBackgroundType as aj, Origin as ak, BannerPosition as al, BackdropType as am, VerticalAlignmentAlignment as an, ResponsivenessBehaviour as ao, DesignTarget as ap, Scaling as aq, ImagePositionPosition as ar, CardDataBackgroundType as as, ListStyle as at, Indentation as au, SmartBlockDataType as av, ColumnSize as aw, PaymentPolicyType as ax, SortOrder as ay, SortType as az, type ExperienceSearch as b, type PollDesign as b$, type TermsAndConditions as b0, type TermsAndConditionsValueOneOf as b1, type CustomFieldDefinition as b2, type EmailMarketingCheckbox as b3, type RichContent as b4, type Node as b5, type NodeDataOneOf as b6, type NodeStyle as b7, type ButtonData as b8, type Gradient as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type ImageDataCrop as bM, type LinkPreviewData as bN, type LinkPreviewDataStyles as bO, type MapData as bP, type MapSettings as bQ, type ParagraphData as bR, type PollData as bS, type Permissions as bT, type Option as bU, type PollSettings as bV, type PollLayout as bW, type OptionLayout as bX, type BackgroundGradient as bY, type PollDesignBackground as bZ, type PollDesignBackgroundBackgroundOneOf as b_, type Stop as ba, type Border as bb, type Colors as bc, type Background as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type PaymentPolicyOptionsOneOf as c$, type OptionDesign as c0, type Poll as c1, type PollDataLayout as c2, type Design as c3, type TextData as c4, type Decoration as c5, type DecorationDataOneOf as c6, type AnchorData as c7, type ColorData as c8, type LinkData as c9, type AudioData as cA, type OrderedListData as cB, type BulletedListData as cC, type BlockquoteData as cD, type CaptionData as cE, type LayoutData as cF, type LayoutDataBackground as cG, type LayoutDataBackgroundImage as cH, type Banner as cI, type Backdrop as cJ, type LayoutCellData as cK, type ShapeData as cL, type ShapeDataStyles as cM, type CardData as cN, type CardDataBackground as cO, type BackgroundImage as cP, type TocData as cQ, type SmartBlockData as cR, type SmartBlockCellData as cS, type CheckboxListData as cT, type ListItemNodeData as cU, type Metadata as cV, type DocumentStyle as cW, type TextNodeStyle as cX, type PerGuestOptions as cY, type DisplayInfo as cZ, type PaymentPolicy as c_, type MentionData as ca, type FontSizeData as cb, type SpoilerData as cc, type FontFamilyData as cd, type SketchData as ce, type AppEmbedData as cf, type AppEmbedDataAppDataOneOf as cg, type BookingData as ch, type EventData as ci, type ButtonStyles as cj, type ImageStyles as ck, type RibbonStyles as cl, type CardStyles as cm, type PricingData as cn, type VideoData as co, type PlaybackOptions as cp, type EmbedData as cq, type Oembed as cr, type CollapsibleListData as cs, type TableData as ct, type Dimensions as cu, type TableCellData as cv, type CellStyle as cw, type BorderColors as cx, type BorderWidths as cy, type ListValue as cz, type BulkUpdateExperiencesApplicationErrors as d, type NestedValueAggregationResult as d$, type OnlineReservations as d0, type ReservationForm as d1, type TableManagement as d2, type TableManagementOptionsOneOf as d3, type Configuration as d4, type ExtendedFields as d5, type Tags as d6, type TagList as d7, type SeoSettings as d8, type SeoSchema as d9, type QueryExperiencesResponse as dA, type CursorPagingMetadata as dB, type Cursors as dC, type SearchExperiencesRequest as dD, type CursorSearch as dE, type CursorSearchPagingMethodOneOf as dF, type Aggregation as dG, type AggregationKindOneOf as dH, type RangeBucket as dI, type IncludeMissingValuesOptions as dJ, type ValueAggregation as dK, type ValueAggregationOptionsOneOf as dL, type RangeAggregation as dM, type ScalarAggregation as dN, type DateHistogramAggregation as dO, type NestedAggregationItem as dP, type NestedAggregationItemKindOneOf as dQ, type NestedAggregation as dR, type SearchDetails as dS, type AggregationData as dT, type ValueAggregationResult as dU, type RangeAggregationResult as dV, type NestedAggregationResults as dW, type NestedAggregationResultsResultOneOf as dX, type ValueResults as dY, type RangeResults as dZ, type AggregationResultsScalarResult as d_, type Keyword as da, type Tag as db, type Settings as dc, type InvalidateCache as dd, type InvalidateCacheGetByOneOf as de, type App as df, type Page as dg, type URI as dh, type File as di, type CustomTag as dj, type Pages as dk, type URIs as dl, type TagsModified as dm, type CreateExperienceRequest as dn, type CreateExperienceResponse as dp, type GetExperienceRequest as dq, type GetExperienceResponse as dr, type GetExperienceBySlugRequest as ds, type UpdateExperienceRequest as dt, type UpdateExperienceResponse as du, type QueryExperiencesRequest as dv, type CursorQuery as dw, type CursorQueryPagingMethodOneOf as dx, type Sorting as dy, type CursorPaging as dz, type BulkUpdateExperienceTagsOptions as e, type TableAvailabilityTypeWithLiterals as e$, type ValueResult as e0, type RangeResult as e1, type ScalarResult as e2, type NestedResultValue as e3, type NestedResultValueResultOneOf as e4, type Results as e5, type DateHistogramResult as e6, type GroupByValueResults as e7, type DateHistogramResults as e8, type NestedResults as e9, type SupportedLanguage as eA, type ConsentPolicy as eB, type Translation as eC, type ChangeContext as eD, type ChangeContextPayloadOneOf as eE, type PropertiesChange as eF, type SiteCreated as eG, type SiteCloned as eH, type Empty as eI, type DomainEvent as eJ, type DomainEventBodyOneOf as eK, type EntityCreatedEvent as eL, type RestoreInfo as eM, type EntityUpdatedEvent as eN, type EntityDeletedEvent as eO, type ActionEvent as eP, type MessageEnvelope as eQ, type IdentificationData as eR, type IdentificationDataIdOneOf as eS, type AccountInfo as eT, type BaseEventMetadata as eU, type EventMetadata as eV, type AccountInfoMetadata as eW, type ExperiencesQueryResult as eX, type ExperienceQuerySpec as eY, type ExperienceSearchSpec as eZ, utils as e_, type AggregationResults as ea, type AggregationResultsResultOneOf as eb, type BulkUpdateExperiencesRequest as ec, type ItemMetadata as ed, type ApplicationError as ee, type BulkUpdateExperiencesResult as ef, type BulkActionMetadata as eg, type BulkUpdateExperienceTagsRequest as eh, type BulkUpdateExperienceTagsResult as ei, type BulkUpdateExperienceTagsByFilterRequest as ej, type BulkArchiveExperiencesRequest as ek, type BulkArchiveExperiencesResult as el, type BulkUnarchiveExperiencesRequest as em, type BulkUnarchiveExperiencesResult as en, type SitePropertiesNotification as eo, type SitePropertiesEvent as ep, type Properties as eq, type Categories as er, type Locale as es, type Address as et, type AddressHint as eu, type GeoCoordinates as ev, type BusinessSchedule as ew, type TimePeriod as ex, type SpecialHourPeriod as ey, type Multilingual as ez, type BulkUpdateExperienceTagsResponse as f, type SortOrderWithLiterals as f$, type TableAssignmentTypeWithLiterals as f0, type TableManagementModeWithLiterals as f1, type UnitWithLiterals as f2, type ModeWithLiterals as f3, type StartDaysAndTimesDayOfWeekWithLiterals as f4, type RecurrenceWithLiterals as f5, type NodeTypeWithLiterals as f6, type BackgroundTypeWithLiterals as f7, type GradientTypeWithLiterals as f8, type WidthTypeWithLiterals as f9, type ResizingWithLiterals as fA, type PlacementWithLiterals as fB, type TypeWithLiterals as fC, type AlignmentWithLiterals as fD, type LayoutWithLiterals as fE, type AppTypeWithLiterals as fF, type InitialExpandedItemsWithLiterals as fG, type DirectionWithLiterals as fH, type VerticalAlignmentWithLiterals as fI, type NullValueWithLiterals as fJ, type ImageScalingScalingWithLiterals as fK, type ImagePositionWithLiterals as fL, type LayoutDataBackgroundTypeWithLiterals as fM, type OriginWithLiterals as fN, type BannerPositionWithLiterals as fO, type BackdropTypeWithLiterals as fP, type VerticalAlignmentAlignmentWithLiterals as fQ, type ResponsivenessBehaviourWithLiterals as fR, type DesignTargetWithLiterals as fS, type ScalingWithLiterals as fT, type ImagePositionPositionWithLiterals as fU, type CardDataBackgroundTypeWithLiterals as fV, type ListStyleWithLiterals as fW, type IndentationWithLiterals as fX, type SmartBlockDataTypeWithLiterals as fY, type ColumnSizeWithLiterals as fZ, type PaymentPolicyTypeWithLiterals as f_, type PluginContainerDataAlignmentWithLiterals as fa, type ButtonDataTypeWithLiterals as fb, type TargetWithLiterals as fc, type TextAlignmentWithLiterals as fd, type LineStyleWithLiterals as fe, type WidthWithLiterals as ff, type DividerDataAlignmentWithLiterals as fg, type ViewModeWithLiterals as fh, type LayoutTypeWithLiterals as fi, type OrientationWithLiterals as fj, type CropWithLiterals as fk, type ThumbnailsAlignmentWithLiterals as fl, type GIFTypeWithLiterals as fm, type SourceWithLiterals as fn, type StylesPositionWithLiterals as fo, type MapTypeWithLiterals as fp, type ViewRoleWithLiterals as fq, type VoteRoleWithLiterals as fr, type PollLayoutTypeWithLiterals as fs, type PollLayoutDirectionWithLiterals as ft, type PollDesignBackgroundTypeWithLiterals as fu, type DecorationTypeWithLiterals as fv, type FontTypeWithLiterals as fw, type VariantWithLiterals as fx, type PositionWithLiterals as fy, type AspectRatioWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type SortTypeWithLiterals as g0, type SortDirectionWithLiterals as g1, type MissingValuesWithLiterals as g2, type ScalarTypeWithLiterals as g3, type NestedAggregationTypeWithLiterals as g4, type IntervalWithLiterals as g5, type AggregationTypeWithLiterals as g6, type SearchDetailsModeWithLiterals as g7, type PlacementTypeWithLiterals as g8, type DayOfWeekWithLiterals as g9, type ResolutionMethodWithLiterals as ga, type WebhookIdentityTypeWithLiterals as gb, type CommonQueryWithEntityContext as gc, type CommonSearchWithEntityContext as gd, onExperienceCreated as ge, onExperienceTagsModified as gf, onExperienceUpdated as gg, createExperience as gh, getExperience as gi, getExperienceBySlug as gj, updateExperience as gk, queryExperiences as gl, bulkUpdateExperiences as gm, bulkUpdateExperienceTags as gn, bulkUpdateExperienceTagsByFilter as go, bulkArchiveExperiences as gp, bulkUnarchiveExperiences as gq, 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 };
|
|
5042
|
+
export { VoteRole as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, LineStyle as D, type Experience as E, Width as F, type GetExperienceBySlugResponse as G, DividerDataAlignment as H, LayoutType as I, Crop as J, ThumbnailsAlignment as K, LineCap as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, GIFType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, Source as X, StylesPosition as Y, MapType as Z, ViewRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicy as a$, PollLayoutType as a0, PollLayoutDirection as a1, PollDesignBackgroundType as a2, DecorationType as a3, FontType as a4, Variant as a5, Position as a6, AspectRatio as a7, Resizing as a8, Placement as a9, SortType as aA, SortDirection as aB, MissingValues as aC, ScalarType as aD, NestedAggregationType as aE, Interval as aF, AggregationType as aG, SearchDetailsMode as aH, PlacementType as aI, DayOfWeek as aJ, ResolutionMethod as aK, WebhookIdentityType as aL, type Table as aM, type TableCombination as aN, type SpecificTablesOptions as aO, type OnOptions as aP, type OnOptionsOptionsOneOf as aQ, type StartDaysAndTimes as aR, type WeeklyOptions as aS, type OneTimeOptions as aT, type Entry as aU, type EntryRecurrenceOptionsOneOf as aV, type PartySize as aW, type NoticePeriod as aX, type Approval as aY, type MaxGuests as aZ, type OnlineReservationsBusinessSchedule as a_, Type as aa, Alignment as ab, Layout as ac, AppType as ad, InitialExpandedItems as ae, Direction as af, VerticalAlignment as ag, NullValue as ah, ImageScalingScaling as ai, ImagePosition as aj, LayoutDataBackgroundType as ak, Origin as al, BannerPosition as am, BackdropType as an, VerticalAlignmentAlignment as ao, ResponsivenessBehaviour as ap, DesignTarget as aq, Scaling as ar, ImagePositionPosition as as, CardDataBackgroundType as at, ListStyle as au, Indentation as av, SmartBlockDataType as aw, ColumnSize as ax, PaymentPolicyType as ay, SortOrder as az, type ExperienceSearch as b, type PollDesignBackground as b$, type PrivacyPolicyValueOneOf as b0, type TermsAndConditions as b1, type TermsAndConditionsValueOneOf as b2, type CustomFieldDefinition as b3, type EmailMarketingCheckbox as b4, type RichContent as b5, type Node as b6, type NodeDataOneOf as b7, type NodeStyle as b8, type ButtonData as b9, type Item as bA, type ItemDataOneOf as bB, type GalleryOptions as bC, type GalleryOptionsLayout as bD, type ItemStyle as bE, type Thumbnails as bF, type GIFData as bG, type GIF as bH, type HeadingData as bI, type HTMLData as bJ, type HTMLDataDataOneOf as bK, type ImageData as bL, type StylesBorder as bM, type ImageDataStyles as bN, type ImageDataCrop as bO, type LinkPreviewData as bP, type LinkPreviewDataStyles as bQ, type MapData as bR, type MapSettings as bS, type ParagraphData as bT, type PollData as bU, type Permissions as bV, type Option as bW, type PollSettings as bX, type PollLayout as bY, type OptionLayout as bZ, type BackgroundGradient as b_, type Gradient as ba, type Stop as bb, type Border as bc, type Colors as bd, type Background as be, type PluginContainerData as bf, type PluginContainerDataWidth as bg, type PluginContainerDataWidthDataOneOf as bh, type Spoiler as bi, type Height as bj, type Styles as bk, type Link as bl, type LinkDataOneOf as bm, type Rel as bn, type CodeBlockData as bo, type TextStyle as bp, type DividerData as bq, type DividerDataStyles as br, type FileData as bs, type FileSource as bt, type FileSourceDataOneOf as bu, type PDFSettings as bv, type GalleryData as bw, type Media as bx, type Image as by, type Video as bz, type BulkUpdateExperiencesResponse as c, type DisplayInfo as c$, type PollDesignBackgroundBackgroundOneOf as c0, type PollDesign as c1, type OptionDesign as c2, type Poll as c3, type PollDataLayout as c4, type Design as c5, type TextData as c6, type Decoration as c7, type DecorationDataOneOf as c8, type AnchorData as c9, type BorderWidths as cA, type ListValue as cB, type AudioData as cC, type OrderedListData as cD, type BulletedListData as cE, type BlockquoteData as cF, type CaptionData as cG, type LayoutData as cH, type LayoutDataBackground as cI, type LayoutDataBackgroundImage as cJ, type Banner as cK, type Backdrop as cL, type LayoutCellData as cM, type ShapeData as cN, type ShapeDataStyles as cO, type CardData as cP, type CardDataBackground as cQ, type BackgroundImage as cR, type TocData as cS, type SmartBlockData as cT, type SmartBlockCellData as cU, type CheckboxListData as cV, type ListItemNodeData as cW, type Metadata as cX, type DocumentStyle as cY, type TextNodeStyle as cZ, type PerGuestOptions as c_, type ColorData as ca, type LinkData as cb, type MentionData as cc, type FontSizeData as cd, type SpoilerData as ce, type FontFamilyData as cf, type SketchData as cg, type AppEmbedData as ch, type AppEmbedDataAppDataOneOf as ci, type BookingData as cj, type EventData as ck, type ButtonStyles as cl, type ImageStyles as cm, type RibbonStyles as cn, type CardStyles as co, type PricingData as cp, type VideoData as cq, type PlaybackOptions as cr, type EmbedData as cs, type Oembed as ct, type CollapsibleListData as cu, type TableData as cv, type Dimensions as cw, type TableCellData as cx, type CellStyle as cy, type BorderColors as cz, type BulkUpdateExperiencesApplicationErrors as d, type RangeResults as d$, type PaymentPolicy as d0, type PaymentPolicyOptionsOneOf as d1, type OnlineReservations as d2, type ReservationForm as d3, type TableManagement as d4, type TableManagementOptionsOneOf as d5, type Configuration as d6, type ExtendedFields as d7, type Tags as d8, type TagList as d9, type Sorting as dA, type CursorPaging as dB, type QueryExperiencesResponse as dC, type CursorPagingMetadata as dD, type Cursors as dE, type SearchExperiencesRequest as dF, type CursorSearch as dG, type CursorSearchPagingMethodOneOf as dH, type Aggregation as dI, type AggregationKindOneOf as dJ, type RangeBucket as dK, type IncludeMissingValuesOptions as dL, type ValueAggregation as dM, type ValueAggregationOptionsOneOf as dN, type RangeAggregation as dO, type ScalarAggregation as dP, type DateHistogramAggregation as dQ, type NestedAggregationItem as dR, type NestedAggregationItemKindOneOf as dS, type NestedAggregation as dT, type SearchDetails as dU, type AggregationData as dV, type ValueAggregationResult as dW, type RangeAggregationResult as dX, type NestedAggregationResults as dY, type NestedAggregationResultsResultOneOf as dZ, type ValueResults as d_, type SeoSettings as da, type SeoSchema as db, type Keyword as dc, type Tag as dd, type Settings as de, type InvalidateCache as df, type InvalidateCacheGetByOneOf as dg, type App as dh, type Page as di, type URI as dj, type File as dk, type CustomTag as dl, type Pages as dm, type URIs as dn, type TagsModified as dp, type CreateExperienceRequest as dq, type CreateExperienceResponse as dr, type GetExperienceRequest as ds, type GetExperienceResponse as dt, type GetExperienceBySlugRequest as du, type UpdateExperienceRequest as dv, type UpdateExperienceResponse as dw, type QueryExperiencesRequest as dx, type CursorQuery as dy, type CursorQueryPagingMethodOneOf as dz, type BulkUpdateExperienceTagsOptions as e, type ExperienceSearchSpec as e$, type AggregationResultsScalarResult as e0, type NestedValueAggregationResult as e1, type ValueResult as e2, type RangeResult as e3, type ScalarResult as e4, type NestedResultValue as e5, type NestedResultValueResultOneOf as e6, type Results as e7, type DateHistogramResult as e8, type GroupByValueResults as e9, type SpecialHourPeriod as eA, type Multilingual as eB, type SupportedLanguage as eC, type ConsentPolicy as eD, type Translation as eE, type ChangeContext as eF, type ChangeContextPayloadOneOf as eG, type PropertiesChange as eH, type SiteCreated as eI, type SiteCloned as eJ, type Empty as eK, type DomainEvent as eL, type DomainEventBodyOneOf as eM, type EntityCreatedEvent as eN, type RestoreInfo as eO, type EntityUpdatedEvent as eP, type EntityDeletedEvent as eQ, type ActionEvent as eR, type MessageEnvelope as eS, type IdentificationData as eT, type IdentificationDataIdOneOf as eU, type AccountInfo as eV, type BaseEventMetadata as eW, type EventMetadata as eX, type AccountInfoMetadata as eY, type ExperiencesQueryResult as eZ, type ExperienceQuerySpec as e_, type DateHistogramResults as ea, type NestedResults as eb, type AggregationResults as ec, type AggregationResultsResultOneOf as ed, type BulkUpdateExperiencesRequest as ee, type ItemMetadata as ef, type ApplicationError as eg, type BulkUpdateExperiencesResult as eh, type BulkActionMetadata as ei, type BulkUpdateExperienceTagsRequest as ej, type BulkUpdateExperienceTagsResult as ek, type BulkUpdateExperienceTagsByFilterRequest as el, type BulkArchiveExperiencesRequest as em, type BulkArchiveExperiencesResult as en, type BulkUnarchiveExperiencesRequest as eo, type BulkUnarchiveExperiencesResult as ep, type SitePropertiesNotification as eq, type SitePropertiesEvent as er, type Properties as es, type Categories as et, type Locale as eu, type Address as ev, type AddressHint as ew, type GeoCoordinates as ex, type BusinessSchedule as ey, type TimePeriod as ez, type BulkUpdateExperienceTagsResponse as f, type SmartBlockDataTypeWithLiterals as f$, utils as f0, type TableAvailabilityTypeWithLiterals as f1, type TableAssignmentTypeWithLiterals as f2, type TableManagementModeWithLiterals as f3, type UnitWithLiterals as f4, type ModeWithLiterals as f5, type StartDaysAndTimesDayOfWeekWithLiterals as f6, type RecurrenceWithLiterals as f7, type NodeTypeWithLiterals as f8, type BackgroundTypeWithLiterals as f9, type VariantWithLiterals as fA, type PositionWithLiterals as fB, type AspectRatioWithLiterals as fC, type ResizingWithLiterals as fD, type PlacementWithLiterals as fE, type TypeWithLiterals as fF, type AlignmentWithLiterals as fG, type LayoutWithLiterals as fH, type AppTypeWithLiterals as fI, type InitialExpandedItemsWithLiterals as fJ, type DirectionWithLiterals as fK, type VerticalAlignmentWithLiterals as fL, type NullValueWithLiterals as fM, type ImageScalingScalingWithLiterals as fN, type ImagePositionWithLiterals as fO, type LayoutDataBackgroundTypeWithLiterals as fP, type OriginWithLiterals as fQ, type BannerPositionWithLiterals as fR, type BackdropTypeWithLiterals as fS, type VerticalAlignmentAlignmentWithLiterals as fT, type ResponsivenessBehaviourWithLiterals as fU, type DesignTargetWithLiterals as fV, type ScalingWithLiterals as fW, type ImagePositionPositionWithLiterals as fX, type CardDataBackgroundTypeWithLiterals as fY, type ListStyleWithLiterals as fZ, type IndentationWithLiterals as f_, type GradientTypeWithLiterals as fa, type WidthTypeWithLiterals as fb, type PluginContainerDataAlignmentWithLiterals as fc, type ButtonDataTypeWithLiterals as fd, type TargetWithLiterals as fe, type TextAlignmentWithLiterals as ff, type LineCapWithLiterals as fg, type LineStyleWithLiterals as fh, type WidthWithLiterals as fi, type DividerDataAlignmentWithLiterals as fj, type ViewModeWithLiterals as fk, type LayoutTypeWithLiterals as fl, type OrientationWithLiterals as fm, type CropWithLiterals as fn, type ThumbnailsAlignmentWithLiterals as fo, type GIFTypeWithLiterals as fp, type SourceWithLiterals as fq, type StylesPositionWithLiterals as fr, type MapTypeWithLiterals as fs, type ViewRoleWithLiterals as ft, type VoteRoleWithLiterals as fu, type PollLayoutTypeWithLiterals as fv, type PollLayoutDirectionWithLiterals as fw, type PollDesignBackgroundTypeWithLiterals as fx, type DecorationTypeWithLiterals as fy, type FontTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type ColumnSizeWithLiterals as g0, type PaymentPolicyTypeWithLiterals as g1, type SortOrderWithLiterals as g2, type SortTypeWithLiterals as g3, type SortDirectionWithLiterals as g4, type MissingValuesWithLiterals as g5, type ScalarTypeWithLiterals as g6, type NestedAggregationTypeWithLiterals as g7, type IntervalWithLiterals as g8, type AggregationTypeWithLiterals as g9, type SearchDetailsModeWithLiterals as ga, type PlacementTypeWithLiterals as gb, type DayOfWeekWithLiterals as gc, type ResolutionMethodWithLiterals as gd, type WebhookIdentityTypeWithLiterals as ge, type CommonQueryWithEntityContext as gf, type CommonSearchWithEntityContext as gg, onExperienceCreated as gh, onExperienceTagsModified as gi, onExperienceUpdated as gj, createExperience as gk, getExperience as gl, getExperienceBySlug as gm, updateExperience as gn, queryExperiences as go, bulkUpdateExperiences as gp, bulkUpdateExperienceTags as gq, bulkUpdateExperienceTagsByFilter as gr, bulkArchiveExperiences as gs, bulkUnarchiveExperiences as gt, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
|
@@ -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 { eT as AccountInfo, eW as AccountInfoMetadata, eP as ActionEvent, et as Address, eu as AddressHint, dG as Aggregation, dT as AggregationData, dH as AggregationKindOneOf, ea as AggregationResults, eb as AggregationResultsResultOneOf, d_ as AggregationResultsScalarResult, aF as AggregationType, g6 as AggregationTypeWithLiterals, aa as Alignment, fD as AlignmentWithLiterals, c7 as AnchorData, df as App, cf as AppEmbedData, cg as AppEmbedDataAppDataOneOf, ac as AppType, fF as AppTypeWithLiterals, ee as ApplicationError, aX as Approval, a6 as AspectRatio, fz as AspectRatioWithLiterals, cA as AudioData, cJ as Backdrop, am as BackdropType, fP as BackdropTypeWithLiterals, bd as Background, bY as BackgroundGradient, cP as BackgroundImage, x as BackgroundType, f7 as BackgroundTypeWithLiterals, cI as Banner, al as BannerPosition, fO as BannerPositionWithLiterals, eU as BaseEventMetadata, cD as BlockquoteData, ch as BookingData, bb as Border, cx as BorderColors, cy as BorderWidths, eg as BulkActionMetadata, ek as BulkArchiveExperiencesRequest, el as BulkArchiveExperiencesResult, em as BulkUnarchiveExperiencesRequest, en as BulkUnarchiveExperiencesResult, ej as BulkUpdateExperienceTagsByFilterRequest, eh as BulkUpdateExperienceTagsRequest, ei as BulkUpdateExperienceTagsResult, ec as BulkUpdateExperiencesRequest, ef as BulkUpdateExperiencesResult, cC as BulletedListData, ew as BusinessSchedule, b8 as ButtonData, z as ButtonDataType, fb as ButtonDataTypeWithLiterals, cj as ButtonStyles, cE as CaptionData, cN as CardData, cO as CardDataBackground, as as CardDataBackgroundType, fV as CardDataBackgroundTypeWithLiterals, cm as CardStyles, er as Categories, cw as CellStyle, eD as ChangeContext, eE as ChangeContextPayloadOneOf, cT as CheckboxListData, bn as CodeBlockData, cs as CollapsibleListData, c8 as ColorData, bc as Colors, aw as ColumnSize, fZ as ColumnSizeWithLiterals, gc as CommonQueryWithEntityContext, gd as CommonSearchWithEntityContext, d4 as Configuration, eB as ConsentPolicy, dn as CreateExperienceRequest, dp as CreateExperienceResponse, I as Crop, fk as CropWithLiterals, dz as CursorPaging, dB as CursorPagingMetadata, dw as CursorQuery, dx as CursorQueryPagingMethodOneOf, dE as CursorSearch, dF as CursorSearchPagingMethodOneOf, dC as Cursors, b2 as CustomFieldDefinition, dj as CustomTag, dO as DateHistogramAggregation, e6 as DateHistogramResult, e8 as DateHistogramResults, aI as DayOfWeek, g9 as DayOfWeekWithLiterals, c5 as Decoration, c6 as DecorationDataOneOf, a2 as DecorationType, fv as DecorationTypeWithLiterals, c3 as Design, ap as DesignTarget, fS as DesignTargetWithLiterals, cu as Dimensions, ae as Direction, fH as DirectionWithLiterals, cZ as DisplayInfo, bp as DividerData, F as DividerDataAlignment, fg as DividerDataAlignmentWithLiterals, cW as DocumentStyle, eJ as DomainEvent, eK as DomainEventBodyOneOf, b3 as EmailMarketingCheckbox, cq as EmbedData, eI as Empty, eL as EntityCreatedEvent, eO as EntityDeletedEvent, eN as EntityUpdatedEvent, aT as Entry, aU as EntryRecurrenceOptionsOneOf, ci as EventData, eV as EventMetadata, eY as ExperienceQuerySpec, eZ as ExperienceSearchSpec, eX as ExperiencesQueryResult, d5 as ExtendedFields, di as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, cd as FontFamilyData, cb as FontSizeData, a3 as FontType, fw as FontTypeWithLiterals, bF as GIF, bE as GIFData, K as GIFType, fm as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, ev as GeoCoordinates, ds as GetExperienceBySlugRequest, dq as GetExperienceRequest, dr as GetExperienceResponse, b9 as Gradient, y as GradientType, f8 as GradientTypeWithLiterals, e7 as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eR as IdentificationData, eS as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bM as ImageDataCrop, bL as ImageDataStyles, ai as ImagePosition, ar as ImagePositionPosition, fU as ImagePositionPositionWithLiterals, fL as ImagePositionWithLiterals, ah as ImageScalingScaling, fK as ImageScalingScalingWithLiterals, ck as ImageStyles, dJ as IncludeMissingValuesOptions, au as Indentation, fX as IndentationWithLiterals, ad as InitialExpandedItems, fG as InitialExpandedItemsWithLiterals, aE as Interval, g5 as IntervalWithLiterals, dd as InvalidateCache, de as InvalidateCacheGetByOneOf, by as Item, bz as ItemDataOneOf, ed as ItemMetadata, bC as ItemStyle, da as Keyword, ab as Layout, cK as LayoutCellData, cF as LayoutData, cG as LayoutDataBackground, cH as LayoutDataBackgroundImage, aj as LayoutDataBackgroundType, fM as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, fi as LayoutTypeWithLiterals, fE as LayoutWithLiterals, L as LineStyle, fe as LineStyleWithLiterals, bk as Link, c9 as LinkData, bl as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, cU as ListItemNodeData, at as ListStyle, fW as ListStyleWithLiterals, cz as ListValue, es as Locale, bP as MapData, bQ as MapSettings, Y as MapType, fp as MapTypeWithLiterals, aY as MaxGuests, bv as Media, ca as MentionData, eQ as MessageEnvelope, cV as Metadata, aB as MissingValues, g2 as MissingValuesWithLiterals, v as Mode, f3 as ModeWithLiterals, ez as Multilingual, dR as NestedAggregation, dP as NestedAggregationItem, dQ as NestedAggregationItemKindOneOf, dW as NestedAggregationResults, dX as NestedAggregationResultsResultOneOf, aD as NestedAggregationType, g4 as NestedAggregationTypeWithLiterals, e3 as NestedResultValue, e4 as NestedResultValueResultOneOf, e9 as NestedResults, d$ as NestedValueAggregationResult, b5 as Node, b6 as NodeDataOneOf, b7 as NodeStyle, N as NodeType, f6 as NodeTypeWithLiterals, aW as NoticePeriod, ag as NullValue, fJ as NullValueWithLiterals, cr as Oembed, aO as OnOptions, aP as OnOptionsOptionsOneOf, aS as OneTimeOptions, d0 as OnlineReservations, aZ as OnlineReservationsBusinessSchedule, bU as Option, c0 as OptionDesign, bX as OptionLayout, cB as OrderedListData, O as Orientation, fj as OrientationWithLiterals, ak as Origin, fN as OriginWithLiterals, bt as PDFSettings, dg as Page, dk as Pages, bR as ParagraphData, aV as PartySize, c_ as PaymentPolicy, c$ as PaymentPolicyOptionsOneOf, ax as PaymentPolicyType, f_ as PaymentPolicyTypeWithLiterals, cY as PerGuestOptions, bT as Permissions, a8 as Placement, aH as PlacementType, g8 as PlacementTypeWithLiterals, fB as PlacementWithLiterals, cp as PlaybackOptions, be as PluginContainerData, P as PluginContainerDataAlignment, fa as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c1 as Poll, bS as PollData, c2 as PollDataLayout, b$ as PollDesign, bZ as PollDesignBackground, b_ as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, fu as PollDesignBackgroundTypeWithLiterals, bW as PollLayout, a0 as PollLayoutDirection, ft as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fs as PollLayoutTypeWithLiterals, bV as PollSettings, a5 as Position, fy as PositionWithLiterals, cn as PricingData, a_ as PrivacyPolicy, a$ as PrivacyPolicyValueOneOf, eq as Properties, eF as PropertiesChange, dv as QueryExperiencesRequest, dA as QueryExperiencesResponse, dM as RangeAggregation, dV as RangeAggregationResult, dI as RangeBucket, e1 as RangeResult, dZ as RangeResults, R as Recurrence, f5 as RecurrenceWithLiterals, bm as Rel, d1 as ReservationForm, a7 as Resizing, fA as ResizingWithLiterals, aJ as ResolutionMethod, ga as ResolutionMethodWithLiterals, ao as ResponsivenessBehaviour, fR as ResponsivenessBehaviourWithLiterals, eM as RestoreInfo, e5 as Results, cl as RibbonStyles, b4 as RichContent, dN as ScalarAggregation, e2 as ScalarResult, aC as ScalarType, g3 as ScalarTypeWithLiterals, aq as Scaling, fT as ScalingWithLiterals, dS as SearchDetails, aG as SearchDetailsMode, g7 as SearchDetailsModeWithLiterals, dD as SearchExperiencesRequest, d9 as SeoSchema, d8 as SeoSettings, dc as Settings, cL as ShapeData, cM as ShapeDataStyles, eH as SiteCloned, eG as SiteCreated, ep as SitePropertiesEvent, eo as SitePropertiesNotification, ce as SketchData, cS as SmartBlockCellData, cR as SmartBlockData, av as SmartBlockDataType, fY as SmartBlockDataTypeWithLiterals, aA as SortDirection, g1 as SortDirectionWithLiterals, ay as SortOrder, f$ as SortOrderWithLiterals, az as SortType, g0 as SortTypeWithLiterals, dy as Sorting, Q as Source, fn as SourceWithLiterals, ey as SpecialHourPeriod, aN as SpecificTablesOptions, bh as Spoiler, cc as SpoilerData, aQ as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f4 as StartDaysAndTimesDayOfWeekWithLiterals, ba as Stop, bj as Styles, bK as StylesBorder, X as StylesPosition, fo as StylesPositionWithLiterals, eA as SupportedLanguage, aL as Table, r as TableAssignmentType, f0 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, e$ as TableAvailabilityTypeWithLiterals, cv as TableCellData, aM as TableCombination, ct as TableData, d2 as TableManagement, s as TableManagementMode, f1 as TableManagementModeWithLiterals, d3 as TableManagementOptionsOneOf, db as Tag, d7 as TagList, d6 as Tags, dm as TagsModified, A as Target, fc as TargetWithLiterals, b0 as TermsAndConditions, b1 as TermsAndConditionsValueOneOf, C as TextAlignment, fd as TextAlignmentWithLiterals, c4 as TextData, cX as TextNodeStyle, bo as TextStyle, bD as Thumbnails, J as ThumbnailsAlignment, fl as ThumbnailsAlignmentWithLiterals, ex as TimePeriod, cQ as TocData, eC as Translation, a9 as Type, fC as TypeWithLiterals, dh as URI, dl as URIs, u as Unit, f2 as UnitWithLiterals, dt as UpdateExperienceRequest, du as UpdateExperienceResponse, dK as ValueAggregation, dL as ValueAggregationOptionsOneOf, dU as ValueAggregationResult, e0 as ValueResult, dY as ValueResults, a4 as Variant, fx as VariantWithLiterals, af as VerticalAlignment, an as VerticalAlignmentAlignment, fQ as VerticalAlignmentAlignmentWithLiterals, fI as VerticalAlignmentWithLiterals, bx as Video, co as VideoData, V as ViewMode, fh as ViewModeWithLiterals, Z as ViewRole, fq as ViewRoleWithLiterals, _ as VoteRole, fr as VoteRoleWithLiterals, aK as WebhookIdentityType, gb as WebhookIdentityTypeWithLiterals, aR as WeeklyOptions, D as Width, W as WidthType, f9 as WidthTypeWithLiterals, ff as WidthWithLiterals, e_ as utils } from './table-reservations-v1-experience-experiences.universal-_0Jh_yem.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-UuAl1xmZ.mjs';
|
|
3
|
+
export { eV as AccountInfo, eY as AccountInfoMetadata, eR as ActionEvent, ev as Address, ew as AddressHint, dI as Aggregation, dV as AggregationData, dJ as AggregationKindOneOf, ec as AggregationResults, ed as AggregationResultsResultOneOf, e0 as AggregationResultsScalarResult, aG as AggregationType, g9 as AggregationTypeWithLiterals, ab as Alignment, fG as AlignmentWithLiterals, c9 as AnchorData, dh as App, ch as AppEmbedData, ci as AppEmbedDataAppDataOneOf, ad as AppType, fI as AppTypeWithLiterals, eg as ApplicationError, aY as Approval, a7 as AspectRatio, fC as AspectRatioWithLiterals, cC as AudioData, cL as Backdrop, an as BackdropType, fS as BackdropTypeWithLiterals, be as Background, b_ as BackgroundGradient, cR as BackgroundImage, x as BackgroundType, f9 as BackgroundTypeWithLiterals, cK as Banner, am as BannerPosition, fR as BannerPositionWithLiterals, eW as BaseEventMetadata, cF as BlockquoteData, cj as BookingData, bc as Border, cz as BorderColors, cA as BorderWidths, ei as BulkActionMetadata, em as BulkArchiveExperiencesRequest, en as BulkArchiveExperiencesResult, eo as BulkUnarchiveExperiencesRequest, ep as BulkUnarchiveExperiencesResult, el as BulkUpdateExperienceTagsByFilterRequest, ej as BulkUpdateExperienceTagsRequest, ek as BulkUpdateExperienceTagsResult, ee as BulkUpdateExperiencesRequest, eh as BulkUpdateExperiencesResult, cE as BulletedListData, ey as BusinessSchedule, b9 as ButtonData, z as ButtonDataType, fd as ButtonDataTypeWithLiterals, cl as ButtonStyles, cG as CaptionData, cP as CardData, cQ as CardDataBackground, at as CardDataBackgroundType, fY as CardDataBackgroundTypeWithLiterals, co as CardStyles, et as Categories, cy as CellStyle, eF as ChangeContext, eG as ChangeContextPayloadOneOf, cV as CheckboxListData, bo as CodeBlockData, cu as CollapsibleListData, ca as ColorData, bd as Colors, ax as ColumnSize, g0 as ColumnSizeWithLiterals, gf as CommonQueryWithEntityContext, gg as CommonSearchWithEntityContext, d6 as Configuration, eD as ConsentPolicy, dq as CreateExperienceRequest, dr as CreateExperienceResponse, J as Crop, fn as CropWithLiterals, dB as CursorPaging, dD as CursorPagingMetadata, dy as CursorQuery, dz as CursorQueryPagingMethodOneOf, dG as CursorSearch, dH as CursorSearchPagingMethodOneOf, dE as Cursors, b3 as CustomFieldDefinition, dl as CustomTag, dQ as DateHistogramAggregation, e8 as DateHistogramResult, ea as DateHistogramResults, aJ as DayOfWeek, gc as DayOfWeekWithLiterals, c7 as Decoration, c8 as DecorationDataOneOf, a3 as DecorationType, fy as DecorationTypeWithLiterals, c5 as Design, aq as DesignTarget, fV as DesignTargetWithLiterals, cw as Dimensions, af as Direction, fK as DirectionWithLiterals, c$ as DisplayInfo, bq as DividerData, H as DividerDataAlignment, fj as DividerDataAlignmentWithLiterals, br as DividerDataStyles, cY as DocumentStyle, eL as DomainEvent, eM as DomainEventBodyOneOf, b4 as EmailMarketingCheckbox, cs as EmbedData, eK as Empty, eN as EntityCreatedEvent, eQ as EntityDeletedEvent, eP as EntityUpdatedEvent, aU as Entry, aV as EntryRecurrenceOptionsOneOf, ck as EventData, eX as EventMetadata, e_ as ExperienceQuerySpec, e$ as ExperienceSearchSpec, eZ as ExperiencesQueryResult, d7 as ExtendedFields, dk as File, bs as FileData, bt as FileSource, bu as FileSourceDataOneOf, cf as FontFamilyData, cd as FontSizeData, a4 as FontType, fz as FontTypeWithLiterals, bH as GIF, bG as GIFData, Q as GIFType, fp as GIFTypeWithLiterals, bw as GalleryData, bC as GalleryOptions, bD as GalleryOptionsLayout, ex as GeoCoordinates, du as GetExperienceBySlugRequest, ds as GetExperienceRequest, dt as GetExperienceResponse, ba as Gradient, y as GradientType, fa as GradientTypeWithLiterals, e9 as GroupByValueResults, bJ as HTMLData, bK as HTMLDataDataOneOf, bI as HeadingData, bj as Height, eT as IdentificationData, eU as IdentificationDataIdOneOf, by as Image, bL as ImageData, bO as ImageDataCrop, bN as ImageDataStyles, aj as ImagePosition, as as ImagePositionPosition, fX as ImagePositionPositionWithLiterals, fO as ImagePositionWithLiterals, ai as ImageScalingScaling, fN as ImageScalingScalingWithLiterals, cm as ImageStyles, dL as IncludeMissingValuesOptions, av as Indentation, f_ as IndentationWithLiterals, ae as InitialExpandedItems, fJ as InitialExpandedItemsWithLiterals, aF as Interval, g8 as IntervalWithLiterals, df as InvalidateCache, dg as InvalidateCacheGetByOneOf, bA as Item, bB as ItemDataOneOf, ef as ItemMetadata, bE as ItemStyle, dc as Keyword, ac as Layout, cM as LayoutCellData, cH as LayoutData, cI as LayoutDataBackground, cJ as LayoutDataBackgroundImage, ak as LayoutDataBackgroundType, fP as LayoutDataBackgroundTypeWithLiterals, I as LayoutType, fl as LayoutTypeWithLiterals, fH as LayoutWithLiterals, L as LineCap, fg as LineCapWithLiterals, D as LineStyle, fh as LineStyleWithLiterals, bl as Link, cb as LinkData, bm as LinkDataOneOf, bP as LinkPreviewData, bQ as LinkPreviewDataStyles, cW as ListItemNodeData, au as ListStyle, fZ as ListStyleWithLiterals, cB as ListValue, eu as Locale, bR as MapData, bS as MapSettings, Z as MapType, fs as MapTypeWithLiterals, aZ as MaxGuests, bx as Media, cc as MentionData, eS as MessageEnvelope, cX as Metadata, aC as MissingValues, g5 as MissingValuesWithLiterals, v as Mode, f5 as ModeWithLiterals, eB as Multilingual, dT as NestedAggregation, dR as NestedAggregationItem, dS as NestedAggregationItemKindOneOf, dY as NestedAggregationResults, dZ as NestedAggregationResultsResultOneOf, aE as NestedAggregationType, g7 as NestedAggregationTypeWithLiterals, e5 as NestedResultValue, e6 as NestedResultValueResultOneOf, eb as NestedResults, e1 as NestedValueAggregationResult, b6 as Node, b7 as NodeDataOneOf, b8 as NodeStyle, N as NodeType, f8 as NodeTypeWithLiterals, aX as NoticePeriod, ah as NullValue, fM as NullValueWithLiterals, ct as Oembed, aP as OnOptions, aQ as OnOptionsOptionsOneOf, aT as OneTimeOptions, d2 as OnlineReservations, a_ as OnlineReservationsBusinessSchedule, bW as Option, c2 as OptionDesign, bZ as OptionLayout, cD as OrderedListData, O as Orientation, fm as OrientationWithLiterals, al as Origin, fQ as OriginWithLiterals, bv as PDFSettings, di as Page, dm as Pages, bT as ParagraphData, aW as PartySize, d0 as PaymentPolicy, d1 as PaymentPolicyOptionsOneOf, ay as PaymentPolicyType, g1 as PaymentPolicyTypeWithLiterals, c_ as PerGuestOptions, bV as Permissions, a9 as Placement, aI as PlacementType, gb as PlacementTypeWithLiterals, fE as PlacementWithLiterals, cr as PlaybackOptions, bf as PluginContainerData, P as PluginContainerDataAlignment, fc as PluginContainerDataAlignmentWithLiterals, bg as PluginContainerDataWidth, bh as PluginContainerDataWidthDataOneOf, c3 as Poll, bU as PollData, c4 as PollDataLayout, c1 as PollDesign, b$ as PollDesignBackground, c0 as PollDesignBackgroundBackgroundOneOf, a2 as PollDesignBackgroundType, fx as PollDesignBackgroundTypeWithLiterals, bY as PollLayout, a1 as PollLayoutDirection, fw as PollLayoutDirectionWithLiterals, a0 as PollLayoutType, fv as PollLayoutTypeWithLiterals, bX as PollSettings, a6 as Position, fB as PositionWithLiterals, cp as PricingData, a$ as PrivacyPolicy, b0 as PrivacyPolicyValueOneOf, es as Properties, eH as PropertiesChange, dx as QueryExperiencesRequest, dC as QueryExperiencesResponse, dO as RangeAggregation, dX as RangeAggregationResult, dK as RangeBucket, e3 as RangeResult, d$ as RangeResults, R as Recurrence, f7 as RecurrenceWithLiterals, bn as Rel, d3 as ReservationForm, a8 as Resizing, fD as ResizingWithLiterals, aK as ResolutionMethod, gd as ResolutionMethodWithLiterals, ap as ResponsivenessBehaviour, fU as ResponsivenessBehaviourWithLiterals, eO as RestoreInfo, e7 as Results, cn as RibbonStyles, b5 as RichContent, dP as ScalarAggregation, e4 as ScalarResult, aD as ScalarType, g6 as ScalarTypeWithLiterals, ar as Scaling, fW as ScalingWithLiterals, dU as SearchDetails, aH as SearchDetailsMode, ga as SearchDetailsModeWithLiterals, dF as SearchExperiencesRequest, db as SeoSchema, da as SeoSettings, de as Settings, cN as ShapeData, cO as ShapeDataStyles, eJ as SiteCloned, eI as SiteCreated, er as SitePropertiesEvent, eq as SitePropertiesNotification, cg as SketchData, cU as SmartBlockCellData, cT as SmartBlockData, aw as SmartBlockDataType, f$ as SmartBlockDataTypeWithLiterals, aB as SortDirection, g4 as SortDirectionWithLiterals, az as SortOrder, g2 as SortOrderWithLiterals, aA as SortType, g3 as SortTypeWithLiterals, dA as Sorting, X as Source, fq as SourceWithLiterals, eA as SpecialHourPeriod, aO as SpecificTablesOptions, bi as Spoiler, ce as SpoilerData, aR as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f6 as StartDaysAndTimesDayOfWeekWithLiterals, bb as Stop, bk as Styles, bM as StylesBorder, Y as StylesPosition, fr as StylesPositionWithLiterals, eC as SupportedLanguage, aM as Table, r as TableAssignmentType, f2 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, f1 as TableAvailabilityTypeWithLiterals, cx as TableCellData, aN as TableCombination, cv as TableData, d4 as TableManagement, s as TableManagementMode, f3 as TableManagementModeWithLiterals, d5 as TableManagementOptionsOneOf, dd as Tag, d9 as TagList, d8 as Tags, dp as TagsModified, A as Target, fe as TargetWithLiterals, b1 as TermsAndConditions, b2 as TermsAndConditionsValueOneOf, C as TextAlignment, ff as TextAlignmentWithLiterals, c6 as TextData, cZ as TextNodeStyle, bp as TextStyle, bF as Thumbnails, K as ThumbnailsAlignment, fo as ThumbnailsAlignmentWithLiterals, ez as TimePeriod, cS as TocData, eE as Translation, aa as Type, fF as TypeWithLiterals, dj as URI, dn as URIs, u as Unit, f4 as UnitWithLiterals, dv as UpdateExperienceRequest, dw as UpdateExperienceResponse, dM as ValueAggregation, dN as ValueAggregationOptionsOneOf, dW as ValueAggregationResult, e2 as ValueResult, d_ as ValueResults, a5 as Variant, fA as VariantWithLiterals, ag as VerticalAlignment, ao as VerticalAlignmentAlignment, fT as VerticalAlignmentAlignmentWithLiterals, fL as VerticalAlignmentWithLiterals, bz as Video, cq as VideoData, V as ViewMode, fk as ViewModeWithLiterals, _ as ViewRole, ft as ViewRoleWithLiterals, $ as VoteRole, fu as VoteRoleWithLiterals, aL as WebhookIdentityType, ge as WebhookIdentityTypeWithLiterals, aS as WeeklyOptions, F as Width, W as WidthType, fb as WidthTypeWithLiterals, fi as WidthWithLiterals, f0 as utils } from './table-reservations-v1-experience-experiences.universal-UuAl1xmZ.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
|
@@ -2250,6 +2250,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
2250
2250
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
2251
2251
|
return TextAlignment2;
|
|
2252
2252
|
})(TextAlignment || {});
|
|
2253
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
2254
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
2255
|
+
LineCap2["ROUND"] = "ROUND";
|
|
2256
|
+
return LineCap2;
|
|
2257
|
+
})(LineCap || {});
|
|
2253
2258
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
2254
2259
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
2255
2260
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -4151,6 +4156,7 @@ export {
|
|
|
4151
4156
|
Layout,
|
|
4152
4157
|
LayoutDataBackgroundType,
|
|
4153
4158
|
LayoutType,
|
|
4159
|
+
LineCap,
|
|
4154
4160
|
LineStyle,
|
|
4155
4161
|
ListStyle,
|
|
4156
4162
|
MapType,
|