@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 };
|
|
@@ -30,6 +30,7 @@ __export(index_typings_exports, {
|
|
|
30
30
|
DesignTarget: () => DesignTarget,
|
|
31
31
|
Direction: () => Direction,
|
|
32
32
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
33
|
+
Filter: () => Filter,
|
|
33
34
|
FontType: () => FontType,
|
|
34
35
|
GIFType: () => GIFType,
|
|
35
36
|
ImagePosition: () => ImagePosition,
|
|
@@ -46,10 +47,12 @@ __export(index_typings_exports, {
|
|
|
46
47
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
47
48
|
PollLayoutType: () => PollLayoutType,
|
|
48
49
|
Position: () => Position,
|
|
50
|
+
QueryBuilder: () => QueryBuilder,
|
|
49
51
|
RequestedFields: () => RequestedFields,
|
|
50
52
|
Resizing: () => Resizing,
|
|
51
53
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
52
54
|
Scaling: () => Scaling,
|
|
55
|
+
Sort: () => Sort,
|
|
53
56
|
SortOrder: () => SortOrder,
|
|
54
57
|
Source: () => Source,
|
|
55
58
|
StylesPosition: () => StylesPosition,
|
|
@@ -198,7 +201,8 @@ function createInfoSection(payload) {
|
|
|
198
201
|
},
|
|
199
202
|
{
|
|
200
203
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
201
|
-
}
|
|
204
|
+
},
|
|
205
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
202
206
|
]
|
|
203
207
|
}
|
|
204
208
|
]);
|
|
@@ -275,6 +279,9 @@ function createInfoSection(payload) {
|
|
|
275
279
|
},
|
|
276
280
|
{
|
|
277
281
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
278
285
|
}
|
|
279
286
|
]
|
|
280
287
|
}
|
|
@@ -359,6 +366,9 @@ function getInfoSection(payload) {
|
|
|
359
366
|
},
|
|
360
367
|
{
|
|
361
368
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
362
372
|
}
|
|
363
373
|
]
|
|
364
374
|
}
|
|
@@ -412,7 +422,8 @@ function getOrCreateInfoSection(payload) {
|
|
|
412
422
|
},
|
|
413
423
|
{
|
|
414
424
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
415
|
-
}
|
|
425
|
+
},
|
|
426
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
416
427
|
]
|
|
417
428
|
},
|
|
418
429
|
{
|
|
@@ -496,6 +507,9 @@ function getOrCreateInfoSection(payload) {
|
|
|
496
507
|
},
|
|
497
508
|
{
|
|
498
509
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
499
513
|
}
|
|
500
514
|
]
|
|
501
515
|
}
|
|
@@ -551,7 +565,8 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
551
565
|
},
|
|
552
566
|
{
|
|
553
567
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
554
|
-
}
|
|
568
|
+
},
|
|
569
|
+
{ path: "infoSections.description.nodes.shapeData.shape.duration" }
|
|
555
570
|
]
|
|
556
571
|
},
|
|
557
572
|
{
|
|
@@ -639,6 +654,9 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
639
654
|
},
|
|
640
655
|
{
|
|
641
656
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
642
660
|
}
|
|
643
661
|
]
|
|
644
662
|
}
|
|
@@ -705,7 +723,8 @@ function updateInfoSection(payload) {
|
|
|
705
723
|
},
|
|
706
724
|
{
|
|
707
725
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
708
|
-
}
|
|
726
|
+
},
|
|
727
|
+
{ path: "infoSection.description.nodes.shapeData.shape.duration" }
|
|
709
728
|
]
|
|
710
729
|
}
|
|
711
730
|
]);
|
|
@@ -782,6 +801,9 @@ function updateInfoSection(payload) {
|
|
|
782
801
|
},
|
|
783
802
|
{
|
|
784
803
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
path: "infoSection.description.nodes.shapeData.shape.duration"
|
|
785
807
|
}
|
|
786
808
|
]
|
|
787
809
|
}
|
|
@@ -891,6 +913,9 @@ function queryInfoSections(payload) {
|
|
|
891
913
|
},
|
|
892
914
|
{
|
|
893
915
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
path: "infoSections.description.nodes.shapeData.shape.duration"
|
|
894
919
|
}
|
|
895
920
|
]
|
|
896
921
|
}
|
|
@@ -966,7 +991,8 @@ function bulkCreateInfoSections(payload) {
|
|
|
966
991
|
},
|
|
967
992
|
{
|
|
968
993
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
969
|
-
}
|
|
994
|
+
},
|
|
995
|
+
{ path: "infoSections.description.nodes.shapeData.shape.duration" }
|
|
970
996
|
]
|
|
971
997
|
}
|
|
972
998
|
]);
|
|
@@ -1047,6 +1073,9 @@ function bulkCreateInfoSections(payload) {
|
|
|
1047
1073
|
},
|
|
1048
1074
|
{
|
|
1049
1075
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
1050
1079
|
}
|
|
1051
1080
|
]
|
|
1052
1081
|
}
|
|
@@ -1129,6 +1158,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1129
1158
|
},
|
|
1130
1159
|
{
|
|
1131
1160
|
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
path: "infoSections.infoSection.description.nodes.shapeData.shape.duration"
|
|
1132
1164
|
}
|
|
1133
1165
|
]
|
|
1134
1166
|
}
|
|
@@ -1210,6 +1242,9 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1210
1242
|
},
|
|
1211
1243
|
{
|
|
1212
1244
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
path: "results.item.description.nodes.shapeData.shape.duration"
|
|
1213
1248
|
}
|
|
1214
1249
|
]
|
|
1215
1250
|
}
|
|
@@ -1243,6 +1278,7 @@ function bulkDeleteInfoSections(payload) {
|
|
|
1243
1278
|
|
|
1244
1279
|
// src/stores-catalog-v3-info-section-info-sections-v-3.universal.ts
|
|
1245
1280
|
var import_transform_paths2 = require("@wix/sdk-runtime/transformations/transform-paths");
|
|
1281
|
+
var import_query_builder_utils = require("@wix/sdk-runtime/query-builder-utils");
|
|
1246
1282
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
1247
1283
|
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
1248
1284
|
NodeType2["TEXT"] = "TEXT";
|
|
@@ -1277,6 +1313,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1277
1313
|
NodeType2["CAPTION"] = "CAPTION";
|
|
1278
1314
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1279
1315
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1316
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
1280
1317
|
return NodeType2;
|
|
1281
1318
|
})(NodeType || {});
|
|
1282
1319
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -1813,6 +1850,7 @@ async function typedQueryInfoSections(query, options) {
|
|
|
1813
1850
|
throw transformedError;
|
|
1814
1851
|
}
|
|
1815
1852
|
}
|
|
1853
|
+
var { QueryBuilder, Filter, Sort } = (0, import_query_builder_utils.createQueryUtils)();
|
|
1816
1854
|
async function bulkCreateInfoSections2(infoSections, options) {
|
|
1817
1855
|
const { httpClient, sideEffects } = arguments[2];
|
|
1818
1856
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
|
|
@@ -1918,6 +1956,7 @@ async function bulkDeleteInfoSections2(infoSectionIds) {
|
|
|
1918
1956
|
DesignTarget,
|
|
1919
1957
|
Direction,
|
|
1920
1958
|
DividerDataAlignment,
|
|
1959
|
+
Filter,
|
|
1921
1960
|
FontType,
|
|
1922
1961
|
GIFType,
|
|
1923
1962
|
ImagePosition,
|
|
@@ -1934,10 +1973,12 @@ async function bulkDeleteInfoSections2(infoSectionIds) {
|
|
|
1934
1973
|
PollLayoutDirection,
|
|
1935
1974
|
PollLayoutType,
|
|
1936
1975
|
Position,
|
|
1976
|
+
QueryBuilder,
|
|
1937
1977
|
RequestedFields,
|
|
1938
1978
|
Resizing,
|
|
1939
1979
|
ResponsivenessBehaviour,
|
|
1940
1980
|
Scaling,
|
|
1981
|
+
Sort,
|
|
1941
1982
|
SortOrder,
|
|
1942
1983
|
Source,
|
|
1943
1984
|
StylesPosition,
|