@wix/auto_sdk_blog_posts 1.0.140 → 1.0.142

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.
Files changed (50) hide show
  1. package/build/cjs/index.d.ts +11 -15
  2. package/build/cjs/index.js +73 -43
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +576 -533
  5. package/build/cjs/index.typings.js +59 -30
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +413 -358
  8. package/build/cjs/meta.js +53 -24
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +603 -0
  11. package/build/cjs/schemas.js +982 -0
  12. package/build/cjs/schemas.js.map +1 -0
  13. package/build/es/index.d.mts +11 -15
  14. package/build/es/index.mjs +71 -43
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +576 -533
  17. package/build/es/index.typings.mjs +57 -30
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +413 -358
  20. package/build/es/meta.mjs +51 -24
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +603 -0
  23. package/build/es/schemas.mjs +932 -0
  24. package/build/es/schemas.mjs.map +1 -0
  25. package/build/internal/cjs/index.d.ts +11 -15
  26. package/build/internal/cjs/index.js +73 -43
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +576 -533
  29. package/build/internal/cjs/index.typings.js +59 -30
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +413 -358
  32. package/build/internal/cjs/meta.js +53 -24
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +603 -0
  35. package/build/internal/cjs/schemas.js +982 -0
  36. package/build/internal/cjs/schemas.js.map +1 -0
  37. package/build/internal/es/index.d.mts +11 -15
  38. package/build/internal/es/index.mjs +71 -43
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +576 -533
  41. package/build/internal/es/index.typings.mjs +57 -30
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +413 -358
  44. package/build/internal/es/meta.mjs +51 -24
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +603 -0
  47. package/build/internal/es/schemas.mjs +932 -0
  48. package/build/internal/es/schemas.mjs.map +1 -0
  49. package/package.json +12 -5
  50. package/schemas/package.json +3 -0
