@graphql-codegen/java-resolvers 2.2.8 → 2.2.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/config.d.ts +5 -5
- package/package.json +4 -4
package/config.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface JavaResolversPluginRawConfig extends RawConfig {
|
|
|
4
4
|
* @description Customize the Java package name. The default package name will be generated according to the output file path.
|
|
5
5
|
*
|
|
6
6
|
* @exampleMarkdown
|
|
7
|
-
* ```
|
|
7
|
+
* ```yaml
|
|
8
8
|
* generates:
|
|
9
9
|
* src/main/java/my-org/my-app/Resolvers.java:
|
|
10
10
|
* plugins:
|
|
@@ -20,7 +20,7 @@ export interface JavaResolversPluginRawConfig extends RawConfig {
|
|
|
20
20
|
* You can use a direct path to the package, or use `package#class` syntax to have it imported.
|
|
21
21
|
*
|
|
22
22
|
* @exampleMarkdown
|
|
23
|
-
* ```
|
|
23
|
+
* ```yaml
|
|
24
24
|
* generates:
|
|
25
25
|
* src/main/java/my-org/my-app/Resolvers.java:
|
|
26
26
|
* plugins:
|
|
@@ -40,7 +40,7 @@ export interface JavaResolversPluginRawConfig extends RawConfig {
|
|
|
40
40
|
* The default mapper is Java's `Object`.
|
|
41
41
|
*
|
|
42
42
|
* @exampleMarkdown
|
|
43
|
-
* ```
|
|
43
|
+
* ```yaml
|
|
44
44
|
* generates:
|
|
45
45
|
* src/main/java/my-org/my-app/Resolvers.java:
|
|
46
46
|
* plugins:
|
|
@@ -55,7 +55,7 @@ export interface JavaResolversPluginRawConfig extends RawConfig {
|
|
|
55
55
|
* @description Allow you to customize the parent class name.
|
|
56
56
|
*
|
|
57
57
|
* @exampleMarkdown
|
|
58
|
-
* ```
|
|
58
|
+
* ```yaml
|
|
59
59
|
* generates:
|
|
60
60
|
* src/main/java/my-org/my-app/Resolvers.java:
|
|
61
61
|
* plugins:
|
|
@@ -70,7 +70,7 @@ export interface JavaResolversPluginRawConfig extends RawConfig {
|
|
|
70
70
|
* @description Allow you to customize the list type.
|
|
71
71
|
*
|
|
72
72
|
* @exampleMarkdown
|
|
73
|
-
* ```
|
|
73
|
+
* ```yaml
|
|
74
74
|
* generates:
|
|
75
75
|
* src/main/java/my-org/my-app/Resolvers.java:
|
|
76
76
|
* plugins:
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/java-resolvers",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.9",
|
|
4
4
|
"description": "GraphQL Code Generator plugin for generating resolvers signature for Java backends",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@graphql-codegen/java-common": "^2.1.
|
|
9
|
+
"@graphql-codegen/java-common": "^2.1.16",
|
|
10
10
|
"@graphql-codegen/plugin-helpers": "^2.4.0",
|
|
11
|
-
"@graphql-codegen/visitor-plugin-common": "2.7.
|
|
12
|
-
"tslib": "~2.
|
|
11
|
+
"@graphql-codegen/visitor-plugin-common": "2.7.5",
|
|
12
|
+
"tslib": "~2.4.0"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|