@wix/auto_sdk_table-reservations_experiences 1.0.26 → 1.0.28
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 +14 -9
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +14 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +16 -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-6408DNfO.d.ts → table-reservations-v1-experience-experiences.universal-BODKK8eH.d.ts} +20 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +11 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +11 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +16 -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-6408DNfO.d.mts → table-reservations-v1-experience-experiences.universal-BODKK8eH.d.mts} +20 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +14 -9
- 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 +14 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +16 -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-6408DNfO.d.ts → table-reservations-v1-experience-experiences.universal-BODKK8eH.d.ts} +20 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +11 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +11 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +16 -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-6408DNfO.d.mts → table-reservations-v1-experience-experiences.universal-BODKK8eH.d.mts} +20 -4
- package/package.json +2 -2
|
@@ -2112,6 +2112,8 @@ interface LayoutData {
|
|
|
2112
2112
|
containerData?: PluginContainerData;
|
|
2113
2113
|
/** Defines where selected design propertied applies to */
|
|
2114
2114
|
designTarget?: DesignTargetWithLiterals;
|
|
2115
|
+
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2116
|
+
banner?: Banner;
|
|
2115
2117
|
}
|
|
2116
2118
|
declare enum Scaling {
|
|
2117
2119
|
/** Auto image scaling */
|
|
@@ -2145,6 +2147,14 @@ declare enum ImagePosition {
|
|
|
2145
2147
|
}
|
|
2146
2148
|
/** @enumType */
|
|
2147
2149
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2150
|
+
declare enum Origin {
|
|
2151
|
+
/** Banner originated from an image */
|
|
2152
|
+
IMAGE = "IMAGE",
|
|
2153
|
+
/** Banner originated from a layout */
|
|
2154
|
+
LAYOUT = "LAYOUT"
|
|
2155
|
+
}
|
|
2156
|
+
/** @enumType */
|
|
2157
|
+
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2148
2158
|
interface BackgroundImage {
|
|
2149
2159
|
/** Background image. */
|
|
2150
2160
|
media?: Media;
|
|
@@ -2181,6 +2191,10 @@ declare enum DesignTarget {
|
|
|
2181
2191
|
}
|
|
2182
2192
|
/** @enumType */
|
|
2183
2193
|
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
2194
|
+
interface Banner {
|
|
2195
|
+
/** Origin of the banner */
|
|
2196
|
+
origin?: OriginWithLiterals;
|
|
2197
|
+
}
|
|
2184
2198
|
interface LayoutCellData {
|
|
2185
2199
|
/** Size of the cell in 12 columns grid. */
|
|
2186
2200
|
colSpan?: number | null;
|
|
@@ -4190,9 +4204,11 @@ type ExperienceQuery = {
|
|
|
4190
4204
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
4191
4205
|
}[];
|
|
4192
4206
|
};
|
|
4193
|
-
declare const
|
|
4194
|
-
|
|
4195
|
-
|
|
4207
|
+
declare const utils: {
|
|
4208
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Experience, ExperienceQuerySpec, ExperienceQuery>;
|
|
4209
|
+
Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceQuerySpec>;
|
|
4210
|
+
Sort: _wix_sdk_types.SortFactory<ExperienceQuerySpec>; /** @enumType */
|
|
4211
|
+
};
|
|
4196
4212
|
interface ExperienceSearchSpec extends SearchSpec {
|
|
4197
4213
|
searchable: [
|
|
4198
4214
|
'configuration.displayInfo.name',
|
|
@@ -4407,4 +4423,4 @@ interface BulkUpdateExperienceTagsByFilterOptions {
|
|
|
4407
4423
|
unassignTags?: Tags;
|
|
4408
4424
|
}
|
|
4409
4425
|
|
|
4410
|
-
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 Rel 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 EntryRecurrenceOptionsOneOf as aA, type PartySize as aB, type NoticePeriod as aC, type Approval as aD, type MaxGuests as aE, type OnlineReservationsBusinessSchedule as aF, type PrivacyPolicy as aG, type PrivacyPolicyValueOneOf as aH, type TermsAndConditions as aI, type TermsAndConditionsValueOneOf as aJ, type CustomFieldDefinition as aK, type EmailMarketingCheckbox as aL, type RichContent as aM, type Node as aN, type NodeDataOneOf as aO, type NodeStyle as aP, type ButtonData as aQ, type Border as aR, type Colors as aS, type PluginContainerData as aT, type PluginContainerDataWidth as aU, type PluginContainerDataWidthDataOneOf as aV, type Spoiler as aW, type Height as aX, type Styles as aY, type Link as aZ, type LinkDataOneOf as a_, VerticalAlignmentAlignment as aa, ResponsivenessBehaviour as ab, DesignTarget as ac, PaymentPolicyType as ad, SortOrder as ae, SortType as af, SortDirection as ag, MissingValues as ah, ScalarType as ai, NestedAggregationType as aj, Interval as ak, AggregationType as al, SearchDetailsMode as am, PlacementType as an, DayOfWeek as ao, ResolutionMethod as ap, WebhookIdentityType as aq, type Table as ar, type TableCombination as as, type SpecificTablesOptions as at, type OnOptions as au, type OnOptionsOptionsOneOf as av, type StartDaysAndTimes as aw, type WeeklyOptions as ax, type OneTimeOptions as ay, type Entry as az, type ExperienceSearch as b, type VideoData as b$, type CodeBlockData as b0, type TextStyle as b1, type DividerData as b2, type FileData as b3, type FileSource as b4, type FileSourceDataOneOf as b5, type PDFSettings as b6, type GalleryData as b7, type Media as b8, type Image as b9, type Gradient as bA, type Background as bB, type BackgroundBackgroundOneOf as bC, type PollDesign as bD, type OptionDesign as bE, type Poll as bF, type PollDataLayout as bG, type Design as bH, type TextData as bI, type Decoration as bJ, type DecorationDataOneOf as bK, type AnchorData as bL, type ColorData as bM, type LinkData as bN, type MentionData as bO, type FontSizeData as bP, type SpoilerData as bQ, type FontFamilyData as bR, type AppEmbedData as bS, type AppEmbedDataAppDataOneOf as bT, type BookingData as bU, type EventData as bV, type ButtonStyles as bW, type ImageStyles as bX, type RibbonStyles as bY, type CardStyles as bZ, type PricingData as b_, type Video as ba, type Item as bb, type ItemDataOneOf as bc, type GalleryOptions as bd, type GalleryOptionsLayout as be, type ItemStyle as bf, type Thumbnails as bg, type GIFData as bh, type GIF as bi, type HeadingData as bj, type HTMLData as bk, type HTMLDataDataOneOf as bl, type ImageData as bm, type StylesBorder as bn, type ImageDataStyles 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 BulkUpdateExperienceTagsResponse as c, type Cursors as c$, type PlaybackOptions as c0, type EmbedData as c1, type Oembed as c2, type CollapsibleListData as c3, type TableData as c4, type Dimensions as c5, type TableCellData as c6, type CellStyle as c7, type BorderColors as c8, type BorderWidths as c9, type SeoSettings as cA, type SeoSchema as cB, type Keyword as cC, type Tag as cD, type Settings as cE, type InvalidateCache as cF, type InvalidateCacheGetByOneOf as cG, type App as cH, type Page as cI, type URI as cJ, type File as cK, type CustomTag as cL, type TagsModified as cM, type CreateExperienceRequest as cN, type CreateExperienceResponse as cO, type GetExperienceRequest as cP, type GetExperienceResponse as cQ, type GetExperienceBySlugRequest as cR, type UpdateExperienceRequest as cS, type UpdateExperienceResponse as cT, type QueryExperiencesRequest as cU, type CursorQuery as cV, type CursorQueryPagingMethodOneOf as cW, type Sorting as cX, type CursorPaging as cY, type QueryExperiencesResponse as cZ, type CursorPagingMetadata as c_, type ListValue as ca, type AudioData as cb, type OrderedListData as cc, type BulletedListData as cd, type BlockquoteData as ce, type CaptionData as cf, type LayoutData as cg, type BackgroundImage as ch, type LayoutCellData as ci, type ShapeData as cj, type ShapeDataStyles as ck, type Metadata as cl, type DocumentStyle as cm, type TextNodeStyle as cn, type PerGuestOptions as co, type DisplayInfo as cp, type PaymentPolicy as cq, type PaymentPolicyOptionsOneOf as cr, type OnlineReservations as cs, type ReservationForm as ct, type TableManagement as cu, type TableManagementOptionsOneOf as cv, type Configuration as cw, type ExtendedFields as cx, type Tags as cy, type TagList as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type ConsentPolicy as d$, type SearchExperiencesRequest as d0, type CursorSearch as d1, type CursorSearchPagingMethodOneOf as d2, type Aggregation as d3, type AggregationKindOneOf as d4, type RangeBucket as d5, type IncludeMissingValuesOptions as d6, type ValueAggregation as d7, type ValueAggregationOptionsOneOf as d8, type RangeAggregation as d9, type AggregationResults as dA, type AggregationResultsResultOneOf as dB, type BulkUpdateExperienceTagsRequest as dC, type ItemMetadata as dD, type ApplicationError as dE, type BulkUpdateExperienceTagsResult as dF, type BulkActionMetadata as dG, type BulkUpdateExperienceTagsByFilterRequest as dH, type BulkArchiveExperiencesRequest as dI, type BulkArchiveExperiencesResponse as dJ, type BulkArchiveExperiencesResult as dK, type BulkUnarchiveExperiencesRequest as dL, type BulkUnarchiveExperiencesResponse as dM, type BulkUnarchiveExperiencesResult as dN, type SitePropertiesNotification as dO, type SitePropertiesEvent as dP, type Properties as dQ, type Categories as dR, type Locale as dS, type Address as dT, type AddressHint as dU, type GeoCoordinates as dV, type BusinessSchedule as dW, type TimePeriod as dX, type SpecialHourPeriod as dY, type Multilingual as dZ, type SupportedLanguage as d_, type ScalarAggregation as da, type DateHistogramAggregation as db, type NestedAggregationItem as dc, type NestedAggregationItemKindOneOf as dd, type NestedAggregation as de, type SearchDetails as df, type AggregationData as dg, type ValueAggregationResult as dh, type RangeAggregationResult as di, type NestedAggregationResults as dj, type NestedAggregationResultsResultOneOf as dk, type ValueResults as dl, type RangeResults as dm, type AggregationResultsScalarResult as dn, type NestedValueAggregationResult as dp, type ValueResult as dq, type RangeResult as dr, type ScalarResult as ds, type NestedResultValue as dt, type NestedResultValueResultOneOf as du, type Results as dv, type DateHistogramResult as dw, type GroupByValueResults as dx, type DateHistogramResults as dy, type NestedResults as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type TypeWithLiterals as e$, type Translation as e0, type ChangeContext as e1, type ChangeContextPayloadOneOf as e2, type PropertiesChange as e3, type SiteCreated as e4, type SiteCloned as e5, type Empty as e6, type DomainEvent as e7, type DomainEventBodyOneOf as e8, type EntityCreatedEvent 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 RestoreInfo as ea, type EntityUpdatedEvent as eb, type EntityDeletedEvent as ec, type ActionEvent as ed, type MessageEnvelope as ee, type IdentificationData as ef, type IdentificationDataIdOneOf as eg, type AccountInfo as eh, type BaseEventMetadata as ei, type EventMetadata as ej, type AccountInfoMetadata as ek, type ExperiencesQueryResult as el, type ExperienceQuerySpec as em, type ExperienceSearchSpec as en, QueryBuilder as eo, Filter as ep, Sort 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 VerticalAlignmentAlignmentWithLiterals as f9, bulkUpdateExperienceTags as fA, bulkUpdateExperienceTagsByFilter as fB, type ResponsivenessBehaviourWithLiterals as fa, type DesignTargetWithLiterals as fb, type PaymentPolicyTypeWithLiterals as fc, type SortOrderWithLiterals as fd, type SortTypeWithLiterals as fe, type SortDirectionWithLiterals as ff, type MissingValuesWithLiterals as fg, type ScalarTypeWithLiterals as fh, type NestedAggregationTypeWithLiterals as fi, type IntervalWithLiterals as fj, type AggregationTypeWithLiterals as fk, type SearchDetailsModeWithLiterals as fl, type PlacementTypeWithLiterals as fm, type DayOfWeekWithLiterals as fn, type ResolutionMethodWithLiterals as fo, type WebhookIdentityTypeWithLiterals as fp, type CommonQueryWithEntityContext as fq, type CommonSearchWithEntityContext as fr, onExperienceCreated as fs, onExperienceTagsModified as ft, onExperienceUpdated as fu, createExperience as fv, getExperience as fw, getExperienceBySlug as fx, updateExperience as fy, queryExperiences 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 };
|
|
4426
|
+
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 };
|
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-BODKK8eH.mjs';
|
|
3
|
+
export { ej as AccountInfo, em as AccountInfoMetadata, ef as ActionEvent, dV as Address, dW as AddressHint, d5 as Aggregation, di as AggregationData, d6 as AggregationKindOneOf, dC as AggregationResults, dD as AggregationResultsResultOneOf, dq as AggregationResultsScalarResult, am as AggregationType, fl as AggregationTypeWithLiterals, a1 as Alignment, f0 as AlignmentWithLiterals, bM as AnchorData, cJ as App, bT as AppEmbedData, bU as AppEmbedDataAppDataOneOf, a3 as AppType, f2 as AppTypeWithLiterals, dG as ApplicationError, aE as Approval, Z as AspectRatio, eY as AspectRatioWithLiterals, cc as AudioData, bC as Background, bD as BackgroundBackgroundOneOf, ci as BackgroundImage, K as BackgroundType, eU as BackgroundTypeWithLiterals, cj as Banner, ek as BaseEventMetadata, cf as BlockquoteData, bV as BookingData, aS as Border, c9 as BorderColors, ca as BorderWidths, dI as BulkActionMetadata, dK as BulkArchiveExperiencesRequest, dL as BulkArchiveExperiencesResponse, dM as BulkArchiveExperiencesResult, dN as BulkUnarchiveExperiencesRequest, dO as BulkUnarchiveExperiencesResponse, dP as BulkUnarchiveExperiencesResult, dJ as BulkUpdateExperienceTagsByFilterRequest, dE as BulkUpdateExperienceTagsRequest, dH as BulkUpdateExperienceTagsResult, ce as BulletedListData, dY as BusinessSchedule, aR as ButtonData, q as ButtonDataType, eB as ButtonDataTypeWithLiterals, bX as ButtonStyles, cg as CaptionData, b_ as CardStyles, dT as Categories, c8 as CellStyle, e3 as ChangeContext, e4 as ChangeContextPayloadOneOf, b1 as CodeBlockData, c4 as CollapsibleListData, bN as ColorData, aT as Colors, fr as CommonQueryWithEntityContext, fs as CommonSearchWithEntityContext, cy as Configuration, e1 as ConsentPolicy, cP as CreateExperienceRequest, cQ as CreateExperienceResponse, C as Crop, eK as CropWithLiterals, c_ as CursorPaging, d0 as CursorPagingMetadata, cX as CursorQuery, cY as CursorQueryPagingMethodOneOf, d3 as CursorSearch, d4 as CursorSearchPagingMethodOneOf, d1 as Cursors, aL as CustomFieldDefinition, cN as CustomTag, dd as DateHistogramAggregation, dy as DateHistogramResult, dA as DateHistogramResults, ap as DayOfWeek, fo as DayOfWeekWithLiterals, bK as Decoration, bL as DecorationDataOneOf, Q as DecorationType, eV as DecorationTypeWithLiterals, bI as Design, ad as DesignTarget, fc as DesignTargetWithLiterals, c6 as Dimensions, a5 as Direction, f4 as DirectionWithLiterals, cr as DisplayInfo, b3 as DividerData, D as DividerDataAlignment, eG as DividerDataAlignmentWithLiterals, co as DocumentStyle, e9 as DomainEvent, ea as DomainEventBodyOneOf, aM as EmailMarketingCheckbox, c2 as EmbedData, e8 as Empty, eb as EntityCreatedEvent, ee as EntityDeletedEvent, ed as EntityUpdatedEvent, aA as Entry, aB as EntryRecurrenceOptionsOneOf, bW as EventData, el as EventMetadata, eo as ExperienceQuerySpec, ep as ExperienceSearchSpec, en 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, eW as FontTypeWithLiterals, bj as GIF, bi as GIFData, x as GIFType, eM as GIFTypeWithLiterals, b8 as GalleryData, be as GalleryOptions, bf as GalleryOptionsLayout, dX as GeoCoordinates, cT as GetExperienceBySlugRequest, cR as GetExperienceRequest, cS as GetExperienceResponse, bB as Gradient, dz as GroupByValueResults, bl as HTMLData, bm as HTMLDataDataOneOf, bk as HeadingData, aY as Height, eh as IdentificationData, ei as IdentificationDataIdOneOf, ba as Image, bn as ImageData, bp as ImageDataStyles, a9 as ImagePosition, f8 as ImagePositionWithLiterals, bY as ImageStyles, d8 as IncludeMissingValuesOptions, a4 as InitialExpandedItems, f3 as InitialExpandedItemsWithLiterals, al as Interval, fk as IntervalWithLiterals, cH as InvalidateCache, cI as InvalidateCacheGetByOneOf, bc as Item, bd as ItemDataOneOf, dF as ItemMetadata, bg as ItemStyle, cE as Keyword, a2 as Layout, ck as LayoutCellData, ch as LayoutData, v as LayoutType, eI as LayoutTypeWithLiterals, f1 as LayoutWithLiterals, L as LineStyle, eE as LineStyleWithLiterals, a_ as Link, bO as LinkData, a$ as LinkDataOneOf, bq as LinkPreviewData, br as LinkPreviewDataStyles, cb as ListValue, dU as Locale, bs as MapData, bt as MapSettings, A as MapType, eP as MapTypeWithLiterals, aF as MaxGuests, b9 as Media, bP as MentionData, eg as MessageEnvelope, cn as Metadata, ai as MissingValues, fh as MissingValuesWithLiterals, M as Mode, ev as ModeWithLiterals, d$ as Multilingual, dg as NestedAggregation, de as NestedAggregationItem, df as NestedAggregationItemKindOneOf, dl as NestedAggregationResults, dm as NestedAggregationResultsResultOneOf, ak as NestedAggregationType, fj as NestedAggregationTypeWithLiterals, dv as NestedResultValue, dw as NestedResultValueResultOneOf, dB as NestedResults, dr as NestedValueAggregationResult, aO as Node, aP as NodeDataOneOf, aQ as NodeStyle, N as NodeType, ey as NodeTypeWithLiterals, aD as NoticePeriod, a7 as NullValue, f6 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, eJ as OrientationWithLiterals, aa as Origin, f9 as OriginWithLiterals, b7 as PDFSettings, cK as Page, bu as ParagraphData, aC as PartySize, cs as PaymentPolicy, ct as PaymentPolicyOptionsOneOf, ae as PaymentPolicyType, fd as PaymentPolicyTypeWithLiterals, cq as PerGuestOptions, bw as Permissions, $ as Placement, ao as PlacementType, fn as PlacementTypeWithLiterals, e_ as PlacementWithLiterals, c1 as PlaybackOptions, aU as PluginContainerData, P as PluginContainerDataAlignment, eA 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, eT as PollLayoutDirectionWithLiterals, I as PollLayoutType, eS as PollLayoutTypeWithLiterals, by as PollSettings, Y as Position, eX as PositionWithLiterals, b$ as PricingData, aH as PrivacyPolicy, aI as PrivacyPolicyValueOneOf, dS as Properties, e5 as PropertiesChange, cW as QueryExperiencesRequest, c$ as QueryExperiencesResponse, db as RangeAggregation, dk as RangeAggregationResult, d7 as RangeBucket, dt as RangeResult, dp as RangeResults, R as Recurrence, ex as RecurrenceWithLiterals, b0 as Rel, cv as ReservationForm, _ as Resizing, eZ as ResizingWithLiterals, aq as ResolutionMethod, fp as ResolutionMethodWithLiterals, ac as ResponsivenessBehaviour, fb as ResponsivenessBehaviourWithLiterals, ec as RestoreInfo, dx as Results, bZ as RibbonStyles, aN as RichContent, dc as ScalarAggregation, du as ScalarResult, aj as ScalarType, fi as ScalarTypeWithLiterals, a8 as Scaling, f7 as ScalingWithLiterals, dh as SearchDetails, an as SearchDetailsMode, fm as SearchDetailsModeWithLiterals, d2 as SearchExperiencesRequest, cD as SeoSchema, cC as SeoSettings, cG as Settings, cl as ShapeData, cm as ShapeDataStyles, e7 as SiteCloned, e6 as SiteCreated, dR as SitePropertiesEvent, dQ as SitePropertiesNotification, ah as SortDirection, fg as SortDirectionWithLiterals, af as SortOrder, fe as SortOrderWithLiterals, ag as SortType, ff as SortTypeWithLiterals, cZ as Sorting, y as Source, eN as SourceWithLiterals, d_ as SpecialHourPeriod, au as SpecificTablesOptions, aX as Spoiler, bR as SpoilerData, ax as StartDaysAndTimes, p as StartDaysAndTimesDayOfWeek, ew as StartDaysAndTimesDayOfWeekWithLiterals, aZ as Styles, bo as StylesBorder, z as StylesPosition, eO as StylesPositionWithLiterals, e0 as SupportedLanguage, as as Table, m as TableAssignmentType, es as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, er as TableAvailabilityTypeWithLiterals, c7 as TableCellData, at as TableCombination, c5 as TableData, cw as TableManagement, n as TableManagementMode, et as TableManagementModeWithLiterals, cx as TableManagementOptionsOneOf, cF as Tag, cB as TagList, cA as Tags, cO as TagsModified, r as Target, eC as TargetWithLiterals, aJ as TermsAndConditions, aK as TermsAndConditionsValueOneOf, s as TextAlignment, eD as TextAlignmentWithLiterals, bJ as TextData, cp as TextNodeStyle, b2 as TextStyle, bh as Thumbnails, w as ThumbnailsAlignment, eL as ThumbnailsAlignmentWithLiterals, dZ as TimePeriod, e2 as Translation, a0 as Type, e$ as TypeWithLiterals, cL as URI, o as Unit, eu as UnitWithLiterals, cU as UpdateExperienceRequest, cV as UpdateExperienceResponse, d9 as ValueAggregation, da as ValueAggregationOptionsOneOf, dj as ValueAggregationResult, ds as ValueResult, dn as ValueResults, a6 as VerticalAlignment, ab as VerticalAlignmentAlignment, fa as VerticalAlignmentAlignmentWithLiterals, f5 as VerticalAlignmentWithLiterals, bb as Video, c0 as VideoData, V as ViewMode, eH as ViewModeWithLiterals, F as ViewRole, eQ as ViewRoleWithLiterals, H as VoteRole, eR as VoteRoleWithLiterals, ar as WebhookIdentityType, fq as WebhookIdentityTypeWithLiterals, ay as WeeklyOptions, u as Width, W as WidthType, ez as WidthTypeWithLiterals, eF as WidthWithLiterals, eq as utils } from './table-reservations-v1-experience-experiences.universal-BODKK8eH.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1277,6 +1277,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
1277
1277
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1278
1278
|
return ImagePosition2;
|
|
1279
1279
|
})(ImagePosition || {});
|
|
1280
|
+
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
1281
|
+
Origin2["IMAGE"] = "IMAGE";
|
|
1282
|
+
Origin2["LAYOUT"] = "LAYOUT";
|
|
1283
|
+
return Origin2;
|
|
1284
|
+
})(Origin || {});
|
|
1280
1285
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1281
1286
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1282
1287
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -1715,7 +1720,9 @@ async function typedQueryExperiences(query) {
|
|
|
1715
1720
|
throw transformedError;
|
|
1716
1721
|
}
|
|
1717
1722
|
}
|
|
1718
|
-
var
|
|
1723
|
+
var utils = {
|
|
1724
|
+
...createQueryUtils()
|
|
1725
|
+
};
|
|
1719
1726
|
async function searchExperiences2(search) {
|
|
1720
1727
|
const { httpClient, sideEffects } = arguments[1];
|
|
1721
1728
|
const payload = renameKeysFromSDKRequestToRESTRequest({ search }, []);
|
|
@@ -2305,7 +2312,6 @@ export {
|
|
|
2305
2312
|
DesignTarget,
|
|
2306
2313
|
Direction,
|
|
2307
2314
|
DividerDataAlignment,
|
|
2308
|
-
Filter,
|
|
2309
2315
|
FontType,
|
|
2310
2316
|
GIFType,
|
|
2311
2317
|
ImagePosition,
|
|
@@ -2321,6 +2327,7 @@ export {
|
|
|
2321
2327
|
NodeType,
|
|
2322
2328
|
NullValue,
|
|
2323
2329
|
Orientation,
|
|
2330
|
+
Origin,
|
|
2324
2331
|
PaymentPolicyType,
|
|
2325
2332
|
Placement,
|
|
2326
2333
|
PlacementType,
|
|
@@ -2328,7 +2335,6 @@ export {
|
|
|
2328
2335
|
PollLayoutDirection,
|
|
2329
2336
|
PollLayoutType,
|
|
2330
2337
|
Position,
|
|
2331
|
-
QueryBuilder,
|
|
2332
2338
|
Recurrence,
|
|
2333
2339
|
Resizing,
|
|
2334
2340
|
ResolutionMethod,
|
|
@@ -2336,7 +2342,6 @@ export {
|
|
|
2336
2342
|
ScalarType,
|
|
2337
2343
|
Scaling,
|
|
2338
2344
|
SearchDetailsMode,
|
|
2339
|
-
Sort,
|
|
2340
2345
|
SortDirection,
|
|
2341
2346
|
SortOrder,
|
|
2342
2347
|
SortType,
|
|
@@ -2369,6 +2374,7 @@ export {
|
|
|
2369
2374
|
onExperienceUpdated2 as onExperienceUpdated,
|
|
2370
2375
|
queryExperiences4 as queryExperiences,
|
|
2371
2376
|
searchExperiences4 as searchExperiences,
|
|
2372
|
-
updateExperience4 as updateExperience
|
|
2377
|
+
updateExperience4 as updateExperience,
|
|
2378
|
+
utils
|
|
2373
2379
|
};
|
|
2374
2380
|
//# sourceMappingURL=index.mjs.map
|