webiny 6.4.0-beta.0 → 6.4.0-beta.1
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/website-builder.d.ts +1 -0
- package/admin/website-builder.js +1 -0
- package/api/cms/entry.d.ts +6 -0
- package/api/cms/entry.js +6 -0
- package/api/webhooks.d.ts +6 -0
- package/api/webhooks.js +2 -0
- package/package.json +41 -39
|
@@ -5,3 +5,4 @@ export { Routes } from "@webiny/app-website-builder/routes.js";
|
|
|
5
5
|
export { EcommerceIntegration } from "@webiny/app-website-builder/ecommerce/index.js";
|
|
6
6
|
export { pagePathFromTitle } from "@webiny/app-website-builder";
|
|
7
7
|
export { usePermissions } from "@webiny/app-website-builder/presentation/security/usePermissions.js";
|
|
8
|
+
export { PreviewUrlModifier } from "@webiny/app-website-builder/features/previewUrl/abstractions.js";
|
package/admin/website-builder.js
CHANGED
|
@@ -4,3 +4,4 @@ export { Routes } from "@webiny/app-website-builder/routes.js";
|
|
|
4
4
|
export { EcommerceIntegration } from "@webiny/app-website-builder/ecommerce/index.js";
|
|
5
5
|
export { pagePathFromTitle } from "@webiny/app-website-builder";
|
|
6
6
|
export { usePermissions } from "@webiny/app-website-builder/presentation/security/usePermissions.js";
|
|
7
|
+
export { PreviewUrlModifier } from "@webiny/app-website-builder/features/previewUrl/abstractions.js";
|
package/api/cms/entry.d.ts
CHANGED
|
@@ -39,5 +39,11 @@ export { GetSingletonEntryUseCase } from "@webiny/api-headless-cms/features/cont
|
|
|
39
39
|
export { ListEntriesUseCase, ListLatestEntriesUseCase, ListPublishedEntriesUseCase, ListDeletedEntriesUseCase } from "@webiny/api-headless-cms/features/contentEntry/ListEntries/abstractions.js";
|
|
40
40
|
export { ContentEntryTraverserProvider } from "@webiny/api-headless-cms/features/contentEntry/ContentEntryTraverser/index.js";
|
|
41
41
|
export { ValidateEntryUseCase } from "@webiny/api-headless-cms/features/contentEntry/ValidateEntry/abstractions.js";
|
|
42
|
+
export { CreateEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateEntryDataFactory/abstractions.js";
|
|
43
|
+
export { CreateEntryRevisionFromDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateEntryRevisionFromDataFactory/abstractions.js";
|
|
44
|
+
export { CreatePublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreatePublishEntryDataFactory/abstractions.js";
|
|
45
|
+
export { CreateRepublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateRepublishEntryDataFactory/abstractions.js";
|
|
46
|
+
export { CreateUnpublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateUnpublishEntryDataFactory/abstractions.js";
|
|
47
|
+
export { UpdateEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/UpdateEntryDataFactory/abstractions.js";
|
|
42
48
|
export { CmsWhereMapper } from "@webiny/api-headless-cms/features/whereMapper/abstractions.js";
|
|
43
49
|
export { CmsSortMapper } from "@webiny/api-headless-cms/features/sortMapper/abstractions.js";
|
package/api/cms/entry.js
CHANGED
|
@@ -38,5 +38,11 @@ export { GetSingletonEntryUseCase } from "@webiny/api-headless-cms/features/cont
|
|
|
38
38
|
export { ListDeletedEntriesUseCase, ListEntriesUseCase, ListLatestEntriesUseCase, ListPublishedEntriesUseCase } from "@webiny/api-headless-cms/features/contentEntry/ListEntries/abstractions.js";
|
|
39
39
|
export { ContentEntryTraverserProvider } from "@webiny/api-headless-cms/features/contentEntry/ContentEntryTraverser/index.js";
|
|
40
40
|
export { ValidateEntryUseCase } from "@webiny/api-headless-cms/features/contentEntry/ValidateEntry/abstractions.js";
|
|
41
|
+
export { CreateEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateEntryDataFactory/abstractions.js";
|
|
42
|
+
export { CreateEntryRevisionFromDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateEntryRevisionFromDataFactory/abstractions.js";
|
|
43
|
+
export { CreatePublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreatePublishEntryDataFactory/abstractions.js";
|
|
44
|
+
export { CreateRepublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateRepublishEntryDataFactory/abstractions.js";
|
|
45
|
+
export { CreateUnpublishEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/CreateUnpublishEntryDataFactory/abstractions.js";
|
|
46
|
+
export { UpdateEntryDataFactory } from "@webiny/api-headless-cms/features/contentEntry/entryDataFactories/UpdateEntryDataFactory/abstractions.js";
|
|
41
47
|
export { CmsWhereMapper } from "@webiny/api-headless-cms/features/whereMapper/abstractions.js";
|
|
42
48
|
export { CmsSortMapper } from "@webiny/api-headless-cms/features/sortMapper/abstractions.js";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { WebhookSignPayload, WebhookVerifyPayload, WebhookDispatcher, WebhookFactory, WebhookProvider } from "@webiny/api-core/features/webhooks/index.js";
|
|
2
|
+
export type { Webhook, WebhookCmsEntry, WebhookCmsEntryValues } from "@webiny/webhooks/api/domain/Webhook.js";
|
|
3
|
+
export type { WebhookDelivery, WebhookDeliveryCmsEntry, WebhookDeliveryCmsEntryValues, WebhookDeliveryStatus } from "@webiny/webhooks/api/domain/WebhookDelivery.js";
|
|
4
|
+
export type { IWebhookPayload } from "@webiny/webhooks/api/features/SendWebhookTask/types.js";
|
|
5
|
+
export type { IListMeta } from "@webiny/webhooks/api/features/ListWebhooks/abstractions.js";
|
|
6
|
+
export { createWebhooks } from "@webiny/webhooks/api/index.js";
|
package/api/webhooks.js
ADDED
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.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,45 +9,46 @@
|
|
|
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-headless-cms": "6.4.0-beta.
|
|
29
|
-
"@webiny/app-headless-cms-common": "6.4.0-beta.
|
|
30
|
-
"@webiny/app-website-builder": "6.4.0-beta.
|
|
31
|
-
"@webiny/cli-core": "6.4.0-beta.
|
|
32
|
-
"@webiny/db-dynamodb": "6.4.0-beta.
|
|
33
|
-
"@webiny/feature": "6.4.0-beta.
|
|
34
|
-
"@webiny/form": "6.4.0-beta.
|
|
35
|
-
"@webiny/handler": "6.4.0-beta.
|
|
36
|
-
"@webiny/handler-graphql": "6.4.0-beta.
|
|
37
|
-
"@webiny/languages": "6.4.0-beta.
|
|
38
|
-
"@webiny/lexical-editor": "6.4.0-beta.
|
|
39
|
-
"@webiny/project": "6.4.0-beta.
|
|
40
|
-
"@webiny/project-aws": "6.4.0-beta.
|
|
41
|
-
"@webiny/project-aws-template": "6.4.0-beta.
|
|
42
|
-
"@webiny/tasks": "6.4.0-beta.
|
|
43
|
-
"@webiny/tenant-manager": "6.4.0-beta.
|
|
44
|
-
"@webiny/utils": "6.4.0-beta.
|
|
45
|
-
"@webiny/validation": "6.4.0-beta.
|
|
46
|
-
"@webiny/
|
|
12
|
+
"@webiny/admin-ui": "6.4.0-beta.1",
|
|
13
|
+
"@webiny/api-aco": "6.4.0-beta.1",
|
|
14
|
+
"@webiny/api-core": "6.4.0-beta.1",
|
|
15
|
+
"@webiny/api-file-manager": "6.4.0-beta.1",
|
|
16
|
+
"@webiny/api-headless-cms": "6.4.0-beta.1",
|
|
17
|
+
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.1",
|
|
18
|
+
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.1",
|
|
19
|
+
"@webiny/api-mailer": "6.4.0-beta.1",
|
|
20
|
+
"@webiny/api-opensearch": "6.4.0-beta.1",
|
|
21
|
+
"@webiny/api-scheduler": "6.4.0-beta.1",
|
|
22
|
+
"@webiny/api-website-builder": "6.4.0-beta.1",
|
|
23
|
+
"@webiny/api-website-builder-scheduler": "6.4.0-beta.1",
|
|
24
|
+
"@webiny/api-websockets": "6.4.0-beta.1",
|
|
25
|
+
"@webiny/app": "6.4.0-beta.1",
|
|
26
|
+
"@webiny/app-aco": "6.4.0-beta.1",
|
|
27
|
+
"@webiny/app-admin": "6.4.0-beta.1",
|
|
28
|
+
"@webiny/app-headless-cms": "6.4.0-beta.1",
|
|
29
|
+
"@webiny/app-headless-cms-common": "6.4.0-beta.1",
|
|
30
|
+
"@webiny/app-website-builder": "6.4.0-beta.1",
|
|
31
|
+
"@webiny/cli-core": "6.4.0-beta.1",
|
|
32
|
+
"@webiny/db-dynamodb": "6.4.0-beta.1",
|
|
33
|
+
"@webiny/feature": "6.4.0-beta.1",
|
|
34
|
+
"@webiny/form": "6.4.0-beta.1",
|
|
35
|
+
"@webiny/handler": "6.4.0-beta.1",
|
|
36
|
+
"@webiny/handler-graphql": "6.4.0-beta.1",
|
|
37
|
+
"@webiny/languages": "6.4.0-beta.1",
|
|
38
|
+
"@webiny/lexical-editor": "6.4.0-beta.1",
|
|
39
|
+
"@webiny/project": "6.4.0-beta.1",
|
|
40
|
+
"@webiny/project-aws": "6.4.0-beta.1",
|
|
41
|
+
"@webiny/project-aws-template": "6.4.0-beta.1",
|
|
42
|
+
"@webiny/tasks": "6.4.0-beta.1",
|
|
43
|
+
"@webiny/tenant-manager": "6.4.0-beta.1",
|
|
44
|
+
"@webiny/utils": "6.4.0-beta.1",
|
|
45
|
+
"@webiny/validation": "6.4.0-beta.1",
|
|
46
|
+
"@webiny/webhooks": "6.4.0-beta.1",
|
|
47
|
+
"@webiny/website-builder-sdk": "6.4.0-beta.1",
|
|
47
48
|
"react": "18.3.1"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
|
-
"@webiny/build-tools": "6.4.0-beta.
|
|
51
|
+
"@webiny/build-tools": "6.4.0-beta.1",
|
|
51
52
|
"rimraf": "6.1.3",
|
|
52
53
|
"typescript": "6.0.3"
|
|
53
54
|
},
|
|
@@ -62,7 +63,7 @@
|
|
|
62
63
|
]
|
|
63
64
|
}
|
|
64
65
|
},
|
|
65
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "73237b8243693038c072bae1c0b783387448cbbe",
|
|
66
67
|
"exports": {
|
|
67
68
|
"./configs/tsconfig.json": "./configs/tsconfig.json",
|
|
68
69
|
"./global.d.ts": "./global.d.ts",
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
"./api/system": "./api/system.js",
|
|
84
85
|
"./api/tasks": "./api/tasks.js",
|
|
85
86
|
"./api/tenancy": "./api/tenancy.js",
|
|
87
|
+
"./api/webhooks": "./api/webhooks.js",
|
|
86
88
|
"./api": "./api.js",
|
|
87
89
|
"./api/file-manager/file": "./api/file-manager/file.js",
|
|
88
90
|
"./api/file-manager/permissions": "./api/file-manager/permissions.js",
|
|
@@ -139,5 +141,5 @@
|
|
|
139
141
|
"./extensions": "./extensions.js",
|
|
140
142
|
"./api/tenant-manager": "./api/tenant-manager.js"
|
|
141
143
|
},
|
|
142
|
-
"exportGenerationHash": "
|
|
144
|
+
"exportGenerationHash": "6682e8713f8e5be0622e1250c9d35c82418b0a09868d14041d789f426351c7f5"
|
|
143
145
|
}
|