@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
|
@@ -315,6 +315,10 @@ interface Node extends NodeDataOneOf {
|
|
|
315
315
|
cardData?: CardData;
|
|
316
316
|
/** Data for a table of contents node. */
|
|
317
317
|
tocData?: TocData;
|
|
318
|
+
/** Data for a smart block node. */
|
|
319
|
+
smartBlockData?: SmartBlockData;
|
|
320
|
+
/** Data for a smart block cell node. */
|
|
321
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
318
322
|
/** 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. */
|
|
319
323
|
type?: NodeTypeWithLiterals;
|
|
320
324
|
/** Node ID. */
|
|
@@ -388,6 +392,10 @@ interface NodeDataOneOf {
|
|
|
388
392
|
cardData?: CardData;
|
|
389
393
|
/** Data for a table of contents node. */
|
|
390
394
|
tocData?: TocData;
|
|
395
|
+
/** Data for a smart block node. */
|
|
396
|
+
smartBlockData?: SmartBlockData;
|
|
397
|
+
/** Data for a smart block cell node. */
|
|
398
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
391
399
|
}
|
|
392
400
|
declare enum NodeType {
|
|
393
401
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -426,10 +434,12 @@ declare enum NodeType {
|
|
|
426
434
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
427
435
|
SHAPE = "SHAPE",
|
|
428
436
|
CARD = "CARD",
|
|
429
|
-
TOC = "TOC"
|
|
437
|
+
TOC = "TOC",
|
|
438
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
439
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
430
440
|
}
|
|
431
441
|
/** @enumType */
|
|
432
|
-
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';
|
|
442
|
+
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';
|
|
433
443
|
interface NodeStyle {
|
|
434
444
|
/** The top padding value in pixels. */
|
|
435
445
|
paddingTop?: string | null;
|
|
@@ -1047,6 +1057,8 @@ interface HeadingData {
|
|
|
1047
1057
|
textStyle?: TextStyle;
|
|
1048
1058
|
/** Indentation level from 1-4. */
|
|
1049
1059
|
indentation?: number | null;
|
|
1060
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1061
|
+
renderedLevel?: number | null;
|
|
1050
1062
|
}
|
|
1051
1063
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1052
1064
|
/** The URL for the HTML code for the node. */
|
|
@@ -1920,6 +1932,8 @@ interface TableData {
|
|
|
1920
1932
|
* @maxSize 4
|
|
1921
1933
|
*/
|
|
1922
1934
|
cellPadding?: number[];
|
|
1935
|
+
/** Table's alternative text. */
|
|
1936
|
+
altText?: string | null;
|
|
1923
1937
|
}
|
|
1924
1938
|
interface Dimensions {
|
|
1925
1939
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2361,6 +2375,88 @@ declare enum Indentation {
|
|
|
2361
2375
|
}
|
|
2362
2376
|
/** @enumType */
|
|
2363
2377
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2378
|
+
/** Data for a smart block node. */
|
|
2379
|
+
interface SmartBlockData {
|
|
2380
|
+
/** The type of the smart block. */
|
|
2381
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2382
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2383
|
+
orientation?: string | null;
|
|
2384
|
+
/** Column size controlling cells per row. */
|
|
2385
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2386
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2387
|
+
borderColor?: string | null;
|
|
2388
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2389
|
+
borderWidth?: number | null;
|
|
2390
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2391
|
+
borderRadius?: number | null;
|
|
2392
|
+
}
|
|
2393
|
+
/** Layout type of the smart block */
|
|
2394
|
+
declare enum SmartBlockDataType {
|
|
2395
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2396
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2397
|
+
/** Numbered boxes. */
|
|
2398
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2399
|
+
/** Statistics display with large numbers/values. */
|
|
2400
|
+
STATS = "STATS",
|
|
2401
|
+
/** Statistics with circular visual elements. */
|
|
2402
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2403
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2404
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2405
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2406
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2407
|
+
/** Transparent cells with only a left side line. */
|
|
2408
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2409
|
+
/** Transparent cells with only a top line. */
|
|
2410
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2411
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2412
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2413
|
+
/** Large icon bullets with text content. */
|
|
2414
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2415
|
+
/** Small dot bullets with text content. */
|
|
2416
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2417
|
+
/** Arrow icon bullets with text content. */
|
|
2418
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2419
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2420
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2421
|
+
/** Statistics with bar visual elements. */
|
|
2422
|
+
BAR_STATS = "BAR_STATS"
|
|
2423
|
+
}
|
|
2424
|
+
/** @enumType */
|
|
2425
|
+
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';
|
|
2426
|
+
/** Column size controlling how many cells appear per row. */
|
|
2427
|
+
declare enum ColumnSize {
|
|
2428
|
+
/** Up to 4 cells in a row. */
|
|
2429
|
+
SMALL = "SMALL",
|
|
2430
|
+
/** Up to 3 cells in a row (default). */
|
|
2431
|
+
MEDIUM = "MEDIUM",
|
|
2432
|
+
/** Up to 2 cells in a row. */
|
|
2433
|
+
LARGE = "LARGE",
|
|
2434
|
+
/** 1 cell in a row. */
|
|
2435
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2436
|
+
}
|
|
2437
|
+
/** @enumType */
|
|
2438
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2439
|
+
/** Data for a smart block cell node. */
|
|
2440
|
+
interface SmartBlockCellData {
|
|
2441
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2442
|
+
label?: string | null;
|
|
2443
|
+
/** Shape file details. */
|
|
2444
|
+
shape?: V1Media;
|
|
2445
|
+
/** Border color of the cell. */
|
|
2446
|
+
borderColor?: string | null;
|
|
2447
|
+
/** Border width in pixels. */
|
|
2448
|
+
borderWidth?: number | null;
|
|
2449
|
+
/** Border radius in pixels. */
|
|
2450
|
+
borderRadius?: number | null;
|
|
2451
|
+
/** The type of the parent smart block (must match parent). */
|
|
2452
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2453
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2454
|
+
accentColor?: string | null;
|
|
2455
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2456
|
+
backgroundColor?: string | null;
|
|
2457
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2458
|
+
shapeColor?: string | null;
|
|
2459
|
+
}
|
|
2364
2460
|
interface Metadata {
|
|
2365
2461
|
/** Schema version. */
|
|
2366
2462
|
version?: number;
|
|
@@ -3418,6 +3514,79 @@ interface DraftPostCount {
|
|
|
3418
3514
|
/** Number of posts. */
|
|
3419
3515
|
postCount?: number;
|
|
3420
3516
|
}
|
|
3517
|
+
interface TranslateDraftRequest {
|
|
3518
|
+
/**
|
|
3519
|
+
* Source post or draft ID
|
|
3520
|
+
* @format GUID
|
|
3521
|
+
*/
|
|
3522
|
+
postId?: string;
|
|
3523
|
+
/**
|
|
3524
|
+
* Translation language
|
|
3525
|
+
* @format LANGUAGE_TAG
|
|
3526
|
+
*/
|
|
3527
|
+
language?: string;
|
|
3528
|
+
/**
|
|
3529
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3530
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3531
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3532
|
+
* @maxSize 10
|
|
3533
|
+
*/
|
|
3534
|
+
fieldsets?: FieldWithLiterals[];
|
|
3535
|
+
}
|
|
3536
|
+
interface TranslateDraftResponse {
|
|
3537
|
+
/** Draft post. */
|
|
3538
|
+
draftPost?: DraftPost;
|
|
3539
|
+
}
|
|
3540
|
+
interface IsDraftPostAutoTranslatableRequest {
|
|
3541
|
+
/**
|
|
3542
|
+
* Source post or draft ID.
|
|
3543
|
+
* @format GUID
|
|
3544
|
+
*/
|
|
3545
|
+
draftPostId?: string;
|
|
3546
|
+
}
|
|
3547
|
+
interface IsDraftPostAutoTranslatableResponse {
|
|
3548
|
+
/**
|
|
3549
|
+
* Source draft post ID.
|
|
3550
|
+
* @format GUID
|
|
3551
|
+
*/
|
|
3552
|
+
draftPostId?: string;
|
|
3553
|
+
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3554
|
+
translatable?: boolean;
|
|
3555
|
+
/** Draft post title word count. */
|
|
3556
|
+
titleWordCount?: number;
|
|
3557
|
+
/** Draft post content word count. */
|
|
3558
|
+
contentWordCount?: number;
|
|
3559
|
+
/** Word credits available for auto translation. */
|
|
3560
|
+
availableAutoTranslateWords?: number;
|
|
3561
|
+
/** Word credits available after auto translation would be done. */
|
|
3562
|
+
availableAutoTranslateWordsAfter?: number;
|
|
3563
|
+
/** Content text character count. */
|
|
3564
|
+
contentTextCharacterCount?: number;
|
|
3565
|
+
}
|
|
3566
|
+
interface UpdateDraftPostLanguageRequest {
|
|
3567
|
+
/**
|
|
3568
|
+
* Source draft post ID
|
|
3569
|
+
* @format GUID
|
|
3570
|
+
*/
|
|
3571
|
+
postId?: string;
|
|
3572
|
+
/**
|
|
3573
|
+
* New language to replace to
|
|
3574
|
+
* @minLength 2
|
|
3575
|
+
* @format LANGUAGE_TAG
|
|
3576
|
+
*/
|
|
3577
|
+
language?: string;
|
|
3578
|
+
/**
|
|
3579
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3580
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3581
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3582
|
+
* @maxSize 10
|
|
3583
|
+
*/
|
|
3584
|
+
fieldsets?: FieldWithLiterals[];
|
|
3585
|
+
}
|
|
3586
|
+
interface UpdateDraftPostLanguageResponse {
|
|
3587
|
+
/** Draft post */
|
|
3588
|
+
draftPost?: DraftPost;
|
|
3589
|
+
}
|
|
3421
3590
|
interface BulkRevertToUnpublishedRequest {
|
|
3422
3591
|
/**
|
|
3423
3592
|
* Source post IDs.
|
|
@@ -3529,79 +3698,6 @@ interface MarkPostAsInModerationResponse {
|
|
|
3529
3698
|
/** Updated post draft. */
|
|
3530
3699
|
draftPost?: DraftPost;
|
|
3531
3700
|
}
|
|
3532
|
-
interface TranslateDraftRequest {
|
|
3533
|
-
/**
|
|
3534
|
-
* Source post or draft ID
|
|
3535
|
-
* @format GUID
|
|
3536
|
-
*/
|
|
3537
|
-
postId?: string;
|
|
3538
|
-
/**
|
|
3539
|
-
* Translation language
|
|
3540
|
-
* @format LANGUAGE_TAG
|
|
3541
|
-
*/
|
|
3542
|
-
language?: string;
|
|
3543
|
-
/**
|
|
3544
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3545
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3546
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3547
|
-
* @maxSize 10
|
|
3548
|
-
*/
|
|
3549
|
-
fieldsets?: FieldWithLiterals[];
|
|
3550
|
-
}
|
|
3551
|
-
interface TranslateDraftResponse {
|
|
3552
|
-
/** Draft post. */
|
|
3553
|
-
draftPost?: DraftPost;
|
|
3554
|
-
}
|
|
3555
|
-
interface IsDraftPostAutoTranslatableRequest {
|
|
3556
|
-
/**
|
|
3557
|
-
* Source post or draft ID.
|
|
3558
|
-
* @format GUID
|
|
3559
|
-
*/
|
|
3560
|
-
draftPostId?: string;
|
|
3561
|
-
}
|
|
3562
|
-
interface IsDraftPostAutoTranslatableResponse {
|
|
3563
|
-
/**
|
|
3564
|
-
* Source draft post ID.
|
|
3565
|
-
* @format GUID
|
|
3566
|
-
*/
|
|
3567
|
-
draftPostId?: string;
|
|
3568
|
-
/** Indicates if enough machine translation credits are available for the draft post translation. */
|
|
3569
|
-
translatable?: boolean;
|
|
3570
|
-
/** Draft post title word count. */
|
|
3571
|
-
titleWordCount?: number;
|
|
3572
|
-
/** Draft post content word count. */
|
|
3573
|
-
contentWordCount?: number;
|
|
3574
|
-
/** Word credits available for auto translation. */
|
|
3575
|
-
availableAutoTranslateWords?: number;
|
|
3576
|
-
/** Word credits available after auto translation would be done. */
|
|
3577
|
-
availableAutoTranslateWordsAfter?: number;
|
|
3578
|
-
/** Content text character count. */
|
|
3579
|
-
contentTextCharacterCount?: number;
|
|
3580
|
-
}
|
|
3581
|
-
interface UpdateDraftPostLanguageRequest {
|
|
3582
|
-
/**
|
|
3583
|
-
* Source draft post ID
|
|
3584
|
-
* @format GUID
|
|
3585
|
-
*/
|
|
3586
|
-
postId?: string;
|
|
3587
|
-
/**
|
|
3588
|
-
* New language to replace to
|
|
3589
|
-
* @minLength 2
|
|
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 UpdateDraftPostLanguageResponse {
|
|
3602
|
-
/** Draft post */
|
|
3603
|
-
draftPost?: DraftPost;
|
|
3604
|
-
}
|
|
3605
3701
|
|
|
3606
3702
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
3607
3703
|
getUrl: (context: any) => string;
|
|
@@ -3642,4 +3738,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
3642
3738
|
draftPostId: string;
|
|
3643
3739
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
3644
3740
|
|
|
3645
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|
|
3741
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|
|
@@ -30,6 +30,7 @@ __export(meta_exports, {
|
|
|
30
30
|
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
31
31
|
CardDataBackgroundTypeOriginal: () => CardDataBackgroundType,
|
|
32
32
|
CardStylesTypeOriginal: () => CardStylesType,
|
|
33
|
+
ColumnSizeOriginal: () => ColumnSize,
|
|
33
34
|
CropOriginal: () => Crop,
|
|
34
35
|
DecorationTypeOriginal: () => DecorationType,
|
|
35
36
|
DesignTargetOriginal: () => DesignTarget,
|
|
@@ -65,6 +66,7 @@ __export(meta_exports, {
|
|
|
65
66
|
ResizingOriginal: () => Resizing,
|
|
66
67
|
ResponsivenessBehaviourOriginal: () => ResponsivenessBehaviour,
|
|
67
68
|
ScalingOriginal: () => Scaling,
|
|
69
|
+
SmartBlockDataTypeOriginal: () => SmartBlockDataType,
|
|
68
70
|
SortOrderOriginal: () => SortOrder,
|
|
69
71
|
SourceOriginal: () => Source,
|
|
70
72
|
StatusOriginal: () => Status,
|
|
@@ -384,7 +386,10 @@ function createDraftPost(payload) {
|
|
|
384
386
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
385
387
|
},
|
|
386
388
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
387
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
389
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
390
|
+
{
|
|
391
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
392
|
+
}
|
|
388
393
|
]
|
|
389
394
|
}
|
|
390
395
|
]);
|
|
@@ -532,7 +537,10 @@ function createDraftPost(payload) {
|
|
|
532
537
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
533
538
|
},
|
|
534
539
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
535
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
540
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
541
|
+
{
|
|
542
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
543
|
+
}
|
|
536
544
|
]
|
|
537
545
|
}
|
|
538
546
|
])
|
|
@@ -669,7 +677,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
669
677
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
670
678
|
},
|
|
671
679
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
672
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
680
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
681
|
+
{
|
|
682
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
683
|
+
}
|
|
673
684
|
]
|
|
674
685
|
}
|
|
675
686
|
]);
|
|
@@ -833,7 +844,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
833
844
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
834
845
|
},
|
|
835
846
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
836
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
847
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
848
|
+
{
|
|
849
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
850
|
+
}
|
|
837
851
|
]
|
|
838
852
|
}
|
|
839
853
|
])
|
|
@@ -1007,6 +1021,9 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1007
1021
|
{ path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
|
|
1008
1022
|
{
|
|
1009
1023
|
path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
path: "draftPosts.draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1010
1027
|
}
|
|
1011
1028
|
]
|
|
1012
1029
|
}
|
|
@@ -1171,7 +1188,10 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1171
1188
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1172
1189
|
},
|
|
1173
1190
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1174
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
1191
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1192
|
+
{
|
|
1193
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1194
|
+
}
|
|
1175
1195
|
]
|
|
1176
1196
|
}
|
|
1177
1197
|
])
|
|
@@ -1330,7 +1350,10 @@ function listDeletedDraftPosts(payload) {
|
|
|
1330
1350
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1331
1351
|
},
|
|
1332
1352
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
1333
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
1353
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
1354
|
+
{
|
|
1355
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1356
|
+
}
|
|
1334
1357
|
]
|
|
1335
1358
|
}
|
|
1336
1359
|
])
|
|
@@ -1485,7 +1508,10 @@ function getDraftPost(payload) {
|
|
|
1485
1508
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1486
1509
|
},
|
|
1487
1510
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1488
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1511
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1512
|
+
{
|
|
1513
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1514
|
+
}
|
|
1489
1515
|
]
|
|
1490
1516
|
}
|
|
1491
1517
|
])
|
|
@@ -1625,7 +1651,10 @@ function updateDraftPost(payload) {
|
|
|
1625
1651
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1626
1652
|
},
|
|
1627
1653
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1628
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1654
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1655
|
+
{
|
|
1656
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1657
|
+
}
|
|
1629
1658
|
]
|
|
1630
1659
|
}
|
|
1631
1660
|
]);
|
|
@@ -1777,7 +1806,10 @@ function updateDraftPost(payload) {
|
|
|
1777
1806
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1778
1807
|
},
|
|
1779
1808
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1780
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
1809
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1810
|
+
{
|
|
1811
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1812
|
+
}
|
|
1781
1813
|
]
|
|
1782
1814
|
}
|
|
1783
1815
|
])
|
|
@@ -1990,7 +2022,10 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1990
2022
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1991
2023
|
},
|
|
1992
2024
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1993
|
-
{ path: "results.item.richContent.nodes.tocData.itemSpacing" }
|
|
2025
|
+
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
2026
|
+
{
|
|
2027
|
+
path: "results.item.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2028
|
+
}
|
|
1994
2029
|
]
|
|
1995
2030
|
}
|
|
1996
2031
|
])
|
|
@@ -2149,7 +2184,10 @@ function listDraftPosts(payload) {
|
|
|
2149
2184
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2150
2185
|
},
|
|
2151
2186
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2152
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2187
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2188
|
+
{
|
|
2189
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2190
|
+
}
|
|
2153
2191
|
]
|
|
2154
2192
|
}
|
|
2155
2193
|
])
|
|
@@ -2308,7 +2346,10 @@ function getDeletedDraftPost(payload) {
|
|
|
2308
2346
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2309
2347
|
},
|
|
2310
2348
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2311
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2349
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2350
|
+
{
|
|
2351
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2352
|
+
}
|
|
2312
2353
|
]
|
|
2313
2354
|
}
|
|
2314
2355
|
])
|
|
@@ -2467,7 +2508,10 @@ function restoreFromTrashBin(payload) {
|
|
|
2467
2508
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2468
2509
|
},
|
|
2469
2510
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2470
|
-
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" }
|
|
2511
|
+
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2512
|
+
{
|
|
2513
|
+
path: "draftPost.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2514
|
+
}
|
|
2471
2515
|
]
|
|
2472
2516
|
}
|
|
2473
2517
|
])
|
|
@@ -2626,7 +2670,10 @@ function queryDraftPosts(payload) {
|
|
|
2626
2670
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2627
2671
|
},
|
|
2628
2672
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2629
|
-
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" }
|
|
2673
|
+
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2674
|
+
{
|
|
2675
|
+
path: "draftPosts.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2676
|
+
}
|
|
2630
2677
|
]
|
|
2631
2678
|
}
|
|
2632
2679
|
])
|
|
@@ -2736,6 +2783,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
2736
2783
|
NodeType2["SHAPE"] = "SHAPE";
|
|
2737
2784
|
NodeType2["CARD"] = "CARD";
|
|
2738
2785
|
NodeType2["TOC"] = "TOC";
|
|
2786
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
2787
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
2739
2788
|
return NodeType2;
|
|
2740
2789
|
})(NodeType || {});
|
|
2741
2790
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -3063,6 +3112,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
3063
3112
|
Indentation2["FLAT"] = "FLAT";
|
|
3064
3113
|
return Indentation2;
|
|
3065
3114
|
})(Indentation || {});
|
|
3115
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
3116
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
3117
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
3118
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
3119
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
3120
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
3121
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
3122
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
3123
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
3124
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
3125
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
3126
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
3127
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
3128
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
3129
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
3130
|
+
return SmartBlockDataType2;
|
|
3131
|
+
})(SmartBlockDataType || {});
|
|
3132
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
3133
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
3134
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
3135
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
3136
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
3137
|
+
return ColumnSize2;
|
|
3138
|
+
})(ColumnSize || {});
|
|
3066
3139
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
3067
3140
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
3068
3141
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3394,6 +3467,7 @@ function publishDraftPost2() {
|
|
|
3394
3467
|
ButtonDataTypeOriginal,
|
|
3395
3468
|
CardDataBackgroundTypeOriginal,
|
|
3396
3469
|
CardStylesTypeOriginal,
|
|
3470
|
+
ColumnSizeOriginal,
|
|
3397
3471
|
CropOriginal,
|
|
3398
3472
|
DecorationTypeOriginal,
|
|
3399
3473
|
DesignTargetOriginal,
|
|
@@ -3429,6 +3503,7 @@ function publishDraftPost2() {
|
|
|
3429
3503
|
ResizingOriginal,
|
|
3430
3504
|
ResponsivenessBehaviourOriginal,
|
|
3431
3505
|
ScalingOriginal,
|
|
3506
|
+
SmartBlockDataTypeOriginal,
|
|
3432
3507
|
SortOrderOriginal,
|
|
3433
3508
|
SourceOriginal,
|
|
3434
3509
|
StatusOriginal,
|