@wix/auto_sdk_blog_draft-posts 1.0.70 → 1.0.72
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.js +7 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -3
- package/build/cjs/index.typings.js +7 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +4 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +7 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -3
- package/build/es/index.typings.mjs +7 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +4 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +7 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -3
- package/build/internal/cjs/index.typings.js +7 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +4 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +7 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -3
- package/build/internal/es/index.typings.mjs +7 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +4 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4057,9 +4057,11 @@ type DraftPostQuery = {
|
|
|
4057
4057
|
}[];
|
|
4058
4058
|
};
|
|
4059
4059
|
declare const utils: {
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4060
|
+
query: {
|
|
4061
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
|
|
4062
|
+
Filter: _wix_sdk_types.FilterFactory<DraftPost, DraftPostQuerySpec>;
|
|
4063
|
+
Sort: _wix_sdk_types.SortFactory<DraftPostQuerySpec>;
|
|
4064
|
+
};
|
|
4063
4065
|
};
|
|
4064
4066
|
/**
|
|
4065
4067
|
* Publishes a draft post by ID. This creates a new [post](https://dev.wix.com/docs/rest/business-solutions/blog/posts-stats/post-object)
|
|
@@ -212,6 +212,10 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(o
|
|
|
212
212
|
{
|
|
213
213
|
srcPath: "/_api/communities-blog-node-api/v3/stats",
|
|
214
214
|
destPath: "/v3/stats"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
srcPath: "/_api/draft-post-service-api-proxy/moderation",
|
|
218
|
+
destPath: "/moderation"
|
|
215
219
|
}
|
|
216
220
|
],
|
|
217
221
|
"social-blog._base_domain_": [
|
|
@@ -3119,7 +3123,9 @@ async function typedQueryDraftPosts(query, options) {
|
|
|
3119
3123
|
}
|
|
3120
3124
|
}
|
|
3121
3125
|
var utils = {
|
|
3122
|
-
|
|
3126
|
+
query: {
|
|
3127
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
3128
|
+
}
|
|
3123
3129
|
};
|
|
3124
3130
|
async function publishDraftPost2(draftPostId) {
|
|
3125
3131
|
const { httpClient, sideEffects } = arguments[1];
|