@wix/stores 1.0.276 → 1.0.277
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.277",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"@wix/stores_catalog-versioning": "1.0.8",
|
|
23
23
|
"@wix/stores_collections": "1.0.42",
|
|
24
24
|
"@wix/stores_customizations-v-3": "1.0.17",
|
|
25
|
-
"@wix/stores_info-sections-v-3": "1.0.
|
|
25
|
+
"@wix/stores_info-sections-v-3": "1.0.19",
|
|
26
26
|
"@wix/stores_inventory": "1.0.54",
|
|
27
27
|
"@wix/stores_inventory-items-v-3": "1.0.21",
|
|
28
28
|
"@wix/stores_products": "1.0.79",
|
|
29
|
-
"@wix/stores_products-v-3": "1.0.
|
|
29
|
+
"@wix/stores_products-v-3": "1.0.61",
|
|
30
30
|
"@wix/stores_ribbons-v-3": "1.0.17",
|
|
31
31
|
"@wix/stores_stores-locations-v-3": "1.0.18",
|
|
32
32
|
"@wix/stores_subscription-options": "1.0.41",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"fqdn": ""
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"falconPackageHash": "
|
|
58
|
+
"falconPackageHash": "a9eff64e1c284000c81bc7ca240371dba71588eb548f356a781ccb0d"
|
|
59
59
|
}
|
|
@@ -5871,6 +5871,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
5871
5871
|
bulletedListData?: BulletedListData$1;
|
|
5872
5872
|
/** Data for a block quote node. */
|
|
5873
5873
|
blockquoteData?: BlockquoteData$1;
|
|
5874
|
+
/** Data for a caption node. */
|
|
5875
|
+
captionData?: CaptionData$1;
|
|
5874
5876
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5875
5877
|
type?: NodeType$1;
|
|
5876
5878
|
/** Node ID. */
|
|
@@ -5932,6 +5934,8 @@ interface NodeDataOneOf$1 {
|
|
|
5932
5934
|
bulletedListData?: BulletedListData$1;
|
|
5933
5935
|
/** Data for a block quote node. */
|
|
5934
5936
|
blockquoteData?: BlockquoteData$1;
|
|
5937
|
+
/** Data for a caption node. */
|
|
5938
|
+
captionData?: CaptionData$1;
|
|
5935
5939
|
}
|
|
5936
5940
|
declare enum NodeType$1 {
|
|
5937
5941
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5963,7 +5967,8 @@ declare enum NodeType$1 {
|
|
|
5963
5967
|
TABLE_CELL = "TABLE_CELL",
|
|
5964
5968
|
TABLE_ROW = "TABLE_ROW",
|
|
5965
5969
|
EXTERNAL = "EXTERNAL",
|
|
5966
|
-
AUDIO = "AUDIO"
|
|
5970
|
+
AUDIO = "AUDIO",
|
|
5971
|
+
CAPTION = "CAPTION"
|
|
5967
5972
|
}
|
|
5968
5973
|
interface NodeStyle$1 {
|
|
5969
5974
|
/** The top padding value in pixels. */
|
|
@@ -6453,7 +6458,10 @@ interface ImageData$1 {
|
|
|
6453
6458
|
disableExpand?: boolean | null;
|
|
6454
6459
|
/** Image's alternative text. */
|
|
6455
6460
|
altText?: string | null;
|
|
6456
|
-
/**
|
|
6461
|
+
/**
|
|
6462
|
+
* Deprecated: use Caption node instead.
|
|
6463
|
+
* @deprecated
|
|
6464
|
+
*/
|
|
6457
6465
|
caption?: string | null;
|
|
6458
6466
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
6459
6467
|
disableDownload?: boolean | null;
|
|
@@ -6998,6 +7006,9 @@ interface BlockquoteData$1 {
|
|
|
6998
7006
|
/** Indentation level from 1-4. */
|
|
6999
7007
|
indentation?: number;
|
|
7000
7008
|
}
|
|
7009
|
+
interface CaptionData$1 {
|
|
7010
|
+
textStyle?: TextStyle$1;
|
|
7011
|
+
}
|
|
7001
7012
|
interface Metadata$1 {
|
|
7002
7013
|
/** Schema version. */
|
|
7003
7014
|
version?: number;
|
|
@@ -7692,6 +7703,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
7692
7703
|
interface BlockquoteDataNonNullableFields$1 {
|
|
7693
7704
|
indentation: number;
|
|
7694
7705
|
}
|
|
7706
|
+
interface CaptionDataNonNullableFields$1 {
|
|
7707
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
7708
|
+
}
|
|
7695
7709
|
interface NodeNonNullableFields$1 {
|
|
7696
7710
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
7697
7711
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -7717,6 +7731,7 @@ interface NodeNonNullableFields$1 {
|
|
|
7717
7731
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
7718
7732
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
7719
7733
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
7734
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
7720
7735
|
type: NodeType$1;
|
|
7721
7736
|
_id: string;
|
|
7722
7737
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -8263,7 +8278,7 @@ declare const context$7_onInfoSectionUpdated: typeof onInfoSectionUpdated;
|
|
|
8263
8278
|
declare const context$7_queryInfoSections: typeof queryInfoSections;
|
|
8264
8279
|
declare const context$7_updateInfoSection: typeof updateInfoSection;
|
|
8265
8280
|
declare namespace context$7 {
|
|
8266
|
-
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type context$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type context$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type context$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type context$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type context$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type context$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type context$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type context$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type context$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type context$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type context$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type context$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type context$7_BulkInfoSectionResult as BulkInfoSectionResult, type context$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type context$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type context$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type context$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type context$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type context$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type context$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type context$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type context$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$7_GetInfoSectionOptions as GetInfoSectionOptions, type context$7_GetInfoSectionRequest as GetInfoSectionRequest, type context$7_GetInfoSectionResponse as GetInfoSectionResponse, type context$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type context$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type context$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type context$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type context$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type context$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type context$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type context$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type context$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type context$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type context$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type context$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type context$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type context$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type context$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type context$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type context$7_UpdateInfoSection as UpdateInfoSection, type context$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type context$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type context$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type context$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type context$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type context$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type context$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, context$7_bulkCreateInfoSections as bulkCreateInfoSections, context$7_bulkDeleteInfoSections as bulkDeleteInfoSections, context$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, context$7_bulkUpdateInfoSections as bulkUpdateInfoSections, context$7_createInfoSection as createInfoSection, context$7_deleteInfoSection as deleteInfoSection, context$7_getInfoSection as getInfoSection, context$7_getOrCreateInfoSection as getOrCreateInfoSection, context$7_onInfoSectionCreated as onInfoSectionCreated, context$7_onInfoSectionDeleted as onInfoSectionDeleted, context$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, context$7_queryInfoSections as queryInfoSections, context$7_updateInfoSection as updateInfoSection };
|
|
8281
|
+
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type context$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type context$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type context$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type context$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type context$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type context$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type context$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type context$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type context$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type context$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type context$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type context$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type context$7_BulkInfoSectionResult as BulkInfoSectionResult, type context$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type context$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type context$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type context$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type context$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type context$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type context$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type context$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type context$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$7_GetInfoSectionOptions as GetInfoSectionOptions, type context$7_GetInfoSectionRequest as GetInfoSectionRequest, type context$7_GetInfoSectionResponse as GetInfoSectionResponse, type context$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type context$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type context$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type context$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type context$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type context$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type context$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type context$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type context$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type context$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type context$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type context$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type context$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type context$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type context$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type context$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type context$7_UpdateInfoSection as UpdateInfoSection, type context$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type context$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type context$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type context$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type context$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type context$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type context$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, context$7_bulkCreateInfoSections as bulkCreateInfoSections, context$7_bulkDeleteInfoSections as bulkDeleteInfoSections, context$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, context$7_bulkUpdateInfoSections as bulkUpdateInfoSections, context$7_createInfoSection as createInfoSection, context$7_deleteInfoSection as deleteInfoSection, context$7_getInfoSection as getInfoSection, context$7_getOrCreateInfoSection as getOrCreateInfoSection, context$7_onInfoSectionCreated as onInfoSectionCreated, context$7_onInfoSectionDeleted as onInfoSectionDeleted, context$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, context$7_queryInfoSections as queryInfoSections, context$7_updateInfoSection as updateInfoSection };
|
|
8267
8282
|
}
|
|
8268
8283
|
|
|
8269
8284
|
/** Inventory Item. */
|
|
@@ -10533,6 +10548,8 @@ interface Node extends NodeDataOneOf {
|
|
|
10533
10548
|
bulletedListData?: BulletedListData;
|
|
10534
10549
|
/** Data for a block quote node. */
|
|
10535
10550
|
blockquoteData?: BlockquoteData;
|
|
10551
|
+
/** Data for a caption node. */
|
|
10552
|
+
captionData?: CaptionData;
|
|
10536
10553
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
10537
10554
|
type?: NodeType;
|
|
10538
10555
|
/** Node ID. */
|
|
@@ -10594,6 +10611,8 @@ interface NodeDataOneOf {
|
|
|
10594
10611
|
bulletedListData?: BulletedListData;
|
|
10595
10612
|
/** Data for a block quote node. */
|
|
10596
10613
|
blockquoteData?: BlockquoteData;
|
|
10614
|
+
/** Data for a caption node. */
|
|
10615
|
+
captionData?: CaptionData;
|
|
10597
10616
|
}
|
|
10598
10617
|
declare enum NodeType {
|
|
10599
10618
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -10625,7 +10644,8 @@ declare enum NodeType {
|
|
|
10625
10644
|
TABLE_CELL = "TABLE_CELL",
|
|
10626
10645
|
TABLE_ROW = "TABLE_ROW",
|
|
10627
10646
|
EXTERNAL = "EXTERNAL",
|
|
10628
|
-
AUDIO = "AUDIO"
|
|
10647
|
+
AUDIO = "AUDIO",
|
|
10648
|
+
CAPTION = "CAPTION"
|
|
10629
10649
|
}
|
|
10630
10650
|
interface NodeStyle {
|
|
10631
10651
|
/** The top padding value in pixels. */
|
|
@@ -11115,7 +11135,10 @@ interface ImageData {
|
|
|
11115
11135
|
disableExpand?: boolean | null;
|
|
11116
11136
|
/** Image's alternative text. */
|
|
11117
11137
|
altText?: string | null;
|
|
11118
|
-
/**
|
|
11138
|
+
/**
|
|
11139
|
+
* Deprecated: use Caption node instead.
|
|
11140
|
+
* @deprecated
|
|
11141
|
+
*/
|
|
11119
11142
|
caption?: string | null;
|
|
11120
11143
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
11121
11144
|
disableDownload?: boolean | null;
|
|
@@ -11660,6 +11683,9 @@ interface BlockquoteData {
|
|
|
11660
11683
|
/** Indentation level from 1-4. */
|
|
11661
11684
|
indentation?: number;
|
|
11662
11685
|
}
|
|
11686
|
+
interface CaptionData {
|
|
11687
|
+
textStyle?: TextStyle;
|
|
11688
|
+
}
|
|
11663
11689
|
interface Metadata {
|
|
11664
11690
|
/** Schema version. */
|
|
11665
11691
|
version?: number;
|
|
@@ -15751,6 +15777,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
15751
15777
|
interface BlockquoteDataNonNullableFields {
|
|
15752
15778
|
indentation: number;
|
|
15753
15779
|
}
|
|
15780
|
+
interface CaptionDataNonNullableFields {
|
|
15781
|
+
textStyle?: TextStyleNonNullableFields;
|
|
15782
|
+
}
|
|
15754
15783
|
interface NodeNonNullableFields {
|
|
15755
15784
|
buttonData?: ButtonDataNonNullableFields;
|
|
15756
15785
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -15776,6 +15805,7 @@ interface NodeNonNullableFields {
|
|
|
15776
15805
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
15777
15806
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
15778
15807
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
15808
|
+
captionData?: CaptionDataNonNullableFields;
|
|
15779
15809
|
type: NodeType;
|
|
15780
15810
|
_id: string;
|
|
15781
15811
|
nodes: NodeNonNullableFields[];
|
|
@@ -17364,6 +17394,7 @@ type context$5_BulkUpdateVariantsByFilterRequest = BulkUpdateVariantsByFilterReq
|
|
|
17364
17394
|
type context$5_BulkUpdateVariantsByFilterResponse = BulkUpdateVariantsByFilterResponse;
|
|
17365
17395
|
type context$5_BulletedListData = BulletedListData;
|
|
17366
17396
|
type context$5_ButtonData = ButtonData;
|
|
17397
|
+
type context$5_CaptionData = CaptionData;
|
|
17367
17398
|
type context$5_CatalogV3BulkProductResult = CatalogV3BulkProductResult;
|
|
17368
17399
|
type context$5_CellStyle = CellStyle;
|
|
17369
17400
|
type context$5_ChoiceType = ChoiceType;
|
|
@@ -17876,7 +17907,7 @@ declare const context$5_updateExtendedFields: typeof updateExtendedFields;
|
|
|
17876
17907
|
declare const context$5_updateProduct: typeof updateProduct;
|
|
17877
17908
|
declare const context$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
17878
17909
|
declare namespace context$5 {
|
|
17879
|
-
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_FulfillerDeleted as FulfillerDeleted, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemStyle as ItemStyle, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, context$5_MediaType as MediaType, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCategoryIdsInfo as ProductCategoryIdsInfo, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductPreorderAvailability as ProductPreorderAvailability, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RetrieveVariantsRequest as RetrieveVariantsRequest, type context$5_RetrieveVariantsResponse as RetrieveVariantsResponse, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SearchRelated as SearchRelated, type context$5_SearchRelatedDetails as SearchRelatedDetails, type context$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type context$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnail as Thumbnail, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsCursorPaging as VariantsCursorPaging, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VariantsOpsRequestedFields as VariantsOpsRequestedFields, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17910
|
+
export { type ActionEvent$2 as ActionEvent, type context$5_AdjustValue as AdjustValue, type context$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type context$5_Aggregation as Aggregation, type context$5_AggregationData as AggregationData, type context$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type context$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type context$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type context$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, context$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type context$5_AggregationKindOneOf as AggregationKindOneOf, type context$5_AggregationNestedAggregation as AggregationNestedAggregation, type context$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type context$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, context$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type context$5_AggregationRangeAggregation as AggregationRangeAggregation, type context$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type context$5_AggregationResults as AggregationResults, type context$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type context$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type context$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type context$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type context$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type context$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type context$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type context$5_AggregationResultsValueResults as AggregationResultsValueResults, type context$5_AggregationScalarAggregation as AggregationScalarAggregation, context$5_AggregationType as AggregationType, type context$5_AggregationValueAggregation as AggregationValueAggregation, type context$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, context$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type context$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, context$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, context$5_Alignment as Alignment, type context$5_AnchorData as AnchorData, type App$2 as App, type context$5_AppEmbedData as AppEmbedData, type context$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type context$5_AudioData as AudioData, context$5_AvailabilityStatus as AvailabilityStatus, type context$5_Background as Background, type context$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type context$5_BlockquoteData as BlockquoteData, type context$5_BookingData as BookingData, type context$5_Border as Border, type context$5_BorderColors as BorderColors, type context$5_Brand as Brand, type context$5_BreadCrumb as BreadCrumb, type context$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type context$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type context$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type context$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type context$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type context$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type context$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type context$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type context$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type context$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type context$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type context$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type context$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, context$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type context$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type context$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type context$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type context$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type context$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type context$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type context$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type context$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type context$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type context$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type context$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type context$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type context$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type context$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type context$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type context$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type context$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type context$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type context$5_BulkInventoryItemAction as BulkInventoryItemAction, type context$5_BulkInventoryItemResult as BulkInventoryItemResult, type context$5_BulkInventoryItemResults as BulkInventoryItemResults, type context$5_BulkProductResult as BulkProductResult, type context$5_BulkProductResults as BulkProductResults, type context$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type context$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type context$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type context$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type context$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type context$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type context$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type context$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type context$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type context$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type context$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type context$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type context$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type context$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type context$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type context$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type context$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type context$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type context$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type context$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type context$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type context$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type context$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type context$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type context$5_BulletedListData as BulletedListData, type context$5_ButtonData as ButtonData, type context$5_CaptionData as CaptionData, type context$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type context$5_CellStyle as CellStyle, context$5_ChoiceType as ChoiceType, type context$5_ChoicesSettings as ChoicesSettings, type context$5_CodeBlockData as CodeBlockData, type context$5_CollapsibleListData as CollapsibleListData, type context$5_ColorData as ColorData, type context$5_Colors as Colors, type context$5_CommonAggregation as CommonAggregation, type context$5_CommonAggregationData as CommonAggregationData, type context$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type context$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type context$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type context$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type context$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, context$5_CommonAggregationType as CommonAggregationType, type context$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type context$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type context$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type context$5_CommonCursorPaging as CommonCursorPaging, type context$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$5_CommonCursorQuery as CommonCursorQuery, type context$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type context$5_CommonCursorSearch as CommonCursorSearch, type context$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type context$5_CommonCursors as CommonCursors, type context$5_CommonItemMetadata as CommonItemMetadata, context$5_CommonScalarType as CommonScalarType, type context$5_CommonSearchDetails as CommonSearchDetails, context$5_CommonSearchDetailsMode as CommonSearchDetailsMode, context$5_CommonSortOrder as CommonSortOrder, type context$5_CommonSorting as CommonSorting, type context$5_ConnectedModifier as ConnectedModifier, type context$5_ConnectedModifierChoice as ConnectedModifierChoice, type context$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type context$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type context$5_ConnectedOption as ConnectedOption, type context$5_ConnectedOptionChoice as ConnectedOptionChoice, type context$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type context$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type context$5_CountProductsOptions as CountProductsOptions, type context$5_CountProductsRequest as CountProductsRequest, type context$5_CountProductsResponse as CountProductsResponse, type context$5_CreateProductOptions as CreateProductOptions, type context$5_CreateProductRequest as CreateProductRequest, type context$5_CreateProductResponse as CreateProductResponse, type context$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type context$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type context$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type context$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type context$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, context$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type context$5_CursorSearch as CursorSearch, type context$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type context$5_DateHistogramAggregation as DateHistogramAggregation, context$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$5_DateHistogramResult as DateHistogramResult, type context$5_DateHistogramResults as DateHistogramResults, type context$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type context$5_Decoration as Decoration, type context$5_DecorationDataOneOf as DecorationDataOneOf, context$5_DecorationType as DecorationType, type context$5_DeleteByFilterOperation as DeleteByFilterOperation, type context$5_DeleteByIdsOperation as DeleteByIdsOperation, type context$5_DeleteProductRequest as DeleteProductRequest, type context$5_DeleteProductResponse as DeleteProductResponse, type context$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type context$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type context$5_Design as Design, type context$5_Dimensions as Dimensions, context$5_Direction as Direction, DiscountType$1 as DiscountType, type context$5_DividerData as DividerData, type context$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type context$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type context$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type context$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type context$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type context$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type context$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type context$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type context$5_DocumentImage as DocumentImage, type context$5_DocumentPayload as DocumentPayload, type context$5_DocumentStyle as DocumentStyle, type context$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, context$5_Enum as Enum, type context$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type context$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type context$5_ExtendedFields as ExtendedFields, type File$2 as File, type context$5_FileData as FileData, type context$5_FileSource as FileSource, type context$5_FileSourceDataOneOf as FileSourceDataOneOf, context$5_FileType as FileType, type context$5_FixedMonetaryAmount as FixedMonetaryAmount, type context$5_FontSizeData as FontSizeData, context$5_FontType as FontType, type context$5_FreeTextSettings as FreeTextSettings, type context$5_FulfillerDeleted as FulfillerDeleted, type context$5_GIF as GIF, type context$5_GIFData as GIFData, type context$5_GalleryData as GalleryData, type context$5_GalleryOptions as GalleryOptions, type context$5_GetProductBySlugOptions as GetProductBySlugOptions, type context$5_GetProductBySlugRequest as GetProductBySlugRequest, type context$5_GetProductBySlugResponse as GetProductBySlugResponse, type context$5_GetProductOptions as GetProductOptions, type context$5_GetProductRequest as GetProductRequest, type context$5_GetProductResponse as GetProductResponse, type context$5_Gradient as Gradient, type context$5_GroupByAggregation as GroupByAggregation, type context$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$5_GroupByValueResults as GroupByValueResults, type context$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type context$5_HTMLData as HTMLData, type context$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$5_HeadingData as HeadingData, type context$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$5_Image as Image, type context$5_ImageData as ImageData, type context$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type context$5_IndexDocument as IndexDocument, type context$5_InfoSection as InfoSection, context$5_InitialExpandedItems as InitialExpandedItems, context$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type context$5_Inventory as Inventory, context$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type context$5_InventoryItem as InventoryItem, type context$5_InventoryItemComposite as InventoryItemComposite, type context$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type context$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type context$5_InventoryStatus as InventoryStatus, type context$5_Item as Item, type context$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type context$5_ItemStyle as ItemStyle, type context$5_Keyword as Keyword, type context$5_Layout as Layout, context$5_LayoutType as LayoutType, context$5_LineStyle as LineStyle, type context$5_Link as Link, type context$5_LinkData as LinkData, type context$5_LinkDataOneOf as LinkDataOneOf, type context$5_LinkPreviewData as LinkPreviewData, type context$5_ListValue as ListValue, type context$5_MapData as MapData, type context$5_MapSettings as MapSettings, context$5_MapType as MapType, type context$5_MaskedProduct as MaskedProduct, type context$5_MaskedProductWithInventory as MaskedProductWithInventory, context$5_MeasurementUnit as MeasurementUnit, type context$5_Media as Media, type context$5_MediaItemsInfo as MediaItemsInfo, context$5_MediaType as MediaType, type context$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type context$5_Metadata as Metadata, type context$5_MinVariantPriceInfo as MinVariantPriceInfo, context$5_MissingValues as MissingValues, context$5_Mode as Mode, type context$5_ModifierChoicesSettings as ModifierChoicesSettings, context$5_ModifierRenderType as ModifierRenderType, type context$5_MultipleColors as MultipleColors, type context$5_NestedAggregation as NestedAggregation, type context$5_NestedAggregationItem as NestedAggregationItem, type context$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context$5_NestedAggregationResults as NestedAggregationResults, type context$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$5_NestedAggregationType as NestedAggregationType, type context$5_NestedResultValue as NestedResultValue, type context$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$5_NestedResults as NestedResults, type context$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type context$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type context$5_NestedResultsRangeResult as NestedResultsRangeResult, type context$5_NestedResultsResults as NestedResultsResults, type context$5_NestedResultsScalarResult as NestedResultsScalarResult, type context$5_NestedResultsValueResult as NestedResultsValueResult, type context$5_NestedValueAggregationResult as NestedValueAggregationResult, type context$5_Node as Node, type context$5_NodeDataOneOf as NodeDataOneOf, type context$5_NodeStyle as NodeStyle, context$5_NodeType as NodeType, context$5_NullValue as NullValue, type context$5_Oembed as Oembed, type context$5_Option as Option, type context$5_OptionChoice as OptionChoice, type context$5_OptionChoiceIds as OptionChoiceIds, type context$5_OptionChoiceNames as OptionChoiceNames, type context$5_OptionChoiceReferences as OptionChoiceReferences, type context$5_OptionDesign as OptionDesign, type context$5_OptionLayout as OptionLayout, type context$5_OrderedListData as OrderedListData, context$5_Orientation as Orientation, type context$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type context$5_ParagraphData as ParagraphData, type context$5_Permissions as Permissions, type context$5_PhysicalProperties as PhysicalProperties, type context$5_PlatformOffsetSearch as PlatformOffsetSearch, type context$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context$5_PlatformPaging as PlatformPaging, type context$5_PlaybackOptions as PlaybackOptions, type context$5_PluginContainerData as PluginContainerData, context$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$5_PluginContainerDataWidth as PluginContainerDataWidth, type context$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$5_Poll as Poll, type context$5_PollData as PollData, type context$5_PollDataLayout as PollDataLayout, type context$5_PollDesign as PollDesign, type context$5_PollLayout as PollLayout, context$5_PollLayoutDirection as PollLayoutDirection, context$5_PollLayoutType as PollLayoutType, type context$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, context$5_PreorderStatus as PreorderStatus, type context$5_PriceInfo as PriceInfo, type context$5_PricePerUnit as PricePerUnit, type context$5_PricePerUnitRange as PricePerUnitRange, type context$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type context$5_PricePerUnitSettings as PricePerUnitSettings, type context$5_PriceRange as PriceRange, type context$5_Product as Product, type context$5_ProductCategoriesInfo as ProductCategoriesInfo, type context$5_ProductCategory as ProductCategory, type context$5_ProductCategoryIdsInfo as ProductCategoryIdsInfo, type context$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type context$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type context$5_ProductIdWithRevision as ProductIdWithRevision, type context$5_ProductMedia as ProductMedia, type context$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type context$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, context$5_ProductOptionRenderType as ProductOptionRenderType, context$5_ProductPreorderAvailability as ProductPreorderAvailability, context$5_ProductType as ProductType, type context$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type context$5_ProductVariantIds as ProductVariantIds, type context$5_ProductVariants as ProductVariants, type context$5_ProductWithInventory as ProductWithInventory, type context$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type context$5_ProductsQueryBuilder as ProductsQueryBuilder, type context$5_ProductsQueryResult as ProductsQueryResult, type context$5_QueryProductsOptions as QueryProductsOptions, type context$5_QueryProductsRequest as QueryProductsRequest, type context$5_QueryProductsResponse as QueryProductsResponse, type context$5_RangeAggregation as RangeAggregation, type context$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context$5_RangeAggregationResult as RangeAggregationResult, type context$5_RangeBucket as RangeBucket, type context$5_RangeResult as RangeResult, type context$5_RangeResults as RangeResults, type context$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type context$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type context$5_Results as Results, type context$5_RetrieveVariantsRequest as RetrieveVariantsRequest, type context$5_RetrieveVariantsResponse as RetrieveVariantsResponse, type context$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type context$5_RichContent as RichContent, context$5_RoundingStrategy as RoundingStrategy, type context$5_ScalarAggregation as ScalarAggregation, type context$5_ScalarResult as ScalarResult, context$5_ScalarType as ScalarType, type context$5_SearchDetails as SearchDetails, context$5_SearchDetailsMode as SearchDetailsMode, type context$5_SearchIndexingNotification as SearchIndexingNotification, type context$5_SearchProductsOptions as SearchProductsOptions, type context$5_SearchProductsRequest as SearchProductsRequest, type context$5_SearchProductsResponse as SearchProductsResponse, type context$5_SearchRelated as SearchRelated, type context$5_SearchRelatedDetails as SearchRelatedDetails, type context$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type context$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type context$5_SecuredMedia as SecuredMedia, type context$5_SeoSchema as SeoSchema, type context$5_Settings as Settings, context$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, context$5_SortType as SortType, type Sorting$2 as Sorting, context$5_Source as Source, type context$5_Spoiler as Spoiler, type context$5_SpoilerData as SpoilerData, State$1 as State, type context$5_Styles as Styles, type context$5_Subscription as Subscription, type context$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type context$5_SubscriptionDetails as SubscriptionDetails, type context$5_SubscriptionDiscount as SubscriptionDiscount, type context$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type context$5_SubscriptionPrice as SubscriptionPrice, type context$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type context$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type context$5_TableCellData as TableCellData, type context$5_TableData as TableData, type context$5_Tag as Tag, context$5_Target as Target, context$5_TextAlignment as TextAlignment, type context$5_TextData as TextData, type context$5_TextNodeStyle as TextNodeStyle, type context$5_TextStyle as TextStyle, type context$5_Thumbnail as Thumbnail, type context$5_Thumbnails as Thumbnails, context$5_ThumbnailsAlignment as ThumbnailsAlignment, context$5_Type as Type, type URI$2 as URI, type context$5_UnsignedAdjustValue as UnsignedAdjustValue, type context$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type context$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type context$5_UpdateByFilterOperation as UpdateByFilterOperation, type context$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type context$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type context$5_UpdateExistingOperation as UpdateExistingOperation, type context$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$5_UpdateProduct as UpdateProduct, type context$5_UpdateProductOptions as UpdateProductOptions, type context$5_UpdateProductRequest as UpdateProductRequest, type context$5_UpdateProductResponse as UpdateProductResponse, type context$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type context$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type context$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type context$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type context$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type context$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type context$5_V1Media as V1Media, type context$5_V3AdjustValue as V3AdjustValue, type context$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type context$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type context$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type context$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type context$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type context$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type context$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type context$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type context$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type context$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type context$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type context$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type context$5_V3BulkProductResult as V3BulkProductResult, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type context$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type context$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type context$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type context$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type context$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type context$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type context$5_V3CountProductsRequest as V3CountProductsRequest, type context$5_V3CountProductsResponse as V3CountProductsResponse, type context$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type context$5_V3DeleteProductRequest as V3DeleteProductRequest, type context$5_V3DeleteProductResponse as V3DeleteProductResponse, type context$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type context$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type context$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type context$5_V3GetProductRequest as V3GetProductRequest, type context$5_V3GetProductResponse as V3GetProductResponse, type context$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type context$5_V3MaskedProduct as V3MaskedProduct, type context$5_V3OptionChoiceIds as V3OptionChoiceIds, type context$5_V3OptionChoiceNames as V3OptionChoiceNames, type context$5_V3Product as V3Product, type context$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type context$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type context$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type context$5_V3QueryProductsRequest as V3QueryProductsRequest, type context$5_V3QueryProductsResponse as V3QueryProductsResponse, type context$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type context$5_V3SearchProductsRequest as V3SearchProductsRequest, type context$5_V3SearchProductsResponse as V3SearchProductsResponse, type context$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type context$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type context$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type context$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type context$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type context$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type context$5_V3VariantsInfo as V3VariantsInfo, type context$5_ValueAggregation as ValueAggregation, type context$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type context$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$5_ValueAggregationResult as ValueAggregationResult, context$5_ValueAggregationSortDirection as ValueAggregationSortDirection, context$5_ValueAggregationSortType as ValueAggregationSortType, type context$5_ValueResult as ValueResult, type context$5_ValueResults as ValueResults, type context$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type context$5_Variant as Variant, type context$5_VariantDigitalProperties as VariantDigitalProperties, type context$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type context$5_VariantPhysicalProperties as VariantPhysicalProperties, type context$5_VariantSummary as VariantSummary, type context$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type context$5_VariantWithInventory as VariantWithInventory, type context$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type context$5_VariantsCursorPaging as VariantsCursorPaging, type context$5_VariantsInfo as VariantsInfo, type context$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, context$5_VariantsOpsRequestedFields as VariantsOpsRequestedFields, context$5_VerticalAlignment as VerticalAlignment, type context$5_Video as Video, type context$5_VideoData as VideoData, type context$5_VideoResolution as VideoResolution, context$5_ViewMode as ViewMode, context$5_ViewRole as ViewRole, context$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type context$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type context$5_WeightRange as WeightRange, context$5_WeightUnit as WeightUnit, context$5_Width as Width, context$5_WidthType as WidthType, type context$5_WixCommonAggregation as WixCommonAggregation, type context$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, context$5_WixCommonAggregationType as WixCommonAggregationType, type context$5_WixCommonItemMetadata as WixCommonItemMetadata, context$5_WixCommonScalarType as WixCommonScalarType, type context$5_WixCommonSearchDetails as WixCommonSearchDetails, context$5_WixCommonSortOrder as WixCommonSortOrder, type context$5_WixCommonSorting as WixCommonSorting, type context$5__publicOnProductCreatedType as _publicOnProductCreatedType, type context$5__publicOnProductDeletedType as _publicOnProductDeletedType, type context$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, context$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, context$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, context$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, context$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, context$5_bulkCreateProducts as bulkCreateProducts, context$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, context$5_bulkDeleteProducts as bulkDeleteProducts, context$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, context$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, context$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, context$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, context$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, context$5_bulkUpdateProducts as bulkUpdateProducts, context$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, context$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, context$5_countProducts as countProducts, context$5_createProduct as createProduct, context$5_createProductWithInventory as createProductWithInventory, context$5_deleteProduct as deleteProduct, context$5_getProduct as getProduct, context$5_getProductBySlug as getProductBySlug, context$5_onProductCreated as onProductCreated, context$5_onProductDeleted as onProductDeleted, context$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, context$5_queryProducts as queryProducts, context$5_searchProducts as searchProducts, context$5_updateExtendedFields as updateExtendedFields, context$5_updateProduct as updateProduct, context$5_updateProductWithInventory as updateProductWithInventory };
|
|
17880
17911
|
}
|
|
17881
17912
|
|
|
17882
17913
|
interface Provision {
|
|
@@ -5871,6 +5871,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
5871
5871
|
bulletedListData?: BulletedListData$1;
|
|
5872
5872
|
/** Data for a block quote node. */
|
|
5873
5873
|
blockquoteData?: BlockquoteData$1;
|
|
5874
|
+
/** Data for a caption node. */
|
|
5875
|
+
captionData?: CaptionData$1;
|
|
5874
5876
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5875
5877
|
type?: NodeType$1;
|
|
5876
5878
|
/** Node ID. */
|
|
@@ -5932,6 +5934,8 @@ interface NodeDataOneOf$1 {
|
|
|
5932
5934
|
bulletedListData?: BulletedListData$1;
|
|
5933
5935
|
/** Data for a block quote node. */
|
|
5934
5936
|
blockquoteData?: BlockquoteData$1;
|
|
5937
|
+
/** Data for a caption node. */
|
|
5938
|
+
captionData?: CaptionData$1;
|
|
5935
5939
|
}
|
|
5936
5940
|
declare enum NodeType$1 {
|
|
5937
5941
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5963,7 +5967,8 @@ declare enum NodeType$1 {
|
|
|
5963
5967
|
TABLE_CELL = "TABLE_CELL",
|
|
5964
5968
|
TABLE_ROW = "TABLE_ROW",
|
|
5965
5969
|
EXTERNAL = "EXTERNAL",
|
|
5966
|
-
AUDIO = "AUDIO"
|
|
5970
|
+
AUDIO = "AUDIO",
|
|
5971
|
+
CAPTION = "CAPTION"
|
|
5967
5972
|
}
|
|
5968
5973
|
interface NodeStyle$1 {
|
|
5969
5974
|
/** The top padding value in pixels. */
|
|
@@ -6453,7 +6458,10 @@ interface ImageData$1 {
|
|
|
6453
6458
|
disableExpand?: boolean | null;
|
|
6454
6459
|
/** Image's alternative text. */
|
|
6455
6460
|
altText?: string | null;
|
|
6456
|
-
/**
|
|
6461
|
+
/**
|
|
6462
|
+
* Deprecated: use Caption node instead.
|
|
6463
|
+
* @deprecated
|
|
6464
|
+
*/
|
|
6457
6465
|
caption?: string | null;
|
|
6458
6466
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
6459
6467
|
disableDownload?: boolean | null;
|
|
@@ -6998,6 +7006,9 @@ interface BlockquoteData$1 {
|
|
|
6998
7006
|
/** Indentation level from 1-4. */
|
|
6999
7007
|
indentation?: number;
|
|
7000
7008
|
}
|
|
7009
|
+
interface CaptionData$1 {
|
|
7010
|
+
textStyle?: TextStyle$1;
|
|
7011
|
+
}
|
|
7001
7012
|
interface Metadata$1 {
|
|
7002
7013
|
/** Schema version. */
|
|
7003
7014
|
version?: number;
|
|
@@ -7692,6 +7703,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
7692
7703
|
interface BlockquoteDataNonNullableFields$1 {
|
|
7693
7704
|
indentation: number;
|
|
7694
7705
|
}
|
|
7706
|
+
interface CaptionDataNonNullableFields$1 {
|
|
7707
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
7708
|
+
}
|
|
7695
7709
|
interface NodeNonNullableFields$1 {
|
|
7696
7710
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
7697
7711
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -7717,6 +7731,7 @@ interface NodeNonNullableFields$1 {
|
|
|
7717
7731
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
7718
7732
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
7719
7733
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
7734
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
7720
7735
|
type: NodeType$1;
|
|
7721
7736
|
_id: string;
|
|
7722
7737
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -8263,7 +8278,7 @@ declare const index_d$7_onInfoSectionUpdated: typeof onInfoSectionUpdated;
|
|
|
8263
8278
|
declare const index_d$7_queryInfoSections: typeof queryInfoSections;
|
|
8264
8279
|
declare const index_d$7_updateInfoSection: typeof updateInfoSection;
|
|
8265
8280
|
declare namespace index_d$7 {
|
|
8266
|
-
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type index_d$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type index_d$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type index_d$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type index_d$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type index_d$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type index_d$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type index_d$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type index_d$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type index_d$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type index_d$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type index_d$7_BulkInfoSectionResult as BulkInfoSectionResult, type index_d$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type index_d$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type index_d$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type index_d$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type index_d$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type index_d$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type index_d$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type index_d$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type index_d$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$7_GetInfoSectionOptions as GetInfoSectionOptions, type index_d$7_GetInfoSectionRequest as GetInfoSectionRequest, type index_d$7_GetInfoSectionResponse as GetInfoSectionResponse, type index_d$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type index_d$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type index_d$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type index_d$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type index_d$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type index_d$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type index_d$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type index_d$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type index_d$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type index_d$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type index_d$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type index_d$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type index_d$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type index_d$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type index_d$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type index_d$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type index_d$7_UpdateInfoSection as UpdateInfoSection, type index_d$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type index_d$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type index_d$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type index_d$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type index_d$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type index_d$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type index_d$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, index_d$7_bulkCreateInfoSections as bulkCreateInfoSections, index_d$7_bulkDeleteInfoSections as bulkDeleteInfoSections, index_d$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, index_d$7_bulkUpdateInfoSections as bulkUpdateInfoSections, index_d$7_createInfoSection as createInfoSection, index_d$7_deleteInfoSection as deleteInfoSection, index_d$7_getInfoSection as getInfoSection, index_d$7_getOrCreateInfoSection as getOrCreateInfoSection, index_d$7_onInfoSectionCreated as onInfoSectionCreated, index_d$7_onInfoSectionDeleted as onInfoSectionDeleted, index_d$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, index_d$7_queryInfoSections as queryInfoSections, index_d$7_updateInfoSection as updateInfoSection };
|
|
8281
|
+
export { type ActionEvent$4 as ActionEvent, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type App$4 as App, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$3 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BaseEventMetadata$4 as BaseEventMetadata, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$3 as BulkActionMetadata, type index_d$7_BulkCreateInfoSectionsOptions as BulkCreateInfoSectionsOptions, type index_d$7_BulkCreateInfoSectionsRequest as BulkCreateInfoSectionsRequest, type index_d$7_BulkCreateInfoSectionsResponse as BulkCreateInfoSectionsResponse, type index_d$7_BulkCreateInfoSectionsResponseNonNullableFields as BulkCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkDeleteInfoSectionsRequest as BulkDeleteInfoSectionsRequest, type index_d$7_BulkDeleteInfoSectionsResponse as BulkDeleteInfoSectionsResponse, type index_d$7_BulkDeleteInfoSectionsResponseNonNullableFields as BulkDeleteInfoSectionsResponseNonNullableFields, type index_d$7_BulkGetOrCreateInfoSectionsOptions as BulkGetOrCreateInfoSectionsOptions, type index_d$7_BulkGetOrCreateInfoSectionsRequest as BulkGetOrCreateInfoSectionsRequest, type index_d$7_BulkGetOrCreateInfoSectionsResponse as BulkGetOrCreateInfoSectionsResponse, type index_d$7_BulkGetOrCreateInfoSectionsResponseNonNullableFields as BulkGetOrCreateInfoSectionsResponseNonNullableFields, type index_d$7_BulkInfoSectionItemResult as BulkInfoSectionItemResult, type index_d$7_BulkInfoSectionResult as BulkInfoSectionResult, type index_d$7_BulkUpdateInfoSectionsOptions as BulkUpdateInfoSectionsOptions, type index_d$7_BulkUpdateInfoSectionsRequest as BulkUpdateInfoSectionsRequest, type index_d$7_BulkUpdateInfoSectionsResponse as BulkUpdateInfoSectionsResponse, type index_d$7_BulkUpdateInfoSectionsResponseNonNullableFields as BulkUpdateInfoSectionsResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type index_d$7_CreateInfoSectionRequest as CreateInfoSectionRequest, type index_d$7_CreateInfoSectionResponse as CreateInfoSectionResponse, type index_d$7_CreateInfoSectionResponseNonNullableFields as CreateInfoSectionResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$4 as Cursors, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type index_d$7_DeleteInfoSectionRequest as DeleteInfoSectionRequest, type index_d$7_DeleteInfoSectionResponse as DeleteInfoSectionResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EmbedData$1 as EmbedData, type Empty$5 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventData$1 as EventData, type EventMetadata$3 as EventMetadata, type File$4 as File, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type index_d$7_GetInfoSectionOptions as GetInfoSectionOptions, type index_d$7_GetInfoSectionRequest as GetInfoSectionRequest, type index_d$7_GetInfoSectionResponse as GetInfoSectionResponse, type index_d$7_GetInfoSectionResponseNonNullableFields as GetInfoSectionResponseNonNullableFields, type index_d$7_GetOrCreateInfoSectionOptions as GetOrCreateInfoSectionOptions, type index_d$7_GetOrCreateInfoSectionRequest as GetOrCreateInfoSectionRequest, type index_d$7_GetOrCreateInfoSectionResponse as GetOrCreateInfoSectionResponse, type index_d$7_GetOrCreateInfoSectionResponseNonNullableFields as GetOrCreateInfoSectionResponseNonNullableFields, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, type InfoSection$1 as InfoSection, type index_d$7_InfoSectionCreatedEnvelope as InfoSectionCreatedEnvelope, type index_d$7_InfoSectionDeletedEnvelope as InfoSectionDeletedEnvelope, type index_d$7_InfoSectionForGetOrCreate as InfoSectionForGetOrCreate, type InfoSectionNonNullableFields$1 as InfoSectionNonNullableFields, type index_d$7_InfoSectionUpdatedEnvelope as InfoSectionUpdatedEnvelope, type index_d$7_InfoSectionsQueryBuilder as InfoSectionsQueryBuilder, type index_d$7_InfoSectionsQueryResult as InfoSectionsQueryResult, InitialExpandedItems$1 as InitialExpandedItems, type InvalidateCache$4 as InvalidateCache, type InvalidateCacheGetByOneOf$4 as InvalidateCacheGetByOneOf, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$3 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type index_d$7_MaskedInfoSection as MaskedInfoSection, type Media$1 as Media, type MentionData$1 as MentionData, type MessageEnvelope$6 as MessageEnvelope, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type Page$4 as Page, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type index_d$7_QueryInfoSectionsOptions as QueryInfoSectionsOptions, type index_d$7_QueryInfoSectionsRequest as QueryInfoSectionsRequest, type index_d$7_QueryInfoSectionsResponse as QueryInfoSectionsResponse, type index_d$7_QueryInfoSectionsResponseNonNullableFields as QueryInfoSectionsResponseNonNullableFields, type Rel$1 as Rel, RequestedFields$2 as RequestedFields, type RestoreInfo$4 as RestoreInfo, type RichContent$1 as RichContent, type Settings$1 as Settings, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, Type$1 as Type, type URI$4 as URI, type index_d$7_UpdateInfoSection as UpdateInfoSection, type index_d$7_UpdateInfoSectionOptions as UpdateInfoSectionOptions, type index_d$7_UpdateInfoSectionRequest as UpdateInfoSectionRequest, type index_d$7_UpdateInfoSectionResponse as UpdateInfoSectionResponse, type index_d$7_UpdateInfoSectionResponseNonNullableFields as UpdateInfoSectionResponseNonNullableFields, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$6 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type index_d$7__publicOnInfoSectionCreatedType as _publicOnInfoSectionCreatedType, type index_d$7__publicOnInfoSectionDeletedType as _publicOnInfoSectionDeletedType, type index_d$7__publicOnInfoSectionUpdatedType as _publicOnInfoSectionUpdatedType, index_d$7_bulkCreateInfoSections as bulkCreateInfoSections, index_d$7_bulkDeleteInfoSections as bulkDeleteInfoSections, index_d$7_bulkGetOrCreateInfoSections as bulkGetOrCreateInfoSections, index_d$7_bulkUpdateInfoSections as bulkUpdateInfoSections, index_d$7_createInfoSection as createInfoSection, index_d$7_deleteInfoSection as deleteInfoSection, index_d$7_getInfoSection as getInfoSection, index_d$7_getOrCreateInfoSection as getOrCreateInfoSection, index_d$7_onInfoSectionCreated as onInfoSectionCreated, index_d$7_onInfoSectionDeleted as onInfoSectionDeleted, index_d$7_onInfoSectionUpdated as onInfoSectionUpdated, onInfoSectionCreated$1 as publicOnInfoSectionCreated, onInfoSectionDeleted$1 as publicOnInfoSectionDeleted, onInfoSectionUpdated$1 as publicOnInfoSectionUpdated, index_d$7_queryInfoSections as queryInfoSections, index_d$7_updateInfoSection as updateInfoSection };
|
|
8267
8282
|
}
|
|
8268
8283
|
|
|
8269
8284
|
/** Inventory Item. */
|
|
@@ -10533,6 +10548,8 @@ interface Node extends NodeDataOneOf {
|
|
|
10533
10548
|
bulletedListData?: BulletedListData;
|
|
10534
10549
|
/** Data for a block quote node. */
|
|
10535
10550
|
blockquoteData?: BlockquoteData;
|
|
10551
|
+
/** Data for a caption node. */
|
|
10552
|
+
captionData?: CaptionData;
|
|
10536
10553
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
10537
10554
|
type?: NodeType;
|
|
10538
10555
|
/** Node ID. */
|
|
@@ -10594,6 +10611,8 @@ interface NodeDataOneOf {
|
|
|
10594
10611
|
bulletedListData?: BulletedListData;
|
|
10595
10612
|
/** Data for a block quote node. */
|
|
10596
10613
|
blockquoteData?: BlockquoteData;
|
|
10614
|
+
/** Data for a caption node. */
|
|
10615
|
+
captionData?: CaptionData;
|
|
10597
10616
|
}
|
|
10598
10617
|
declare enum NodeType {
|
|
10599
10618
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -10625,7 +10644,8 @@ declare enum NodeType {
|
|
|
10625
10644
|
TABLE_CELL = "TABLE_CELL",
|
|
10626
10645
|
TABLE_ROW = "TABLE_ROW",
|
|
10627
10646
|
EXTERNAL = "EXTERNAL",
|
|
10628
|
-
AUDIO = "AUDIO"
|
|
10647
|
+
AUDIO = "AUDIO",
|
|
10648
|
+
CAPTION = "CAPTION"
|
|
10629
10649
|
}
|
|
10630
10650
|
interface NodeStyle {
|
|
10631
10651
|
/** The top padding value in pixels. */
|
|
@@ -11115,7 +11135,10 @@ interface ImageData {
|
|
|
11115
11135
|
disableExpand?: boolean | null;
|
|
11116
11136
|
/** Image's alternative text. */
|
|
11117
11137
|
altText?: string | null;
|
|
11118
|
-
/**
|
|
11138
|
+
/**
|
|
11139
|
+
* Deprecated: use Caption node instead.
|
|
11140
|
+
* @deprecated
|
|
11141
|
+
*/
|
|
11119
11142
|
caption?: string | null;
|
|
11120
11143
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
11121
11144
|
disableDownload?: boolean | null;
|
|
@@ -11660,6 +11683,9 @@ interface BlockquoteData {
|
|
|
11660
11683
|
/** Indentation level from 1-4. */
|
|
11661
11684
|
indentation?: number;
|
|
11662
11685
|
}
|
|
11686
|
+
interface CaptionData {
|
|
11687
|
+
textStyle?: TextStyle;
|
|
11688
|
+
}
|
|
11663
11689
|
interface Metadata {
|
|
11664
11690
|
/** Schema version. */
|
|
11665
11691
|
version?: number;
|
|
@@ -15751,6 +15777,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
15751
15777
|
interface BlockquoteDataNonNullableFields {
|
|
15752
15778
|
indentation: number;
|
|
15753
15779
|
}
|
|
15780
|
+
interface CaptionDataNonNullableFields {
|
|
15781
|
+
textStyle?: TextStyleNonNullableFields;
|
|
15782
|
+
}
|
|
15754
15783
|
interface NodeNonNullableFields {
|
|
15755
15784
|
buttonData?: ButtonDataNonNullableFields;
|
|
15756
15785
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -15776,6 +15805,7 @@ interface NodeNonNullableFields {
|
|
|
15776
15805
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
15777
15806
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
15778
15807
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
15808
|
+
captionData?: CaptionDataNonNullableFields;
|
|
15779
15809
|
type: NodeType;
|
|
15780
15810
|
_id: string;
|
|
15781
15811
|
nodes: NodeNonNullableFields[];
|
|
@@ -17364,6 +17394,7 @@ type index_d$5_BulkUpdateVariantsByFilterRequest = BulkUpdateVariantsByFilterReq
|
|
|
17364
17394
|
type index_d$5_BulkUpdateVariantsByFilterResponse = BulkUpdateVariantsByFilterResponse;
|
|
17365
17395
|
type index_d$5_BulletedListData = BulletedListData;
|
|
17366
17396
|
type index_d$5_ButtonData = ButtonData;
|
|
17397
|
+
type index_d$5_CaptionData = CaptionData;
|
|
17367
17398
|
type index_d$5_CatalogV3BulkProductResult = CatalogV3BulkProductResult;
|
|
17368
17399
|
type index_d$5_CellStyle = CellStyle;
|
|
17369
17400
|
type index_d$5_ChoiceType = ChoiceType;
|
|
@@ -17876,7 +17907,7 @@ declare const index_d$5_updateExtendedFields: typeof updateExtendedFields;
|
|
|
17876
17907
|
declare const index_d$5_updateProduct: typeof updateProduct;
|
|
17877
17908
|
declare const index_d$5_updateProductWithInventory: typeof updateProductWithInventory;
|
|
17878
17909
|
declare namespace index_d$5 {
|
|
17879
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsOptions as CountProductsOptions, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductOptions as CreateProductOptions, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_FulfillerDeleted as FulfillerDeleted, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugOptions as GetProductBySlugOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductOptions as GetProductOptions, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemStyle as ItemStyle, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, index_d$5_MediaType as MediaType, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCategoryIdsInfo as ProductCategoryIdsInfo, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductPreorderAvailability as ProductPreorderAvailability, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RetrieveVariantsRequest as RetrieveVariantsRequest, type index_d$5_RetrieveVariantsResponse as RetrieveVariantsResponse, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsOptions as SearchProductsOptions, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SearchRelated as SearchRelated, type index_d$5_SearchRelatedDetails as SearchRelatedDetails, type index_d$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type index_d$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnail as Thumbnail, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProduct as UpdateProduct, type index_d$5_UpdateProductOptions as UpdateProductOptions, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsCursorPaging as VariantsCursorPaging, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VariantsOpsRequestedFields as VariantsOpsRequestedFields, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, index_d$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, index_d$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProducts as bulkCreateProducts, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkDeleteProducts as bulkDeleteProducts, index_d$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, index_d$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, index_d$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProducts as bulkUpdateProducts, index_d$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_countProducts as countProducts, index_d$5_createProduct as createProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_deleteProduct as deleteProduct, index_d$5_getProduct as getProduct, index_d$5_getProductBySlug as getProductBySlug, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_queryProducts as queryProducts, index_d$5_searchProducts as searchProducts, index_d$5_updateExtendedFields as updateExtendedFields, index_d$5_updateProduct as updateProduct, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
17910
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$5_AdjustValue as AdjustValue, type index_d$5_AdjustValueAdjustValueOneOf as AdjustValueAdjustValueOneOf, type index_d$5_Aggregation as Aggregation, type index_d$5_AggregationData as AggregationData, type index_d$5_AggregationDataAggregationResults as AggregationDataAggregationResults, type index_d$5_AggregationDataAggregationResultsResultOneOf as AggregationDataAggregationResultsResultOneOf, type index_d$5_AggregationDataAggregationResultsScalarResult as AggregationDataAggregationResultsScalarResult, type index_d$5_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, index_d$5_AggregationDateHistogramAggregationInterval as AggregationDateHistogramAggregationInterval, type index_d$5_AggregationKindOneOf as AggregationKindOneOf, type index_d$5_AggregationNestedAggregation as AggregationNestedAggregation, type index_d$5_AggregationNestedAggregationNestedAggregationItem as AggregationNestedAggregationNestedAggregationItem, type index_d$5_AggregationNestedAggregationNestedAggregationItemKindOneOf as AggregationNestedAggregationNestedAggregationItemKindOneOf, index_d$5_AggregationNestedAggregationNestedAggregationType as AggregationNestedAggregationNestedAggregationType, type index_d$5_AggregationRangeAggregation as AggregationRangeAggregation, type index_d$5_AggregationRangeAggregationRangeBucket as AggregationRangeAggregationRangeBucket, type index_d$5_AggregationResults as AggregationResults, type index_d$5_AggregationResultsDateHistogramResults as AggregationResultsDateHistogramResults, type index_d$5_AggregationResultsGroupByValueResults as AggregationResultsGroupByValueResults, type index_d$5_AggregationResultsNestedAggregationResults as AggregationResultsNestedAggregationResults, type index_d$5_AggregationResultsNestedAggregationResultsResultOneOf as AggregationResultsNestedAggregationResultsResultOneOf, type index_d$5_AggregationResultsNestedResults as AggregationResultsNestedResults, type index_d$5_AggregationResultsRangeResults as AggregationResultsRangeResults, type index_d$5_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$5_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d$5_AggregationResultsValueResults as AggregationResultsValueResults, type index_d$5_AggregationScalarAggregation as AggregationScalarAggregation, index_d$5_AggregationType as AggregationType, type index_d$5_AggregationValueAggregation as AggregationValueAggregation, type index_d$5_AggregationValueAggregationIncludeMissingValuesOptions as AggregationValueAggregationIncludeMissingValuesOptions, index_d$5_AggregationValueAggregationMissingValues as AggregationValueAggregationMissingValues, type index_d$5_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, index_d$5_AggregationValueAggregationSortDirection as AggregationValueAggregationSortDirection, index_d$5_AggregationValueAggregationSortType as AggregationValueAggregationSortType, index_d$5_Alignment as Alignment, type index_d$5_AnchorData as AnchorData, type App$2 as App, type index_d$5_AppEmbedData as AppEmbedData, type index_d$5_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$5_AppType as AppType, type ApplicationError$1 as ApplicationError, type index_d$5_AudioData as AudioData, index_d$5_AvailabilityStatus as AvailabilityStatus, type index_d$5_Background as Background, type index_d$5_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$5_BackgroundType as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$5_BlockquoteData as BlockquoteData, type index_d$5_BookingData as BookingData, type index_d$5_Border as Border, type index_d$5_BorderColors as BorderColors, type index_d$5_Brand as Brand, type index_d$5_BreadCrumb as BreadCrumb, type index_d$5_BreadcrumbsInfo as BreadcrumbsInfo, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$5_BulkAddInfoSectionsToProductsByFilterOptions as BulkAddInfoSectionsToProductsByFilterOptions, type index_d$5_BulkAddInfoSectionsToProductsByFilterRequest as BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_BulkAddInfoSectionsToProductsByFilterResponse as BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_BulkAddInfoSectionsToProductsOptions as BulkAddInfoSectionsToProductsOptions, type index_d$5_BulkAddInfoSectionsToProductsRequest as BulkAddInfoSectionsToProductsRequest, type index_d$5_BulkAddInfoSectionsToProductsResponse as BulkAddInfoSectionsToProductsResponse, type index_d$5_BulkAddProductsToCategoriesByFilterOptions as BulkAddProductsToCategoriesByFilterOptions, type index_d$5_BulkAddProductsToCategoriesByFilterRequest as BulkAddProductsToCategoriesByFilterRequest, type index_d$5_BulkAddProductsToCategoriesByFilterResponse as BulkAddProductsToCategoriesByFilterResponse, type index_d$5_BulkAddProductsToCategoriesByFilterResponseNonNullableFields as BulkAddProductsToCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkAdjustProductVariantsByFilterOptions as BulkAdjustProductVariantsByFilterOptions, type index_d$5_BulkAdjustProductVariantsByFilterRequest as BulkAdjustProductVariantsByFilterRequest, index_d$5_BulkAdjustProductVariantsByFilterRequestRoundingStrategy as BulkAdjustProductVariantsByFilterRequestRoundingStrategy, type index_d$5_BulkAdjustProductVariantsByFilterResponse as BulkAdjustProductVariantsByFilterResponse, type index_d$5_BulkAdjustProductVariantsByFilterResponseNonNullableFields as BulkAdjustProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkAdjustVariantsByFilterRequest as BulkAdjustVariantsByFilterRequest, type index_d$5_BulkAdjustVariantsByFilterResponse as BulkAdjustVariantsByFilterResponse, type index_d$5_BulkCreateProductsOptions as BulkCreateProductsOptions, type index_d$5_BulkCreateProductsRequest as BulkCreateProductsRequest, type index_d$5_BulkCreateProductsResponse as BulkCreateProductsResponse, type index_d$5_BulkCreateProductsResponseNonNullableFields as BulkCreateProductsResponseNonNullableFields, type index_d$5_BulkCreateProductsWithInventoryOptions as BulkCreateProductsWithInventoryOptions, type index_d$5_BulkCreateProductsWithInventoryRequest as BulkCreateProductsWithInventoryRequest, type index_d$5_BulkCreateProductsWithInventoryResponse as BulkCreateProductsWithInventoryResponse, type index_d$5_BulkCreateProductsWithInventoryResponseNonNullableFields as BulkCreateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkDeleteProductsByFilterOptions as BulkDeleteProductsByFilterOptions, type index_d$5_BulkDeleteProductsByFilterRequest as BulkDeleteProductsByFilterRequest, type index_d$5_BulkDeleteProductsByFilterResponse as BulkDeleteProductsByFilterResponse, type index_d$5_BulkDeleteProductsRequest as BulkDeleteProductsRequest, type index_d$5_BulkDeleteProductsResponse as BulkDeleteProductsResponse, type index_d$5_BulkDeleteProductsResponseBulkProductResult as BulkDeleteProductsResponseBulkProductResult, type index_d$5_BulkInventoryItemAction as BulkInventoryItemAction, type index_d$5_BulkInventoryItemResult as BulkInventoryItemResult, type index_d$5_BulkInventoryItemResults as BulkInventoryItemResults, type index_d$5_BulkProductResult as BulkProductResult, type index_d$5_BulkProductResults as BulkProductResults, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterOptions as BulkRemoveInfoSectionsFromProductsByFilterOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterRequest as BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsByFilterResponse as BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_BulkRemoveInfoSectionsFromProductsOptions as BulkRemoveInfoSectionsFromProductsOptions, type index_d$5_BulkRemoveInfoSectionsFromProductsRequest as BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_BulkRemoveInfoSectionsFromProductsResponse as BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterOptions as BulkRemoveProductsFromCategoriesByFilterOptions, type index_d$5_BulkRemoveProductsFromCategoriesByFilterRequest as BulkRemoveProductsFromCategoriesByFilterRequest, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponse as BulkRemoveProductsFromCategoriesByFilterResponse, type index_d$5_BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields as BulkRemoveProductsFromCategoriesByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductVariantsByFilterOptions as BulkUpdateProductVariantsByFilterOptions, type index_d$5_BulkUpdateProductVariantsByFilterRequest as BulkUpdateProductVariantsByFilterRequest, type index_d$5_BulkUpdateProductVariantsByFilterResponse as BulkUpdateProductVariantsByFilterResponse, type index_d$5_BulkUpdateProductVariantsByFilterResponseNonNullableFields as BulkUpdateProductVariantsByFilterResponseNonNullableFields, type index_d$5_BulkUpdateProductsByFilterOptions as BulkUpdateProductsByFilterOptions, type index_d$5_BulkUpdateProductsByFilterRequest as BulkUpdateProductsByFilterRequest, type index_d$5_BulkUpdateProductsByFilterResponse as BulkUpdateProductsByFilterResponse, type index_d$5_BulkUpdateProductsOptions as BulkUpdateProductsOptions, type index_d$5_BulkUpdateProductsRequest as BulkUpdateProductsRequest, type index_d$5_BulkUpdateProductsResponse as BulkUpdateProductsResponse, type index_d$5_BulkUpdateProductsResponseNonNullableFields as BulkUpdateProductsResponseNonNullableFields, type index_d$5_BulkUpdateProductsWithInventoryOptions as BulkUpdateProductsWithInventoryOptions, type index_d$5_BulkUpdateProductsWithInventoryRequest as BulkUpdateProductsWithInventoryRequest, type index_d$5_BulkUpdateProductsWithInventoryResponse as BulkUpdateProductsWithInventoryResponse, type index_d$5_BulkUpdateProductsWithInventoryResponseNonNullableFields as BulkUpdateProductsWithInventoryResponseNonNullableFields, type index_d$5_BulkUpdateVariantsByFilterRequest as BulkUpdateVariantsByFilterRequest, type index_d$5_BulkUpdateVariantsByFilterResponse as BulkUpdateVariantsByFilterResponse, type index_d$5_BulletedListData as BulletedListData, type index_d$5_ButtonData as ButtonData, type index_d$5_CaptionData as CaptionData, type index_d$5_CatalogV3BulkProductResult as CatalogV3BulkProductResult, type index_d$5_CellStyle as CellStyle, index_d$5_ChoiceType as ChoiceType, type index_d$5_ChoicesSettings as ChoicesSettings, type index_d$5_CodeBlockData as CodeBlockData, type index_d$5_CollapsibleListData as CollapsibleListData, type index_d$5_ColorData as ColorData, type index_d$5_Colors as Colors, type index_d$5_CommonAggregation as CommonAggregation, type index_d$5_CommonAggregationData as CommonAggregationData, type index_d$5_CommonAggregationDateHistogramAggregation as CommonAggregationDateHistogramAggregation, type index_d$5_CommonAggregationKindOneOf as CommonAggregationKindOneOf, type index_d$5_CommonAggregationNestedAggregation as CommonAggregationNestedAggregation, type index_d$5_CommonAggregationRangeAggregation as CommonAggregationRangeAggregation, type index_d$5_CommonAggregationScalarAggregation as CommonAggregationScalarAggregation, index_d$5_CommonAggregationType as CommonAggregationType, type index_d$5_CommonAggregationValueAggregation as CommonAggregationValueAggregation, type index_d$5_CommonAggregationValueAggregationOptionsOneOf as CommonAggregationValueAggregationOptionsOneOf, type index_d$5_CommonBulkActionMetadata as CommonBulkActionMetadata, type index_d$5_CommonCursorPaging as CommonCursorPaging, type index_d$5_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$5_CommonCursorQuery as CommonCursorQuery, type index_d$5_CommonCursorQueryPagingMethodOneOf as CommonCursorQueryPagingMethodOneOf, type index_d$5_CommonCursorSearch as CommonCursorSearch, type index_d$5_CommonCursorSearchPagingMethodOneOf as CommonCursorSearchPagingMethodOneOf, type index_d$5_CommonCursors as CommonCursors, type index_d$5_CommonItemMetadata as CommonItemMetadata, index_d$5_CommonScalarType as CommonScalarType, type index_d$5_CommonSearchDetails as CommonSearchDetails, index_d$5_CommonSearchDetailsMode as CommonSearchDetailsMode, index_d$5_CommonSortOrder as CommonSortOrder, type index_d$5_CommonSorting as CommonSorting, type index_d$5_ConnectedModifier as ConnectedModifier, type index_d$5_ConnectedModifierChoice as ConnectedModifierChoice, type index_d$5_ConnectedModifierChoiceValueOneOf as ConnectedModifierChoiceValueOneOf, type index_d$5_ConnectedModifierModifierSettingsOneOf as ConnectedModifierModifierSettingsOneOf, type index_d$5_ConnectedOption as ConnectedOption, type index_d$5_ConnectedOptionChoice as ConnectedOptionChoice, type index_d$5_ConnectedOptionChoiceValueOneOf as ConnectedOptionChoiceValueOneOf, type index_d$5_ConnectedOptionOptionSettingsOneOf as ConnectedOptionOptionSettingsOneOf, type index_d$5_CountProductsOptions as CountProductsOptions, type index_d$5_CountProductsRequest as CountProductsRequest, type index_d$5_CountProductsResponse as CountProductsResponse, type index_d$5_CreateProductOptions as CreateProductOptions, type index_d$5_CreateProductRequest as CreateProductRequest, type index_d$5_CreateProductResponse as CreateProductResponse, type index_d$5_CreateProductResponseNonNullableFields as CreateProductResponseNonNullableFields, type index_d$5_CreateProductWithInventoryOptions as CreateProductWithInventoryOptions, type index_d$5_CreateProductWithInventoryRequest as CreateProductWithInventoryRequest, type index_d$5_CreateProductWithInventoryResponse as CreateProductWithInventoryResponse, type index_d$5_CreateProductWithInventoryResponseNonNullableFields as CreateProductWithInventoryResponseNonNullableFields, index_d$5_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_DateHistogramAggregation as DateHistogramAggregation, index_d$5_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$5_DateHistogramResult as DateHistogramResult, type index_d$5_DateHistogramResults as DateHistogramResults, type index_d$5_DateHistogramResultsDateHistogramResult as DateHistogramResultsDateHistogramResult, type index_d$5_Decoration as Decoration, type index_d$5_DecorationDataOneOf as DecorationDataOneOf, index_d$5_DecorationType as DecorationType, type index_d$5_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$5_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$5_DeleteProductRequest as DeleteProductRequest, type index_d$5_DeleteProductResponse as DeleteProductResponse, type index_d$5_DeprecatedSearchProductsWithOffsetRequest as DeprecatedSearchProductsWithOffsetRequest, type index_d$5_DeprecatedSearchProductsWithOffsetResponse as DeprecatedSearchProductsWithOffsetResponse, type index_d$5_Design as Design, type index_d$5_Dimensions as Dimensions, index_d$5_Direction as Direction, DiscountType$1 as DiscountType, type index_d$5_DividerData as DividerData, type index_d$5_DoNotCallBulkCreateProductsRequest as DoNotCallBulkCreateProductsRequest, type index_d$5_DoNotCallBulkCreateProductsResponse as DoNotCallBulkCreateProductsResponse, type index_d$5_DoNotCallBulkUpdateProductsRequest as DoNotCallBulkUpdateProductsRequest, type index_d$5_DoNotCallBulkUpdateProductsResponse as DoNotCallBulkUpdateProductsResponse, type index_d$5_DoNotCallCreateProductRequest as DoNotCallCreateProductRequest, type index_d$5_DoNotCallCreateProductResponse as DoNotCallCreateProductResponse, type index_d$5_DoNotCallUpdateProductRequest as DoNotCallUpdateProductRequest, type index_d$5_DoNotCallUpdateProductResponse as DoNotCallUpdateProductResponse, type index_d$5_DocumentImage as DocumentImage, type index_d$5_DocumentPayload as DocumentPayload, type index_d$5_DocumentStyle as DocumentStyle, type index_d$5_DocumentUpdateOperation as DocumentUpdateOperation, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$5_EmbedData as EmbedData, type Empty$3 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, index_d$5_Enum as Enum, type index_d$5_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$5_EventuallyConsistentQueryProductsRequest as EventuallyConsistentQueryProductsRequest, type index_d$5_EventuallyConsistentQueryProductsResponse as EventuallyConsistentQueryProductsResponse, type index_d$5_ExtendedFields as ExtendedFields, type File$2 as File, type index_d$5_FileData as FileData, type index_d$5_FileSource as FileSource, type index_d$5_FileSourceDataOneOf as FileSourceDataOneOf, index_d$5_FileType as FileType, type index_d$5_FixedMonetaryAmount as FixedMonetaryAmount, type index_d$5_FontSizeData as FontSizeData, index_d$5_FontType as FontType, type index_d$5_FreeTextSettings as FreeTextSettings, type index_d$5_FulfillerDeleted as FulfillerDeleted, type index_d$5_GIF as GIF, type index_d$5_GIFData as GIFData, type index_d$5_GalleryData as GalleryData, type index_d$5_GalleryOptions as GalleryOptions, type index_d$5_GetProductBySlugOptions as GetProductBySlugOptions, type index_d$5_GetProductBySlugRequest as GetProductBySlugRequest, type index_d$5_GetProductBySlugResponse as GetProductBySlugResponse, type index_d$5_GetProductOptions as GetProductOptions, type index_d$5_GetProductRequest as GetProductRequest, type index_d$5_GetProductResponse as GetProductResponse, type index_d$5_Gradient as Gradient, type index_d$5_GroupByAggregation as GroupByAggregation, type index_d$5_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$5_GroupByValueResults as GroupByValueResults, type index_d$5_GroupByValueResultsNestedValueAggregationResult as GroupByValueResultsNestedValueAggregationResult, type index_d$5_HTMLData as HTMLData, type index_d$5_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$5_HeadingData as HeadingData, type index_d$5_Height as Height, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_Image as Image, type index_d$5_ImageData as ImageData, type index_d$5_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$5_IndexDocument as IndexDocument, type index_d$5_InfoSection as InfoSection, index_d$5_InitialExpandedItems as InitialExpandedItems, index_d$5_Interval as Interval, type InvalidateCache$2 as InvalidateCache, type InvalidateCacheGetByOneOf$2 as InvalidateCacheGetByOneOf, type index_d$5_Inventory as Inventory, index_d$5_InventoryAvailabilityStatus as InventoryAvailabilityStatus, type index_d$5_InventoryItem as InventoryItem, type index_d$5_InventoryItemComposite as InventoryItemComposite, type index_d$5_InventoryItemCompositeTrackingMethodOneOf as InventoryItemCompositeTrackingMethodOneOf, type index_d$5_InventoryItemTrackingMethodOneOf as InventoryItemTrackingMethodOneOf, type index_d$5_InventoryStatus as InventoryStatus, type index_d$5_Item as Item, type index_d$5_ItemDataOneOf as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type index_d$5_ItemStyle as ItemStyle, type index_d$5_Keyword as Keyword, type index_d$5_Layout as Layout, index_d$5_LayoutType as LayoutType, index_d$5_LineStyle as LineStyle, type index_d$5_Link as Link, type index_d$5_LinkData as LinkData, type index_d$5_LinkDataOneOf as LinkDataOneOf, type index_d$5_LinkPreviewData as LinkPreviewData, type index_d$5_ListValue as ListValue, type index_d$5_MapData as MapData, type index_d$5_MapSettings as MapSettings, index_d$5_MapType as MapType, type index_d$5_MaskedProduct as MaskedProduct, type index_d$5_MaskedProductWithInventory as MaskedProductWithInventory, index_d$5_MeasurementUnit as MeasurementUnit, type index_d$5_Media as Media, type index_d$5_MediaItemsInfo as MediaItemsInfo, index_d$5_MediaType as MediaType, type index_d$5_MentionData as MentionData, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_Metadata as Metadata, type index_d$5_MinVariantPriceInfo as MinVariantPriceInfo, index_d$5_MissingValues as MissingValues, index_d$5_Mode as Mode, type index_d$5_ModifierChoicesSettings as ModifierChoicesSettings, index_d$5_ModifierRenderType as ModifierRenderType, type index_d$5_MultipleColors as MultipleColors, type index_d$5_NestedAggregation as NestedAggregation, type index_d$5_NestedAggregationItem as NestedAggregationItem, type index_d$5_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$5_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d$5_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d$5_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type index_d$5_NestedAggregationResults as NestedAggregationResults, type index_d$5_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$5_NestedAggregationType as NestedAggregationType, type index_d$5_NestedResultValue as NestedResultValue, type index_d$5_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$5_NestedResults as NestedResults, type index_d$5_NestedResultsNestedResultValue as NestedResultsNestedResultValue, type index_d$5_NestedResultsNestedResultValueResultOneOf as NestedResultsNestedResultValueResultOneOf, type index_d$5_NestedResultsRangeResult as NestedResultsRangeResult, type index_d$5_NestedResultsResults as NestedResultsResults, type index_d$5_NestedResultsScalarResult as NestedResultsScalarResult, type index_d$5_NestedResultsValueResult as NestedResultsValueResult, type index_d$5_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$5_Node as Node, type index_d$5_NodeDataOneOf as NodeDataOneOf, type index_d$5_NodeStyle as NodeStyle, index_d$5_NodeType as NodeType, index_d$5_NullValue as NullValue, type index_d$5_Oembed as Oembed, type index_d$5_Option as Option, type index_d$5_OptionChoice as OptionChoice, type index_d$5_OptionChoiceIds as OptionChoiceIds, type index_d$5_OptionChoiceNames as OptionChoiceNames, type index_d$5_OptionChoiceReferences as OptionChoiceReferences, type index_d$5_OptionDesign as OptionDesign, type index_d$5_OptionLayout as OptionLayout, type index_d$5_OrderedListData as OrderedListData, index_d$5_Orientation as Orientation, type index_d$5_PDFSettings as PDFSettings, type Page$2 as Page, type PagingMetadata$2 as PagingMetadata, type index_d$5_ParagraphData as ParagraphData, type index_d$5_Permissions as Permissions, type index_d$5_PhysicalProperties as PhysicalProperties, type index_d$5_PlatformOffsetSearch as PlatformOffsetSearch, type index_d$5_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d$5_PlatformPaging as PlatformPaging, type index_d$5_PlaybackOptions as PlaybackOptions, type index_d$5_PluginContainerData as PluginContainerData, index_d$5_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$5_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$5_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$5_Poll as Poll, type index_d$5_PollData as PollData, type index_d$5_PollDataLayout as PollDataLayout, type index_d$5_PollDesign as PollDesign, type index_d$5_PollLayout as PollLayout, index_d$5_PollLayoutDirection as PollLayoutDirection, index_d$5_PollLayoutType as PollLayoutType, type index_d$5_PollSettings as PollSettings, type PreorderInfo$1 as PreorderInfo, index_d$5_PreorderStatus as PreorderStatus, type index_d$5_PriceInfo as PriceInfo, type index_d$5_PricePerUnit as PricePerUnit, type index_d$5_PricePerUnitRange as PricePerUnitRange, type index_d$5_PricePerUnitRangePricePerUnit as PricePerUnitRangePricePerUnit, type index_d$5_PricePerUnitSettings as PricePerUnitSettings, type index_d$5_PriceRange as PriceRange, type index_d$5_Product as Product, type index_d$5_ProductCategoriesInfo as ProductCategoriesInfo, type index_d$5_ProductCategory as ProductCategory, type index_d$5_ProductCategoryIdsInfo as ProductCategoryIdsInfo, type index_d$5_ProductCreatedEnvelope as ProductCreatedEnvelope, type index_d$5_ProductDeletedEnvelope as ProductDeletedEnvelope, type index_d$5_ProductIdWithRevision as ProductIdWithRevision, type index_d$5_ProductMedia as ProductMedia, type index_d$5_ProductMediaMediaOneOf as ProductMediaMediaOneOf, type index_d$5_ProductMediaSetByOneOf as ProductMediaSetByOneOf, index_d$5_ProductOptionRenderType as ProductOptionRenderType, index_d$5_ProductPreorderAvailability as ProductPreorderAvailability, index_d$5_ProductType as ProductType, type index_d$5_ProductUpdatedEnvelope as ProductUpdatedEnvelope, type index_d$5_ProductVariantIds as ProductVariantIds, type index_d$5_ProductVariants as ProductVariants, type index_d$5_ProductWithInventory as ProductWithInventory, type index_d$5_ProductWithInventoryTypedPropertiesOneOf as ProductWithInventoryTypedPropertiesOneOf, type index_d$5_ProductsQueryBuilder as ProductsQueryBuilder, type index_d$5_ProductsQueryResult as ProductsQueryResult, type index_d$5_QueryProductsOptions as QueryProductsOptions, type index_d$5_QueryProductsRequest as QueryProductsRequest, type index_d$5_QueryProductsResponse as QueryProductsResponse, type index_d$5_RangeAggregation as RangeAggregation, type index_d$5_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type index_d$5_RangeAggregationResult as RangeAggregationResult, type index_d$5_RangeBucket as RangeBucket, type index_d$5_RangeResult as RangeResult, type index_d$5_RangeResults as RangeResults, type index_d$5_RangeResultsRangeAggregationResult as RangeResultsRangeAggregationResult, type index_d$5_Rel as Rel, RequestedFields$1 as RequestedFields, type RestoreInfo$2 as RestoreInfo, type index_d$5_Results as Results, type index_d$5_RetrieveVariantsRequest as RetrieveVariantsRequest, type index_d$5_RetrieveVariantsResponse as RetrieveVariantsResponse, type index_d$5_RevenueDetails as RevenueDetails, type Ribbon$1 as Ribbon, type index_d$5_RichContent as RichContent, index_d$5_RoundingStrategy as RoundingStrategy, type index_d$5_ScalarAggregation as ScalarAggregation, type index_d$5_ScalarResult as ScalarResult, index_d$5_ScalarType as ScalarType, type index_d$5_SearchDetails as SearchDetails, index_d$5_SearchDetailsMode as SearchDetailsMode, type index_d$5_SearchIndexingNotification as SearchIndexingNotification, type index_d$5_SearchProductsOptions as SearchProductsOptions, type index_d$5_SearchProductsRequest as SearchProductsRequest, type index_d$5_SearchProductsResponse as SearchProductsResponse, type index_d$5_SearchRelated as SearchRelated, type index_d$5_SearchRelatedDetails as SearchRelatedDetails, type index_d$5_SearchRelatedProductsRequest as SearchRelatedProductsRequest, type index_d$5_SearchRelatedProductsResponse as SearchRelatedProductsResponse, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SeoSchema as SeoSchema, type index_d$5_Settings as Settings, index_d$5_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d$5_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$5_SortType as SortType, type Sorting$2 as Sorting, index_d$5_Source as Source, type index_d$5_Spoiler as Spoiler, type index_d$5_SpoilerData as SpoilerData, State$1 as State, type index_d$5_Styles as Styles, type index_d$5_Subscription as Subscription, type index_d$5_SubscriptionCyclesOneOf as SubscriptionCyclesOneOf, type index_d$5_SubscriptionDetails as SubscriptionDetails, type index_d$5_SubscriptionDiscount as SubscriptionDiscount, type index_d$5_SubscriptionDiscountDiscountOneOf as SubscriptionDiscountDiscountOneOf, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$5_SubscriptionPrice as SubscriptionPrice, type index_d$5_SubscriptionPricePerUnit as SubscriptionPricePerUnit, type index_d$5_SubscriptionPricesInfo as SubscriptionPricesInfo, type index_d$5_TableCellData as TableCellData, type index_d$5_TableData as TableData, type index_d$5_Tag as Tag, index_d$5_Target as Target, index_d$5_TextAlignment as TextAlignment, type index_d$5_TextData as TextData, type index_d$5_TextNodeStyle as TextNodeStyle, type index_d$5_TextStyle as TextStyle, type index_d$5_Thumbnail as Thumbnail, type index_d$5_Thumbnails as Thumbnails, index_d$5_ThumbnailsAlignment as ThumbnailsAlignment, index_d$5_Type as Type, type URI$2 as URI, type index_d$5_UnsignedAdjustValue as UnsignedAdjustValue, type index_d$5_UnsignedAdjustValueAdjustValueOneOf as UnsignedAdjustValueAdjustValueOneOf, type index_d$5_UnsupportedFieldMasks as UnsupportedFieldMasks, type index_d$5_UpdateByFilterOperation as UpdateByFilterOperation, type index_d$5_UpdateDocumentsEvent as UpdateDocumentsEvent, type index_d$5_UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOf, type index_d$5_UpdateExistingOperation as UpdateExistingOperation, type index_d$5_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$5_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$5_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$5_UpdateProduct as UpdateProduct, type index_d$5_UpdateProductOptions as UpdateProductOptions, type index_d$5_UpdateProductRequest as UpdateProductRequest, type index_d$5_UpdateProductResponse as UpdateProductResponse, type index_d$5_UpdateProductResponseNonNullableFields as UpdateProductResponseNonNullableFields, type index_d$5_UpdateProductWithInventoryOptions as UpdateProductWithInventoryOptions, type index_d$5_UpdateProductWithInventoryProduct as UpdateProductWithInventoryProduct, type index_d$5_UpdateProductWithInventoryRequest as UpdateProductWithInventoryRequest, type index_d$5_UpdateProductWithInventoryResponse as UpdateProductWithInventoryResponse, type index_d$5_UpdateProductWithInventoryResponseNonNullableFields as UpdateProductWithInventoryResponseNonNullableFields, type index_d$5_V1Media as V1Media, type index_d$5_V3AdjustValue as V3AdjustValue, type index_d$5_V3AdjustValueAdjustValueOneOf as V3AdjustValueAdjustValueOneOf, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterRequest as V3BulkAddInfoSectionsToProductsByFilterRequest, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponse as V3BulkAddInfoSectionsToProductsByFilterResponse, type index_d$5_V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields as V3BulkAddInfoSectionsToProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkAddInfoSectionsToProductsRequest as V3BulkAddInfoSectionsToProductsRequest, type index_d$5_V3BulkAddInfoSectionsToProductsResponse as V3BulkAddInfoSectionsToProductsResponse, type index_d$5_V3BulkAddInfoSectionsToProductsResponseNonNullableFields as V3BulkAddInfoSectionsToProductsResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsByFilterRequest as V3BulkDeleteProductsByFilterRequest, type index_d$5_V3BulkDeleteProductsByFilterResponse as V3BulkDeleteProductsByFilterResponse, type index_d$5_V3BulkDeleteProductsByFilterResponseNonNullableFields as V3BulkDeleteProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkDeleteProductsRequest as V3BulkDeleteProductsRequest, type index_d$5_V3BulkDeleteProductsResponse as V3BulkDeleteProductsResponse, type index_d$5_V3BulkDeleteProductsResponseNonNullableFields as V3BulkDeleteProductsResponseNonNullableFields, type index_d$5_V3BulkProductResult as V3BulkProductResult, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterRequest as V3BulkRemoveInfoSectionsFromProductsByFilterRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponse as V3BulkRemoveInfoSectionsFromProductsByFilterResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsByFilterResponseNonNullableFields, type index_d$5_V3BulkRemoveInfoSectionsFromProductsRequest as V3BulkRemoveInfoSectionsFromProductsRequest, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponse as V3BulkRemoveInfoSectionsFromProductsResponse, type index_d$5_V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields as V3BulkRemoveInfoSectionsFromProductsResponseNonNullableFields, type index_d$5_V3BulkUpdateProductsByFilterRequest as V3BulkUpdateProductsByFilterRequest, type index_d$5_V3BulkUpdateProductsByFilterResponse as V3BulkUpdateProductsByFilterResponse, type index_d$5_V3BulkUpdateProductsByFilterResponseNonNullableFields as V3BulkUpdateProductsByFilterResponseNonNullableFields, type index_d$5_V3CountProductsRequest as V3CountProductsRequest, type index_d$5_V3CountProductsResponse as V3CountProductsResponse, type index_d$5_V3CountProductsResponseNonNullableFields as V3CountProductsResponseNonNullableFields, type index_d$5_V3DeleteProductRequest as V3DeleteProductRequest, type index_d$5_V3DeleteProductResponse as V3DeleteProductResponse, type index_d$5_V3GetProductBySlugRequest as V3GetProductBySlugRequest, type index_d$5_V3GetProductBySlugResponse as V3GetProductBySlugResponse, type index_d$5_V3GetProductBySlugResponseNonNullableFields as V3GetProductBySlugResponseNonNullableFields, type index_d$5_V3GetProductRequest as V3GetProductRequest, type index_d$5_V3GetProductResponse as V3GetProductResponse, type index_d$5_V3GetProductResponseNonNullableFields as V3GetProductResponseNonNullableFields, type index_d$5_V3MaskedProduct as V3MaskedProduct, type index_d$5_V3OptionChoiceIds as V3OptionChoiceIds, type index_d$5_V3OptionChoiceNames as V3OptionChoiceNames, type index_d$5_V3Product as V3Product, type index_d$5_V3ProductIdWithRevision as V3ProductIdWithRevision, type index_d$5_V3ProductNonNullableFields as V3ProductNonNullableFields, type index_d$5_V3ProductTypedPropertiesOneOf as V3ProductTypedPropertiesOneOf, type index_d$5_V3QueryProductsRequest as V3QueryProductsRequest, type index_d$5_V3QueryProductsResponse as V3QueryProductsResponse, type index_d$5_V3QueryProductsResponseNonNullableFields as V3QueryProductsResponseNonNullableFields, type index_d$5_V3SearchProductsRequest as V3SearchProductsRequest, type index_d$5_V3SearchProductsResponse as V3SearchProductsResponse, type index_d$5_V3SearchProductsResponseNonNullableFields as V3SearchProductsResponseNonNullableFields, type index_d$5_V3UnsignedAdjustValue as V3UnsignedAdjustValue, type index_d$5_V3UnsignedAdjustValueAdjustValueOneOf as V3UnsignedAdjustValueAdjustValueOneOf, type index_d$5_V3UpdateExtendedFieldsRequest as V3UpdateExtendedFieldsRequest, type index_d$5_V3UpdateExtendedFieldsResponse as V3UpdateExtendedFieldsResponse, type index_d$5_V3UpdateExtendedFieldsResponseNonNullableFields as V3UpdateExtendedFieldsResponseNonNullableFields, type index_d$5_V3VariantsInfo as V3VariantsInfo, type index_d$5_ValueAggregation as ValueAggregation, type index_d$5_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d$5_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d$5_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$5_ValueAggregationResult as ValueAggregationResult, index_d$5_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d$5_ValueAggregationSortType as ValueAggregationSortType, type index_d$5_ValueResult as ValueResult, type index_d$5_ValueResults as ValueResults, type index_d$5_ValueResultsValueAggregationResult as ValueResultsValueAggregationResult, type index_d$5_Variant as Variant, type index_d$5_VariantDigitalProperties as VariantDigitalProperties, type index_d$5_VariantNotAlignedWithProduct as VariantNotAlignedWithProduct, type index_d$5_VariantPhysicalProperties as VariantPhysicalProperties, type index_d$5_VariantSummary as VariantSummary, type index_d$5_VariantTypedPropertiesOneOf as VariantTypedPropertiesOneOf, type index_d$5_VariantWithInventory as VariantWithInventory, type index_d$5_VariantWithInventoryTypedPropertiesOneOf as VariantWithInventoryTypedPropertiesOneOf, type index_d$5_VariantsCursorPaging as VariantsCursorPaging, type index_d$5_VariantsInfo as VariantsInfo, type index_d$5_VariantsNotAlignedWithProduct as VariantsNotAlignedWithProduct, index_d$5_VariantsOpsRequestedFields as VariantsOpsRequestedFields, index_d$5_VerticalAlignment as VerticalAlignment, type index_d$5_Video as Video, type index_d$5_VideoData as VideoData, type index_d$5_VideoResolution as VideoResolution, index_d$5_ViewMode as ViewMode, index_d$5_ViewRole as ViewRole, index_d$5_VoteRole as VoteRole, WebhookIdentityType$4 as WebhookIdentityType, type index_d$5_WeightMeasurementUnitInfo as WeightMeasurementUnitInfo, type index_d$5_WeightRange as WeightRange, index_d$5_WeightUnit as WeightUnit, index_d$5_Width as Width, index_d$5_WidthType as WidthType, type index_d$5_WixCommonAggregation as WixCommonAggregation, type index_d$5_WixCommonAggregationKindOneOf as WixCommonAggregationKindOneOf, index_d$5_WixCommonAggregationType as WixCommonAggregationType, type index_d$5_WixCommonItemMetadata as WixCommonItemMetadata, index_d$5_WixCommonScalarType as WixCommonScalarType, type index_d$5_WixCommonSearchDetails as WixCommonSearchDetails, index_d$5_WixCommonSortOrder as WixCommonSortOrder, type index_d$5_WixCommonSorting as WixCommonSorting, type index_d$5__publicOnProductCreatedType as _publicOnProductCreatedType, type index_d$5__publicOnProductDeletedType as _publicOnProductDeletedType, type index_d$5__publicOnProductUpdatedType as _publicOnProductUpdatedType, index_d$5_bulkAddInfoSectionsToProducts as bulkAddInfoSectionsToProducts, index_d$5_bulkAddInfoSectionsToProductsByFilter as bulkAddInfoSectionsToProductsByFilter, index_d$5_bulkAddProductsToCategoriesByFilter as bulkAddProductsToCategoriesByFilter, index_d$5_bulkAdjustProductVariantsByFilter as bulkAdjustProductVariantsByFilter, index_d$5_bulkCreateProducts as bulkCreateProducts, index_d$5_bulkCreateProductsWithInventory as bulkCreateProductsWithInventory, index_d$5_bulkDeleteProducts as bulkDeleteProducts, index_d$5_bulkDeleteProductsByFilter as bulkDeleteProductsByFilter, index_d$5_bulkRemoveInfoSectionsFromProducts as bulkRemoveInfoSectionsFromProducts, index_d$5_bulkRemoveInfoSectionsFromProductsByFilter as bulkRemoveInfoSectionsFromProductsByFilter, index_d$5_bulkRemoveProductsFromCategoriesByFilter as bulkRemoveProductsFromCategoriesByFilter, index_d$5_bulkUpdateProductVariantsByFilter as bulkUpdateProductVariantsByFilter, index_d$5_bulkUpdateProducts as bulkUpdateProducts, index_d$5_bulkUpdateProductsByFilter as bulkUpdateProductsByFilter, index_d$5_bulkUpdateProductsWithInventory as bulkUpdateProductsWithInventory, index_d$5_countProducts as countProducts, index_d$5_createProduct as createProduct, index_d$5_createProductWithInventory as createProductWithInventory, index_d$5_deleteProduct as deleteProduct, index_d$5_getProduct as getProduct, index_d$5_getProductBySlug as getProductBySlug, index_d$5_onProductCreated as onProductCreated, index_d$5_onProductDeleted as onProductDeleted, index_d$5_onProductUpdated as onProductUpdated, onProductCreated$1 as publicOnProductCreated, onProductDeleted$1 as publicOnProductDeleted, onProductUpdated$1 as publicOnProductUpdated, index_d$5_queryProducts as queryProducts, index_d$5_searchProducts as searchProducts, index_d$5_updateExtendedFields as updateExtendedFields, index_d$5_updateProduct as updateProduct, index_d$5_updateProductWithInventory as updateProductWithInventory };
|
|
17880
17911
|
}
|
|
17881
17912
|
|
|
17882
17913
|
interface Provision {
|
|
@@ -5319,6 +5319,8 @@ interface Node$3 extends NodeDataOneOf$3 {
|
|
|
5319
5319
|
bulletedListData?: BulletedListData$3;
|
|
5320
5320
|
/** Data for a block quote node. */
|
|
5321
5321
|
blockquoteData?: BlockquoteData$3;
|
|
5322
|
+
/** Data for a caption node. */
|
|
5323
|
+
captionData?: CaptionData$3;
|
|
5322
5324
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5323
5325
|
type?: NodeType$3;
|
|
5324
5326
|
/** Node ID. */
|
|
@@ -5380,6 +5382,8 @@ interface NodeDataOneOf$3 {
|
|
|
5380
5382
|
bulletedListData?: BulletedListData$3;
|
|
5381
5383
|
/** Data for a block quote node. */
|
|
5382
5384
|
blockquoteData?: BlockquoteData$3;
|
|
5385
|
+
/** Data for a caption node. */
|
|
5386
|
+
captionData?: CaptionData$3;
|
|
5383
5387
|
}
|
|
5384
5388
|
declare enum NodeType$3 {
|
|
5385
5389
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5411,7 +5415,8 @@ declare enum NodeType$3 {
|
|
|
5411
5415
|
TABLE_CELL = "TABLE_CELL",
|
|
5412
5416
|
TABLE_ROW = "TABLE_ROW",
|
|
5413
5417
|
EXTERNAL = "EXTERNAL",
|
|
5414
|
-
AUDIO = "AUDIO"
|
|
5418
|
+
AUDIO = "AUDIO",
|
|
5419
|
+
CAPTION = "CAPTION"
|
|
5415
5420
|
}
|
|
5416
5421
|
interface NodeStyle$3 {
|
|
5417
5422
|
/** The top padding value in pixels. */
|
|
@@ -5901,7 +5906,10 @@ interface ImageData$3 {
|
|
|
5901
5906
|
disableExpand?: boolean | null;
|
|
5902
5907
|
/** Image's alternative text. */
|
|
5903
5908
|
altText?: string | null;
|
|
5904
|
-
/**
|
|
5909
|
+
/**
|
|
5910
|
+
* Deprecated: use Caption node instead.
|
|
5911
|
+
* @deprecated
|
|
5912
|
+
*/
|
|
5905
5913
|
caption?: string | null;
|
|
5906
5914
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
5907
5915
|
disableDownload?: boolean | null;
|
|
@@ -6427,6 +6435,9 @@ interface BlockquoteData$3 {
|
|
|
6427
6435
|
/** Indentation level from 1-4. */
|
|
6428
6436
|
indentation?: number;
|
|
6429
6437
|
}
|
|
6438
|
+
interface CaptionData$3 {
|
|
6439
|
+
textStyle?: TextStyle$3;
|
|
6440
|
+
}
|
|
6430
6441
|
interface Metadata$3 {
|
|
6431
6442
|
/** Schema version. */
|
|
6432
6443
|
version?: number;
|
|
@@ -6951,6 +6962,9 @@ interface BulletedListDataNonNullableFields$3 {
|
|
|
6951
6962
|
interface BlockquoteDataNonNullableFields$3 {
|
|
6952
6963
|
indentation: number;
|
|
6953
6964
|
}
|
|
6965
|
+
interface CaptionDataNonNullableFields$3 {
|
|
6966
|
+
textStyle?: TextStyleNonNullableFields$3;
|
|
6967
|
+
}
|
|
6954
6968
|
interface NodeNonNullableFields$3 {
|
|
6955
6969
|
buttonData?: ButtonDataNonNullableFields$3;
|
|
6956
6970
|
codeBlockData?: CodeBlockDataNonNullableFields$3;
|
|
@@ -6976,6 +6990,7 @@ interface NodeNonNullableFields$3 {
|
|
|
6976
6990
|
orderedListData?: OrderedListDataNonNullableFields$3;
|
|
6977
6991
|
bulletedListData?: BulletedListDataNonNullableFields$3;
|
|
6978
6992
|
blockquoteData?: BlockquoteDataNonNullableFields$3;
|
|
6993
|
+
captionData?: CaptionDataNonNullableFields$3;
|
|
6979
6994
|
type: NodeType$3;
|
|
6980
6995
|
id: string;
|
|
6981
6996
|
nodes: NodeNonNullableFields$3[];
|
|
@@ -7174,6 +7189,8 @@ interface Node$2 extends NodeDataOneOf$2 {
|
|
|
7174
7189
|
bulletedListData?: BulletedListData$2;
|
|
7175
7190
|
/** Data for a block quote node. */
|
|
7176
7191
|
blockquoteData?: BlockquoteData$2;
|
|
7192
|
+
/** Data for a caption node. */
|
|
7193
|
+
captionData?: CaptionData$2;
|
|
7177
7194
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
7178
7195
|
type?: NodeType$2;
|
|
7179
7196
|
/** Node ID. */
|
|
@@ -7235,6 +7252,8 @@ interface NodeDataOneOf$2 {
|
|
|
7235
7252
|
bulletedListData?: BulletedListData$2;
|
|
7236
7253
|
/** Data for a block quote node. */
|
|
7237
7254
|
blockquoteData?: BlockquoteData$2;
|
|
7255
|
+
/** Data for a caption node. */
|
|
7256
|
+
captionData?: CaptionData$2;
|
|
7238
7257
|
}
|
|
7239
7258
|
declare enum NodeType$2 {
|
|
7240
7259
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -7266,7 +7285,8 @@ declare enum NodeType$2 {
|
|
|
7266
7285
|
TABLE_CELL = "TABLE_CELL",
|
|
7267
7286
|
TABLE_ROW = "TABLE_ROW",
|
|
7268
7287
|
EXTERNAL = "EXTERNAL",
|
|
7269
|
-
AUDIO = "AUDIO"
|
|
7288
|
+
AUDIO = "AUDIO",
|
|
7289
|
+
CAPTION = "CAPTION"
|
|
7270
7290
|
}
|
|
7271
7291
|
interface NodeStyle$2 {
|
|
7272
7292
|
/** The top padding value in pixels. */
|
|
@@ -7756,7 +7776,10 @@ interface ImageData$2 {
|
|
|
7756
7776
|
disableExpand?: boolean | null;
|
|
7757
7777
|
/** Image's alternative text. */
|
|
7758
7778
|
altText?: string | null;
|
|
7759
|
-
/**
|
|
7779
|
+
/**
|
|
7780
|
+
* Deprecated: use Caption node instead.
|
|
7781
|
+
* @deprecated
|
|
7782
|
+
*/
|
|
7760
7783
|
caption?: string | null;
|
|
7761
7784
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
7762
7785
|
disableDownload?: boolean | null;
|
|
@@ -8282,6 +8305,9 @@ interface BlockquoteData$2 {
|
|
|
8282
8305
|
/** Indentation level from 1-4. */
|
|
8283
8306
|
indentation?: number;
|
|
8284
8307
|
}
|
|
8308
|
+
interface CaptionData$2 {
|
|
8309
|
+
textStyle?: TextStyle$2;
|
|
8310
|
+
}
|
|
8285
8311
|
interface Metadata$2 {
|
|
8286
8312
|
/** Schema version. */
|
|
8287
8313
|
version?: number;
|
|
@@ -8806,6 +8832,9 @@ interface BulletedListDataNonNullableFields$2 {
|
|
|
8806
8832
|
interface BlockquoteDataNonNullableFields$2 {
|
|
8807
8833
|
indentation: number;
|
|
8808
8834
|
}
|
|
8835
|
+
interface CaptionDataNonNullableFields$2 {
|
|
8836
|
+
textStyle?: TextStyleNonNullableFields$2;
|
|
8837
|
+
}
|
|
8809
8838
|
interface NodeNonNullableFields$2 {
|
|
8810
8839
|
buttonData?: ButtonDataNonNullableFields$2;
|
|
8811
8840
|
codeBlockData?: CodeBlockDataNonNullableFields$2;
|
|
@@ -8831,6 +8860,7 @@ interface NodeNonNullableFields$2 {
|
|
|
8831
8860
|
orderedListData?: OrderedListDataNonNullableFields$2;
|
|
8832
8861
|
bulletedListData?: BulletedListDataNonNullableFields$2;
|
|
8833
8862
|
blockquoteData?: BlockquoteDataNonNullableFields$2;
|
|
8863
|
+
captionData?: CaptionDataNonNullableFields$2;
|
|
8834
8864
|
type: NodeType$2;
|
|
8835
8865
|
_id: string;
|
|
8836
8866
|
nodes: NodeNonNullableFields$2[];
|
|
@@ -11443,6 +11473,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
11443
11473
|
bulletedListData?: BulletedListData$1;
|
|
11444
11474
|
/** Data for a block quote node. */
|
|
11445
11475
|
blockquoteData?: BlockquoteData$1;
|
|
11476
|
+
/** Data for a caption node. */
|
|
11477
|
+
captionData?: CaptionData$1;
|
|
11446
11478
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
11447
11479
|
type?: NodeType$1;
|
|
11448
11480
|
/** Node ID. */
|
|
@@ -11504,6 +11536,8 @@ interface NodeDataOneOf$1 {
|
|
|
11504
11536
|
bulletedListData?: BulletedListData$1;
|
|
11505
11537
|
/** Data for a block quote node. */
|
|
11506
11538
|
blockquoteData?: BlockquoteData$1;
|
|
11539
|
+
/** Data for a caption node. */
|
|
11540
|
+
captionData?: CaptionData$1;
|
|
11507
11541
|
}
|
|
11508
11542
|
declare enum NodeType$1 {
|
|
11509
11543
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -11535,7 +11569,8 @@ declare enum NodeType$1 {
|
|
|
11535
11569
|
TABLE_CELL = "TABLE_CELL",
|
|
11536
11570
|
TABLE_ROW = "TABLE_ROW",
|
|
11537
11571
|
EXTERNAL = "EXTERNAL",
|
|
11538
|
-
AUDIO = "AUDIO"
|
|
11572
|
+
AUDIO = "AUDIO",
|
|
11573
|
+
CAPTION = "CAPTION"
|
|
11539
11574
|
}
|
|
11540
11575
|
interface NodeStyle$1 {
|
|
11541
11576
|
/** The top padding value in pixels. */
|
|
@@ -12025,7 +12060,10 @@ interface ImageData$1 {
|
|
|
12025
12060
|
disableExpand?: boolean | null;
|
|
12026
12061
|
/** Image's alternative text. */
|
|
12027
12062
|
altText?: string | null;
|
|
12028
|
-
/**
|
|
12063
|
+
/**
|
|
12064
|
+
* Deprecated: use Caption node instead.
|
|
12065
|
+
* @deprecated
|
|
12066
|
+
*/
|
|
12029
12067
|
caption?: string | null;
|
|
12030
12068
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
12031
12069
|
disableDownload?: boolean | null;
|
|
@@ -12551,6 +12589,9 @@ interface BlockquoteData$1 {
|
|
|
12551
12589
|
/** Indentation level from 1-4. */
|
|
12552
12590
|
indentation?: number;
|
|
12553
12591
|
}
|
|
12592
|
+
interface CaptionData$1 {
|
|
12593
|
+
textStyle?: TextStyle$1;
|
|
12594
|
+
}
|
|
12554
12595
|
interface Metadata$1 {
|
|
12555
12596
|
/** Schema version. */
|
|
12556
12597
|
version?: number;
|
|
@@ -15099,6 +15140,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
15099
15140
|
interface BlockquoteDataNonNullableFields$1 {
|
|
15100
15141
|
indentation: number;
|
|
15101
15142
|
}
|
|
15143
|
+
interface CaptionDataNonNullableFields$1 {
|
|
15144
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
15145
|
+
}
|
|
15102
15146
|
interface NodeNonNullableFields$1 {
|
|
15103
15147
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
15104
15148
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -15124,6 +15168,7 @@ interface NodeNonNullableFields$1 {
|
|
|
15124
15168
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
15125
15169
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
15126
15170
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
15171
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
15127
15172
|
type: NodeType$1;
|
|
15128
15173
|
id: string;
|
|
15129
15174
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -15856,6 +15901,8 @@ interface Node extends NodeDataOneOf {
|
|
|
15856
15901
|
bulletedListData?: BulletedListData;
|
|
15857
15902
|
/** Data for a block quote node. */
|
|
15858
15903
|
blockquoteData?: BlockquoteData;
|
|
15904
|
+
/** Data for a caption node. */
|
|
15905
|
+
captionData?: CaptionData;
|
|
15859
15906
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
15860
15907
|
type?: NodeType;
|
|
15861
15908
|
/** Node ID. */
|
|
@@ -15917,6 +15964,8 @@ interface NodeDataOneOf {
|
|
|
15917
15964
|
bulletedListData?: BulletedListData;
|
|
15918
15965
|
/** Data for a block quote node. */
|
|
15919
15966
|
blockquoteData?: BlockquoteData;
|
|
15967
|
+
/** Data for a caption node. */
|
|
15968
|
+
captionData?: CaptionData;
|
|
15920
15969
|
}
|
|
15921
15970
|
declare enum NodeType {
|
|
15922
15971
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -15948,7 +15997,8 @@ declare enum NodeType {
|
|
|
15948
15997
|
TABLE_CELL = "TABLE_CELL",
|
|
15949
15998
|
TABLE_ROW = "TABLE_ROW",
|
|
15950
15999
|
EXTERNAL = "EXTERNAL",
|
|
15951
|
-
AUDIO = "AUDIO"
|
|
16000
|
+
AUDIO = "AUDIO",
|
|
16001
|
+
CAPTION = "CAPTION"
|
|
15952
16002
|
}
|
|
15953
16003
|
interface NodeStyle {
|
|
15954
16004
|
/** The top padding value in pixels. */
|
|
@@ -16438,7 +16488,10 @@ interface ImageData {
|
|
|
16438
16488
|
disableExpand?: boolean | null;
|
|
16439
16489
|
/** Image's alternative text. */
|
|
16440
16490
|
altText?: string | null;
|
|
16441
|
-
/**
|
|
16491
|
+
/**
|
|
16492
|
+
* Deprecated: use Caption node instead.
|
|
16493
|
+
* @deprecated
|
|
16494
|
+
*/
|
|
16442
16495
|
caption?: string | null;
|
|
16443
16496
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
16444
16497
|
disableDownload?: boolean | null;
|
|
@@ -16964,6 +17017,9 @@ interface BlockquoteData {
|
|
|
16964
17017
|
/** Indentation level from 1-4. */
|
|
16965
17018
|
indentation?: number;
|
|
16966
17019
|
}
|
|
17020
|
+
interface CaptionData {
|
|
17021
|
+
textStyle?: TextStyle;
|
|
17022
|
+
}
|
|
16967
17023
|
interface Metadata {
|
|
16968
17024
|
/** Schema version. */
|
|
16969
17025
|
version?: number;
|
|
@@ -19462,6 +19518,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
19462
19518
|
interface BlockquoteDataNonNullableFields {
|
|
19463
19519
|
indentation: number;
|
|
19464
19520
|
}
|
|
19521
|
+
interface CaptionDataNonNullableFields {
|
|
19522
|
+
textStyle?: TextStyleNonNullableFields;
|
|
19523
|
+
}
|
|
19465
19524
|
interface NodeNonNullableFields {
|
|
19466
19525
|
buttonData?: ButtonDataNonNullableFields;
|
|
19467
19526
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -19487,6 +19546,7 @@ interface NodeNonNullableFields {
|
|
|
19487
19546
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
19488
19547
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
19489
19548
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
19549
|
+
captionData?: CaptionDataNonNullableFields;
|
|
19490
19550
|
type: NodeType;
|
|
19491
19551
|
_id: string;
|
|
19492
19552
|
nodes: NodeNonNullableFields[];
|