@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
|
@@ -8,11 +8,23 @@ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths
|
|
|
8
8
|
import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
|
|
9
9
|
function resolveComWixpressNpmCommunitiesPlatformizedBlogV3PostServiceUrl(opts) {
|
|
10
10
|
const domainToMappings = {
|
|
11
|
+
"apps._base_domain_": [
|
|
12
|
+
{
|
|
13
|
+
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
14
|
+
destPath: "/v3/posts"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
11
17
|
"www._base_domain_": [
|
|
12
18
|
{
|
|
13
19
|
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
14
20
|
destPath: "/v3/posts"
|
|
15
21
|
}
|
|
22
|
+
],
|
|
23
|
+
"www.wixapis.com": [
|
|
24
|
+
{
|
|
25
|
+
srcPath: "/_api/v3/posts",
|
|
26
|
+
destPath: "/v3/posts"
|
|
27
|
+
}
|
|
16
28
|
]
|
|
17
29
|
};
|
|
18
30
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -40,10 +52,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
40
52
|
srcPath: "/_api/communities-blog-node-api",
|
|
41
53
|
destPath: ""
|
|
42
54
|
},
|
|
43
|
-
{
|
|
44
|
-
srcPath: "/_api/communities-blog-node-api/v3/posts",
|
|
45
|
-
destPath: "/v3/posts"
|
|
46
|
-
},
|
|
47
55
|
{
|
|
48
56
|
srcPath: "/_api/communities-blog-node-api/v2/stats",
|
|
49
57
|
destPath: "/v2/stats"
|
|
@@ -187,10 +195,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
|
|
|
187
195
|
{
|
|
188
196
|
srcPath: "/blog/v2/stats",
|
|
189
197
|
destPath: "/v2/stats"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
srcPath: "/_api/v3/posts",
|
|
193
|
-
destPath: "/v3/posts"
|
|
194
198
|
}
|
|
195
199
|
]
|
|
196
200
|
};
|