@webiny/app-serverless-cms 5.37.5 → 5.37.6-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 +1 -3
- package/apolloClientFactory.d.ts +4 -3
- package/apolloClientFactory.js +6 -6
- package/apolloClientFactory.js.map +1 -1
- package/apolloLinks.d.ts +1 -1
- package/apolloLinks.js +1 -3
- package/index.d.ts +1 -0
- package/index.js +63 -2
- package/index.js.map +1 -1
- package/package.json +25 -25
package/Admin.js
CHANGED
|
@@ -46,6 +46,4 @@ var App = function App(props) {
|
|
|
46
46
|
}), /*#__PURE__*/_react.default.createElement(_appApw.AdvancedPublishingWorkflow, null), /*#__PURE__*/_react.default.createElement(_appTenantManager.TenantManager, null), /*#__PURE__*/_react.default.createElement(_appMailer.Module, null), props.children);
|
|
47
47
|
};
|
|
48
48
|
var Admin = /*#__PURE__*/(0, _react.memo)(App);
|
|
49
|
-
exports.Admin = Admin;
|
|
50
|
-
|
|
51
|
-
//# sourceMappingURL=Admin.js.map
|
|
49
|
+
exports.Admin = Admin;
|
package/apolloClientFactory.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import ApolloClient from "apollo-client";
|
|
2
|
-
|
|
2
|
+
import { BatchHttpLink } from "apollo-link-batch-http";
|
|
3
|
+
export interface CreateApolloClientParams {
|
|
3
4
|
uri: string;
|
|
5
|
+
batching?: Pick<BatchHttpLink.Options, "batchMax" | "batchInterval" | "batchKey">;
|
|
4
6
|
}
|
|
5
|
-
export declare const createApolloClient: ({ uri }: CreateApolloClientParams) => ApolloClient<import("apollo-cache-inmemory").NormalizedCacheObject>;
|
|
6
|
-
export {};
|
|
7
|
+
export declare const createApolloClient: ({ uri, batching }: CreateApolloClientParams) => ApolloClient<import("apollo-cache-inmemory").NormalizedCacheObject>;
|
package/apolloClientFactory.js
CHANGED
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.createApolloClient = void 0;
|
|
8
|
+
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
|
8
9
|
var _apolloClient = _interopRequireDefault(require("apollo-client"));
|
|
9
10
|
var _apolloLink = require("apollo-link");
|
|
10
11
|
var _apolloLinkBatchHttp = require("apollo-link-batch-http");
|
|
@@ -13,7 +14,8 @@ var _plugins = require("@webiny/plugins");
|
|
|
13
14
|
var _ApolloDynamicLink = require("@webiny/app/plugins/ApolloDynamicLink");
|
|
14
15
|
var _ApolloCacheObjectIdPlugin = require("@webiny/app/plugins/ApolloCacheObjectIdPlugin");
|
|
15
16
|
var createApolloClient = function createApolloClient(_ref) {
|
|
16
|
-
var uri = _ref.uri
|
|
17
|
+
var uri = _ref.uri,
|
|
18
|
+
batching = _ref.batching;
|
|
17
19
|
return new _apolloClient.default({
|
|
18
20
|
link: _apolloLink.ApolloLink.from([
|
|
19
21
|
/**
|
|
@@ -23,9 +25,9 @@ var createApolloClient = function createApolloClient(_ref) {
|
|
|
23
25
|
/**
|
|
24
26
|
* This batches requests made to the API to pack multiple requests into a single HTTP request.
|
|
25
27
|
*/
|
|
26
|
-
new _apolloLinkBatchHttp.BatchHttpLink({
|
|
28
|
+
new _apolloLinkBatchHttp.BatchHttpLink((0, _objectSpread2.default)({
|
|
27
29
|
uri: uri
|
|
28
|
-
})]),
|
|
30
|
+
}, batching))]),
|
|
29
31
|
cache: new _InMemoryCache.InMemoryCache({
|
|
30
32
|
addTypename: true,
|
|
31
33
|
dataIdFromObject: function dataIdFromObject(obj) {
|
|
@@ -49,6 +51,4 @@ var createApolloClient = function createApolloClient(_ref) {
|
|
|
49
51
|
})
|
|
50
52
|
});
|
|
51
53
|
};
|
|
52
|
-
exports.createApolloClient = createApolloClient;
|
|
53
|
-
|
|
54
|
-
//# sourceMappingURL=apolloClientFactory.js.map
|
|
54
|
+
exports.createApolloClient = createApolloClient;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_apolloClient","_interopRequireDefault","require","_apolloLink","_apolloLinkBatchHttp","_InMemoryCache","_plugins","_ApolloDynamicLink","_ApolloCacheObjectIdPlugin","createApolloClient","_ref","uri","ApolloClient","link","ApolloLink","from","ApolloDynamicLink","BatchHttpLink","cache","InMemoryCache","addTypename","dataIdFromObject","obj","getters","plugins","byType","ApolloCacheObjectIdPlugin","type","i","length","id","getObjectId","exports"],"sources":["apolloClientFactory.ts"],"sourcesContent":["import ApolloClient from \"apollo-client\";\nimport { ApolloLink } from \"apollo-link\";\nimport { BatchHttpLink } from \"apollo-link-batch-http\";\nimport { InMemoryCache } from \"@webiny/app/apollo-client/InMemoryCache\";\nimport { plugins } from \"@webiny/plugins\";\nimport { ApolloDynamicLink } from \"@webiny/app/plugins/ApolloDynamicLink\";\nimport { ApolloCacheObjectIdPlugin } from \"@webiny/app/plugins/ApolloCacheObjectIdPlugin\";\n\
|
|
1
|
+
{"version":3,"names":["_apolloClient","_interopRequireDefault","require","_apolloLink","_apolloLinkBatchHttp","_InMemoryCache","_plugins","_ApolloDynamicLink","_ApolloCacheObjectIdPlugin","createApolloClient","_ref","uri","batching","ApolloClient","link","ApolloLink","from","ApolloDynamicLink","BatchHttpLink","_objectSpread2","default","cache","InMemoryCache","addTypename","dataIdFromObject","obj","getters","plugins","byType","ApolloCacheObjectIdPlugin","type","i","length","id","getObjectId","exports"],"sources":["apolloClientFactory.ts"],"sourcesContent":["import ApolloClient from \"apollo-client\";\nimport { ApolloLink } from \"apollo-link\";\nimport { BatchHttpLink } from \"apollo-link-batch-http\";\nimport { InMemoryCache } from \"@webiny/app/apollo-client/InMemoryCache\";\nimport { plugins } from \"@webiny/plugins\";\nimport { ApolloDynamicLink } from \"@webiny/app/plugins/ApolloDynamicLink\";\nimport { ApolloCacheObjectIdPlugin } from \"@webiny/app/plugins/ApolloCacheObjectIdPlugin\";\n\nexport interface CreateApolloClientParams {\n uri: string;\n batching?: Pick<BatchHttpLink.Options, \"batchMax\" | \"batchInterval\" | \"batchKey\">;\n}\nexport const createApolloClient = ({ uri, batching }: CreateApolloClientParams) => {\n return new ApolloClient({\n link: ApolloLink.from([\n /**\n * This will process links from plugins on every request.\n */\n new ApolloDynamicLink(),\n /**\n * This batches requests made to the API to pack multiple requests into a single HTTP request.\n */\n new BatchHttpLink({ uri, ...batching })\n ]),\n cache: new InMemoryCache({\n addTypename: true,\n dataIdFromObject: obj => {\n /**\n * Since every data type coming from API can have a different data structure,\n * we cannot rely on having an `id` field.\n */\n const getters = plugins.byType<ApolloCacheObjectIdPlugin>(\n ApolloCacheObjectIdPlugin.type\n );\n\n for (let i = 0; i < getters.length; i++) {\n const id = getters[i].getObjectId(obj);\n if (typeof id !== \"undefined\") {\n return id;\n }\n }\n\n /**\n * As a fallback, try getting object's `id`.\n */\n return obj.id || null;\n }\n })\n });\n};\n"],"mappings":";;;;;;;;AAAA,IAAAA,aAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AACA,IAAAE,oBAAA,GAAAF,OAAA;AACA,IAAAG,cAAA,GAAAH,OAAA;AACA,IAAAI,QAAA,GAAAJ,OAAA;AACA,IAAAK,kBAAA,GAAAL,OAAA;AACA,IAAAM,0BAAA,GAAAN,OAAA;AAMO,IAAMO,kBAAkB,GAAG,SAArBA,kBAAkBA,CAAAC,IAAA,EAAoD;EAAA,IAA9CC,GAAG,GAAAD,IAAA,CAAHC,GAAG;IAAEC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;EAC9C,OAAO,IAAIC,qBAAY,CAAC;IACpBC,IAAI,EAAEC,sBAAU,CAACC,IAAI,CAAC;IAClB;AACZ;AACA;IACY,IAAIC,oCAAiB,CAAC,CAAC;IACvB;AACZ;AACA;IACY,IAAIC,kCAAa,KAAAC,cAAA,CAAAC,OAAA;MAAGT,GAAG,EAAHA;IAAG,GAAKC,QAAQ,CAAE,CAAC,CAC1C,CAAC;IACFS,KAAK,EAAE,IAAIC,4BAAa,CAAC;MACrBC,WAAW,EAAE,IAAI;MACjBC,gBAAgB,EAAE,SAAAA,iBAAAC,GAAG,EAAI;QACrB;AAChB;AACA;AACA;QACgB,IAAMC,OAAO,GAAGC,gBAAO,CAACC,MAAM,CAC1BC,oDAAyB,CAACC,IAC9B,CAAC;QAED,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGL,OAAO,CAACM,MAAM,EAAED,CAAC,EAAE,EAAE;UACrC,IAAME,EAAE,GAAGP,OAAO,CAACK,CAAC,CAAC,CAACG,WAAW,CAACT,GAAG,CAAC;UACtC,IAAI,OAAOQ,EAAE,KAAK,WAAW,EAAE;YAC3B,OAAOA,EAAE;UACb;QACJ;;QAEA;AAChB;AACA;QACgB,OAAOR,GAAG,CAACQ,EAAE,IAAI,IAAI;MACzB;IACJ,CAAC;EACL,CAAC,CAAC;AACN,CAAC;AAACE,OAAA,CAAA1B,kBAAA,GAAAA,kBAAA"}
|
package/apolloLinks.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ConsoleLinkPlugin } from "@webiny/app/plugins/ConsoleLinkPlugin";
|
|
2
2
|
import { NetworkErrorLinkPlugin } from "@webiny/app/plugins/NetworkErrorLinkPlugin";
|
|
3
3
|
import { OmitTypenameLinkPlugin } from "@webiny/app/plugins/OmitTypenameLinkPlugin";
|
|
4
|
-
declare const _default: (
|
|
4
|
+
declare const _default: (OmitTypenameLinkPlugin | ConsoleLinkPlugin | NetworkErrorLinkPlugin)[];
|
|
5
5
|
export default _default;
|
package/apolloLinks.js
CHANGED
|
@@ -20,6 +20,4 @@ new _ConsoleLinkPlugin.ConsoleLinkPlugin(),
|
|
|
20
20
|
* This plugin creates an ApolloLink that checks for `NetworkError` and shows an ErrorOverlay in the browser.
|
|
21
21
|
*/
|
|
22
22
|
new _NetworkErrorLinkPlugin.NetworkErrorLinkPlugin()];
|
|
23
|
-
exports.default = _default;
|
|
24
|
-
|
|
25
|
-
//# sourceMappingURL=apolloLinks.js.map
|
|
23
|
+
exports.default = _default;
|
package/index.d.ts
CHANGED
|
@@ -6,3 +6,4 @@ export { HasPermission, useSecurity, usePermission } from "@webiny/app-security"
|
|
|
6
6
|
export { useTenancy } from "@webiny/app-tenancy";
|
|
7
7
|
export type { Tenant } from "@webiny/app-tenancy";
|
|
8
8
|
export { AddPbWebsiteSettings } from "@webiny/app-page-builder";
|
|
9
|
+
export * from "./apolloClientFactory";
|
package/index.js
CHANGED
|
@@ -3,6 +3,57 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
Admin: true,
|
|
8
|
+
useApp: true,
|
|
9
|
+
useWcp: true,
|
|
10
|
+
useUserMenuItem: true,
|
|
11
|
+
useUserMenu: true,
|
|
12
|
+
useMenuItem: true,
|
|
13
|
+
useNavigation: true,
|
|
14
|
+
useTags: true,
|
|
15
|
+
AddLogo: true,
|
|
16
|
+
AddMenu: true,
|
|
17
|
+
AddRoute: true,
|
|
18
|
+
AddUserMenuItem: true,
|
|
19
|
+
Dashboard: true,
|
|
20
|
+
DashboardRenderer: true,
|
|
21
|
+
Layout: true,
|
|
22
|
+
LayoutRenderer: true,
|
|
23
|
+
LoginScreen: true,
|
|
24
|
+
LoginScreenRenderer: true,
|
|
25
|
+
LocaleSelector: true,
|
|
26
|
+
LocaleSelectorRenderer: true,
|
|
27
|
+
Brand: true,
|
|
28
|
+
BrandRenderer: true,
|
|
29
|
+
Provider: true,
|
|
30
|
+
Compose: true,
|
|
31
|
+
CompositionScope: true,
|
|
32
|
+
Plugins: true,
|
|
33
|
+
Plugin: true,
|
|
34
|
+
makeComposable: true,
|
|
35
|
+
createComponentPlugin: true,
|
|
36
|
+
createProviderPlugin: true,
|
|
37
|
+
createProvider: true,
|
|
38
|
+
MenuItem: true,
|
|
39
|
+
MenuItemRenderer: true,
|
|
40
|
+
MenuItems: true,
|
|
41
|
+
Navigation: true,
|
|
42
|
+
NavigationRenderer: true,
|
|
43
|
+
Tags: true,
|
|
44
|
+
UserMenu: true,
|
|
45
|
+
UserMenuHandle: true,
|
|
46
|
+
UserMenuHandleRenderer: true,
|
|
47
|
+
UserMenuItems: true,
|
|
48
|
+
UserMenuItem: true,
|
|
49
|
+
UserMenuItemRenderer: true,
|
|
50
|
+
AddGraphQLQuerySelection: true,
|
|
51
|
+
HasPermission: true,
|
|
52
|
+
useSecurity: true,
|
|
53
|
+
usePermission: true,
|
|
54
|
+
useTenancy: true,
|
|
55
|
+
AddPbWebsiteSettings: true
|
|
56
|
+
};
|
|
6
57
|
Object.defineProperty(exports, "AddGraphQLQuerySelection", {
|
|
7
58
|
enumerable: true,
|
|
8
59
|
get: function get() {
|
|
@@ -302,5 +353,15 @@ var _appAdmin = require("@webiny/app-admin");
|
|
|
302
353
|
var _appSecurity = require("@webiny/app-security");
|
|
303
354
|
var _appTenancy = require("@webiny/app-tenancy");
|
|
304
355
|
var _appPageBuilder = require("@webiny/app-page-builder");
|
|
305
|
-
|
|
306
|
-
|
|
356
|
+
var _apolloClientFactory = require("./apolloClientFactory");
|
|
357
|
+
Object.keys(_apolloClientFactory).forEach(function (key) {
|
|
358
|
+
if (key === "default" || key === "__esModule") return;
|
|
359
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
360
|
+
if (key in exports && exports[key] === _apolloClientFactory[key]) return;
|
|
361
|
+
Object.defineProperty(exports, key, {
|
|
362
|
+
enumerable: true,
|
|
363
|
+
get: function get() {
|
|
364
|
+
return _apolloClientFactory[key];
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
});
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_Admin","require","_appAdmin","_appSecurity","_appTenancy","_appPageBuilder"],"sources":["index.tsx"],"sourcesContent":["export { Admin } from \"./Admin\";\nexport type { AdminProps } from \"./Admin\";\nexport {\n useApp,\n useWcp,\n useUserMenuItem,\n useUserMenu,\n useMenuItem,\n useNavigation,\n useTags,\n AddLogo,\n AddMenu,\n AddRoute,\n AddUserMenuItem,\n Dashboard,\n DashboardRenderer,\n Layout,\n LayoutRenderer,\n LoginScreen,\n LoginScreenRenderer,\n LocaleSelector,\n LocaleSelectorRenderer,\n Brand,\n BrandRenderer,\n Provider,\n Compose,\n CompositionScope,\n Plugins,\n Plugin,\n makeComposable,\n createComponentPlugin,\n createProviderPlugin,\n createProvider,\n MenuItem,\n MenuItemRenderer,\n MenuItems,\n Navigation,\n NavigationRenderer,\n Tags,\n UserMenu,\n UserMenuHandle,\n UserMenuHandleRenderer,\n UserMenuItems,\n UserMenuItem,\n UserMenuItemRenderer,\n AddGraphQLQuerySelection\n} from \"@webiny/app-admin\";\nexport type {\n ComposeProps,\n HigherOrderComponent,\n ProviderProps,\n LayoutProps,\n LoginScreenProps,\n MenuContext,\n MenuData,\n MenuItemsProps,\n MenuProps,\n UserMenuItemsProps,\n UserMenuItemProps,\n UserMenuItemData\n} from \"@webiny/app-admin\";\n\nexport { HasPermission, useSecurity, usePermission } from \"@webiny/app-security\";\n\nexport { useTenancy } from \"@webiny/app-tenancy\";\nexport type { Tenant } from \"@webiny/app-tenancy\";\n\nexport { AddPbWebsiteSettings } from \"@webiny/app-page-builder\";\n"],"mappings":"
|
|
1
|
+
{"version":3,"names":["_Admin","require","_appAdmin","_appSecurity","_appTenancy","_appPageBuilder","_apolloClientFactory","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get"],"sources":["index.tsx"],"sourcesContent":["export { Admin } from \"./Admin\";\nexport type { AdminProps } from \"./Admin\";\nexport {\n useApp,\n useWcp,\n useUserMenuItem,\n useUserMenu,\n useMenuItem,\n useNavigation,\n useTags,\n AddLogo,\n AddMenu,\n AddRoute,\n AddUserMenuItem,\n Dashboard,\n DashboardRenderer,\n Layout,\n LayoutRenderer,\n LoginScreen,\n LoginScreenRenderer,\n LocaleSelector,\n LocaleSelectorRenderer,\n Brand,\n BrandRenderer,\n Provider,\n Compose,\n CompositionScope,\n Plugins,\n Plugin,\n makeComposable,\n createComponentPlugin,\n createProviderPlugin,\n createProvider,\n MenuItem,\n MenuItemRenderer,\n MenuItems,\n Navigation,\n NavigationRenderer,\n Tags,\n UserMenu,\n UserMenuHandle,\n UserMenuHandleRenderer,\n UserMenuItems,\n UserMenuItem,\n UserMenuItemRenderer,\n AddGraphQLQuerySelection\n} from \"@webiny/app-admin\";\nexport type {\n ComposeProps,\n HigherOrderComponent,\n ProviderProps,\n LayoutProps,\n LoginScreenProps,\n MenuContext,\n MenuData,\n MenuItemsProps,\n MenuProps,\n UserMenuItemsProps,\n UserMenuItemProps,\n UserMenuItemData\n} from \"@webiny/app-admin\";\n\nexport { HasPermission, useSecurity, usePermission } from \"@webiny/app-security\";\n\nexport { useTenancy } from \"@webiny/app-tenancy\";\nexport type { Tenant } from \"@webiny/app-tenancy\";\n\nexport { AddPbWebsiteSettings } from \"@webiny/app-page-builder\";\nexport * from \"./apolloClientFactory\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEA,IAAAC,SAAA,GAAAD,OAAA;AA4DA,IAAAE,YAAA,GAAAF,OAAA;AAEA,IAAAG,WAAA,GAAAH,OAAA;AAGA,IAAAI,eAAA,GAAAJ,OAAA;AACA,IAAAK,oBAAA,GAAAL,OAAA;AAAAM,MAAA,CAAAC,IAAA,CAAAF,oBAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,oBAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAZ,oBAAA,CAAAI,GAAA;IAAA;EAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.6-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,27 +11,27 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "7.22.6",
|
|
13
13
|
"@emotion/react": "11.10.8",
|
|
14
|
-
"@webiny/app": "5.37.
|
|
15
|
-
"@webiny/app-aco": "5.37.
|
|
16
|
-
"@webiny/app-admin": "5.37.
|
|
17
|
-
"@webiny/app-admin-rmwc": "5.37.
|
|
18
|
-
"@webiny/app-apw": "5.37.
|
|
19
|
-
"@webiny/app-file-manager": "5.37.
|
|
20
|
-
"@webiny/app-file-manager-s3": "5.37.
|
|
21
|
-
"@webiny/app-form-builder": "5.37.
|
|
22
|
-
"@webiny/app-graphql-playground": "5.37.
|
|
23
|
-
"@webiny/app-headless-cms": "5.37.
|
|
24
|
-
"@webiny/app-i18n": "5.37.
|
|
25
|
-
"@webiny/app-i18n-content": "5.37.
|
|
26
|
-
"@webiny/app-mailer": "5.37.
|
|
27
|
-
"@webiny/app-page-builder": "5.37.
|
|
28
|
-
"@webiny/app-security": "5.37.
|
|
29
|
-
"@webiny/app-security-access-management": "5.37.
|
|
30
|
-
"@webiny/app-tenancy": "5.37.
|
|
31
|
-
"@webiny/app-tenant-manager": "5.37.
|
|
32
|
-
"@webiny/lexical-editor-actions": "5.37.
|
|
33
|
-
"@webiny/lexical-editor-pb-element": "5.37.
|
|
34
|
-
"@webiny/plugins": "5.37.
|
|
14
|
+
"@webiny/app": "5.37.6-beta.0",
|
|
15
|
+
"@webiny/app-aco": "5.37.6-beta.0",
|
|
16
|
+
"@webiny/app-admin": "5.37.6-beta.0",
|
|
17
|
+
"@webiny/app-admin-rmwc": "5.37.6-beta.0",
|
|
18
|
+
"@webiny/app-apw": "5.37.6-beta.0",
|
|
19
|
+
"@webiny/app-file-manager": "5.37.6-beta.0",
|
|
20
|
+
"@webiny/app-file-manager-s3": "5.37.6-beta.0",
|
|
21
|
+
"@webiny/app-form-builder": "5.37.6-beta.0",
|
|
22
|
+
"@webiny/app-graphql-playground": "5.37.6-beta.0",
|
|
23
|
+
"@webiny/app-headless-cms": "5.37.6-beta.0",
|
|
24
|
+
"@webiny/app-i18n": "5.37.6-beta.0",
|
|
25
|
+
"@webiny/app-i18n-content": "5.37.6-beta.0",
|
|
26
|
+
"@webiny/app-mailer": "5.37.6-beta.0",
|
|
27
|
+
"@webiny/app-page-builder": "5.37.6-beta.0",
|
|
28
|
+
"@webiny/app-security": "5.37.6-beta.0",
|
|
29
|
+
"@webiny/app-security-access-management": "5.37.6-beta.0",
|
|
30
|
+
"@webiny/app-tenancy": "5.37.6-beta.0",
|
|
31
|
+
"@webiny/app-tenant-manager": "5.37.6-beta.0",
|
|
32
|
+
"@webiny/lexical-editor-actions": "5.37.6-beta.0",
|
|
33
|
+
"@webiny/lexical-editor-pb-element": "5.37.6-beta.0",
|
|
34
|
+
"@webiny/plugins": "5.37.6-beta.0",
|
|
35
35
|
"apollo-cache": "1.3.5",
|
|
36
36
|
"apollo-client": "2.6.10",
|
|
37
37
|
"apollo-link": "1.2.14",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@babel/preset-env": "7.22.7",
|
|
47
47
|
"@babel/preset-react": "7.22.5",
|
|
48
48
|
"@babel/preset-typescript": "7.22.5",
|
|
49
|
-
"@webiny/cli": "5.37.
|
|
50
|
-
"@webiny/project-utils": "5.37.
|
|
49
|
+
"@webiny/cli": "5.37.6-beta.0",
|
|
50
|
+
"@webiny/project-utils": "5.37.6-beta.0",
|
|
51
51
|
"babel-plugin-emotion": "9.2.11",
|
|
52
52
|
"babel-plugin-named-asset-import": "1.0.0-next.fb6e6f70",
|
|
53
53
|
"rimraf": "3.0.2",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"removeViewBox": false
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "5aec35310842da122e7c78bb47ab4fd4c353d106"
|
|
71
71
|
}
|