polen 0.11.0-next.22 → 0.11.0-next.24
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/build/api/config/normalized.d.ts +200 -200
- package/build/api/examples/schemas/catalog.d.ts +4 -4
- package/build/api/examples/schemas/type-usage-index.d.ts +5 -5
- package/build/api/examples/schemas/type-usage-index.js +2 -2
- package/build/api/examples/schemas/type-usage-index.js.map +1 -1
- package/build/api/examples/type-usage-indexer.d.ts.map +1 -1
- package/build/api/examples/type-usage-indexer.js +41 -35
- package/build/api/examples/type-usage-indexer.js.map +1 -1
- package/build/api/schema/input-sources/directory.d.ts +1 -1
- package/build/api/schema/input-sources/directory.js +3 -3
- package/build/api/schema/input-sources/directory.js.map +1 -1
- package/build/api/schema/input-sources/file.d.ts +1 -1
- package/build/api/schema/input-sources/file.js +3 -3
- package/build/api/schema/input-sources/file.js.map +1 -1
- package/build/api/schema/input-sources/introspection-file.d.ts +1 -1
- package/build/api/schema/input-sources/introspection.d.ts +1 -1
- package/build/api/schema/input-sources/memory.d.ts +1 -1
- package/build/api/schema/input-sources/memory.js +3 -3
- package/build/api/schema/input-sources/memory.js.map +1 -1
- package/build/api/schema/input-sources/versioned-directory.d.ts +2 -2
- package/build/api/schema/input-sources/versioned-directory.js +3 -3
- package/build/api/schema/input-sources/versioned-directory.js.map +1 -1
- package/build/cli/commands/open.js +1 -1
- package/build/cli/commands/open.js.map +1 -1
- package/build/lib/catalog/catalog.d.ts +30 -30
- package/build/lib/catalog/unversioned.d.ts +8 -8
- package/build/lib/catalog/versioned.d.ts +16 -16
- package/build/lib/change/change.d.ts +6 -6
- package/build/lib/grafaid/$$.d.ts +2 -0
- package/build/lib/grafaid/$$.d.ts.map +1 -1
- package/build/lib/grafaid/$$.js +2 -0
- package/build/lib/grafaid/$$.js.map +1 -1
- package/build/lib/grafaid/parse-error.d.ts +46 -0
- package/build/lib/grafaid/parse-error.d.ts.map +1 -0
- package/build/lib/grafaid/parse-error.js +29 -0
- package/build/lib/grafaid/parse-error.js.map +1 -0
- package/build/lib/grafaid/parse.d.ts +70 -0
- package/build/lib/grafaid/parse.d.ts.map +1 -0
- package/build/lib/grafaid/parse.js +119 -0
- package/build/lib/grafaid/parse.js.map +1 -0
- package/build/lib/grafaid/schema/ast.d.ts +0 -2
- package/build/lib/grafaid/schema/ast.d.ts.map +1 -1
- package/build/lib/grafaid/schema/ast.js +1 -7
- package/build/lib/grafaid/schema/ast.js.map +1 -1
- package/build/lib/grafaid/schema/read.js +2 -2
- package/build/lib/grafaid/schema/read.js.map +1 -1
- package/build/lib/grafaid/schema/schema.d.ts +2 -1
- package/build/lib/grafaid/schema/schema.d.ts.map +1 -1
- package/build/lib/grafaid/schema/schema.js +5 -1
- package/build/lib/grafaid/schema/schema.js.map +1 -1
- package/build/lib/graphql-schema-loader/graphql-schema-loader.d.ts.map +1 -1
- package/build/lib/graphql-schema-loader/graphql-schema-loader.js +4 -4
- package/build/lib/graphql-schema-loader/graphql-schema-loader.js.map +1 -1
- package/build/lib/revision/revision.d.ts +30 -30
- package/build/lib/schema/schema.d.ts +18 -18
- package/build/lib/schema/unversioned.d.ts +28 -28
- package/build/lib/schema/versioned.d.ts +16 -16
- package/build/template/components/ExampleLink.d.ts.map +1 -1
- package/build/template/components/ExampleLink.js +4 -2
- package/build/template/components/ExampleLink.js.map +1 -1
- package/build/template/components/NamedType.d.ts.map +1 -1
- package/build/template/components/NamedType.js +1 -1
- package/build/template/components/NamedType.js.map +1 -1
- package/build/template/components/VersionCoveragePicker.d.ts.map +1 -1
- package/build/template/components/VersionCoveragePicker.js +6 -1
- package/build/template/components/VersionCoveragePicker.js.map +1 -1
- package/build/template/routes/pages.d.ts.map +1 -1
- package/build/template/routes/pages.js +5 -1
- package/build/template/routes/pages.js.map +1 -1
- package/build/template/stores/changelog.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/examples/schemas/type-usage-index.ts +2 -2
- package/src/api/examples/type-usage-indexer.test.ts +152 -234
- package/src/api/examples/type-usage-indexer.ts +64 -52
- package/src/api/schema/$.test.ts +1 -1
- package/src/api/schema/input-sources/directory.ts +3 -3
- package/src/api/schema/input-sources/file.ts +3 -3
- package/src/api/schema/input-sources/memory.ts +3 -3
- package/src/api/schema/input-sources/versioned-directory.ts +3 -3
- package/src/cli/commands/open.ts +1 -1
- package/src/lib/grafaid/$$.ts +2 -0
- package/src/lib/grafaid/parse-error.ts +69 -0
- package/src/lib/grafaid/parse.test.ts +175 -0
- package/src/lib/grafaid/parse.ts +165 -0
- package/src/lib/grafaid/schema/ast.ts +1 -9
- package/src/lib/grafaid/schema/read.ts +2 -2
- package/src/lib/grafaid/schema/schema.ts +10 -2
- package/src/lib/graphql-schema-loader/graphql-schema-loader.ts +4 -12
- package/src/lib/path-map/$.test.ts +28 -13
- package/src/template/components/ExampleLink.tsx +4 -2
- package/src/template/components/NamedType.tsx +3 -1
- package/src/template/components/VersionCoveragePicker.tsx +8 -2
- package/src/template/routes/pages.tsx +6 -1
@@ -1,7 +1,8 @@
|
|
1
1
|
import { Effect } from 'effect';
|
2
2
|
import { type GraphQLSchema } from 'graphql';
|
3
|
+
import { ParseError } from '../parse-error.js';
|
3
4
|
export { buildClientSchema as fromIntrospectionQuery, GraphQLSchema as Schema, introspectionFromSchema as toIntrospectionQuery, printSchema as print, } from 'graphql';
|
4
|
-
export declare const fromAST: (ast: AST.Document) => Effect.Effect<GraphQLSchema,
|
5
|
+
export declare const fromAST: (ast: AST.Document) => Effect.Effect<GraphQLSchema, ParseError>;
|
5
6
|
export * as AST from './ast.js';
|
6
7
|
export * as Type from './type.js';
|
7
8
|
export * from './type-class-name.js';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/lib/grafaid/schema/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAC/B,OAAO,EAAkB,KAAK,aAAa,EAAE,MAAM,SAAS,CAAA;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/lib/grafaid/schema/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAC/B,OAAO,EAAkB,KAAK,aAAa,EAAE,MAAM,SAAS,CAAA;AAC5D,OAAO,EAAkB,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAE9D,OAAO,EACL,iBAAiB,IAAI,sBAAsB,EAC3C,aAAa,IAAI,MAAM,EACvB,uBAAuB,IAAI,oBAAoB,EAC/C,WAAW,IAAI,KAAK,GACrB,MAAM,SAAS,CAAA;AAGhB,eAAO,MAAM,OAAO,GAAI,KAAK,GAAG,CAAC,QAAQ,KAAG,MAAM,CAAC,MAAM,CAAC,aAAa,EAAE,UAAU,CAW/E,CAAA;AAEJ,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAE/B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAEjC,cAAc,sBAAsB,CAAA;AAEpC,cAAc,qBAAqB,CAAA;AAEnC,cAAc,kBAAkB,CAAA;AAEhC,cAAc,kBAAkB,CAAA;AAEhC,cAAc,2BAA2B,CAAA;AAEzC,cAAc,iBAAiB,CAAA;AAE/B,cAAc,iBAAiB,CAAA;AAE/B,cAAc,cAAc,CAAA;AAE5B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAEjC,OAAO,KAAK,SAAS,MAAM,iBAAiB,CAAA;AAE5C,OAAO,KAAK,SAAS,MAAM,iBAAiB,CAAA;AAE5C,cAAc,WAAW,CAAA;AAEzB,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAE/B,eAAO,MAAM,KAAK,EAAE,aAAyC,CAAA"}
|
@@ -1,10 +1,14 @@
|
|
1
1
|
import { Effect } from 'effect';
|
2
2
|
import { buildASTSchema } from 'graphql';
|
3
|
+
import { makeParseError, ParseError } from '../parse-error.js';
|
3
4
|
export { buildClientSchema as fromIntrospectionQuery, GraphQLSchema as Schema, introspectionFromSchema as toIntrospectionQuery, printSchema as print, } from 'graphql';
|
4
5
|
// Effect-based version of fromAST
|
5
6
|
export const fromAST = (ast) => Effect.try({
|
6
7
|
try: () => buildASTSchema(ast),
|
7
|
-
catch: (error) =>
|
8
|
+
catch: (error) => makeParseError(`Failed to build schema from AST: ${error instanceof Error ? error.message : String(error)}`, {
|
9
|
+
parseType: 'schema',
|
10
|
+
cause: error,
|
11
|
+
}),
|
8
12
|
});
|
9
13
|
export * as AST from './ast.js';
|
10
14
|
export * as Type from './type.js';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../src/lib/grafaid/schema/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAC/B,OAAO,EAAE,cAAc,EAAsB,MAAM,SAAS,CAAA;
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../src/lib/grafaid/schema/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAC/B,OAAO,EAAE,cAAc,EAAsB,MAAM,SAAS,CAAA;AAC5D,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAE9D,OAAO,EACL,iBAAiB,IAAI,sBAAsB,EAC3C,aAAa,IAAI,MAAM,EACvB,uBAAuB,IAAI,oBAAoB,EAC/C,WAAW,IAAI,KAAK,GACrB,MAAM,SAAS,CAAA;AAEhB,kCAAkC;AAClC,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,GAAiB,EAA4C,EAAE,CACrF,MAAM,CAAC,GAAG,CAAC;IACT,GAAG,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,GAAG,CAAC;IAC9B,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CACf,cAAc,CACZ,oCAAoC,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAC5F;QACE,SAAS,EAAE,QAAQ;QACnB,KAAK,EAAE,KAAK;KACb,CACF;CACJ,CAAC,CAAA;AAEJ,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAE/B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAEjC,cAAc,sBAAsB,CAAA;AAEpC,cAAc,qBAAqB,CAAA;AAEnC,cAAc,kBAAkB,CAAA;AAEhC,cAAc,kBAAkB,CAAA;AAEhC,cAAc,2BAA2B,CAAA;AAEzC,cAAc,iBAAiB,CAAA;AAE/B,cAAc,iBAAiB,CAAA;AAE/B,cAAc,cAAc,CAAA;AAE5B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAA;AAEjC,OAAO,KAAK,SAAS,MAAM,iBAAiB,CAAA;AAE5C,OAAO,KAAK,SAAS,MAAM,iBAAiB,CAAA;AAE5C,cAAc,WAAW,CAAA;AAEzB,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAE/B,MAAM,CAAC,MAAM,KAAK,GAAkB,cAAc,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"graphql-schema-loader.d.ts","sourceRoot":"","sources":["../../../src/lib/graphql-schema-loader/graphql-schema-loader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAGxD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAI/B,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,YAAY,CAAA;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAA;CAC7C,GAAG;IACF,IAAI,EAAE,KAAK,CAAA;IACX,SAAS,EAAE,MAAM,CAAA;CAClB,GAAG;IACF,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAA;CACxB,CAAA;AAED,eAAO,MAAM,IAAI,GAAI,QAAQ,aAAa,KAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,EAAE,UAAU,
|
1
|
+
{"version":3,"file":"graphql-schema-loader.d.ts","sourceRoot":"","sources":["../../../src/lib/graphql-schema-loader/graphql-schema-loader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAGxD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAI/B,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,YAAY,CAAA;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAA;CAC7C,GAAG;IACF,IAAI,EAAE,KAAK,CAAA;IACX,SAAS,EAAE,MAAM,CAAA;CAClB,GAAG;IACF,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAA;CACxB,CAAA;AAED,eAAO,MAAM,IAAI,GAAI,QAAQ,aAAa,KAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,EAAE,UAAU,CAoE/F,CAAA"}
|
@@ -37,14 +37,14 @@ export const load = (source) => Effect.gen(function* () {
|
|
37
37
|
try: () => response.text(),
|
38
38
|
catch: (error) => new Error(`Failed to read response text: ${error}`),
|
39
39
|
});
|
40
|
-
const ast = yield* Grafaid.
|
41
|
-
return yield* Grafaid.Schema.fromAST(ast)
|
40
|
+
const ast = yield* Grafaid.Parse.parseSchema(sdlContent, { source: source.pathOrUrl });
|
41
|
+
return yield* Grafaid.Schema.fromAST(ast);
|
42
42
|
}
|
43
43
|
else {
|
44
44
|
const fs = yield* FileSystem;
|
45
45
|
const sdlContent = yield* fs.readFileString(source.pathOrUrl).pipe(Effect.mapError((error) => new Error(`Failed to read SDL from ${source.pathOrUrl}: ${error}`)));
|
46
|
-
const ast = yield* Grafaid.
|
47
|
-
return yield* Grafaid.Schema.fromAST(ast)
|
46
|
+
const ast = yield* Grafaid.Parse.parseSchema(sdlContent, { source: source.pathOrUrl });
|
47
|
+
return yield* Grafaid.Schema.fromAST(ast);
|
48
48
|
}
|
49
49
|
}
|
50
50
|
case `name`: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"graphql-schema-loader.js","sourceRoot":"","sources":["../../../src/lib/graphql-schema-loader/graphql-schema-loader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AACxD,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAA;AAchE,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,MAAqB,EAA2D,EAAE,CACrG,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IAClB,QAAQ,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,KAAK,YAAY,CAAC,CAAC,CAAC;YAClB,MAAM,OAAO,GAAG,OAAO;iBACpB,MAAM,EAAE;iBACR,GAAG,CAAC,aAAa,EAAE,CAAC;iBACpB,SAAS,CAAC;gBACT,GAAG,EAAE,MAAM,CAAC,GAAG;gBACf,OAAO,EAAE,MAAM,CAAC,OAAO,IAAI,EAAE;aAC9B,CAAC,CAAA;YAEJ,MAAM,mBAAmB,GAAG,KAAK,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;gBACnD,GAAG,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,EAAE;gBAC/B,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,gCAAgC,KAAK,EAAE,CAAC;aACrE,CAAC,CAAA;YAEF,IAAI,CAAC,mBAAmB,EAAE,CAAC;gBACzB,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC,CAAA;YACtE,CAAC;YAED,OAAO,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC,mBAAmB,CAAC,CAAA;QACnE,CAAC;QACD,KAAK,KAAK,CAAC,CAAC,CAAC;YACX,IAAI,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC;gBACnC,MAAM,QAAQ,GAAG,KAAK,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;oBACxC,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC;oBAClC,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,4BAA4B,MAAM,CAAC,SAAS,KAAK,KAAK,EAAE,CAAC;iBACtF,CAAC,CAAA;gBAEF,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;oBACjB,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,IAAI,CACvB,IAAI,KAAK,CAAC,+BAA+B,MAAM,CAAC,SAAS,aAAa,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CACjG,CAAA;gBACH,CAAC;gBAED,MAAM,UAAU,GAAG,KAAK,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;oBAC1C,GAAG,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE;oBAC1B,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,iCAAiC,KAAK,EAAE,CAAC;iBACtE,CAAC,CAAA;gBAEF,MAAM,GAAG,GAAG,KAAK,CAAC,CAAC,OAAO,CAAC,
|
1
|
+
{"version":3,"file":"graphql-schema-loader.js","sourceRoot":"","sources":["../../../src/lib/graphql-schema-loader/graphql-schema-loader.ts"],"names":[],"mappings":"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"}
|
@@ -999,11 +999,11 @@ export declare const make: (props: {
|
|
999
999
|
readonly path?: string | undefined;
|
1000
1000
|
readonly message: string;
|
1001
1001
|
readonly name: string;
|
1002
|
+
readonly locations: readonly string[];
|
1002
1003
|
readonly criticality: {
|
1003
1004
|
readonly reason?: string | undefined;
|
1004
1005
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
1005
1006
|
};
|
1006
|
-
readonly locations: readonly string[];
|
1007
1007
|
} | {
|
1008
1008
|
readonly _tag: "DIRECTIVE_REMOVED";
|
1009
1009
|
readonly path?: string | undefined;
|
@@ -1589,11 +1589,11 @@ export declare const make: (props: {
|
|
1589
1589
|
readonly path?: string | undefined;
|
1590
1590
|
readonly message: string;
|
1591
1591
|
readonly name: string;
|
1592
|
+
readonly locations: readonly string[];
|
1592
1593
|
readonly criticality: {
|
1593
1594
|
readonly reason?: string | undefined;
|
1594
1595
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
1595
1596
|
};
|
1596
|
-
readonly locations: readonly string[];
|
1597
1597
|
} | {
|
1598
1598
|
readonly _tag: "DIRECTIVE_REMOVED";
|
1599
1599
|
readonly path?: string | undefined;
|
@@ -2180,11 +2180,11 @@ export declare const is: (u: unknown, overrideOptions?: import("effect/SchemaAST
|
|
2180
2180
|
readonly path?: string | undefined;
|
2181
2181
|
readonly message: string;
|
2182
2182
|
readonly name: string;
|
2183
|
+
readonly locations: readonly string[];
|
2183
2184
|
readonly criticality: {
|
2184
2185
|
readonly reason?: string | undefined;
|
2185
2186
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2186
2187
|
};
|
2187
|
-
readonly locations: readonly string[];
|
2188
2188
|
} | {
|
2189
2189
|
readonly _tag: "DIRECTIVE_REMOVED";
|
2190
2190
|
readonly path?: string | undefined;
|
@@ -2773,11 +2773,11 @@ export declare const min: {
|
|
2773
2773
|
readonly path?: string | undefined;
|
2774
2774
|
readonly message: string;
|
2775
2775
|
readonly name: string;
|
2776
|
+
readonly locations: readonly string[];
|
2776
2777
|
readonly criticality: {
|
2777
2778
|
readonly reason?: string | undefined;
|
2778
2779
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2779
2780
|
};
|
2780
|
-
readonly locations: readonly string[];
|
2781
2781
|
} | {
|
2782
2782
|
readonly _tag: "DIRECTIVE_REMOVED";
|
2783
2783
|
readonly path?: string | undefined;
|
@@ -3363,11 +3363,11 @@ export declare const min: {
|
|
3363
3363
|
readonly path?: string | undefined;
|
3364
3364
|
readonly message: string;
|
3365
3365
|
readonly name: string;
|
3366
|
+
readonly locations: readonly string[];
|
3366
3367
|
readonly criticality: {
|
3367
3368
|
readonly reason?: string | undefined;
|
3368
3369
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
3369
3370
|
};
|
3370
|
-
readonly locations: readonly string[];
|
3371
3371
|
} | {
|
3372
3372
|
readonly _tag: "DIRECTIVE_REMOVED";
|
3373
3373
|
readonly path?: string | undefined;
|
@@ -3953,11 +3953,11 @@ export declare const min: {
|
|
3953
3953
|
readonly path?: string | undefined;
|
3954
3954
|
readonly message: string;
|
3955
3955
|
readonly name: string;
|
3956
|
+
readonly locations: readonly string[];
|
3956
3957
|
readonly criticality: {
|
3957
3958
|
readonly reason?: string | undefined;
|
3958
3959
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
3959
3960
|
};
|
3960
|
-
readonly locations: readonly string[];
|
3961
3961
|
} | {
|
3962
3962
|
readonly _tag: "DIRECTIVE_REMOVED";
|
3963
3963
|
readonly path?: string | undefined;
|
@@ -4544,11 +4544,11 @@ export declare const min: {
|
|
4544
4544
|
readonly path?: string | undefined;
|
4545
4545
|
readonly message: string;
|
4546
4546
|
readonly name: string;
|
4547
|
+
readonly locations: readonly string[];
|
4547
4548
|
readonly criticality: {
|
4548
4549
|
readonly reason?: string | undefined;
|
4549
4550
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
4550
4551
|
};
|
4551
|
-
readonly locations: readonly string[];
|
4552
4552
|
} | {
|
4553
4553
|
readonly _tag: "DIRECTIVE_REMOVED";
|
4554
4554
|
readonly path?: string | undefined;
|
@@ -5134,11 +5134,11 @@ export declare const min: {
|
|
5134
5134
|
readonly path?: string | undefined;
|
5135
5135
|
readonly message: string;
|
5136
5136
|
readonly name: string;
|
5137
|
+
readonly locations: readonly string[];
|
5137
5138
|
readonly criticality: {
|
5138
5139
|
readonly reason?: string | undefined;
|
5139
5140
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
5140
5141
|
};
|
5141
|
-
readonly locations: readonly string[];
|
5142
5142
|
} | {
|
5143
5143
|
readonly _tag: "DIRECTIVE_REMOVED";
|
5144
5144
|
readonly path?: string | undefined;
|
@@ -5724,11 +5724,11 @@ export declare const min: {
|
|
5724
5724
|
readonly path?: string | undefined;
|
5725
5725
|
readonly message: string;
|
5726
5726
|
readonly name: string;
|
5727
|
+
readonly locations: readonly string[];
|
5727
5728
|
readonly criticality: {
|
5728
5729
|
readonly reason?: string | undefined;
|
5729
5730
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
5730
5731
|
};
|
5731
|
-
readonly locations: readonly string[];
|
5732
5732
|
} | {
|
5733
5733
|
readonly _tag: "DIRECTIVE_REMOVED";
|
5734
5734
|
readonly path?: string | undefined;
|
@@ -6317,11 +6317,11 @@ export declare const max: {
|
|
6317
6317
|
readonly path?: string | undefined;
|
6318
6318
|
readonly message: string;
|
6319
6319
|
readonly name: string;
|
6320
|
+
readonly locations: readonly string[];
|
6320
6321
|
readonly criticality: {
|
6321
6322
|
readonly reason?: string | undefined;
|
6322
6323
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
6323
6324
|
};
|
6324
|
-
readonly locations: readonly string[];
|
6325
6325
|
} | {
|
6326
6326
|
readonly _tag: "DIRECTIVE_REMOVED";
|
6327
6327
|
readonly path?: string | undefined;
|
@@ -6907,11 +6907,11 @@ export declare const max: {
|
|
6907
6907
|
readonly path?: string | undefined;
|
6908
6908
|
readonly message: string;
|
6909
6909
|
readonly name: string;
|
6910
|
+
readonly locations: readonly string[];
|
6910
6911
|
readonly criticality: {
|
6911
6912
|
readonly reason?: string | undefined;
|
6912
6913
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
6913
6914
|
};
|
6914
|
-
readonly locations: readonly string[];
|
6915
6915
|
} | {
|
6916
6916
|
readonly _tag: "DIRECTIVE_REMOVED";
|
6917
6917
|
readonly path?: string | undefined;
|
@@ -7497,11 +7497,11 @@ export declare const max: {
|
|
7497
7497
|
readonly path?: string | undefined;
|
7498
7498
|
readonly message: string;
|
7499
7499
|
readonly name: string;
|
7500
|
+
readonly locations: readonly string[];
|
7500
7501
|
readonly criticality: {
|
7501
7502
|
readonly reason?: string | undefined;
|
7502
7503
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
7503
7504
|
};
|
7504
|
-
readonly locations: readonly string[];
|
7505
7505
|
} | {
|
7506
7506
|
readonly _tag: "DIRECTIVE_REMOVED";
|
7507
7507
|
readonly path?: string | undefined;
|
@@ -8088,11 +8088,11 @@ export declare const max: {
|
|
8088
8088
|
readonly path?: string | undefined;
|
8089
8089
|
readonly message: string;
|
8090
8090
|
readonly name: string;
|
8091
|
+
readonly locations: readonly string[];
|
8091
8092
|
readonly criticality: {
|
8092
8093
|
readonly reason?: string | undefined;
|
8093
8094
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
8094
8095
|
};
|
8095
|
-
readonly locations: readonly string[];
|
8096
8096
|
} | {
|
8097
8097
|
readonly _tag: "DIRECTIVE_REMOVED";
|
8098
8098
|
readonly path?: string | undefined;
|
@@ -8678,11 +8678,11 @@ export declare const max: {
|
|
8678
8678
|
readonly path?: string | undefined;
|
8679
8679
|
readonly message: string;
|
8680
8680
|
readonly name: string;
|
8681
|
+
readonly locations: readonly string[];
|
8681
8682
|
readonly criticality: {
|
8682
8683
|
readonly reason?: string | undefined;
|
8683
8684
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
8684
8685
|
};
|
8685
|
-
readonly locations: readonly string[];
|
8686
8686
|
} | {
|
8687
8687
|
readonly _tag: "DIRECTIVE_REMOVED";
|
8688
8688
|
readonly path?: string | undefined;
|
@@ -9268,11 +9268,11 @@ export declare const max: {
|
|
9268
9268
|
readonly path?: string | undefined;
|
9269
9269
|
readonly message: string;
|
9270
9270
|
readonly name: string;
|
9271
|
+
readonly locations: readonly string[];
|
9271
9272
|
readonly criticality: {
|
9272
9273
|
readonly reason?: string | undefined;
|
9273
9274
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
9274
9275
|
};
|
9275
|
-
readonly locations: readonly string[];
|
9276
9276
|
} | {
|
9277
9277
|
readonly _tag: "DIRECTIVE_REMOVED";
|
9278
9278
|
readonly path?: string | undefined;
|
@@ -9861,11 +9861,11 @@ export declare const lessThan: {
|
|
9861
9861
|
readonly path?: string | undefined;
|
9862
9862
|
readonly message: string;
|
9863
9863
|
readonly name: string;
|
9864
|
+
readonly locations: readonly string[];
|
9864
9865
|
readonly criticality: {
|
9865
9866
|
readonly reason?: string | undefined;
|
9866
9867
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
9867
9868
|
};
|
9868
|
-
readonly locations: readonly string[];
|
9869
9869
|
} | {
|
9870
9870
|
readonly _tag: "DIRECTIVE_REMOVED";
|
9871
9871
|
readonly path?: string | undefined;
|
@@ -10451,11 +10451,11 @@ export declare const lessThan: {
|
|
10451
10451
|
readonly path?: string | undefined;
|
10452
10452
|
readonly message: string;
|
10453
10453
|
readonly name: string;
|
10454
|
+
readonly locations: readonly string[];
|
10454
10455
|
readonly criticality: {
|
10455
10456
|
readonly reason?: string | undefined;
|
10456
10457
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
10457
10458
|
};
|
10458
|
-
readonly locations: readonly string[];
|
10459
10459
|
} | {
|
10460
10460
|
readonly _tag: "DIRECTIVE_REMOVED";
|
10461
10461
|
readonly path?: string | undefined;
|
@@ -11042,11 +11042,11 @@ export declare const lessThan: {
|
|
11042
11042
|
readonly path?: string | undefined;
|
11043
11043
|
readonly message: string;
|
11044
11044
|
readonly name: string;
|
11045
|
+
readonly locations: readonly string[];
|
11045
11046
|
readonly criticality: {
|
11046
11047
|
readonly reason?: string | undefined;
|
11047
11048
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
11048
11049
|
};
|
11049
|
-
readonly locations: readonly string[];
|
11050
11050
|
} | {
|
11051
11051
|
readonly _tag: "DIRECTIVE_REMOVED";
|
11052
11052
|
readonly path?: string | undefined;
|
@@ -11632,11 +11632,11 @@ export declare const lessThan: {
|
|
11632
11632
|
readonly path?: string | undefined;
|
11633
11633
|
readonly message: string;
|
11634
11634
|
readonly name: string;
|
11635
|
+
readonly locations: readonly string[];
|
11635
11636
|
readonly criticality: {
|
11636
11637
|
readonly reason?: string | undefined;
|
11637
11638
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
11638
11639
|
};
|
11639
|
-
readonly locations: readonly string[];
|
11640
11640
|
} | {
|
11641
11641
|
readonly _tag: "DIRECTIVE_REMOVED";
|
11642
11642
|
readonly path?: string | undefined;
|
@@ -12225,11 +12225,11 @@ export declare const greaterThan: {
|
|
12225
12225
|
readonly path?: string | undefined;
|
12226
12226
|
readonly message: string;
|
12227
12227
|
readonly name: string;
|
12228
|
+
readonly locations: readonly string[];
|
12228
12229
|
readonly criticality: {
|
12229
12230
|
readonly reason?: string | undefined;
|
12230
12231
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
12231
12232
|
};
|
12232
|
-
readonly locations: readonly string[];
|
12233
12233
|
} | {
|
12234
12234
|
readonly _tag: "DIRECTIVE_REMOVED";
|
12235
12235
|
readonly path?: string | undefined;
|
@@ -12815,11 +12815,11 @@ export declare const greaterThan: {
|
|
12815
12815
|
readonly path?: string | undefined;
|
12816
12816
|
readonly message: string;
|
12817
12817
|
readonly name: string;
|
12818
|
+
readonly locations: readonly string[];
|
12818
12819
|
readonly criticality: {
|
12819
12820
|
readonly reason?: string | undefined;
|
12820
12821
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
12821
12822
|
};
|
12822
|
-
readonly locations: readonly string[];
|
12823
12823
|
} | {
|
12824
12824
|
readonly _tag: "DIRECTIVE_REMOVED";
|
12825
12825
|
readonly path?: string | undefined;
|
@@ -13406,11 +13406,11 @@ export declare const greaterThan: {
|
|
13406
13406
|
readonly path?: string | undefined;
|
13407
13407
|
readonly message: string;
|
13408
13408
|
readonly name: string;
|
13409
|
+
readonly locations: readonly string[];
|
13409
13410
|
readonly criticality: {
|
13410
13411
|
readonly reason?: string | undefined;
|
13411
13412
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
13412
13413
|
};
|
13413
|
-
readonly locations: readonly string[];
|
13414
13414
|
} | {
|
13415
13415
|
readonly _tag: "DIRECTIVE_REMOVED";
|
13416
13416
|
readonly path?: string | undefined;
|
@@ -13996,11 +13996,11 @@ export declare const greaterThan: {
|
|
13996
13996
|
readonly path?: string | undefined;
|
13997
13997
|
readonly message: string;
|
13998
13998
|
readonly name: string;
|
13999
|
+
readonly locations: readonly string[];
|
13999
14000
|
readonly criticality: {
|
14000
14001
|
readonly reason?: string | undefined;
|
14001
14002
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
14002
14003
|
};
|
14003
|
-
readonly locations: readonly string[];
|
14004
14004
|
} | {
|
14005
14005
|
readonly _tag: "DIRECTIVE_REMOVED";
|
14006
14006
|
readonly path?: string | undefined;
|
@@ -14587,11 +14587,11 @@ export declare const decode: (i: {
|
|
14587
14587
|
readonly _tag: "DIRECTIVE_ADDED";
|
14588
14588
|
readonly message: string;
|
14589
14589
|
readonly name: string;
|
14590
|
+
readonly locations: readonly string[];
|
14590
14591
|
readonly criticality: {
|
14591
14592
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
14592
14593
|
readonly reason?: string | undefined;
|
14593
14594
|
};
|
14594
|
-
readonly locations: readonly string[];
|
14595
14595
|
readonly path?: string | undefined;
|
14596
14596
|
} | {
|
14597
14597
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -15178,11 +15178,11 @@ export declare const decode: (i: {
|
|
15178
15178
|
readonly path?: string | undefined;
|
15179
15179
|
readonly message: string;
|
15180
15180
|
readonly name: string;
|
15181
|
+
readonly locations: readonly string[];
|
15181
15182
|
readonly criticality: {
|
15182
15183
|
readonly reason?: string | undefined;
|
15183
15184
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
15184
15185
|
};
|
15185
|
-
readonly locations: readonly string[];
|
15186
15186
|
} | {
|
15187
15187
|
readonly _tag: "DIRECTIVE_REMOVED";
|
15188
15188
|
readonly path?: string | undefined;
|
@@ -15768,11 +15768,11 @@ export declare const decodeSync: (i: {
|
|
15768
15768
|
readonly _tag: "DIRECTIVE_ADDED";
|
15769
15769
|
readonly message: string;
|
15770
15770
|
readonly name: string;
|
15771
|
+
readonly locations: readonly string[];
|
15771
15772
|
readonly criticality: {
|
15772
15773
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
15773
15774
|
readonly reason?: string | undefined;
|
15774
15775
|
};
|
15775
|
-
readonly locations: readonly string[];
|
15776
15776
|
readonly path?: string | undefined;
|
15777
15777
|
} | {
|
15778
15778
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -16359,11 +16359,11 @@ export declare const decodeSync: (i: {
|
|
16359
16359
|
readonly path?: string | undefined;
|
16360
16360
|
readonly message: string;
|
16361
16361
|
readonly name: string;
|
16362
|
+
readonly locations: readonly string[];
|
16362
16363
|
readonly criticality: {
|
16363
16364
|
readonly reason?: string | undefined;
|
16364
16365
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
16365
16366
|
};
|
16366
|
-
readonly locations: readonly string[];
|
16367
16367
|
} | {
|
16368
16368
|
readonly _tag: "DIRECTIVE_REMOVED";
|
16369
16369
|
readonly path?: string | undefined;
|
@@ -16950,11 +16950,11 @@ export declare const encode: (a: {
|
|
16950
16950
|
readonly path?: string | undefined;
|
16951
16951
|
readonly message: string;
|
16952
16952
|
readonly name: string;
|
16953
|
+
readonly locations: readonly string[];
|
16953
16954
|
readonly criticality: {
|
16954
16955
|
readonly reason?: string | undefined;
|
16955
16956
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
16956
16957
|
};
|
16957
|
-
readonly locations: readonly string[];
|
16958
16958
|
} | {
|
16959
16959
|
readonly _tag: "DIRECTIVE_REMOVED";
|
16960
16960
|
readonly path?: string | undefined;
|
@@ -17539,11 +17539,11 @@ export declare const encode: (a: {
|
|
17539
17539
|
readonly _tag: "DIRECTIVE_ADDED";
|
17540
17540
|
readonly message: string;
|
17541
17541
|
readonly name: string;
|
17542
|
+
readonly locations: readonly string[];
|
17542
17543
|
readonly criticality: {
|
17543
17544
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
17544
17545
|
readonly reason?: string | undefined;
|
17545
17546
|
};
|
17546
|
-
readonly locations: readonly string[];
|
17547
17547
|
readonly path?: string | undefined;
|
17548
17548
|
} | {
|
17549
17549
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -18131,11 +18131,11 @@ export declare const equivalence: import("effect/Equivalence").Equivalence<{
|
|
18131
18131
|
readonly path?: string | undefined;
|
18132
18132
|
readonly message: string;
|
18133
18133
|
readonly name: string;
|
18134
|
+
readonly locations: readonly string[];
|
18134
18135
|
readonly criticality: {
|
18135
18136
|
readonly reason?: string | undefined;
|
18136
18137
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
18137
18138
|
};
|
18138
|
-
readonly locations: readonly string[];
|
18139
18139
|
} | {
|
18140
18140
|
readonly _tag: "DIRECTIVE_REMOVED";
|
18141
18141
|
readonly path?: string | undefined;
|