@webiny/app-serverless-cms 6.4.0-beta.1 → 6.4.0-beta.3
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 +2 -1
- package/Admin.js.map +1 -1
- package/package.json +30 -29
package/Admin.js
CHANGED
|
@@ -24,6 +24,7 @@ import { Components } from "@webiny/app-workflows";
|
|
|
24
24
|
import { CmsWorkflows } from "@webiny/app-headless-cms-workflows";
|
|
25
25
|
import { WebsiteBuilderWorkflows } from "@webiny/app-website-builder-workflows";
|
|
26
26
|
import { WbScheduler } from "@webiny/app-website-builder-scheduler";
|
|
27
|
+
import { Webhooks } from "@webiny/webhooks/admin";
|
|
27
28
|
const App = (props)=>{
|
|
28
29
|
const createLegacyPlugins = (container)=>[
|
|
29
30
|
imagePlugin(),
|
|
@@ -37,7 +38,7 @@ const App = (props)=>{
|
|
|
37
38
|
createApolloClient: createApolloClient
|
|
38
39
|
}), /*#__PURE__*/ react.createElement(SdkPlayground, null), /*#__PURE__*/ react.createElement(Websockets, null), /*#__PURE__*/ react.createElement(RecordLocking, null), /*#__PURE__*/ react.createElement(LexicalEditorActions, null), /*#__PURE__*/ react.createElement(HeadlessCMS, {
|
|
39
40
|
createApolloClient: createApolloClient
|
|
40
|
-
}), /*#__PURE__*/ react.createElement(AuditLogs, null), /*#__PURE__*/ react.createElement(Module, null), /*#__PURE__*/ react.createElement(SchedulerConfigs, null), /*#__PURE__*/ react.createElement(CmsScheduler, null), /*#__PURE__*/ react.createElement(TrashBinConfigs, null), /*#__PURE__*/ react.createElement(AdvancedContentOrganisation, null), /*#__PURE__*/ react.createElement(Extension, null), /*#__PURE__*/ react.createElement(Components.App.WorkflowsAdminApp, null), /*#__PURE__*/ react.createElement(CmsWorkflows, null), /*#__PURE__*/ react.createElement(WebsiteBuilderWorkflows, null), /*#__PURE__*/ react.createElement(WbScheduler, null), props.children);
|
|
41
|
+
}), /*#__PURE__*/ react.createElement(AuditLogs, null), /*#__PURE__*/ react.createElement(Module, null), /*#__PURE__*/ react.createElement(SchedulerConfigs, null), /*#__PURE__*/ react.createElement(CmsScheduler, null), /*#__PURE__*/ react.createElement(TrashBinConfigs, null), /*#__PURE__*/ react.createElement(AdvancedContentOrganisation, null), /*#__PURE__*/ react.createElement(Extension, null), /*#__PURE__*/ react.createElement(Components.App.WorkflowsAdminApp, null), /*#__PURE__*/ react.createElement(CmsWorkflows, null), /*#__PURE__*/ react.createElement(WebsiteBuilderWorkflows, null), /*#__PURE__*/ react.createElement(WbScheduler, null), /*#__PURE__*/ react.createElement(Webhooks, null), props.children);
|
|
41
42
|
};
|
|
42
43
|
const Admin_Admin = /*#__PURE__*/ memo(App);
|
|
43
44
|
export { Admin_Admin as Admin };
|
package/Admin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Admin.js","sources":["../src/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 extends Omit<\n BaseAdminProps,\n \"createApolloClient\" | \"createLegacyPlugins\"\n> {\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"],"names":["App","props","createLegacyPlugins","container","imagePlugin","fileStorageS3Plugin","apolloLinks","BaseAdmin","createApolloClient","AdminUI","AccessManagement","SystemInstallerProvider","FileManager","GraphQLPlayground","SdkPlayground","Websockets","RecordLocking","LexicalEditorActions","HeadlessCMS","AuditLogs","MailerSettings","SchedulerConfigs","CmsScheduler","TrashBinConfigs","AdvancedContentOrganisation","WebsiteBuilder","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","WbScheduler","Admin","memo"],"mappings":"
|
|
1
|
+
{"version":3,"file":"Admin.js","sources":["../src/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\";\nimport { Webhooks } from \"@webiny/webhooks/admin\";\n\nexport interface AdminProps extends Omit<\n BaseAdminProps,\n \"createApolloClient\" | \"createLegacyPlugins\"\n> {\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 <Webhooks />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"names":["App","props","createLegacyPlugins","container","imagePlugin","fileStorageS3Plugin","apolloLinks","BaseAdmin","createApolloClient","AdminUI","AccessManagement","SystemInstallerProvider","FileManager","GraphQLPlayground","SdkPlayground","Websockets","RecordLocking","LexicalEditorActions","HeadlessCMS","AuditLogs","MailerSettings","SchedulerConfigs","CmsScheduler","TrashBinConfigs","AdvancedContentOrganisation","WebsiteBuilder","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","WbScheduler","Webhooks","Admin","memo"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,MAAMA,MAAM,CAACC;IACT,MAAMC,sBAAsB,CAACC,YAClB;YAACC;YAAeC;YAAuBC,YAAYH;SAAW;IAGzE,OAAO,WAAP,GACI,oBAACI,OAASA;QACN,oBAAoBC;QACpB,qBAAqBN;qBAErB,oBAACO,SAAOA,OAAAA,WAAAA,GACR,oBAACC,kBAAgBA,OAAAA,WAAAA,GACjB,oBAACC,yBAAuBA,OAAAA,WAAAA,GACxB,oBAACC,aAAWA,OAAAA,WAAAA,GACZ,oBAACC,mBAAiBA;QAAC,oBAAoBL;sBACvC,oBAACM,eAAaA,OAAAA,WAAAA,GACd,oBAACC,YAAUA,OAAAA,WAAAA,GACX,oBAACC,eAAaA,OAAAA,WAAAA,GACd,oBAACC,sBAAoBA,OAAAA,WAAAA,GACrB,oBAACC,aAAWA;QAAC,oBAAoBV;sBACjC,oBAACW,WAASA,OAAAA,WAAAA,GACV,oBAACC,QAAcA,OAAAA,WAAAA,GACf,oBAACC,kBAAgBA,OAAAA,WAAAA,GACjB,oBAACC,cAAYA,OAAAA,WAAAA,GACb,oBAACC,iBAAeA,OAAAA,WAAAA,GAChB,oBAACC,6BAA2BA,OAAAA,WAAAA,GAC5B,oBAACC,WAAcA,OAAAA,WAAAA,GACf,oBAACC,WAAAA,GAAAA,CAAAA,iBAAwC,uBACzC,oBAACC,cAAYA,OAAAA,WAAAA,GACb,oBAACC,yBAAuBA,OAAAA,WAAAA,GACxB,oBAACC,aAAWA,OAAAA,WAAAA,GACZ,oBAACC,UAAQA,OACR7B,MAAM,QAAQ;AAG3B;AAEO,MAAM8B,cAAQ,WAAHA,GAAGC,KAAiBhC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "6.4.0-beta.
|
|
3
|
+
"version": "6.4.0-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.js",
|
|
@@ -14,32 +14,33 @@
|
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@emotion/react": "11.14.0",
|
|
17
|
-
"@webiny/app": "6.4.0-beta.
|
|
18
|
-
"@webiny/app-aco": "6.4.0-beta.
|
|
19
|
-
"@webiny/app-admin": "6.4.0-beta.
|
|
20
|
-
"@webiny/app-admin-ui": "6.4.0-beta.
|
|
21
|
-
"@webiny/app-audit-logs": "6.4.0-beta.
|
|
22
|
-
"@webiny/app-file-manager": "6.4.0-beta.
|
|
23
|
-
"@webiny/app-file-manager-s3": "6.4.0-beta.
|
|
24
|
-
"@webiny/app-graphql-playground": "6.4.0-beta.
|
|
25
|
-
"@webiny/app-headless-cms": "6.4.0-beta.
|
|
26
|
-
"@webiny/app-headless-cms-scheduler": "6.4.0-beta.
|
|
27
|
-
"@webiny/app-headless-cms-workflows": "6.4.0-beta.
|
|
28
|
-
"@webiny/app-mailer": "6.4.0-beta.
|
|
29
|
-
"@webiny/app-record-locking": "6.4.0-beta.
|
|
30
|
-
"@webiny/app-scheduler": "6.4.0-beta.
|
|
31
|
-
"@webiny/app-sdk-playground": "6.4.0-beta.
|
|
32
|
-
"@webiny/app-security-access-management": "6.4.0-beta.
|
|
33
|
-
"@webiny/app-trash-bin": "6.4.0-beta.
|
|
34
|
-
"@webiny/app-website-builder": "6.4.0-beta.
|
|
35
|
-
"@webiny/app-website-builder-scheduler": "6.4.0-beta.
|
|
36
|
-
"@webiny/app-website-builder-workflows": "6.4.0-beta.
|
|
37
|
-
"@webiny/app-websockets": "6.4.0-beta.
|
|
38
|
-
"@webiny/app-workflows": "6.4.0-beta.
|
|
39
|
-
"@webiny/di": "1.0.
|
|
40
|
-
"@webiny/lexical-editor-actions": "6.4.0-beta.
|
|
41
|
-
"@webiny/lexical-theme": "6.4.0-beta.
|
|
42
|
-
"@webiny/plugins": "6.4.0-beta.
|
|
17
|
+
"@webiny/app": "6.4.0-beta.3",
|
|
18
|
+
"@webiny/app-aco": "6.4.0-beta.3",
|
|
19
|
+
"@webiny/app-admin": "6.4.0-beta.3",
|
|
20
|
+
"@webiny/app-admin-ui": "6.4.0-beta.3",
|
|
21
|
+
"@webiny/app-audit-logs": "6.4.0-beta.3",
|
|
22
|
+
"@webiny/app-file-manager": "6.4.0-beta.3",
|
|
23
|
+
"@webiny/app-file-manager-s3": "6.4.0-beta.3",
|
|
24
|
+
"@webiny/app-graphql-playground": "6.4.0-beta.3",
|
|
25
|
+
"@webiny/app-headless-cms": "6.4.0-beta.3",
|
|
26
|
+
"@webiny/app-headless-cms-scheduler": "6.4.0-beta.3",
|
|
27
|
+
"@webiny/app-headless-cms-workflows": "6.4.0-beta.3",
|
|
28
|
+
"@webiny/app-mailer": "6.4.0-beta.3",
|
|
29
|
+
"@webiny/app-record-locking": "6.4.0-beta.3",
|
|
30
|
+
"@webiny/app-scheduler": "6.4.0-beta.3",
|
|
31
|
+
"@webiny/app-sdk-playground": "6.4.0-beta.3",
|
|
32
|
+
"@webiny/app-security-access-management": "6.4.0-beta.3",
|
|
33
|
+
"@webiny/app-trash-bin": "6.4.0-beta.3",
|
|
34
|
+
"@webiny/app-website-builder": "6.4.0-beta.3",
|
|
35
|
+
"@webiny/app-website-builder-scheduler": "6.4.0-beta.3",
|
|
36
|
+
"@webiny/app-website-builder-workflows": "6.4.0-beta.3",
|
|
37
|
+
"@webiny/app-websockets": "6.4.0-beta.3",
|
|
38
|
+
"@webiny/app-workflows": "6.4.0-beta.3",
|
|
39
|
+
"@webiny/di": "1.0.1",
|
|
40
|
+
"@webiny/lexical-editor-actions": "6.4.0-beta.3",
|
|
41
|
+
"@webiny/lexical-theme": "6.4.0-beta.3",
|
|
42
|
+
"@webiny/plugins": "6.4.0-beta.3",
|
|
43
|
+
"@webiny/webhooks": "6.4.0-beta.3",
|
|
43
44
|
"apollo-cache": "1.3.5",
|
|
44
45
|
"apollo-client": "2.6.10",
|
|
45
46
|
"apollo-link": "1.2.14",
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
"react-dom": "18.3.1"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
52
|
-
"@webiny/build-tools": "6.4.0-beta.
|
|
53
|
+
"@webiny/build-tools": "6.4.0-beta.3",
|
|
53
54
|
"rimraf": "6.1.3",
|
|
54
55
|
"typescript": "6.0.3"
|
|
55
56
|
},
|
|
@@ -69,5 +70,5 @@
|
|
|
69
70
|
]
|
|
70
71
|
}
|
|
71
72
|
},
|
|
72
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "2e58681d4344024bfb60e6180338e2f154ec87f0"
|
|
73
74
|
}
|