@kiwano/core 0.0.5 → 0.0.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.
@@ -28,6 +28,12 @@ class CreateInputObjectTypeBuilder extends inputObjectType_1.InputObjectTypeBuil
28
28
  if (fieldInfo.nonNull) {
29
29
  inputField.nonNull();
30
30
  }
31
+ if (fieldInfo.list) {
32
+ inputField.list();
33
+ }
34
+ if (fieldInfo.nonNullList) {
35
+ inputField.nonNullList();
36
+ }
31
37
  this.field(inputField);
32
38
  }
33
39
  }
@@ -28,6 +28,12 @@ class UpdateInputObjectTypeBuilder extends inputObjectType_1.InputObjectTypeBuil
28
28
  if (util_1.isFieldId(fieldInfo)) {
29
29
  inputField.nonNull();
30
30
  }
31
+ if (fieldInfo.list) {
32
+ inputField.list();
33
+ }
34
+ if (fieldInfo.nonNullList) {
35
+ inputField.nonNullList();
36
+ }
31
37
  this.field(inputField);
32
38
  }
33
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiwano/core",
3
- "version": "0.0.5",
3
+ "version": "0.0.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",