polen 0.11.0-next.22 → 0.11.0-next.23
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/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
@@ -2123,11 +2123,11 @@ export declare const is: (u: unknown, overrideOptions?: import("effect/SchemaAST
|
|
2123
2123
|
readonly path?: string | undefined;
|
2124
2124
|
readonly message: string;
|
2125
2125
|
readonly name: string;
|
2126
|
+
readonly locations: readonly string[];
|
2126
2127
|
readonly criticality: {
|
2127
2128
|
readonly reason?: string | undefined;
|
2128
2129
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2129
2130
|
};
|
2130
|
-
readonly locations: readonly string[];
|
2131
2131
|
} | {
|
2132
2132
|
readonly _tag: "DIRECTIVE_REMOVED";
|
2133
2133
|
readonly path?: string | undefined;
|
@@ -2719,11 +2719,11 @@ export declare const is: (u: unknown, overrideOptions?: import("effect/SchemaAST
|
|
2719
2719
|
readonly path?: string | undefined;
|
2720
2720
|
readonly message: string;
|
2721
2721
|
readonly name: string;
|
2722
|
+
readonly locations: readonly string[];
|
2722
2723
|
readonly criticality: {
|
2723
2724
|
readonly reason?: string | undefined;
|
2724
2725
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2725
2726
|
};
|
2726
|
-
readonly locations: readonly string[];
|
2727
2727
|
} | {
|
2728
2728
|
readonly _tag: "DIRECTIVE_REMOVED";
|
2729
2729
|
readonly path?: string | undefined;
|
@@ -3314,11 +3314,11 @@ export declare const is: (u: unknown, overrideOptions?: import("effect/SchemaAST
|
|
3314
3314
|
readonly path?: string | undefined;
|
3315
3315
|
readonly message: string;
|
3316
3316
|
readonly name: string;
|
3317
|
+
readonly locations: readonly string[];
|
3317
3318
|
readonly criticality: {
|
3318
3319
|
readonly reason?: string | undefined;
|
3319
3320
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
3320
3321
|
};
|
3321
|
-
readonly locations: readonly string[];
|
3322
3322
|
} | {
|
3323
3323
|
readonly _tag: "DIRECTIVE_REMOVED";
|
3324
3324
|
readonly path?: string | undefined;
|
@@ -3913,11 +3913,11 @@ export declare const decode: (i: {
|
|
3913
3913
|
readonly _tag: "DIRECTIVE_ADDED";
|
3914
3914
|
readonly message: string;
|
3915
3915
|
readonly name: string;
|
3916
|
+
readonly locations: readonly string[];
|
3916
3917
|
readonly criticality: {
|
3917
3918
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
3918
3919
|
readonly reason?: string | undefined;
|
3919
3920
|
};
|
3920
|
-
readonly locations: readonly string[];
|
3921
3921
|
readonly path?: string | undefined;
|
3922
3922
|
} | {
|
3923
3923
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -4509,11 +4509,11 @@ export declare const decode: (i: {
|
|
4509
4509
|
readonly _tag: "DIRECTIVE_ADDED";
|
4510
4510
|
readonly message: string;
|
4511
4511
|
readonly name: string;
|
4512
|
+
readonly locations: readonly string[];
|
4512
4513
|
readonly criticality: {
|
4513
4514
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
4514
4515
|
readonly reason?: string | undefined;
|
4515
4516
|
};
|
4516
|
-
readonly locations: readonly string[];
|
4517
4517
|
readonly path?: string | undefined;
|
4518
4518
|
} | {
|
4519
4519
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -5104,11 +5104,11 @@ export declare const decode: (i: {
|
|
5104
5104
|
readonly _tag: "DIRECTIVE_ADDED";
|
5105
5105
|
readonly message: string;
|
5106
5106
|
readonly name: string;
|
5107
|
+
readonly locations: readonly string[];
|
5107
5108
|
readonly criticality: {
|
5108
5109
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
5109
5110
|
readonly reason?: string | undefined;
|
5110
5111
|
};
|
5111
|
-
readonly locations: readonly string[];
|
5112
5112
|
readonly path?: string | undefined;
|
5113
5113
|
} | {
|
5114
5114
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -5703,11 +5703,11 @@ export declare const decode: (i: {
|
|
5703
5703
|
readonly path?: string | undefined;
|
5704
5704
|
readonly message: string;
|
5705
5705
|
readonly name: string;
|
5706
|
+
readonly locations: readonly string[];
|
5706
5707
|
readonly criticality: {
|
5707
5708
|
readonly reason?: string | undefined;
|
5708
5709
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
5709
5710
|
};
|
5710
|
-
readonly locations: readonly string[];
|
5711
5711
|
} | {
|
5712
5712
|
readonly _tag: "DIRECTIVE_REMOVED";
|
5713
5713
|
readonly path?: string | undefined;
|
@@ -6299,11 +6299,11 @@ export declare const decode: (i: {
|
|
6299
6299
|
readonly path?: string | undefined;
|
6300
6300
|
readonly message: string;
|
6301
6301
|
readonly name: string;
|
6302
|
+
readonly locations: readonly string[];
|
6302
6303
|
readonly criticality: {
|
6303
6304
|
readonly reason?: string | undefined;
|
6304
6305
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
6305
6306
|
};
|
6306
|
-
readonly locations: readonly string[];
|
6307
6307
|
} | {
|
6308
6308
|
readonly _tag: "DIRECTIVE_REMOVED";
|
6309
6309
|
readonly path?: string | undefined;
|
@@ -6894,11 +6894,11 @@ export declare const decode: (i: {
|
|
6894
6894
|
readonly path?: string | undefined;
|
6895
6895
|
readonly message: string;
|
6896
6896
|
readonly name: string;
|
6897
|
+
readonly locations: readonly string[];
|
6897
6898
|
readonly criticality: {
|
6898
6899
|
readonly reason?: string | undefined;
|
6899
6900
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
6900
6901
|
};
|
6901
|
-
readonly locations: readonly string[];
|
6902
6902
|
} | {
|
6903
6903
|
readonly _tag: "DIRECTIVE_REMOVED";
|
6904
6904
|
readonly path?: string | undefined;
|
@@ -7492,11 +7492,11 @@ export declare const decodeSync: (i: {
|
|
7492
7492
|
readonly _tag: "DIRECTIVE_ADDED";
|
7493
7493
|
readonly message: string;
|
7494
7494
|
readonly name: string;
|
7495
|
+
readonly locations: readonly string[];
|
7495
7496
|
readonly criticality: {
|
7496
7497
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
7497
7498
|
readonly reason?: string | undefined;
|
7498
7499
|
};
|
7499
|
-
readonly locations: readonly string[];
|
7500
7500
|
readonly path?: string | undefined;
|
7501
7501
|
} | {
|
7502
7502
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -8088,11 +8088,11 @@ export declare const decodeSync: (i: {
|
|
8088
8088
|
readonly _tag: "DIRECTIVE_ADDED";
|
8089
8089
|
readonly message: string;
|
8090
8090
|
readonly name: string;
|
8091
|
+
readonly locations: readonly string[];
|
8091
8092
|
readonly criticality: {
|
8092
8093
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
8093
8094
|
readonly reason?: string | undefined;
|
8094
8095
|
};
|
8095
|
-
readonly locations: readonly string[];
|
8096
8096
|
readonly path?: string | undefined;
|
8097
8097
|
} | {
|
8098
8098
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -8683,11 +8683,11 @@ export declare const decodeSync: (i: {
|
|
8683
8683
|
readonly _tag: "DIRECTIVE_ADDED";
|
8684
8684
|
readonly message: string;
|
8685
8685
|
readonly name: string;
|
8686
|
+
readonly locations: readonly string[];
|
8686
8687
|
readonly criticality: {
|
8687
8688
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
8688
8689
|
readonly reason?: string | undefined;
|
8689
8690
|
};
|
8690
|
-
readonly locations: readonly string[];
|
8691
8691
|
readonly path?: string | undefined;
|
8692
8692
|
} | {
|
8693
8693
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -9282,11 +9282,11 @@ export declare const decodeSync: (i: {
|
|
9282
9282
|
readonly path?: string | undefined;
|
9283
9283
|
readonly message: string;
|
9284
9284
|
readonly name: string;
|
9285
|
+
readonly locations: readonly string[];
|
9285
9286
|
readonly criticality: {
|
9286
9287
|
readonly reason?: string | undefined;
|
9287
9288
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
9288
9289
|
};
|
9289
|
-
readonly locations: readonly string[];
|
9290
9290
|
} | {
|
9291
9291
|
readonly _tag: "DIRECTIVE_REMOVED";
|
9292
9292
|
readonly path?: string | undefined;
|
@@ -9878,11 +9878,11 @@ export declare const decodeSync: (i: {
|
|
9878
9878
|
readonly path?: string | undefined;
|
9879
9879
|
readonly message: string;
|
9880
9880
|
readonly name: string;
|
9881
|
+
readonly locations: readonly string[];
|
9881
9882
|
readonly criticality: {
|
9882
9883
|
readonly reason?: string | undefined;
|
9883
9884
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
9884
9885
|
};
|
9885
|
-
readonly locations: readonly string[];
|
9886
9886
|
} | {
|
9887
9887
|
readonly _tag: "DIRECTIVE_REMOVED";
|
9888
9888
|
readonly path?: string | undefined;
|
@@ -10473,11 +10473,11 @@ export declare const decodeSync: (i: {
|
|
10473
10473
|
readonly path?: string | undefined;
|
10474
10474
|
readonly message: string;
|
10475
10475
|
readonly name: string;
|
10476
|
+
readonly locations: readonly string[];
|
10476
10477
|
readonly criticality: {
|
10477
10478
|
readonly reason?: string | undefined;
|
10478
10479
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
10479
10480
|
};
|
10480
|
-
readonly locations: readonly string[];
|
10481
10481
|
} | {
|
10482
10482
|
readonly _tag: "DIRECTIVE_REMOVED";
|
10483
10483
|
readonly path?: string | undefined;
|
@@ -11072,11 +11072,11 @@ export declare const encode: (a: {
|
|
11072
11072
|
readonly path?: string | undefined;
|
11073
11073
|
readonly message: string;
|
11074
11074
|
readonly name: string;
|
11075
|
+
readonly locations: readonly string[];
|
11075
11076
|
readonly criticality: {
|
11076
11077
|
readonly reason?: string | undefined;
|
11077
11078
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
11078
11079
|
};
|
11079
|
-
readonly locations: readonly string[];
|
11080
11080
|
} | {
|
11081
11081
|
readonly _tag: "DIRECTIVE_REMOVED";
|
11082
11082
|
readonly path?: string | undefined;
|
@@ -11668,11 +11668,11 @@ export declare const encode: (a: {
|
|
11668
11668
|
readonly path?: string | undefined;
|
11669
11669
|
readonly message: string;
|
11670
11670
|
readonly name: string;
|
11671
|
+
readonly locations: readonly string[];
|
11671
11672
|
readonly criticality: {
|
11672
11673
|
readonly reason?: string | undefined;
|
11673
11674
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
11674
11675
|
};
|
11675
|
-
readonly locations: readonly string[];
|
11676
11676
|
} | {
|
11677
11677
|
readonly _tag: "DIRECTIVE_REMOVED";
|
11678
11678
|
readonly path?: string | undefined;
|
@@ -12263,11 +12263,11 @@ export declare const encode: (a: {
|
|
12263
12263
|
readonly path?: string | undefined;
|
12264
12264
|
readonly message: string;
|
12265
12265
|
readonly name: string;
|
12266
|
+
readonly locations: readonly string[];
|
12266
12267
|
readonly criticality: {
|
12267
12268
|
readonly reason?: string | undefined;
|
12268
12269
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
12269
12270
|
};
|
12270
|
-
readonly locations: readonly string[];
|
12271
12271
|
} | {
|
12272
12272
|
readonly _tag: "DIRECTIVE_REMOVED";
|
12273
12273
|
readonly path?: string | undefined;
|
@@ -12860,11 +12860,11 @@ export declare const encode: (a: {
|
|
12860
12860
|
readonly _tag: "DIRECTIVE_ADDED";
|
12861
12861
|
readonly message: string;
|
12862
12862
|
readonly name: string;
|
12863
|
+
readonly locations: readonly string[];
|
12863
12864
|
readonly criticality: {
|
12864
12865
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
12865
12866
|
readonly reason?: string | undefined;
|
12866
12867
|
};
|
12867
|
-
readonly locations: readonly string[];
|
12868
12868
|
readonly path?: string | undefined;
|
12869
12869
|
} | {
|
12870
12870
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -13456,11 +13456,11 @@ export declare const encode: (a: {
|
|
13456
13456
|
readonly _tag: "DIRECTIVE_ADDED";
|
13457
13457
|
readonly message: string;
|
13458
13458
|
readonly name: string;
|
13459
|
+
readonly locations: readonly string[];
|
13459
13460
|
readonly criticality: {
|
13460
13461
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
13461
13462
|
readonly reason?: string | undefined;
|
13462
13463
|
};
|
13463
|
-
readonly locations: readonly string[];
|
13464
13464
|
readonly path?: string | undefined;
|
13465
13465
|
} | {
|
13466
13466
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -14051,11 +14051,11 @@ export declare const encode: (a: {
|
|
14051
14051
|
readonly _tag: "DIRECTIVE_ADDED";
|
14052
14052
|
readonly message: string;
|
14053
14053
|
readonly name: string;
|
14054
|
+
readonly locations: readonly string[];
|
14054
14055
|
readonly criticality: {
|
14055
14056
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
14056
14057
|
readonly reason?: string | undefined;
|
14057
14058
|
};
|
14058
|
-
readonly locations: readonly string[];
|
14059
14059
|
readonly path?: string | undefined;
|
14060
14060
|
} | {
|
14061
14061
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -14651,11 +14651,11 @@ export declare const encodeSync: (a: {
|
|
14651
14651
|
readonly path?: string | undefined;
|
14652
14652
|
readonly message: string;
|
14653
14653
|
readonly name: string;
|
14654
|
+
readonly locations: readonly string[];
|
14654
14655
|
readonly criticality: {
|
14655
14656
|
readonly reason?: string | undefined;
|
14656
14657
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
14657
14658
|
};
|
14658
|
-
readonly locations: readonly string[];
|
14659
14659
|
} | {
|
14660
14660
|
readonly _tag: "DIRECTIVE_REMOVED";
|
14661
14661
|
readonly path?: string | undefined;
|
@@ -15247,11 +15247,11 @@ export declare const encodeSync: (a: {
|
|
15247
15247
|
readonly path?: string | undefined;
|
15248
15248
|
readonly message: string;
|
15249
15249
|
readonly name: string;
|
15250
|
+
readonly locations: readonly string[];
|
15250
15251
|
readonly criticality: {
|
15251
15252
|
readonly reason?: string | undefined;
|
15252
15253
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
15253
15254
|
};
|
15254
|
-
readonly locations: readonly string[];
|
15255
15255
|
} | {
|
15256
15256
|
readonly _tag: "DIRECTIVE_REMOVED";
|
15257
15257
|
readonly path?: string | undefined;
|
@@ -15842,11 +15842,11 @@ export declare const encodeSync: (a: {
|
|
15842
15842
|
readonly path?: string | undefined;
|
15843
15843
|
readonly message: string;
|
15844
15844
|
readonly name: string;
|
15845
|
+
readonly locations: readonly string[];
|
15845
15846
|
readonly criticality: {
|
15846
15847
|
readonly reason?: string | undefined;
|
15847
15848
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
15848
15849
|
};
|
15849
|
-
readonly locations: readonly string[];
|
15850
15850
|
} | {
|
15851
15851
|
readonly _tag: "DIRECTIVE_REMOVED";
|
15852
15852
|
readonly path?: string | undefined;
|
@@ -16439,11 +16439,11 @@ export declare const encodeSync: (a: {
|
|
16439
16439
|
readonly _tag: "DIRECTIVE_ADDED";
|
16440
16440
|
readonly message: string;
|
16441
16441
|
readonly name: string;
|
16442
|
+
readonly locations: readonly string[];
|
16442
16443
|
readonly criticality: {
|
16443
16444
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
16444
16445
|
readonly reason?: string | undefined;
|
16445
16446
|
};
|
16446
|
-
readonly locations: readonly string[];
|
16447
16447
|
readonly path?: string | undefined;
|
16448
16448
|
} | {
|
16449
16449
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -17035,11 +17035,11 @@ export declare const encodeSync: (a: {
|
|
17035
17035
|
readonly _tag: "DIRECTIVE_ADDED";
|
17036
17036
|
readonly message: string;
|
17037
17037
|
readonly name: string;
|
17038
|
+
readonly locations: readonly string[];
|
17038
17039
|
readonly criticality: {
|
17039
17040
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
17040
17041
|
readonly reason?: string | undefined;
|
17041
17042
|
};
|
17042
|
-
readonly locations: readonly string[];
|
17043
17043
|
readonly path?: string | undefined;
|
17044
17044
|
} | {
|
17045
17045
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -17630,11 +17630,11 @@ export declare const encodeSync: (a: {
|
|
17630
17630
|
readonly _tag: "DIRECTIVE_ADDED";
|
17631
17631
|
readonly message: string;
|
17632
17632
|
readonly name: string;
|
17633
|
+
readonly locations: readonly string[];
|
17633
17634
|
readonly criticality: {
|
17634
17635
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
17635
17636
|
readonly reason?: string | undefined;
|
17636
17637
|
};
|
17637
|
-
readonly locations: readonly string[];
|
17638
17638
|
readonly path?: string | undefined;
|
17639
17639
|
} | {
|
17640
17640
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -18230,11 +18230,11 @@ export declare const equivalence: import("effect/Equivalence").Equivalence<{
|
|
18230
18230
|
readonly path?: string | undefined;
|
18231
18231
|
readonly message: string;
|
18232
18232
|
readonly name: string;
|
18233
|
+
readonly locations: readonly string[];
|
18233
18234
|
readonly criticality: {
|
18234
18235
|
readonly reason?: string | undefined;
|
18235
18236
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
18236
18237
|
};
|
18237
|
-
readonly locations: readonly string[];
|
18238
18238
|
} | {
|
18239
18239
|
readonly _tag: "DIRECTIVE_REMOVED";
|
18240
18240
|
readonly path?: string | undefined;
|
@@ -18826,11 +18826,11 @@ export declare const equivalence: import("effect/Equivalence").Equivalence<{
|
|
18826
18826
|
readonly path?: string | undefined;
|
18827
18827
|
readonly message: string;
|
18828
18828
|
readonly name: string;
|
18829
|
+
readonly locations: readonly string[];
|
18829
18830
|
readonly criticality: {
|
18830
18831
|
readonly reason?: string | undefined;
|
18831
18832
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
18832
18833
|
};
|
18833
|
-
readonly locations: readonly string[];
|
18834
18834
|
} | {
|
18835
18835
|
readonly _tag: "DIRECTIVE_REMOVED";
|
18836
18836
|
readonly path?: string | undefined;
|
@@ -19421,11 +19421,11 @@ export declare const equivalence: import("effect/Equivalence").Equivalence<{
|
|
19421
19421
|
readonly path?: string | undefined;
|
19422
19422
|
readonly message: string;
|
19423
19423
|
readonly name: string;
|
19424
|
+
readonly locations: readonly string[];
|
19424
19425
|
readonly criticality: {
|
19425
19426
|
readonly reason?: string | undefined;
|
19426
19427
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
19427
19428
|
};
|
19428
|
-
readonly locations: readonly string[];
|
19429
19429
|
} | {
|
19430
19430
|
readonly _tag: "DIRECTIVE_REMOVED";
|
19431
19431
|
readonly path?: string | undefined;
|
@@ -1008,11 +1008,11 @@ export declare const make: (props: {
|
|
1008
1008
|
readonly path?: string | undefined;
|
1009
1009
|
readonly message: string;
|
1010
1010
|
readonly name: string;
|
1011
|
+
readonly locations: readonly string[];
|
1011
1012
|
readonly criticality: {
|
1012
1013
|
readonly reason?: string | undefined;
|
1013
1014
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
1014
1015
|
};
|
1015
|
-
readonly locations: readonly string[];
|
1016
1016
|
} | {
|
1017
1017
|
readonly _tag: "DIRECTIVE_REMOVED";
|
1018
1018
|
readonly path?: string | undefined;
|
@@ -1605,11 +1605,11 @@ export declare const make: (props: {
|
|
1605
1605
|
readonly path?: string | undefined;
|
1606
1606
|
readonly message: string;
|
1607
1607
|
readonly name: string;
|
1608
|
+
readonly locations: readonly string[];
|
1608
1609
|
readonly criticality: {
|
1609
1610
|
readonly reason?: string | undefined;
|
1610
1611
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
1611
1612
|
};
|
1612
|
-
readonly locations: readonly string[];
|
1613
1613
|
} | {
|
1614
1614
|
readonly _tag: "DIRECTIVE_REMOVED";
|
1615
1615
|
readonly path?: string | undefined;
|
@@ -2203,11 +2203,11 @@ export declare const is: (u: unknown, overrideOptions?: import("effect/SchemaAST
|
|
2203
2203
|
readonly path?: string | undefined;
|
2204
2204
|
readonly message: string;
|
2205
2205
|
readonly name: string;
|
2206
|
+
readonly locations: readonly string[];
|
2206
2207
|
readonly criticality: {
|
2207
2208
|
readonly reason?: string | undefined;
|
2208
2209
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2209
2210
|
};
|
2210
|
-
readonly locations: readonly string[];
|
2211
2211
|
} | {
|
2212
2212
|
readonly _tag: "DIRECTIVE_REMOVED";
|
2213
2213
|
readonly path?: string | undefined;
|
@@ -2800,11 +2800,11 @@ export declare const decode: (i: {
|
|
2800
2800
|
readonly _tag: "DIRECTIVE_ADDED";
|
2801
2801
|
readonly message: string;
|
2802
2802
|
readonly name: string;
|
2803
|
+
readonly locations: readonly string[];
|
2803
2804
|
readonly criticality: {
|
2804
2805
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
2805
2806
|
readonly reason?: string | undefined;
|
2806
2807
|
};
|
2807
|
-
readonly locations: readonly string[];
|
2808
2808
|
readonly path?: string | undefined;
|
2809
2809
|
} | {
|
2810
2810
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -3398,11 +3398,11 @@ export declare const decode: (i: {
|
|
3398
3398
|
readonly path?: string | undefined;
|
3399
3399
|
readonly message: string;
|
3400
3400
|
readonly name: string;
|
3401
|
+
readonly locations: readonly string[];
|
3401
3402
|
readonly criticality: {
|
3402
3403
|
readonly reason?: string | undefined;
|
3403
3404
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
3404
3405
|
};
|
3405
|
-
readonly locations: readonly string[];
|
3406
3406
|
} | {
|
3407
3407
|
readonly _tag: "DIRECTIVE_REMOVED";
|
3408
3408
|
readonly path?: string | undefined;
|
@@ -3996,11 +3996,11 @@ export declare const encode: (a: {
|
|
3996
3996
|
readonly path?: string | undefined;
|
3997
3997
|
readonly message: string;
|
3998
3998
|
readonly name: string;
|
3999
|
+
readonly locations: readonly string[];
|
3999
4000
|
readonly criticality: {
|
4000
4001
|
readonly reason?: string | undefined;
|
4001
4002
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
4002
4003
|
};
|
4003
|
-
readonly locations: readonly string[];
|
4004
4004
|
} | {
|
4005
4005
|
readonly _tag: "DIRECTIVE_REMOVED";
|
4006
4006
|
readonly path?: string | undefined;
|
@@ -4592,11 +4592,11 @@ export declare const encode: (a: {
|
|
4592
4592
|
readonly _tag: "DIRECTIVE_ADDED";
|
4593
4593
|
readonly message: string;
|
4594
4594
|
readonly name: string;
|
4595
|
+
readonly locations: readonly string[];
|
4595
4596
|
readonly criticality: {
|
4596
4597
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
4597
4598
|
readonly reason?: string | undefined;
|
4598
4599
|
};
|
4599
|
-
readonly locations: readonly string[];
|
4600
4600
|
readonly path?: string | undefined;
|
4601
4601
|
} | {
|
4602
4602
|
readonly _tag: "DIRECTIVE_REMOVED";
|
@@ -5191,11 +5191,11 @@ export declare const equivalence: import("effect/Equivalence").Equivalence<{
|
|
5191
5191
|
readonly path?: string | undefined;
|
5192
5192
|
readonly message: string;
|
5193
5193
|
readonly name: string;
|
5194
|
+
readonly locations: readonly string[];
|
5194
5195
|
readonly criticality: {
|
5195
5196
|
readonly reason?: string | undefined;
|
5196
5197
|
readonly level: "BREAKING" | "DANGEROUS" | "NON_BREAKING";
|
5197
5198
|
};
|
5198
|
-
readonly locations: readonly string[];
|
5199
5199
|
} | {
|
5200
5200
|
readonly _tag: "DIRECTIVE_REMOVED";
|
5201
5201
|
readonly path?: string | undefined;
|