@webiny/app-serverless-cms 6.0.0-rc.7 → 6.1.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/Admin.js +4 -2
- package/Admin.js.map +1 -1
- package/package.json +29 -27
package/Admin.js
CHANGED
|
@@ -18,10 +18,12 @@ import { RecordLocking } from "@webiny/app-record-locking";
|
|
|
18
18
|
import { TrashBinConfigs } from "@webiny/app-trash-bin";
|
|
19
19
|
import { AdvancedContentOrganisation } from "@webiny/app-aco";
|
|
20
20
|
import { Extension as WebsiteBuilder } from "@webiny/app-website-builder/Extension.js";
|
|
21
|
-
import { SchedulerConfigs } from "@webiny/app-
|
|
21
|
+
import { SchedulerConfigs } from "@webiny/app-scheduler";
|
|
22
|
+
import { CmsScheduler } from "@webiny/app-headless-cms-scheduler";
|
|
22
23
|
import { Components as WorkflowComponents } from "@webiny/app-workflows";
|
|
23
24
|
import { CmsWorkflows } from "@webiny/app-headless-cms-workflows";
|
|
24
25
|
import { WebsiteBuilderWorkflows } from "@webiny/app-website-builder-workflows";
|
|
26
|
+
import { WbScheduler } from "@webiny/app-website-builder-scheduler";
|
|
25
27
|
const App = props => {
|
|
26
28
|
const createLegacyPlugins = container => {
|
|
27
29
|
return [imagePlugin(), fileStorageS3Plugin(), apolloLinks(container)];
|
|
@@ -33,7 +35,7 @@ const App = props => {
|
|
|
33
35
|
createApolloClient: createApolloClient
|
|
34
36
|
}), /*#__PURE__*/React.createElement(SdkPlayground, null), /*#__PURE__*/React.createElement(Websockets, null), /*#__PURE__*/React.createElement(RecordLocking, null), /*#__PURE__*/React.createElement(LexicalEditorActions, null), /*#__PURE__*/React.createElement(HeadlessCMS, {
|
|
35
37
|
createApolloClient: createApolloClient
|
|
36
|
-
}), /*#__PURE__*/React.createElement(AuditLogs, null), /*#__PURE__*/React.createElement(MailerSettings, null), /*#__PURE__*/React.createElement(SchedulerConfigs, null), /*#__PURE__*/React.createElement(TrashBinConfigs, null), /*#__PURE__*/React.createElement(AdvancedContentOrganisation, null), /*#__PURE__*/React.createElement(WebsiteBuilder, null), /*#__PURE__*/React.createElement(WorkflowComponents.App.WorkflowsAdminApp, null), /*#__PURE__*/React.createElement(CmsWorkflows, null), /*#__PURE__*/React.createElement(WebsiteBuilderWorkflows, null), props.children);
|
|
38
|
+
}), /*#__PURE__*/React.createElement(AuditLogs, null), /*#__PURE__*/React.createElement(MailerSettings, null), /*#__PURE__*/React.createElement(SchedulerConfigs, null), /*#__PURE__*/React.createElement(CmsScheduler, null), /*#__PURE__*/React.createElement(TrashBinConfigs, null), /*#__PURE__*/React.createElement(AdvancedContentOrganisation, null), /*#__PURE__*/React.createElement(WebsiteBuilder, null), /*#__PURE__*/React.createElement(WorkflowComponents.App.WorkflowsAdminApp, null), /*#__PURE__*/React.createElement(CmsWorkflows, null), /*#__PURE__*/React.createElement(WebsiteBuilderWorkflows, null), /*#__PURE__*/React.createElement(WbScheduler, null), props.children);
|
|
37
39
|
};
|
|
38
40
|
export const Admin = /*#__PURE__*/memo(App);
|
|
39
41
|
|
package/Admin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","memo","Admin","BaseAdmin","SystemInstallerProvider","HeadlessCMS","AdminUI","FileManager","GraphQLPlayground","SdkPlayground","AccessManagement","imagePlugin","fileStorageS3Plugin","createApolloClient","apolloLinks","AuditLogs","LexicalEditorActions","Module","MailerSettings","Websockets","RecordLocking","TrashBinConfigs","AdvancedContentOrganisation","Extension","WebsiteBuilder","SchedulerConfigs","Components","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","App","props","createLegacyPlugins","container","createElement","WorkflowsAdminApp","children"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport type { AdminProps as BaseAdminProps } from \"@webiny/app-admin\";\nimport { Admin as BaseAdmin, SystemInstallerProvider } from \"@webiny/app-admin\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { AdminUI } from \"@webiny/app-admin-ui\";\nimport { FileManager } from \"@webiny/app-file-manager/app.js\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { SdkPlayground } from \"@webiny/app-sdk-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins/index.js\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient } from \"./apolloClientFactory.js\";\nimport apolloLinks from \"./apolloLinks.js\";\nimport { AuditLogs } from \"@webiny/app-audit-logs\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { Websockets } from \"@webiny/app-websockets\";\nimport { RecordLocking } from \"@webiny/app-record-locking\";\nimport { TrashBinConfigs } from \"@webiny/app-trash-bin\";\nimport { AdvancedContentOrganisation } from \"@webiny/app-aco\";\nimport { Extension as WebsiteBuilder } from \"@webiny/app-website-builder/Extension.js\";\nimport { SchedulerConfigs } from \"@webiny/app-headless-cms-scheduler\";\nimport { Components as WorkflowComponents } from \"@webiny/app-workflows\";\nimport { CmsWorkflows } from \"@webiny/app-headless-cms-workflows\";\nimport { WebsiteBuilderWorkflows } from \"@webiny/app-website-builder-workflows\";\nimport { Container } from \"@webiny/di\";\nimport type { PluginCollection } from \"@webiny/plugins/types.js\";\n\nexport interface AdminProps\n extends Omit<BaseAdminProps, \"createApolloClient\" | \"createLegacyPlugins\"> {\n children?: React.ReactNode;\n}\n\nconst App = (props: AdminProps) => {\n const createLegacyPlugins = (container: Container): PluginCollection => {\n return [imagePlugin(), fileStorageS3Plugin(), apolloLinks(container)];\n };\n\n return (\n <BaseAdmin\n createApolloClient={createApolloClient}\n createLegacyPlugins={createLegacyPlugins}\n >\n <AdminUI />\n <AccessManagement />\n <SystemInstallerProvider />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <SdkPlayground />\n <Websockets />\n <RecordLocking />\n <LexicalEditorActions />\n <HeadlessCMS createApolloClient={createApolloClient} />\n <AuditLogs />\n <MailerSettings />\n <SchedulerConfigs />\n <TrashBinConfigs />\n <AdvancedContentOrganisation />\n <WebsiteBuilder />\n <WorkflowComponents.App.WorkflowsAdminApp />\n <CmsWorkflows />\n <WebsiteBuilderWorkflows />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,IAAI,QAAQ,OAAO;AAEnC,SAASC,KAAK,IAAIC,SAAS,EAAEC,uBAAuB,QAAQ,mBAAmB;AAC/E,SAASC,WAAW,QAAQ,0BAA0B;AACtD,SAASC,OAAO,QAAQ,sBAAsB;AAC9C,SAASC,WAAW,QAAQ,iCAAiC;AAC7D,SAASC,iBAAiB,QAAQ,gCAAgC;AAClE,SAASC,aAAa,QAAQ,4BAA4B;AAC1D,SAASC,gBAAgB,QAAQ,wCAAwC;AACzE,SAASC,WAAW,QAAQ,8BAA8B;AAC1D,OAAOC,mBAAmB,MAAM,6BAA6B;AAC7D,SAASC,kBAAkB;AAC3B,OAAOC,WAAW;AAClB,SAASC,SAAS,QAAQ,wBAAwB;AAClD,SAASC,oBAAoB,QAAQ,gCAAgC;AACrE,SAASC,MAAM,IAAIC,cAAc,QAAQ,oBAAoB;AAC7D,SAASC,UAAU,QAAQ,wBAAwB;AACnD,SAASC,aAAa,QAAQ,4BAA4B;AAC1D,SAASC,eAAe,QAAQ,uBAAuB;AACvD,SAASC,2BAA2B,QAAQ,iBAAiB;AAC7D,SAASC,SAAS,IAAIC,cAAc,QAAQ,0CAA0C;AACtF,SAASC,gBAAgB,QAAQ,oCAAoC;
|
|
1
|
+
{"version":3,"names":["React","memo","Admin","BaseAdmin","SystemInstallerProvider","HeadlessCMS","AdminUI","FileManager","GraphQLPlayground","SdkPlayground","AccessManagement","imagePlugin","fileStorageS3Plugin","createApolloClient","apolloLinks","AuditLogs","LexicalEditorActions","Module","MailerSettings","Websockets","RecordLocking","TrashBinConfigs","AdvancedContentOrganisation","Extension","WebsiteBuilder","SchedulerConfigs","CmsScheduler","Components","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","WbScheduler","App","props","createLegacyPlugins","container","createElement","WorkflowsAdminApp","children"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport type { AdminProps as BaseAdminProps } from \"@webiny/app-admin\";\nimport { Admin as BaseAdmin, SystemInstallerProvider } from \"@webiny/app-admin\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { AdminUI } from \"@webiny/app-admin-ui\";\nimport { FileManager } from \"@webiny/app-file-manager/app.js\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { SdkPlayground } from \"@webiny/app-sdk-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins/index.js\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient } from \"./apolloClientFactory.js\";\nimport apolloLinks from \"./apolloLinks.js\";\nimport { AuditLogs } from \"@webiny/app-audit-logs\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { Websockets } from \"@webiny/app-websockets\";\nimport { RecordLocking } from \"@webiny/app-record-locking\";\nimport { TrashBinConfigs } from \"@webiny/app-trash-bin\";\nimport { AdvancedContentOrganisation } from \"@webiny/app-aco\";\nimport { Extension as WebsiteBuilder } from \"@webiny/app-website-builder/Extension.js\";\nimport { SchedulerConfigs } from \"@webiny/app-scheduler\";\nimport { CmsScheduler } from \"@webiny/app-headless-cms-scheduler\";\nimport { Components as WorkflowComponents } from \"@webiny/app-workflows\";\nimport { CmsWorkflows } from \"@webiny/app-headless-cms-workflows\";\nimport { WebsiteBuilderWorkflows } from \"@webiny/app-website-builder-workflows\";\nimport { Container } from \"@webiny/di\";\nimport type { PluginCollection } from \"@webiny/plugins/types.js\";\nimport { WbScheduler } from \"@webiny/app-website-builder-scheduler\";\n\nexport interface AdminProps\n extends Omit<BaseAdminProps, \"createApolloClient\" | \"createLegacyPlugins\"> {\n children?: React.ReactNode;\n}\n\nconst App = (props: AdminProps) => {\n const createLegacyPlugins = (container: Container): PluginCollection => {\n return [imagePlugin(), fileStorageS3Plugin(), apolloLinks(container)];\n };\n\n return (\n <BaseAdmin\n createApolloClient={createApolloClient}\n createLegacyPlugins={createLegacyPlugins}\n >\n <AdminUI />\n <AccessManagement />\n <SystemInstallerProvider />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <SdkPlayground />\n <Websockets />\n <RecordLocking />\n <LexicalEditorActions />\n <HeadlessCMS createApolloClient={createApolloClient} />\n <AuditLogs />\n <MailerSettings />\n <SchedulerConfigs />\n <CmsScheduler />\n <TrashBinConfigs />\n <AdvancedContentOrganisation />\n <WebsiteBuilder />\n <WorkflowComponents.App.WorkflowsAdminApp />\n <CmsWorkflows />\n <WebsiteBuilderWorkflows />\n <WbScheduler />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -10,31 +10,33 @@
|
|
|
10
10
|
"author": "Webiny Ltd.",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@emotion/react": "11.
|
|
14
|
-
"@webiny/app": "6.
|
|
15
|
-
"@webiny/app-aco": "6.
|
|
16
|
-
"@webiny/app-admin": "6.
|
|
17
|
-
"@webiny/app-admin-ui": "6.
|
|
18
|
-
"@webiny/app-audit-logs": "6.
|
|
19
|
-
"@webiny/app-file-manager": "6.
|
|
20
|
-
"@webiny/app-file-manager-s3": "6.
|
|
21
|
-
"@webiny/app-graphql-playground": "6.
|
|
22
|
-
"@webiny/app-headless-cms": "6.
|
|
23
|
-
"@webiny/app-headless-cms-scheduler": "6.
|
|
24
|
-
"@webiny/app-headless-cms-workflows": "6.
|
|
25
|
-
"@webiny/app-mailer": "6.
|
|
26
|
-
"@webiny/app-record-locking": "6.
|
|
27
|
-
"@webiny/app-
|
|
28
|
-
"@webiny/app-
|
|
29
|
-
"@webiny/app-
|
|
30
|
-
"@webiny/app-
|
|
31
|
-
"@webiny/app-website-builder
|
|
32
|
-
"@webiny/app-
|
|
33
|
-
"@webiny/app-workflows": "6.
|
|
13
|
+
"@emotion/react": "11.14.0",
|
|
14
|
+
"@webiny/app": "6.1.0-beta.0",
|
|
15
|
+
"@webiny/app-aco": "6.1.0-beta.0",
|
|
16
|
+
"@webiny/app-admin": "6.1.0-beta.0",
|
|
17
|
+
"@webiny/app-admin-ui": "6.1.0-beta.0",
|
|
18
|
+
"@webiny/app-audit-logs": "6.1.0-beta.0",
|
|
19
|
+
"@webiny/app-file-manager": "6.1.0-beta.0",
|
|
20
|
+
"@webiny/app-file-manager-s3": "6.1.0-beta.0",
|
|
21
|
+
"@webiny/app-graphql-playground": "6.1.0-beta.0",
|
|
22
|
+
"@webiny/app-headless-cms": "6.1.0-beta.0",
|
|
23
|
+
"@webiny/app-headless-cms-scheduler": "6.1.0-beta.0",
|
|
24
|
+
"@webiny/app-headless-cms-workflows": "6.1.0-beta.0",
|
|
25
|
+
"@webiny/app-mailer": "6.1.0-beta.0",
|
|
26
|
+
"@webiny/app-record-locking": "6.1.0-beta.0",
|
|
27
|
+
"@webiny/app-scheduler": "6.1.0-beta.0",
|
|
28
|
+
"@webiny/app-sdk-playground": "6.1.0-beta.0",
|
|
29
|
+
"@webiny/app-security-access-management": "6.1.0-beta.0",
|
|
30
|
+
"@webiny/app-trash-bin": "6.1.0-beta.0",
|
|
31
|
+
"@webiny/app-website-builder": "6.1.0-beta.0",
|
|
32
|
+
"@webiny/app-website-builder-scheduler": "6.1.0-beta.0",
|
|
33
|
+
"@webiny/app-website-builder-workflows": "6.1.0-beta.0",
|
|
34
|
+
"@webiny/app-websockets": "6.1.0-beta.0",
|
|
35
|
+
"@webiny/app-workflows": "6.1.0-beta.0",
|
|
34
36
|
"@webiny/di": "0.2.3",
|
|
35
|
-
"@webiny/lexical-editor-actions": "6.
|
|
36
|
-
"@webiny/lexical-theme": "6.
|
|
37
|
-
"@webiny/plugins": "6.
|
|
37
|
+
"@webiny/lexical-editor-actions": "6.1.0-beta.0",
|
|
38
|
+
"@webiny/lexical-theme": "6.1.0-beta.0",
|
|
39
|
+
"@webiny/plugins": "6.1.0-beta.0",
|
|
38
40
|
"apollo-cache": "1.3.5",
|
|
39
41
|
"apollo-client": "2.6.10",
|
|
40
42
|
"apollo-link": "1.2.14",
|
|
@@ -45,7 +47,7 @@
|
|
|
45
47
|
},
|
|
46
48
|
"devDependencies": {
|
|
47
49
|
"@emotion/babel-plugin": "11.13.5",
|
|
48
|
-
"@webiny/build-tools": "6.
|
|
50
|
+
"@webiny/build-tools": "6.1.0-beta.0",
|
|
49
51
|
"rimraf": "6.1.3",
|
|
50
52
|
"typescript": "5.9.3"
|
|
51
53
|
},
|
|
@@ -65,5 +67,5 @@
|
|
|
65
67
|
]
|
|
66
68
|
}
|
|
67
69
|
},
|
|
68
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "a3bd3695c66c79238e380d7360d9731b5fcf9c87"
|
|
69
71
|
}
|