@wix/auto_sdk_blog_draft-posts 1.0.81 → 1.0.83
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 +101 -17
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +172 -76
- package/build/cjs/index.typings.js +89 -14
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +172 -76
- package/build/cjs/meta.js +89 -14
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +99 -17
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +172 -76
- package/build/es/index.typings.mjs +87 -14
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +172 -76
- package/build/es/meta.mjs +87 -14
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +101 -17
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +172 -76
- package/build/internal/cjs/index.typings.js +89 -14
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +172 -76
- package/build/internal/cjs/meta.js +89 -14
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +99 -17
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +172 -76
- package/build/internal/es/index.typings.mjs +87 -14
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +172 -76
- package/build/internal/es/meta.mjs +87 -14
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -292,6 +292,10 @@ interface Node extends NodeDataOneOf {
|
|
|
292
292
|
cardData?: CardData;
|
|
293
293
|
/** Data for a table of contents node. */
|
|
294
294
|
tocData?: TocData;
|
|
295
|
+
/** Data for a smart block node. */
|
|
296
|
+
smartBlockData?: SmartBlockData;
|
|
297
|
+
/** Data for a smart block cell node. */
|
|
298
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
295
299
|
/** 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. */
|
|
296
300
|
type?: NodeTypeWithLiterals;
|
|
297
301
|
/** Node ID. */
|
|
@@ -365,6 +369,10 @@ interface NodeDataOneOf {
|
|
|
365
369
|
cardData?: CardData;
|
|
366
370
|
/** Data for a table of contents node. */
|
|
367
371
|
tocData?: TocData;
|
|
372
|
+
/** Data for a smart block node. */
|
|
373
|
+
smartBlockData?: SmartBlockData;
|
|
374
|
+
/** Data for a smart block cell node. */
|
|
375
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
368
376
|
}
|
|
369
377
|
declare enum NodeType {
|
|
370
378
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -403,10 +411,12 @@ declare enum NodeType {
|
|
|
403
411
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
404
412
|
SHAPE = "SHAPE",
|
|
405
413
|
CARD = "CARD",
|
|
406
|
-
TOC = "TOC"
|
|
414
|
+
TOC = "TOC",
|
|
415
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
416
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
407
417
|
}
|
|
408
418
|
/** @enumType */
|
|
409
|
-
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';
|
|
419
|
+
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';
|
|
410
420
|
interface NodeStyle {
|
|
411
421
|
/** The top padding value in pixels. */
|
|
412
422
|
paddingTop?: string | null;
|
|
@@ -1024,6 +1034,8 @@ interface HeadingData {
|
|
|
1024
1034
|
textStyle?: TextStyle;
|
|
1025
1035
|
/** Indentation level from 1-4. */
|
|
1026
1036
|
indentation?: number | null;
|
|
1037
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1038
|
+
renderedLevel?: number | null;
|
|
1027
1039
|
}
|
|
1028
1040
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1029
1041
|
/** The URL for the HTML code for the node. */
|
|
@@ -1897,6 +1909,8 @@ interface TableData {
|
|
|
1897
1909
|
* @maxSize 4
|
|
1898
1910
|
*/
|
|
1899
1911
|
cellPadding?: number[];
|
|
1912
|
+
/** Table's alternative text. */
|
|
1913
|
+
altText?: string | null;
|
|
1900
1914
|
}
|
|
1901
1915
|
interface Dimensions {
|
|
1902
1916
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2338,6 +2352,88 @@ declare enum Indentation {
|
|
|
2338
2352
|
}
|
|
2339
2353
|
/** @enumType */
|
|
2340
2354
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2355
|
+
/** Data for a smart block node. */
|
|
2356
|
+
interface SmartBlockData {
|
|
2357
|
+
/** The type of the smart block. */
|
|
2358
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2359
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2360
|
+
orientation?: string | null;
|
|
2361
|
+
/** Column size controlling cells per row. */
|
|
2362
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2363
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2364
|
+
borderColor?: string | null;
|
|
2365
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2366
|
+
borderWidth?: number | null;
|
|
2367
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2368
|
+
borderRadius?: number | null;
|
|
2369
|
+
}
|
|
2370
|
+
/** Layout type of the smart block */
|
|
2371
|
+
declare enum SmartBlockDataType {
|
|
2372
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2373
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2374
|
+
/** Numbered boxes. */
|
|
2375
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2376
|
+
/** Statistics display with large numbers/values. */
|
|
2377
|
+
STATS = "STATS",
|
|
2378
|
+
/** Statistics with circular visual elements. */
|
|
2379
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2380
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2381
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2382
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2383
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2384
|
+
/** Transparent cells with only a left side line. */
|
|
2385
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2386
|
+
/** Transparent cells with only a top line. */
|
|
2387
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2388
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2389
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2390
|
+
/** Large icon bullets with text content. */
|
|
2391
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2392
|
+
/** Small dot bullets with text content. */
|
|
2393
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2394
|
+
/** Arrow icon bullets with text content. */
|
|
2395
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2396
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2397
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2398
|
+
/** Statistics with bar visual elements. */
|
|
2399
|
+
BAR_STATS = "BAR_STATS"
|
|
2400
|
+
}
|
|
2401
|
+
/** @enumType */
|
|
2402
|
+
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';
|
|
2403
|
+
/** Column size controlling how many cells appear per row. */
|
|
2404
|
+
declare enum ColumnSize {
|
|
2405
|
+
/** Up to 4 cells in a row. */
|
|
2406
|
+
SMALL = "SMALL",
|
|
2407
|
+
/** Up to 3 cells in a row (default). */
|
|
2408
|
+
MEDIUM = "MEDIUM",
|
|
2409
|
+
/** Up to 2 cells in a row. */
|
|
2410
|
+
LARGE = "LARGE",
|
|
2411
|
+
/** 1 cell in a row. */
|
|
2412
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2413
|
+
}
|
|
2414
|
+
/** @enumType */
|
|
2415
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2416
|
+
/** Data for a smart block cell node. */
|
|
2417
|
+
interface SmartBlockCellData {
|
|
2418
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2419
|
+
label?: string | null;
|
|
2420
|
+
/** Shape file details. */
|
|
2421
|
+
shape?: V1Media;
|
|
2422
|
+
/** Border color of the cell. */
|
|
2423
|
+
borderColor?: string | null;
|
|
2424
|
+
/** Border width in pixels. */
|
|
2425
|
+
borderWidth?: number | null;
|
|
2426
|
+
/** Border radius in pixels. */
|
|
2427
|
+
borderRadius?: number | null;
|
|
2428
|
+
/** The type of the parent smart block (must match parent). */
|
|
2429
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2430
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2431
|
+
accentColor?: string | null;
|
|
2432
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2433
|
+
backgroundColor?: string | null;
|
|
2434
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2435
|
+
shapeColor?: string | null;
|
|
2436
|
+
}
|
|
2341
2437
|
interface Metadata {
|
|
2342
2438
|
/** Schema version. */
|
|
2343
2439
|
version?: number;
|
|
@@ -3372,79 +3468,6 @@ interface DraftPostCount {
|
|
|
3372
3468
|
/** Number of posts. */
|
|
3373
3469
|
postCount?: number;
|
|
3374
3470
|
}
|
|
3375
|
-
interface TranslateDraftRequest {
|
|
3376
|
-
/**
|
|
3377
|
-
* Source post or draft ID
|
|
3378
|
-
* @format GUID
|
|
3379
|
-
*/
|
|
3380
|
-
postId?: string;
|
|
3381
|
-
/**
|
|
3382
|
-
* Translation language
|
|
3383
|
-
* @format LANGUAGE_TAG
|
|
3384
|
-
*/
|
|
3385
|
-
language?: string;
|
|
3386
|
-
/**
|
|
3387
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3388
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3389
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3390
|
-
* @maxSize 10
|
|
3391
|
-
*/
|
|
3392
|
-
fieldsets?: FieldWithLiterals[];
|
|
3393
|
-
}
|
|
3394
|
-
interface TranslateDraftResponse {
|
|
3395
|
-
/** Draft post. */
|
|
3396
|
-
draftPost?: DraftPost;
|
|
3397
|
-
}
|
|
3398
|
-
interface IsDraftPostAutoTranslatableRequest {
|
|
3399
|
-
/**
|
|
3400
|
-
* Source post or draft ID.
|
|
3401
|
-
* @format GUID
|
|
3402
|
-
*/
|
|
3403
|
-
draftPostId?: string;
|
|
3404
|
-
}
|
|
3405
|
-
interface IsDraftPostAutoTranslatableResponse {
|
|
3406
|
-
/**
|
|
3407
|
-
* Source draft post ID.
|
|
3408
|
-
* @format GUID
|
|
3409
|
-
*/
|
|
3410
|
-
draftPostId?: string;
|
|
3411
|
-
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3412
|
-
translatable?: boolean;
|
|
3413
|
-
/** Draft post title word count. */
|
|
3414
|
-
titleWordCount?: number;
|
|
3415
|
-
/** Draft post content word count. */
|
|
3416
|
-
contentWordCount?: number;
|
|
3417
|
-
/** Word credits available for auto translation. */
|
|
3418
|
-
availableAutoTranslateWords?: number;
|
|
3419
|
-
/** Word credits available after auto translation would be done. */
|
|
3420
|
-
availableAutoTranslateWordsAfter?: number;
|
|
3421
|
-
/** Content text character count. */
|
|
3422
|
-
contentTextCharacterCount?: number;
|
|
3423
|
-
}
|
|
3424
|
-
interface UpdateDraftPostLanguageRequest {
|
|
3425
|
-
/**
|
|
3426
|
-
* Source draft post ID
|
|
3427
|
-
* @format GUID
|
|
3428
|
-
*/
|
|
3429
|
-
postId?: string;
|
|
3430
|
-
/**
|
|
3431
|
-
* New language to replace to
|
|
3432
|
-
* @minLength 2
|
|
3433
|
-
* @format LANGUAGE_TAG
|
|
3434
|
-
*/
|
|
3435
|
-
language?: string;
|
|
3436
|
-
/**
|
|
3437
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3438
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3439
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3440
|
-
* @maxSize 10
|
|
3441
|
-
*/
|
|
3442
|
-
fieldsets?: FieldWithLiterals[];
|
|
3443
|
-
}
|
|
3444
|
-
interface UpdateDraftPostLanguageResponse {
|
|
3445
|
-
/** Draft post */
|
|
3446
|
-
draftPost?: DraftPost;
|
|
3447
|
-
}
|
|
3448
3471
|
interface BulkRevertToUnpublishedRequest {
|
|
3449
3472
|
/**
|
|
3450
3473
|
* Source post IDs.
|
|
@@ -3556,6 +3579,79 @@ interface MarkPostAsInModerationResponse {
|
|
|
3556
3579
|
/** Updated post draft. */
|
|
3557
3580
|
draftPost?: DraftPost;
|
|
3558
3581
|
}
|
|
3582
|
+
interface TranslateDraftRequest {
|
|
3583
|
+
/**
|
|
3584
|
+
* Source post or draft ID
|
|
3585
|
+
* @format GUID
|
|
3586
|
+
*/
|
|
3587
|
+
postId?: string;
|
|
3588
|
+
/**
|
|
3589
|
+
* Translation language
|
|
3590
|
+
* @format LANGUAGE_TAG
|
|
3591
|
+
*/
|
|
3592
|
+
language?: string;
|
|
3593
|
+
/**
|
|
3594
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3595
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3596
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3597
|
+
* @maxSize 10
|
|
3598
|
+
*/
|
|
3599
|
+
fieldsets?: FieldWithLiterals[];
|
|
3600
|
+
}
|
|
3601
|
+
interface TranslateDraftResponse {
|
|
3602
|
+
/** Draft post. */
|
|
3603
|
+
draftPost?: DraftPost;
|
|
3604
|
+
}
|
|
3605
|
+
interface IsDraftPostAutoTranslatableRequest {
|
|
3606
|
+
/**
|
|
3607
|
+
* Source post or draft ID.
|
|
3608
|
+
* @format GUID
|
|
3609
|
+
*/
|
|
3610
|
+
draftPostId?: string;
|
|
3611
|
+
}
|
|
3612
|
+
interface IsDraftPostAutoTranslatableResponse {
|
|
3613
|
+
/**
|
|
3614
|
+
* Source draft post ID.
|
|
3615
|
+
* @format GUID
|
|
3616
|
+
*/
|
|
3617
|
+
draftPostId?: string;
|
|
3618
|
+
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3619
|
+
translatable?: boolean;
|
|
3620
|
+
/** Draft post title word count. */
|
|
3621
|
+
titleWordCount?: number;
|
|
3622
|
+
/** Draft post content word count. */
|
|
3623
|
+
contentWordCount?: number;
|
|
3624
|
+
/** Word credits available for auto translation. */
|
|
3625
|
+
availableAutoTranslateWords?: number;
|
|
3626
|
+
/** Word credits available after auto translation would be done. */
|
|
3627
|
+
availableAutoTranslateWordsAfter?: number;
|
|
3628
|
+
/** Content text character count. */
|
|
3629
|
+
contentTextCharacterCount?: number;
|
|
3630
|
+
}
|
|
3631
|
+
interface UpdateDraftPostLanguageRequest {
|
|
3632
|
+
/**
|
|
3633
|
+
* Source draft post ID
|
|
3634
|
+
* @format GUID
|
|
3635
|
+
*/
|
|
3636
|
+
postId?: string;
|
|
3637
|
+
/**
|
|
3638
|
+
* New language to replace to
|
|
3639
|
+
* @minLength 2
|
|
3640
|
+
* @format LANGUAGE_TAG
|
|
3641
|
+
*/
|
|
3642
|
+
language?: string;
|
|
3643
|
+
/**
|
|
3644
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3645
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3646
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3647
|
+
* @maxSize 10
|
|
3648
|
+
*/
|
|
3649
|
+
fieldsets?: FieldWithLiterals[];
|
|
3650
|
+
}
|
|
3651
|
+
interface UpdateDraftPostLanguageResponse {
|
|
3652
|
+
/** Draft post */
|
|
3653
|
+
draftPost?: DraftPost;
|
|
3654
|
+
}
|
|
3559
3655
|
interface BaseEventMetadata {
|
|
3560
3656
|
/**
|
|
3561
3657
|
* App instance ID.
|
|
@@ -4351,4 +4447,4 @@ declare const utils: {
|
|
|
4351
4447
|
*/
|
|
4352
4448
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
4353
4449
|
|
|
4354
|
-
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, 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 Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
4450
|
+
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, 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 Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, 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, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
@@ -291,7 +291,10 @@ function createDraftPost(payload) {
|
|
|
291
291
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
292
292
|
},
|
|
293
293
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
294
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
294
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
295
|
+
{
|
|
296
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
297
|
+
}
|
|
295
298
|
]
|
|
296
299
|
}
|
|
297
300
|
]);
|
|
@@ -439,7 +442,10 @@ function createDraftPost(payload) {
|
|
|
439
442
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
440
443
|
},
|
|
441
444
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
442
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
445
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
446
|
+
{
|
|
447
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
448
|
+
}
|
|
443
449
|
]
|
|
444
450
|
}
|
|
445
451
|
])
|
|
@@ -576,7 +582,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
576
582
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
577
583
|
},
|
|
578
584
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
579
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
585
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
586
|
+
{
|
|
587
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
588
|
+
}
|
|
580
589
|
]
|
|
581
590
|
}
|
|
582
591
|
]);
|
|
@@ -740,7 +749,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
740
749
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
741
750
|
},
|
|
742
751
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
743
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
752
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
753
|
+
{
|
|
754
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
755
|
+
}
|
|
744
756
|
]
|
|
745
757
|
}
|
|
746
758
|
])
|
|
@@ -914,6 +926,9 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
914
926
|
{ path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
|
|
915
927
|
{
|
|
916
928
|
path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
path: "draftPosts.draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
917
932
|
}
|
|
918
933
|
]
|
|
919
934
|
}
|
|
@@ -1078,7 +1093,10 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1078
1093
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1079
1094
|
},
|
|
1080
1095
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1081
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
1096
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1097
|
+
{
|
|
1098
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1099
|
+
}
|
|
1082
1100
|
]
|
|
1083
1101
|
}
|
|
1084
1102
|
])
|
|
@@ -1237,7 +1255,10 @@ function listDeletedDraftPosts(payload) {
|
|
|
1237
1255
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1238
1256
|
},
|
|
1239
1257
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
1240
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
1258
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
1259
|
+
{
|
|
1260
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1261
|
+
}
|
|
1241
1262
|
]
|
|
1242
1263
|
}
|
|
1243
1264
|
])
|
|
@@ -1392,7 +1413,10 @@ function getDraftPost(payload) {
|
|
|
1392
1413
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1393
1414
|
},
|
|
1394
1415
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1395
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1416
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1417
|
+
{
|
|
1418
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1419
|
+
}
|
|
1396
1420
|
]
|
|
1397
1421
|
}
|
|
1398
1422
|
])
|
|
@@ -1532,7 +1556,10 @@ function updateDraftPost(payload) {
|
|
|
1532
1556
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1533
1557
|
},
|
|
1534
1558
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1535
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1559
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1560
|
+
{
|
|
1561
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1562
|
+
}
|
|
1536
1563
|
]
|
|
1537
1564
|
}
|
|
1538
1565
|
]);
|
|
@@ -1684,7 +1711,10 @@ function updateDraftPost(payload) {
|
|
|
1684
1711
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1685
1712
|
},
|
|
1686
1713
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1687
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1714
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1715
|
+
{
|
|
1716
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1717
|
+
}
|
|
1688
1718
|
]
|
|
1689
1719
|
}
|
|
1690
1720
|
])
|
|
@@ -1897,7 +1927,10 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1897
1927
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1898
1928
|
},
|
|
1899
1929
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1900
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
1930
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1931
|
+
{
|
|
1932
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1933
|
+
}
|
|
1901
1934
|
]
|
|
1902
1935
|
}
|
|
1903
1936
|
])
|
|
@@ -2056,7 +2089,10 @@ function listDraftPosts(payload) {
|
|
|
2056
2089
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2057
2090
|
},
|
|
2058
2091
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2059
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2092
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2093
|
+
{
|
|
2094
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2095
|
+
}
|
|
2060
2096
|
]
|
|
2061
2097
|
}
|
|
2062
2098
|
])
|
|
@@ -2215,7 +2251,10 @@ function getDeletedDraftPost(payload) {
|
|
|
2215
2251
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2216
2252
|
},
|
|
2217
2253
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2218
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2254
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2255
|
+
{
|
|
2256
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2257
|
+
}
|
|
2219
2258
|
]
|
|
2220
2259
|
}
|
|
2221
2260
|
])
|
|
@@ -2374,7 +2413,10 @@ function restoreFromTrashBin(payload) {
|
|
|
2374
2413
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2375
2414
|
},
|
|
2376
2415
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2377
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2416
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2417
|
+
{
|
|
2418
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2419
|
+
}
|
|
2378
2420
|
]
|
|
2379
2421
|
}
|
|
2380
2422
|
])
|
|
@@ -2533,7 +2575,10 @@ function queryDraftPosts(payload) {
|
|
|
2533
2575
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2534
2576
|
},
|
|
2535
2577
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2536
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2578
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2579
|
+
{
|
|
2580
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2581
|
+
}
|
|
2537
2582
|
]
|
|
2538
2583
|
}
|
|
2539
2584
|
])
|
|
@@ -2651,6 +2696,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
2651
2696
|
NodeType2["SHAPE"] = "SHAPE";
|
|
2652
2697
|
NodeType2["CARD"] = "CARD";
|
|
2653
2698
|
NodeType2["TOC"] = "TOC";
|
|
2699
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
2700
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
2654
2701
|
return NodeType2;
|
|
2655
2702
|
})(NodeType || {});
|
|
2656
2703
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -2978,6 +3025,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
2978
3025
|
Indentation2["FLAT"] = "FLAT";
|
|
2979
3026
|
return Indentation2;
|
|
2980
3027
|
})(Indentation || {});
|
|
3028
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
3029
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
3030
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
3031
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
3032
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
3033
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
3034
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
3035
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
3036
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
3037
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
3038
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
3039
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
3040
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
3041
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
3042
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
3043
|
+
return SmartBlockDataType2;
|
|
3044
|
+
})(SmartBlockDataType || {});
|
|
3045
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
3046
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
3047
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
3048
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
3049
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
3050
|
+
return ColumnSize2;
|
|
3051
|
+
})(ColumnSize || {});
|
|
2981
3052
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
2982
3053
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
2983
3054
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3890,6 +3961,7 @@ export {
|
|
|
3890
3961
|
ButtonDataType,
|
|
3891
3962
|
CardDataBackgroundType,
|
|
3892
3963
|
CardStylesType,
|
|
3964
|
+
ColumnSize,
|
|
3893
3965
|
Crop,
|
|
3894
3966
|
DecorationType,
|
|
3895
3967
|
DesignTarget,
|
|
@@ -3925,6 +3997,7 @@ export {
|
|
|
3925
3997
|
Resizing,
|
|
3926
3998
|
ResponsivenessBehaviour,
|
|
3927
3999
|
Scaling,
|
|
4000
|
+
SmartBlockDataType,
|
|
3928
4001
|
SortOrder,
|
|
3929
4002
|
Source,
|
|
3930
4003
|
Status,
|