webiny 6.4.0-beta.3 → 6.4.0-beta.5
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/admin/ui/file-manager.d.ts +5 -0
- package/admin/ui/file-manager.js +3 -0
- package/admin/ui.d.ts +1 -0
- package/admin/ui.js +1 -0
- package/api/webhooks.d.ts +1 -0
- package/api/webhooks.js +1 -0
- package/global.d.ts +1 -1
- package/package.json +46 -44
- package/admin/file-manager.d.ts +0 -1
- package/admin/file-manager.js +0 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-admin/features/fileUrlFormatter/abstractions.js";
|
|
2
|
+
export { FileManager } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
3
|
+
export type { FileManagerFileItem } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
4
|
+
export { FileManagerViewConfig as FileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
|
5
|
+
export { useFileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-admin/features/fileUrlFormatter/abstractions.js";
|
|
2
|
+
export { FileManager } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
3
|
+
export { FileManagerViewConfig as FileManagerConfig, useFileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
package/admin/ui.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { Drawer } from "@webiny/admin-ui/Drawer/index.js";
|
|
|
17
17
|
export { DropdownMenu } from "@webiny/admin-ui/DropdownMenu/index.js";
|
|
18
18
|
export { DynamicFieldset } from "@webiny/admin-ui/DynamicFieldset/index.js";
|
|
19
19
|
export { FilePicker } from "@webiny/admin-ui/FilePicker/index.js";
|
|
20
|
+
export { FillViewportHeight, FillViewportWidth, FillViewport } from "@webiny/admin-ui/FillViewport/index.js";
|
|
20
21
|
export { Grid } from "@webiny/admin-ui/Grid/index.js";
|
|
21
22
|
export { HeaderBar } from "@webiny/admin-ui/HeaderBar/index.js";
|
|
22
23
|
export { Heading } from "@webiny/admin-ui/Heading/index.js";
|
package/admin/ui.js
CHANGED
|
@@ -17,6 +17,7 @@ export { Drawer } from "@webiny/admin-ui/Drawer/index.js";
|
|
|
17
17
|
export { DropdownMenu } from "@webiny/admin-ui/DropdownMenu/index.js";
|
|
18
18
|
export { DynamicFieldset } from "@webiny/admin-ui/DynamicFieldset/index.js";
|
|
19
19
|
export { FilePicker } from "@webiny/admin-ui/FilePicker/index.js";
|
|
20
|
+
export { FillViewport, FillViewportHeight, FillViewportWidth } from "@webiny/admin-ui/FillViewport/index.js";
|
|
20
21
|
export { Grid } from "@webiny/admin-ui/Grid/index.js";
|
|
21
22
|
export { HeaderBar } from "@webiny/admin-ui/HeaderBar/index.js";
|
|
22
23
|
export { Heading } from "@webiny/admin-ui/Heading/index.js";
|
package/api/webhooks.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { WebhookSignPayload, WebhookVerifyPayload, WebhookDispatcher, WebhookFactory, WebhookProvider } from "@webiny/api-core/features/webhooks/index.js";
|
|
1
2
|
export type { Webhook, WebhookCmsEntry, WebhookCmsEntryValues } from "@webiny/webhooks/api/domain/Webhook.js";
|
|
2
3
|
export type { WebhookDelivery, WebhookDeliveryCmsEntry, WebhookDeliveryCmsEntryValues, WebhookDeliveryStatus } from "@webiny/webhooks/api/domain/WebhookDelivery.js";
|
|
3
4
|
export type { IWebhookPayload } from "@webiny/webhooks/api/features/SendWebhookTask/types.js";
|
package/api/webhooks.js
CHANGED
package/global.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webiny",
|
|
3
|
-
"version": "6.4.0-beta.
|
|
3
|
+
"version": "6.4.0-beta.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,53 +9,52 @@
|
|
|
9
9
|
"description": "This package contains Webiny extensions.",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@webiny/admin-ui": "6.4.0-beta.
|
|
13
|
-
"@webiny/api-aco": "6.4.0-beta.
|
|
14
|
-
"@webiny/api-core": "6.4.0-beta.
|
|
15
|
-
"@webiny/api-file-manager": "6.4.0-beta.
|
|
16
|
-
"@webiny/api-headless-cms": "6.4.0-beta.
|
|
17
|
-
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.
|
|
18
|
-
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.
|
|
19
|
-
"@webiny/api-mailer": "6.4.0-beta.
|
|
20
|
-
"@webiny/api-opensearch": "6.4.0-beta.
|
|
21
|
-
"@webiny/api-scheduler": "6.4.0-beta.
|
|
22
|
-
"@webiny/api-website-builder": "6.4.0-beta.
|
|
23
|
-
"@webiny/api-website-builder-scheduler": "6.4.0-beta.
|
|
24
|
-
"@webiny/api-websockets": "6.4.0-beta.
|
|
25
|
-
"@webiny/app": "6.4.0-beta.
|
|
26
|
-
"@webiny/app-aco": "6.4.0-beta.
|
|
27
|
-
"@webiny/app-admin": "6.4.0-beta.
|
|
28
|
-
"@webiny/app-file-manager": "6.4.0-beta.
|
|
29
|
-
"@webiny/app-headless-cms": "6.4.0-beta.
|
|
30
|
-
"@webiny/app-headless-cms-common": "6.4.0-beta.
|
|
31
|
-
"@webiny/app-website-builder": "6.4.0-beta.
|
|
32
|
-
"@webiny/
|
|
33
|
-
"@webiny/
|
|
34
|
-
"@webiny/
|
|
35
|
-
"@webiny/
|
|
36
|
-
"@webiny/
|
|
37
|
-
"@webiny/handler
|
|
38
|
-
"@webiny/
|
|
39
|
-
"@webiny/
|
|
40
|
-
"@webiny/
|
|
41
|
-
"@webiny/project
|
|
42
|
-
"@webiny/project-aws
|
|
43
|
-
"@webiny/
|
|
44
|
-
"@webiny/tenant-manager": "6.4.0-beta.
|
|
45
|
-
"@webiny/utils": "6.4.0-beta.
|
|
46
|
-
"@webiny/validation": "6.4.0-beta.
|
|
47
|
-
"@webiny/webhooks": "6.4.0-beta.
|
|
48
|
-
"@webiny/website-builder-sdk": "6.4.0-beta.
|
|
12
|
+
"@webiny/admin-ui": "6.4.0-beta.5",
|
|
13
|
+
"@webiny/api-aco": "6.4.0-beta.5",
|
|
14
|
+
"@webiny/api-core": "6.4.0-beta.5",
|
|
15
|
+
"@webiny/api-file-manager": "6.4.0-beta.5",
|
|
16
|
+
"@webiny/api-headless-cms": "6.4.0-beta.5",
|
|
17
|
+
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.5",
|
|
18
|
+
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.5",
|
|
19
|
+
"@webiny/api-mailer": "6.4.0-beta.5",
|
|
20
|
+
"@webiny/api-opensearch": "6.4.0-beta.5",
|
|
21
|
+
"@webiny/api-scheduler": "6.4.0-beta.5",
|
|
22
|
+
"@webiny/api-website-builder": "6.4.0-beta.5",
|
|
23
|
+
"@webiny/api-website-builder-scheduler": "6.4.0-beta.5",
|
|
24
|
+
"@webiny/api-websockets": "6.4.0-beta.5",
|
|
25
|
+
"@webiny/app": "6.4.0-beta.5",
|
|
26
|
+
"@webiny/app-aco": "6.4.0-beta.5",
|
|
27
|
+
"@webiny/app-admin": "6.4.0-beta.5",
|
|
28
|
+
"@webiny/app-file-manager": "6.4.0-beta.5",
|
|
29
|
+
"@webiny/app-headless-cms": "6.4.0-beta.5",
|
|
30
|
+
"@webiny/app-headless-cms-common": "6.4.0-beta.5",
|
|
31
|
+
"@webiny/app-website-builder": "6.4.0-beta.5",
|
|
32
|
+
"@webiny/background-tasks": "6.4.0-beta.5",
|
|
33
|
+
"@webiny/cli-core": "6.4.0-beta.5",
|
|
34
|
+
"@webiny/db-dynamodb": "6.4.0-beta.5",
|
|
35
|
+
"@webiny/feature": "6.4.0-beta.5",
|
|
36
|
+
"@webiny/form": "6.4.0-beta.5",
|
|
37
|
+
"@webiny/handler": "6.4.0-beta.5",
|
|
38
|
+
"@webiny/handler-graphql": "6.4.0-beta.5",
|
|
39
|
+
"@webiny/languages": "6.4.0-beta.5",
|
|
40
|
+
"@webiny/lexical-editor": "6.4.0-beta.5",
|
|
41
|
+
"@webiny/project": "6.4.0-beta.5",
|
|
42
|
+
"@webiny/project-aws": "6.4.0-beta.5",
|
|
43
|
+
"@webiny/project-aws-template": "6.4.0-beta.5",
|
|
44
|
+
"@webiny/tenant-manager": "6.4.0-beta.5",
|
|
45
|
+
"@webiny/utils": "6.4.0-beta.5",
|
|
46
|
+
"@webiny/validation": "6.4.0-beta.5",
|
|
47
|
+
"@webiny/webhooks": "6.4.0-beta.5",
|
|
48
|
+
"@webiny/website-builder-sdk": "6.4.0-beta.5",
|
|
49
49
|
"react": "18.3.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@webiny/build-tools": "6.4.0-beta.
|
|
52
|
+
"@webiny/build-tools": "6.4.0-beta.5",
|
|
53
53
|
"rimraf": "6.1.3",
|
|
54
54
|
"typescript": "6.0.3"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
|
-
"access": "public"
|
|
58
|
-
"directory": "dist"
|
|
57
|
+
"access": "public"
|
|
59
58
|
},
|
|
60
59
|
"adio": {
|
|
61
60
|
"ignore": {
|
|
@@ -64,7 +63,7 @@
|
|
|
64
63
|
]
|
|
65
64
|
}
|
|
66
65
|
},
|
|
67
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "8476da73b653c89cc1474d968baf55c1b0ae0e5f",
|
|
68
67
|
"exports": {
|
|
69
68
|
"./configs/tsconfig.json": "./configs/tsconfig.json",
|
|
70
69
|
"./global.d.ts": "./global.d.ts",
|
|
@@ -116,6 +115,7 @@
|
|
|
116
115
|
"./admin/configs": "./admin/configs.js",
|
|
117
116
|
"./admin/form": "./admin/form.js",
|
|
118
117
|
"./admin/tenancy": "./admin/tenancy.js",
|
|
118
|
+
"./admin/ui/file-manager": "./admin/ui/file-manager.js",
|
|
119
119
|
"./admin/ui/lexical": "./admin/ui/lexical.js",
|
|
120
120
|
"./admin/cms/entry/editor": "./admin/cms/entry/editor.js",
|
|
121
121
|
"./admin/cms/entry/list": "./admin/cms/entry/list.js",
|
|
@@ -129,7 +129,6 @@
|
|
|
129
129
|
"./admin/website-builder/page/editor": "./admin/website-builder/page/editor.js",
|
|
130
130
|
"./admin/website-builder/page/list": "./admin/website-builder/page/list.js",
|
|
131
131
|
"./admin/website-builder/redirect/list": "./admin/website-builder/redirect/list.js",
|
|
132
|
-
"./admin/file-manager": "./admin/file-manager.js",
|
|
133
132
|
"./admin/website-builder": "./admin/website-builder.js",
|
|
134
133
|
"./cli/command": "./cli/command.js",
|
|
135
134
|
"./cli": "./cli.js",
|
|
@@ -143,5 +142,8 @@
|
|
|
143
142
|
"./extensions": "./extensions.js",
|
|
144
143
|
"./api/tenant-manager": "./api/tenant-manager.js"
|
|
145
144
|
},
|
|
146
|
-
"exportGenerationHash": "
|
|
145
|
+
"exportGenerationHash": "a9e9428800c668172653eb3821a9ac0a0abab1a1f0ee06c19356f7c9b80b6818",
|
|
146
|
+
"webiny": {
|
|
147
|
+
"publishFrom": "dist"
|
|
148
|
+
}
|
|
147
149
|
}
|
package/admin/file-manager.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FileUrlFormatter } from "@webiny/app-file-manager/features/fileUrlFormatter/abstractions.js";
|
package/admin/file-manager.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FileUrlFormatter } from "@webiny/app-file-manager/features/fileUrlFormatter/abstractions.js";
|