@wix/auto_sdk_quick-pages_contents 1.0.17 → 1.0.19
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 +80 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +158 -7
- package/build/cjs/index.typings.js +80 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +156 -5
- package/build/cjs/meta.js +80 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +76 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +158 -7
- package/build/es/index.typings.mjs +76 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +156 -5
- package/build/es/meta.mjs +76 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +80 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +158 -7
- package/build/internal/cjs/index.typings.js +80 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +156 -5
- package/build/internal/cjs/meta.js +80 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +76 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +158 -7
- package/build/internal/es/index.typings.mjs +76 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +156 -5
- package/build/internal/es/meta.mjs +76 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +5 -4
|
@@ -579,6 +579,12 @@ interface Node extends NodeDataOneOf {
|
|
|
579
579
|
shapeData?: ShapeData;
|
|
580
580
|
/** Data for a card node. */
|
|
581
581
|
cardData?: CardData;
|
|
582
|
+
/** Data for a table of contents node. */
|
|
583
|
+
tocData?: TocData;
|
|
584
|
+
/** Data for a smart block node. */
|
|
585
|
+
smartBlockData?: SmartBlockData;
|
|
586
|
+
/** Data for a smart block cell node. */
|
|
587
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
582
588
|
/** 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. */
|
|
583
589
|
type?: NodeTypeWithLiterals;
|
|
584
590
|
/** Node ID. */
|
|
@@ -650,6 +656,12 @@ interface NodeDataOneOf {
|
|
|
650
656
|
shapeData?: ShapeData;
|
|
651
657
|
/** Data for a card node. */
|
|
652
658
|
cardData?: CardData;
|
|
659
|
+
/** Data for a table of contents node. */
|
|
660
|
+
tocData?: TocData;
|
|
661
|
+
/** Data for a smart block node. */
|
|
662
|
+
smartBlockData?: SmartBlockData;
|
|
663
|
+
/** Data for a smart block cell node. */
|
|
664
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
653
665
|
}
|
|
654
666
|
declare enum NodeType {
|
|
655
667
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -687,10 +699,13 @@ declare enum NodeType {
|
|
|
687
699
|
LAYOUT = "LAYOUT",
|
|
688
700
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
689
701
|
SHAPE = "SHAPE",
|
|
690
|
-
CARD = "CARD"
|
|
702
|
+
CARD = "CARD",
|
|
703
|
+
TOC = "TOC",
|
|
704
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
705
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
691
706
|
}
|
|
692
707
|
/** @enumType */
|
|
693
|
-
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' | 'CARD';
|
|
708
|
+
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' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
694
709
|
interface NodeStyle {
|
|
695
710
|
/** The top padding value in pixels. */
|
|
696
711
|
paddingTop?: string | null;
|
|
@@ -1308,6 +1323,8 @@ interface HeadingData {
|
|
|
1308
1323
|
textStyle?: V1TextStyle;
|
|
1309
1324
|
/** Indentation level from 1-4. */
|
|
1310
1325
|
indentation?: number | null;
|
|
1326
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1327
|
+
renderedLevel?: number | null;
|
|
1311
1328
|
}
|
|
1312
1329
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1313
1330
|
/** The URL for the HTML code for the node. */
|
|
@@ -1319,6 +1336,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1319
1336
|
* @deprecated
|
|
1320
1337
|
*/
|
|
1321
1338
|
isAdsense?: boolean | null;
|
|
1339
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1340
|
+
widgetId?: string;
|
|
1322
1341
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
1323
1342
|
containerData?: PluginContainerData;
|
|
1324
1343
|
/** The type of HTML code. */
|
|
@@ -1337,14 +1356,17 @@ interface HTMLDataDataOneOf {
|
|
|
1337
1356
|
* @deprecated
|
|
1338
1357
|
*/
|
|
1339
1358
|
isAdsense?: boolean | null;
|
|
1359
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1360
|
+
widgetId?: string;
|
|
1340
1361
|
}
|
|
1341
1362
|
declare enum Source {
|
|
1342
1363
|
HTML = "HTML",
|
|
1343
1364
|
ADSENSE = "ADSENSE",
|
|
1344
|
-
AI = "AI"
|
|
1365
|
+
AI = "AI",
|
|
1366
|
+
AI_WIDGET = "AI_WIDGET"
|
|
1345
1367
|
}
|
|
1346
1368
|
/** @enumType */
|
|
1347
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1369
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
1348
1370
|
interface ImageData {
|
|
1349
1371
|
/** Styling for the image's container. */
|
|
1350
1372
|
containerData?: PluginContainerData;
|
|
@@ -2176,6 +2198,8 @@ interface TableData {
|
|
|
2176
2198
|
* @maxSize 4
|
|
2177
2199
|
*/
|
|
2178
2200
|
cellPadding?: number[];
|
|
2201
|
+
/** Table's alternative text. */
|
|
2202
|
+
altText?: string | null;
|
|
2179
2203
|
}
|
|
2180
2204
|
interface Dimensions {
|
|
2181
2205
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2572,6 +2596,133 @@ interface BackgroundImage {
|
|
|
2572
2596
|
/** Position of background. Defaults to `CENTER`. */
|
|
2573
2597
|
position?: ImagePositionPositionWithLiterals;
|
|
2574
2598
|
}
|
|
2599
|
+
interface TocData {
|
|
2600
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2601
|
+
includedHeadings?: number[];
|
|
2602
|
+
/** List style. Default: PLAIN. */
|
|
2603
|
+
listStyle?: ListStyleWithLiterals;
|
|
2604
|
+
/** Optional override for the font size in pixels. */
|
|
2605
|
+
fontSize?: number | null;
|
|
2606
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2607
|
+
itemSpacing?: number | null;
|
|
2608
|
+
/**
|
|
2609
|
+
* Optional override for the text color.
|
|
2610
|
+
* @format COLOR_HEX
|
|
2611
|
+
*/
|
|
2612
|
+
color?: string | null;
|
|
2613
|
+
/** Indentation style. Default: NESTED. */
|
|
2614
|
+
indentation?: IndentationWithLiterals;
|
|
2615
|
+
}
|
|
2616
|
+
/** List style. */
|
|
2617
|
+
declare enum ListStyle {
|
|
2618
|
+
/** No markers (default) */
|
|
2619
|
+
PLAIN = "PLAIN",
|
|
2620
|
+
/** Numbered list */
|
|
2621
|
+
NUMBERED = "NUMBERED",
|
|
2622
|
+
/** Alphabetic letters */
|
|
2623
|
+
LETTERS = "LETTERS",
|
|
2624
|
+
/** Roman numerals */
|
|
2625
|
+
ROMAN = "ROMAN",
|
|
2626
|
+
/** Bulleted list */
|
|
2627
|
+
BULLETED = "BULLETED",
|
|
2628
|
+
/** Alphabetical index */
|
|
2629
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2630
|
+
/** Alphabetical index (compact top-row only) */
|
|
2631
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2632
|
+
}
|
|
2633
|
+
/** @enumType */
|
|
2634
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2635
|
+
/** Indentation style. */
|
|
2636
|
+
declare enum Indentation {
|
|
2637
|
+
/** Sub-headings indented under parents (default) */
|
|
2638
|
+
NESTED = "NESTED",
|
|
2639
|
+
/** All items at the same level */
|
|
2640
|
+
FLAT = "FLAT"
|
|
2641
|
+
}
|
|
2642
|
+
/** @enumType */
|
|
2643
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2644
|
+
/** Data for a smart block node. */
|
|
2645
|
+
interface SmartBlockData {
|
|
2646
|
+
/** The type of the smart block. */
|
|
2647
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2648
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2649
|
+
orientation?: string | null;
|
|
2650
|
+
/** Column size controlling cells per row. */
|
|
2651
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2652
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2653
|
+
borderColor?: string | null;
|
|
2654
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2655
|
+
borderWidth?: number | null;
|
|
2656
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2657
|
+
borderRadius?: number | null;
|
|
2658
|
+
}
|
|
2659
|
+
/** Layout type of the smart block */
|
|
2660
|
+
declare enum SmartBlockDataType {
|
|
2661
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2662
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2663
|
+
/** Numbered boxes. */
|
|
2664
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2665
|
+
/** Statistics display with large numbers/values. */
|
|
2666
|
+
STATS = "STATS",
|
|
2667
|
+
/** Statistics with circular visual elements. */
|
|
2668
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2669
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2670
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2671
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2672
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2673
|
+
/** Transparent cells with only a left side line. */
|
|
2674
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2675
|
+
/** Transparent cells with only a top line. */
|
|
2676
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2677
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2678
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2679
|
+
/** Large icon bullets with text content. */
|
|
2680
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2681
|
+
/** Small dot bullets with text content. */
|
|
2682
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2683
|
+
/** Arrow icon bullets with text content. */
|
|
2684
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2685
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2686
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2687
|
+
/** Statistics with bar visual elements. */
|
|
2688
|
+
BAR_STATS = "BAR_STATS"
|
|
2689
|
+
}
|
|
2690
|
+
/** @enumType */
|
|
2691
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
2692
|
+
/** Column size controlling how many cells appear per row. */
|
|
2693
|
+
declare enum ColumnSize {
|
|
2694
|
+
/** Up to 4 cells in a row. */
|
|
2695
|
+
SMALL = "SMALL",
|
|
2696
|
+
/** Up to 3 cells in a row (default). */
|
|
2697
|
+
MEDIUM = "MEDIUM",
|
|
2698
|
+
/** Up to 2 cells in a row. */
|
|
2699
|
+
LARGE = "LARGE",
|
|
2700
|
+
/** 1 cell in a row. */
|
|
2701
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2702
|
+
}
|
|
2703
|
+
/** @enumType */
|
|
2704
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2705
|
+
/** Data for a smart block cell node. */
|
|
2706
|
+
interface SmartBlockCellData {
|
|
2707
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2708
|
+
label?: string | null;
|
|
2709
|
+
/** Shape file details. */
|
|
2710
|
+
shape?: Media;
|
|
2711
|
+
/** Border color of the cell. */
|
|
2712
|
+
borderColor?: string | null;
|
|
2713
|
+
/** Border width in pixels. */
|
|
2714
|
+
borderWidth?: number | null;
|
|
2715
|
+
/** Border radius in pixels. */
|
|
2716
|
+
borderRadius?: number | null;
|
|
2717
|
+
/** The type of the parent smart block (must match parent). */
|
|
2718
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2719
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2720
|
+
accentColor?: string | null;
|
|
2721
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2722
|
+
backgroundColor?: string | null;
|
|
2723
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2724
|
+
shapeColor?: string | null;
|
|
2725
|
+
}
|
|
2575
2726
|
interface Metadata {
|
|
2576
2727
|
/** Schema version. */
|
|
2577
2728
|
version?: number;
|
|
@@ -3072,10 +3223,10 @@ type ContentQuery = {
|
|
|
3072
3223
|
};
|
|
3073
3224
|
declare const utils: {
|
|
3074
3225
|
query: {
|
|
3075
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
|
|
3076
|
-
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /**
|
|
3226
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>; /** Map settings. */
|
|
3227
|
+
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** The address to display on the map. */
|
|
3077
3228
|
Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
|
|
3078
3229
|
};
|
|
3079
3230
|
};
|
|
3080
3231
|
|
|
3081
|
-
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, 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 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 GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, 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, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, 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 Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, 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, typedQueryContents, utils };
|
|
3232
|
+
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, 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 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 GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, 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, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, 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, typedQueryContents, utils };
|
|
@@ -29,6 +29,7 @@ __export(index_typings_exports, {
|
|
|
29
29
|
ButtonSize: () => ButtonSize,
|
|
30
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
31
31
|
ColorSwatchType: () => ColorSwatchType,
|
|
32
|
+
ColumnSize: () => ColumnSize,
|
|
32
33
|
Crop: () => Crop,
|
|
33
34
|
DecorationType: () => DecorationType,
|
|
34
35
|
DesignTarget: () => DesignTarget,
|
|
@@ -42,12 +43,14 @@ __export(index_typings_exports, {
|
|
|
42
43
|
ImagePositionPosition: () => ImagePositionPosition,
|
|
43
44
|
ImageScaling: () => ImageScaling,
|
|
44
45
|
ImageScalingScaling: () => ImageScalingScaling,
|
|
46
|
+
Indentation: () => Indentation,
|
|
45
47
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
46
48
|
Layout: () => Layout,
|
|
47
49
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
48
50
|
LayoutDataImagePosition: () => LayoutDataImagePosition,
|
|
49
51
|
LayoutType: () => LayoutType,
|
|
50
52
|
LineStyle: () => LineStyle,
|
|
53
|
+
ListStyle: () => ListStyle,
|
|
51
54
|
MapType: () => MapType,
|
|
52
55
|
NodeType: () => NodeType,
|
|
53
56
|
NullValue: () => NullValue,
|
|
@@ -62,6 +65,7 @@ __export(index_typings_exports, {
|
|
|
62
65
|
Resizing: () => Resizing,
|
|
63
66
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
64
67
|
Scaling: () => Scaling,
|
|
68
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
65
69
|
SortOrder: () => SortOrder,
|
|
66
70
|
Source: () => Source,
|
|
67
71
|
StylesBackgroundType: () => StylesBackgroundType,
|
|
@@ -287,6 +291,11 @@ function getContent(payload) {
|
|
|
287
291
|
},
|
|
288
292
|
{
|
|
289
293
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
294
|
+
},
|
|
295
|
+
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
296
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
297
|
+
{
|
|
298
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
290
299
|
}
|
|
291
300
|
]
|
|
292
301
|
}
|
|
@@ -409,7 +418,10 @@ function submitContent(payload) {
|
|
|
409
418
|
{
|
|
410
419
|
path: "richContent.nodes.cardData.background.gradient.stops.position"
|
|
411
420
|
},
|
|
412
|
-
{ path: "richContent.nodes.cardData.backgroundImage.media.duration" }
|
|
421
|
+
{ path: "richContent.nodes.cardData.backgroundImage.media.duration" },
|
|
422
|
+
{ path: "richContent.nodes.tocData.fontSize" },
|
|
423
|
+
{ path: "richContent.nodes.tocData.itemSpacing" },
|
|
424
|
+
{ path: "richContent.nodes.smartBlockCellData.shape.duration" }
|
|
413
425
|
]
|
|
414
426
|
},
|
|
415
427
|
{
|
|
@@ -585,6 +597,11 @@ function submitContent(payload) {
|
|
|
585
597
|
},
|
|
586
598
|
{
|
|
587
599
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
600
|
+
},
|
|
601
|
+
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
602
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
603
|
+
{
|
|
604
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
588
605
|
}
|
|
589
606
|
]
|
|
590
607
|
}
|
|
@@ -761,6 +778,11 @@ function getLatestContentByPageId(payload) {
|
|
|
761
778
|
},
|
|
762
779
|
{
|
|
763
780
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
781
|
+
},
|
|
782
|
+
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
783
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
784
|
+
{
|
|
785
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
764
786
|
}
|
|
765
787
|
]
|
|
766
788
|
}
|
|
@@ -937,6 +959,11 @@ function lockLatestContentByPageId(payload) {
|
|
|
937
959
|
},
|
|
938
960
|
{
|
|
939
961
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
962
|
+
},
|
|
963
|
+
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
964
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
965
|
+
{
|
|
966
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
940
967
|
}
|
|
941
968
|
]
|
|
942
969
|
}
|
|
@@ -1115,6 +1142,11 @@ function queryContents(payload) {
|
|
|
1115
1142
|
},
|
|
1116
1143
|
{
|
|
1117
1144
|
path: "contents.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1145
|
+
},
|
|
1146
|
+
{ path: "contents.richContent.nodes.tocData.fontSize" },
|
|
1147
|
+
{ path: "contents.richContent.nodes.tocData.itemSpacing" },
|
|
1148
|
+
{
|
|
1149
|
+
path: "contents.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1118
1150
|
}
|
|
1119
1151
|
]
|
|
1120
1152
|
}
|
|
@@ -1224,6 +1256,9 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1224
1256
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1225
1257
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1226
1258
|
NodeType2["CARD"] = "CARD";
|
|
1259
|
+
NodeType2["TOC"] = "TOC";
|
|
1260
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1261
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1227
1262
|
return NodeType2;
|
|
1228
1263
|
})(NodeType || {});
|
|
1229
1264
|
var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
|
|
@@ -1334,6 +1369,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1334
1369
|
Source2["HTML"] = "HTML";
|
|
1335
1370
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1336
1371
|
Source2["AI"] = "AI";
|
|
1372
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1337
1373
|
return Source2;
|
|
1338
1374
|
})(Source || {});
|
|
1339
1375
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1535,6 +1571,45 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
1535
1571
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1536
1572
|
return CardDataBackgroundType2;
|
|
1537
1573
|
})(CardDataBackgroundType || {});
|
|
1574
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
1575
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
1576
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
1577
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
1578
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
1579
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
1580
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
1581
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
1582
|
+
return ListStyle2;
|
|
1583
|
+
})(ListStyle || {});
|
|
1584
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
1585
|
+
Indentation2["NESTED"] = "NESTED";
|
|
1586
|
+
Indentation2["FLAT"] = "FLAT";
|
|
1587
|
+
return Indentation2;
|
|
1588
|
+
})(Indentation || {});
|
|
1589
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
1590
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
1591
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
1592
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
1593
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
1594
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
1595
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
1596
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
1597
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
1598
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
1599
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
1600
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
1601
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1602
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1603
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1604
|
+
return SmartBlockDataType2;
|
|
1605
|
+
})(SmartBlockDataType || {});
|
|
1606
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
1607
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
1608
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
1609
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
1610
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
1611
|
+
return ColumnSize2;
|
|
1612
|
+
})(ColumnSize || {});
|
|
1538
1613
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
1539
1614
|
SortOrder2["ASC"] = "ASC";
|
|
1540
1615
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -1751,6 +1826,7 @@ var utils = {
|
|
|
1751
1826
|
ButtonSize,
|
|
1752
1827
|
CardDataBackgroundType,
|
|
1753
1828
|
ColorSwatchType,
|
|
1829
|
+
ColumnSize,
|
|
1754
1830
|
Crop,
|
|
1755
1831
|
DecorationType,
|
|
1756
1832
|
DesignTarget,
|
|
@@ -1764,12 +1840,14 @@ var utils = {
|
|
|
1764
1840
|
ImagePositionPosition,
|
|
1765
1841
|
ImageScaling,
|
|
1766
1842
|
ImageScalingScaling,
|
|
1843
|
+
Indentation,
|
|
1767
1844
|
InitialExpandedItems,
|
|
1768
1845
|
Layout,
|
|
1769
1846
|
LayoutDataBackgroundType,
|
|
1770
1847
|
LayoutDataImagePosition,
|
|
1771
1848
|
LayoutType,
|
|
1772
1849
|
LineStyle,
|
|
1850
|
+
ListStyle,
|
|
1773
1851
|
MapType,
|
|
1774
1852
|
NodeType,
|
|
1775
1853
|
NullValue,
|
|
@@ -1784,6 +1862,7 @@ var utils = {
|
|
|
1784
1862
|
Resizing,
|
|
1785
1863
|
ResponsivenessBehaviour,
|
|
1786
1864
|
Scaling,
|
|
1865
|
+
SmartBlockDataType,
|
|
1787
1866
|
SortOrder,
|
|
1788
1867
|
Source,
|
|
1789
1868
|
StylesBackgroundType,
|