@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
|
@@ -28,11 +28,23 @@ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths
|
|
|
28
28
|
import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
|
|
29
29
|
function resolveComWixpressNpmCommunitiesPlatformizedBlogV3PostServiceUrl(opts) {
|
|
30
30
|
const domainToMappings = {
|
|
31
|
+
"apps._base_domain_": [
|
|
32
|
+
{
|
|
33
|
+
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
34
|
+
destPath: "/v3/posts"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
31
37
|
"www._base_domain_": [
|
|
32
38
|
{
|
|
33
39
|
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
34
40
|
destPath: "/v3/posts"
|
|
35
41
|
}
|
|
42
|
+
],
|
|
43
|
+
"www.wixapis.com": [
|
|
44
|
+
{
|
|
45
|
+
srcPath: "/_api/v3/posts",
|
|
46
|
+
destPath: "/v3/posts"
|
|
47
|
+
}
|
|
36
48
|
]
|
|
37
49
|
};
|
|
38
50
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -60,10 +72,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
60
72
|
srcPath: "/_api/communities-blog-node-api",
|
|
61
73
|
destPath: ""
|
|
62
74
|
},
|
|
63
|
-
{
|
|
64
|
-
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
65
|
-
destPath: "/v3/posts"
|
|
66
|
-
},
|
|
67
75
|
{
|
|
68
76
|
srcPath: "/_api/communities-blog-node-api/v2/stats",
|
|
69
77
|
destPath: "/v2/stats"
|
|
@@ -207,10 +215,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
207
215
|
{
|
|
208
216
|
srcPath: "/blog/v2/stats",
|
|
209
217
|
destPath: "/v2/stats"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
srcPath: "/_api/v3/posts",
|
|
213
|
-
destPath: "/v3/posts"
|
|
214
218
|
}
|
|
215
219
|
]
|
|
216
220
|
};
|