@@ -347,6 +347,8 @@ interface Node extends NodeDataOneOf {
347
347
  shapeData?: ShapeData;
348
348
  /** Data for a card node. */
349
349
  cardData?: CardData;
350
+ /** Data for a table of contents node. */
351
+ tocData?: TocData;
350
352
  /** 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. */
351
353
  type?: NodeTypeWithLiterals;
352
354
  /** Node ID. */
@@ -418,6 +420,8 @@ interface NodeDataOneOf {
418
420
  shapeData?: ShapeData;
419
421
  /** Data for a card node. */
420
422
  cardData?: CardData;
423
+ /** Data for a table of contents node. */
424
+ tocData?: TocData;
421
425
  }
422
426
  declare enum NodeType {
423
427
  PARAGRAPH = "PARAGRAPH",
@@ -455,10 +459,11 @@ declare enum NodeType {
455
459
  LAYOUT = "LAYOUT",
456
460
  LAYOUT_CELL = "LAYOUT_CELL",
457
461
  SHAPE = "SHAPE",
458
- CARD = "CARD"
462
+ CARD = "CARD",
463
+ TOC = "TOC"
459
464
  }
460
465
  /** @enumType */
461
- 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';
466
+ 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';
462
467
  interface NodeStyle {
463
468
  /** The top padding value in pixels. */
464
469
  paddingTop?: string | null;
@@ -1087,6 +1092,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1087
1092
  * @deprecated
1088
1093
  */
1089
1094
  isAdsense?: boolean | null;
1095
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1096
+ widgetId?: string;
1090
1097
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
1091
1098
  containerData?: PluginContainerData;
1092
1099
  /** The type of HTML code. */
@@ -1105,14 +1112,17 @@ interface HTMLDataDataOneOf {
1105
1112
  * @deprecated
1106
1113
  */
1107
1114
  isAdsense?: boolean | null;
1115
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1116
+ widgetId?: string;
1108
1117
  }
1109
1118
  declare enum Source {
1110
1119
  HTML = "HTML",
1111
1120
  ADSENSE = "ADSENSE",
1112
- AI = "AI"
1121
+ AI = "AI",
1122
+ AI_WIDGET = "AI_WIDGET"
1113
1123
  }
1114
1124
  /** @enumType */
1115
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1125
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
1116
1126
  interface ImageData {
1117
1127
  /** Styling for the image's container. */
1118
1128
  containerData?: PluginContainerData;
@@ -2340,6 +2350,51 @@ interface BackgroundImage {
2340
2350
  /** Position of background. Defaults to `CENTER`. */
2341
2351
  position?: ImagePositionPositionWithLiterals;
2342
2352
  }
2353
+ interface TocData {
2354
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2355
+ includedHeadings?: number[];
2356
+ /** List style. Default: PLAIN. */
2357
+ listStyle?: ListStyleWithLiterals;
2358
+ /** Optional override for the font size in pixels. */
2359
+ fontSize?: number | null;
2360
+ /** Optional override for the vertical spacing between items in pixels. */
2361
+ itemSpacing?: number | null;
2362
+ /**
2363
+ * Optional override for the text color.
2364
+ * @format COLOR_HEX
2365
+ */
2366
+ color?: string | null;
2367
+ /** Indentation style. Default: NESTED. */
2368
+ indentation?: IndentationWithLiterals;
2369
+ }
2370
+ /** List style. */
2371
+ declare enum ListStyle {
2372
+ /** No markers (default) */
2373
+ PLAIN = "PLAIN",
2374
+ /** Numbered list */
2375
+ NUMBERED = "NUMBERED",
2376
+ /** Alphabetic letters */
2377
+ LETTERS = "LETTERS",
2378
+ /** Roman numerals */
2379
+ ROMAN = "ROMAN",
2380
+ /** Bulleted list */
2381
+ BULLETED = "BULLETED",
2382
+ /** Alphabetical index */
2383
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2384
+ /** Alphabetical index (compact top-row only) */
2385
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2386
+ }
2387
+ /** @enumType */
2388
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2389
+ /** Indentation style. */
2390
+ declare enum Indentation {
2391
+ /** Sub-headings indented under parents (default) */
2392
+ NESTED = "NESTED",
2393
+ /** All items at the same level */
2394
+ FLAT = "FLAT"
2395
+ }
2396
+ /** @enumType */
2397
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2343
2398
  interface Metadata {
2344
2399
  /** Schema version. */
2345
2400
  version?: number;
@@ -2622,398 +2677,123 @@ interface PostUnlikedInitiatorOneOf {
2622
2677
  */
2623
2678
  anonymousVisitorId?: string | null;
2624
2679
  }
2625
- /** Get Blog Publications Count Stats request */
2626
- interface QueryPublicationsCountStatsRequest {
2627
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2628
- rangeStart?: Date | null;
2629
- /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2630
- rangeEnd?: Date | null;
2631
- /** Order of the returned results. */
2632
- order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
2633
- /** Number of months to include in the response. */
2634
- months?: number;
2680
+ interface ListTemplatesRequest {
2635
2681
  /**
2636
- * Language filter
2637
- *
2638
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2639
- * @format LANGUAGE_TAG
2682
+ * Filter post templates by given template category ids
2683
+ * @maxSize 50
2684
+ * @format GUID
2640
2685
  */
2641
- language?: string | null;
2686
+ categoryIds?: string[];
2642
2687
  /**
2643
- * Timezone of the client.
2644
- * @minLength 3
2645
- * @maxLength 100
2688
+ * Filter post templates by provided language
2689
+ * @format LANGUAGE_TAG
2646
2690
  */
2647
- timeZone?: string | null;
2691
+ language?: string | null;
2692
+ /** Returns post template categories when set to TRUE */
2693
+ listTemplateCategories?: boolean;
2694
+ /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2695
+ sort?: GetPostTemplatesSortWithLiterals;
2696
+ /** Pagination options. */
2697
+ paging?: BlogPaging;
2648
2698
  }
2649
- declare enum QueryPublicationsCountStatsRequestOrder {
2650
- UNKNOWN = "UNKNOWN",
2651
- OLDEST = "OLDEST",
2652
- NEWEST = "NEWEST"
2699
+ declare enum GetPostTemplatesSort {
2700
+ /** Sort by ascending publishing date. */
2701
+ PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2702
+ /** Sort by descending publishing date. */
2703
+ PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2653
2704
  }
2654
2705
  /** @enumType */
2655
- type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2656
- /** Get Blog Publications Count Stats response */
2657
- interface QueryPublicationsCountStatsResponse {
2658
- /** Chronologically ordered list of publications. */
2659
- stats?: PeriodPublicationsCount[];
2660
- }
2661
- /** Publications count for a specific time period */
2662
- interface PeriodPublicationsCount {
2663
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2664
- periodStart?: Date | null;
2665
- /** Number of posts published during this month. */
2666
- publicationsCount?: number;
2667
- }
2668
- /** Get Blog Post Count Stats request */
2669
- interface QueryPostCountStatsRequest {
2670
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2671
- rangeStart?: Date | null;
2706
+ type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2707
+ interface BlogPaging {
2672
2708
  /**
2673
- * Order of returned results.
2709
+ * Number of items to skip in the current sort order.
2674
2710
  *
2675
- * - `OLDEST`: posts by date in ascending order.
2676
- * - `NEWEST`: posts by date in descending order.
2677
2711
  *
2678
- * Default: `OLDEST`
2712
+ * Default: `0`
2679
2713
  */
2680
- order?: OrderWithLiterals;
2681
- /** Number of months to include in response. */
2682
- months?: number;
2714
+ offset?: number;
2683
2715
  /**
2684
- * Language filter.
2716
+ * Number of items to return.
2685
2717
  *
2686
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2687
- * Pass a language to only receive the period post count for that specified language.
2688
- * @format LANGUAGE_TAG
2689
- */
2690
- language?: string | null;
2691
- /**
2692
- * Time zone to use when calculating the start of the month.
2693
2718
  *
2694
- * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
2695
- * @minLength 3
2696
- * @maxLength 100
2719
+ * Default:`50`
2720
+ * @min 1
2721
+ * @max 100
2697
2722
  */
2698
- timeZone?: string | null;
2699
- }
2700
- declare enum Order {
2701
- UNKNOWN = "UNKNOWN",
2702
- OLDEST = "OLDEST",
2703
- NEWEST = "NEWEST"
2704
- }
2705
- /** @enumType */
2706
- type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2707
- /** Get Blog Post Count Stats response */
2708
- interface QueryPostCountStatsResponse {
2709
- /** List of published post counts by month. */
2710
- stats?: PeriodPostCount[];
2711
- }
2712
- /** Post count for a specific time period */
2713
- interface PeriodPostCount {
2714
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2715
- periodStart?: Date | null;
2716
- /** Number of posts published during this month. */
2717
- postCount?: number;
2718
- }
2719
- interface GetTotalPublicationsRequest {
2723
+ limit?: number;
2720
2724
  /**
2721
- * Language filter
2722
- * @minLength 2
2723
- * @format LANGUAGE_TAG
2725
+ * Pointer to the next or previous page in the list of results.
2726
+ * @maxLength 2000
2724
2727
  */
2725
- language?: string | null;
2728
+ cursor?: string | null;
2726
2729
  }
2727
- interface GetTotalPublicationsResponse {
2728
- /** Total amount of publications. */
2729
- total?: number;
2730
+ interface ListTemplatesResponse {
2731
+ /** Available post templates */
2732
+ postTemplates?: Post[];
2733
+ /** Details on the paged set of posts templates returned. */
2734
+ postTemplatesMetaData?: MetaData;
2735
+ /** Post template categories. This value is returned empty unless asked explicitly */
2736
+ templateCategories?: Category[];
2730
2737
  }
2731
- interface GetTotalPostsRequest {
2738
+ interface MetaData {
2739
+ /** Number of items returned in this response. */
2740
+ count?: number;
2741
+ /** Requested offset. */
2742
+ offset?: number;
2743
+ /** Total number of items that match the query. */
2744
+ total?: number;
2732
2745
  /**
2733
- * Language filter.
2734
- *
2735
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2736
- * Pass a language to receive the total amount of posts in that specified language.
2737
- * @format LANGUAGE_TAG
2746
+ * Pointer to the next or previous page in the list of results.
2747
+ * @maxLength 2000
2738
2748
  */
2739
- language?: string | null;
2740
- }
2741
- interface GetTotalPostsResponse {
2742
- /** Total amount of published posts. */
2743
- total?: number;
2749
+ cursor?: string | null;
2744
2750
  }
2745
- interface DomainEvent extends DomainEventBodyOneOf {
2746
- createdEvent?: EntityCreatedEvent;
2747
- updatedEvent?: EntityUpdatedEvent;
2748
- deletedEvent?: EntityDeletedEvent;
2749
- actionEvent?: ActionEvent;
2750
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2751
- id?: string;
2751
+ interface Category {
2752
2752
  /**
2753
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2754
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2753
+ * Category ID.
2754
+ * @immutable
2755
+ * @maxLength 38
2755
2756
  */
2756
- entityFqdn?: string;
2757
+ id?: string;
2757
2758
  /**
2758
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
2759
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2759
+ * Category label. Displayed in the Category Menu.
2760
+ * @maxLength 35
2760
2761
  */
2761
- slug?: string;
2762
- /** ID of the entity associated with the event. */
2763
- entityId?: string;
2764
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2765
- eventTime?: Date | null;
2762
+ label?: string;
2766
2763
  /**
2767
- * Whether the event was triggered as a result of a privacy regulation application
2768
- * (for example, GDPR).
2764
+ * Number of posts in the category.
2765
+ * @readonly
2769
2766
  */
2770
- triggeredByAnonymizeRequest?: boolean | null;
2771
- /** If present, indicates the action that triggered the event. */
2772
- originatedFrom?: string | null;
2767
+ postCount?: number;
2773
2768
  /**
2774
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2775
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2769
+ * The `url` of the page that lists every post with the specified category.
2770
+ * @readonly
2776
2771
  */
2777
- entityEventSequence?: string | null;
2778
- }
2779
- /** @oneof */
2780
- interface DomainEventBodyOneOf {
2781
- createdEvent?: EntityCreatedEvent;
2782
- updatedEvent?: EntityUpdatedEvent;
2783
- deletedEvent?: EntityDeletedEvent;
2784
- actionEvent?: ActionEvent;
2785
- }
2786
- interface EntityCreatedEvent {
2787
- entityAsJson?: string;
2788
- /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2789
- restoreInfo?: RestoreInfo;
2790
- }
2791
- interface RestoreInfo {
2792
- deletedDate?: Date | null;
2793
- }
2794
- interface EntityUpdatedEvent {
2772
+ url?: PageUrl;
2795
2773
  /**
2796
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2797
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2798
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2774
+ * Category description.
2775
+ * @maxLength 500
2799
2776
  */
2800
- currentEntityAsJson?: string;
2801
- }
2802
- interface EntityDeletedEvent {
2803
- /** Entity that was deleted. */
2804
- deletedEntityAsJson?: string | null;
2805
- }
2806
- interface ActionEvent {
2807
- bodyAsJson?: string;
2808
- }
2809
- interface MessageEnvelope {
2777
+ description?: string | null;
2810
2778
  /**
2811
- * App instance ID.
2812
- * @format GUID
2779
+ * Category title.
2780
+ * @maxLength 200
2781
+ * @deprecated Category title.
2782
+ * @targetRemovalDate 2025-07-16
2813
2783
  */
2814
- instanceId?: string | null;
2784
+ title?: string;
2815
2785
  /**
2816
- * Event type.
2817
- * @maxLength 150
2786
+ * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
2787
+ * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
2788
+ *
2789
+ * Default: `-1`
2818
2790
  */
2819
- eventType?: string;
2820
- /** The identification type and identity data. */
2821
- identity?: IdentificationData;
2822
- /** Stringify payload. */
2823
- data?: string;
2824
- /** Details related to the account */
2825
- accountInfo?: AccountInfo;
2826
- }
2827
- interface IdentificationData extends IdentificationDataIdOneOf {
2791
+ displayPosition?: number | null;
2828
2792
  /**
2829
- * ID of a site visitor that has not logged in to the site.
2793
+ * ID of the category's translations. All translations of a single category share the same `translationId`.
2830
2794
  * @format GUID
2831
2795
  */
2832
- anonymousVisitorId?: string;
2833
- /**
2834
- * ID of a site visitor that has logged in to the site.
2835
- * @format GUID
2836
- */
2837
- memberId?: string;
2838
- /**
2839
- * ID of a Wix user (site owner, contributor, etc.).
2840
- * @format GUID
2841
- */
2842
- wixUserId?: string;
2843
- /**
2844
- * ID of an app.
2845
- * @format GUID
2846
- */
2847
- appId?: string;
2848
- /** @readonly */
2849
- identityType?: WebhookIdentityTypeWithLiterals;
2850
- }
2851
- /** @oneof */
2852
- interface IdentificationDataIdOneOf {
2853
- /**
2854
- * ID of a site visitor that has not logged in to the site.
2855
- * @format GUID
2856
- */
2857
- anonymousVisitorId?: string;
2858
- /**
2859
- * ID of a site visitor that has logged in to the site.
2860
- * @format GUID
2861
- */
2862
- memberId?: string;
2863
- /**
2864
- * ID of a Wix user (site owner, contributor, etc.).
2865
- * @format GUID
2866
- */
2867
- wixUserId?: string;
2868
- /**
2869
- * ID of an app.
2870
- * @format GUID
2871
- */
2872
- appId?: string;
2873
- }
2874
- declare enum WebhookIdentityType {
2875
- UNKNOWN = "UNKNOWN",
2876
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2877
- MEMBER = "MEMBER",
2878
- WIX_USER = "WIX_USER",
2879
- APP = "APP"
2880
- }
2881
- /** @enumType */
2882
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2883
- interface AccountInfo {
2884
- /**
2885
- * ID of the Wix account associated with the event.
2886
- * @format GUID
2887
- */
2888
- accountId?: string | null;
2889
- /**
2890
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
2891
- * @format GUID
2892
- */
2893
- parentAccountId?: string | null;
2894
- /**
2895
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
2896
- * @format GUID
2897
- */
2898
- siteId?: string | null;
2899
- }
2900
- interface ListTemplatesRequest {
2901
- /**
2902
- * Filter post templates by given template category ids
2903
- * @maxSize 50
2904
- * @format GUID
2905
- */
2906
- categoryIds?: string[];
2907
- /**
2908
- * Filter post templates by provided language
2909
- * @format LANGUAGE_TAG
2910
- */
2911
- language?: string | null;
2912
- /** Returns post template categories when set to TRUE */
2913
- listTemplateCategories?: boolean;
2914
- /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2915
- sort?: GetPostTemplatesSortWithLiterals;
2916
- /** Pagination options. */
2917
- paging?: BlogPaging;
2918
- }
2919
- declare enum GetPostTemplatesSort {
2920
- /** Sort by ascending publishing date. */
2921
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2922
- /** Sort by descending publishing date. */
2923
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2924
- }
2925
- /** @enumType */
2926
- type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2927
- interface BlogPaging {
2928
- /**
2929
- * Number of items to skip in the current sort order.
2930
- *
2931
- *
2932
- * Default: `0`
2933
- */
2934
- offset?: number;
2935
- /**
2936
- * Number of items to return.
2937
- *
2938
- *
2939
- * Default:`50`
2940
- * @min 1
2941
- * @max 100
2942
- */
2943
- limit?: number;
2944
- /**
2945
- * Pointer to the next or previous page in the list of results.
2946
- * @maxLength 2000
2947
- */
2948
- cursor?: string | null;
2949
- }
2950
- interface ListTemplatesResponse {
2951
- /** Available post templates */
2952
- postTemplates?: Post[];
2953
- /** Details on the paged set of posts templates returned. */
2954
- postTemplatesMetaData?: MetaData;
2955
- /** Post template categories. This value is returned empty unless asked explicitly */
2956
- templateCategories?: Category[];
2957
- }
2958
- interface MetaData {
2959
- /** Number of items returned in this response. */
2960
- count?: number;
2961
- /** Requested offset. */
2962
- offset?: number;
2963
- /** Total number of items that match the query. */
2964
- total?: number;
2965
- /**
2966
- * Pointer to the next or previous page in the list of results.
2967
- * @maxLength 2000
2968
- */
2969
- cursor?: string | null;
2970
- }
2971
- interface Category {
2972
- /**
2973
- * Category ID.
2974
- * @immutable
2975
- * @maxLength 38
2976
- */
2977
- id?: string;
2978
- /**
2979
- * Category label. Displayed in the Category Menu.
2980
- * @maxLength 35
2981
- */
2982
- label?: string;
2983
- /**
2984
- * Number of posts in the category.
2985
- * @readonly
2986
- */
2987
- postCount?: number;
2988
- /**
2989
- * The `url` of the page that lists every post with the specified category.
2990
- * @readonly
2991
- */
2992
- url?: PageUrl;
2993
- /**
2994
- * Category description.
2995
- * @maxLength 500
2996
- */
2997
- description?: string | null;
2998
- /**
2999
- * Category title.
3000
- * @maxLength 200
3001
- * @deprecated Category title.
3002
- * @targetRemovalDate 2025-07-16
3003
- */
3004
- title?: string;
3005
- /**
3006
- * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
3007
- * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
3008
- *
3009
- * Default: `-1`
3010
- */
3011
- displayPosition?: number | null;
3012
- /**
3013
- * ID of the category's translations. All translations of a single category share the same `translationId`.
3014
- * @format GUID
3015
- */
3016
- translationId?: string | null;
2796
+ translationId?: string | null;
3017
2797
  /**
3018
2798
  * Category language.
3019
2799
  *
@@ -3325,6 +3105,281 @@ interface DraftPostTranslation {
3325
3105
  /** Post URL. */
3326
3106
  url?: PageUrl;
3327
3107
  }
3108
+ interface DomainEvent extends DomainEventBodyOneOf {
3109
+ createdEvent?: EntityCreatedEvent;
3110
+ updatedEvent?: EntityUpdatedEvent;
3111
+ deletedEvent?: EntityDeletedEvent;
3112
+ actionEvent?: ActionEvent;
3113
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3114
+ id?: string;
3115
+ /**
3116
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3117
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3118
+ */
3119
+ entityFqdn?: string;
3120
+ /**
3121
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
3122
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3123
+ */
3124
+ slug?: string;
3125
+ /** ID of the entity associated with the event. */
3126
+ entityId?: string;
3127
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3128
+ eventTime?: Date | null;
3129
+ /**
3130
+ * Whether the event was triggered as a result of a privacy regulation application
3131
+ * (for example, GDPR).
3132
+ */
3133
+ triggeredByAnonymizeRequest?: boolean | null;
3134
+ /** If present, indicates the action that triggered the event. */
3135
+ originatedFrom?: string | null;
3136
+ /**
3137
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
3138
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
3139
+ */
3140
+ entityEventSequence?: string | null;
3141
+ }
3142
+ /** @oneof */
3143
+ interface DomainEventBodyOneOf {
3144
+ createdEvent?: EntityCreatedEvent;
3145
+ updatedEvent?: EntityUpdatedEvent;
3146
+ deletedEvent?: EntityDeletedEvent;
3147
+ actionEvent?: ActionEvent;
3148
+ }
3149
+ interface EntityCreatedEvent {
3150
+ entityAsJson?: string;
3151
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
3152
+ restoreInfo?: RestoreInfo;
3153
+ }
3154
+ interface RestoreInfo {
3155
+ deletedDate?: Date | null;
3156
+ }
3157
+ interface EntityUpdatedEvent {
3158
+ /**
3159
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3160
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3161
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3162
+ */
3163
+ currentEntityAsJson?: string;
3164
+ }
3165
+ interface EntityDeletedEvent {
3166
+ /** Entity that was deleted. */
3167
+ deletedEntityAsJson?: string | null;
3168
+ }
3169
+ interface ActionEvent {
3170
+ bodyAsJson?: string;
3171
+ }
3172
+ interface MessageEnvelope {
3173
+ /**
3174
+ * App instance ID.
3175
+ * @format GUID
3176
+ */
3177
+ instanceId?: string | null;
3178
+ /**
3179
+ * Event type.
3180
+ * @maxLength 150
3181
+ */
3182
+ eventType?: string;
3183
+ /** The identification type and identity data. */
3184
+ identity?: IdentificationData;
3185
+ /** Stringify payload. */
3186
+ data?: string;
3187
+ /** Details related to the account */
3188
+ accountInfo?: AccountInfo;
3189
+ }
3190
+ interface IdentificationData extends IdentificationDataIdOneOf {
3191
+ /**
3192
+ * ID of a site visitor that has not logged in to the site.
3193
+ * @format GUID
3194
+ */
3195
+ anonymousVisitorId?: string;
3196
+ /**
3197
+ * ID of a site visitor that has logged in to the site.
3198
+ * @format GUID
3199
+ */
3200
+ memberId?: string;
3201
+ /**
3202
+ * ID of a Wix user (site owner, contributor, etc.).
3203
+ * @format GUID
3204
+ */
3205
+ wixUserId?: string;
3206
+ /**
3207
+ * ID of an app.
3208
+ * @format GUID
3209
+ */
3210
+ appId?: string;
3211
+ /** @readonly */
3212
+ identityType?: WebhookIdentityTypeWithLiterals;
3213
+ }
3214
+ /** @oneof */
3215
+ interface IdentificationDataIdOneOf {
3216
+ /**
3217
+ * ID of a site visitor that has not logged in to the site.
3218
+ * @format GUID
3219
+ */
3220
+ anonymousVisitorId?: string;
3221
+ /**
3222
+ * ID of a site visitor that has logged in to the site.
3223
+ * @format GUID
3224
+ */
3225
+ memberId?: string;
3226
+ /**
3227
+ * ID of a Wix user (site owner, contributor, etc.).
3228
+ * @format GUID
3229
+ */
3230
+ wixUserId?: string;
3231
+ /**
3232
+ * ID of an app.
3233
+ * @format GUID
3234
+ */
3235
+ appId?: string;
3236
+ }
3237
+ declare enum WebhookIdentityType {
3238
+ UNKNOWN = "UNKNOWN",
3239
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3240
+ MEMBER = "MEMBER",
3241
+ WIX_USER = "WIX_USER",
3242
+ APP = "APP"
3243
+ }
3244
+ /** @enumType */
3245
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3246
+ interface AccountInfo {
3247
+ /**
3248
+ * ID of the Wix account associated with the event.
3249
+ * @format GUID
3250
+ */
3251
+ accountId?: string | null;
3252
+ /**
3253
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
3254
+ * @format GUID
3255
+ */
3256
+ parentAccountId?: string | null;
3257
+ /**
3258
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3259
+ * @format GUID
3260
+ */
3261
+ siteId?: string | null;
3262
+ }
3263
+ /** Get Blog Publications Count Stats request */
3264
+ interface QueryPublicationsCountStatsRequest {
3265
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3266
+ rangeStart?: Date | null;
3267
+ /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3268
+ rangeEnd?: Date | null;
3269
+ /** Order of the returned results. */
3270
+ order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3271
+ /** Number of months to include in the response. */
3272
+ months?: number;
3273
+ /**
3274
+ * Language filter
3275
+ *
3276
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3277
+ * @format LANGUAGE_TAG
3278
+ */
3279
+ language?: string | null;
3280
+ /**
3281
+ * Timezone of the client.
3282
+ * @minLength 3
3283
+ * @maxLength 100
3284
+ */
3285
+ timeZone?: string | null;
3286
+ }
3287
+ declare enum QueryPublicationsCountStatsRequestOrder {
3288
+ UNKNOWN = "UNKNOWN",
3289
+ OLDEST = "OLDEST",
3290
+ NEWEST = "NEWEST"
3291
+ }
3292
+ /** @enumType */
3293
+ type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3294
+ /** Get Blog Publications Count Stats response */
3295
+ interface QueryPublicationsCountStatsResponse {
3296
+ /** Chronologically ordered list of publications. */
3297
+ stats?: PeriodPublicationsCount[];
3298
+ }
3299
+ /** Publications count for a specific time period */
3300
+ interface PeriodPublicationsCount {
3301
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3302
+ periodStart?: Date | null;
3303
+ /** Number of posts published during this month. */
3304
+ publicationsCount?: number;
3305
+ }
3306
+ /** Get Blog Post Count Stats request */
3307
+ interface QueryPostCountStatsRequest {
3308
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3309
+ rangeStart?: Date | null;
3310
+ /**
3311
+ * Order of returned results.
3312
+ *
3313
+ * - `OLDEST`: posts by date in ascending order.
3314
+ * - `NEWEST`: posts by date in descending order.
3315
+ *
3316
+ * Default: `OLDEST`
3317
+ */
3318
+ order?: OrderWithLiterals;
3319
+ /** Number of months to include in response. */
3320
+ months?: number;
3321
+ /**
3322
+ * Language filter.
3323
+ *
3324
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3325
+ * Pass a language to only receive the period post count for that specified language.
3326
+ * @format LANGUAGE_TAG
3327
+ */
3328
+ language?: string | null;
3329
+ /**
3330
+ * Time zone to use when calculating the start of the month.
3331
+ *
3332
+ * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3333
+ * @minLength 3
3334
+ * @maxLength 100
3335
+ */
3336
+ timeZone?: string | null;
3337
+ }
3338
+ declare enum Order {
3339
+ UNKNOWN = "UNKNOWN",
3340
+ OLDEST = "OLDEST",
3341
+ NEWEST = "NEWEST"
3342
+ }
3343
+ /** @enumType */
3344
+ type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3345
+ /** Get Blog Post Count Stats response */
3346
+ interface QueryPostCountStatsResponse {
3347
+ /** List of published post counts by month. */
3348
+ stats?: PeriodPostCount[];
3349
+ }
3350
+ /** Post count for a specific time period */
3351
+ interface PeriodPostCount {
3352
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3353
+ periodStart?: Date | null;
3354
+ /** Number of posts published during this month. */
3355
+ postCount?: number;
3356
+ }
3357
+ interface GetTotalPublicationsRequest {
3358
+ /**
3359
+ * Language filter
3360
+ * @minLength 2
3361
+ * @format LANGUAGE_TAG
3362
+ */
3363
+ language?: string | null;
3364
+ }
3365
+ interface GetTotalPublicationsResponse {
3366
+ /** Total amount of publications. */
3367
+ total?: number;
3368
+ }
3369
+ interface GetTotalPostsRequest {
3370
+ /**
3371
+ * Language filter.
3372
+ *
3373
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3374
+ * Pass a language to receive the total amount of posts in that specified language.
3375
+ * @format LANGUAGE_TAG
3376
+ */
3377
+ language?: string | null;
3378
+ }
3379
+ interface GetTotalPostsResponse {
3380
+ /** Total amount of published posts. */
3381
+ total?: number;
3382
+ }
3328
3383
  interface GetTotalLikesPerMemberRequest {
3329
3384
  /**
3330
3385
  * Member ID.
@@ -4023,4 +4078,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
4023
4078
  postId: string;
4024
4079
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
4025
4080
 
4026
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, 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, 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 BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, 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, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, 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 DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, 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 DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, 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 GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, 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, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, 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, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, 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 ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, 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 Metrics as MetricsOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, 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 PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, 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 PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, 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 as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, 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, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, 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, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
4081
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, 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, 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 BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, 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, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, 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 DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, 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 DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, 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 GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, 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, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, 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, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, 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 ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, 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 Metrics as MetricsOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, 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 PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, 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 PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, 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, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, 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, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, 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, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };