@webiny/app-serverless-cms 6.4.0-beta.3 → 6.4.0-beta.4

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.
Files changed (3) hide show
  1. package/Admin.js +2 -1
  2. package/Admin.js.map +1 -1
  3. package/package.json +33 -31
package/Admin.js CHANGED
@@ -25,6 +25,7 @@ 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
27
  import { Webhooks } from "@webiny/webhooks/admin";
28
+ import { BackgroundTasks } from "@webiny/background-tasks/admin";
28
29
  const App = (props)=>{
29
30
  const createLegacyPlugins = (container)=>[
30
31
  imagePlugin(),
@@ -38,7 +39,7 @@ const App = (props)=>{
38
39
  createApolloClient: createApolloClient
39
40
  }), /*#__PURE__*/ react.createElement(SdkPlayground, null), /*#__PURE__*/ react.createElement(Websockets, null), /*#__PURE__*/ react.createElement(RecordLocking, null), /*#__PURE__*/ react.createElement(LexicalEditorActions, null), /*#__PURE__*/ react.createElement(HeadlessCMS, {
40
41
  createApolloClient: createApolloClient
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);
42
+ }), /*#__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), /*#__PURE__*/ react.createElement(BackgroundTasks, null), props.children);
42
43
  };
43
44
  const Admin_Admin = /*#__PURE__*/ memo(App);
44
45
  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\";\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"}
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\";\nimport { BackgroundTasks } from \"@webiny/background-tasks/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 <BackgroundTasks />\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","BackgroundTasks","Admin","memo"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA,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,OAAAA,WAAAA,GACT,oBAACC,iBAAeA,OACf9B,MAAM,QAAQ;AAG3B;AAEO,MAAM+B,cAAQ,WAAHA,GAAGC,KAAiBjC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/app-serverless-cms",
3
- "version": "6.4.0-beta.3",
3
+ "version": "6.4.0-beta.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -14,33 +14,34 @@
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
16
  "@emotion/react": "11.14.0",
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",
17
+ "@webiny/app": "6.4.0-beta.4",
18
+ "@webiny/app-aco": "6.4.0-beta.4",
19
+ "@webiny/app-admin": "6.4.0-beta.4",
20
+ "@webiny/app-admin-ui": "6.4.0-beta.4",
21
+ "@webiny/app-audit-logs": "6.4.0-beta.4",
22
+ "@webiny/app-file-manager": "6.4.0-beta.4",
23
+ "@webiny/app-file-manager-s3": "6.4.0-beta.4",
24
+ "@webiny/app-graphql-playground": "6.4.0-beta.4",
25
+ "@webiny/app-headless-cms": "6.4.0-beta.4",
26
+ "@webiny/app-headless-cms-scheduler": "6.4.0-beta.4",
27
+ "@webiny/app-headless-cms-workflows": "6.4.0-beta.4",
28
+ "@webiny/app-mailer": "6.4.0-beta.4",
29
+ "@webiny/app-record-locking": "6.4.0-beta.4",
30
+ "@webiny/app-scheduler": "6.4.0-beta.4",
31
+ "@webiny/app-sdk-playground": "6.4.0-beta.4",
32
+ "@webiny/app-security-access-management": "6.4.0-beta.4",
33
+ "@webiny/app-trash-bin": "6.4.0-beta.4",
34
+ "@webiny/app-website-builder": "6.4.0-beta.4",
35
+ "@webiny/app-website-builder-scheduler": "6.4.0-beta.4",
36
+ "@webiny/app-website-builder-workflows": "6.4.0-beta.4",
37
+ "@webiny/app-websockets": "6.4.0-beta.4",
38
+ "@webiny/app-workflows": "6.4.0-beta.4",
39
+ "@webiny/background-tasks": "6.4.0-beta.4",
39
40
  "@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",
41
+ "@webiny/lexical-editor-actions": "6.4.0-beta.4",
42
+ "@webiny/lexical-theme": "6.4.0-beta.4",
43
+ "@webiny/plugins": "6.4.0-beta.4",
44
+ "@webiny/webhooks": "6.4.0-beta.4",
44
45
  "apollo-cache": "1.3.5",
45
46
  "apollo-client": "2.6.10",
46
47
  "apollo-link": "1.2.14",
@@ -50,13 +51,12 @@
50
51
  "react-dom": "18.3.1"
51
52
  },
52
53
  "devDependencies": {
53
- "@webiny/build-tools": "6.4.0-beta.3",
54
+ "@webiny/build-tools": "6.4.0-beta.4",
54
55
  "rimraf": "6.1.3",
55
56
  "typescript": "6.0.3"
56
57
  },
57
58
  "publishConfig": {
58
- "access": "public",
59
- "directory": "dist"
59
+ "access": "public"
60
60
  },
61
61
  "svgo": {
62
62
  "plugins": {
@@ -70,5 +70,7 @@
70
70
  ]
71
71
  }
72
72
  },
73
- "gitHead": "2e58681d4344024bfb60e6180338e2f154ec87f0"
73
+ "webiny": {
74
+ "publishFrom": "dist"
75
+ }
74
76
  }