@wix/auto_sdk_blog_draft-posts 1.0.52 → 1.0.53
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 +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ interface CreateDraftPostSignature {
|
|
|
13
13
|
* `categoryIds` that do not exist will not return an error, but they will not be added to the `categoryIds` array.
|
|
14
14
|
* If some of the categories exist, those will be added while those that do not exist will not be added to `categoryIds`.
|
|
15
15
|
* You can check which categories are available with
|
|
16
|
-
* List Categories
|
|
16
|
+
* [List Categories](https://dev.wix.com/docs/rest/business-solutions/blog/category/list-categories).
|
|
17
17
|
* @param - Draft post to create.
|
|
18
18
|
* @param - Options for creating a draft post.
|
|
19
19
|
*/
|
|
@@ -72,7 +72,7 @@ declare function deleteDraftPost$1(httpClient: HttpClient): DeleteDraftPostSigna
|
|
|
72
72
|
interface DeleteDraftPostSignature {
|
|
73
73
|
/**
|
|
74
74
|
* Moves a draft post to the trash bin.
|
|
75
|
-
* A published post can also be deleted by the `post.id`. See the Posts API
|
|
75
|
+
* A published post can also be deleted by the `post.id`. See the [Posts API](https://dev.wix.com/docs/rest/business-solutions/blog/posts-stats/post-object) for more information about posts.
|
|
76
76
|
*
|
|
77
77
|
* To permanently delete a post bypassing the trash bin, set the `permanent` field value to `true`. The post can't be restored after this.
|
|
78
78
|
* @param - Draft post ID.
|
|
@@ -152,7 +152,7 @@ interface QueryDraftPostsSignature {
|
|
|
152
152
|
declare function publishDraftPost$1(httpClient: HttpClient): PublishDraftPostSignature;
|
|
153
153
|
interface PublishDraftPostSignature {
|
|
154
154
|
/**
|
|
155
|
-
* Publishes a draft post by ID. This creates a new post
|
|
155
|
+
* Publishes a draft post by ID. This creates a new [post](https://dev.wix.com/docs/rest/business-solutions/blog/posts-stats/post-object)
|
|
156
156
|
* with the data from the draft post.
|
|
157
157
|
*
|
|
158
158
|
* If the draft post was already published, the published post will be updated with the latest values
|