@wix/auto_sdk_blog_posts 1.0.147 → 1.0.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +15 -11
- package/build/cjs/index.js +16 -11
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +29 -17
- package/build/cjs/index.typings.js +6 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +84 -82
- package/build/cjs/schemas.js +153 -147
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +15 -11
- package/build/es/index.mjs +16 -11
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +29 -17
- package/build/es/index.typings.mjs +6 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +84 -82
- package/build/es/schemas.mjs +153 -147
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +15 -11
- package/build/internal/cjs/index.js +16 -11
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +29 -17
- package/build/internal/cjs/index.typings.js +6 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +84 -82
- package/build/internal/cjs/schemas.js +153 -147
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +15 -11
- package/build/internal/es/index.mjs +16 -11
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +29 -17
- package/build/internal/es/index.typings.mjs +6 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +84 -82
- package/build/internal/es/schemas.mjs +153 -147
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4250,13 +4250,14 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
|
|
|
4250
4250
|
/**
|
|
4251
4251
|
* Retrieves the number of published posts per month within a specified time range.
|
|
4252
4252
|
*
|
|
4253
|
-
*
|
|
4254
|
-
* The
|
|
4255
|
-
*
|
|
4256
|
-
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4257
|
-
*
|
|
4258
|
-
*
|
|
4253
|
+
*
|
|
4254
|
+
* The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
|
|
4255
|
+
*
|
|
4256
|
+
* 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.
|
|
4257
|
+
*
|
|
4258
|
+
* >**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.
|
|
4259
4259
|
* @public
|
|
4260
|
+
* @param options - Options specifying time frame, sort, and filter.
|
|
4260
4261
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4261
4262
|
* @applicableIdentity APP
|
|
4262
4263
|
* @returns Get Blog Post Count Stats response
|
|
@@ -4297,6 +4298,7 @@ interface QueryPostCountStatsOptions {
|
|
|
4297
4298
|
/**
|
|
4298
4299
|
* Retrieves the total amount of published posts of the blog.
|
|
4299
4300
|
* @public
|
|
4301
|
+
* @param options - Language Options.
|
|
4300
4302
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4301
4303
|
* @applicableIdentity APP
|
|
4302
4304
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -4317,12 +4319,12 @@ interface GetTotalPostsOptions {
|
|
|
4317
4319
|
* @param postId - Post ID.
|
|
4318
4320
|
* @public
|
|
4319
4321
|
* @requiredField postId
|
|
4322
|
+
* @param options - Options specifying which fields to return.
|
|
4320
4323
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4321
4324
|
* @applicableIdentity APP
|
|
4322
|
-
* @returns Retrieved post info.
|
|
4323
4325
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
4324
4326
|
*/
|
|
4325
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4327
|
+
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>>;
|
|
4326
4328
|
interface GetPostOptions {
|
|
4327
4329
|
/**
|
|
4328
4330
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4342,6 +4344,7 @@ interface GetPostOptions {
|
|
|
4342
4344
|
* @param slug - Slug of the post to retrieve.
|
|
4343
4345
|
* @public
|
|
4344
4346
|
* @requiredField slug
|
|
4347
|
+
* @param options - Options specifying which fields to return.
|
|
4345
4348
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4346
4349
|
* @applicableIdentity APP
|
|
4347
4350
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4369,6 +4372,7 @@ interface GetPostBySlugOptions {
|
|
|
4369
4372
|
* - `paging.limit` is `50`.
|
|
4370
4373
|
* - `paging.offset` is `0`.
|
|
4371
4374
|
* @public
|
|
4375
|
+
* @param options - Sort, filter, and paging options.
|
|
4372
4376
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4373
4377
|
* @applicableIdentity APP
|
|
4374
4378
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4439,18 +4443,26 @@ interface ListPostsOptions {
|
|
|
4439
4443
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4440
4444
|
}
|
|
4441
4445
|
/**
|
|
4442
|
-
*
|
|
4446
|
+
* Creates a query to retrieve a list of posts.
|
|
4443
4447
|
*
|
|
4444
|
-
* Query Posts runs with these defaults, which you can override:
|
|
4445
|
-
* - `firstPublishedDate` is sorted in descending order, with pinned posts first.
|
|
4446
|
-
* - `paging.limit` is `50`.
|
|
4447
|
-
* - `paging.offset` is `0`.
|
|
4448
4448
|
*
|
|
4449
|
-
*
|
|
4450
|
-
*
|
|
4451
|
-
*
|
|
4452
|
-
*
|
|
4449
|
+
* The `queryPosts()` function builds a query to retrieve a list of up to 100 posts, and returns a `PostsQueryBuilder` object.
|
|
4450
|
+
*
|
|
4451
|
+
* The returned object contains the query definition which is typically used to run the query using the `find()` function.
|
|
4452
|
+
*
|
|
4453
|
+
* 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.
|
|
4454
|
+
*
|
|
4455
|
+
* `queryPosts()` runs with these `PostsQueryBuilder` defaults that you can override:
|
|
4456
|
+
* + `limit(50)`
|
|
4457
|
+
* + `descending('firstPublishedDate')`
|
|
4458
|
+
*
|
|
4459
|
+
* Note that the default limit is `'50'`, but the max limit is `'100'`.
|
|
4460
|
+
*
|
|
4461
|
+
* To learn how to query posts, refer to the table below.
|
|
4462
|
+
*
|
|
4463
|
+
* 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`.
|
|
4453
4464
|
* @public
|
|
4465
|
+
* @param options - Options specifying which fields to return.
|
|
4454
4466
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4455
4467
|
* @applicableIdentity APP
|
|
4456
4468
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
|
|
@@ -1553,8 +1553,8 @@ async function getPost2(postId, options) {
|
|
|
1553
1553
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1554
1554
|
}
|
|
1555
1555
|
]),
|
|
1556
|
-
["post.richContent"]
|
|
1557
|
-
)
|
|
1556
|
+
["post.richContent", "post.rich_content"]
|
|
1557
|
+
);
|
|
1558
1558
|
} catch (err) {
|
|
1559
1559
|
const transformedError = sdkTransformError(
|
|
1560
1560
|
err,
|
|
@@ -1601,7 +1601,7 @@ async function getPostBySlug2(slug, options) {
|
|
|
1601
1601
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1602
1602
|
}
|
|
1603
1603
|
]),
|
|
1604
|
-
["post.richContent"]
|
|
1604
|
+
["post.richContent", "post.rich_content"]
|
|
1605
1605
|
);
|
|
1606
1606
|
} catch (err) {
|
|
1607
1607
|
const transformedError = sdkTransformError(
|
|
@@ -1660,7 +1660,7 @@ async function listPosts2(options) {
|
|
|
1660
1660
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1661
1661
|
}
|
|
1662
1662
|
]),
|
|
1663
|
-
["posts.richContent"]
|
|
1663
|
+
["posts.richContent", "posts.rich_content"]
|
|
1664
1664
|
);
|
|
1665
1665
|
} catch (err) {
|
|
1666
1666
|
const transformedError = sdkTransformError(
|
|
@@ -1730,7 +1730,7 @@ function queryPosts2(options) {
|
|
|
1730
1730
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1731
1731
|
}
|
|
1732
1732
|
]),
|
|
1733
|
-
["posts.richContent"]
|
|
1733
|
+
["posts.richContent", "posts.rich_content"]
|
|
1734
1734
|
);
|
|
1735
1735
|
return {
|
|
1736
1736
|
items: transformedData?.posts,
|
|
@@ -1778,7 +1778,7 @@ async function typedQueryPosts(query, options) {
|
|
|
1778
1778
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1779
1779
|
}
|
|
1780
1780
|
]),
|
|
1781
|
-
["posts.richContent"]
|
|
1781
|
+
["posts.richContent", "posts.rich_content"]
|
|
1782
1782
|
);
|
|
1783
1783
|
} catch (err) {
|
|
1784
1784
|
const transformedError = sdkTransformError(
|