@wix/auto_sdk_blog_posts 1.0.157 → 1.0.158

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 (41) hide show
  1. package/build/cjs/index.d.ts +11 -15
  2. package/build/cjs/index.js +11 -16
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +17 -29
  5. package/build/cjs/index.typings.js +6 -6
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/cjs/schemas.d.ts +82 -84
  9. package/build/cjs/schemas.js +147 -153
  10. package/build/cjs/schemas.js.map +1 -1
  11. package/build/es/index.d.mts +11 -15
  12. package/build/es/index.mjs +11 -16
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +17 -29
  15. package/build/es/index.typings.mjs +6 -6
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.mjs.map +1 -1
  18. package/build/es/schemas.d.mts +82 -84
  19. package/build/es/schemas.mjs +147 -153
  20. package/build/es/schemas.mjs.map +1 -1
  21. package/build/internal/cjs/index.d.ts +11 -15
  22. package/build/internal/cjs/index.js +11 -16
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +17 -29
  25. package/build/internal/cjs/index.typings.js +6 -6
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/cjs/schemas.d.ts +82 -84
  29. package/build/internal/cjs/schemas.js +147 -153
  30. package/build/internal/cjs/schemas.js.map +1 -1
  31. package/build/internal/es/index.d.mts +11 -15
  32. package/build/internal/es/index.mjs +11 -16
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +17 -29
  35. package/build/internal/es/index.typings.mjs +6 -6
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.mjs.map +1 -1
  38. package/build/internal/es/schemas.d.mts +82 -84
  39. package/build/internal/es/schemas.mjs +147 -153
  40. package/build/internal/es/schemas.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -4312,14 +4312,13 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
4312
4312
  /**
4313
4313
  * Retrieves the number of published posts per month within a specified time range.
4314
4314
  *
4315
- *
4316
- * The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
4317
- *
4318
- * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st day of the month set in `rangeStart` and includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range ends on the last day of the month.
4319
- *
4320
- * >**Note:** If there are no published posts in a specific month, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. If `rangeStart` is set to `'2022-01-01'` and `months` is set to `3`, the response includes `postCount` values for January and March, but not February.
4315
+ * The time range is set using the `rangeStart` and `months` properties.
4316
+ * The time range always starts on the 1st day of the month set in `rangeStart` and
4317
+ * includes the number of `months` following `rangeStart`.
4318
+ * For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
4319
+ * the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range always ends on the last day of the month.
4320
+ * > Note: If there are no published posts in a month within the time range, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. If `rangeStart` is set to `'2022-01-01'` and `months` is set to `3`, the response includes `postCount` values for January and March, but not February.
4321
4321
  * @public
4322
- * @param options - Options specifying time frame, sort, and filter.
4323
4322
  * @permissionId BLOG.READ-PUBLICATION
4324
4323
  * @applicableIdentity APP
4325
4324
  * @returns Get Blog Post Count Stats response
@@ -4360,7 +4359,6 @@ interface QueryPostCountStatsOptions {
4360
4359
  /**
4361
4360
  * Retrieves the total amount of published posts of the blog.
4362
4361
  * @public
4363
- * @param options - Language Options.
4364
4362
  * @permissionId BLOG.READ-PUBLICATION
4365
4363
  * @applicableIdentity APP
4366
4364
  * @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
@@ -4381,12 +4379,12 @@ interface GetTotalPostsOptions {
4381
4379
  * @param postId - Post ID.
4382
4380
  * @public
4383
4381
  * @requiredField postId
4384
- * @param options - Options specifying which fields to return.
4385
4382
  * @permissionId BLOG.READ-PUBLICATION
4386
4383
  * @applicableIdentity APP
4384
+ * @returns Retrieved post info.
4387
4385
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
4388
4386
  */
