@wix/auto_sdk_blog_posts 1.0.148 → 1.0.149
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 +11 -15
- package/build/cjs/index.js +11 -16
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +17 -29
- 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 +82 -84
- package/build/cjs/schemas.js +147 -153
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +11 -15
- package/build/es/index.mjs +11 -16
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +17 -29
- 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 +82 -84
- package/build/es/schemas.mjs +147 -153
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +11 -15
- package/build/internal/cjs/index.js +11 -16
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +17 -29
- 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 +82 -84
- package/build/internal/cjs/schemas.js +147 -153
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +11 -15
- package/build/internal/es/index.mjs +11 -16
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +17 -29
- 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 +82 -84
- package/build/internal/es/schemas.mjs +147 -153
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4250,14 +4250,13 @@ 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
|
-
*
|
|
4257
|
-
*
|
|
4258
|
-
*
|
|
4253
|
+
* The time range is set using the `rangeStart` and `months` properties.
|
|
4254
|
+
* The time range always starts on the 1st day of the month set in `rangeStart` and
|
|
4255
|
+
* includes the number of `months` following `rangeStart`.
|
|
4256
|
+
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4257
|
+
* 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.
|
|
4258
|
+
* > 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.
|
|
4259
4259
|
* @public
|
|
4260
|
-
* @param options - Options specifying time frame, sort, and filter.
|
|
4261
4260
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4262
4261
|
* @applicableIdentity APP
|
|
4263
4262
|
* @returns Get Blog Post Count Stats response
|
|
@@ -4298,7 +4297,6 @@ interface QueryPostCountStatsOptions {
|
|
|
4298
4297
|
/**
|
|
4299
4298
|
* Retrieves the total amount of published posts of the blog.
|
|
4300
4299
|
* @public
|
|
4301
|
-
* @param options - Language Options.
|
|
4302
4300
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4303
4301
|
* @applicableIdentity APP
|
|
4304
4302
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -4319,12 +4317,12 @@ interface GetTotalPostsOptions {
|
|
|
4319
4317
|
* @param postId - Post ID.
|
|
4320
4318
|
* @public
|
|
4321
4319
|
* @requiredField postId
|
|
4322
|
-
* @param options - Options specifying which fields to return.
|
|
4323
4320
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4324
4321
|
* @applicableIdentity APP
|
|
4322
|
+
* @returns Retrieved post info.
|
|
4325
4323
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
4326
4324
|
*/
|
|
4327
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4325
|
+
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>>;
|
|
4328
4326
|
interface GetPostOptions {
|
|
4329
4327
|
/**
|
|
4330
4328
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4344,7 +4342,6 @@ interface GetPostOptions {
|
|
|
4344
4342
|
* @param slug - Slug of the post to retrieve.
|
|
4345
4343
|
* @public
|
|
4346
4344
|
* @requiredField slug
|
|
4347
|
-
* @param options - Options specifying which fields to return.
|
|
4348
4345
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4349
4346
|
* @applicableIdentity APP
|
|
4350
4347
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4372,7 +4369,6 @@ interface GetPostBySlugOptions {
|
|
|
4372
4369
|
* - `paging.limit` is `50`.
|
|
4373
4370
|
* - `paging.offset` is `0`.
|
|
4374
4371
|
* @public
|
|
4375
|
-
* @param options - Sort, filter, and paging options.
|
|
4376
4372
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4377
4373
|
* @applicableIdentity APP
|
|
4378
4374
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4443,26 +4439,18 @@ interface ListPostsOptions {
|
|
|
4443
4439
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4444
4440
|
}
|
|
4445
4441
|
/**
|
|
4446
|
-
*
|
|
4447
|
-
*
|
|
4448
|
-
*
|
|
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.
|
|
4442
|
+
* Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
|
|
4452
4443
|
*
|
|
4453
|
-
*
|
|
4454
|
-
*
|
|
4455
|
-
* `
|
|
4456
|
-
*
|
|
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.
|
|
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`.
|
|
4462
4448
|
*
|
|
4463
|
-
*
|
|
4449
|
+
* To learn about working with _Query_ endpoints, see
|
|
4450
|
+
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
|
|
4451
|
+
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
|
|
4452
|
+
* [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
4464
4453
|
* @public
|
|
4465
|
-
* @param options - Options specifying which fields to return.
|
|
4466
4454
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4467
4455
|
* @applicableIdentity APP
|
|
4468
4456
|
* @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"]
|
|
1653
|
+
)?.post;
|
|
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"]
|
|
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"]
|
|
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"]
|
|
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"]
|
|
1878
1878
|
);
|
|
1879
1879
|
} catch (err) {
|
|
1880
1880
|
const transformedError = (0, import_transform_error.transformError)(
|