@wix/auto_sdk_blog_posts 1.0.153 → 1.0.154
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
|
@@ -4285,14 +4285,13 @@ declare function onPostUpdated(handler: (event: PostUpdatedEnvelope) => void | P
|
|
|
4285
4285
|
/**
|
|
4286
4286
|
* Retrieves the number of published posts per month within a specified time range.
|
|
4287
4287
|
*
|
|
4288
|
-
*
|
|
4289
|
-
* The
|
|
4290
|
-
*
|
|
4291
|
-
*
|
|
4292
|
-
*
|
|
4293
|
-
*
|
|
4288
|
+
* The time range is set using the `rangeStart` and `months` properties.
|
|
4289
|
+
* The time range always starts on the 1st day of the month set in `rangeStart` and
|
|
4290
|
+
* includes the number of `months` following `rangeStart`.
|
|
4291
|
+
* For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`,
|
|
4292
|
+
* 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.
|
|
4293
|
+
* > 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.
|
|
4294
4294
|
* @public
|
|
4295
|
-
* @param options - Options specifying time frame, sort, and filter.
|
|
4296
4295
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4297
4296
|
* @applicableIdentity APP
|
|
4298
4297
|
* @returns Get Blog Post Count Stats response
|
|
@@ -4333,7 +4332,6 @@ interface QueryPostCountStatsOptions {
|
|
|
4333
4332
|
/**
|
|
4334
4333
|
* Retrieves the total amount of published posts of the blog.
|
|
4335
4334
|
* @public
|
|
4336
|
-
* @param options - Language Options.
|
|
4337
4335
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4338
4336
|
* @applicableIdentity APP
|
|
4339
4337
|
* @fqn com.wixpress.npm.communities.platformized.blog.BlogStatsService.GetTotalPosts
|
|
@@ -4354,12 +4352,12 @@ interface GetTotalPostsOptions {
|
|
|
4354
4352
|
* @param postId - Post ID.
|
|
4355
4353
|
* @public
|
|
4356
4354
|
* @requiredField postId
|
|
4357
|
-
* @param options - Options specifying which fields to return.
|
|
4358
4355
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4359
4356
|
* @applicableIdentity APP
|
|
4357
|
+
* @returns Retrieved post info.
|
|
4360
4358
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPost
|
|
4361
4359
|
*/
|
|
4362
|
-
declare function getPost(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<
|
|
4360
|
+
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>>;
|
|
4363
4361
|
interface GetPostOptions {
|
|
4364
4362
|
/**
|
|
4365
4363
|
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
@@ -4379,7 +4377,6 @@ interface GetPostOptions {
|
|
|
4379
4377
|
* @param slug - Slug of the post to retrieve.
|
|
4380
4378
|
* @public
|
|
4381
4379
|
* @requiredField slug
|
|
4382
|
-
* @param options - Options specifying which fields to return.
|
|
4383
4380
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4384
4381
|
* @applicableIdentity APP
|
|
4385
4382
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.GetPostBySlug
|
|
@@ -4407,7 +4404,6 @@ interface GetPostBySlugOptions {
|
|
|
4407
4404
|
* - `paging.limit` is `50`.
|
|
4408
4405
|
* - `paging.offset` is `0`.
|
|
4409
4406
|
* @public
|
|
4410
|
-
* @param options - Sort, filter, and paging options.
|
|
4411
4407
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4412
4408
|
* @applicableIdentity APP
|
|
4413
4409
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.ListPosts
|
|
@@ -4478,26 +4474,18 @@ interface ListPostsOptions {
|
|
|
4478
4474
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4479
4475
|
}
|
|
4480
4476
|
/**
|
|
4481
|
-
*
|
|
4482
|
-
*
|
|
4483
|
-
*
|
|
4484
|
-
* The `queryPosts()` function builds a query to retrieve a list of up to 100 posts, and returns a `PostsQueryBuilder` object.
|
|
4485
|
-
*
|
|
4486
|
-
* The returned object contains the query definition which is typically used to run the query using the `find()` function.
|
|
4477
|
+
* Retrieves a list of up to 100 posts, given the provided paging, filtering, and sorting.
|
|
4487
4478
|
*
|
|
4488
|
-
*
|
|
4489
|
-
*
|
|
4490
|
-
* `
|
|
4491
|
-
*
|
|
4492
|
-
* + `descending('firstPublishedDate')`
|
|
4493
|
-
*
|
|
4494
|
-
* Note that the default limit is `'50'`, but the max limit is `'100'`.
|
|
4495
|
-
*
|
|
4496
|
-
* To learn how to query posts, refer to the table below.
|
|
4479
|
+
* Query Posts runs with these defaults, which you can override:
|
|
4480
|
+
* - `firstPublishedDate` is sorted in descending order, with pinned posts first.
|
|
4481
|
+
* - `paging.limit` is `50`.
|
|
4482
|
+
* - `paging.offset` is `0`.
|
|
4497
4483
|
*
|
|
4498
|
-
*
|
|
4484
|
+
* To learn about working with _Query_ endpoints, see
|
|
4485
|
+
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
|
|
4486
|
+
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and
|
|
4487
|
+
* [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
4499
4488
|
* @public
|
|
4500
|
-
* @param options - Options specifying which fields to return.
|
|
4501
4489
|
* @permissionId BLOG.READ-PUBLICATION
|
|
4502
4490
|
* @applicableIdentity APP
|
|
4503
4491
|
* @fqn com.wixpress.npm.communities.platformized.blog.v3.PostService.QueryPosts
|
|
@@ -1563,8 +1563,8 @@ async function getPost2(postId, options) {
|
|
|
1563
1563
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1564
1564
|
}
|
|
1565
1565
|
]),
|
|
1566
|
-
["post.richContent"
|
|
1567
|
-
);
|
|
1566
|
+
["post.richContent"]
|
|
1567
|
+
)?.post;
|
|
1568
1568
|
} catch (err) {
|
|
1569
1569
|
const transformedError = sdkTransformError(
|
|
1570
1570
|
err,
|
|
@@ -1611,7 +1611,7 @@ async function getPostBySlug2(slug, options) {
|
|
|
1611
1611
|
paths: [{ path: "post.media.wixMedia.videoV2" }]
|
|
1612
1612
|
}
|
|
1613
1613
|
]),
|
|
1614
|
-
["post.richContent"
|
|
1614
|
+
["post.richContent"]
|
|
1615
1615
|
);
|
|
1616
1616
|
} catch (err) {
|
|
1617
1617
|
const transformedError = sdkTransformError(
|
|
@@ -1670,7 +1670,7 @@ async function listPosts2(options) {
|
|
|
1670
1670
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1671
1671
|
}
|
|
1672
1672
|
]),
|
|
1673
|
-
["posts.richContent"
|
|
1673
|
+
["posts.richContent"]
|
|
1674
1674
|
);
|
|
1675
1675
|
} catch (err) {
|
|
1676
1676
|
const transformedError = sdkTransformError(
|
|
@@ -1740,7 +1740,7 @@ function queryPosts2(options) {
|
|
|
1740
1740
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1741
1741
|
}
|
|
1742
1742
|
]),
|
|
1743
|
-
["posts.richContent"
|
|
1743
|
+
["posts.richContent"]
|
|
1744
1744
|
);
|
|
1745
1745
|
return {
|
|
1746
1746
|
items: transformedData?.posts,
|
|
@@ -1788,7 +1788,7 @@ async function typedQueryPosts(query, options) {
|
|
|
1788
1788
|
paths: [{ path: "posts.media.wixMedia.videoV2" }]
|
|
1789
1789
|
}
|
|
1790
1790
|
]),
|
|
1791
|
-
["posts.richContent"
|
|
1791
|
+
["posts.richContent"]
|
|
1792
1792
|
);
|
|
1793
1793
|
} catch (err) {
|
|
1794
1794
|
const transformedError = sdkTransformError(
|