@schema-hub/zod-graphql-query-builder 0.0.16 → 0.0.17

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/package.json CHANGED
@@ -46,5 +46,5 @@
46
46
  "./zod-graphql-query-builder/default-query-builder.js"
47
47
  ],
48
48
  "type": "module",
49
- "version": "0.0.16"
49
+ "version": "0.0.17"
50
50
  }
package/sbom.cdx.json CHANGED
@@ -9,16 +9,16 @@
9
9
  {
10
10
  "type": "application",
11
11
  "name": "packtory",
12
- "version": "0.0.80"
12
+ "version": "0.0.84"
13
13
  }
14
14
  ]
15
15
  },
16
16
  "component": {
17
17
  "type": "library",
18
18
  "name": "@schema-hub/zod-graphql-query-builder",
19
- "version": "0.0.16",
20
- "bom-ref": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.16",
21
- "purl": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.16"
19
+ "version": "0.0.17",
20
+ "bom-ref": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.17",
21
+ "purl": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.17"
22
22
  }
23
23
  },
24
24
  "components": [
@@ -51,7 +51,7 @@
51
51
  ],
52
52
  "dependencies": [
53
53
  {
54
- "ref": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.16",
54
+ "ref": "pkg:npm/@schema-hub/zod-graphql-query-builder@0.0.17",
55
55
  "dependsOn": [
56
56
  "pkg:npm/graphql@17.0.2",
57
57
  "pkg:npm/zod@%5E4.0.5"
@@ -1,11 +0,0 @@
1
- import type { FragmentDefinition } from './fragment-definitions.ts';
2
- import type { FieldSchema, FieldShape } from './query-schema.ts';
3
- import type { FieldOptionsRegistry } from './type-name.ts';
4
- export type BuildContext = {
5
- counts: ReadonlyMap<FieldSchema, number>;
6
- nameForSchema: Map<FieldSchema, string>;
7
- counterPerTypeName: Map<string, number>;
8
- definitions: Map<string, FragmentDefinition>;
9
- };
10
- export declare function createBuildContext(registry: FieldOptionsRegistry, rootShape: FieldShape): BuildContext;
11
- //# sourceMappingURL=build-context.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"build-context.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/build-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEjE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAK3D,MAAM,MAAM,YAAY,GAAG;IACvB,MAAM,EAAE,WAAW,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC;IACzC,aAAa,EAAE,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC;IACxC,kBAAkB,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC;CAChD,CAAC;AAGF,wBAAgB,kBAAkB,CAC9B,QAAQ,EAAE,oBAAoB,EAC9B,SAAS,EAAE,UAAU,GACtB,YAAY,CAOd"}
@@ -1,7 +0,0 @@
1
- export type FragmentDefinition = {
2
- readonly typeName: string;
3
- readonly body: string;
4
- readonly referencedVariables: ReadonlySet<string>;
5
- };
6
- export declare function formatFragmentDefinitions(definitions: ReadonlyMap<string, FragmentDefinition>): string;
7
- //# sourceMappingURL=fragment-definitions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fragment-definitions.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/fragment-definitions.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAAG;IAC7B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,mBAAmB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CACrD,CAAC;AAEF,wBAAgB,yBAAyB,CAAC,WAAW,EAAE,WAAW,CAAC,MAAM,EAAE,kBAAkB,CAAC,GAAG,MAAM,CAatG"}
@@ -1,3 +0,0 @@
1
- import type { FieldShape, QuerySchema } from './query-schema.ts';
2
- export declare function extractRootShape(schema: QuerySchema): FieldShape;
3
- //# sourceMappingURL=root-shape.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"root-shape.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/root-shape.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEjE,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,WAAW,GAAG,UAAU,CAKhE"}
@@ -1,10 +0,0 @@
1
- import type { BuildContext } from './build-context.ts';
2
- import { type FieldSchema, type FieldShape } from './query-schema.ts';
3
- import { type FieldOptionsRegistry } from './type-name.ts';
4
- export type SerializedRootShape = {
5
- readonly bodyEntries: readonly string[];
6
- readonly referencedVariables: ReadonlySet<string>;
7
- };
8
- export declare function collectSchemaReferences(registry: FieldOptionsRegistry, rootShape: FieldShape): Map<FieldSchema, number>;
9
- export declare function serializeRootShape(registry: FieldOptionsRegistry, rootShape: FieldShape, context: BuildContext): SerializedRootShape;
10
- //# sourceMappingURL=serializer.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"serializer.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/serializer.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,OAAO,EAEH,KAAK,WAAW,EAEhB,KAAK,UAAU,EAclB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACH,KAAK,oBAAoB,EAG5B,MAAM,gBAAgB,CAAC;AAKxB,MAAM,MAAM,mBAAmB,GAAG;IAC9B,QAAQ,CAAC,WAAW,EAAE,SAAS,MAAM,EAAE,CAAC;IACxC,QAAQ,CAAC,mBAAmB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CACrD,CAAC;AAgJF,wBAAgB,uBAAuB,CACnC,QAAQ,EAAE,oBAAoB,EAC9B,SAAS,EAAE,UAAU,GACtB,GAAG,CAAC,WAAW,EAAE,MAAM,CAAC,CAiC1B;AAoQD,wBAAgB,kBAAkB,CAC9B,QAAQ,EAAE,oBAAoB,EAC9B,SAAS,EAAE,UAAU,EACrB,OAAO,EAAE,YAAY,GACtB,mBAAmB,CAcrB"}
@@ -1,2 +0,0 @@
1
- export declare function isValidGraphqlName(value: string): boolean;
2
- //# sourceMappingURL=name.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"name.d.ts","sourceRoot":"","sources":["../../../../../source/zod-graphql-query-builder/values/name.ts"],"names":[],"mappings":"AAEA,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAEzD"}
@@ -1,3 +0,0 @@
1
- import { type GraphqlValue, type NormalizedGraphqlValue } from './value.ts';
2
- export declare function normalizeParameterList(parameters: Readonly<Record<string, GraphqlValue>>): NormalizedGraphqlValue;
3
- //# sourceMappingURL=parameter-list.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameter-list.d.ts","sourceRoot":"","sources":["../../../../../source/zod-graphql-query-builder/values/parameter-list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,sBAAsB,EAAyB,MAAM,YAAY,CAAC;AAGnG,wBAAgB,sBAAsB,CAAC,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC,GAAG,sBAAsB,CAwBjH"}
@@ -1,3 +0,0 @@
1
- export declare function hasProperty<Value extends Record<string, unknown>, Property extends string>(value: Value, property: Property): value is Record<Property, unknown> & Value;
2
- export declare function isRecord(value: unknown): value is Record<string, unknown>;
3
- //# sourceMappingURL=record.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"record.d.ts","sourceRoot":"","sources":["../../../../../source/zod-graphql-query-builder/values/record.ts"],"names":[],"mappings":"AAAA,wBAAgB,WAAW,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,QAAQ,SAAS,MAAM,EACtF,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,GACnB,KAAK,IAAI,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,GAAG,KAAK,CAE5C;AAED,wBAAgB,QAAQ,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAEzE"}
@@ -1,2 +0,0 @@
1
- export declare function mergeVariables(first: ReadonlySet<string>, second: ReadonlySet<string>): Set<string>;
2
- //# sourceMappingURL=variable-set.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"variable-set.d.ts","sourceRoot":"","sources":["../../../../../source/zod-graphql-query-builder/values/variable-set.ts"],"names":[],"mappings":"AAAA,wBAAgB,cAAc,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,CAEnG"}
@@ -1,3 +0,0 @@
1
- import type { VariableDefinitions } from './variable-definition.ts';
2
- export declare function ensureValidVariableCorrelations(variableDefinitions: VariableDefinitions, referencedVariables: ReadonlySet<string>): void;
3
- //# sourceMappingURL=variable-correlations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"variable-correlations.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/variable-correlations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEpE,wBAAgB,+BAA+B,CAC3C,mBAAmB,EAAE,mBAAmB,EACxC,mBAAmB,EAAE,WAAW,CAAC,MAAM,CAAC,GACzC,IAAI,CAcN"}
@@ -1,2 +0,0 @@
1
- export declare function isValidGraphqlType(type: string): boolean;
2
- //# sourceMappingURL=variable-type.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"variable-type.d.ts","sourceRoot":"","sources":["../../../../source/zod-graphql-query-builder/variable-type.ts"],"names":[],"mappings":"AAEA,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAOxD"}