@wix/auto_sdk_blog_posts 1.0.130 → 1.0.131

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 (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +30 -21
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +538 -521
  5. package/build/cjs/index.typings.js +30 -21
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +374 -360
  8. package/build/cjs/meta.js +27 -20
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +29 -21
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +538 -521
  14. package/build/es/index.typings.mjs +29 -21
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +374 -360
  17. package/build/es/meta.mjs +26 -20
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +30 -21
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +538 -521
  23. package/build/internal/cjs/index.typings.js +30 -21
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +374 -360
  26. package/build/internal/cjs/meta.js +27 -20
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +29 -21
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +538 -521
  32. package/build/internal/es/index.typings.mjs +29 -21
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +374 -360
  35. package/build/internal/es/meta.mjs +26 -20
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -2047,6 +2047,8 @@ interface LayoutData {
2047
2047
  containerData?: PluginContainerData;
2048
2048
  /** Defines where selected design propertied applies to */
2049
2049
  designTarget?: DesignTargetWithLiterals;
2050
+ /** Banner configuration. When present, this layout is displayed as a banner. */
2051
+ banner?: Banner;
2050
2052
  }
2051
2053
  declare enum Scaling {
2052
2054
  /** Auto image scaling */
@@ -2080,6 +2082,14 @@ declare enum ImagePosition {
2080
2082
  }
2081
2083
  /** @enumType */
2082
2084
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2085
+ declare enum BannerOrigin {
2086
+ /** Banner originated from an image */
2087
+ IMAGE = "IMAGE",
2088
+ /** Banner originated from a layout */
2089
+ LAYOUT = "LAYOUT"
2090
+ }
2091
+ /** @enumType */
2092
+ type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2083
2093
  interface BackgroundImage {
2084
2094
  /** Background image. */
2085
2095
  media?: V1Media;
@@ -2116,6 +2126,10 @@ declare enum DesignTarget {
2116
2126
  }
2117
2127
  /** @enumType */
2118
2128
  type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2129
+ interface Banner {
2130
+ /** Origin of the banner */
2131
+ origin?: BannerOriginWithLiterals;
2132
+ }
2119
2133
  interface LayoutCellData {
2120
2134
  /** Size of the cell in 12 columns grid. */
2121
2135
  colSpan?: number | null;
@@ -2419,130 +2433,405 @@ interface PostUnlikedInitiatorOneOf {
2419
2433
  */
2420
2434
  anonymousVisitorId?: string | null;
2421
2435
  }
2422
- interface ListTemplatesRequest {
2423
- /**
2424
- * Filter post templates by given template category ids
2425
- * @maxSize 50
2426
- * @format GUID
2427
- */
2428
- categoryIds?: string[];
2436
+ /** Get Blog Publications Count Stats request */
2437
+ interface QueryPublicationsCountStatsRequest {
2438
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2439
+ rangeStart?: Date | null;
2440
+ /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2441
+ rangeEnd?: Date | null;
2442
+ /** Order of the returned results. */
2443
+ order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
2444
+ /** Number of months to include in the response. */
2445
+ months?: number;
2429
2446
  /**
2430
- * Filter post templates by provided language
2447
+ * Language filter
2448
+ *
2449
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2431
2450
  * @format LANGUAGE_TAG
2432
2451
  */
2433
2452
  language?: string | null;
2434
- /** Returns post template categories when set to TRUE */
2435
- listTemplateCategories?: boolean;
2436
- /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2437
- sort?: GetPostTemplatesSortWithLiterals;
2438
- /** Pagination options. */
2439
- paging?: BlogPaging;
2453
+ /**
2454
+ * Timezone of the client.
2455
+ * @minLength 3
2456
+ * @maxLength 100
2457
+ */
2458
+ timeZone?: string | null;
2440
2459
  }
2441
- declare enum GetPostTemplatesSort {
2442
- /** Sort by ascending publishing date. */
2443
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2444
- /** Sort by descending publishing date. */
2445
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2460
+ declare enum QueryPublicationsCountStatsRequestOrder {
2461
+ UNKNOWN = "UNKNOWN",
2462
+ OLDEST = "OLDEST",
2463
+ NEWEST = "NEWEST"
2446
2464
  }
2447
2465
  /** @enumType */
2448
- type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2449
- interface BlogPaging {
2466
+ type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2467
+ /** Get Blog Publications Count Stats response */
2468
+ interface QueryPublicationsCountStatsResponse {
2469
+ /** Chronologically ordered list of publications. */
2470
+ stats?: PeriodPublicationsCount[];
2471
+ }
2472
+ /** Publications count for a specific time period */
2473
+ interface PeriodPublicationsCount {
2474
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2475
+ periodStart?: Date | null;
2476
+ /** Number of posts published during this month. */
2477
+ publicationsCount?: number;
2478
+ }
2479
+ /** Get Blog Post Count Stats request */
2480
+ interface QueryPostCountStatsRequest {
2481
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2482
+ rangeStart?: Date | null;
2450
2483
  /**
2451
- * Number of items to skip in the current sort order.
2484
+ * Order of returned results.
2452
2485
  *
2486
+ * - `OLDEST`: posts by date in ascending order.
2487
+ * - `NEWEST`: posts by date in descending order.
2453
2488
  *
2454
- * Default: `0`
2489
+ * Default: `OLDEST`
2455
2490
  */
2456
- offset?: number;
2491
+ order?: OrderWithLiterals;
2492
+ /** Number of months to include in response. */
2493
+ months?: number;
2457
2494
  /**
2458
- * Number of items to return.
2459
- *
2495
+ * Language filter.
2460
2496
  *
2461
- * Default:`50`
2462
- * @min 1
2463
- * @max 100
2497
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2498
+ * Pass a language to only receive the period post count for that specified language.
2499
+ * @format LANGUAGE_TAG
2464
2500
  */
2465
- limit?: number;
2501
+ language?: string | null;
2466
2502
  /**
2467
- * Pointer to the next or previous page in the list of results.
2468
- * @maxLength 2000
2503
+ * Time zone to use when calculating the start of the month.
2504
+ *
2505
+ * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
2506
+ * @minLength 3
2507
+ * @maxLength 100
2469
2508
  */
2470
- cursor?: string | null;
2509
+ timeZone?: string | null;
2471
2510
  }
2472
- interface ListTemplatesResponse {
2473
- /** Available post templates */
2474
- postTemplates?: Post[];
2475
- /** Details on the paged set of posts templates returned. */
2476
- postTemplatesMetaData?: MetaData;
2477
- /** Post template categories. This value is returned empty unless asked explicitly */
2478
- templateCategories?: Category[];
2511
+ declare enum Order {
2512
+ UNKNOWN = "UNKNOWN",
2513
+ OLDEST = "OLDEST",
2514
+ NEWEST = "NEWEST"
2479
2515
  }
2480
- interface MetaData {
2481
- /** Number of items returned in this response. */
2482
- count?: number;
2483
- /** Requested offset. */
2484
- offset?: number;
2485
- /** Total number of items that match the query. */
2486
- total?: number;
2516
+ /** @enumType */
2517
+ type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2518
+ /** Get Blog Post Count Stats response */
2519
+ interface QueryPostCountStatsResponse {
2520
+ /** List of published post counts by month. */
2521
+ stats?: PeriodPostCount[];
2522
+ }
2523
+ /** Post count for a specific time period */
2524
+ interface PeriodPostCount {
2525
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2526
+ periodStart?: Date | null;
2527
+ /** Number of posts published during this month. */
2528
+ postCount?: number;
2529
+ }
2530
+ interface GetTotalPublicationsRequest {
2487
2531
  /**
2488
- * Pointer to the next or previous page in the list of results.
2489
- * @maxLength 2000
2532
+ * Language filter
2533
+ * @minLength 2
2534
+ * @format LANGUAGE_TAG
2490
2535
  */
2491
- cursor?: string | null;
2536
+ language?: string | null;
2492
2537
  }
2493
- interface Category {
2538
+ interface GetTotalPublicationsResponse {
2539
+ /** Total amount of publications. */
2540
+ total?: number;
2541
+ }
2542
+ interface GetTotalPostsRequest {
2494
2543
  /**
2495
- * Category ID.
2496
- * @immutable
2497
- * @maxLength 38
2544
+ * Language filter.
2545
+ *
2546
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2547
+ * Pass a language to receive the total amount of posts in that specified language.
2548
+ * @format LANGUAGE_TAG
2498
2549
  */
2550
+ language?: string | null;
2551
+ }
2552
+ interface GetTotalPostsResponse {
2553
+ /** Total amount of published posts. */
2554
+ total?: number;
2555
+ }
2556
+ interface DomainEvent extends DomainEventBodyOneOf {
2557
+ createdEvent?: EntityCreatedEvent;
2558
+ updatedEvent?: EntityUpdatedEvent;
2559
+ deletedEvent?: EntityDeletedEvent;
2560
+ actionEvent?: ActionEvent;
2561
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2499
2562
  id?: string;
2500
2563
  /**
2501
- * Category label. Displayed in the Category Menu.
2502
- * @maxLength 35
2564
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2565
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2503
2566
  */
2504
- label?: string;
2567
+ entityFqdn?: string;
2505
2568
  /**
2506
- * Number of posts in the category.
2507
- * @readonly
2569
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2570
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2508
2571
  */
2509
- postCount?: number;
2572
+ slug?: string;
2573
+ /** ID of the entity associated with the event. */
2574
+ entityId?: string;
2575
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2576
+ eventTime?: Date | null;
2510
2577
  /**
2511
- * The `url` of the page that lists every post with the specified category.
2512
- * @readonly
2578
+ * Whether the event was triggered as a result of a privacy regulation application
2579
+ * (for example, GDPR).
2513
2580
  */
2514
- url?: PageUrl;
2581
+ triggeredByAnonymizeRequest?: boolean | null;
2582
+ /** If present, indicates the action that triggered the event. */
2583
+ originatedFrom?: string | null;
2515
2584
  /**
2516
- * Category description.
2517
- * @maxLength 500
2585
+ * 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.
2586
+ * 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.
2518
2587
  */
2519
- description?: string | null;
2588
+ entityEventSequence?: string | null;
2589
+ }
2590
+ /** @oneof */
2591
+ interface DomainEventBodyOneOf {
2592
+ createdEvent?: EntityCreatedEvent;
2593
+ updatedEvent?: EntityUpdatedEvent;
2594
+ deletedEvent?: EntityDeletedEvent;
2595
+ actionEvent?: ActionEvent;
2596
+ }
2597
+ interface EntityCreatedEvent {
2598
+ entityAsJson?: string;
2599
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2600
+ restoreInfo?: RestoreInfo;
2601
+ }
2602
+ interface RestoreInfo {
2603
+ deletedDate?: Date | null;
2604
+ }
2605
+ interface EntityUpdatedEvent {
2520
2606
  /**
2521
- * Category title.
2522
- * @maxLength 200
2523
- * @deprecated Category title.
2524
- * @targetRemovalDate 2025-07-16
2607
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2608
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2609
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2525
2610
  */
2526
- title?: string;
2611
+ currentEntityAsJson?: string;
2612
+ }
2613
+ interface EntityDeletedEvent {
2614
+ /** Entity that was deleted. */
2615
+ deletedEntityAsJson?: string | null;
2616
+ }
2617
+ interface ActionEvent {
2618
+ bodyAsJson?: string;
2619
+ }
2620
+ interface MessageEnvelope {
2527
2621
  /**
2528
- * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
2529
- * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
2530
- *
2531
- * Default: `-1`
2622
+ * App instance ID.
2623
+ * @format GUID
2532
2624
  */
2533
- displayPosition?: number | null;
2625
+ instanceId?: string | null;
2534
2626
  /**
2535
- * ID of the category's translations. All translations of a single category share the same `translationId`.
2536
- * @format GUID
2627
+ * Event type.
2628
+ * @maxLength 150
2537
2629
  */
2538
- translationId?: string | null;
2630
+ eventType?: string;
2631
+ /** The identification type and identity data. */
2632
+ identity?: IdentificationData;
2633
+ /** Stringify payload. */
2634
+ data?: string;
2635
+ /** Details related to the account */
2636
+ accountInfo?: AccountInfo;
2637
+ }
2638
+ interface IdentificationData extends IdentificationDataIdOneOf {
2539
2639
  /**
2540
- * Category language.
2541
- *
2542
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2543
- * @immutable
2640
+ * ID of a site visitor that has not logged in to the site.
2641
+ * @format GUID
2544
2642
  */
2545
- language?: string | null;
2643
+ anonymousVisitorId?: string;
2644
+ /**
2645
+ * ID of a site visitor that has logged in to the site.
2646
+ * @format GUID
2647
+ */
2648
+ memberId?: string;
2649
+ /**
2650
+ * ID of a Wix user (site owner, contributor, etc.).
2651
+ * @format GUID
2652
+ */
2653
+ wixUserId?: string;
2654
+ /**
2655
+ * ID of an app.
2656
+ * @format GUID
2657
+ */
2658
+ appId?: string;
2659
+ /** @readonly */
2660
+ identityType?: WebhookIdentityTypeWithLiterals;
2661
+ }
2662
+ /** @oneof */
2663
+ interface IdentificationDataIdOneOf {
2664
+ /**
2665
+ * ID of a site visitor that has not logged in to the site.
2666
+ * @format GUID
2667
+ */
2668
+ anonymousVisitorId?: string;
2669
+ /**
2670
+ * ID of a site visitor that has logged in to the site.
2671
+ * @format GUID
2672
+ */
2673
+ memberId?: string;
2674
+ /**
2675
+ * ID of a Wix user (site owner, contributor, etc.).
2676
+ * @format GUID
2677
+ */
2678
+ wixUserId?: string;
2679
+ /**
2680
+ * ID of an app.
2681
+ * @format GUID
2682
+ */
2683
+ appId?: string;
2684
+ }
2685
+ declare enum WebhookIdentityType {
2686
+ UNKNOWN = "UNKNOWN",
2687
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2688
+ MEMBER = "MEMBER",
2689
+ WIX_USER = "WIX_USER",
2690
+ APP = "APP"
2691
+ }
2692
+ /** @enumType */
2693
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2694
+ interface AccountInfo {
2695
+ /**
2696
+ * ID of the Wix account associated with the event.
2697
+ * @format GUID
2698
+ */
2699
+ accountId?: string | null;
2700
+ /**
2701
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
2702
+ * @format GUID
2703
+ */
2704
+ parentAccountId?: string | null;
2705
+ /**
2706
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
2707
+ * @format GUID
2708
+ */
2709
+ siteId?: string | null;
2710
+ }
2711
+ interface ListTemplatesRequest {
2712
+ /**
2713
+ * Filter post templates by given template category ids
2714
+ * @maxSize 50
2715
+ * @format GUID
2716
+ */
2717
+ categoryIds?: string[];
2718
+ /**
2719
+ * Filter post templates by provided language
2720
+ * @format LANGUAGE_TAG
2721
+ */
2722
+ language?: string | null;
2723
+ /** Returns post template categories when set to TRUE */
2724
+ listTemplateCategories?: boolean;
2725
+ /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2726
+ sort?: GetPostTemplatesSortWithLiterals;
2727
+ /** Pagination options. */
2728
+ paging?: BlogPaging;
2729
+ }
2730
+ declare enum GetPostTemplatesSort {
2731
+ /** Sort by ascending publishing date. */
2732
+ PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2733
+ /** Sort by descending publishing date. */
2734
+ PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2735
+ }
2736
+ /** @enumType */
2737
+ type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2738
+ interface BlogPaging {
2739
+ /**
2740
+ * Number of items to skip in the current sort order.
2741
+ *
2742
+ *
2743
+ * Default: `0`
2744
+ */
2745
+ offset?: number;
2746
+ /**
2747
+ * Number of items to return.
2748
+ *
2749
+ *
2750
+ * Default:`50`
2751
+ * @min 1
2752
+ * @max 100
2753
+ */
2754
+ limit?: number;
2755
+ /**
2756
+ * Pointer to the next or previous page in the list of results.
2757
+ * @maxLength 2000
2758
+ */
2759
+ cursor?: string | null;
2760
+ }
2761
+ interface ListTemplatesResponse {
2762
+ /** Available post templates */
2763
+ postTemplates?: Post[];
2764
+ /** Details on the paged set of posts templates returned. */
2765
+ postTemplatesMetaData?: MetaData;
2766
+ /** Post template categories. This value is returned empty unless asked explicitly */
2767
+ templateCategories?: Category[];
2768
+ }
2769
+ interface MetaData {
2770
+ /** Number of items returned in this response. */
2771
+ count?: number;
2772
+ /** Requested offset. */
2773
+ offset?: number;
2774
+ /** Total number of items that match the query. */
2775
+ total?: number;
2776
+ /**
2777
+ * Pointer to the next or previous page in the list of results.
2778
+ * @maxLength 2000
2779
+ */
2780
+ cursor?: string | null;
2781
+ }
2782
+ interface Category {
2783
+ /**
2784
+ * Category ID.
2785
+ * @immutable
2786
+ * @maxLength 38
2787
+ */
2788
+ id?: string;
2789
+ /**
2790
+ * Category label. Displayed in the Category Menu.
2791
+ * @maxLength 35
2792
+ */
2793
+ label?: string;
2794
+ /**
2795
+ * Number of posts in the category.
2796
+ * @readonly
2797
+ */
2798
+ postCount?: number;
2799
+ /**
2800
+ * The `url` of the page that lists every post with the specified category.
2801
+ * @readonly
2802
+ */
2803
+ url?: PageUrl;
2804
+ /**
2805
+ * Category description.
2806
+ * @maxLength 500
2807
+ */
2808
+ description?: string | null;
2809
+ /**
2810
+ * Category title.
2811
+ * @maxLength 200
2812
+ * @deprecated Category title.
2813
+ * @targetRemovalDate 2025-07-16
2814
+ */
2815
+ title?: string;
2816
+ /**
2817
+ * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
2818
+ * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
2819
+ *
2820
+ * Default: `-1`
2821
+ */
2822
+ displayPosition?: number | null;
2823
+ /**
2824
+ * ID of the category's translations. All translations of a single category share the same `translationId`.
2825
+ * @format GUID
2826
+ */
2827
+ translationId?: string | null;
2828
+ /**
2829
+ * Category language.
2830
+ *
2831
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2832
+ * @immutable
2833
+ */
2834
+ language?: string | null;
2546
2835
  /**
2547
2836
  * Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`.
2548
2837
  * @maxLength 100
@@ -2847,281 +3136,6 @@ interface DraftPostTranslation {
2847
3136
  /** Post URL. */
2848
3137
  url?: PageUrl;
2849
3138
  }
2850
- interface DomainEvent extends DomainEventBodyOneOf {
2851
- createdEvent?: EntityCreatedEvent;
2852
- updatedEvent?: EntityUpdatedEvent;
2853
- deletedEvent?: EntityDeletedEvent;
2854
- actionEvent?: ActionEvent;
2855
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2856
- id?: string;
2857
- /**
2858
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2859
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2860
- */
2861
- entityFqdn?: string;
2862
- /**
2863
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
2864
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2865
- */
2866
- slug?: string;
2867
- /** ID of the entity associated with the event. */
2868
- entityId?: string;
2869
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2870
- eventTime?: Date | null;
2871
- /**
2872
- * Whether the event was triggered as a result of a privacy regulation application
2873
- * (for example, GDPR).
2874
- */
2875
- triggeredByAnonymizeRequest?: boolean | null;
2876
- /** If present, indicates the action that triggered the event. */
2877
- originatedFrom?: string | null;
2878
- /**
2879
- * 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.
2880
- * 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.
2881
- */
2882
- entityEventSequence?: string | null;
2883
- }
2884
- /** @oneof */
2885
- interface DomainEventBodyOneOf {
2886
- createdEvent?: EntityCreatedEvent;
2887
- updatedEvent?: EntityUpdatedEvent;
2888
- deletedEvent?: EntityDeletedEvent;
2889
- actionEvent?: ActionEvent;
2890
- }
2891
- interface EntityCreatedEvent {
2892
- entityAsJson?: string;
2893
- /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2894
- restoreInfo?: RestoreInfo;
2895
- }
2896
- interface RestoreInfo {
2897
- deletedDate?: Date | null;
2898
- }
2899
- interface EntityUpdatedEvent {
2900
- /**
2901
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2902
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2903
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2904
- */
2905
- currentEntityAsJson?: string;
2906
- }
2907
- interface EntityDeletedEvent {
2908
- /** Entity that was deleted. */
2909
- deletedEntityAsJson?: string | null;
2910
- }
2911
- interface ActionEvent {
2912
- bodyAsJson?: string;
2913
- }
2914
- interface MessageEnvelope {
2915
- /**
2916
- * App instance ID.
2917
- * @format GUID
2918
- */
2919
- instanceId?: string | null;
2920
- /**
2921
- * Event type.
2922
- * @maxLength 150
2923
- */
2924
- eventType?: string;
2925
- /** The identification type and identity data. */
2926
- identity?: IdentificationData;
2927
- /** Stringify payload. */
2928
- data?: string;
2929
- /** Details related to the account */
2930
- accountInfo?: AccountInfo;
2931
- }
2932
- interface IdentificationData extends IdentificationDataIdOneOf {
2933
- /**
2934
- * ID of a site visitor that has not logged in to the site.
2935
- * @format GUID
2936
- */
2937
- anonymousVisitorId?: string;
2938
- /**
2939
- * ID of a site visitor that has logged in to the site.
2940
- * @format GUID
2941
- */
2942
- memberId?: string;
2943
- /**
2944
- * ID of a Wix user (site owner, contributor, etc.).
2945
- * @format GUID
2946
- */
2947
- wixUserId?: string;
2948
- /**
2949
- * ID of an app.
2950
- * @format GUID
2951
- */
2952
- appId?: string;
2953
- /** @readonly */
2954
- identityType?: WebhookIdentityTypeWithLiterals;
2955
- }
2956
- /** @oneof */
2957
- interface IdentificationDataIdOneOf {
2958
- /**
2959
- * ID of a site visitor that has not logged in to the site.
2960
- * @format GUID
2961
- */
2962
- anonymousVisitorId?: string;
2963
- /**
2964
- * ID of a site visitor that has logged in to the site.
2965
- * @format GUID
2966
- */
2967
- memberId?: string;
2968
- /**
2969
- * ID of a Wix user (site owner, contributor, etc.).
2970
- * @format GUID
2971
- */
2972
- wixUserId?: string;
2973
- /**
2974
- * ID of an app.
2975
- * @format GUID
2976
- */
2977
- appId?: string;
2978
- }
2979
- declare enum WebhookIdentityType {
2980
- UNKNOWN = "UNKNOWN",
2981
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2982
- MEMBER = "MEMBER",
2983
- WIX_USER = "WIX_USER",
2984
- APP = "APP"
2985
- }
2986
- /** @enumType */
2987
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2988
- interface AccountInfo {
2989
- /**
2990
- * ID of the Wix account associated with the event.
2991
- * @format GUID
2992
- */
2993
- accountId?: string | null;
2994
- /**
2995
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
2996
- * @format GUID
2997
- */
2998
- parentAccountId?: string | null;
2999
- /**
3000
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3001
- * @format GUID
3002
- */
3003
- siteId?: string | null;
3004
- }
3005
- /** Get Blog Publications Count Stats request */
3006
- interface QueryPublicationsCountStatsRequest {
3007
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3008
- rangeStart?: Date | null;
3009
- /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3010
- rangeEnd?: Date | null;
3011
- /** Order of the returned results. */
3012
- order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3013
- /** Number of months to include in the response. */
3014
- months?: number;
3015
- /**
3016
- * Language filter
3017
- *
3018
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3019
- * @format LANGUAGE_TAG
3020
- */
3021
- language?: string | null;
3022
- /**
3023
- * Timezone of the client.
3024
- * @minLength 3
3025
- * @maxLength 100
3026
- */
3027
- timeZone?: string | null;
3028
- }
3029
- declare enum QueryPublicationsCountStatsRequestOrder {
3030
- UNKNOWN = "UNKNOWN",
3031
- OLDEST = "OLDEST",
3032
- NEWEST = "NEWEST"
3033
- }
3034
- /** @enumType */
3035
- type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3036
- /** Get Blog Publications Count Stats response */
3037
- interface QueryPublicationsCountStatsResponse {
3038
- /** Chronologically ordered list of publications. */
3039
- stats?: PeriodPublicationsCount[];
3040
- }
3041
- /** Publications count for a specific time period */
3042
- interface PeriodPublicationsCount {
3043
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3044
- periodStart?: Date | null;
3045
- /** Number of posts published during this month. */
3046
- publicationsCount?: number;
3047
- }
3048
- /** Get Blog Post Count Stats request */
3049
- interface QueryPostCountStatsRequest {
3050
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3051
- rangeStart?: Date | null;
3052
- /**
3053
- * Order of returned results.
3054
- *
3055
- * - `OLDEST`: posts by date in ascending order.
3056
- * - `NEWEST`: posts by date in descending order.
3057
- *
3058
- * Default: `OLDEST`
3059
- */
3060
- order?: OrderWithLiterals;
3061
- /** Number of months to include in response. */
3062
- months?: number;
3063
- /**
3064
- * Language filter.
3065
- *
3066
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3067
- * Pass a language to only receive the period post count for that specified language.
3068
- * @format LANGUAGE_TAG
3069
- */
3070
- language?: string | null;
3071
- /**
3072
- * Time zone to use when calculating the start of the month.
3073
- *
3074
- * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3075
- * @minLength 3
3076
- * @maxLength 100
3077
- */
3078
- timeZone?: string | null;
3079
- }
3080
- declare enum Order {
3081
- UNKNOWN = "UNKNOWN",
3082
- OLDEST = "OLDEST",
3083
- NEWEST = "NEWEST"
3084
- }
3085
- /** @enumType */
3086
- type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3087
- /** Get Blog Post Count Stats response */
3088
- interface QueryPostCountStatsResponse {
3089
- /** List of published post counts by month. */
3090
- stats?: PeriodPostCount[];
3091
- }
3092
- /** Post count for a specific time period */
3093
- interface PeriodPostCount {
3094
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3095
- periodStart?: Date | null;
3096
- /** Number of posts published during this month. */
3097
- postCount?: number;
3098
- }
3099
- interface GetTotalPublicationsRequest {
3100
- /**
3101
- * Language filter
3102
- * @minLength 2
3103
- * @format LANGUAGE_TAG
3104
- */
3105
- language?: string | null;
3106
- }
3107
- interface GetTotalPublicationsResponse {
3108
- /** Total amount of publications. */
3109
- total?: number;
3110
- }
3111
- interface GetTotalPostsRequest {
3112
- /**
3113
- * Language filter.
3114
- *
3115
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3116
- * Pass a language to receive the total amount of posts in that specified language.
3117
- * @format LANGUAGE_TAG
3118
- */
3119
- language?: string | null;
3120
- }
3121
- interface GetTotalPostsResponse {
3122
- /** Total amount of published posts. */
3123
- total?: number;
3124
- }
3125
3139
  interface GetTotalLikesPerMemberRequest {
3126
3140
  /**
3127
3141
  * Member ID.
@@ -3791,4 +3805,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
3791
3805
  postId: string;
3792
3806
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
3793
3807
 
3794
- 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 BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, 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 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 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, 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, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, 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 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 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 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 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 };
3808
+ 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 BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, 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 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 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, 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, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, 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 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 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 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 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 };