@wix/auto_sdk_stores_info-sections-v-3 1.0.70 → 1.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +54 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +29 -3
- package/build/cjs/index.typings.js +46 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +25 -3
- package/build/cjs/meta.js +38 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +51 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +29 -3
- package/build/es/index.typings.mjs +43 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +25 -3
- package/build/es/meta.mjs +38 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +54 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +29 -3
- package/build/internal/cjs/index.typings.js +46 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +25 -3
- package/build/internal/cjs/meta.js +38 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +51 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +29 -3
- package/build/internal/es/index.typings.mjs +43 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +25 -3
- package/build/internal/es/meta.mjs +38 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _wix_sdk_types from '@wix/sdk-types';
|
|
1
2
|
import { QuerySpec, Query, NonNullablePaths } from '@wix/sdk-types';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -129,6 +130,8 @@ interface Node extends NodeDataOneOf {
|
|
|
129
130
|
layoutData?: LayoutData;
|
|
130
131
|
/** Data for a cell node. */
|
|
131
132
|
layoutCellData?: LayoutCellData;
|
|
133
|
+
/** Data for a shape node. */
|
|
134
|
+
shapeData?: ShapeData;
|
|
132
135
|
/** 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. */
|
|
133
136
|
type?: NodeTypeWithLiterals;
|
|
134
137
|
/** Node ID. */
|
|
@@ -196,6 +199,8 @@ interface NodeDataOneOf {
|
|
|
196
199
|
layoutData?: LayoutData;
|
|
197
200
|
/** Data for a cell node. */
|
|
198
201
|
layoutCellData?: LayoutCellData;
|
|
202
|
+
/** Data for a shape node. */
|
|
203
|
+
shapeData?: ShapeData;
|
|
199
204
|
}
|
|
200
205
|
declare enum NodeType {
|
|
201
206
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -231,10 +236,11 @@ declare enum NodeType {
|
|
|
231
236
|
AUDIO = "AUDIO",
|
|
232
237
|
CAPTION = "CAPTION",
|
|
233
238
|
LAYOUT = "LAYOUT",
|
|
234
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
239
|
+
LAYOUT_CELL = "LAYOUT_CELL",
|
|
240
|
+
SHAPE = "SHAPE"
|
|
235
241
|
}
|
|
236
242
|
/** @enumType */
|
|
237
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
|
|
243
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
238
244
|
interface NodeStyle {
|
|
239
245
|
/** The top padding value in pixels. */
|
|
240
246
|
paddingTop?: string | null;
|
|
@@ -1901,6 +1907,23 @@ interface LayoutCellData {
|
|
|
1901
1907
|
/** Size of the cell in 12 columns grid. */
|
|
1902
1908
|
colSpan?: number | null;
|
|
1903
1909
|
}
|
|
1910
|
+
interface ShapeData {
|
|
1911
|
+
/** Styling for the shape's container. */
|
|
1912
|
+
containerData?: PluginContainerData;
|
|
1913
|
+
/** Shape file details. */
|
|
1914
|
+
shape?: Media;
|
|
1915
|
+
/** Styling for the shape. */
|
|
1916
|
+
styles?: ShapeDataStyles;
|
|
1917
|
+
}
|
|
1918
|
+
interface ShapeDataStyles {
|
|
1919
|
+
/**
|
|
1920
|
+
* Shape fill color as a hexadecimal value.
|
|
1921
|
+
* @format COLOR_HEX
|
|
1922
|
+
*/
|
|
1923
|
+
color?: string | null;
|
|
1924
|
+
/** Map of original color keys to their new color values. */
|
|
1925
|
+
colors?: Record<string, string>;
|
|
1926
|
+
}
|
|
1904
1927
|
interface Metadata {
|
|
1905
1928
|
/** Schema version. */
|
|
1906
1929
|
version?: number;
|
|
@@ -3112,6 +3135,9 @@ type InfoSectionQuery = {
|
|
|
3112
3135
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
3113
3136
|
}[];
|
|
3114
3137
|
};
|
|
3138
|
+
declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<InfoSection, InfoSectionQuerySpec, InfoSectionQuery>;
|
|
3139
|
+
declare const Filter: _wix_sdk_types.FilterFactory<InfoSection, InfoSectionQuerySpec>;
|
|
3140
|
+
declare const Sort: _wix_sdk_types.SortFactory<InfoSectionQuerySpec>;
|
|
3115
3141
|
/**
|
|
3116
3142
|
* Creates multiple info sections.
|
|
3117
3143
|
* @param infoSections - Info sections to create.
|
|
@@ -3176,4 +3202,4 @@ interface BulkUpdateInfoSectionsOptions {
|
|
|
3176
3202
|
*/
|
|
3177
3203
|
declare function bulkDeleteInfoSections(infoSectionIds: string[]): Promise<NonNullablePaths<BulkDeleteInfoSectionsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
3178
3204
|
|
|
3179
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateInfoSectionsOptions, type BulkCreateInfoSectionsRequest, type BulkCreateInfoSectionsResponse, type BulkCreateInfoSectionsValidationErrors, type BulkDeleteInfoSectionsRequest, type BulkDeleteInfoSectionsResponse, type BulkGetOrCreateInfoSectionsOptions, type BulkGetOrCreateInfoSectionsRequest, type BulkGetOrCreateInfoSectionsResponse, type BulkGetOrCreateInfoSectionsValidationErrors, type BulkInfoSectionItemResult, type BulkInfoSectionResult, type BulkUpdateInfoSectionsOptions, type BulkUpdateInfoSectionsRequest, type BulkUpdateInfoSectionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type CreateInfoSectionRequest, type CreateInfoSectionResponse, type CreateInfoSectionValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteInfoSectionRequest, type DeleteInfoSectionResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetInfoSectionOptions, type GetInfoSectionRequest, type GetInfoSectionResponse, type GetOrCreateInfoSectionOptions, type GetOrCreateInfoSectionRequest, type GetOrCreateInfoSectionResponse, type GetOrCreateInfoSectionValidationErrors, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, type InfoSection, type InfoSectionCreatedEnvelope, type InfoSectionDeletedEnvelope, type InfoSectionForGetOrCreate, type InfoSectionQuery, type InfoSectionQuerySpec, type InfoSectionUpdatedEnvelope, type InfoSectionsQueryBuilder, type InfoSectionsQueryResult, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedInfoSection, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryInfoSectionsOptions, type QueryInfoSectionsRequest, type QueryInfoSectionsResponse, type RecloneSiteRequest, type RecloneSiteResponse, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type URI, type UpdateInfoSection, type UpdateInfoSectionOptions, type UpdateInfoSectionRequest, type UpdateInfoSectionResponse, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCreateInfoSections, bulkDeleteInfoSections, bulkGetOrCreateInfoSections, bulkUpdateInfoSections, createInfoSection, deleteInfoSection, getInfoSection, getOrCreateInfoSection, onInfoSectionCreated, onInfoSectionDeleted, onInfoSectionUpdated, queryInfoSections, typedQueryInfoSections, updateInfoSection };
|
|
3205
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateInfoSectionsOptions, type BulkCreateInfoSectionsRequest, type BulkCreateInfoSectionsResponse, type BulkCreateInfoSectionsValidationErrors, type BulkDeleteInfoSectionsRequest, type BulkDeleteInfoSectionsResponse, type BulkGetOrCreateInfoSectionsOptions, type BulkGetOrCreateInfoSectionsRequest, type BulkGetOrCreateInfoSectionsResponse, type BulkGetOrCreateInfoSectionsValidationErrors, type BulkInfoSectionItemResult, type BulkInfoSectionResult, type BulkUpdateInfoSectionsOptions, type BulkUpdateInfoSectionsRequest, type BulkUpdateInfoSectionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type CreateInfoSectionRequest, type CreateInfoSectionResponse, type CreateInfoSectionValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteInfoSectionRequest, type DeleteInfoSectionResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, Filter, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetInfoSectionOptions, type GetInfoSectionRequest, type GetInfoSectionResponse, type GetOrCreateInfoSectionOptions, type GetOrCreateInfoSectionRequest, type GetOrCreateInfoSectionResponse, type GetOrCreateInfoSectionValidationErrors, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, type InfoSection, type InfoSectionCreatedEnvelope, type InfoSectionDeletedEnvelope, type InfoSectionForGetOrCreate, type InfoSectionQuery, type InfoSectionQuerySpec, type InfoSectionUpdatedEnvelope, type InfoSectionsQueryBuilder, type InfoSectionsQueryResult, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedInfoSection, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, QueryBuilder, type QueryInfoSectionsOptions, type QueryInfoSectionsRequest, type QueryInfoSectionsResponse, type RecloneSiteRequest, type RecloneSiteResponse, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, Sort, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type URI, type UpdateInfoSection, type UpdateInfoSectionOptions, type UpdateInfoSectionRequest, type UpdateInfoSectionResponse, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCreateInfoSections, bulkDeleteInfoSections, bulkGetOrCreateInfoSections, bulkUpdateInfoSections, createInfoSection, deleteInfoSection, getInfoSection, getOrCreateInfoSection, onInfoSectionCreated, onInfoSectionDeleted, onInfoSectionUpdated, queryInfoSections, typedQueryInfoSections, updateInfoSection };
|
|
@@ -120,7 +120,8 @@ function createInfoSection(payload) {
|
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
123
|
-
}
|
|
123
|
+
},
|
|
124
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
124
125
|
]
|
|
125
126
|
}
|
|
126
127
|
]);
|
|
@@ -197,6 +198,9 @@ function createInfoSection(payload) {
|
|
|
197
198
|
},
|
|
198
199
|
{
|
|
199
200
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
200
204
|
}
|
|
201
205
|
]
|
|
202
206
|
}
|
|
@@ -281,6 +285,9 @@ function getInfoSection(payload) {
|
|
|
281
285
|
},
|
|
282
286
|
{
|
|
283
287
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
284
291
|
}
|
|
285
292
|
]
|
|
286
293
|
}
|
|
@@ -334,7 +341,8 @@ function getOrCreateInfoSection(payload) {
|
|
|
334
341
|
},
|
|
335
342
|
{
|
|
336
343
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
337
|
-
}
|
|
344
|
+
},
|
|
345
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
338
346
|
]
|
|
339
347
|
},
|
|
340
348
|
{
|
|
@@ -418,6 +426,9 @@ function getOrCreateInfoSection(payload) {
|
|
|
418
426
|
},
|
|
419
427
|
{
|
|
420
428
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
421
432
|
}
|
|
422
433
|
]
|
|
423
434
|
}
|
|
@@ -473,7 +484,8 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
473
484
|
},
|
|
474
485
|
{
|
|
475
486
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
476
|
-
}
|
|
487
|
+
},
|
|
488
|
+
{ path: "infoSections.description.nodes.shapeData.shape.duration" }
|
|
477
489
|
]
|
|
478
490
|
},
|
|
479
491
|
{
|
|
@@ -561,6 +573,9 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
561
573
|
},
|
|
562
574
|
{
|
|
563
575
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
564
579
|
}
|
|
565
580
|
]
|
|
566
581
|
}
|
|
@@ -627,7 +642,8 @@ function updateInfoSection(payload) {
|
|
|
627
642
|
},
|
|
628
643
|
{
|
|
629
644
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
630
|
-
}
|
|
645
|
+
},
|
|
646
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
631
647
|
]
|
|
632
648
|
}
|
|
633
649
|
]);
|
|
@@ -704,6 +720,9 @@ function updateInfoSection(payload) {
|
|
|
704
720
|
},
|
|
705
721
|
{
|
|
706
722
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
707
726
|
}
|
|
708
727
|
]
|
|
709
728
|
}
|
|
@@ -813,6 +832,9 @@ function queryInfoSections(payload) {
|
|
|
813
832
|
},
|
|
814
833
|
{
|
|
815
834
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
path: "infoSections.description.nodes.shapeData.shape.duration"
|
|
816
838
|
}
|
|
817
839
|
]
|
|
818
840
|
}
|
|
@@ -888,7 +910,8 @@ function bulkCreateInfoSections(payload) {
|
|
|
888
910
|
},
|
|
889
911
|
{
|
|
890
912
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
891
|
-
}
|
|
913
|
+
},
|
|
914
|
+
{ path: "infoSections.description.nodes.shapeData.shape.duration" }
|
|
892
915
|
]
|
|
893
916
|
}
|
|
894
917
|
]);
|
|
@@ -969,6 +992,9 @@ function bulkCreateInfoSections(payload) {
|
|
|
969
992
|
},
|
|
970
993
|
{
|
|
971
994
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
972
998
|
}
|
|
973
999
|
]
|
|
974
1000
|
}
|
|
@@ -1051,6 +1077,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1051
1077
|
},
|
|
1052
1078
|
{
|
|
1053
1079
|
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
path: "infoSections.infoSection.description.nodes.shapeData.shape.duration"
|
|
1054
1083
|
}
|
|
1055
1084
|
]
|
|
1056
1085
|
}
|
|
@@ -1132,6 +1161,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1132
1161
|
},
|
|
1133
1162
|
{
|
|
1134
1163
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
1135
1167
|
}
|
|
1136
1168
|
]
|
|
1137
1169
|
}
|
|
@@ -1165,6 +1197,7 @@ function bulkDeleteInfoSections(payload) {
|
|
|
1165
1197
|
|
|
1166
1198
|
// src/stores-catalog-v3-info-section-info-sections-v-3.universal.ts
|
|
1167
1199
|
import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
|
|
1200
|
+
import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
|
|
1168
1201
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
1169
1202
|
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
1170
1203
|
NodeType2["TEXT"] = "TEXT";
|
|
@@ -1199,6 +1232,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1199
1232
|
NodeType2["CAPTION"] = "CAPTION";
|
|
1200
1233
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1201
1234
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1235
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
1202
1236
|
return NodeType2;
|
|
1203
1237
|
})(NodeType || {});
|
|
1204
1238
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -1735,6 +1769,7 @@ async function typedQueryInfoSections(query, options) {
|
|
|
1735
1769
|
throw transformedError;
|
|
1736
1770
|
}
|
|
1737
1771
|
}
|
|
1772
|
+
var { QueryBuilder, Filter, Sort } = createQueryUtils();
|
|
1738
1773
|
async function bulkCreateInfoSections2(infoSections, options) {
|
|
1739
1774
|
const { httpClient, sideEffects } = arguments[2];
|
|
1740
1775
|
const payload = renameKeysFromSDKRequestToRESTRequest(
|
|
@@ -1839,6 +1874,7 @@ export {
|
|
|
1839
1874
|
DesignTarget,
|
|
1840
1875
|
Direction,
|
|
1841
1876
|
DividerDataAlignment,
|
|
1877
|
+
Filter,
|
|
1842
1878
|
FontType,
|
|
1843
1879
|
GIFType,
|
|
1844
1880
|
ImagePosition,
|
|
@@ -1855,10 +1891,12 @@ export {
|
|
|
1855
1891
|
PollLayoutDirection,
|
|
1856
1892
|
PollLayoutType,
|
|
1857
1893
|
Position,
|
|
1894
|
+
QueryBuilder,
|
|
1858
1895
|
RequestedFields,
|
|
1859
1896
|
Resizing,
|
|
1860
1897
|
ResponsivenessBehaviour,
|
|
1861
1898
|
Scaling,
|
|
1899
|
+
Sort,
|
|
1862
1900
|
SortOrder,
|
|
1863
1901
|
Source,
|
|
1864
1902
|
StylesPosition,
|