@webiny/api-website-builder 0.0.0-unstable.f9f12f52a0 → 0.0.0-unstable.fdd9228b5d
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/graphql/createGraphQL.d.ts +1 -1
- package/index.d.ts +1 -0
- package/index.js.map +1 -1
- package/package.json +22 -22
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { GraphQLSchemaPlugin } from "@webiny/handler-graphql";
|
|
2
|
-
export declare const createGraphQL: () => GraphQLSchemaPlugin<import("
|
|
2
|
+
export declare const createGraphQL: () => GraphQLSchemaPlugin<import("..").WebsiteBuilderContext>[];
|
package/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import type { WebsiteBuilderContext } from "./context/types";
|
|
2
2
|
export declare const createWebsiteBuilder: () => (import("@webiny/handler-graphql").GraphQLSchemaPlugin<WebsiteBuilderContext>[] | import("@webiny/api").ContextPlugin<WebsiteBuilderContext>)[];
|
|
3
|
+
export type { WebsiteBuilderContext };
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_api","require","_WebsiteBuilder","_createGraphQL","createContext","createContextPlugin","context","websiteBuilder","WebsiteBuilder","create","name","createWebsiteBuilder","createGraphQL","exports"],"sources":["index.ts"],"sourcesContent":["import { createContextPlugin } from \"@webiny/api\";\nimport type { WebsiteBuilderContext } from \"./context/types\";\nimport { WebsiteBuilder } from \"./context/WebsiteBuilder\";\nimport { createGraphQL } from \"~/graphql/createGraphQL\";\n\nconst createContext = () => {\n return createContextPlugin<WebsiteBuilderContext>(\n async context => {\n context.websiteBuilder = await WebsiteBuilder.create(context);\n },\n { name: \"wb.createContext\" }\n );\n};\n\nexport const createWebsiteBuilder = () => {\n return [createContext(), createGraphQL()];\n};\n"],"mappings":";;;;;;AAAA,IAAAA,IAAA,GAAAC,OAAA;AAEA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AAEA,MAAMG,aAAa,GAAGA,CAAA,KAAM;EACxB,OAAO,IAAAC,wBAAmB,EACtB,MAAMC,OAAO,IAAI;IACbA,OAAO,CAACC,cAAc,GAAG,MAAMC,8BAAc,CAACC,MAAM,CAACH,OAAO,CAAC;EACjE,CAAC,EACD;IAAEI,IAAI,EAAE;EAAmB,CAC/B,CAAC;AACL,CAAC;AAEM,MAAMC,oBAAoB,GAAGA,CAAA,KAAM;EACtC,OAAO,CAACP,aAAa,CAAC,CAAC,EAAE,IAAAQ,4BAAa,EAAC,CAAC,CAAC;AAC7C,CAAC;AAACC,OAAA,CAAAF,oBAAA,GAAAA,oBAAA","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_api","require","_WebsiteBuilder","_createGraphQL","createContext","createContextPlugin","context","websiteBuilder","WebsiteBuilder","create","name","createWebsiteBuilder","createGraphQL","exports"],"sources":["index.ts"],"sourcesContent":["import { createContextPlugin } from \"@webiny/api\";\nimport type { WebsiteBuilderContext } from \"./context/types\";\nimport { WebsiteBuilder } from \"./context/WebsiteBuilder\";\nimport { createGraphQL } from \"~/graphql/createGraphQL\";\n\nconst createContext = () => {\n return createContextPlugin<WebsiteBuilderContext>(\n async context => {\n context.websiteBuilder = await WebsiteBuilder.create(context);\n },\n { name: \"wb.createContext\" }\n );\n};\n\nexport const createWebsiteBuilder = () => {\n return [createContext(), createGraphQL()];\n};\n\nexport type { WebsiteBuilderContext };\n"],"mappings":";;;;;;AAAA,IAAAA,IAAA,GAAAC,OAAA;AAEA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AAEA,MAAMG,aAAa,GAAGA,CAAA,KAAM;EACxB,OAAO,IAAAC,wBAAmB,EACtB,MAAMC,OAAO,IAAI;IACbA,OAAO,CAACC,cAAc,GAAG,MAAMC,8BAAc,CAACC,MAAM,CAACH,OAAO,CAAC;EACjE,CAAC,EACD;IAAEI,IAAI,EAAE;EAAmB,CAC/B,CAAC;AACL,CAAC;AAEM,MAAMC,oBAAoB,GAAGA,CAAA,KAAM;EACtC,OAAO,CAACP,aAAa,CAAC,CAAC,EAAE,IAAAQ,4BAAa,EAAC,CAAC,CAAC;AAC7C,CAAC;AAACC,OAAA,CAAAF,oBAAA,GAAAA,oBAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-website-builder",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.fdd9228b5d",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wb:base"
|
|
@@ -22,33 +22,33 @@
|
|
|
22
22
|
"directory": "dist"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@webiny/api": "0.0.0-unstable.
|
|
26
|
-
"@webiny/api-admin-settings": "0.0.0-unstable.
|
|
27
|
-
"@webiny/api-headless-cms": "0.0.0-unstable.
|
|
28
|
-
"@webiny/api-i18n": "0.0.0-unstable.
|
|
29
|
-
"@webiny/api-security": "0.0.0-unstable.
|
|
30
|
-
"@webiny/api-tenancy": "0.0.0-unstable.
|
|
31
|
-
"@webiny/error": "0.0.0-unstable.
|
|
32
|
-
"@webiny/handler": "0.0.0-unstable.
|
|
33
|
-
"@webiny/handler-graphql": "0.0.0-unstable.
|
|
34
|
-
"@webiny/pubsub": "0.0.0-unstable.
|
|
25
|
+
"@webiny/api": "0.0.0-unstable.fdd9228b5d",
|
|
26
|
+
"@webiny/api-admin-settings": "0.0.0-unstable.fdd9228b5d",
|
|
27
|
+
"@webiny/api-headless-cms": "0.0.0-unstable.fdd9228b5d",
|
|
28
|
+
"@webiny/api-i18n": "0.0.0-unstable.fdd9228b5d",
|
|
29
|
+
"@webiny/api-security": "0.0.0-unstable.fdd9228b5d",
|
|
30
|
+
"@webiny/api-tenancy": "0.0.0-unstable.fdd9228b5d",
|
|
31
|
+
"@webiny/error": "0.0.0-unstable.fdd9228b5d",
|
|
32
|
+
"@webiny/handler": "0.0.0-unstable.fdd9228b5d",
|
|
33
|
+
"@webiny/handler-graphql": "0.0.0-unstable.fdd9228b5d",
|
|
34
|
+
"@webiny/pubsub": "0.0.0-unstable.fdd9228b5d",
|
|
35
35
|
"lodash": "4.17.21"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@webiny/api-admin-users": "0.0.0-unstable.
|
|
39
|
-
"@webiny/api-file-manager": "0.0.0-unstable.
|
|
40
|
-
"@webiny/api-i18n-ddb": "0.0.0-unstable.
|
|
41
|
-
"@webiny/api-security-so-ddb": "0.0.0-unstable.
|
|
42
|
-
"@webiny/api-tenancy-so-ddb": "0.0.0-unstable.
|
|
43
|
-
"@webiny/api-wcp": "0.0.0-unstable.
|
|
44
|
-
"@webiny/handler-aws": "0.0.0-unstable.
|
|
45
|
-
"@webiny/plugins": "0.0.0-unstable.
|
|
46
|
-
"@webiny/project-utils": "0.0.0-unstable.
|
|
47
|
-
"@webiny/wcp": "0.0.0-unstable.
|
|
38
|
+
"@webiny/api-admin-users": "0.0.0-unstable.fdd9228b5d",
|
|
39
|
+
"@webiny/api-file-manager": "0.0.0-unstable.fdd9228b5d",
|
|
40
|
+
"@webiny/api-i18n-ddb": "0.0.0-unstable.fdd9228b5d",
|
|
41
|
+
"@webiny/api-security-so-ddb": "0.0.0-unstable.fdd9228b5d",
|
|
42
|
+
"@webiny/api-tenancy-so-ddb": "0.0.0-unstable.fdd9228b5d",
|
|
43
|
+
"@webiny/api-wcp": "0.0.0-unstable.fdd9228b5d",
|
|
44
|
+
"@webiny/handler-aws": "0.0.0-unstable.fdd9228b5d",
|
|
45
|
+
"@webiny/plugins": "0.0.0-unstable.fdd9228b5d",
|
|
46
|
+
"@webiny/project-utils": "0.0.0-unstable.fdd9228b5d",
|
|
47
|
+
"@webiny/wcp": "0.0.0-unstable.fdd9228b5d",
|
|
48
48
|
"graphql": "15.9.0",
|
|
49
49
|
"prettier": "2.8.8",
|
|
50
50
|
"rimraf": "6.0.1",
|
|
51
51
|
"typescript": "5.3.3"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "fdd9228b5d2636463e8a34b6e0d26eea1e29c01d"
|
|
54
54
|
}
|