4389
- declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<GetPostResponse, `post._id` | `post.title` | `post.excerpt` | `post.slug` | `post.featured` | `post.pinned` | `post.categoryIds` | `post.memberId` | `post.hashtags` | `post.commentingEnabled` | `post.minutesToRead` | `post.tagIds` | `post.relatedPostIds` | `post.pricingPlanIds` | `post.seoData.tags` | `post.seoData.tags.${number}.type` | `post.seoData.tags.${number}.children` | `post.seoData.tags.${number}.custom` | `post.seoData.tags.${number}.disabled` | `post.seoData.settings.preventAutoRedirect` | `post.seoData.settings.keywords` | `post.seoData.settings.keywords.${number}.term` | `post.seoData.settings.keywords.${number}.isMain` | `post.preview` | `post.moderationDetails.submittedBy` | `post.moderationDetails.status` | `post.media.embedMedia.thumbnail.url` | `post.media.embedMedia.thumbnail.width` | `post.media.embedMedia.thumbnail.height` | `post.media.embedMedia.video.url` | `post.media.embedMedia.video.width` | `post.media.embedMedia.video.height` | `post.media.displayed` | `post.media.custom` | `post.hasUnpublishedChanges`, 7>>;
4387
+ declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<Post, `_id` | `title` | `excerpt` | `slug` | `featured` | `pinned` | `categoryIds` | `memberId` | `hashtags` | `commentingEnabled` | `minutesToRead` | `tagIds` | `relatedPostIds` | `pricingPlanIds` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `preview` | `moderationDetails.submittedBy` | `moderationDetails.status` | `media.embedMedia.thumbnail.url` | `media.embedMedia.thumbnail.width` | `media.embedMedia.thumbnail.height` | `media.embedMedia.video.url` | `media.embedMedia.video.width` | `media.embedMedia.video.height` | `media.displayed` | `media.custom` | `hasUnpublishedChanges`, 6>>;
4390
4388
  interface GetPostOptions {
4391
4389
  /**
4392
4390
  * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
@@ -4406,7 +4404,6 @@ interface GetPostOptions {
4406
4404
  * @param slug - Slug of the post to retrieve.
4407
4405
  * @public
4408
4406
  * @requiredField slug
4409
- * @param options - Options specifying which fields to return.
4410
4407
  * @permissionId BLOG.READ-PUBLICATION
4411
4408
  * @applicableIdentity APP
4412
4409
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
@@ -4434,7 +4431,6 @@ interface GetPostBySlugOptions {
4434
4431
  * - `paging.limit` is `50`.
4435
4432
  * - `paging.offset` is `0`.
4436
4433
  * @public
4437
- * @param options - Sort, filter, and paging options.
4438
4434
  * @permissionId BLOG.READ-PUBLICATION
4439
4435
  * @applicableIdentity APP
4440
4436
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
@@ -4505,26 +4501,18 @@ interface ListPostsOptions {
4505
4501
  fieldsets?: PostFieldFieldWithLiterals[];
4506
4502
  }
4507
4503
  /**
4508
- * Creates a query to retrieve a list of posts.
4509
- *
4510
- *
4511
- * The `queryPosts()` function builds a query to retrieve a list of up to 100 posts, and returns a `PostsQueryBuilder` object.
4512
- *
4513
- * The returned object contains the query definition which is typically used to run the query using the `find()` function.
4504
+ * Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
4514
4505
  *
4515
- * You can refine the query by chaining `PostsQueryBuilder` functions onto the query. `PostsQueryBuilder` functions enable you to sort, filter, and control the results that `queryPosts()` returns.
4516
- *
4517
- * `queryPosts()` runs with these `PostsQueryBuilder` defaults that you can override:
4518
- * + `limit(50)`
4519
- * + `descending('firstPublishedDate')`
4520
- *
4521
- * Note that the default limit is `'50'`, but the max limit is `'100'`.
4522
- *
4523
- * To learn how to query posts, refer to the table below.
4506
+ * Query Posts runs with these defaults, which you can override:
4507
+ * - `firstPublishedDate` is sorted in descending order, with pinned posts first.
4508
+ * - `paging.limit` is `50`.
4509
+ * - `paging.offset` is `0`.
4524
4510
  *
4525
- * The following `PostsQueryBuilder` functions are supported for the `queryPosts()` function. For a full description of the Posts object, see the object returned for the `items` property in `PostsQueryResult`.
4511
+ * To learn about working with _Query_ endpoints, see
4512
+ * [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
4513
+ * [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
4514
+ * [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
4526
4515
  * @public
4527
- * @param options - Options specifying which fields to return.
4528
4516
  * @permissionId BLOG.READ-PUBLICATION
4529
4517
  * @applicableIdentity APP
4530
4518
  * @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
@@ -1568,8 +1568,8 @@ async function getPost2(postId, options) {
1568
1568
  paths: [{ path: "post.media.wixMedia.videoV2" }]
1569
1569
  }
1570
1570
  ]),
1571
- ["post.richContent", "post.rich_content"]
1572
- );
1571
+ ["post.richContent"]
1572
+ )?.post;
1573
1573
  } catch (err) {
1574
1574
  const transformedError = sdkTransformError(
1575
1575
  err,
@@ -1616,7 +1616,7 @@ async function getPostBySlug2(slug, options) {
1616
1616
  paths: [{ path: "post.media.wixMedia.videoV2" }]
1617
1617
  }
1618
1618
  ]),
1619
- ["post.richContent", "post.rich_content"]
1619
+ ["post.richContent"]
1620
1620
  );
1621
1621
  } catch (err) {
1622
1622
  const transformedError = sdkTransformError(
@@ -1675,7 +1675,7 @@ async function listPosts2(options) {
1675
1675
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1676
1676
  }
1677
1677
  ]),
1678
- ["posts.richContent", "posts.rich_content"]
1678
+ ["posts.richContent"]
1679
1679
  );
1680
1680
  } catch (err) {
1681
1681
  const transformedError = sdkTransformError(
@@ -1745,7 +1745,7 @@ function queryPosts2(options) {
1745
1745
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1746
1746
  }
1747
1747
  ]),
1748
- ["posts.richContent", "posts.rich_content"]
1748
+ ["posts.richContent"]
1749
1749
  );
1750
1750
  return {
1751
1751
  items: transformedData?.posts,
@@ -1793,7 +1793,7 @@ async function typedQueryPosts(query, options) {
1793
1793
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1794
1794
  }
1795
1795
  ]),
1796
- ["posts.richContent", "posts.rich_content"]
1796
+ ["posts.richContent"]
1797
1797
  );
1798
1798
  } catch (err) {
1799
1799
  const transformedError = sdkTransformError(