@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
|
@@ -4257,13 +4257,14 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
|
|
|
4257
4257
|
/**
|
|
4258
4258
|
* Retrieves the number of published posts per month within a specified time range.
|
|
4259
4259
|
*
|
|
4260
|
-
*
|
|
4261
|
-
* The
|
|
4262
|
-
*
|
|
4263
|
-
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4264
|
-
*
|
|
4265
|
-
*
|
|
4260
|
+
*
|
|
4261
|
+
* The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
|
|
4262
|
+
*
|
|
4263
|
+
* 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.
|
|
4264
|
+
*
|
|
4265
|
+
* >**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.
|
|
4266
4266
|
* @public
|
|
4267
|
+
* @param options - Options specifying time frame, sort, and filter.
|
|
4267
4268
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4268
4269
|
* @applicableIdentity APP
|
|
4269
4270
|
* @returns Get Blog Post Count Stats response
|
|
@@ -4304,6 +4305,7 @@ interface QueryPostCountStatsOptions {
|
|
|
4304
4305
|
/**
|
|
4305
4306
|
* Retrieves the total amount of published posts of the blog.
|
|
4306
4307
|
* @public
|
|
4308
|
+
* @param options - Language Options.
|
|
4307
4309
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4308
4310
|
* @applicableIdentity APP
|
|
4309
4311
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -4324,12 +4326,12 @@ interface GetTotalPostsOptions {
|
|
|
4324
4326
|
* @param postId - Post ID.
|
|
4325
4327
|
* @public
|
|
4326
4328
|
* @requiredField postId
|
|
4329
|
+
* @param options - Options specifying which fields to return.
|
|
4327
4330
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4328
4331
|
* @applicableIdentity APP
|
|
4329
|
-
* @returns Retrieved post info.
|
|
4330
4332
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
4331
4333
|
*/
|
|
4332
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4334
|
+
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>>;
|
|
4333
4335
|
interface GetPostOptions {
|
|
4334
4336
|
/**
|
|
4335
4337
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4349,6 +4351,7 @@ interface GetPostOptions {
|
|
|
4349
4351
|
* @param slug - Slug of the post to retrieve.
|
|
4350
4352
|
* @public
|
|
4351
4353
|
* @requiredField slug
|
|
4354
|
+
* @param options - Options specifying which fields to return.
|
|
4352
4355
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4353
4356
|
* @applicableIdentity APP
|
|
4354
4357
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4376,6 +4379,7 @@ interface GetPostBySlugOptions {
|
|
|
4376
4379
|
* - `paging.limit` is `50`.
|
|
4377
4380
|
* - `paging.offset` is `0`.
|
|
4378
4381
|
* @public
|
|
4382
|
+
* @param options - Sort, filter, and paging options.
|
|
4379
4383
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4380
4384
|
* @applicableIdentity APP
|
|
4381
4385
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4446,18 +4450,26 @@ interface ListPostsOptions {
|
|
|
4446
4450
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4447
4451
|
}
|
|
4448
4452
|
/**
|
|
4449
|
-
*
|
|
4453
|
+
* Creates a query to retrieve a list of posts.
|
|
4450
4454
|
*
|
|
4451
|
-
* Query Posts runs with these defaults, which you can override:
|
|
4452
|
-
* - `firstPublishedDate` is sorted in descending order, with pinned posts first.
|
|
4453
|
-
* - `paging.limit` is `50`.
|
|
4454
|
-
* - `paging.offset` is `0`.
|
|
4455
4455
|
*
|
|
4456
|
-
*
|
|
4457
|
-
*
|
|
4458
|
-
*
|
|
4459
|
-
*
|
|
4456
|
+
* The `queryPosts()` function builds a query to retrieve a list of up to 100 posts, and returns a `PostsQueryBuilder` object.
|
|
4457
|
+
*
|
|
4458
|
+
* The returned object contains the query definition which is typically used to run the query using the `find()` function.
|
|
4459
|
+
*
|
|
4460
|
+
* 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.
|
|
4461
|
+
*
|
|
4462
|
+
* `queryPosts()` runs with these `PostsQueryBuilder` defaults that you can override:
|
|
4463
|
+
* + `limit(50)`
|
|
4464
|
+
* + `descending('firstPublishedDate')`
|
|
4465
|
+
*
|
|
4466
|
+
* Note that the default limit is `'50'`, but the max limit is `'100'`.
|
|
4467
|
+
*
|
|
4468
|
+
* To learn how to query posts, refer to the table below.
|
|
4469
|
+
*
|
|
4470
|
+
* 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`.
|
|
4460
4471
|
* @public
|
|
4472
|
+
* @param options - Options specifying which fields to return.
|
|
4461
4473
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4462
4474
|
* @applicableIdentity APP
|
|
4463
4475
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
|
|
@@ -1649,8 +1649,8 @@ async function getPost2(postId, options) {
|
|
|
1649
1649
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1650
1650
|
}
|
|
1651
1651
|
]),
|
|
1652
|
-
["post.richContent"]
|
|
1653
|
-
)
|
|
1652
|
+
["post.richContent", "post.rich_content"]
|
|
1653
|
+
);
|
|
1654
1654
|
} catch (err) {
|
|
1655
1655
|
const transformedError = (0, import_transform_error.transformError)(
|
|
1656
1656
|
err,
|
|
@@ -1697,7 +1697,7 @@ async function getPostBySlug2(slug, options) {
|
|
|
1697
1697
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1698
1698
|
}
|
|
1699
1699
|
]),
|
|
1700
|
-
["post.richContent"]
|
|
1700
|
+
["post.richContent", "post.rich_content"]
|
|
1701
1701
|
);
|
|
1702
1702
|
} catch (err) {
|
|
1703
1703
|
const transformedError = (0, import_transform_error.transformError)(
|
|
@@ -1756,7 +1756,7 @@ async function listPosts2(options) {
|
|
|
1756
1756
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1757
1757
|
}
|
|
1758
1758
|
]),
|
|
1759
|
-
["posts.richContent"]
|
|
1759
|
+
["posts.richContent", "posts.rich_content"]
|
|
1760
1760
|
);
|
|
1761
1761
|
} catch (err) {
|
|
1762
1762
|
const transformedError = (0, import_transform_error.transformError)(
|
|
@@ -1826,7 +1826,7 @@ function queryPosts2(options) {
|
|
|
1826
1826
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1827
1827
|
}
|
|
1828
1828
|
]),
|
|
1829
|
-
["posts.richContent"]
|
|
1829
|
+
["posts.richContent", "posts.rich_content"]
|
|
1830
1830
|
);
|
|
1831
1831
|
return {
|
|
1832
1832
|
items: transformedData?.posts,
|
|
@@ -1874,7 +1874,7 @@ async function typedQueryPosts(query, options) {
|
|
|
1874
1874
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1875
1875
|
}
|
|
1876
1876
|
]),
|
|
1877
|
-
["posts.richContent"]
|
|
1877
|
+
["posts.richContent", "posts.rich_content"]
|
|
1878
1878
|
);
|
|
1879
1879
|
} catch (err) {
|
|
1880
1880
|
const transformedError = (0, import_transform_error.transformError)(
|