@wix/auto_sdk_blog_draft-posts 1.0.34 → 1.0.36

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.
@@ -1487,6 +1487,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1487
1487
  ribbonStyles?: RibbonStyles;
1488
1488
  /** Card styling options. */
1489
1489
  cardStyles?: CardStyles;
1490
+ /** Styling for the app embed's container. */
1491
+ containerData?: PluginContainerData;
1490
1492
  }
1491
1493
  /** @oneof */
1492
1494
  interface AppEmbedDataAppDataOneOf {
@@ -2587,35 +2589,9 @@ interface BlogPaging {
2587
2589
  interface ListDeletedDraftPostsResponse {
2588
2590
  /** List of draft posts. */
2589
2591
  draftPosts?: DraftPost[];
2590
- /**
2591
- * __Deprecated.__ Use `pagingMetadata` instead.
2592
- * This property will be removed on June 30, 2025.
2593
- *
2594
- * Details on the paged set of results returned.
2595
- * @deprecated __Deprecated.__ Use `pagingMetadata` instead.
2596
- * This property will be removed on June 30, 2025.
2597
- *
2598
- * Details on the paged set of results returned.
2599
- * @replacedBy pagingMetadata
2600
- * @targetRemovalDate 2025-06-30
2601
- */
2602
- metaData?: MetaData;
2603
2592
  /** Details on the paged set of results returned. */
2604
2593
  pagingMetadata?: PagingMetadataV2;
2605
2594
  }
2606
- interface MetaData {
2607
- /** Number of items returned in this response. */
2608
- count?: number;
2609
- /** Requested offset. */
2610
- offset?: number;
2611
- /** Total number of items that match the query. */
2612
- total?: number;
2613
- /**
2614
- * Pointer to the next or previous page in the list of results.
2615
- * @maxLength 2000
2616
- */
2617
- cursor?: string | null;
2618
- }
2619
2595
  interface PagingMetadataV2 {
2620
2596
  /** Number of items returned in the response. */
2621
2597
  count?: number | null;
@@ -2781,6 +2757,19 @@ interface ListDraftPostsResponse {
2781
2757
  /** Details on the paged set of results returned. */
2782
2758
  metaData?: MetaData;
2783
2759
  }
2760
+ interface MetaData {
2761
+ /** Number of items returned in this response. */
2762
+ count?: number;
2763
+ /** Requested offset. */
2764
+ offset?: number;
2765
+ /** Total number of items that match the query. */
2766
+ total?: number;
2767
+ /**
2768
+ * Pointer to the next or previous page in the list of results.
2769
+ * @maxLength 2000
2770
+ */
2771
+ cursor?: string | null;
2772
+ }
2784
2773
  interface GetDeletedDraftPostRequest {
2785
2774
  /**
2786
2775
  * Draft post ID.
@@ -3499,7 +3488,7 @@ interface BulkUpdateDraftPostsOptions {
3499
3488
  */
3500
3489
  declare function listDeletedDraftPosts(options?: ListDeletedDraftPostsOptions): Promise<NonNullablePaths<ListDeletedDraftPostsResponse, {
3501
3490
  [P in DraftNonNullablePaths]: `draftPosts.${number}.${P}`;
3502
- }[DraftNonNullablePaths] | `metaData.count` | `metaData.offset` | `metaData.total`>>;
3491
+ }[DraftNonNullablePaths]>>;
3503
3492
  interface ListDeletedDraftPostsOptions {
3504
3493
  /**
3505
3494
  * Language filter.