@claudexor/schema 3.12.8 → 3.12.10
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/control-harness-list.d.ts +9 -0
- package/dist/control-harness-list.d.ts.map +1 -1
- package/dist/control-operation-responses.d.ts +43 -0
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-run-detail.d.ts +119 -0
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-run-failure.d.ts +43 -0
- package/dist/control-run-failure.d.ts.map +1 -1
- package/dist/control-run-failure.js +29 -0
- package/dist/control-run-failure.js.map +1 -1
- package/dist/control.d.ts +33 -0
- package/dist/control.d.ts.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +18 -0
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/harness.d.ts +27 -0
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +12 -0
- package/dist/harness.js.map +1 -1
- package/dist/mcp-run-result.d.ts +66 -0
- package/dist/mcp-run-result.d.ts.map +1 -1
- package/dist/readiness.d.ts +7 -0
- package/dist/readiness.d.ts.map +1 -1
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +8 -0
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +8 -0
- package/generated/ControlHarnessListResponse.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +52 -0
- package/generated/ControlRunListResponse.schema.json +52 -0
- package/generated/ControlRunSummary.schema.json +52 -0
- package/generated/HarnessManifest.schema.json +8 -0
- package/generated/HarnessStatusDto.schema.json +8 -0
- package/generated/McpRunHandleResult.schema.json +52 -0
- package/generated/McpRunToolResult.schema.json +52 -0
- package/generated/RunFailure.schema.json +52 -0
- package/package.json +2 -2
|
@@ -277,6 +277,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
277
277
|
}>>>;
|
|
278
278
|
effort_levels_verified_against: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
279
279
|
model_inventory_routes: z.ZodOptional<z.ZodArray<z.ZodEnum<["local_session", "api_key"]>, "many">>;
|
|
280
|
+
model_inventory_absence: z.ZodOptional<z.ZodEnum<["authoritative", "advisory"]>>;
|
|
280
281
|
known_models: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
281
282
|
id: z.ZodString;
|
|
282
283
|
routes: z.ZodArray<z.ZodEnum<["local_session", "api_key"]>, "many">;
|
|
@@ -313,6 +314,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
313
314
|
}>;
|
|
314
315
|
effort_levels_verified_against: string | null;
|
|
315
316
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
317
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
316
318
|
known_models: (string | {
|
|
317
319
|
id: string;
|
|
318
320
|
routes: ("api_key" | "local_session")[];
|
|
@@ -343,6 +345,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
343
345
|
}> | undefined;
|
|
344
346
|
effort_levels_verified_against?: string | null | undefined;
|
|
345
347
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
348
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
346
349
|
known_models?: (string | {
|
|
347
350
|
id: string;
|
|
348
351
|
routes: ("api_key" | "local_session")[];
|
|
@@ -421,6 +424,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
421
424
|
}>;
|
|
422
425
|
effort_levels_verified_against: string | null;
|
|
423
426
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
427
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
424
428
|
known_models: (string | {
|
|
425
429
|
id: string;
|
|
426
430
|
routes: ("api_key" | "local_session")[];
|
|
@@ -499,6 +503,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
499
503
|
}> | undefined;
|
|
500
504
|
effort_levels_verified_against?: string | null | undefined;
|
|
501
505
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
506
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
502
507
|
known_models?: (string | {
|
|
503
508
|
id: string;
|
|
504
509
|
routes: ("api_key" | "local_session")[];
|
|
@@ -680,6 +685,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
680
685
|
}>;
|
|
681
686
|
effort_levels_verified_against: string | null;
|
|
682
687
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
688
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
683
689
|
known_models: (string | {
|
|
684
690
|
id: string;
|
|
685
691
|
routes: ("api_key" | "local_session")[];
|
|
@@ -799,6 +805,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
799
805
|
}> | undefined;
|
|
800
806
|
effort_levels_verified_against?: string | null | undefined;
|
|
801
807
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
808
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
802
809
|
known_models?: (string | {
|
|
803
810
|
id: string;
|
|
804
811
|
routes: ("api_key" | "local_session")[];
|
|
@@ -936,6 +943,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
936
943
|
}>;
|
|
937
944
|
effort_levels_verified_against: string | null;
|
|
938
945
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
946
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
939
947
|
known_models: (string | {
|
|
940
948
|
id: string;
|
|
941
949
|
routes: ("api_key" | "local_session")[];
|
|
@@ -1063,6 +1071,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
1063
1071
|
}> | undefined;
|
|
1064
1072
|
effort_levels_verified_against?: string | null | undefined;
|
|
1065
1073
|
model_inventory_routes?: ("api_key" | "local_session")[] | undefined;
|
|
1074
|
+
model_inventory_absence?: "advisory" | "authoritative" | undefined;
|
|
1066
1075
|
known_models?: (string | {
|
|
1067
1076
|
id: string;
|
|
1068
1077
|
routes: ("api_key" | "local_session")[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-harness-list.d.ts","sourceRoot":"","sources":["../src/control-harness-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"control-harness-list.d.ts","sourceRoot":"","sources":["../src/control-harness-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUI,CAAC;AAC5C,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -115,6 +115,19 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
115
115
|
eventRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
116
116
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
117
117
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
118
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
119
|
+
code: z.ZodNullable<z.ZodString>;
|
|
120
|
+
message: z.ZodNullable<z.ZodString>;
|
|
121
|
+
source: z.ZodString;
|
|
122
|
+
}, "strip", z.ZodTypeAny, {
|
|
123
|
+
code: string | null;
|
|
124
|
+
message: string | null;
|
|
125
|
+
source: string;
|
|
126
|
+
}, {
|
|
127
|
+
code: string | null;
|
|
128
|
+
message: string | null;
|
|
129
|
+
source: string;
|
|
130
|
+
}>>>;
|
|
118
131
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
119
132
|
}, "strip", z.ZodTypeAny, {
|
|
120
133
|
phase: string;
|
|
@@ -128,6 +141,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
128
141
|
eventRefs: string[];
|
|
129
142
|
runDir: string | null;
|
|
130
143
|
resetsAt: string | null;
|
|
144
|
+
vendorFailure: {
|
|
145
|
+
code: string | null;
|
|
146
|
+
message: string | null;
|
|
147
|
+
source: string;
|
|
148
|
+
} | null;
|
|
131
149
|
nextActions: string[];
|
|
132
150
|
}, {
|
|
133
151
|
phase?: string | undefined;
|
|
@@ -141,6 +159,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
141
159
|
eventRefs?: string[] | undefined;
|
|
142
160
|
runDir?: string | null | undefined;
|
|
143
161
|
resetsAt?: string | null | undefined;
|
|
162
|
+
vendorFailure?: {
|
|
163
|
+
code: string | null;
|
|
164
|
+
message: string | null;
|
|
165
|
+
source: string;
|
|
166
|
+
} | null | undefined;
|
|
144
167
|
nextActions?: string[] | undefined;
|
|
145
168
|
}>>>;
|
|
146
169
|
project: z.ZodDefault<z.ZodObject<{
|
|
@@ -581,6 +604,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
581
604
|
eventRefs: string[];
|
|
582
605
|
runDir: string | null;
|
|
583
606
|
resetsAt: string | null;
|
|
607
|
+
vendorFailure: {
|
|
608
|
+
code: string | null;
|
|
609
|
+
message: string | null;
|
|
610
|
+
source: string;
|
|
611
|
+
} | null;
|
|
584
612
|
nextActions: string[];
|
|
585
613
|
} | null;
|
|
586
614
|
project: {
|
|
@@ -759,6 +787,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
759
787
|
eventRefs?: string[] | undefined;
|
|
760
788
|
runDir?: string | null | undefined;
|
|
761
789
|
resetsAt?: string | null | undefined;
|
|
790
|
+
vendorFailure?: {
|
|
791
|
+
code: string | null;
|
|
792
|
+
message: string | null;
|
|
793
|
+
source: string;
|
|
794
|
+
} | null | undefined;
|
|
762
795
|
nextActions?: string[] | undefined;
|
|
763
796
|
} | null | undefined;
|
|
764
797
|
project?: {
|
|
@@ -947,6 +980,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
947
980
|
eventRefs: string[];
|
|
948
981
|
runDir: string | null;
|
|
949
982
|
resetsAt: string | null;
|
|
983
|
+
vendorFailure: {
|
|
984
|
+
code: string | null;
|
|
985
|
+
message: string | null;
|
|
986
|
+
source: string;
|
|
987
|
+
} | null;
|
|
950
988
|
nextActions: string[];
|
|
951
989
|
} | null;
|
|
952
990
|
project: {
|
|
@@ -1129,6 +1167,11 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1129
1167
|
eventRefs?: string[] | undefined;
|
|
1130
1168
|
runDir?: string | null | undefined;
|
|
1131
1169
|
resetsAt?: string | null | undefined;
|
|
1170
|
+
vendorFailure?: {
|
|
1171
|
+
code: string | null;
|
|
1172
|
+
message: string | null;
|
|
1173
|
+
source: string;
|
|
1174
|
+
} | null | undefined;
|
|
1132
1175
|
nextActions?: string[] | undefined;
|
|
1133
1176
|
} | null | undefined;
|
|
1134
1177
|
project?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAY3B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEqC,CAAC;AAC1E,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,gCAAgC;;;;;;;;;;;;EAUI,CAAC;AAClD,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAEhG,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;EAcW,CAAC;AAClD,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAElF,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"control-operation-responses.d.ts","sourceRoot":"","sources":["../src/control-operation-responses.ts"],"names":[],"mappings":"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"}
|
|
@@ -316,6 +316,19 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
316
316
|
eventRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
317
317
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
318
318
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
319
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
320
|
+
code: z.ZodNullable<z.ZodString>;
|
|
321
|
+
message: z.ZodNullable<z.ZodString>;
|
|
322
|
+
source: z.ZodString;
|
|
323
|
+
}, "strip", z.ZodTypeAny, {
|
|
324
|
+
code: string | null;
|
|
325
|
+
message: string | null;
|
|
326
|
+
source: string;
|
|
327
|
+
}, {
|
|
328
|
+
code: string | null;
|
|
329
|
+
message: string | null;
|
|
330
|
+
source: string;
|
|
331
|
+
}>>>;
|
|
319
332
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
320
333
|
}, "strip", z.ZodTypeAny, {
|
|
321
334
|
phase: string;
|
|
@@ -329,6 +342,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
329
342
|
eventRefs: string[];
|
|
330
343
|
runDir: string | null;
|
|
331
344
|
resetsAt: string | null;
|
|
345
|
+
vendorFailure: {
|
|
346
|
+
code: string | null;
|
|
347
|
+
message: string | null;
|
|
348
|
+
source: string;
|
|
349
|
+
} | null;
|
|
332
350
|
nextActions: string[];
|
|
333
351
|
}, {
|
|
334
352
|
phase?: string | undefined;
|
|
@@ -342,6 +360,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
342
360
|
eventRefs?: string[] | undefined;
|
|
343
361
|
runDir?: string | null | undefined;
|
|
344
362
|
resetsAt?: string | null | undefined;
|
|
363
|
+
vendorFailure?: {
|
|
364
|
+
code: string | null;
|
|
365
|
+
message: string | null;
|
|
366
|
+
source: string;
|
|
367
|
+
} | null | undefined;
|
|
345
368
|
nextActions?: string[] | undefined;
|
|
346
369
|
}>>>;
|
|
347
370
|
project: z.ZodDefault<z.ZodObject<{
|
|
@@ -782,6 +805,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
782
805
|
eventRefs: string[];
|
|
783
806
|
runDir: string | null;
|
|
784
807
|
resetsAt: string | null;
|
|
808
|
+
vendorFailure: {
|
|
809
|
+
code: string | null;
|
|
810
|
+
message: string | null;
|
|
811
|
+
source: string;
|
|
812
|
+
} | null;
|
|
785
813
|
nextActions: string[];
|
|
786
814
|
} | null;
|
|
787
815
|
project: {
|
|
@@ -960,6 +988,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
960
988
|
eventRefs?: string[] | undefined;
|
|
961
989
|
runDir?: string | null | undefined;
|
|
962
990
|
resetsAt?: string | null | undefined;
|
|
991
|
+
vendorFailure?: {
|
|
992
|
+
code: string | null;
|
|
993
|
+
message: string | null;
|
|
994
|
+
source: string;
|
|
995
|
+
} | null | undefined;
|
|
963
996
|
nextActions?: string[] | undefined;
|
|
964
997
|
} | null | undefined;
|
|
965
998
|
project?: {
|
|
@@ -1163,6 +1196,19 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1163
1196
|
eventRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1164
1197
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1165
1198
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1199
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
1200
|
+
code: z.ZodNullable<z.ZodString>;
|
|
1201
|
+
message: z.ZodNullable<z.ZodString>;
|
|
1202
|
+
source: z.ZodString;
|
|
1203
|
+
}, "strip", z.ZodTypeAny, {
|
|
1204
|
+
code: string | null;
|
|
1205
|
+
message: string | null;
|
|
1206
|
+
source: string;
|
|
1207
|
+
}, {
|
|
1208
|
+
code: string | null;
|
|
1209
|
+
message: string | null;
|
|
1210
|
+
source: string;
|
|
1211
|
+
}>>>;
|
|
1166
1212
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1167
1213
|
}, "strip", z.ZodTypeAny, {
|
|
1168
1214
|
phase: string;
|
|
@@ -1176,6 +1222,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1176
1222
|
eventRefs: string[];
|
|
1177
1223
|
runDir: string | null;
|
|
1178
1224
|
resetsAt: string | null;
|
|
1225
|
+
vendorFailure: {
|
|
1226
|
+
code: string | null;
|
|
1227
|
+
message: string | null;
|
|
1228
|
+
source: string;
|
|
1229
|
+
} | null;
|
|
1179
1230
|
nextActions: string[];
|
|
1180
1231
|
}, {
|
|
1181
1232
|
phase?: string | undefined;
|
|
@@ -1189,6 +1240,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1189
1240
|
eventRefs?: string[] | undefined;
|
|
1190
1241
|
runDir?: string | null | undefined;
|
|
1191
1242
|
resetsAt?: string | null | undefined;
|
|
1243
|
+
vendorFailure?: {
|
|
1244
|
+
code: string | null;
|
|
1245
|
+
message: string | null;
|
|
1246
|
+
source: string;
|
|
1247
|
+
} | null | undefined;
|
|
1192
1248
|
nextActions?: string[] | undefined;
|
|
1193
1249
|
}>>>;
|
|
1194
1250
|
project: z.ZodDefault<z.ZodObject<{
|
|
@@ -1629,6 +1685,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1629
1685
|
eventRefs: string[];
|
|
1630
1686
|
runDir: string | null;
|
|
1631
1687
|
resetsAt: string | null;
|
|
1688
|
+
vendorFailure: {
|
|
1689
|
+
code: string | null;
|
|
1690
|
+
message: string | null;
|
|
1691
|
+
source: string;
|
|
1692
|
+
} | null;
|
|
1632
1693
|
nextActions: string[];
|
|
1633
1694
|
} | null;
|
|
1634
1695
|
project: {
|
|
@@ -1807,6 +1868,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1807
1868
|
eventRefs?: string[] | undefined;
|
|
1808
1869
|
runDir?: string | null | undefined;
|
|
1809
1870
|
resetsAt?: string | null | undefined;
|
|
1871
|
+
vendorFailure?: {
|
|
1872
|
+
code: string | null;
|
|
1873
|
+
message: string | null;
|
|
1874
|
+
source: string;
|
|
1875
|
+
} | null | undefined;
|
|
1810
1876
|
nextActions?: string[] | undefined;
|
|
1811
1877
|
} | null | undefined;
|
|
1812
1878
|
project?: {
|
|
@@ -3319,6 +3385,19 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3319
3385
|
eventRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3320
3386
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
3321
3387
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
3388
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
3389
|
+
code: z.ZodNullable<z.ZodString>;
|
|
3390
|
+
message: z.ZodNullable<z.ZodString>;
|
|
3391
|
+
source: z.ZodString;
|
|
3392
|
+
}, "strip", z.ZodTypeAny, {
|
|
3393
|
+
code: string | null;
|
|
3394
|
+
message: string | null;
|
|
3395
|
+
source: string;
|
|
3396
|
+
}, {
|
|
3397
|
+
code: string | null;
|
|
3398
|
+
message: string | null;
|
|
3399
|
+
source: string;
|
|
3400
|
+
}>>>;
|
|
3322
3401
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3323
3402
|
}, "strip", z.ZodTypeAny, {
|
|
3324
3403
|
phase: string;
|
|
@@ -3332,6 +3411,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3332
3411
|
eventRefs: string[];
|
|
3333
3412
|
runDir: string | null;
|
|
3334
3413
|
resetsAt: string | null;
|
|
3414
|
+
vendorFailure: {
|
|
3415
|
+
code: string | null;
|
|
3416
|
+
message: string | null;
|
|
3417
|
+
source: string;
|
|
3418
|
+
} | null;
|
|
3335
3419
|
nextActions: string[];
|
|
3336
3420
|
}, {
|
|
3337
3421
|
phase?: string | undefined;
|
|
@@ -3345,6 +3429,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3345
3429
|
eventRefs?: string[] | undefined;
|
|
3346
3430
|
runDir?: string | null | undefined;
|
|
3347
3431
|
resetsAt?: string | null | undefined;
|
|
3432
|
+
vendorFailure?: {
|
|
3433
|
+
code: string | null;
|
|
3434
|
+
message: string | null;
|
|
3435
|
+
source: string;
|
|
3436
|
+
} | null | undefined;
|
|
3348
3437
|
nextActions?: string[] | undefined;
|
|
3349
3438
|
}>>>;
|
|
3350
3439
|
/** Minimal typed required-operator-actions for a succeeded-but-BLOCKED run
|
|
@@ -3417,6 +3506,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3417
3506
|
eventRefs: string[];
|
|
3418
3507
|
runDir: string | null;
|
|
3419
3508
|
resetsAt: string | null;
|
|
3509
|
+
vendorFailure: {
|
|
3510
|
+
code: string | null;
|
|
3511
|
+
message: string | null;
|
|
3512
|
+
source: string;
|
|
3513
|
+
} | null;
|
|
3420
3514
|
nextActions: string[];
|
|
3421
3515
|
} | null;
|
|
3422
3516
|
project: {
|
|
@@ -3596,6 +3690,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3596
3690
|
eventRefs: string[];
|
|
3597
3691
|
runDir: string | null;
|
|
3598
3692
|
resetsAt: string | null;
|
|
3693
|
+
vendorFailure: {
|
|
3694
|
+
code: string | null;
|
|
3695
|
+
message: string | null;
|
|
3696
|
+
source: string;
|
|
3697
|
+
} | null;
|
|
3599
3698
|
nextActions: string[];
|
|
3600
3699
|
} | null;
|
|
3601
3700
|
project: {
|
|
@@ -4069,6 +4168,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4069
4168
|
eventRefs: string[];
|
|
4070
4169
|
runDir: string | null;
|
|
4071
4170
|
resetsAt: string | null;
|
|
4171
|
+
vendorFailure: {
|
|
4172
|
+
code: string | null;
|
|
4173
|
+
message: string | null;
|
|
4174
|
+
source: string;
|
|
4175
|
+
} | null;
|
|
4072
4176
|
nextActions: string[];
|
|
4073
4177
|
} | null;
|
|
4074
4178
|
requiredActions: {
|
|
@@ -4129,6 +4233,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4129
4233
|
eventRefs?: string[] | undefined;
|
|
4130
4234
|
runDir?: string | null | undefined;
|
|
4131
4235
|
resetsAt?: string | null | undefined;
|
|
4236
|
+
vendorFailure?: {
|
|
4237
|
+
code: string | null;
|
|
4238
|
+
message: string | null;
|
|
4239
|
+
source: string;
|
|
4240
|
+
} | null | undefined;
|
|
4132
4241
|
nextActions?: string[] | undefined;
|
|
4133
4242
|
} | null | undefined;
|
|
4134
4243
|
project?: {
|
|
@@ -4308,6 +4417,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4308
4417
|
eventRefs?: string[] | undefined;
|
|
4309
4418
|
runDir?: string | null | undefined;
|
|
4310
4419
|
resetsAt?: string | null | undefined;
|
|
4420
|
+
vendorFailure?: {
|
|
4421
|
+
code: string | null;
|
|
4422
|
+
message: string | null;
|
|
4423
|
+
source: string;
|
|
4424
|
+
} | null | undefined;
|
|
4311
4425
|
nextActions?: string[] | undefined;
|
|
4312
4426
|
} | null | undefined;
|
|
4313
4427
|
project?: {
|
|
@@ -4781,6 +4895,11 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4781
4895
|
eventRefs?: string[] | undefined;
|
|
4782
4896
|
runDir?: string | null | undefined;
|
|
4783
4897
|
resetsAt?: string | null | undefined;
|
|
4898
|
+
vendorFailure?: {
|
|
4899
|
+
code: string | null;
|
|
4900
|
+
message: string | null;
|
|
4901
|
+
source: string;
|
|
4902
|
+
} | null | undefined;
|
|
4784
4903
|
nextActions?: string[] | undefined;
|
|
4785
4904
|
} | null | undefined;
|
|
4786
4905
|
requiredActions?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAoB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAwB4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAoB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAwB4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWzB;sEACkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIlE;;;;;;OAMG;;IAQH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6BH,6GAA6G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAc7G,gHAAgH;IAChH;yEACqE;;;;;;;;;;;IAIrE;;;;;wCAKoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOpC;;6CAEyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBzC;;;0BAGsB;;;;;;;;;;;QA5KtB,0DAA0D;;;;;;;;;;;;;;;;;;QA0B1D;;;;;;;;WAQG;;QAQH;2EACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwInE;yCACqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2BrC;;;;;yEAKqE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUtE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
|
@@ -10,6 +10,26 @@ import { z } from "zod/v3";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const RunFailureCode: z.ZodEnum<["finite_zero", "hard_cap", "estimate_headroom", "unknown_paid_in_flight", "budget_overshoot", "cost_unverifiable", "delegation_child_drain_timeout", "subscription_window_exhausted", "credential_pool_exhausted", "delegated_home_unavailable", "delegated_confinement_unavailable", "delegated_evidence_incomplete", "access_profile_incompatible", "retired_access_profile"]>;
|
|
12
12
|
export type RunFailureCode = z.infer<typeof RunFailureCode>;
|
|
13
|
+
/** A vendor's OWN typed failure, forwarded as evidence. `code` is opaque: no
|
|
14
|
+
* Claudexor code path may branch on its value; retry, rotation, cooldown and
|
|
15
|
+
* credential verdicts never read it. `source` is an open vocabulary rather than
|
|
16
|
+
* an enum because every surface projects the whole `RunFailure` parse-or-null:
|
|
17
|
+
* a closed member list would make an older client drop the entire failure
|
|
18
|
+
* record the day a second producer appears. */
|
|
19
|
+
export declare const VendorFailureEvidence: z.ZodObject<{
|
|
20
|
+
code: z.ZodNullable<z.ZodString>;
|
|
21
|
+
message: z.ZodNullable<z.ZodString>;
|
|
22
|
+
source: z.ZodString;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
code: string | null;
|
|
25
|
+
message: string | null;
|
|
26
|
+
source: string;
|
|
27
|
+
}, {
|
|
28
|
+
code: string | null;
|
|
29
|
+
message: string | null;
|
|
30
|
+
source: string;
|
|
31
|
+
}>;
|
|
32
|
+
export type VendorFailureEvidence = z.infer<typeof VendorFailureEvidence>;
|
|
13
33
|
export declare const RunFailure: z.ZodObject<{
|
|
14
34
|
phase: z.ZodDefault<z.ZodString>;
|
|
15
35
|
category: z.ZodDefault<z.ZodEnum<["validation", "project", "auth", "harness_unavailable", "harness_error", "config_error", "budget", "policy", "cancelled", "internal", "unknown"]>>;
|
|
@@ -25,6 +45,19 @@ export declare const RunFailure: z.ZodObject<{
|
|
|
25
45
|
* inside safeMessage forces every caller to parse prose to decide when to
|
|
26
46
|
* come back — the thing typed contracts exist to prevent. */
|
|
27
47
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
48
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
49
|
+
code: z.ZodNullable<z.ZodString>;
|
|
50
|
+
message: z.ZodNullable<z.ZodString>;
|
|
51
|
+
source: z.ZodString;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
code: string | null;
|
|
54
|
+
message: string | null;
|
|
55
|
+
source: string;
|
|
56
|
+
}, {
|
|
57
|
+
code: string | null;
|
|
58
|
+
message: string | null;
|
|
59
|
+
source: string;
|
|
60
|
+
}>>>;
|
|
28
61
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
29
62
|
}, "strip", z.ZodTypeAny, {
|
|
30
63
|
phase: string;
|
|
@@ -38,6 +71,11 @@ export declare const RunFailure: z.ZodObject<{
|
|
|
38
71
|
eventRefs: string[];
|
|
39
72
|
runDir: string | null;
|
|
40
73
|
resetsAt: string | null;
|
|
74
|
+
vendorFailure: {
|
|
75
|
+
code: string | null;
|
|
76
|
+
message: string | null;
|
|
77
|
+
source: string;
|
|
78
|
+
} | null;
|
|
41
79
|
nextActions: string[];
|
|
42
80
|
}, {
|
|
43
81
|
phase?: string | undefined;
|
|
@@ -51,6 +89,11 @@ export declare const RunFailure: z.ZodObject<{
|
|
|
51
89
|
eventRefs?: string[] | undefined;
|
|
52
90
|
runDir?: string | null | undefined;
|
|
53
91
|
resetsAt?: string | null | undefined;
|
|
92
|
+
vendorFailure?: {
|
|
93
|
+
code: string | null;
|
|
94
|
+
message: string | null;
|
|
95
|
+
source: string;
|
|
96
|
+
} | null | undefined;
|
|
54
97
|
nextActions?: string[] | undefined;
|
|
55
98
|
}>;
|
|
56
99
|
export type RunFailure = z.infer<typeof RunFailure>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-run-failure.d.ts","sourceRoot":"","sources":["../src/control-run-failure.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc,6XA4BxB,CAAC;AACJ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,UAAU;;;;;;;;;;;IAmDnB;;iEAE6D
|
|
1
|
+
{"version":3,"file":"control-run-failure.d.ts","sourceRoot":"","sources":["../src/control-run-failure.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc,6XA4BxB,CAAC;AACJ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D;;;;;+CAK+C;AAC/C,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EA2B/B,CAAC;AACJ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,UAAU;;;;;;;;;;;IAmDnB;;iEAE6D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB9D,CAAC;AACJ,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -35,6 +35,32 @@ export const RunFailureCode = z
|
|
|
35
35
|
"retired_access_profile",
|
|
36
36
|
])
|
|
37
37
|
.describe("Machine-readable failure sub-code within a RunFailure category, including historical delegated-run failures and active access-profile refusals.");
|
|
38
|
+
/** A vendor's OWN typed failure, forwarded as evidence. `code` is opaque: no
|
|
39
|
+
* Claudexor code path may branch on its value; retry, rotation, cooldown and
|
|
40
|
+
* credential verdicts never read it. `source` is an open vocabulary rather than
|
|
41
|
+
* an enum because every surface projects the whole `RunFailure` parse-or-null:
|
|
42
|
+
* a closed member list would make an older client drop the entire failure
|
|
43
|
+
* record the day a second producer appears. */
|
|
44
|
+
export const VendorFailureEvidence = z
|
|
45
|
+
.object({
|
|
46
|
+
code: z
|
|
47
|
+
.string()
|
|
48
|
+
.min(1)
|
|
49
|
+
.max(128)
|
|
50
|
+
.nullable()
|
|
51
|
+
.describe("The vendor's own machine-readable failure code, verbatim; null when the vendor recorded an error without one."),
|
|
52
|
+
message: z
|
|
53
|
+
.string()
|
|
54
|
+
.max(4000)
|
|
55
|
+
.nullable()
|
|
56
|
+
.describe("The vendor's own words from the same record, verbatim (redacted); null when absent."),
|
|
57
|
+
source: z
|
|
58
|
+
.string()
|
|
59
|
+
.min(1)
|
|
60
|
+
.max(64)
|
|
61
|
+
.describe("Evidence channel the code was read from (codex: `codex_rollout`). An open vocabulary: consumers display it, never branch on it."),
|
|
62
|
+
})
|
|
63
|
+
.describe("Vendor-typed failure evidence read from a vendor-owned machine-readable record, never parsed from prose.");
|
|
38
64
|
export const RunFailure = z
|
|
39
65
|
.object({
|
|
40
66
|
phase: z.string().default("unknown").describe("Pipeline phase where the failure happened."),
|
|
@@ -91,6 +117,9 @@ export const RunFailure = z
|
|
|
91
117
|
.nullable()
|
|
92
118
|
.default(null)
|
|
93
119
|
.describe("When the refused window reopens (a spent subscription quota window), or null when the failure has no such time. Callers schedule a retry off this field, never off safeMessage."),
|
|
120
|
+
vendorFailure: VendorFailureEvidence.nullable()
|
|
121
|
+
.default(null)
|
|
122
|
+
.describe("The vendor's own typed failure for the attempt this record speaks for, or null when no vendor-typed evidence exists (every harness without such a channel, and any unreadable record). Facts only: carries no remedy."),
|
|
94
123
|
nextActions: z.array(z.string()).default([]).describe("Suggested operator next actions."),
|
|
95
124
|
})
|
|
96
125
|
.describe("Typed failure record for a run: phase, category, evidence references, and suggested next actions.");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-run-failure.js","sourceRoot":"","sources":["../src/control-run-failure.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC;KAC5B,IAAI,CAAC;IACJ,aAAa;IACb,UAAU;IACV,mBAAmB;IACnB,wBAAwB;IACxB,kBAAkB;IAClB,mBAAmB;IACnB,gCAAgC;IAChC,+BAA+B;IAC/B;;;;sEAIkE;IAClE,2BAA2B;IAC3B;;;mEAG+D;IAC/D,4BAA4B;IAC5B,mCAAmC;IACnC,+BAA+B;IAC/B,6BAA6B;IAC7B,wBAAwB;CACzB,CAAC;KACD,QAAQ,CACP,iJAAiJ,CAClJ,CAAC;AAGJ,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC;KACxB,MAAM,CAAC;IACN,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,4CAA4C,CAAC;IAC3F,QAAQ,EAAE,CAAC;SACR,IAAI,CAAC;QACJ,YAAY;QACZ,SAAS;QACT,MAAM;QACN,qBAAqB;QACrB,eAAe;QACf,cAAc;QACd,QAAQ;QACR,QAAQ;QACR,WAAW;QACX,UAAU;QACV,SAAS;KACV,CAAC;SACD,OAAO,CAAC,SAAS,CAAC;SAClB,QAAQ,CACP,sSAAsS,CACvS;IACH,IAAI,EAAE,cAAc,CAAC,QAAQ,EAAE;SAC5B,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CACP,yKAAyK,CAC1K;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAC5E,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,0DAA0D,CAAC;IACvE,OAAO,EAAE,CAAC;SACP,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,2CAA2C,CAAC;IACxD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC/E;;iEAE6D;IAC7D,QAAQ,EAAE,CAAC;SACR,MAAM,EAAE;SACR,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;SAC1B,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CACP,iLAAiL,CAClL;IACH,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC;CAC1F,CAAC;KACD,QAAQ,CACP,mGAAmG,CACpG,CAAC"}
|
|
1
|
+
{"version":3,"file":"control-run-failure.js","sourceRoot":"","sources":["../src/control-run-failure.ts"],"names":[],"mappings":"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"}
|
package/dist/control.d.ts
CHANGED
|
@@ -1692,6 +1692,19 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1692
1692
|
eventRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1693
1693
|
runDir: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1694
1694
|
resetsAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1695
|
+
vendorFailure: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
1696
|
+
code: z.ZodNullable<z.ZodString>;
|
|
1697
|
+
message: z.ZodNullable<z.ZodString>;
|
|
1698
|
+
source: z.ZodString;
|
|
1699
|
+
}, "strip", z.ZodTypeAny, {
|
|
1700
|
+
code: string | null;
|
|
1701
|
+
message: string | null;
|
|
1702
|
+
source: string;
|
|
1703
|
+
}, {
|
|
1704
|
+
code: string | null;
|
|
1705
|
+
message: string | null;
|
|
1706
|
+
source: string;
|
|
1707
|
+
}>>>;
|
|
1695
1708
|
nextActions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1696
1709
|
}, "strip", z.ZodTypeAny, {
|
|
1697
1710
|
phase: string;
|
|
@@ -1705,6 +1718,11 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1705
1718
|
eventRefs: string[];
|
|
1706
1719
|
runDir: string | null;
|
|
1707
1720
|
resetsAt: string | null;
|
|
1721
|
+
vendorFailure: {
|
|
1722
|
+
code: string | null;
|
|
1723
|
+
message: string | null;
|
|
1724
|
+
source: string;
|
|
1725
|
+
} | null;
|
|
1708
1726
|
nextActions: string[];
|
|
1709
1727
|
}, {
|
|
1710
1728
|
phase?: string | undefined;
|
|
@@ -1718,6 +1736,11 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
1718
1736
|
eventRefs?: string[] | undefined;
|
|
1719
1737
|
runDir?: string | null | undefined;
|
|
1720
1738
|
resetsAt?: string | null | undefined;
|
|
1739
|
+
vendorFailure?: {
|
|
1740
|
+
code: string | null;
|
|
1741
|
+
message: string | null;
|
|
1742
|
+
source: string;
|
|
1743
|
+
} | null | undefined;
|
|
1721
1744
|
nextActions?: string[] | undefined;
|
|
1722
1745
|
}>>>;
|
|
1723
1746
|
project: z.ZodDefault<z.ZodObject<{
|
|
@@ -2189,6 +2212,11 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
2189
2212
|
eventRefs: string[];
|
|
2190
2213
|
runDir: string | null;
|
|
2191
2214
|
resetsAt: string | null;
|
|
2215
|
+
vendorFailure: {
|
|
2216
|
+
code: string | null;
|
|
2217
|
+
message: string | null;
|
|
2218
|
+
source: string;
|
|
2219
|
+
} | null;
|
|
2192
2220
|
nextActions: string[];
|
|
2193
2221
|
} | null;
|
|
2194
2222
|
project: {
|
|
@@ -2367,6 +2395,11 @@ export declare const ControlRunSummary: z.ZodObject<{
|
|
|
2367
2395
|
eventRefs?: string[] | undefined;
|
|
2368
2396
|
runDir?: string | null | undefined;
|
|
2369
2397
|
resetsAt?: string | null | undefined;
|
|
2398
|
+
vendorFailure?: {
|
|
2399
|
+
code: string | null;
|
|
2400
|
+
message: string | null;
|
|
2401
|
+
source: string;
|
|
2402
|
+
} | null | undefined;
|
|
2370
2403
|
nextActions?: string[] | undefined;
|
|
2371
2404
|
} | null | undefined;
|
|
2372
2405
|
project?: {
|