@webiny/api-website-builder 6.2.0-beta.0 → 6.3.0-beta.0
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/features/installer/feature.d.ts +4 -1
- package/features/nextjs/feature.d.ts +4 -1
- package/features/pages/CreatePage/feature.d.ts +4 -1
- package/features/pages/CreatePageRevisionFrom/feature.d.ts +4 -1
- package/features/pages/DeletePage/feature.d.ts +4 -1
- package/features/pages/DuplicatePage/feature.d.ts +4 -1
- package/features/pages/GetDeletedPageById/feature.d.ts +4 -1
- package/features/pages/GetPageById/feature.d.ts +4 -1
- package/features/pages/GetPageByPath/feature.d.ts +4 -1
- package/features/pages/GetPageLanguagePaths/feature.d.ts +4 -1
- package/features/pages/GetPageRevisions/feature.d.ts +4 -1
- package/features/pages/ListDeletedPages/feature.d.ts +4 -1
- package/features/pages/ListPages/feature.d.ts +4 -1
- package/features/pages/MovePage/feature.d.ts +4 -1
- package/features/pages/PublishPage/feature.d.ts +4 -1
- package/features/pages/RestorePage/feature.d.ts +4 -1
- package/features/pages/TranslatePage/feature.d.ts +4 -1
- package/features/pages/TrashPage/feature.d.ts +4 -1
- package/features/pages/UnpublishPage/feature.d.ts +4 -1
- package/features/pages/UpdatePage/feature.d.ts +4 -1
- package/features/permissions/feature.d.ts +4 -1
- package/features/redirects/CreateRedirect/feature.d.ts +4 -1
- package/features/redirects/DeleteRedirect/feature.d.ts +4 -1
- package/features/redirects/GetActiveRedirects/feature.d.ts +4 -1
- package/features/redirects/GetRedirectById/feature.d.ts +4 -1
- package/features/redirects/InvalidateRedirectsCache/feature.d.ts +4 -1
- package/features/redirects/ListRedirects/feature.d.ts +4 -1
- package/features/redirects/MoveRedirect/feature.d.ts +4 -1
- package/features/redirects/UpdateRedirect/feature.d.ts +4 -1
- package/features/tenantManager/feature.d.ts +4 -1
- package/package.json +19 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-website-builder",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -19,30 +19,29 @@
|
|
|
19
19
|
"directory": "dist"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@webiny/api": "6.
|
|
23
|
-
"@webiny/api-core": "6.
|
|
24
|
-
"@webiny/api-headless-cms": "6.
|
|
25
|
-
"@webiny/feature": "6.
|
|
26
|
-
"@webiny/handler": "6.
|
|
27
|
-
"@webiny/handler-graphql": "6.
|
|
28
|
-
"@webiny/languages": "6.
|
|
29
|
-
"@webiny/tenant-manager": "6.
|
|
22
|
+
"@webiny/api": "6.3.0-beta.0",
|
|
23
|
+
"@webiny/api-core": "6.3.0-beta.0",
|
|
24
|
+
"@webiny/api-headless-cms": "6.3.0-beta.0",
|
|
25
|
+
"@webiny/feature": "6.3.0-beta.0",
|
|
26
|
+
"@webiny/handler": "6.3.0-beta.0",
|
|
27
|
+
"@webiny/handler-graphql": "6.3.0-beta.0",
|
|
28
|
+
"@webiny/languages": "6.3.0-beta.0",
|
|
29
|
+
"@webiny/tenant-manager": "6.3.0-beta.0",
|
|
30
30
|
"lodash": "4.18.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@webiny/api-core-ddb": "6.
|
|
34
|
-
"@webiny/api-file-manager-s3": "6.
|
|
35
|
-
"@webiny/build-tools": "6.
|
|
36
|
-
"@webiny/handler-aws": "6.
|
|
37
|
-
"@webiny/plugins": "6.
|
|
38
|
-
"@webiny/project-utils": "6.
|
|
39
|
-
"@webiny/tasks": "6.
|
|
40
|
-
"@webiny/wcp": "6.
|
|
33
|
+
"@webiny/api-core-ddb": "6.3.0-beta.0",
|
|
34
|
+
"@webiny/api-file-manager-s3": "6.3.0-beta.0",
|
|
35
|
+
"@webiny/build-tools": "6.3.0-beta.0",
|
|
36
|
+
"@webiny/handler-aws": "6.3.0-beta.0",
|
|
37
|
+
"@webiny/plugins": "6.3.0-beta.0",
|
|
38
|
+
"@webiny/project-utils": "6.3.0-beta.0",
|
|
39
|
+
"@webiny/tasks": "6.3.0-beta.0",
|
|
40
|
+
"@webiny/wcp": "6.3.0-beta.0",
|
|
41
41
|
"graphql": "16.13.2",
|
|
42
|
-
"prettier": "3.6.2",
|
|
43
42
|
"rimraf": "6.1.3",
|
|
44
|
-
"typescript": "
|
|
43
|
+
"typescript": "6.0.3",
|
|
45
44
|
"vitest": "4.1.4"
|
|
46
45
|
},
|
|
47
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
|
|
48
47
|
}
|