@wix/auto_sdk_blog_posts 1.0.69 → 1.0.71
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 +12 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +12 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +12 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +12 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +12 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +12 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +12 -8
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +12 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +12 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +12 -8
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +12 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +12 -8
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -16,11 +16,23 @@ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths
|
|
|
16
16
|
import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
|
|
17
17
|
function resolveComWixpressNpmCommunitiesPlatformizedBlogV3PostServiceUrl(opts) {
|
|
18
18
|
const domainToMappings = {
|
|
19
|
+
"apps._base_domain_": [
|
|
20
|
+
{
|
|
21
|
+
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
22
|
+
destPath: "/v3/posts"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
19
25
|
"www._base_domain_": [
|
|
20
26
|
{
|
|
21
27
|
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
22
28
|
destPath: "/v3/posts"
|
|
23
29
|
}
|
|
30
|
+
],
|
|
31
|
+
"www.wixapis.com": [
|
|
32
|
+
{
|
|
33
|
+
srcPath: "/_api/v3/posts",
|
|
34
|
+
destPath: "/v3/posts"
|
|
35
|
+
}
|
|
24
36
|
]
|
|
25
37
|
};
|
|
26
38
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -48,10 +60,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
48
60
|
srcPath: "/_api/communities-blog-node-api",
|
|
49
61
|
destPath: ""
|
|
50
62
|
},
|
|
51
|
-
{
|
|
52
|
-
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
53
|
-
destPath: "/v3/posts"
|
|
54
|
-
},
|
|
55
63
|
{
|
|
56
64
|
srcPath: "/_api/communities-blog-node-api/v2/stats",
|
|
57
65
|
destPath: "/v2/stats"
|
|
@@ -195,10 +203,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
195
203
|
{
|
|
196
204
|
srcPath: "/blog/v2/stats",
|
|
197
205
|
destPath: "/v2/stats"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
srcPath: "/_api/v3/posts",
|
|
201
|
-
destPath: "/v3/posts"
|
|
202
206
|
}
|
|
203
207
|
]
|
|
204
208
|
};
|