@wix/auto_sdk_blog_draft-posts 1.0.80 → 1.0.82
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,6 +3468,79 @@ interface DraftPostCount {
|
|
|
3372
3468
|
/** Number of posts. */
|
|
3373
3469
|
postCount?: number;
|
|
3374
3470
|
}
|
|
3471
|
+
interface TranslateDraftRequest {
|
|
3472
|
+
/**
|
|
3473
|
+
* Source post or draft ID
|
|
3474
|
+
* @format GUID
|
|
3475
|
+
*/
|
|
3476
|
+
postId?: string;
|
|
3477
|
+
/**
|
|
3478
|
+
* Translation language
|
|
3479
|
+
* @format LANGUAGE_TAG
|
|
3480
|
+
*/
|
|
3481
|
+
language?: string;
|
|
3482
|
+
/**
|
|
3483
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3484
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3485
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3486
|
+
* @maxSize 10
|
|
3487
|
+
*/
|
|
3488
|
+
fieldsets?: FieldWithLiterals[];
|
|
3489
|
+
}
|
|
3490
|
+
interface TranslateDraftResponse {
|
|
3491
|
+
/** Draft post. */
|
|
3492
|
+
draftPost?: DraftPost;
|
|
3493
|
+
}
|
|
3494
|
+
interface IsDraftPostAutoTranslatableRequest {
|
|
3495
|
+
/**
|
|
3496
|
+
* Source post or draft ID.
|
|
3497
|
+
* @format GUID
|
|
3498
|
+
*/
|
|
3499
|
+
draftPostId?: string;
|
|
3500
|
+
}
|
|
3501
|
+
interface IsDraftPostAutoTranslatableResponse {
|
|
3502
|
+
/**
|
|
3503
|
+
* Source draft post ID.
|
|
3504
|
+
* @format GUID
|
|
3505
|
+
*/
|
|
3506
|
+
draftPostId?: string;
|
|
3507
|
+
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3508
|
+
translatable?: boolean;
|
|
3509
|
+
/** Draft post title word count. */
|
|
3510
|
+
titleWordCount?: number;
|
|
3511
|
+
/** Draft post content word count. */
|
|
3512
|
+
contentWordCount?: number;
|
|
3513
|
+
/** Word credits available for auto translation. */
|
|
3514
|
+
availableAutoTranslateWords?: number;
|
|
3515
|
+
/** Word credits available after auto translation would be done. */
|
|
3516
|
+
availableAutoTranslateWordsAfter?: number;
|
|
3517
|
+
/** Content text character count. */
|
|
3518
|
+
contentTextCharacterCount?: number;
|
|
3519
|
+
}
|
|
3520
|
+
interface UpdateDraftPostLanguageRequest {
|
|
3521
|
+
/**
|
|
3522
|
+
* Source draft post ID
|
|
3523
|
+
* @format GUID
|
|
3524
|
+
*/
|
|
3525
|
+
postId?: string;
|
|
3526
|
+
/**
|
|
3527
|
+
* New language to replace to
|
|
3528
|
+
* @minLength 2
|
|
3529
|
+
* @format LANGUAGE_TAG
|
|
3530
|
+
*/
|
|
3531
|
+
language?: string;
|
|
3532
|
+
/**
|
|
3533
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3534
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3535
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3536
|
+
* @maxSize 10
|
|
3537
|
+
*/
|
|
3538
|
+
fieldsets?: FieldWithLiterals[];
|
|
3539
|
+
}
|
|
3540
|
+
interface UpdateDraftPostLanguageResponse {
|
|
3541
|
+
/** Draft post */
|
|
3542
|
+
draftPost?: DraftPost;
|
|
3543
|
+
}
|
|
3375
3544
|
interface BulkRevertToUnpublishedRequest {
|
|
3376
3545
|
/**
|
|
3377
3546
|
* Source post IDs.
|
|
@@ -3483,79 +3652,6 @@ interface MarkPostAsInModerationResponse {
|
|
|
3483
3652
|
/** Updated post draft. */
|
|
3484
3653
|
draftPost?: DraftPost;
|
|
3485
3654
|
}
|
|
3486
|
-
interface TranslateDraftRequest {
|
|
3487
|
-
/**
|
|
3488
|
-
* Source post or draft ID
|
|
3489
|
-
* @format GUID
|
|
3490
|
-
*/
|
|
3491
|
-
postId?: string;
|
|
3492
|
-
/**
|
|
3493
|
-
* Translation language
|
|
3494
|
-
* @format LANGUAGE_TAG
|
|
3495
|
-
*/
|
|
3496
|
-
language?: string;
|
|
3497
|
-
/**
|
|
3498
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3499
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3500
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3501
|
-
* @maxSize 10
|
|
3502
|
-
*/
|
|
3503
|
-
fieldsets?: FieldWithLiterals[];
|
|
3504
|
-
}
|
|
3505
|
-
interface TranslateDraftResponse {
|
|
3506
|
-
/** Draft post. */
|
|
3507
|
-
draftPost?: DraftPost;
|
|
3508
|
-
}
|
|
3509
|
-
interface IsDraftPostAutoTranslatableRequest {
|
|
3510
|
-
/**
|
|
3511
|
-
* Source post or draft ID.
|
|
3512
|
-
* @format GUID
|
|
3513
|
-
*/
|
|
3514
|
-
draftPostId?: string;
|
|
3515
|
-
}
|
|
3516
|
-
interface IsDraftPostAutoTranslatableResponse {
|
|
3517
|
-
/**
|
|
3518
|
-
* Source draft post ID.
|
|
3519
|
-
* @format GUID
|
|
3520
|
-
*/
|
|
3521
|
-
draftPostId?: string;
|
|
3522
|
-
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3523
|
-
translatable?: boolean;
|
|
3524
|
-
/** Draft post title word count. */
|
|
3525
|
-
titleWordCount?: number;
|
|
3526
|
-
/** Draft post content word count. */
|
|
3527
|
-
contentWordCount?: number;
|
|
3528
|
-
/** Word credits available for auto translation. */
|
|
3529
|
-
availableAutoTranslateWords?: number;
|
|
3530
|
-
/** Word credits available after auto translation would be done. */
|
|
3531
|
-
availableAutoTranslateWordsAfter?: number;
|
|
3532
|
-
/** Content text character count. */
|
|
3533
|
-
contentTextCharacterCount?: number;
|
|
3534
|
-
}
|
|
3535
|
-
interface UpdateDraftPostLanguageRequest {
|
|
3536
|
-
/**
|
|
3537
|
-
* Source draft post ID
|
|
3538
|
-
* @format GUID
|
|
3539
|
-
*/
|
|
3540
|
-
postId?: string;
|
|
3541
|
-
/**
|
|
3542
|
-
* New language to replace to
|
|
3543
|
-
* @minLength 2
|
|
3544
|
-
* @format LANGUAGE_TAG
|
|
3545
|
-
*/
|
|
3546
|
-
language?: string;
|
|
3547
|
-
/**
|
|
3548
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3549
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3550
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3551
|
-
* @maxSize 10
|
|
3552
|
-
*/
|
|
3553
|
-
fieldsets?: FieldWithLiterals[];
|
|
3554
|
-
}
|
|
3555
|
-
interface UpdateDraftPostLanguageResponse {
|
|
3556
|
-
/** Draft post */
|
|
3557
|
-
draftPost?: DraftPost;
|
|
3558
|
-
}
|
|
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 };
|
|
@@ -30,6 +30,7 @@ __export(index_typings_exports, {
|
|
|
30
30
|
ButtonDataType: () => ButtonDataType,
|
|
31
31
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
32
32
|
CardStylesType: () => CardStylesType,
|
|
33
|
+
ColumnSize: () => ColumnSize,
|
|
33
34
|
Crop: () => Crop,
|
|
34
35
|
DecorationType: () => DecorationType,
|
|
35
36
|
DesignTarget: () => DesignTarget,
|
|
@@ -65,6 +66,7 @@ __export(index_typings_exports, {
|
|
|
65
66
|
Resizing: () => Resizing,
|
|
66
67
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
67
68
|
Scaling: () => Scaling,
|
|
69
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
68
70
|
SortOrder: () => SortOrder,
|
|
69
71
|
Source: () => Source,
|
|
70
72
|
Status: () => Status,
|
|
@@ -391,7 +393,10 @@ function createDraftPost(payload) {
|
|
|
391
393
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
392
394
|
},
|
|
393
395
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
394
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
396
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
397
|
+
{
|
|
398
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
399
|
+
}
|
|
395
400
|
]
|
|
396
401
|
}
|
|
397
402
|
]);
|
|
@@ -539,7 +544,10 @@ function createDraftPost(payload) {
|
|
|
539
544
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
540
545
|
},
|
|
541
546
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
542
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
547
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
548
|
+
{
|
|
549
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
550
|
+
}
|
|
543
551
|
]
|
|
544
552
|
}
|
|
545
553
|
])
|
|
@@ -676,7 +684,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
676
684
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
677
685
|
},
|
|
678
686
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
679
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
687
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
688
|
+
{
|
|
689
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
690
|
+
}
|
|
680
691
|
]
|
|
681
692
|
}
|
|
682
693
|
]);
|
|
@@ -840,7 +851,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
840
851
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
841
852
|
},
|
|
842
853
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
843
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
854
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
855
|
+
{
|
|
856
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
857
|
+
}
|
|
844
858
|
]
|
|
845
859
|
}
|
|
846
860
|
])
|
|
@@ -1014,6 +1028,9 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1014
1028
|
{ path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
|
|
1015
1029
|
{
|
|
1016
1030
|
path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
path: "draftPosts.draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1017
1034
|
}
|
|
1018
1035
|
]
|
|
1019
1036
|
}
|
|
@@ -1178,7 +1195,10 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1178
1195
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1179
1196
|
},
|
|
1180
1197
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1181
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
1198
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1199
|
+
{
|
|
1200
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1201
|
+
}
|
|
1182
1202
|
]
|
|
1183
1203
|
}
|
|
1184
1204
|
])
|
|
@@ -1337,7 +1357,10 @@ function listDeletedDraftPosts(payload) {
|
|
|
1337
1357
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1338
1358
|
},
|
|
1339
1359
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
1340
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
1360
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
1361
|
+
{
|
|
1362
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1363
|
+
}
|
|
1341
1364
|
]
|
|
1342
1365
|
}
|
|
1343
1366
|
])
|
|
@@ -1492,7 +1515,10 @@ function getDraftPost(payload) {
|
|
|
1492
1515
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1493
1516
|
},
|
|
1494
1517
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1495
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1518
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1519
|
+
{
|
|
1520
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1521
|
+
}
|
|
1496
1522
|
]
|
|
1497
1523
|
}
|
|
1498
1524
|
])
|
|
@@ -1632,7 +1658,10 @@ function updateDraftPost(payload) {
|
|
|
1632
1658
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1633
1659
|
},
|
|
1634
1660
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1635
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1661
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1662
|
+
{
|
|
1663
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1664
|
+
}
|
|
1636
1665
|
]
|
|
1637
1666
|
}
|
|
1638
1667
|
]);
|
|
@@ -1784,7 +1813,10 @@ function updateDraftPost(payload) {
|
|
|
1784
1813
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1785
1814
|
},
|
|
1786
1815
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1787
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1816
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1817
|
+
{
|
|
1818
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1819
|
+
}
|
|
1788
1820
|
]
|
|
1789
1821
|
}
|
|
1790
1822
|
])
|
|
@@ -1997,7 +2029,10 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1997
2029
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1998
2030
|
},
|
|
1999
2031
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
2000
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
2032
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
2033
|
+
{
|
|
2034
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2035
|
+
}
|
|
2001
2036
|
]
|
|
2002
2037
|
}
|
|
2003
2038
|
])
|
|
@@ -2156,7 +2191,10 @@ function listDraftPosts(payload) {
|
|
|
2156
2191
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2157
2192
|
},
|
|
2158
2193
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2159
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2194
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2195
|
+
{
|
|
2196
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2197
|
+
}
|
|
2160
2198
|
]
|
|
2161
2199
|
}
|
|
2162
2200
|
])
|
|
@@ -2315,7 +2353,10 @@ function getDeletedDraftPost(payload) {
|
|
|
2315
2353
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2316
2354
|
},
|
|
2317
2355
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2318
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2356
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2357
|
+
{
|
|
2358
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2359
|
+
}
|
|
2319
2360
|
]
|
|
2320
2361
|
}
|
|
2321
2362
|
])
|
|
@@ -2474,7 +2515,10 @@ function restoreFromTrashBin(payload) {
|
|
|
2474
2515
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2475
2516
|
},
|
|
2476
2517
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2477
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2518
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2519
|
+
{
|
|
2520
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2521
|
+
}
|
|
2478
2522
|
]
|
|
2479
2523
|
}
|
|
2480
2524
|
])
|
|
@@ -2633,7 +2677,10 @@ function queryDraftPosts(payload) {
|
|
|
2633
2677
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2634
2678
|
},
|
|
2635
2679
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2636
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2680
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2681
|
+
{
|
|
2682
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2683
|
+
}
|
|
2637
2684
|
]
|
|
2638
2685
|
}
|
|
2639
2686
|
])
|
|
@@ -2751,6 +2798,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
2751
2798
|
NodeType2["SHAPE"] = "SHAPE";
|
|
2752
2799
|
NodeType2["CARD"] = "CARD";
|
|
2753
2800
|
NodeType2["TOC"] = "TOC";
|
|
2801
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
2802
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
2754
2803
|
return NodeType2;
|
|
2755
2804
|
})(NodeType || {});
|
|
2756
2805
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -3078,6 +3127,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
3078
3127
|
Indentation2["FLAT"] = "FLAT";
|
|
3079
3128
|
return Indentation2;
|
|
3080
3129
|
})(Indentation || {});
|
|
3130
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
3131
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
3132
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
3133
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
3134
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
3135
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
3136
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
3137
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
3138
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
3139
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
3140
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
3141
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
3142
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
3143
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
3144
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
3145
|
+
return SmartBlockDataType2;
|
|
3146
|
+
})(SmartBlockDataType || {});
|
|
3147
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
3148
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
3149
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
3150
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
3151
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
3152
|
+
return ColumnSize2;
|
|
3153
|
+
})(ColumnSize || {});
|
|
3081
3154
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
3082
3155
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
3083
3156
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3991,6 +4064,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
3991
4064
|
ButtonDataType,
|
|
3992
4065
|
CardDataBackgroundType,
|
|
3993
4066
|
CardStylesType,
|
|
4067
|
+
ColumnSize,
|
|
3994
4068
|
Crop,
|
|
3995
4069
|
DecorationType,
|
|
3996
4070
|
DesignTarget,
|
|
@@ -4026,6 +4100,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
4026
4100
|
Resizing,
|
|
4027
4101
|
ResponsivenessBehaviour,
|
|
4028
4102
|
Scaling,
|
|
4103
|
+
SmartBlockDataType,
|
|
4029
4104
|
SortOrder,
|
|
4030
4105
|
Source,
|
|
4031
4106
|
Status,
|