@powerlines/plugin-graphql 0.1.385 → 0.1.387
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/types/plugin.d.cts
CHANGED
|
@@ -14,9 +14,9 @@ type GraphQLPluginOptions = Partial<Omit<YamlCliFlags, "config" | "watch">> & {
|
|
|
14
14
|
* The path to the output file generated by the plugin.
|
|
15
15
|
*
|
|
16
16
|
* @remarks
|
|
17
|
-
* If using the default value, the file can be imported from "powerlines:graphql/schema-name". This field allows the use of the "\{
|
|
17
|
+
* If using the default value, the file can be imported from "powerlines:graphql/schema-name". This field allows the use of the "\{builtinsPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
|
|
18
18
|
*
|
|
19
|
-
* @defaultValue "\{
|
|
19
|
+
* @defaultValue "\{builtinsPath\}/graphql"
|
|
20
20
|
*/
|
|
21
21
|
outputPath?: string;
|
|
22
22
|
};
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -14,9 +14,9 @@ type GraphQLPluginOptions = Partial<Omit<YamlCliFlags, "config" | "watch">> & {
|
|
|
14
14
|
* The path to the output file generated by the plugin.
|
|
15
15
|
*
|
|
16
16
|
* @remarks
|
|
17
|
-
* If using the default value, the file can be imported from "powerlines:graphql/schema-name". This field allows the use of the "\{
|
|
17
|
+
* If using the default value, the file can be imported from "powerlines:graphql/schema-name". This field allows the use of the "\{builtinsPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
|
|
18
18
|
*
|
|
19
|
-
* @defaultValue "\{
|
|
19
|
+
* @defaultValue "\{builtinsPath\}/graphql"
|
|
20
20
|
*/
|
|
21
21
|
outputPath?: string;
|
|
22
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-graphql",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.387",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Powerlines plugin to generate project code from GraphQL schemas.",
|
|
6
6
|
"keywords": ["graphql", "powerlines", "storm-software", "powerlines-plugin"],
|
|
@@ -91,19 +91,19 @@
|
|
|
91
91
|
"files": ["dist/**/*"],
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@graphql-codegen/cli": "^6.2.1",
|
|
94
|
-
"@storm-software/config-tools": "^1.189.
|
|
94
|
+
"@storm-software/config-tools": "^1.189.72",
|
|
95
95
|
"@stryke/path": "^0.27.3",
|
|
96
96
|
"@stryke/type-checks": "^0.6.0",
|
|
97
97
|
"@stryke/types": "^0.11.2",
|
|
98
|
-
"defu": "^6.1.
|
|
98
|
+
"defu": "^6.1.6",
|
|
99
99
|
"jiti": "^2.6.1",
|
|
100
|
-
"powerlines": "^0.42.
|
|
100
|
+
"powerlines": "^0.42.27"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@graphql-codegen/plugin-helpers": "^6.2.0",
|
|
104
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
104
|
+
"@powerlines/plugin-plugin": "^0.12.337",
|
|
105
105
|
"@types/node": "^25.5.0"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": { "access": "public" },
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "36659bb9272f4247dca475613e45451f0adedcfa"
|
|
109
109
|
}
|