@strapi/plugin-graphql 5.0.0-beta.7 → 5.0.0-beta.9
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/dist/admin/index.js +13 -12
- package/dist/admin/index.js.map +1 -1
- package/dist/admin/index.mjs +13 -12
- package/dist/admin/index.mjs.map +1 -1
- package/package.json +14 -13
package/dist/admin/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const __variableDynamicImportRuntimeHelper = (glob, path) => {
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
const name$1 = "@strapi/plugin-graphql";
|
|
12
|
-
const version = "5.0.0-beta.
|
|
12
|
+
const version = "5.0.0-beta.8";
|
|
13
13
|
const description = "Adds GraphQL endpoint with default API methods.";
|
|
14
14
|
const repository = {
|
|
15
15
|
type: "git",
|
|
@@ -51,10 +51,10 @@ const files = [
|
|
|
51
51
|
"strapi-server.js"
|
|
52
52
|
];
|
|
53
53
|
const scripts = {
|
|
54
|
-
build: "strapi
|
|
54
|
+
build: "strapi-plugin build",
|
|
55
55
|
clean: "run -T rimraf ./dist",
|
|
56
56
|
lint: "run -T eslint .",
|
|
57
|
-
watch: "strapi
|
|
57
|
+
watch: "strapi-plugin watch"
|
|
58
58
|
};
|
|
59
59
|
const dependencies = {
|
|
60
60
|
"@apollo/server": "4.10.0",
|
|
@@ -62,9 +62,9 @@ const dependencies = {
|
|
|
62
62
|
"@graphql-tools/schema": "10.0.3",
|
|
63
63
|
"@graphql-tools/utils": "^10.1.3",
|
|
64
64
|
"@koa/cors": "5.0.0",
|
|
65
|
-
"@strapi/design-system": "2.0.0-beta.
|
|
66
|
-
"@strapi/icons": "2.0.0-beta.
|
|
67
|
-
"@strapi/utils": "5.0.0-beta.
|
|
65
|
+
"@strapi/design-system": "2.0.0-beta.4",
|
|
66
|
+
"@strapi/icons": "2.0.0-beta.4",
|
|
67
|
+
"@strapi/utils": "5.0.0-beta.8",
|
|
68
68
|
graphql: "^16.8.1",
|
|
69
69
|
"graphql-depth-limit": "^1.1.0",
|
|
70
70
|
"graphql-playground-middleware-koa": "^1.6.21",
|
|
@@ -76,19 +76,20 @@ const dependencies = {
|
|
|
76
76
|
pluralize: "8.0.0"
|
|
77
77
|
};
|
|
78
78
|
const devDependencies = {
|
|
79
|
-
"@strapi/
|
|
80
|
-
"@strapi/
|
|
79
|
+
"@strapi/sdk-plugin": "^5.0.0",
|
|
80
|
+
"@strapi/strapi": "5.0.0-beta.8",
|
|
81
|
+
"@strapi/types": "5.0.0-beta.8",
|
|
81
82
|
"@types/graphql-depth-limit": "1.1.5",
|
|
82
83
|
"@types/koa-bodyparser": "4.3.12",
|
|
83
84
|
"@types/koa__cors": "5.0.0",
|
|
84
85
|
"cross-env": "^7.0.3",
|
|
85
|
-
"eslint-config-custom": "5.0.0-beta.
|
|
86
|
+
"eslint-config-custom": "5.0.0-beta.8",
|
|
86
87
|
koa: "2.15.2",
|
|
87
|
-
react: "
|
|
88
|
-
"react-dom": "
|
|
88
|
+
react: "18.3.1",
|
|
89
|
+
"react-dom": "18.3.1",
|
|
89
90
|
"react-router-dom": "6.22.3",
|
|
90
91
|
"styled-components": "6.1.8",
|
|
91
|
-
tsconfig: "5.0.0-beta.
|
|
92
|
+
tsconfig: "5.0.0-beta.8",
|
|
92
93
|
typescript: "5.3.2"
|
|
93
94
|
};
|
|
94
95
|
const peerDependencies = {
|
package/dist/admin/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../admin/src/pluginId.ts","../../admin/src/utils/prefixPluginTranslations.ts","../../admin/src/index.ts"],"sourcesContent":["export const pluginId = 'graphql';\n","type TradOptions = Record<string, string>;\n\nconst prefixPluginTranslations = (trad: TradOptions, pluginId: string): TradOptions => {\n if (!pluginId) {\n throw new TypeError(\"pluginId can't be empty\");\n }\n return Object.keys(trad).reduce((acc, current) => {\n acc[`${pluginId}.${current}`] = trad[current];\n return acc;\n }, {} as TradOptions);\n};\n\nexport { prefixPluginTranslations };\n","import pluginPkg from '../../package.json';\n\nimport { pluginId } from './pluginId';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nconst name = pluginPkg.strapi.name;\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n // TODO: we need to have the type for StrapiApp done from `@strapi/admin` package.\n register(app: any) {\n app.registerPlugin({\n id: pluginId,\n name,\n });\n },\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, pluginId),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n"],"names":["pluginId"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../admin/src/pluginId.ts","../../admin/src/utils/prefixPluginTranslations.ts","../../admin/src/index.ts"],"sourcesContent":["export const pluginId = 'graphql';\n","type TradOptions = Record<string, string>;\n\nconst prefixPluginTranslations = (trad: TradOptions, pluginId: string): TradOptions => {\n if (!pluginId) {\n throw new TypeError(\"pluginId can't be empty\");\n }\n return Object.keys(trad).reduce((acc, current) => {\n acc[`${pluginId}.${current}`] = trad[current];\n return acc;\n }, {} as TradOptions);\n};\n\nexport { prefixPluginTranslations };\n","import pluginPkg from '../../package.json';\n\nimport { pluginId } from './pluginId';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nconst name = pluginPkg.strapi.name;\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n // TODO: we need to have the type for StrapiApp done from `@strapi/admin` package.\n register(app: any) {\n app.registerPlugin({\n id: pluginId,\n name,\n });\n },\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, pluginId),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n"],"names":["pluginId"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAM,WAAW;ACExB,MAAM,2BAA2B,CAAC,MAAmBA,cAAkC;AACrF,MAAI,CAACA,WAAU;AACP,UAAA,IAAI,UAAU,yBAAyB;AAAA,EAC/C;AACA,SAAO,OAAO,KAAK,IAAI,EAAE,OAAO,CAAC,KAAK,YAAY;AAChD,QAAI,GAAGA,SAAQ,IAAI,OAAO,EAAE,IAAI,KAAK,OAAO;AACrC,WAAA;AAAA,EACT,GAAG,CAAiB,CAAA;AACtB;ACLA,MAAM,OAAO,UAAU,OAAO;AAG9B,MAAe,QAAA;AAAA;AAAA,EAEb,SAAS,KAAU;AACjB,QAAI,eAAe;AAAA,MACjB,IAAI;AAAA,MACJ;AAAA,IAAA,CACD;AAAA,EACH;AAAA,EACA,YAAY;AAAA,EAAC;AAAA,EACb,MAAM,cAAc,EAAE,WAAkC;AAChD,UAAA,gBAAgB,MAAM,QAAQ;AAAA,MAClC,QAAQ,IAAI,CAAC,WAAW;AACf,eAAA,qCAA+B,uBAAA,OAAA,EAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,IAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,CAAA,GAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,CAAA,GAAA,0BAAA,MAAA,qCAAA,2BAAA,CAAA,GAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,IAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,IAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,CAAA,GAAA,0BAAA,MAAA,qCAAA,2BAAA,CAAA,GAAA,+BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,gCAAA,CAAA,GAAA,0BAAA,MAAA,QAAA,QAAA,EAAA,KAAA,MAAA,QAAA,2BAAA,GAAA,CAAA,GAAA,kBAAA,MAAA,OAAA,EACnC,KAAK,CAAC,EAAE,SAAS,KAAA,MAAW;AACpB,iBAAA;AAAA,YACL,MAAM,yBAAyB,MAAM,QAAQ;AAAA,YAC7C;AAAA,UAAA;AAAA,QACF,CACD,EACA,MAAM,MAAM;AACJ,iBAAA;AAAA,YACL,MAAM,CAAC;AAAA,YACP;AAAA,UAAA;AAAA,QACF,CACD;AAAA,MAAA,CACJ;AAAA,IAAA;AAGI,WAAA,QAAQ,QAAQ,aAAa;AAAA,EACtC;AACF;;"}
|
package/dist/admin/index.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const __variableDynamicImportRuntimeHelper = (glob, path) => {
|
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
10
|
const name$1 = "@strapi/plugin-graphql";
|
|
11
|
-
const version = "5.0.0-beta.
|
|
11
|
+
const version = "5.0.0-beta.8";
|
|
12
12
|
const description = "Adds GraphQL endpoint with default API methods.";
|
|
13
13
|
const repository = {
|
|
14
14
|
type: "git",
|
|
@@ -50,10 +50,10 @@ const files = [
|
|
|
50
50
|
"strapi-server.js"
|
|
51
51
|
];
|
|
52
52
|
const scripts = {
|
|
53
|
-
build: "strapi
|
|
53
|
+
build: "strapi-plugin build",
|
|
54
54
|
clean: "run -T rimraf ./dist",
|
|
55
55
|
lint: "run -T eslint .",
|
|
56
|
-
watch: "strapi
|
|
56
|
+
watch: "strapi-plugin watch"
|
|
57
57
|
};
|
|
58
58
|
const dependencies = {
|
|
59
59
|
"@apollo/server": "4.10.0",
|
|
@@ -61,9 +61,9 @@ const dependencies = {
|
|
|
61
61
|
"@graphql-tools/schema": "10.0.3",
|
|
62
62
|
"@graphql-tools/utils": "^10.1.3",
|
|
63
63
|
"@koa/cors": "5.0.0",
|
|
64
|
-
"@strapi/design-system": "2.0.0-beta.
|
|
65
|
-
"@strapi/icons": "2.0.0-beta.
|
|
66
|
-
"@strapi/utils": "5.0.0-beta.
|
|
64
|
+
"@strapi/design-system": "2.0.0-beta.4",
|
|
65
|
+
"@strapi/icons": "2.0.0-beta.4",
|
|
66
|
+
"@strapi/utils": "5.0.0-beta.8",
|
|
67
67
|
graphql: "^16.8.1",
|
|
68
68
|
"graphql-depth-limit": "^1.1.0",
|
|
69
69
|
"graphql-playground-middleware-koa": "^1.6.21",
|
|
@@ -75,19 +75,20 @@ const dependencies = {
|
|
|
75
75
|
pluralize: "8.0.0"
|
|
76
76
|
};
|
|
77
77
|
const devDependencies = {
|
|
78
|
-
"@strapi/
|
|
79
|
-
"@strapi/
|
|
78
|
+
"@strapi/sdk-plugin": "^5.0.0",
|
|
79
|
+
"@strapi/strapi": "5.0.0-beta.8",
|
|
80
|
+
"@strapi/types": "5.0.0-beta.8",
|
|
80
81
|
"@types/graphql-depth-limit": "1.1.5",
|
|
81
82
|
"@types/koa-bodyparser": "4.3.12",
|
|
82
83
|
"@types/koa__cors": "5.0.0",
|
|
83
84
|
"cross-env": "^7.0.3",
|
|
84
|
-
"eslint-config-custom": "5.0.0-beta.
|
|
85
|
+
"eslint-config-custom": "5.0.0-beta.8",
|
|
85
86
|
koa: "2.15.2",
|
|
86
|
-
react: "
|
|
87
|
-
"react-dom": "
|
|
87
|
+
react: "18.3.1",
|
|
88
|
+
"react-dom": "18.3.1",
|
|
88
89
|
"react-router-dom": "6.22.3",
|
|
89
90
|
"styled-components": "6.1.8",
|
|
90
|
-
tsconfig: "5.0.0-beta.
|
|
91
|
+
tsconfig: "5.0.0-beta.8",
|
|
91
92
|
typescript: "5.3.2"
|
|
92
93
|
};
|
|
93
94
|
const peerDependencies = {
|
package/dist/admin/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../admin/src/pluginId.ts","../../admin/src/utils/prefixPluginTranslations.ts","../../admin/src/index.ts"],"sourcesContent":["export const pluginId = 'graphql';\n","type TradOptions = Record<string, string>;\n\nconst prefixPluginTranslations = (trad: TradOptions, pluginId: string): TradOptions => {\n if (!pluginId) {\n throw new TypeError(\"pluginId can't be empty\");\n }\n return Object.keys(trad).reduce((acc, current) => {\n acc[`${pluginId}.${current}`] = trad[current];\n return acc;\n }, {} as TradOptions);\n};\n\nexport { prefixPluginTranslations };\n","import pluginPkg from '../../package.json';\n\nimport { pluginId } from './pluginId';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nconst name = pluginPkg.strapi.name;\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n // TODO: we need to have the type for StrapiApp done from `@strapi/admin` package.\n register(app: any) {\n app.registerPlugin({\n id: pluginId,\n name,\n });\n },\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, pluginId),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n"],"names":["pluginId"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../admin/src/pluginId.ts","../../admin/src/utils/prefixPluginTranslations.ts","../../admin/src/index.ts"],"sourcesContent":["export const pluginId = 'graphql';\n","type TradOptions = Record<string, string>;\n\nconst prefixPluginTranslations = (trad: TradOptions, pluginId: string): TradOptions => {\n if (!pluginId) {\n throw new TypeError(\"pluginId can't be empty\");\n }\n return Object.keys(trad).reduce((acc, current) => {\n acc[`${pluginId}.${current}`] = trad[current];\n return acc;\n }, {} as TradOptions);\n};\n\nexport { prefixPluginTranslations };\n","import pluginPkg from '../../package.json';\n\nimport { pluginId } from './pluginId';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nconst name = pluginPkg.strapi.name;\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n // TODO: we need to have the type for StrapiApp done from `@strapi/admin` package.\n register(app: any) {\n app.registerPlugin({\n id: pluginId,\n name,\n });\n },\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, pluginId),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n"],"names":["pluginId"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAM,WAAW;ACExB,MAAM,2BAA2B,CAAC,MAAmBA,cAAkC;AACrF,MAAI,CAACA,WAAU;AACP,UAAA,IAAI,UAAU,yBAAyB;AAAA,EAC/C;AACA,SAAO,OAAO,KAAK,IAAI,EAAE,OAAO,CAAC,KAAK,YAAY;AAChD,QAAI,GAAGA,SAAQ,IAAI,OAAO,EAAE,IAAI,KAAK,OAAO;AACrC,WAAA;AAAA,EACT,GAAG,CAAiB,CAAA;AACtB;ACLA,MAAM,OAAO,UAAU,OAAO;AAG9B,MAAe,QAAA;AAAA;AAAA,EAEb,SAAS,KAAU;AACjB,QAAI,eAAe;AAAA,MACjB,IAAI;AAAA,MACJ;AAAA,IAAA,CACD;AAAA,EACH;AAAA,EACA,YAAY;AAAA,EAAC;AAAA,EACb,MAAM,cAAc,EAAE,WAAkC;AAChD,UAAA,gBAAgB,MAAM,QAAQ;AAAA,MAClC,QAAQ,IAAI,CAAC,WAAW;AACf,eAAA,qCAA+B,uBAAA,OAAA,EAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,GAAA,+BAAA,MAAA,OAAA,iCAAA,GAAA,0BAAA,MAAA,OAAA,4BAAA,EAAA,CAAA,GAAA,kBAAA,MAAA,OAAA,EACnC,KAAK,CAAC,EAAE,SAAS,KAAA,MAAW;AACpB,iBAAA;AAAA,YACL,MAAM,yBAAyB,MAAM,QAAQ;AAAA,YAC7C;AAAA,UAAA;AAAA,QACF,CACD,EACA,MAAM,MAAM;AACJ,iBAAA;AAAA,YACL,MAAM,CAAC;AAAA,YACP;AAAA,UAAA;AAAA,QACF,CACD;AAAA,MAAA,CACJ;AAAA,IAAA;AAGI,WAAA,QAAQ,QAAQ,aAAa;AAAA,EACtC;AACF;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/plugin-graphql",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.9",
|
|
4
4
|
"description": "Adds GraphQL endpoint with default API methods.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"strapi-server.js"
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
|
-
"build": "strapi
|
|
45
|
+
"build": "strapi-plugin build",
|
|
46
46
|
"clean": "run -T rimraf ./dist",
|
|
47
47
|
"lint": "run -T eslint .",
|
|
48
|
-
"watch": "strapi
|
|
48
|
+
"watch": "strapi-plugin watch"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@apollo/server": "4.10.0",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@graphql-tools/schema": "10.0.3",
|
|
54
54
|
"@graphql-tools/utils": "^10.1.3",
|
|
55
55
|
"@koa/cors": "5.0.0",
|
|
56
|
-
"@strapi/design-system": "2.0.0-beta.
|
|
57
|
-
"@strapi/icons": "2.0.0-beta.
|
|
58
|
-
"@strapi/utils": "5.0.0-beta.
|
|
56
|
+
"@strapi/design-system": "2.0.0-beta.4",
|
|
57
|
+
"@strapi/icons": "2.0.0-beta.4",
|
|
58
|
+
"@strapi/utils": "5.0.0-beta.9",
|
|
59
59
|
"graphql": "^16.8.1",
|
|
60
60
|
"graphql-depth-limit": "^1.1.0",
|
|
61
61
|
"graphql-playground-middleware-koa": "^1.6.21",
|
|
@@ -67,19 +67,20 @@
|
|
|
67
67
|
"pluralize": "8.0.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@strapi/
|
|
71
|
-
"@strapi/
|
|
70
|
+
"@strapi/sdk-plugin": "^5.0.0",
|
|
71
|
+
"@strapi/strapi": "5.0.0-beta.9",
|
|
72
|
+
"@strapi/types": "5.0.0-beta.9",
|
|
72
73
|
"@types/graphql-depth-limit": "1.1.5",
|
|
73
74
|
"@types/koa-bodyparser": "4.3.12",
|
|
74
75
|
"@types/koa__cors": "5.0.0",
|
|
75
76
|
"cross-env": "^7.0.3",
|
|
76
|
-
"eslint-config-custom": "5.0.0-beta.
|
|
77
|
+
"eslint-config-custom": "5.0.0-beta.9",
|
|
77
78
|
"koa": "2.15.2",
|
|
78
|
-
"react": "
|
|
79
|
-
"react-dom": "
|
|
79
|
+
"react": "18.3.1",
|
|
80
|
+
"react-dom": "18.3.1",
|
|
80
81
|
"react-router-dom": "6.22.3",
|
|
81
82
|
"styled-components": "6.1.8",
|
|
82
|
-
"tsconfig": "5.0.0-beta.
|
|
83
|
+
"tsconfig": "5.0.0-beta.9",
|
|
83
84
|
"typescript": "5.3.2"
|
|
84
85
|
},
|
|
85
86
|
"peerDependencies": {
|
|
@@ -99,5 +100,5 @@
|
|
|
99
100
|
"description": "Adds GraphQL endpoint with default API methods.",
|
|
100
101
|
"kind": "plugin"
|
|
101
102
|
},
|
|
102
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "0a5a7b91474a18df8a8c6c81613cca1f9c598445"
|
|
103
104
|
}
|