@wix/auto_sdk_blog_posts 1.0.146 → 1.0.147
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
|
@@ -4257,14 +4257,13 @@ 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
|
-
*
|
|
4264
|
-
*
|
|
4265
|
-
*
|
|
4260
|
+
* The time range is set using the `rangeStart` and `months` properties.
|
|
4261
|
+
* The time range always starts on the 1st day of the month set in `rangeStart` and
|
|
4262
|
+
* includes the number of `months` following `rangeStart`.
|
|
4263
|
+
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4264
|
+
* 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.
|
|
4265
|
+
* > 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.
|
|
4266
4266
|
* @public
|
|
4267
|
-
* @param options - Options specifying time frame, sort, and filter.
|
|
4268
4267
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4269
4268
|
* @applicableIdentity APP
|
|
4270
4269
|
* @returns Get Blog Post Count Stats response
|
|
@@ -4305,7 +4304,6 @@ interface QueryPostCountStatsOptions {
|
|
|
4305
4304
|
/**
|
|
4306
4305
|
* Retrieves the total amount of published posts of the blog.
|
|
4307
4306
|
* @public
|
|
4308
|
-
* @param options - Language Options.
|
|
4309
4307
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4310
4308
|
* @applicableIdentity APP
|
|
4311
4309
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -4326,12 +4324,12 @@ interface GetTotalPostsOptions {
|
|
|
4326
4324
|
* @param postId - Post ID.
|
|
4327
4325
|
* @public
|
|
4328
4326
|
* @requiredField postId
|
|
4329
|
-
* @param options - Options specifying which fields to return.
|
|
4330
4327
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4331
4328
|
* @applicableIdentity APP
|
|
4329
|
+
* @returns Retrieved post info.
|
|
4332
4330
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
4333
4331
|
*/
|
|
4334
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4332
|
+
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>>;
|
|
4335
4333
|
interface GetPostOptions {
|
|
4336
4334
|
/**
|
|
4337
4335
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4351,7 +4349,6 @@ interface GetPostOptions {
|
|
|
4351
4349
|
* @param slug - Slug of the post to retrieve.
|
|
4352
4350
|
* @public
|
|
4353
4351
|
* @requiredField slug
|
|
4354
|
-
* @param options - Options specifying which fields to return.
|
|
4355
4352
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4356
4353
|
* @applicableIdentity APP
|
|
4357
4354
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4379,7 +4376,6 @@ interface GetPostBySlugOptions {
|
|
|
4379
4376
|
* - `paging.limit` is `50`.
|
|
4380
4377
|
* - `paging.offset` is `0`.
|
|
4381
4378
|
* @public
|
|
4382
|
-
* @param options - Sort, filter, and paging options.
|
|
4383
4379
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4384
4380
|
* @applicableIdentity APP
|
|
4385
4381
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4450,26 +4446,18 @@ interface ListPostsOptions {
|
|
|
4450
4446
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4451
4447
|
}
|
|
4452
4448
|
/**
|
|
4453
|
-
*
|
|
4454
|
-
*
|
|
4455
|
-
*
|
|
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.
|
|
4449
|
+
* Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
|
|
4459
4450
|
*
|
|
4460
|
-
*
|
|
4461
|
-
*
|
|
4462
|
-
* `
|
|
4463
|
-
*
|
|
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.
|
|
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`.
|
|
4469
4455
|
*
|
|
4470
|
-
*
|
|
4456
|
+
* To learn about working with _Query_ endpoints, see
|
|
4457
|
+
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
|
|
4458
|
+
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
|
|
4459
|
+
* [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
4471
4460
|
* @public
|
|
4472
|
-
* @param options - Options specifying which fields to return.
|
|
4473
4461
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4474
4462
|
* @applicableIdentity APP
|
|
4475
4463
|
* @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"]
|
|
1557
|
+
)?.post;
|
|
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"]
|
|
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"]
|
|
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"]
|
|
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"]
|
|
1782
1782
|
);
|
|
1783
1783
|
} catch (err) {
|
|
1784
1784
|
const transformedError = sdkTransformError(
|