@conduit-client/generator-ts 3.13.0 → 3.13.1
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/v1/api-module-generator-service.d.ts +2 -1
- package/dist/types/v1/generators/bindings-generator.d.ts +4 -4
- package/dist/types/v1/generators/cache-control-generator.d.ts +1 -1
- package/dist/types/v1/generators/graphql-imperative-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/graphql-imperative-legacy-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/graphql-mutation-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/graphql-wire-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/imperative-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/imperative-legacy-binding-generator.d.ts +1 -1
- package/dist/types/v1/generators/normalized-cache-control-generator-mixin.d.ts +1 -1
- package/dist/types/v1/generators/utils.d.ts +2 -2
- package/dist/types/v1/generators/wire-binding-generator.d.ts +1 -1
- package/dist/types/v1/model/aura-graphql-command-model.d.ts +2 -2
- package/dist/types/v1/model/graphql-schema-model.d.ts +2 -2
- package/dist/types/v1/model/http-graphql-command-model.d.ts +2 -2
- package/dist/types/v1/normalization/graphql/base-type-generator.d.ts +1 -1
- package/dist/types/v1/normalization/graphql/cursor-connection-type-generator.d.ts +4 -3
- package/dist/types/v1/normalization/graphql/document-root-type-generator.d.ts +4 -4
- package/dist/types/v1/normalization/graphql/identifiable-type-generator.d.ts +5 -4
- package/dist/types/v1/normalization/graphql/interface-type-generator.d.ts +3 -2
- package/dist/types/v1/normalization/graphql/unidentifiable-type-generator.d.ts +4 -3
- package/dist/types/v1/normalization/graphql/union-type-generator.d.ts +3 -2
- package/dist/types/v1/normalization/graphql-type-generator.d.ts +6 -6
- package/dist/types/v1/normalization/graphql-type-registry-generator.d.ts +1 -1
- package/dist/types/v1/normalization/identifiable-type-generator.d.ts +1 -1
- package/dist/types/v1/normalization/normalize-code-gen/normalize-generator-service.d.ts +3 -3
- package/dist/types/v1/normalization/normalized-type-generator.d.ts +2 -2
- package/dist/types/v1/normalization/type-registry-generator.d.ts +3 -2
- package/dist/types/v1/normalization/unidentifiable-type-generator.d.ts +1 -1
- package/dist/types/v1/types/normalized-type-definition.d.ts +4 -4
- package/dist/types/v1/types/resolve-all-of-type.d.ts +2 -2
- package/dist/v1/index.js +6451 -4282
- package/dist/v1/index.js.map +1 -1
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduit-client/generator-ts",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"description": "Luvio TypeScript code generation",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,12 +29,13 @@
|
|
|
29
29
|
"watch": "npm run build --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@conduit-client/jsonschema-validate": "3.13.
|
|
33
|
-
"@conduit-client/model": "3.13.
|
|
34
|
-
"@conduit-client/service-aura-network": "3.13.
|
|
35
|
-
"@conduit-client/service-fetch-network": "3.13.
|
|
36
|
-
"@conduit-client/service-provisioner": "3.13.
|
|
37
|
-
"@conduit-client/utils": "3.13.
|
|
32
|
+
"@conduit-client/jsonschema-validate": "3.13.1",
|
|
33
|
+
"@conduit-client/model": "3.13.1",
|
|
34
|
+
"@conduit-client/service-aura-network": "3.13.1",
|
|
35
|
+
"@conduit-client/service-fetch-network": "3.13.1",
|
|
36
|
+
"@conduit-client/service-provisioner": "3.13.1",
|
|
37
|
+
"@conduit-client/utils": "3.13.1",
|
|
38
|
+
"graphql": "16.11.0",
|
|
38
39
|
"prettier": "^2.7.1"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|