@usefragments/core 1.4.0 → 1.5.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/{chunk-CBSNXFOD.js → chunk-AOG4FTV6.js} +146 -6
- package/dist/chunk-AOG4FTV6.js.map +1 -0
- package/dist/{chunk-57QDBEHQ.js → chunk-ZHS52OT4.js} +3 -9
- package/dist/chunk-ZHS52OT4.js.map +1 -0
- package/dist/codes/index.d.ts +2 -2
- package/dist/codes/index.js +2 -2
- package/dist/compiled-types/index.d.ts +1 -1
- package/dist/generate/index.d.ts +1 -1
- package/dist/{governance-DxdJV6lx.d.ts → governance-B88uR3Zq.d.ts} +229 -1
- package/dist/{index-0lmh0Lbo.d.ts → index-DbkPE46t.d.ts} +48 -8
- package/dist/index.d.ts +779 -158
- package/dist/index.js +674 -127
- package/dist/index.js.map +1 -1
- package/dist/react-types.d.ts +1 -1
- package/dist/registry.d.ts +18 -18
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +1 -1
- package/dist/test-utils.d.ts +1 -1
- package/package.json +1 -1
- package/src/agent-format.test.ts +1 -0
- package/src/canonical-bridge.ts +46 -0
- package/src/canonical-direction.ts +118 -0
- package/src/codes/codes.ts +18 -0
- package/src/conform.ts +5 -0
- package/src/contract/preimage.test.ts +40 -0
- package/src/contract/preimage.ts +20 -0
- package/src/effective-governance-inputs.test.ts +52 -0
- package/src/effective-governance-inputs.ts +106 -0
- package/src/facts/builders.ts +70 -2
- package/src/facts/compile.ts +20 -2
- package/src/facts/fact-index.ts +4 -0
- package/src/facts/facts.test.ts +30 -0
- package/src/facts/index.ts +6 -0
- package/src/facts/types.ts +86 -7
- package/src/governance-integrity.test.ts +22 -0
- package/src/governance-integrity.ts +10 -4
- package/src/governance.test.ts +93 -0
- package/src/governance.ts +76 -0
- package/src/identity/classify.test.ts +185 -0
- package/src/identity/classify.ts +257 -0
- package/src/identity/component-key.test.ts +32 -0
- package/src/identity/component-key.ts +35 -0
- package/src/identity/usage.ts +39 -0
- package/src/index.ts +48 -0
- package/src/rules/__tests__/fix-emission-invariant.test.ts +35 -4
- package/src/rules/components-prefer-library.test.ts +151 -0
- package/src/rules/components-prefer-library.ts +46 -4
- package/src/rules/components-shadow-component.test.ts +145 -0
- package/src/rules/components-shadow-component.ts +81 -0
- package/src/rules/fix-availability.ts +2 -0
- package/src/rules/index.ts +14 -0
- package/src/rules/jsx-preferred-import-path.ts +45 -9
- package/src/rules/rules.test.ts +202 -6
- package/src/rules/spacing-resolution.ts +2 -2
- package/src/rules/styles-no-raw-color.test.ts +6 -1
- package/src/rules/styles-no-raw-color.ts +3 -2
- package/src/rules/styles-no-raw-dimensions.ts +5 -7
- package/src/rules/styles-no-raw-spacing.ts +5 -2
- package/src/rules/styles-no-raw-typography.ts +7 -4
- package/src/rules/taxonomy.test.ts +19 -1
- package/src/rules/tiers.ts +9 -5
- package/src/rules/token-candidates.ts +36 -0
- package/src/rules/tokens-require-dual-fallback.ts +2 -1
- package/src/rules/tokens-upstream-drift.test.ts +111 -0
- package/src/rules/tokens-upstream-drift.ts +57 -0
- package/src/rules/utils.ts +22 -14
- package/src/schema.ts +28 -0
- package/src/schemas/index.ts +5 -8
- package/src/token-types.ts +71 -1
- package/src/types.ts +18 -0
- package/dist/chunk-57QDBEHQ.js.map +0 -1
- package/dist/chunk-CBSNXFOD.js.map +0 -1
|
@@ -2416,6 +2416,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2416
2416
|
}>;
|
|
2417
2417
|
engineVersion: z.ZodString;
|
|
2418
2418
|
scopeHash: z.ZodString;
|
|
2419
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
2419
2420
|
inputFilesHash: z.ZodString;
|
|
2420
2421
|
}, "strip", z.ZodTypeAny, {
|
|
2421
2422
|
scope: {
|
|
@@ -2428,6 +2429,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2428
2429
|
scopeHash: string;
|
|
2429
2430
|
inputFilesHash: string;
|
|
2430
2431
|
baselineId?: string | undefined;
|
|
2432
|
+
inputsHash?: string | undefined;
|
|
2431
2433
|
}, {
|
|
2432
2434
|
scope: {
|
|
2433
2435
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -2439,6 +2441,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2439
2441
|
scopeHash: string;
|
|
2440
2442
|
inputFilesHash: string;
|
|
2441
2443
|
baselineId?: string | undefined;
|
|
2444
|
+
inputsHash?: string | undefined;
|
|
2442
2445
|
}>>;
|
|
2443
2446
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
2444
2447
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -2534,12 +2537,12 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2534
2537
|
maxIterations: number;
|
|
2535
2538
|
scoreDelta: number;
|
|
2536
2539
|
};
|
|
2540
|
+
status?: undefined;
|
|
2537
2541
|
verdict?: {
|
|
2538
2542
|
reasons: string[];
|
|
2539
2543
|
exitCode: 0 | 1;
|
|
2540
2544
|
gatingFindingCount: number;
|
|
2541
2545
|
} | undefined;
|
|
2542
|
-
status?: undefined;
|
|
2543
2546
|
findings?: {
|
|
2544
2547
|
message: string;
|
|
2545
2548
|
location: {
|
|
@@ -2619,6 +2622,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2619
2622
|
scopeHash: string;
|
|
2620
2623
|
inputFilesHash: string;
|
|
2621
2624
|
baselineId?: string | undefined;
|
|
2625
|
+
inputsHash?: string | undefined;
|
|
2622
2626
|
} | undefined;
|
|
2623
2627
|
}, {
|
|
2624
2628
|
passed: boolean;
|
|
@@ -2676,12 +2680,12 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2676
2680
|
maxIterations: number;
|
|
2677
2681
|
scoreDelta: number;
|
|
2678
2682
|
};
|
|
2683
|
+
status?: undefined;
|
|
2679
2684
|
verdict?: {
|
|
2680
2685
|
reasons: string[];
|
|
2681
2686
|
exitCode: 0 | 1;
|
|
2682
2687
|
gatingFindingCount: number;
|
|
2683
2688
|
} | undefined;
|
|
2684
|
-
status?: undefined;
|
|
2685
2689
|
findings?: {
|
|
2686
2690
|
message: string;
|
|
2687
2691
|
location: {
|
|
@@ -2761,6 +2765,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2761
2765
|
scopeHash: string;
|
|
2762
2766
|
inputFilesHash: string;
|
|
2763
2767
|
baselineId?: string | undefined;
|
|
2768
|
+
inputsHash?: string | undefined;
|
|
2764
2769
|
} | undefined;
|
|
2765
2770
|
}>, z.ZodObject<{
|
|
2766
2771
|
schemaVersion: z.ZodLiteral<"typestyle.agent.v2">;
|
|
@@ -3208,6 +3213,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3208
3213
|
}>;
|
|
3209
3214
|
engineVersion: z.ZodString;
|
|
3210
3215
|
scopeHash: z.ZodString;
|
|
3216
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
3211
3217
|
inputFilesHash: z.ZodString;
|
|
3212
3218
|
}, "strip", z.ZodTypeAny, {
|
|
3213
3219
|
scope: {
|
|
@@ -3220,6 +3226,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3220
3226
|
scopeHash: string;
|
|
3221
3227
|
inputFilesHash: string;
|
|
3222
3228
|
baselineId?: string | undefined;
|
|
3229
|
+
inputsHash?: string | undefined;
|
|
3223
3230
|
}, {
|
|
3224
3231
|
scope: {
|
|
3225
3232
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -3231,6 +3238,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3231
3238
|
scopeHash: string;
|
|
3232
3239
|
inputFilesHash: string;
|
|
3233
3240
|
baselineId?: string | undefined;
|
|
3241
|
+
inputsHash?: string | undefined;
|
|
3234
3242
|
}>>;
|
|
3235
3243
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
3236
3244
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -3411,6 +3419,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3411
3419
|
scopeHash: string;
|
|
3412
3420
|
inputFilesHash: string;
|
|
3413
3421
|
baselineId?: string | undefined;
|
|
3422
|
+
inputsHash?: string | undefined;
|
|
3414
3423
|
} | undefined;
|
|
3415
3424
|
}, {
|
|
3416
3425
|
status: "indeterminate";
|
|
@@ -3553,6 +3562,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3553
3562
|
scopeHash: string;
|
|
3554
3563
|
inputFilesHash: string;
|
|
3555
3564
|
baselineId?: string | undefined;
|
|
3565
|
+
inputsHash?: string | undefined;
|
|
3556
3566
|
} | undefined;
|
|
3557
3567
|
}>, z.ZodObject<{
|
|
3558
3568
|
schemaVersion: z.ZodLiteral<"typestyle.agent.v2">;
|
|
@@ -4025,6 +4035,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4025
4035
|
}>;
|
|
4026
4036
|
engineVersion: z.ZodString;
|
|
4027
4037
|
scopeHash: z.ZodString;
|
|
4038
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
4028
4039
|
inputFilesHash: z.ZodString;
|
|
4029
4040
|
}, "strip", z.ZodTypeAny, {
|
|
4030
4041
|
scope: {
|
|
@@ -4037,6 +4048,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4037
4048
|
scopeHash: string;
|
|
4038
4049
|
inputFilesHash: string;
|
|
4039
4050
|
baselineId?: string | undefined;
|
|
4051
|
+
inputsHash?: string | undefined;
|
|
4040
4052
|
}, {
|
|
4041
4053
|
scope: {
|
|
4042
4054
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -4048,6 +4060,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4048
4060
|
scopeHash: string;
|
|
4049
4061
|
inputFilesHash: string;
|
|
4050
4062
|
baselineId?: string | undefined;
|
|
4063
|
+
inputsHash?: string | undefined;
|
|
4051
4064
|
}>;
|
|
4052
4065
|
verdict: z.ZodObject<{
|
|
4053
4066
|
reasons: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4064,12 +4077,12 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4064
4077
|
gatingFindingCount: number;
|
|
4065
4078
|
}>;
|
|
4066
4079
|
}, "strip", z.ZodTypeAny, {
|
|
4080
|
+
status: "indeterminate";
|
|
4067
4081
|
verdict: {
|
|
4068
4082
|
reasons: string[];
|
|
4069
4083
|
exitCode: 0;
|
|
4070
4084
|
gatingFindingCount: number;
|
|
4071
4085
|
};
|
|
4072
|
-
status: "indeterminate";
|
|
4073
4086
|
passed: true;
|
|
4074
4087
|
reasons: ["zero_rules_loaded"];
|
|
4075
4088
|
schemaVersion: "typestyle.agent.v2";
|
|
@@ -4136,6 +4149,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4136
4149
|
scopeHash: string;
|
|
4137
4150
|
inputFilesHash: string;
|
|
4138
4151
|
baselineId?: string | undefined;
|
|
4152
|
+
inputsHash?: string | undefined;
|
|
4139
4153
|
};
|
|
4140
4154
|
findings?: {
|
|
4141
4155
|
message: string;
|
|
@@ -4206,12 +4220,12 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4206
4220
|
expiresOn?: string | undefined;
|
|
4207
4221
|
}[] | undefined;
|
|
4208
4222
|
}, {
|
|
4223
|
+
status: "indeterminate";
|
|
4209
4224
|
verdict: {
|
|
4210
4225
|
reasons: string[];
|
|
4211
4226
|
exitCode: 0;
|
|
4212
4227
|
gatingFindingCount: number;
|
|
4213
4228
|
};
|
|
4214
|
-
status: "indeterminate";
|
|
4215
4229
|
passed: true;
|
|
4216
4230
|
reasons: ["zero_rules_loaded"];
|
|
4217
4231
|
schemaVersion: "typestyle.agent.v2";
|
|
@@ -4278,6 +4292,7 @@ declare const agentFormatSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4278
4292
|
scopeHash: string;
|
|
4279
4293
|
inputFilesHash: string;
|
|
4280
4294
|
baselineId?: string | undefined;
|
|
4295
|
+
inputsHash?: string | undefined;
|
|
4281
4296
|
};
|
|
4282
4297
|
findings?: {
|
|
4283
4298
|
message: string;
|
|
@@ -4378,6 +4393,7 @@ declare const agentErrorEnvelopeSchema: z.ZodObject<{
|
|
|
4378
4393
|
}>;
|
|
4379
4394
|
engineVersion: z.ZodString;
|
|
4380
4395
|
scopeHash: z.ZodString;
|
|
4396
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
4381
4397
|
inputFilesHash: z.ZodString;
|
|
4382
4398
|
}, "strip", z.ZodTypeAny, {
|
|
4383
4399
|
scope: {
|
|
@@ -4390,6 +4406,7 @@ declare const agentErrorEnvelopeSchema: z.ZodObject<{
|
|
|
4390
4406
|
scopeHash: string;
|
|
4391
4407
|
inputFilesHash: string;
|
|
4392
4408
|
baselineId?: string | undefined;
|
|
4409
|
+
inputsHash?: string | undefined;
|
|
4393
4410
|
}, {
|
|
4394
4411
|
scope: {
|
|
4395
4412
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -4401,6 +4418,7 @@ declare const agentErrorEnvelopeSchema: z.ZodObject<{
|
|
|
4401
4418
|
scopeHash: string;
|
|
4402
4419
|
inputFilesHash: string;
|
|
4403
4420
|
baselineId?: string | undefined;
|
|
4421
|
+
inputsHash?: string | undefined;
|
|
4404
4422
|
}>>;
|
|
4405
4423
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
4406
4424
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -4440,6 +4458,7 @@ declare const agentErrorEnvelopeSchema: z.ZodObject<{
|
|
|
4440
4458
|
scopeHash: string;
|
|
4441
4459
|
inputFilesHash: string;
|
|
4442
4460
|
baselineId?: string | undefined;
|
|
4461
|
+
inputsHash?: string | undefined;
|
|
4443
4462
|
} | undefined;
|
|
4444
4463
|
cloudReport?: "reported" | "failed" | "skipped" | undefined;
|
|
4445
4464
|
notices?: string[] | undefined;
|
|
@@ -4466,6 +4485,7 @@ declare const agentErrorEnvelopeSchema: z.ZodObject<{
|
|
|
4466
4485
|
scopeHash: string;
|
|
4467
4486
|
inputFilesHash: string;
|
|
4468
4487
|
baselineId?: string | undefined;
|
|
4488
|
+
inputsHash?: string | undefined;
|
|
4469
4489
|
} | undefined;
|
|
4470
4490
|
cloudReport?: "reported" | "failed" | "skipped" | undefined;
|
|
4471
4491
|
notices?: string[] | undefined;
|
|
@@ -4917,6 +4937,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4917
4937
|
}>;
|
|
4918
4938
|
engineVersion: z.ZodString;
|
|
4919
4939
|
scopeHash: z.ZodString;
|
|
4940
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
4920
4941
|
inputFilesHash: z.ZodString;
|
|
4921
4942
|
}, "strip", z.ZodTypeAny, {
|
|
4922
4943
|
scope: {
|
|
@@ -4929,6 +4950,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4929
4950
|
scopeHash: string;
|
|
4930
4951
|
inputFilesHash: string;
|
|
4931
4952
|
baselineId?: string | undefined;
|
|
4953
|
+
inputsHash?: string | undefined;
|
|
4932
4954
|
}, {
|
|
4933
4955
|
scope: {
|
|
4934
4956
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -4940,6 +4962,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4940
4962
|
scopeHash: string;
|
|
4941
4963
|
inputFilesHash: string;
|
|
4942
4964
|
baselineId?: string | undefined;
|
|
4965
|
+
inputsHash?: string | undefined;
|
|
4943
4966
|
}>>;
|
|
4944
4967
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
4945
4968
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -5035,12 +5058,12 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5035
5058
|
maxIterations: number;
|
|
5036
5059
|
scoreDelta: number;
|
|
5037
5060
|
};
|
|
5061
|
+
status?: undefined;
|
|
5038
5062
|
verdict?: {
|
|
5039
5063
|
reasons: string[];
|
|
5040
5064
|
exitCode: 0 | 1;
|
|
5041
5065
|
gatingFindingCount: number;
|
|
5042
5066
|
} | undefined;
|
|
5043
|
-
status?: undefined;
|
|
5044
5067
|
findings?: {
|
|
5045
5068
|
message: string;
|
|
5046
5069
|
location: {
|
|
@@ -5120,6 +5143,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5120
5143
|
scopeHash: string;
|
|
5121
5144
|
inputFilesHash: string;
|
|
5122
5145
|
baselineId?: string | undefined;
|
|
5146
|
+
inputsHash?: string | undefined;
|
|
5123
5147
|
} | undefined;
|
|
5124
5148
|
}, {
|
|
5125
5149
|
passed: boolean;
|
|
@@ -5177,12 +5201,12 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5177
5201
|
maxIterations: number;
|
|
5178
5202
|
scoreDelta: number;
|
|
5179
5203
|
};
|
|
5204
|
+
status?: undefined;
|
|
5180
5205
|
verdict?: {
|
|
5181
5206
|
reasons: string[];
|
|
5182
5207
|
exitCode: 0 | 1;
|
|
5183
5208
|
gatingFindingCount: number;
|
|
5184
5209
|
} | undefined;
|
|
5185
|
-
status?: undefined;
|
|
5186
5210
|
findings?: {
|
|
5187
5211
|
message: string;
|
|
5188
5212
|
location: {
|
|
@@ -5262,6 +5286,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5262
5286
|
scopeHash: string;
|
|
5263
5287
|
inputFilesHash: string;
|
|
5264
5288
|
baselineId?: string | undefined;
|
|
5289
|
+
inputsHash?: string | undefined;
|
|
5265
5290
|
} | undefined;
|
|
5266
5291
|
}>, z.ZodObject<{
|
|
5267
5292
|
schemaVersion: z.ZodLiteral<"typestyle.agent.v2">;
|
|
@@ -5709,6 +5734,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5709
5734
|
}>;
|
|
5710
5735
|
engineVersion: z.ZodString;
|
|
5711
5736
|
scopeHash: z.ZodString;
|
|
5737
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
5712
5738
|
inputFilesHash: z.ZodString;
|
|
5713
5739
|
}, "strip", z.ZodTypeAny, {
|
|
5714
5740
|
scope: {
|
|
@@ -5721,6 +5747,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5721
5747
|
scopeHash: string;
|
|
5722
5748
|
inputFilesHash: string;
|
|
5723
5749
|
baselineId?: string | undefined;
|
|
5750
|
+
inputsHash?: string | undefined;
|
|
5724
5751
|
}, {
|
|
5725
5752
|
scope: {
|
|
5726
5753
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -5732,6 +5759,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5732
5759
|
scopeHash: string;
|
|
5733
5760
|
inputFilesHash: string;
|
|
5734
5761
|
baselineId?: string | undefined;
|
|
5762
|
+
inputsHash?: string | undefined;
|
|
5735
5763
|
}>>;
|
|
5736
5764
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
5737
5765
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -5912,6 +5940,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5912
5940
|
scopeHash: string;
|
|
5913
5941
|
inputFilesHash: string;
|
|
5914
5942
|
baselineId?: string | undefined;
|
|
5943
|
+
inputsHash?: string | undefined;
|
|
5915
5944
|
} | undefined;
|
|
5916
5945
|
}, {
|
|
5917
5946
|
status: "indeterminate";
|
|
@@ -6054,6 +6083,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6054
6083
|
scopeHash: string;
|
|
6055
6084
|
inputFilesHash: string;
|
|
6056
6085
|
baselineId?: string | undefined;
|
|
6086
|
+
inputsHash?: string | undefined;
|
|
6057
6087
|
} | undefined;
|
|
6058
6088
|
}>, z.ZodObject<{
|
|
6059
6089
|
schemaVersion: z.ZodLiteral<"typestyle.agent.v2">;
|
|
@@ -6526,6 +6556,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6526
6556
|
}>;
|
|
6527
6557
|
engineVersion: z.ZodString;
|
|
6528
6558
|
scopeHash: z.ZodString;
|
|
6559
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
6529
6560
|
inputFilesHash: z.ZodString;
|
|
6530
6561
|
}, "strip", z.ZodTypeAny, {
|
|
6531
6562
|
scope: {
|
|
@@ -6538,6 +6569,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6538
6569
|
scopeHash: string;
|
|
6539
6570
|
inputFilesHash: string;
|
|
6540
6571
|
baselineId?: string | undefined;
|
|
6572
|
+
inputsHash?: string | undefined;
|
|
6541
6573
|
}, {
|
|
6542
6574
|
scope: {
|
|
6543
6575
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -6549,6 +6581,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6549
6581
|
scopeHash: string;
|
|
6550
6582
|
inputFilesHash: string;
|
|
6551
6583
|
baselineId?: string | undefined;
|
|
6584
|
+
inputsHash?: string | undefined;
|
|
6552
6585
|
}>;
|
|
6553
6586
|
verdict: z.ZodObject<{
|
|
6554
6587
|
reasons: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6565,12 +6598,12 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6565
6598
|
gatingFindingCount: number;
|
|
6566
6599
|
}>;
|
|
6567
6600
|
}, "strip", z.ZodTypeAny, {
|
|
6601
|
+
status: "indeterminate";
|
|
6568
6602
|
verdict: {
|
|
6569
6603
|
reasons: string[];
|
|
6570
6604
|
exitCode: 0;
|
|
6571
6605
|
gatingFindingCount: number;
|
|
6572
6606
|
};
|
|
6573
|
-
status: "indeterminate";
|
|
6574
6607
|
passed: true;
|
|
6575
6608
|
reasons: ["zero_rules_loaded"];
|
|
6576
6609
|
schemaVersion: "typestyle.agent.v2";
|
|
@@ -6637,6 +6670,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6637
6670
|
scopeHash: string;
|
|
6638
6671
|
inputFilesHash: string;
|
|
6639
6672
|
baselineId?: string | undefined;
|
|
6673
|
+
inputsHash?: string | undefined;
|
|
6640
6674
|
};
|
|
6641
6675
|
findings?: {
|
|
6642
6676
|
message: string;
|
|
@@ -6707,12 +6741,12 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6707
6741
|
expiresOn?: string | undefined;
|
|
6708
6742
|
}[] | undefined;
|
|
6709
6743
|
}, {
|
|
6744
|
+
status: "indeterminate";
|
|
6710
6745
|
verdict: {
|
|
6711
6746
|
reasons: string[];
|
|
6712
6747
|
exitCode: 0;
|
|
6713
6748
|
gatingFindingCount: number;
|
|
6714
6749
|
};
|
|
6715
|
-
status: "indeterminate";
|
|
6716
6750
|
passed: true;
|
|
6717
6751
|
reasons: ["zero_rules_loaded"];
|
|
6718
6752
|
schemaVersion: "typestyle.agent.v2";
|
|
@@ -6779,6 +6813,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6779
6813
|
scopeHash: string;
|
|
6780
6814
|
inputFilesHash: string;
|
|
6781
6815
|
baselineId?: string | undefined;
|
|
6816
|
+
inputsHash?: string | undefined;
|
|
6782
6817
|
};
|
|
6783
6818
|
findings?: {
|
|
6784
6819
|
message: string;
|
|
@@ -6877,6 +6912,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6877
6912
|
}>;
|
|
6878
6913
|
engineVersion: z.ZodString;
|
|
6879
6914
|
scopeHash: z.ZodString;
|
|
6915
|
+
inputsHash: z.ZodOptional<z.ZodString>;
|
|
6880
6916
|
inputFilesHash: z.ZodString;
|
|
6881
6917
|
}, "strip", z.ZodTypeAny, {
|
|
6882
6918
|
scope: {
|
|
@@ -6889,6 +6925,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6889
6925
|
scopeHash: string;
|
|
6890
6926
|
inputFilesHash: string;
|
|
6891
6927
|
baselineId?: string | undefined;
|
|
6928
|
+
inputsHash?: string | undefined;
|
|
6892
6929
|
}, {
|
|
6893
6930
|
scope: {
|
|
6894
6931
|
method: "status" | "three-dot" | "tree-diff" | "fallback-full" | "explicit" | "full";
|
|
@@ -6900,6 +6937,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6900
6937
|
scopeHash: string;
|
|
6901
6938
|
inputFilesHash: string;
|
|
6902
6939
|
baselineId?: string | undefined;
|
|
6940
|
+
inputsHash?: string | undefined;
|
|
6903
6941
|
}>>;
|
|
6904
6942
|
verdict: z.ZodOptional<z.ZodObject<{
|
|
6905
6943
|
exitCode: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
@@ -6939,6 +6977,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6939
6977
|
scopeHash: string;
|
|
6940
6978
|
inputFilesHash: string;
|
|
6941
6979
|
baselineId?: string | undefined;
|
|
6980
|
+
inputsHash?: string | undefined;
|
|
6942
6981
|
} | undefined;
|
|
6943
6982
|
cloudReport?: "reported" | "failed" | "skipped" | undefined;
|
|
6944
6983
|
notices?: string[] | undefined;
|
|
@@ -6965,6 +7004,7 @@ declare const agentOutputSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6965
7004
|
scopeHash: string;
|
|
6966
7005
|
inputFilesHash: string;
|
|
6967
7006
|
baselineId?: string | undefined;
|
|
7007
|
+
inputsHash?: string | undefined;
|
|
6968
7008
|
} | undefined;
|
|
6969
7009
|
cloudReport?: "reported" | "failed" | "skipped" | undefined;
|
|
6970
7010
|
notices?: string[] | undefined;
|