@webiny/project-aws 0.0.0-unstable.df7a8bb475 → 6.0.0-rc.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.
|
@@ -7,25 +7,37 @@
|
|
|
7
7
|
"@webiny/api-aco": "latest",
|
|
8
8
|
"@webiny/api-audit-logs": "latest",
|
|
9
9
|
"@webiny/api-background-tasks-ddb": "latest",
|
|
10
|
+
"@webiny/api-background-tasks-os": "latest",
|
|
10
11
|
"@webiny/api-core": "latest",
|
|
12
|
+
"@webiny/api-core-ddb": "latest",
|
|
13
|
+
"@webiny/api-dynamodb-to-elasticsearch": "latest",
|
|
14
|
+
"@webiny/api-elasticsearch": "latest",
|
|
11
15
|
"@webiny/api-file-manager": "latest",
|
|
16
|
+
"@webiny/api-file-manager-aco": "latest",
|
|
12
17
|
"@webiny/api-file-manager-s3": "latest",
|
|
13
18
|
"@webiny/api-headless-cms": "latest",
|
|
14
19
|
"@webiny/api-headless-cms-aco": "latest",
|
|
15
20
|
"@webiny/api-headless-cms-ddb": "latest",
|
|
21
|
+
"@webiny/api-headless-cms-ddb-es": "latest",
|
|
22
|
+
"@webiny/api-headless-cms-scheduler": "latest",
|
|
16
23
|
"@webiny/api-headless-cms-tasks": "latest",
|
|
24
|
+
"@webiny/api-headless-cms-tasks-ddb-es": "latest",
|
|
17
25
|
"@webiny/api-headless-cms-workflows": "latest",
|
|
18
|
-
"@webiny/api-log": "latest",
|
|
19
26
|
"@webiny/api-mailer": "latest",
|
|
20
27
|
"@webiny/api-record-locking": "latest",
|
|
21
|
-
"@webiny/api-
|
|
22
|
-
"@webiny/api-
|
|
28
|
+
"@webiny/api-scheduler": "latest",
|
|
29
|
+
"@webiny/api-website-builder": "latest",
|
|
30
|
+
"@webiny/api-website-builder-workflows": "latest",
|
|
23
31
|
"@webiny/api-websockets": "latest",
|
|
32
|
+
"@webiny/api-workflows": "latest",
|
|
33
|
+
"@webiny/aws-sdk": "latest",
|
|
34
|
+
"@webiny/build-tools": "latest",
|
|
35
|
+
"@webiny/data-migration": "latest",
|
|
24
36
|
"@webiny/db-dynamodb": "latest",
|
|
25
37
|
"@webiny/handler-aws": "latest",
|
|
26
38
|
"@webiny/handler-client": "latest",
|
|
27
39
|
"@webiny/handler-db": "latest",
|
|
28
40
|
"@webiny/handler-graphql": "latest",
|
|
29
|
-
"@webiny/
|
|
41
|
+
"@webiny/migrations": "latest"
|
|
30
42
|
}
|
|
31
43
|
}
|
|
@@ -8,7 +8,8 @@ import { DynamoDbDriver } from "@webiny/db-dynamodb";
|
|
|
8
8
|
import dynamoDbPlugins from "@webiny/db-dynamodb/plugins";
|
|
9
9
|
import elasticsearchClientContext, { createElasticsearchClient } from "@webiny/api-elasticsearch";
|
|
10
10
|
import { createFileManagerContext, createFileManagerGraphQL } from "@webiny/api-file-manager";
|
|
11
|
-
import {
|
|
11
|
+
import { createFileManagerAco } from "@webiny/api-file-manager-aco";
|
|
12
|
+
import { createAssetDelivery, createFileManagerS3 } from "@webiny/api-file-manager-s3";
|
|
12
13
|
import { createHeadlessCmsContext, createHeadlessCmsGraphQL } from "@webiny/api-headless-cms";
|
|
13
14
|
import { createStorageOperations as createHeadlessCmsStorageOperations } from "@webiny/api-headless-cms-ddb-es";
|
|
14
15
|
import { createHcmsTasks } from "@webiny/api-headless-cms-tasks-ddb-es";
|
|
@@ -24,6 +25,9 @@ import { createSchedulerClient } from "@webiny/aws-sdk/client-scheduler";
|
|
|
24
25
|
import { createScheduler } from "@webiny/api-scheduler";
|
|
25
26
|
import { createHeadlessCmsScheduler } from "@webiny/api-headless-cms-scheduler";
|
|
26
27
|
import { createMailerContext, createMailerGraphQL } from "@webiny/api-mailer";
|
|
28
|
+
import { createWorkflows } from "@webiny/api-workflows";
|
|
29
|
+
import { createHeadlessCmsWorkflows } from "@webiny/api-headless-cms-workflows";
|
|
30
|
+
import { createWebsiteBuilderWorkflows } from "@webiny/api-website-builder-workflows";
|
|
27
31
|
|
|
28
32
|
import { extensions } from "./extensions";
|
|
29
33
|
|
|
@@ -64,11 +68,14 @@ export const handler = createHandler({
|
|
|
64
68
|
createBackgroundTasks(),
|
|
65
69
|
createFileManagerContext(),
|
|
66
70
|
createFileManagerGraphQL(),
|
|
71
|
+
createFileManagerAco(),
|
|
67
72
|
createAssetDelivery(),
|
|
68
73
|
createFileManagerS3(),
|
|
69
|
-
createAco({
|
|
70
|
-
|
|
71
|
-
|
|
74
|
+
createAco({ documentClient }),
|
|
75
|
+
createWorkflows(),
|
|
76
|
+
createHeadlessCmsWorkflows(),
|
|
77
|
+
createWebsiteBuilderWorkflows(),
|
|
78
|
+
createAuditLogs(),
|
|
72
79
|
createAcoHcmsContext(),
|
|
73
80
|
createHcmsTasks(),
|
|
74
81
|
createScheduler({
|
|
@@ -77,7 +84,6 @@ export const handler = createHandler({
|
|
|
77
84
|
}
|
|
78
85
|
}),
|
|
79
86
|
createHeadlessCmsScheduler(),
|
|
80
|
-
createAuditLogs(),
|
|
81
87
|
extensions()
|
|
82
88
|
],
|
|
83
89
|
debug
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/project-aws",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0-rc.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"repository": {
|
|
@@ -15,20 +15,20 @@
|
|
|
15
15
|
"directory": "dist"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@pulumi/aws": "^7.
|
|
19
|
-
"@pulumi/pulumi": "^3.
|
|
18
|
+
"@pulumi/aws": "^7.20.0",
|
|
19
|
+
"@pulumi/pulumi": "^3.223.0",
|
|
20
20
|
"@pulumi/random": "4.19.1",
|
|
21
|
-
"@webiny/api-core": "
|
|
22
|
-
"@webiny/api-headless-cms": "
|
|
23
|
-
"@webiny/app-admin": "
|
|
24
|
-
"@webiny/aws-layers": "
|
|
25
|
-
"@webiny/aws-sdk": "
|
|
26
|
-
"@webiny/cli-core": "
|
|
27
|
-
"@webiny/data-migration": "
|
|
28
|
-
"@webiny/project": "
|
|
29
|
-
"@webiny/pulumi": "
|
|
30
|
-
"@webiny/utils": "
|
|
31
|
-
"@webiny/wcp": "
|
|
21
|
+
"@webiny/api-core": "6.0.0-rc.0",
|
|
22
|
+
"@webiny/api-headless-cms": "6.0.0-rc.0",
|
|
23
|
+
"@webiny/app-admin": "6.0.0-rc.0",
|
|
24
|
+
"@webiny/aws-layers": "6.0.0-rc.0",
|
|
25
|
+
"@webiny/aws-sdk": "6.0.0-rc.0",
|
|
26
|
+
"@webiny/cli-core": "6.0.0-rc.0",
|
|
27
|
+
"@webiny/data-migration": "6.0.0-rc.0",
|
|
28
|
+
"@webiny/project": "6.0.0-rc.0",
|
|
29
|
+
"@webiny/pulumi": "6.0.0-rc.0",
|
|
30
|
+
"@webiny/utils": "6.0.0-rc.0",
|
|
31
|
+
"@webiny/wcp": "6.0.0-rc.0",
|
|
32
32
|
"chalk": "4.1.2",
|
|
33
33
|
"find-up": "5.0.0",
|
|
34
34
|
"invariant": "2.2.4",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/lodash": "4.17.23",
|
|
43
43
|
"@types/ncp": "2.0.8",
|
|
44
|
-
"@webiny/build-tools": "
|
|
44
|
+
"@webiny/build-tools": "6.0.0-rc.0",
|
|
45
45
|
"typescript": "5.9.3"
|
|
46
46
|
},
|
|
47
47
|
"adio": {
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
]
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "0f2aa699f4642e550ab62c96fcd050e8d02345c9"
|
|
63
63
|
}
|