@wix/auto_sdk_table-reservations_experiences 1.0.30 → 1.0.32
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 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +7 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +36 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.ts → table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.ts} +47 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +7 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +7 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +36 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.mts → table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.mts} +47 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +7 -1
- 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 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +36 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.ts → table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.ts} +47 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +7 -1
- 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 +7 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +36 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-zYIhPPT7.d.mts → table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.mts} +47 -4
- package/package.json +2 -2
|
@@ -2506,6 +2506,10 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
|
2506
2506
|
file?: File;
|
|
2507
2507
|
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2508
2508
|
customTag?: CustomTag;
|
|
2509
|
+
/** Invalidate by multiple page ids */
|
|
2510
|
+
pages?: Pages;
|
|
2511
|
+
/** Invalidate by multiple URI paths */
|
|
2512
|
+
uris?: URIs;
|
|
2509
2513
|
/**
|
|
2510
2514
|
* tell us why you're invalidating the cache. You don't need to add your app name
|
|
2511
2515
|
* @maxLength 256
|
|
@@ -2545,6 +2549,10 @@ interface InvalidateCacheGetByOneOf {
|
|
|
2545
2549
|
file?: File;
|
|
2546
2550
|
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2547
2551
|
customTag?: CustomTag;
|
|
2552
|
+
/** Invalidate by multiple page ids */
|
|
2553
|
+
pages?: Pages;
|
|
2554
|
+
/** Invalidate by multiple URI paths */
|
|
2555
|
+
uris?: URIs;
|
|
2548
2556
|
}
|
|
2549
2557
|
interface App {
|
|
2550
2558
|
/**
|
|
@@ -2608,6 +2616,32 @@ interface CustomTag {
|
|
|
2608
2616
|
*/
|
|
2609
2617
|
tag?: string;
|
|
2610
2618
|
}
|
|
2619
|
+
interface Pages {
|
|
2620
|
+
/**
|
|
2621
|
+
* the msid the pages are on
|
|
2622
|
+
* @format GUID
|
|
2623
|
+
*/
|
|
2624
|
+
metaSiteId?: string;
|
|
2625
|
+
/**
|
|
2626
|
+
* Invalidate by multiple Page IDs in a single message
|
|
2627
|
+
* @maxSize 100
|
|
2628
|
+
* @minLength 1
|
|
2629
|
+
*/
|
|
2630
|
+
pageIds?: string[];
|
|
2631
|
+
}
|
|
2632
|
+
interface URIs {
|
|
2633
|
+
/**
|
|
2634
|
+
* the msid the URIs are on
|
|
2635
|
+
* @format GUID
|
|
2636
|
+
*/
|
|
2637
|
+
metaSiteId?: string;
|
|
2638
|
+
/**
|
|
2639
|
+
* URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes
|
|
2640
|
+
* @maxSize 100
|
|
2641
|
+
* @minLength 1
|
|
2642
|
+
*/
|
|
2643
|
+
uriPaths?: string[];
|
|
2644
|
+
}
|
|
2611
2645
|
interface TagsModified {
|
|
2612
2646
|
/** Experience with updated tags. */
|
|
2613
2647
|
experience?: Experience;
|
|
@@ -4215,9 +4249,18 @@ type ExperienceQuery = {
|
|
|
4215
4249
|
}[];
|
|
4216
4250
|
};
|
|
4217
4251
|
declare const utils: {
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4252
|
+
query: {
|
|
4253
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4254
|
+
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4255
|
+
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>;
|
|
4256
|
+
};
|
|
4257
|
+
search: {
|
|
4258
|
+
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Experience, ExperienceSearchSpec, ExperienceSearch>;
|
|
4259
|
+
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>;
|
|
4260
|
+
Sort: _wix_sdk_types.SortFactory<ExperienceSearchSpec>;
|
|
4261
|
+
SearchParams: _wix_sdk_types.SearchParamsFactory<ExperienceSearchSpec>;
|
|
4262
|
+
Aggregation: _wix_sdk_types.AggregationFactory<ExperienceSearchSpec>;
|
|
4263
|
+
};
|
|
4221
4264
|
};
|
|
4222
4265
|
interface ExperienceSearchSpec extends SearchSpec {
|
|
4223
4266
|
searchable: [
|
|
@@ -4433,4 +4476,4 @@ interface BulkUpdateExperienceTagsByFilterOptions {
|
|
|
4433
4476
|
unassignTags?: Tags;
|
|
4434
4477
|
}
|
|
4435
4478
|
|
|
4436
|
-
export { Placement as $, MapType as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, ViewRole as F, type GetExperienceBySlugResponse as G, VoteRole as H, PollLayoutType as I, PollLayoutDirection as J, BackgroundType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, DecorationType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, FontType as X, Position as Y, AspectRatio as Z, Resizing as _, type UpdateExperienceApplicationErrors as a, type LinkDataOneOf as a$, Type as a0, Alignment as a1, Layout as a2, AppType as a3, InitialExpandedItems as a4, Direction as a5, VerticalAlignment as a6, NullValue as a7, Scaling as a8, ImagePosition as a9, type Entry as aA, type EntryRecurrenceOptionsOneOf as aB, type PartySize as aC, type NoticePeriod as aD, type Approval as aE, type MaxGuests as aF, type OnlineReservationsBusinessSchedule as aG, type PrivacyPolicy as aH, type PrivacyPolicyValueOneOf as aI, type TermsAndConditions as aJ, type TermsAndConditionsValueOneOf as aK, type CustomFieldDefinition as aL, type EmailMarketingCheckbox as aM, type RichContent as aN, type Node as aO, type NodeDataOneOf as aP, type NodeStyle as aQ, type ButtonData as aR, type Border as aS, type Colors as aT, type PluginContainerData as aU, type PluginContainerDataWidth as aV, type PluginContainerDataWidthDataOneOf as aW, type Spoiler as aX, type Height as aY, type Styles as aZ, type Link as a_, Origin as aa, VerticalAlignmentAlignment as ab, ResponsivenessBehaviour as ac, DesignTarget as ad, PaymentPolicyType as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, SearchDetailsMode as an, PlacementType as ao, DayOfWeek as ap, ResolutionMethod as aq, WebhookIdentityType as ar, type Table as as, type TableCombination as at, type SpecificTablesOptions as au, type OnOptions as av, type OnOptionsOptionsOneOf as aw, type StartDaysAndTimes as ax, type WeeklyOptions as ay, type OneTimeOptions as az, type ExperienceSearch as b, type PricingData as b$, type Rel as b0, type CodeBlockData as b1, type TextStyle as b2, type DividerData as b3, type FileData as b4, type FileSource as b5, type FileSourceDataOneOf as b6, type PDFSettings as b7, type GalleryData as b8, type Media as b9, type OptionLayout as bA, type Gradient as bB, type Background as bC, type BackgroundBackgroundOneOf as bD, type PollDesign as bE, type OptionDesign as bF, type Poll as bG, type PollDataLayout as bH, type Design as bI, type TextData as bJ, type Decoration as bK, type DecorationDataOneOf as bL, type AnchorData as bM, type ColorData as bN, type LinkData as bO, type MentionData as bP, type FontSizeData as bQ, type SpoilerData as bR, type FontFamilyData as bS, type AppEmbedData as bT, type AppEmbedDataAppDataOneOf as bU, type BookingData as bV, type EventData as bW, type ButtonStyles as bX, type ImageStyles as bY, type RibbonStyles as bZ, type CardStyles as b_, type Image as ba, type Video as bb, type Item as bc, type ItemDataOneOf as bd, type GalleryOptions as be, type GalleryOptionsLayout as bf, type ItemStyle as bg, type Thumbnails as bh, type GIFData as bi, type GIF as bj, type HeadingData as bk, type HTMLData as bl, type HTMLDataDataOneOf as bm, type ImageData as bn, type StylesBorder as bo, type ImageDataStyles as bp, type LinkPreviewData as bq, type LinkPreviewDataStyles as br, type MapData as bs, type MapSettings as bt, type ParagraphData as bu, type PollData as bv, type Permissions as bw, type Option as bx, type PollSettings as by, type PollLayout as bz, type BulkUpdateExperienceTagsResponse as c, type QueryExperiencesResponse as c$, type VideoData as c0, type PlaybackOptions as c1, type EmbedData as c2, type Oembed as c3, type CollapsibleListData as c4, type TableData as c5, type Dimensions as c6, type TableCellData as c7, type CellStyle as c8, type BorderColors as c9, type Tags as cA, type TagList as cB, type SeoSettings as cC, type SeoSchema as cD, type Keyword as cE, type Tag as cF, type Settings as cG, type InvalidateCache as cH, type InvalidateCacheGetByOneOf as cI, type App as cJ, type Page as cK, type URI as cL, type File as cM, type CustomTag as cN, type TagsModified as cO, type CreateExperienceRequest as cP, type CreateExperienceResponse as cQ, type GetExperienceRequest as cR, type GetExperienceResponse as cS, type GetExperienceBySlugRequest as cT, type UpdateExperienceRequest as cU, type UpdateExperienceResponse as cV, type QueryExperiencesRequest as cW, type CursorQuery as cX, type CursorQueryPagingMethodOneOf as cY, type Sorting as cZ, type CursorPaging as c_, 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 BackgroundImage as ci, type Banner as cj, type LayoutCellData as ck, type ShapeData as cl, type ShapeDataStyles as cm, type Metadata as cn, type DocumentStyle as co, type TextNodeStyle as cp, type PerGuestOptions as cq, type DisplayInfo as cr, type PaymentPolicy as cs, type PaymentPolicyOptionsOneOf as ct, type OnlineReservations as cu, type ReservationForm as cv, type TableManagement as cw, type TableManagementOptionsOneOf as cx, type Configuration as cy, type ExtendedFields as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type Multilingual as d$, type CursorPagingMetadata as d0, type Cursors as d1, type SearchExperiencesRequest as d2, type CursorSearch as d3, type CursorSearchPagingMethodOneOf as d4, type Aggregation as d5, type AggregationKindOneOf as d6, type RangeBucket as d7, type IncludeMissingValuesOptions as d8, type ValueAggregation as d9, type DateHistogramResults as dA, type NestedResults as dB, type AggregationResults as dC, type AggregationResultsResultOneOf as dD, type BulkUpdateExperienceTagsRequest as dE, type ItemMetadata as dF, type ApplicationError as dG, type BulkUpdateExperienceTagsResult as dH, type BulkActionMetadata as dI, type BulkUpdateExperienceTagsByFilterRequest as dJ, type BulkArchiveExperiencesRequest as dK, type BulkArchiveExperiencesResponse as dL, type BulkArchiveExperiencesResult as dM, type BulkUnarchiveExperiencesRequest as dN, type BulkUnarchiveExperiencesResponse as dO, type BulkUnarchiveExperiencesResult as dP, type SitePropertiesNotification as dQ, type SitePropertiesEvent as dR, type Properties as dS, type Categories as dT, type Locale as dU, type Address as dV, type AddressHint as dW, type GeoCoordinates as dX, type BusinessSchedule as dY, type TimePeriod as dZ, type SpecialHourPeriod as d_, type ValueAggregationOptionsOneOf as da, type RangeAggregation as db, type ScalarAggregation as dc, type DateHistogramAggregation as dd, type NestedAggregationItem as de, type NestedAggregationItemKindOneOf as df, type NestedAggregation as dg, type SearchDetails as dh, type AggregationData as di, type ValueAggregationResult as dj, type RangeAggregationResult as dk, type NestedAggregationResults as dl, type NestedAggregationResultsResultOneOf as dm, type ValueResults as dn, type RangeResults as dp, type AggregationResultsScalarResult as dq, type NestedValueAggregationResult as dr, type ValueResult as ds, type RangeResult as dt, type ScalarResult as du, type NestedResultValue as dv, type NestedResultValueResultOneOf as dw, type Results as dx, type DateHistogramResult as dy, type GroupByValueResults as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type TypeWithLiterals as e$, type SupportedLanguage as e0, type ConsentPolicy as e1, type Translation as e2, type ChangeContext as e3, type ChangeContextPayloadOneOf as e4, type PropertiesChange as e5, type SiteCreated as e6, type SiteCloned as e7, type Empty as e8, type DomainEvent as e9, type PluginContainerDataAlignmentWithLiterals as eA, type ButtonDataTypeWithLiterals as eB, type TargetWithLiterals as eC, type TextAlignmentWithLiterals as eD, type LineStyleWithLiterals as eE, type WidthWithLiterals as eF, type DividerDataAlignmentWithLiterals as eG, type ViewModeWithLiterals as eH, type LayoutTypeWithLiterals as eI, type OrientationWithLiterals as eJ, type CropWithLiterals as eK, type ThumbnailsAlignmentWithLiterals as eL, type GIFTypeWithLiterals as eM, type SourceWithLiterals as eN, type StylesPositionWithLiterals as eO, type MapTypeWithLiterals as eP, type ViewRoleWithLiterals as eQ, type VoteRoleWithLiterals as eR, type PollLayoutTypeWithLiterals as eS, type PollLayoutDirectionWithLiterals as eT, type BackgroundTypeWithLiterals as eU, type DecorationTypeWithLiterals as eV, type FontTypeWithLiterals as eW, type PositionWithLiterals as eX, type AspectRatioWithLiterals as eY, type ResizingWithLiterals as eZ, type PlacementWithLiterals as e_, type DomainEventBodyOneOf as ea, type EntityCreatedEvent as eb, type RestoreInfo as ec, type EntityUpdatedEvent as ed, type EntityDeletedEvent as ee, type ActionEvent as ef, type MessageEnvelope as eg, type IdentificationData as eh, type IdentificationDataIdOneOf as ei, type AccountInfo as ej, type BaseEventMetadata as ek, type EventMetadata as el, type AccountInfoMetadata as em, type ExperiencesQueryResult as en, type ExperienceQuerySpec as eo, type ExperienceSearchSpec as ep, utils as eq, type TableAvailabilityTypeWithLiterals as er, type TableAssignmentTypeWithLiterals as es, type TableManagementModeWithLiterals as et, type UnitWithLiterals as eu, type ModeWithLiterals as ev, type StartDaysAndTimesDayOfWeekWithLiterals as ew, type RecurrenceWithLiterals as ex, type NodeTypeWithLiterals as ey, type WidthTypeWithLiterals as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type AlignmentWithLiterals as f0, type LayoutWithLiterals as f1, type AppTypeWithLiterals as f2, type InitialExpandedItemsWithLiterals as f3, type DirectionWithLiterals as f4, type VerticalAlignmentWithLiterals as f5, type NullValueWithLiterals as f6, type ScalingWithLiterals as f7, type ImagePositionWithLiterals as f8, type OriginWithLiterals as f9, queryExperiences as fA, bulkUpdateExperienceTags as fB, bulkUpdateExperienceTagsByFilter as fC, type VerticalAlignmentAlignmentWithLiterals as fa, type ResponsivenessBehaviourWithLiterals as fb, type DesignTargetWithLiterals as fc, type PaymentPolicyTypeWithLiterals as fd, type SortOrderWithLiterals as fe, type SortTypeWithLiterals as ff, type SortDirectionWithLiterals as fg, type MissingValuesWithLiterals as fh, type ScalarTypeWithLiterals as fi, type NestedAggregationTypeWithLiterals as fj, type IntervalWithLiterals as fk, type AggregationTypeWithLiterals as fl, type SearchDetailsModeWithLiterals as fm, type PlacementTypeWithLiterals as fn, type DayOfWeekWithLiterals as fo, type ResolutionMethodWithLiterals as fp, type WebhookIdentityTypeWithLiterals as fq, type CommonQueryWithEntityContext as fr, type CommonSearchWithEntityContext as fs, onExperienceCreated as ft, onExperienceTagsModified as fu, onExperienceUpdated as fv, createExperience as fw, getExperience as fx, getExperienceBySlug as fy, updateExperience as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type ExperienceCreatedEnvelope as h, type ExperienceTagsModifiedEnvelope as i, type ExperienceUpdatedEnvelope as j, type ExperiencesQueryBuilder as k, type ExperienceQuery as l, TableAssignmentType as m, TableManagementMode as n, Unit as o, StartDaysAndTimesDayOfWeek as p, ButtonDataType as q, Target as r, TextAlignment as s, typedQueryExperiences as t, Width as u, LayoutType as v, ThumbnailsAlignment as w, GIFType as x, Source as y, StylesPosition as z };
|
|
4479
|
+
export { Placement as $, MapType as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, ViewRole as F, type GetExperienceBySlugResponse as G, VoteRole as H, PollLayoutType as I, PollLayoutDirection as J, BackgroundType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, DecorationType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, FontType as X, Position as Y, AspectRatio as Z, Resizing as _, type UpdateExperienceApplicationErrors as a, type LinkDataOneOf as a$, Type as a0, Alignment as a1, Layout as a2, AppType as a3, InitialExpandedItems as a4, Direction as a5, VerticalAlignment as a6, NullValue as a7, Scaling as a8, ImagePosition as a9, type Entry as aA, type EntryRecurrenceOptionsOneOf as aB, type PartySize as aC, type NoticePeriod as aD, type Approval as aE, type MaxGuests as aF, type OnlineReservationsBusinessSchedule as aG, type PrivacyPolicy as aH, type PrivacyPolicyValueOneOf as aI, type TermsAndConditions as aJ, type TermsAndConditionsValueOneOf as aK, type CustomFieldDefinition as aL, type EmailMarketingCheckbox as aM, type RichContent as aN, type Node as aO, type NodeDataOneOf as aP, type NodeStyle as aQ, type ButtonData as aR, type Border as aS, type Colors as aT, type PluginContainerData as aU, type PluginContainerDataWidth as aV, type PluginContainerDataWidthDataOneOf as aW, type Spoiler as aX, type Height as aY, type Styles as aZ, type Link as a_, Origin as aa, VerticalAlignmentAlignment as ab, ResponsivenessBehaviour as ac, DesignTarget as ad, PaymentPolicyType as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, SearchDetailsMode as an, PlacementType as ao, DayOfWeek as ap, ResolutionMethod as aq, WebhookIdentityType as ar, type Table as as, type TableCombination as at, type SpecificTablesOptions as au, type OnOptions as av, type OnOptionsOptionsOneOf as aw, type StartDaysAndTimes as ax, type WeeklyOptions as ay, type OneTimeOptions as az, type ExperienceSearch as b, type PricingData as b$, type Rel as b0, type CodeBlockData as b1, type TextStyle as b2, type DividerData as b3, type FileData as b4, type FileSource as b5, type FileSourceDataOneOf as b6, type PDFSettings as b7, type GalleryData as b8, type Media as b9, type OptionLayout as bA, type Gradient as bB, type Background as bC, type BackgroundBackgroundOneOf as bD, type PollDesign as bE, type OptionDesign as bF, type Poll as bG, type PollDataLayout as bH, type Design as bI, type TextData as bJ, type Decoration as bK, type DecorationDataOneOf as bL, type AnchorData as bM, type ColorData as bN, type LinkData as bO, type MentionData as bP, type FontSizeData as bQ, type SpoilerData as bR, type FontFamilyData as bS, type AppEmbedData as bT, type AppEmbedDataAppDataOneOf as bU, type BookingData as bV, type EventData as bW, type ButtonStyles as bX, type ImageStyles as bY, type RibbonStyles as bZ, type CardStyles as b_, type Image as ba, type Video as bb, type Item as bc, type ItemDataOneOf as bd, type GalleryOptions as be, type GalleryOptionsLayout as bf, type ItemStyle as bg, type Thumbnails as bh, type GIFData as bi, type GIF as bj, type HeadingData as bk, type HTMLData as bl, type HTMLDataDataOneOf as bm, type ImageData as bn, type StylesBorder as bo, type ImageDataStyles as bp, type LinkPreviewData as bq, type LinkPreviewDataStyles as br, type MapData as bs, type MapSettings as bt, type ParagraphData as bu, type PollData as bv, type Permissions as bw, type Option as bx, type PollSettings as by, type PollLayout as bz, type BulkUpdateExperienceTagsResponse as c, type Sorting as c$, type VideoData as c0, type PlaybackOptions as c1, type EmbedData as c2, type Oembed as c3, type CollapsibleListData as c4, type TableData as c5, type Dimensions as c6, type TableCellData as c7, type CellStyle as c8, type BorderColors as c9, type Tags as cA, type TagList as cB, type SeoSettings as cC, type SeoSchema as cD, type Keyword as cE, type Tag as cF, type Settings as cG, type InvalidateCache as cH, type InvalidateCacheGetByOneOf as cI, type App as cJ, type Page as cK, type URI as cL, type File as cM, type CustomTag as cN, type Pages as cO, type URIs as cP, type TagsModified as cQ, type CreateExperienceRequest as cR, type CreateExperienceResponse as cS, type GetExperienceRequest as cT, type GetExperienceResponse as cU, type GetExperienceBySlugRequest as cV, type UpdateExperienceRequest as cW, type UpdateExperienceResponse as cX, type QueryExperiencesRequest as cY, type CursorQuery as cZ, type CursorQueryPagingMethodOneOf as c_, 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 BackgroundImage as ci, type Banner as cj, type LayoutCellData as ck, type ShapeData as cl, type ShapeDataStyles as cm, type Metadata as cn, type DocumentStyle as co, type TextNodeStyle as cp, type PerGuestOptions as cq, type DisplayInfo as cr, type PaymentPolicy as cs, type PaymentPolicyOptionsOneOf as ct, type OnlineReservations as cu, type ReservationForm as cv, type TableManagement as cw, type TableManagementOptionsOneOf as cx, type Configuration as cy, type ExtendedFields as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type TimePeriod as d$, type CursorPaging as d0, type QueryExperiencesResponse as d1, type CursorPagingMetadata as d2, type Cursors as d3, type SearchExperiencesRequest as d4, type CursorSearch as d5, type CursorSearchPagingMethodOneOf as d6, type Aggregation as d7, type AggregationKindOneOf as d8, type RangeBucket as d9, type DateHistogramResult as dA, type GroupByValueResults as dB, type DateHistogramResults as dC, type NestedResults as dD, type AggregationResults as dE, type AggregationResultsResultOneOf as dF, type BulkUpdateExperienceTagsRequest as dG, type ItemMetadata as dH, type ApplicationError as dI, type BulkUpdateExperienceTagsResult as dJ, type BulkActionMetadata as dK, type BulkUpdateExperienceTagsByFilterRequest as dL, type BulkArchiveExperiencesRequest as dM, type BulkArchiveExperiencesResponse as dN, type BulkArchiveExperiencesResult as dO, type BulkUnarchiveExperiencesRequest as dP, type BulkUnarchiveExperiencesResponse as dQ, type BulkUnarchiveExperiencesResult as dR, type SitePropertiesNotification as dS, type SitePropertiesEvent as dT, type Properties as dU, type Categories as dV, type Locale as dW, type Address as dX, type AddressHint as dY, type GeoCoordinates as dZ, type BusinessSchedule as d_, type IncludeMissingValuesOptions as da, type ValueAggregation as db, type ValueAggregationOptionsOneOf as dc, type RangeAggregation as dd, type ScalarAggregation as de, type DateHistogramAggregation as df, type NestedAggregationItem as dg, type NestedAggregationItemKindOneOf as dh, type NestedAggregation as di, type SearchDetails as dj, type AggregationData as dk, type ValueAggregationResult as dl, type RangeAggregationResult as dm, type NestedAggregationResults as dn, type NestedAggregationResultsResultOneOf as dp, type ValueResults as dq, type RangeResults as dr, type AggregationResultsScalarResult as ds, type NestedValueAggregationResult as dt, type ValueResult as du, type RangeResult as dv, type ScalarResult as dw, type NestedResultValue as dx, type NestedResultValueResultOneOf as dy, type Results as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type ResizingWithLiterals as e$, type SpecialHourPeriod as e0, type Multilingual as e1, type SupportedLanguage as e2, type ConsentPolicy as e3, type Translation as e4, type ChangeContext as e5, type ChangeContextPayloadOneOf as e6, type PropertiesChange as e7, type SiteCreated as e8, type SiteCloned as e9, type NodeTypeWithLiterals as eA, type WidthTypeWithLiterals as eB, type PluginContainerDataAlignmentWithLiterals as eC, type ButtonDataTypeWithLiterals as eD, type TargetWithLiterals as eE, type TextAlignmentWithLiterals as eF, type LineStyleWithLiterals as eG, type WidthWithLiterals as eH, type DividerDataAlignmentWithLiterals as eI, type ViewModeWithLiterals as eJ, type LayoutTypeWithLiterals as eK, type OrientationWithLiterals as eL, type CropWithLiterals as eM, type ThumbnailsAlignmentWithLiterals as eN, type GIFTypeWithLiterals as eO, type SourceWithLiterals as eP, type StylesPositionWithLiterals as eQ, type MapTypeWithLiterals as eR, type ViewRoleWithLiterals as eS, type VoteRoleWithLiterals as eT, type PollLayoutTypeWithLiterals as eU, type PollLayoutDirectionWithLiterals as eV, type BackgroundTypeWithLiterals as eW, type DecorationTypeWithLiterals as eX, type FontTypeWithLiterals as eY, type PositionWithLiterals as eZ, type AspectRatioWithLiterals as e_, type Empty as ea, type DomainEvent as eb, type DomainEventBodyOneOf as ec, type EntityCreatedEvent as ed, type RestoreInfo as ee, type EntityUpdatedEvent as ef, type EntityDeletedEvent as eg, type ActionEvent as eh, type MessageEnvelope as ei, type IdentificationData as ej, type IdentificationDataIdOneOf as ek, type AccountInfo as el, type BaseEventMetadata as em, type EventMetadata as en, type AccountInfoMetadata as eo, type ExperiencesQueryResult as ep, type ExperienceQuerySpec as eq, type ExperienceSearchSpec as er, utils as es, type TableAvailabilityTypeWithLiterals as et, type TableAssignmentTypeWithLiterals as eu, type TableManagementModeWithLiterals as ev, type UnitWithLiterals as ew, type ModeWithLiterals as ex, type StartDaysAndTimesDayOfWeekWithLiterals as ey, type RecurrenceWithLiterals as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type PlacementWithLiterals as f0, type TypeWithLiterals as f1, type AlignmentWithLiterals as f2, type LayoutWithLiterals as f3, type AppTypeWithLiterals as f4, type InitialExpandedItemsWithLiterals as f5, type DirectionWithLiterals as f6, type VerticalAlignmentWithLiterals as f7, type NullValueWithLiterals as f8, type ScalingWithLiterals as f9, getExperienceBySlug as fA, updateExperience as fB, queryExperiences as fC, bulkUpdateExperienceTags as fD, bulkUpdateExperienceTagsByFilter as fE, type ImagePositionWithLiterals as fa, type OriginWithLiterals as fb, type VerticalAlignmentAlignmentWithLiterals as fc, type ResponsivenessBehaviourWithLiterals as fd, type DesignTargetWithLiterals as fe, type PaymentPolicyTypeWithLiterals as ff, type SortOrderWithLiterals as fg, type SortTypeWithLiterals as fh, type SortDirectionWithLiterals as fi, type MissingValuesWithLiterals as fj, type ScalarTypeWithLiterals as fk, type NestedAggregationTypeWithLiterals as fl, type IntervalWithLiterals as fm, type AggregationTypeWithLiterals as fn, type SearchDetailsModeWithLiterals as fo, type PlacementTypeWithLiterals as fp, type DayOfWeekWithLiterals as fq, type ResolutionMethodWithLiterals as fr, type WebhookIdentityTypeWithLiterals as fs, type CommonQueryWithEntityContext as ft, type CommonSearchWithEntityContext as fu, onExperienceCreated as fv, onExperienceTagsModified as fw, onExperienceUpdated as fx, createExperience as fy, getExperience as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type ExperienceCreatedEnvelope as h, type ExperienceTagsModifiedEnvelope as i, type ExperienceUpdatedEnvelope as j, type ExperiencesQueryBuilder as k, type ExperienceQuery as l, TableAssignmentType as m, TableManagementMode as n, Unit as o, StartDaysAndTimesDayOfWeek as p, ButtonDataType as q, Target as r, TextAlignment as s, typedQueryExperiences as t, Width as u, LayoutType as v, ThumbnailsAlignment as w, GIFType as x, Source as y, StylesPosition as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -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, B as BulkUpdateExperienceTagsOptions, c as BulkUpdateExperienceTagsResponse, d as BulkUpdateExperienceTagsApplicationErrors, e as BulkUpdateExperienceTagsByFilterOptions, f as BulkUpdateExperienceTagsByFilterResponse, g as BulkUpdateExperienceTagsByFilterApplicationErrors, h as ExperienceCreatedEnvelope, i as ExperienceTagsModifiedEnvelope, j as ExperienceUpdatedEnvelope, k as ExperiencesQueryBuilder, l as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, B as BulkUpdateExperienceTagsOptions, c as BulkUpdateExperienceTagsResponse, d as BulkUpdateExperienceTagsApplicationErrors, e as BulkUpdateExperienceTagsByFilterOptions, f as BulkUpdateExperienceTagsByFilterResponse, g as BulkUpdateExperienceTagsByFilterApplicationErrors, h as ExperienceCreatedEnvelope, i as ExperienceTagsModifiedEnvelope, j as ExperienceUpdatedEnvelope, k as ExperiencesQueryBuilder, l as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-CmEg4KfI.mjs';
|
|
3
|
+
export { el as AccountInfo, eo as AccountInfoMetadata, eh as ActionEvent, dX as Address, dY as AddressHint, d7 as Aggregation, dk as AggregationData, d8 as AggregationKindOneOf, dE as AggregationResults, dF as AggregationResultsResultOneOf, ds as AggregationResultsScalarResult, am as AggregationType, fn as AggregationTypeWithLiterals, a1 as Alignment, f2 as AlignmentWithLiterals, bM as AnchorData, cJ as App, bT as AppEmbedData, bU as AppEmbedDataAppDataOneOf, a3 as AppType, f4 as AppTypeWithLiterals, dI as ApplicationError, aE as Approval, Z as AspectRatio, e_ as AspectRatioWithLiterals, cc as AudioData, bC as Background, bD as BackgroundBackgroundOneOf, ci as BackgroundImage, K as BackgroundType, eW as BackgroundTypeWithLiterals, cj as Banner, em as BaseEventMetadata, cf as BlockquoteData, bV as BookingData, aS as Border, c9 as BorderColors, ca as BorderWidths, dK as BulkActionMetadata, dM as BulkArchiveExperiencesRequest, dN as BulkArchiveExperiencesResponse, dO as BulkArchiveExperiencesResult, dP as BulkUnarchiveExperiencesRequest, dQ as BulkUnarchiveExperiencesResponse, dR as BulkUnarchiveExperiencesResult, dL as BulkUpdateExperienceTagsByFilterRequest, dG as BulkUpdateExperienceTagsRequest, dJ as BulkUpdateExperienceTagsResult, ce as BulletedListData, d_ as BusinessSchedule, aR as ButtonData, q as ButtonDataType, eD as ButtonDataTypeWithLiterals, bX as ButtonStyles, cg as CaptionData, b_ as CardStyles, dV as Categories, c8 as CellStyle, e5 as ChangeContext, e6 as ChangeContextPayloadOneOf, b1 as CodeBlockData, c4 as CollapsibleListData, bN as ColorData, aT as Colors, ft as CommonQueryWithEntityContext, fu as CommonSearchWithEntityContext, cy as Configuration, e3 as ConsentPolicy, cR as CreateExperienceRequest, cS as CreateExperienceResponse, C as Crop, eM as CropWithLiterals, d0 as CursorPaging, d2 as CursorPagingMetadata, cZ as CursorQuery, c_ as CursorQueryPagingMethodOneOf, d5 as CursorSearch, d6 as CursorSearchPagingMethodOneOf, d3 as Cursors, aL as CustomFieldDefinition, cN as CustomTag, df as DateHistogramAggregation, dA as DateHistogramResult, dC as DateHistogramResults, ap as DayOfWeek, fq as DayOfWeekWithLiterals, bK as Decoration, bL as DecorationDataOneOf, Q as DecorationType, eX as DecorationTypeWithLiterals, bI as Design, ad as DesignTarget, fe as DesignTargetWithLiterals, c6 as Dimensions, a5 as Direction, f6 as DirectionWithLiterals, cr as DisplayInfo, b3 as DividerData, D as DividerDataAlignment, eI as DividerDataAlignmentWithLiterals, co as DocumentStyle, eb as DomainEvent, ec as DomainEventBodyOneOf, aM as EmailMarketingCheckbox, c2 as EmbedData, ea as Empty, ed as EntityCreatedEvent, eg as EntityDeletedEvent, ef as EntityUpdatedEvent, aA as Entry, aB as EntryRecurrenceOptionsOneOf, bW as EventData, en as EventMetadata, eq as ExperienceQuerySpec, er as ExperienceSearchSpec, ep as ExperiencesQueryResult, cz as ExtendedFields, cM as File, b4 as FileData, b5 as FileSource, b6 as FileSourceDataOneOf, bS as FontFamilyData, bQ as FontSizeData, X as FontType, eY as FontTypeWithLiterals, bj as GIF, bi as GIFData, x as GIFType, eO as GIFTypeWithLiterals, b8 as GalleryData, be as GalleryOptions, bf as GalleryOptionsLayout, dZ as GeoCoordinates, cV as GetExperienceBySlugRequest, cT as GetExperienceRequest, cU as GetExperienceResponse, bB as Gradient, dB as GroupByValueResults, bl as HTMLData, bm as HTMLDataDataOneOf, bk as HeadingData, aY as Height, ej as IdentificationData, ek as IdentificationDataIdOneOf, ba as Image, bn as ImageData, bp as ImageDataStyles, a9 as ImagePosition, fa as ImagePositionWithLiterals, bY as ImageStyles, da as IncludeMissingValuesOptions, a4 as InitialExpandedItems, f5 as InitialExpandedItemsWithLiterals, al as Interval, fm as IntervalWithLiterals, cH as InvalidateCache, cI as InvalidateCacheGetByOneOf, bc as Item, bd as ItemDataOneOf, dH as ItemMetadata, bg as ItemStyle, cE as Keyword, a2 as Layout, ck as LayoutCellData, ch as LayoutData, v as LayoutType, eK as LayoutTypeWithLiterals, f3 as LayoutWithLiterals, L as LineStyle, eG as LineStyleWithLiterals, a_ as Link, bO as LinkData, a$ as LinkDataOneOf, bq as LinkPreviewData, br as LinkPreviewDataStyles, cb as ListValue, dW as Locale, bs as MapData, bt as MapSettings, A as MapType, eR as MapTypeWithLiterals, aF as MaxGuests, b9 as Media, bP as MentionData, ei as MessageEnvelope, cn as Metadata, ai as MissingValues, fj as MissingValuesWithLiterals, M as Mode, ex as ModeWithLiterals, e1 as Multilingual, di as NestedAggregation, dg as NestedAggregationItem, dh as NestedAggregationItemKindOneOf, dn as NestedAggregationResults, dp as NestedAggregationResultsResultOneOf, ak as NestedAggregationType, fl as NestedAggregationTypeWithLiterals, dx as NestedResultValue, dy as NestedResultValueResultOneOf, dD as NestedResults, dt as NestedValueAggregationResult, aO as Node, aP as NodeDataOneOf, aQ as NodeStyle, N as NodeType, eA as NodeTypeWithLiterals, aD as NoticePeriod, a7 as NullValue, f8 as NullValueWithLiterals, c3 as Oembed, av as OnOptions, aw as OnOptionsOptionsOneOf, az as OneTimeOptions, cu as OnlineReservations, aG as OnlineReservationsBusinessSchedule, bx as Option, bF as OptionDesign, bA as OptionLayout, cd as OrderedListData, O as Orientation, eL as OrientationWithLiterals, aa as Origin, fb as OriginWithLiterals, b7 as PDFSettings, cK as Page, cO as Pages, bu as ParagraphData, aC as PartySize, cs as PaymentPolicy, ct as PaymentPolicyOptionsOneOf, ae as PaymentPolicyType, ff as PaymentPolicyTypeWithLiterals, cq as PerGuestOptions, bw as Permissions, $ as Placement, ao as PlacementType, fp as PlacementTypeWithLiterals, f0 as PlacementWithLiterals, c1 as PlaybackOptions, aU as PluginContainerData, P as PluginContainerDataAlignment, eC as PluginContainerDataAlignmentWithLiterals, aV as PluginContainerDataWidth, aW as PluginContainerDataWidthDataOneOf, bG as Poll, bv as PollData, bH as PollDataLayout, bE as PollDesign, bz as PollLayout, J as PollLayoutDirection, eV as PollLayoutDirectionWithLiterals, I as PollLayoutType, eU as PollLayoutTypeWithLiterals, by as PollSettings, Y as Position, eZ as PositionWithLiterals, b$ as PricingData, aH as PrivacyPolicy, aI as PrivacyPolicyValueOneOf, dU as Properties, e7 as PropertiesChange, cY as QueryExperiencesRequest, d1 as QueryExperiencesResponse, dd as RangeAggregation, dm as RangeAggregationResult, d9 as RangeBucket, dv as RangeResult, dr as RangeResults, R as Recurrence, ez as RecurrenceWithLiterals, b0 as Rel, cv as ReservationForm, _ as Resizing, e$ as ResizingWithLiterals, aq as ResolutionMethod, fr as ResolutionMethodWithLiterals, ac as ResponsivenessBehaviour, fd as ResponsivenessBehaviourWithLiterals, ee as RestoreInfo, dz as Results, bZ as RibbonStyles, aN as RichContent, de as ScalarAggregation, dw as ScalarResult, aj as ScalarType, fk as ScalarTypeWithLiterals, a8 as Scaling, f9 as ScalingWithLiterals, dj as SearchDetails, an as SearchDetailsMode, fo as SearchDetailsModeWithLiterals, d4 as SearchExperiencesRequest, cD as SeoSchema, cC as SeoSettings, cG as Settings, cl as ShapeData, cm as ShapeDataStyles, e9 as SiteCloned, e8 as SiteCreated, dT as SitePropertiesEvent, dS as SitePropertiesNotification, ah as SortDirection, fi as SortDirectionWithLiterals, af as SortOrder, fg as SortOrderWithLiterals, ag as SortType, fh as SortTypeWithLiterals, c$ as Sorting, y as Source, eP as SourceWithLiterals, e0 as SpecialHourPeriod, au as SpecificTablesOptions, aX as Spoiler, bR as SpoilerData, ax as StartDaysAndTimes, p as StartDaysAndTimesDayOfWeek, ey as StartDaysAndTimesDayOfWeekWithLiterals, aZ as Styles, bo as StylesBorder, z as StylesPosition, eQ as StylesPositionWithLiterals, e2 as SupportedLanguage, as as Table, m as TableAssignmentType, eu as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, et as TableAvailabilityTypeWithLiterals, c7 as TableCellData, at as TableCombination, c5 as TableData, cw as TableManagement, n as TableManagementMode, ev as TableManagementModeWithLiterals, cx as TableManagementOptionsOneOf, cF as Tag, cB as TagList, cA as Tags, cQ as TagsModified, r as Target, eE as TargetWithLiterals, aJ as TermsAndConditions, aK as TermsAndConditionsValueOneOf, s as TextAlignment, eF as TextAlignmentWithLiterals, bJ as TextData, cp as TextNodeStyle, b2 as TextStyle, bh as Thumbnails, w as ThumbnailsAlignment, eN as ThumbnailsAlignmentWithLiterals, d$ as TimePeriod, e4 as Translation, a0 as Type, f1 as TypeWithLiterals, cL as URI, cP as URIs, o as Unit, ew as UnitWithLiterals, cW as UpdateExperienceRequest, cX as UpdateExperienceResponse, db as ValueAggregation, dc as ValueAggregationOptionsOneOf, dl as ValueAggregationResult, du as ValueResult, dq as ValueResults, a6 as VerticalAlignment, ab as VerticalAlignmentAlignment, fc as VerticalAlignmentAlignmentWithLiterals, f7 as VerticalAlignmentWithLiterals, bb as Video, c0 as VideoData, V as ViewMode, eJ as ViewModeWithLiterals, F as ViewRole, eS as ViewRoleWithLiterals, H as VoteRole, eT as VoteRoleWithLiterals, ar as WebhookIdentityType, fs as WebhookIdentityTypeWithLiterals, ay as WeeklyOptions, u as Width, W as WidthType, eB as WidthTypeWithLiterals, eH as WidthWithLiterals, es as utils } from './table-reservations-v1-experience-experiences.universal-CmEg4KfI.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -948,6 +948,7 @@ import { transformSDKPageURLV2ToRESTPageURLV2 } from "@wix/sdk-runtime/transform
|
|
|
948
948
|
import { transformRESTPageURLV2ToSDKPageURLV2 } from "@wix/sdk-runtime/transformations/page-url-v2";
|
|
949
949
|
import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
|
|
950
950
|
import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
|
|
951
|
+
import { createSearchUtils } from "@wix/sdk-runtime/search-builder-utils";
|
|
951
952
|
var TableAvailabilityType = /* @__PURE__ */ ((TableAvailabilityType2) => {
|
|
952
953
|
TableAvailabilityType2["UNKNOWN_TABLE_AVAILABILITY_TYPE"] = "UNKNOWN_TABLE_AVAILABILITY_TYPE";
|
|
953
954
|
TableAvailabilityType2["ANY_ONLINE_TABLE"] = "ANY_ONLINE_TABLE";
|
|
@@ -1721,7 +1722,12 @@ async function typedQueryExperiences(query) {
|
|
|
1721
1722
|
}
|
|
1722
1723
|
}
|
|
1723
1724
|
var utils = {
|
|
1724
|
-
|
|
1725
|
+
query: {
|
|
1726
|
+
...createQueryUtils()
|
|
1727
|
+
},
|
|
1728
|
+
search: {
|
|
1729
|
+
...createSearchUtils()
|
|
1730
|
+
}
|
|
1725
1731
|
};
|
|
1726
1732
|
async function searchExperiences2(search) {
|
|
1727
1733
|
const { httpClient, sideEffects } = arguments[1];
|