@cat-factory/contracts 0.324.0 → 0.326.0
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/agent-gating.d.ts +19 -0
- package/dist/agent-gating.d.ts.map +1 -1
- package/dist/agent-gating.js +32 -0
- package/dist/agent-gating.js.map +1 -1
- package/dist/board-projection.d.ts +35 -0
- package/dist/board-projection.d.ts.map +1 -0
- package/dist/board-projection.js +47 -0
- package/dist/board-projection.js.map +1 -0
- package/dist/consensus.d.ts +71 -5
- package/dist/consensus.d.ts.map +1 -1
- package/dist/consensus.js +64 -5
- package/dist/consensus.js.map +1 -1
- package/dist/entities.d.ts +9 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/execution.d.ts +26 -2
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +16 -0
- package/dist/execution.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +6 -2
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +117 -0
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +24 -2
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +1274 -9
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/execution.js +15 -0
- package/dist/routes/execution.js.map +1 -1
- package/dist/routes/human-review.d.ts +3 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +15 -5
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +9 -0
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +27 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +9 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +42 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +21 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/step-conditions.d.ts +6 -1
- package/dist/step-conditions.d.ts.map +1 -1
- package/dist/step-conditions.js +6 -0
- package/dist/step-conditions.js.map +1 -1
- package/package.json +1 -1
|
@@ -94,6 +94,7 @@ export declare const startExecutionContract: {
|
|
|
94
94
|
}, undefined>;
|
|
95
95
|
}, undefined>;
|
|
96
96
|
readonly 201: v.ObjectSchema<{
|
|
97
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
97
98
|
readonly id: v.StringSchema<undefined>;
|
|
98
99
|
readonly blockId: v.StringSchema<undefined>;
|
|
99
100
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -780,12 +781,13 @@ export declare const startExecutionContract: {
|
|
|
780
781
|
}, undefined>, undefined>;
|
|
781
782
|
}, undefined>, undefined>, undefined>;
|
|
782
783
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
783
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
784
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
784
785
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
785
786
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
786
787
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
787
788
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
788
789
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
790
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
789
791
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
790
792
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
791
793
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1320,6 +1322,7 @@ export declare const startAgentKindExecutionContract: {
|
|
|
1320
1322
|
}, undefined>;
|
|
1321
1323
|
}, undefined>;
|
|
1322
1324
|
readonly 201: v.ObjectSchema<{
|
|
1325
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1323
1326
|
readonly id: v.StringSchema<undefined>;
|
|
1324
1327
|
readonly blockId: v.StringSchema<undefined>;
|
|
1325
1328
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -2006,12 +2009,1242 @@ export declare const startAgentKindExecutionContract: {
|
|
|
2006
2009
|
}, undefined>, undefined>;
|
|
2007
2010
|
}, undefined>, undefined>, undefined>;
|
|
2008
2011
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2009
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
2012
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
2010
2013
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2011
2014
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2012
2015
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2013
2016
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2014
2017
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2018
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2019
|
+
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2020
|
+
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2021
|
+
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2022
|
+
readonly selectedFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2023
|
+
readonly fragmentAdherence: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2024
|
+
readonly fragmentId: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2025
|
+
readonly title: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2026
|
+
readonly rating: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
2027
|
+
readonly assessment: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2028
|
+
readonly relatedFindings: v.SchemaWithFallback<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2029
|
+
}, undefined>, undefined>, undefined>;
|
|
2030
|
+
readonly effortReport: v.OptionalSchema<v.ObjectSchema<{
|
|
2031
|
+
readonly difficulty: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
2032
|
+
readonly summary: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2033
|
+
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2034
|
+
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2035
|
+
}, undefined>, undefined>;
|
|
2036
|
+
readonly skillVersions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2037
|
+
readonly skillId: v.StringSchema<undefined>;
|
|
2038
|
+
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2039
|
+
readonly sha: v.StringSchema<undefined>;
|
|
2040
|
+
}, undefined>, undefined>, undefined>;
|
|
2041
|
+
readonly toolServers: v.OptionalSchema<v.ObjectSchema<{
|
|
2042
|
+
readonly wired: v.ArraySchema<v.ObjectSchema<{
|
|
2043
|
+
readonly id: v.StringSchema<undefined>;
|
|
2044
|
+
readonly label: v.StringSchema<undefined>;
|
|
2045
|
+
readonly transport: v.PicklistSchema<["stdio", "http"], undefined>;
|
|
2046
|
+
readonly tools: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2047
|
+
}, undefined>, undefined>;
|
|
2048
|
+
readonly unavailable: v.ArraySchema<v.ObjectSchema<{
|
|
2049
|
+
readonly id: v.StringSchema<undefined>;
|
|
2050
|
+
readonly label: v.StringSchema<undefined>;
|
|
2051
|
+
readonly reason: v.PicklistSchema<["harness_unsupported", "transport_unsupported", "missing_secret", "reserved_secret", "unusable_secret", "oauth_not_connected", "oauth_token_failed", "over_budget", "consensus_panel"], undefined>;
|
|
2052
|
+
}, undefined>, undefined>;
|
|
2053
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
2054
|
+
readonly observed: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2055
|
+
readonly id: v.StringSchema<undefined>;
|
|
2056
|
+
readonly status: v.PicklistSchema<["ready", "failed", "needs_auth", "unknown"], undefined>;
|
|
2057
|
+
readonly toolCount: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2058
|
+
}, undefined>, undefined>, undefined>;
|
|
2059
|
+
}, undefined>, undefined>;
|
|
2060
|
+
readonly contextDocuments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2061
|
+
readonly title: v.StringSchema<undefined>;
|
|
2062
|
+
readonly externalId: v.StringSchema<undefined>;
|
|
2063
|
+
readonly url: v.StringSchema<undefined>;
|
|
2064
|
+
readonly origin: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear", "upload"], undefined>;
|
|
2065
|
+
readonly freshness: v.OptionalSchema<v.VariantSchema<"status", [v.ObjectSchema<{
|
|
2066
|
+
readonly status: v.LiteralSchema<"confirmed", undefined>;
|
|
2067
|
+
readonly version: v.StringSchema<undefined>;
|
|
2068
|
+
readonly change: v.PicklistSchema<["unchanged", "reimported", "revision_only"], undefined>;
|
|
2069
|
+
}, undefined>, v.ObjectSchema<{
|
|
2070
|
+
readonly status: v.LiteralSchema<"not-applicable", undefined>;
|
|
2071
|
+
}, undefined>, v.ObjectSchema<{
|
|
2072
|
+
readonly status: v.LiteralSchema<"unconfirmed", undefined>;
|
|
2073
|
+
readonly reason: v.PicklistSchema<["not_connected", "credentials_unreadable", "unversioned", "source_unreachable"], undefined>;
|
|
2074
|
+
}, undefined>], undefined>, undefined>;
|
|
2075
|
+
}, undefined>, undefined>, undefined>;
|
|
2076
|
+
readonly promptRevision: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2077
|
+
readonly promptVariant: v.OptionalSchema<v.ObjectSchema<{
|
|
2078
|
+
readonly id: v.StringSchema<undefined>;
|
|
2079
|
+
readonly applied: v.PicklistSchema<["full", "addition-only", "superseded", "withdrawn"], undefined>;
|
|
2080
|
+
readonly fingerprint: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2081
|
+
}, undefined>, undefined>;
|
|
2082
|
+
readonly foundationalServices: v.OptionalSchema<v.ObjectSchema<{
|
|
2083
|
+
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2084
|
+
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2085
|
+
}, undefined>, undefined>;
|
|
2086
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
2087
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
2088
|
+
readonly service: v.StringSchema<undefined>;
|
|
2089
|
+
readonly location: v.StringSchema<undefined>;
|
|
2090
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2091
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2092
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2093
|
+
readonly dimensions: v.OptionalSchema<v.ObjectSchema<{
|
|
2094
|
+
readonly width: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
2095
|
+
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
2096
|
+
}, undefined>, undefined>;
|
|
2097
|
+
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2098
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2099
|
+
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
2100
|
+
}, undefined>, undefined>;
|
|
2101
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2102
|
+
readonly unknownGenerators: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2103
|
+
readonly generatorsUnverified: v.OptionalSchema<v.LiteralSchema<true, undefined>, undefined>;
|
|
2104
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
2105
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
2106
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2107
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2108
|
+
}, undefined>, undefined>;
|
|
2109
|
+
readonly binaryCandidates: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2110
|
+
readonly status: v.PicklistSchema<["awaiting_choice", "chosen", "no_choice"], undefined>;
|
|
2111
|
+
readonly candidates: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2112
|
+
readonly id: v.StringSchema<undefined>;
|
|
2113
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2114
|
+
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2115
|
+
readonly subject: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2116
|
+
readonly service: v.StringSchema<undefined>;
|
|
2117
|
+
readonly location: v.StringSchema<undefined>;
|
|
2118
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2119
|
+
readonly previewUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2120
|
+
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2121
|
+
}, undefined>, undefined>, readonly []>;
|
|
2122
|
+
readonly noChoiceReason: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["undeclared", "parse_failed", "no_candidates"], undefined>, undefined>, undefined>;
|
|
2123
|
+
readonly choice: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2124
|
+
readonly kept: v.ArraySchema<v.ObjectSchema<{
|
|
2125
|
+
readonly candidateId: v.StringSchema<undefined>;
|
|
2126
|
+
readonly storeAs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a plain id (letters, digits, . _ -)">]>, undefined>;
|
|
2127
|
+
}, undefined>, undefined>;
|
|
2128
|
+
readonly discarded: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2129
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2130
|
+
readonly automatic: v.OptionalSchema<v.LiteralSchema<true, undefined>, undefined>;
|
|
2131
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2132
|
+
}, undefined>, undefined>, undefined>;
|
|
2133
|
+
readonly multiSelect: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2134
|
+
readonly invalidEntries: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2135
|
+
readonly omitted: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2136
|
+
readonly unusablePreviews: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2137
|
+
}, undefined>, undefined>, undefined>;
|
|
2138
|
+
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2139
|
+
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2140
|
+
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2141
|
+
readonly firstStartedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2142
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2143
|
+
readonly dispatches: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2144
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
2145
|
+
readonly count: v.NumberSchema<undefined>;
|
|
2146
|
+
}, undefined>, undefined>, undefined>;
|
|
2147
|
+
readonly lastActivityAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2148
|
+
readonly pausedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2149
|
+
readonly evictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2150
|
+
readonly transientEvictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2151
|
+
readonly branchContentionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2152
|
+
readonly firstEvictionDetail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2153
|
+
readonly deployProvisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
2154
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>;
|
|
2155
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2156
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
2157
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2158
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2159
|
+
}, undefined>, v.ObjectSchema<{
|
|
2160
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
2161
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2162
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2163
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2164
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2165
|
+
}, undefined>], undefined>, undefined>;
|
|
2166
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2167
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2168
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2169
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
2170
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2171
|
+
readonly kind: v.LiteralSchema<"path", undefined>;
|
|
2172
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2173
|
+
}, undefined>, v.ObjectSchema<{
|
|
2174
|
+
readonly kind: v.LiteralSchema<"inline", undefined>;
|
|
2175
|
+
readonly content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 262144, undefined>]>;
|
|
2176
|
+
readonly path: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2177
|
+
}, undefined>, v.ObjectSchema<{
|
|
2178
|
+
readonly kind: v.LiteralSchema<"repo", undefined>;
|
|
2179
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2180
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2181
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2182
|
+
readonly provider: v.OptionalSchema<v.PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
2183
|
+
}, undefined>], undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
|
|
2184
|
+
kind: "path";
|
|
2185
|
+
path: string;
|
|
2186
|
+
} | {
|
|
2187
|
+
kind: "inline";
|
|
2188
|
+
content: string;
|
|
2189
|
+
path?: string | undefined;
|
|
2190
|
+
} | {
|
|
2191
|
+
kind: "repo";
|
|
2192
|
+
repo: string;
|
|
2193
|
+
path: string;
|
|
2194
|
+
ref?: string | undefined;
|
|
2195
|
+
provider?: "github" | "gitlab" | undefined;
|
|
2196
|
+
})[], 1, undefined>]>, undefined>;
|
|
2197
|
+
readonly composeProfiles: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2198
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2199
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2200
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2201
|
+
}, undefined>, undefined>, undefined>;
|
|
2202
|
+
readonly externalNetworks: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2203
|
+
readonly sharedStackRefs: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2204
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2205
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
2206
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
2207
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
2208
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2209
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2210
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2211
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2212
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2213
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2214
|
+
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
2215
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2216
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2217
|
+
}, undefined>, undefined>;
|
|
2218
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2219
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2220
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2221
|
+
}, undefined>, undefined>, undefined>;
|
|
2222
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2223
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2224
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2225
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2226
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2227
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2228
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2229
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2230
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2231
|
+
}, undefined>, v.ObjectSchema<{
|
|
2232
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2233
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2234
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2235
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2236
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2237
|
+
}, undefined>, v.ObjectSchema<{
|
|
2238
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2239
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2240
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2241
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2242
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2243
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2244
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2245
|
+
}, undefined>, v.ObjectSchema<{
|
|
2246
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2247
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2248
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2249
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2250
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2251
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2252
|
+
}, undefined>, v.ObjectSchema<{
|
|
2253
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2254
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2255
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2256
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2257
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2258
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2259
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2260
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
2261
|
+
}, undefined>, v.ObjectSchema<{
|
|
2262
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
2263
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2264
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2265
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2266
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2267
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2268
|
+
}, undefined>, v.ObjectSchema<{
|
|
2269
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2270
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2271
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2272
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2273
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2274
|
+
}, undefined>], undefined>, undefined>;
|
|
2275
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2276
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2277
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2278
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2279
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2280
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2281
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2282
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2283
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2284
|
+
}, undefined>, v.ObjectSchema<{
|
|
2285
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2286
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2287
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2288
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2289
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2290
|
+
}, undefined>, v.ObjectSchema<{
|
|
2291
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2292
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2293
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2294
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2295
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2296
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2297
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2298
|
+
}, undefined>, v.ObjectSchema<{
|
|
2299
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2300
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2301
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2302
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2303
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2304
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2305
|
+
}, undefined>, v.ObjectSchema<{
|
|
2306
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2307
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2308
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2309
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2310
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2311
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2312
|
+
}, undefined>, undefined>;
|
|
2313
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
2314
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2315
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2316
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2317
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2318
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2319
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2320
|
+
}, undefined>, v.CheckAction<{
|
|
2321
|
+
name: string;
|
|
2322
|
+
newNameTemplate?: string | undefined;
|
|
2323
|
+
newTagTemplate?: string | undefined;
|
|
2324
|
+
digestTemplate?: string | undefined;
|
|
2325
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
2326
|
+
name: string;
|
|
2327
|
+
newNameTemplate?: string | undefined;
|
|
2328
|
+
newTagTemplate?: string | undefined;
|
|
2329
|
+
digestTemplate?: string | undefined;
|
|
2330
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2331
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2332
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2333
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2334
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2335
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2336
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2337
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
2338
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2339
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2340
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2341
|
+
}, undefined>, undefined>, undefined>;
|
|
2342
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2343
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2344
|
+
readonly secretRef: v.ObjectSchema<{
|
|
2345
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2346
|
+
}, undefined>;
|
|
2347
|
+
}, undefined>, undefined>, undefined>;
|
|
2348
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2349
|
+
}, undefined>, undefined>, undefined>;
|
|
2350
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
2351
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
2352
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2353
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2354
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2355
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2356
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2357
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2358
|
+
}, undefined>, undefined>;
|
|
2359
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2360
|
+
}, undefined>, v.CheckAction<{
|
|
2361
|
+
key: string;
|
|
2362
|
+
secretRef?: {
|
|
2363
|
+
key: string;
|
|
2364
|
+
} | undefined;
|
|
2365
|
+
valueTemplate?: string | undefined;
|
|
2366
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2367
|
+
}, undefined>, v.ObjectSchema<{
|
|
2368
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
2369
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2370
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2371
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2372
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2373
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2374
|
+
}, undefined>, undefined>;
|
|
2375
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2376
|
+
}, undefined>, v.CheckAction<{
|
|
2377
|
+
key: string;
|
|
2378
|
+
secretRef?: {
|
|
2379
|
+
key: string;
|
|
2380
|
+
} | undefined;
|
|
2381
|
+
valueTemplate?: string | undefined;
|
|
2382
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2383
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2384
|
+
}, undefined>, undefined>;
|
|
2385
|
+
readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
2386
|
+
readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
|
|
2387
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2388
|
+
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2389
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2390
|
+
}, undefined>, undefined>, undefined>;
|
|
2391
|
+
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2392
|
+
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2393
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
2394
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
2395
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2396
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2397
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
2398
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2399
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
2400
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2401
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2402
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2403
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2404
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2405
|
+
readonly error: v.StringSchema<undefined>;
|
|
2406
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2407
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2408
|
+
}, undefined>, undefined>;
|
|
2409
|
+
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
2410
|
+
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
2411
|
+
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2412
|
+
readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
|
|
2413
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2414
|
+
}, undefined>, undefined>, undefined>;
|
|
2415
|
+
}, undefined>, undefined>;
|
|
2416
|
+
readonly currentStep: v.NumberSchema<undefined>;
|
|
2417
|
+
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
2418
|
+
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2419
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "harness_shutdown", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2420
|
+
readonly message: v.StringSchema<undefined>;
|
|
2421
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2422
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2423
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2424
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2425
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2426
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2427
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2428
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2429
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2430
|
+
readonly label: v.StringSchema<undefined>;
|
|
2431
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2432
|
+
}, undefined>, undefined>, undefined>;
|
|
2433
|
+
}, undefined>, undefined>;
|
|
2434
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2435
|
+
}, undefined>, undefined>, undefined>;
|
|
2436
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2437
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "harness_shutdown", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2438
|
+
readonly message: v.StringSchema<undefined>;
|
|
2439
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2440
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2441
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2442
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2443
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2444
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2445
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2446
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2447
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2448
|
+
readonly label: v.StringSchema<undefined>;
|
|
2449
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2450
|
+
}, undefined>, undefined>, undefined>;
|
|
2451
|
+
}, undefined>, undefined>;
|
|
2452
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2453
|
+
}, undefined>, undefined>, undefined>;
|
|
2454
|
+
readonly outputHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2455
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2456
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2457
|
+
readonly output: v.StringSchema<undefined>;
|
|
2458
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2459
|
+
}, undefined>, undefined>, undefined>;
|
|
2460
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2461
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2462
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2463
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2464
|
+
}, undefined>, undefined>, undefined>;
|
|
2465
|
+
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2466
|
+
readonly initiatedByRole: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
2467
|
+
readonly initiatedByExternalIdentity: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2468
|
+
readonly mode: v.OptionalSchema<v.PicklistSchema<["live", "dry_run"], undefined>, undefined>;
|
|
2469
|
+
readonly intakeOrigin: v.OptionalSchema<v.PicklistSchema<["ui", "public-api", "tracker", "schedule"], undefined>, undefined>;
|
|
2470
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2471
|
+
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2472
|
+
readonly diagnostics: v.OptionalSchema<v.ObjectSchema<{
|
|
2473
|
+
readonly lastDispatch: v.OptionalSchema<v.ObjectSchema<{
|
|
2474
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2475
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
2476
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2477
|
+
readonly executionBackend: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2478
|
+
readonly failure: v.OptionalSchema<v.ObjectSchema<{
|
|
2479
|
+
readonly kind: v.StringSchema<undefined>;
|
|
2480
|
+
readonly reason: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2481
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2482
|
+
}, undefined>, undefined>;
|
|
2483
|
+
readonly repo: v.OptionalSchema<v.ObjectSchema<{
|
|
2484
|
+
readonly owner: v.StringSchema<undefined>;
|
|
2485
|
+
readonly name: v.StringSchema<undefined>;
|
|
2486
|
+
readonly baseBranch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2487
|
+
readonly provider: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2488
|
+
}, undefined>, undefined>;
|
|
2489
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2490
|
+
}, undefined>, undefined>;
|
|
2491
|
+
readonly host: v.OptionalSchema<v.ObjectSchema<{
|
|
2492
|
+
readonly platform: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2493
|
+
}, undefined>, undefined>;
|
|
2494
|
+
}, undefined>, undefined>;
|
|
2495
|
+
readonly inputGate: v.OptionalSchema<v.ObjectSchema<{
|
|
2496
|
+
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2497
|
+
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2498
|
+
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2499
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2500
|
+
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2501
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2502
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2503
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2504
|
+
}, undefined>, undefined>;
|
|
2505
|
+
}, undefined>, undefined>;
|
|
2506
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2507
|
+
readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2508
|
+
readonly overriddenAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2509
|
+
}, undefined>, undefined>;
|
|
2510
|
+
}, undefined>;
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
/**
|
|
2514
|
+
* One run, WHOLE: the read that stands behind the board snapshot's lean projection
|
|
2515
|
+
* (`projectExecutionForBoard`). The snapshot withholds each step's captured prose, so the reader
|
|
2516
|
+
* that actually renders it (any step-detail overlay) fetches the run it is about through here.
|
|
2517
|
+
*
|
|
2518
|
+
* A point-read by id rather than a "give me the heavy half" delta: the run is one row either way,
|
|
2519
|
+
* and a delta would need the client's revision to be meaningful, which is exactly the coherence
|
|
2520
|
+
* problem the store's monotonic `rev` already answers.
|
|
2521
|
+
*/
|
|
2522
|
+
export declare const getExecutionContract: {
|
|
2523
|
+
readonly method: "get";
|
|
2524
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
2525
|
+
executionId: v.StringSchema<undefined>;
|
|
2526
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
2527
|
+
readonly pathResolver: ({ executionId }: {
|
|
2528
|
+
executionId: string;
|
|
2529
|
+
}) => string;
|
|
2530
|
+
readonly responsesByStatusCode: {
|
|
2531
|
+
readonly '4xx': v.ObjectSchema<{
|
|
2532
|
+
readonly error: v.ObjectSchema<{
|
|
2533
|
+
readonly code: v.StringSchema<undefined>;
|
|
2534
|
+
readonly message: v.StringSchema<undefined>;
|
|
2535
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2536
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2537
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2538
|
+
readonly message: v.StringSchema<undefined>;
|
|
2539
|
+
}, undefined>, undefined>, undefined>;
|
|
2540
|
+
}, undefined>;
|
|
2541
|
+
}, undefined>;
|
|
2542
|
+
readonly '5xx': v.ObjectSchema<{
|
|
2543
|
+
readonly error: v.ObjectSchema<{
|
|
2544
|
+
readonly code: v.StringSchema<undefined>;
|
|
2545
|
+
readonly message: v.StringSchema<undefined>;
|
|
2546
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2547
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2548
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2549
|
+
readonly message: v.StringSchema<undefined>;
|
|
2550
|
+
}, undefined>, undefined>, undefined>;
|
|
2551
|
+
}, undefined>;
|
|
2552
|
+
}, undefined>;
|
|
2553
|
+
readonly 200: v.ObjectSchema<{
|
|
2554
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2555
|
+
readonly id: v.StringSchema<undefined>;
|
|
2556
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
2557
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
2558
|
+
readonly pipelineName: v.StringSchema<undefined>;
|
|
2559
|
+
readonly steps: v.ArraySchema<v.ObjectSchema<{
|
|
2560
|
+
readonly runId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2561
|
+
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2562
|
+
readonly state: v.PicklistSchema<["pending", "working", "waiting_decision", "done"], undefined>;
|
|
2563
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
2564
|
+
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2565
|
+
readonly calls: v.NumberSchema<undefined>;
|
|
2566
|
+
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2567
|
+
readonly cacheReadTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2568
|
+
readonly cacheWriteTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2569
|
+
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2570
|
+
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
2571
|
+
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2572
|
+
readonly truncatedCalls: v.NumberSchema<undefined>;
|
|
2573
|
+
readonly upstreamMs: v.NumberSchema<undefined>;
|
|
2574
|
+
readonly overheadMs: v.NumberSchema<undefined>;
|
|
2575
|
+
readonly errors: v.NumberSchema<undefined>;
|
|
2576
|
+
readonly warnings: v.NumberSchema<undefined>;
|
|
2577
|
+
readonly carryCostTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2578
|
+
readonly costEstimate: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2579
|
+
readonly costCurrency: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2580
|
+
readonly byPhase: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2581
|
+
readonly phase: v.StringSchema<undefined>;
|
|
2582
|
+
readonly calls: v.NumberSchema<undefined>;
|
|
2583
|
+
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2584
|
+
readonly cacheReadTokens: v.NumberSchema<undefined>;
|
|
2585
|
+
readonly cacheWriteTokens: v.NumberSchema<undefined>;
|
|
2586
|
+
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2587
|
+
readonly carryCostTokens: v.NumberSchema<undefined>;
|
|
2588
|
+
readonly errors: v.NumberSchema<undefined>;
|
|
2589
|
+
readonly costEstimate: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2590
|
+
}, undefined>, undefined>, undefined>;
|
|
2591
|
+
}, undefined>, undefined>, undefined>;
|
|
2592
|
+
readonly gate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2593
|
+
readonly phase: v.PicklistSchema<["checking", "working"], undefined>;
|
|
2594
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2595
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2596
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2597
|
+
readonly headShas: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2598
|
+
readonly conflictTarget: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2599
|
+
readonly repo: v.StringSchema<undefined>;
|
|
2600
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2601
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2602
|
+
}, undefined>, undefined>, undefined>;
|
|
2603
|
+
readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
2604
|
+
readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
|
|
2605
|
+
readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2606
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2607
|
+
readonly name: v.StringSchema<undefined>;
|
|
2608
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2609
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2610
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2611
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2612
|
+
readonly lastDispatchedInstructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2613
|
+
readonly watchSince: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2614
|
+
readonly watchWindowMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2615
|
+
readonly regressedSignals: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2616
|
+
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
2617
|
+
readonly id: v.StringSchema<undefined>;
|
|
2618
|
+
readonly name: v.StringSchema<undefined>;
|
|
2619
|
+
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
2620
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2621
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2622
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2623
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2624
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2625
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2626
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2627
|
+
readonly instructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2628
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2629
|
+
readonly name: v.StringSchema<undefined>;
|
|
2630
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2631
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2632
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2633
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2634
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2635
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2636
|
+
readonly lastApprovals: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2637
|
+
readonly requiredApprovingReviewCount: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2638
|
+
readonly pendingThreadIds: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2639
|
+
readonly lastAddressedCommentAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2640
|
+
readonly humanReviewGraceMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2641
|
+
readonly pendingFix: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2642
|
+
readonly instructions: v.StringSchema<undefined>;
|
|
2643
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2644
|
+
}, undefined>, undefined>, undefined>;
|
|
2645
|
+
}, undefined>, undefined>, undefined>;
|
|
2646
|
+
readonly test: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2647
|
+
readonly phase: v.PicklistSchema<["testing", "fixing"], undefined>;
|
|
2648
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2649
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2650
|
+
readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2651
|
+
readonly greenlight: v.BooleanSchema<undefined>;
|
|
2652
|
+
readonly summary: v.StringSchema<undefined>;
|
|
2653
|
+
readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2654
|
+
readonly outcomes: v.ArraySchema<v.ObjectSchema<{
|
|
2655
|
+
readonly name: v.StringSchema<undefined>;
|
|
2656
|
+
readonly status: v.PicklistSchema<["passed", "failed", "skipped"], undefined>;
|
|
2657
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2658
|
+
}, undefined>, undefined>;
|
|
2659
|
+
readonly concerns: v.ArraySchema<v.ObjectSchema<{
|
|
2660
|
+
readonly title: v.StringSchema<undefined>;
|
|
2661
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2662
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2663
|
+
}, undefined>, undefined>;
|
|
2664
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2665
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
2666
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
2667
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2668
|
+
}, undefined>, undefined>, undefined>;
|
|
2669
|
+
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
2670
|
+
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2671
|
+
readonly view: v.StringSchema<undefined>;
|
|
2672
|
+
readonly artifactId: v.StringSchema<undefined>;
|
|
2673
|
+
readonly hash: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2674
|
+
readonly width: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2675
|
+
readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2676
|
+
readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2677
|
+
}, undefined>, undefined>, undefined>;
|
|
2678
|
+
readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2679
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2680
|
+
}, undefined>, undefined>, undefined>;
|
|
2681
|
+
}, undefined>, v.TransformAction<{
|
|
2682
|
+
greenlight: boolean;
|
|
2683
|
+
summary: string;
|
|
2684
|
+
tested: string[];
|
|
2685
|
+
outcomes: {
|
|
2686
|
+
name: string;
|
|
2687
|
+
status: "failed" | "passed" | "skipped";
|
|
2688
|
+
detail?: string | undefined;
|
|
2689
|
+
}[];
|
|
2690
|
+
concerns: {
|
|
2691
|
+
title: string;
|
|
2692
|
+
detail: string;
|
|
2693
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
2694
|
+
}[];
|
|
2695
|
+
requirementVerdicts?: {
|
|
2696
|
+
requirementId: string;
|
|
2697
|
+
status: "met" | "not_covered" | "not_met";
|
|
2698
|
+
detail?: string | undefined;
|
|
2699
|
+
}[] | undefined;
|
|
2700
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
2701
|
+
screenshots?: {
|
|
2702
|
+
view: string;
|
|
2703
|
+
artifactId: string;
|
|
2704
|
+
hash?: string | undefined;
|
|
2705
|
+
width?: number | undefined;
|
|
2706
|
+
height?: number | undefined;
|
|
2707
|
+
referenceArtifactId?: string | undefined;
|
|
2708
|
+
}[] | undefined;
|
|
2709
|
+
abort?: {
|
|
2710
|
+
reason: string;
|
|
2711
|
+
} | null | undefined;
|
|
2712
|
+
}, {
|
|
2713
|
+
greenlight: boolean;
|
|
2714
|
+
summary: string;
|
|
2715
|
+
tested: string[];
|
|
2716
|
+
outcomes: {
|
|
2717
|
+
name: string;
|
|
2718
|
+
status: "failed" | "passed" | "skipped";
|
|
2719
|
+
detail?: string | undefined;
|
|
2720
|
+
}[];
|
|
2721
|
+
concerns: {
|
|
2722
|
+
title: string;
|
|
2723
|
+
detail: string;
|
|
2724
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
2725
|
+
}[];
|
|
2726
|
+
requirementVerdicts?: {
|
|
2727
|
+
requirementId: string;
|
|
2728
|
+
status: "met" | "not_covered" | "not_met";
|
|
2729
|
+
detail?: string | undefined;
|
|
2730
|
+
}[] | undefined;
|
|
2731
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
2732
|
+
screenshots?: {
|
|
2733
|
+
view: string;
|
|
2734
|
+
artifactId: string;
|
|
2735
|
+
hash?: string | undefined;
|
|
2736
|
+
width?: number | undefined;
|
|
2737
|
+
height?: number | undefined;
|
|
2738
|
+
referenceArtifactId?: string | undefined;
|
|
2739
|
+
}[] | undefined;
|
|
2740
|
+
abort?: {
|
|
2741
|
+
reason: string;
|
|
2742
|
+
} | null | undefined;
|
|
2743
|
+
}>]>, undefined>, undefined>;
|
|
2744
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2745
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2746
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2747
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2748
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2749
|
+
readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2750
|
+
readonly title: v.StringSchema<undefined>;
|
|
2751
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2752
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2753
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2754
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2755
|
+
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2756
|
+
readonly started: v.BooleanSchema<undefined>;
|
|
2757
|
+
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2758
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2759
|
+
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2760
|
+
readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2761
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2762
|
+
}, undefined>, undefined>, undefined>;
|
|
2763
|
+
}, undefined>, undefined>, undefined>;
|
|
2764
|
+
readonly testerQuality: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2765
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2766
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2767
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2768
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2769
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2770
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2771
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2772
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2773
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2774
|
+
}, undefined>, undefined>, undefined>;
|
|
2775
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
2776
|
+
readonly adequate: v.BooleanSchema<undefined>;
|
|
2777
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2778
|
+
readonly gaps: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2779
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2780
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2781
|
+
}, undefined>, undefined>;
|
|
2782
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2783
|
+
}, undefined>, undefined>, undefined>;
|
|
2784
|
+
readonly humanTest: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2785
|
+
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
2786
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2787
|
+
readonly id: v.StringSchema<undefined>;
|
|
2788
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2789
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2790
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2791
|
+
}, undefined>, undefined>, undefined>;
|
|
2792
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2793
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2794
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2795
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2796
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2797
|
+
readonly kind: v.PicklistSchema<["fix", "pull-main"], undefined>;
|
|
2798
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2799
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2800
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2801
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2802
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2803
|
+
}, undefined>, undefined>, undefined>;
|
|
2804
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2805
|
+
readonly type: v.PicklistSchema<["confirm", "request-fix", "pull-main", "recreate"], undefined>;
|
|
2806
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2807
|
+
}, undefined>, undefined>, undefined>;
|
|
2808
|
+
}, undefined>, undefined>, undefined>;
|
|
2809
|
+
readonly visualConfirm: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2810
|
+
readonly phase: v.PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
2811
|
+
readonly pairs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2812
|
+
readonly view: v.StringSchema<undefined>;
|
|
2813
|
+
readonly actualArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2814
|
+
readonly referenceArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2815
|
+
readonly referenceOrigin: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["upload", "design"], undefined>, undefined>, undefined>;
|
|
2816
|
+
}, undefined>, undefined>, undefined>;
|
|
2817
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2818
|
+
readonly designReferences: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2819
|
+
readonly documents: v.NumberSchema<undefined>;
|
|
2820
|
+
readonly images: v.NumberSchema<undefined>;
|
|
2821
|
+
readonly dropped: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2822
|
+
readonly gaps: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2823
|
+
readonly title: v.StringSchema<undefined>;
|
|
2824
|
+
readonly reason: v.NullableSchema<v.PicklistSchema<["partial", "failed", "none", "storage_unavailable", "not_retained"], undefined>, undefined>;
|
|
2825
|
+
readonly dropped: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2826
|
+
}, undefined>, undefined>, undefined>;
|
|
2827
|
+
}, undefined>, undefined>, undefined>;
|
|
2828
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2829
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2830
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2831
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2832
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2833
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2834
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2835
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2836
|
+
}, undefined>, undefined>, undefined>;
|
|
2837
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2838
|
+
readonly type: v.PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
2839
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2840
|
+
}, undefined>, undefined>, undefined>;
|
|
2841
|
+
}, undefined>, undefined>, undefined>;
|
|
2842
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2843
|
+
readonly id: v.StringSchema<undefined>;
|
|
2844
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2845
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2846
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2847
|
+
readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2848
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
2849
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
2850
|
+
}, undefined>, undefined>, undefined>;
|
|
2851
|
+
readonly subtasks: v.OptionalSchema<v.ObjectSchema<{
|
|
2852
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2853
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2854
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2855
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2856
|
+
readonly label: v.StringSchema<undefined>;
|
|
2857
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2858
|
+
}, undefined>, undefined>, undefined>;
|
|
2859
|
+
}, undefined>, undefined>;
|
|
2860
|
+
readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2861
|
+
readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
|
|
2862
|
+
readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2863
|
+
readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2864
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2865
|
+
}, undefined>, undefined>, undefined>;
|
|
2866
|
+
readonly search: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2867
|
+
readonly available: v.BooleanSchema<undefined>;
|
|
2868
|
+
readonly provider: v.NullableSchema<v.PicklistSchema<["brave", "searxng"], undefined>, undefined>;
|
|
2869
|
+
}, undefined>, undefined>, undefined>;
|
|
2870
|
+
readonly decision: v.NullableSchema<v.ObjectSchema<{
|
|
2871
|
+
readonly id: v.StringSchema<undefined>;
|
|
2872
|
+
readonly question: v.StringSchema<undefined>;
|
|
2873
|
+
readonly options: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2874
|
+
readonly chosen: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2875
|
+
}, undefined>, undefined>;
|
|
2876
|
+
readonly requiresApproval: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2877
|
+
readonly approval: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2878
|
+
readonly id: v.StringSchema<undefined>;
|
|
2879
|
+
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2880
|
+
readonly proposal: v.StringSchema<undefined>;
|
|
2881
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2882
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2883
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2884
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2885
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2886
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2887
|
+
readonly severity: v.OptionalSchema<v.SchemaWithFallback<v.PicklistSchema<["blocker", "major", "minor"], undefined>, "major">, undefined>;
|
|
2888
|
+
readonly body: v.StringSchema<undefined>;
|
|
2889
|
+
}, undefined>, undefined>, undefined>;
|
|
2890
|
+
readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2891
|
+
readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
|
|
2892
|
+
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
2893
|
+
readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2894
|
+
}, undefined>, undefined>;
|
|
2895
|
+
readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2896
|
+
readonly actorId: v.StringSchema<undefined>;
|
|
2897
|
+
readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2898
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2899
|
+
}, undefined>, undefined>, undefined>;
|
|
2900
|
+
}, undefined>, undefined>, undefined>;
|
|
2901
|
+
readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2902
|
+
readonly threshold: v.NumberSchema<undefined>;
|
|
2903
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2904
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2905
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
2906
|
+
readonly rating: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2907
|
+
readonly threshold: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2908
|
+
readonly passed: v.BooleanSchema<undefined>;
|
|
2909
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2910
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2911
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2912
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2913
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2914
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2915
|
+
readonly severity: v.OptionalSchema<v.SchemaWithFallback<v.PicklistSchema<["blocker", "major", "minor"], undefined>, "major">, undefined>;
|
|
2916
|
+
readonly body: v.StringSchema<undefined>;
|
|
2917
|
+
}, undefined>, undefined>, undefined>;
|
|
2918
|
+
}, undefined>, undefined>;
|
|
2919
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2920
|
+
readonly capSettledByPolicy: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2921
|
+
readonly stalled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2922
|
+
}, undefined>, undefined>, undefined>;
|
|
2923
|
+
readonly reviewCapSettledByPolicy: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2924
|
+
readonly autoAnsweredByPolicy: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2925
|
+
readonly followUps: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2926
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2927
|
+
readonly items: v.ArraySchema<v.ObjectSchema<{
|
|
2928
|
+
readonly id: v.StringSchema<undefined>;
|
|
2929
|
+
readonly kind: v.PicklistSchema<["follow_up", "question"], undefined>;
|
|
2930
|
+
readonly title: v.StringSchema<undefined>;
|
|
2931
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2932
|
+
readonly suggestedAction: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2933
|
+
readonly status: v.PicklistSchema<["pending", "filed", "queued", "answered", "dismissed"], undefined>;
|
|
2934
|
+
readonly answer: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2935
|
+
readonly sentToCoder: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2936
|
+
readonly dismissedByPolicy: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2937
|
+
readonly ticketExternalId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2938
|
+
readonly ticketUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2939
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2940
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
2941
|
+
}, undefined>, undefined>;
|
|
2942
|
+
readonly loops: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2943
|
+
readonly maxLoops: v.OptionalSchema<v.NumberSchema<undefined>, 3>;
|
|
2944
|
+
}, undefined>, undefined>, undefined>;
|
|
2945
|
+
readonly forkDecision: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2946
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
2947
|
+
readonly seamSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2948
|
+
readonly forks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2949
|
+
readonly id: v.StringSchema<undefined>;
|
|
2950
|
+
readonly title: v.StringSchema<undefined>;
|
|
2951
|
+
readonly summary: v.StringSchema<undefined>;
|
|
2952
|
+
readonly approach: v.StringSchema<undefined>;
|
|
2953
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2954
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2955
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2956
|
+
}, undefined>, undefined>, readonly []>;
|
|
2957
|
+
readonly singlePathReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2958
|
+
readonly chat: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2959
|
+
readonly id: v.StringSchema<undefined>;
|
|
2960
|
+
readonly role: v.PicklistSchema<["human", "assistant"], undefined>;
|
|
2961
|
+
readonly text: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>;
|
|
2962
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2963
|
+
}, undefined>, undefined>, readonly []>;
|
|
2964
|
+
readonly maxChatTurns: v.OptionalSchema<v.NumberSchema<undefined>, 15>;
|
|
2965
|
+
readonly chosen: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2966
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2967
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2968
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2969
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2970
|
+
}, undefined>, v.CheckAction<{
|
|
2971
|
+
forkId?: string | null | undefined;
|
|
2972
|
+
custom?: string | null | undefined;
|
|
2973
|
+
note?: string | null | undefined;
|
|
2974
|
+
at: number;
|
|
2975
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
2976
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2977
|
+
}, undefined>, undefined>, undefined>;
|
|
2978
|
+
readonly judge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2979
|
+
readonly status: v.PicklistSchema<["evaluating", "awaiting_decision", "bouncing", "passed", "failed", "skipped"], undefined>;
|
|
2980
|
+
readonly rubricId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2981
|
+
readonly rubricName: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2982
|
+
readonly rubricOverridden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2983
|
+
readonly verdict: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2984
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
2985
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2986
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
2987
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
2988
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2989
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
2990
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2991
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
2992
|
+
}, undefined>, undefined>, undefined>;
|
|
2993
|
+
readonly threshold: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2994
|
+
readonly disposition: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>, undefined>, undefined>;
|
|
2995
|
+
readonly bounces: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2996
|
+
readonly maxBounces: v.OptionalSchema<v.NumberSchema<undefined>, 1>;
|
|
2997
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2998
|
+
readonly modelPin: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2999
|
+
readonly requested: v.StringSchema<undefined>;
|
|
3000
|
+
readonly status: v.PicklistSchema<["applied", "overridden", "unavailable"], undefined>;
|
|
3001
|
+
}, undefined>, undefined>, undefined>;
|
|
3002
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3003
|
+
readonly round: v.NumberSchema<undefined>;
|
|
3004
|
+
readonly at: v.NumberSchema<undefined>;
|
|
3005
|
+
readonly verdict: v.ObjectSchema<{
|
|
3006
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
3007
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
3008
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
3009
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
3010
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3011
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
3012
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3013
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
3014
|
+
}, undefined>;
|
|
3015
|
+
readonly disposition: v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>;
|
|
3016
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3017
|
+
}, undefined>, undefined>, readonly []>;
|
|
3018
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3019
|
+
readonly capSettledByPolicy: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3020
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3021
|
+
readonly choice: v.PicklistSchema<["proceed", "bounce", "stop"], undefined>;
|
|
3022
|
+
readonly feedback: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3023
|
+
readonly at: v.NumberSchema<undefined>;
|
|
3024
|
+
}, undefined>, undefined>, undefined>;
|
|
3025
|
+
}, undefined>, undefined>, undefined>;
|
|
3026
|
+
readonly ralph: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3027
|
+
readonly phase: v.PicklistSchema<["iterating"], undefined>;
|
|
3028
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
3029
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
3030
|
+
readonly validationCommand: v.StringSchema<undefined>;
|
|
3031
|
+
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3032
|
+
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3033
|
+
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3034
|
+
readonly noProgressStreak: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3035
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3036
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
3037
|
+
readonly at: v.NumberSchema<undefined>;
|
|
3038
|
+
readonly validationPassed: v.BooleanSchema<undefined>;
|
|
3039
|
+
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3040
|
+
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3041
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3042
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3043
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
3044
|
+
readonly droppedAttempts: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3045
|
+
}, undefined>, undefined>, undefined>;
|
|
3046
|
+
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3047
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
3048
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
3049
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
3050
|
+
readonly outcomes: v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
3051
|
+
readonly label: v.SchemaWithFallback<v.StringSchema<undefined>, "check">;
|
|
3052
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
3053
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
3054
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
3055
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3056
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3057
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3058
|
+
}, undefined>, undefined>, readonly []>;
|
|
3059
|
+
readonly at: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3060
|
+
}, undefined>, undefined>, undefined>;
|
|
3061
|
+
readonly validationConfigUnreadable: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3062
|
+
readonly reproduction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3063
|
+
readonly status: v.SchemaWithFallback<v.PicklistSchema<["reproduced", "inconclusive", "declared_infeasible"], undefined>, "inconclusive">;
|
|
3064
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
3065
|
+
readonly testPaths: v.SchemaWithFallback<v.ArraySchema<v.SchemaWithFallback<v.StringSchema<undefined>, "">, undefined>, readonly []>;
|
|
3066
|
+
readonly omittedTestPaths: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3067
|
+
readonly base: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
3068
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
3069
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
3070
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3071
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3072
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3073
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3074
|
+
}, undefined>, undefined>, undefined>;
|
|
3075
|
+
readonly final: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
3076
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
3077
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
3078
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3079
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3080
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3081
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3082
|
+
}, undefined>, undefined>, undefined>;
|
|
3083
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
3084
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
3085
|
+
readonly reason: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3086
|
+
readonly alternativeVerification: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3087
|
+
readonly note: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3088
|
+
readonly at: v.SchemaWithFallback<v.NumberSchema<undefined>, 0>;
|
|
3089
|
+
}, undefined>, undefined>, undefined>;
|
|
3090
|
+
readonly pendingForkChat: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3091
|
+
readonly messageId: v.StringSchema<undefined>;
|
|
3092
|
+
}, undefined>, undefined>, undefined>;
|
|
3093
|
+
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3094
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3095
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3096
|
+
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3097
|
+
readonly id: v.StringSchema<undefined>;
|
|
3098
|
+
readonly title: v.StringSchema<undefined>;
|
|
3099
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
3100
|
+
readonly paths: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3101
|
+
}, undefined>, undefined>, readonly []>;
|
|
3102
|
+
readonly sliceReviews: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3103
|
+
readonly label: v.StringSchema<undefined>;
|
|
3104
|
+
readonly status: v.PicklistSchema<["in_progress", "completed"], undefined>;
|
|
3105
|
+
readonly report: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3106
|
+
}, undefined>, undefined>, readonly []>;
|
|
3107
|
+
readonly resumeAttempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
3108
|
+
readonly resumePendingSlices: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3109
|
+
readonly findings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3110
|
+
readonly id: v.StringSchema<undefined>;
|
|
3111
|
+
readonly sliceId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3112
|
+
readonly path: v.StringSchema<undefined>;
|
|
3113
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3114
|
+
readonly side: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "RIGHT"], undefined>, undefined>, undefined>;
|
|
3115
|
+
readonly severity: v.PicklistSchema<["blocker", "high", "medium", "low", "nit"], undefined>;
|
|
3116
|
+
readonly category: v.PicklistSchema<["correctness", "security", "performance", "maintainability", "style", "test", "other"], undefined>;
|
|
3117
|
+
readonly title: v.StringSchema<undefined>;
|
|
3118
|
+
readonly detail: v.StringSchema<undefined>;
|
|
3119
|
+
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3120
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3121
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3122
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3123
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3124
|
+
}, undefined>, undefined>, undefined>;
|
|
3125
|
+
}, undefined>, undefined>, readonly []>;
|
|
3126
|
+
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3127
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
3128
|
+
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3129
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3130
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3131
|
+
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3132
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
3133
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
3134
|
+
readonly folded: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
3135
|
+
readonly bodyPosted: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3136
|
+
readonly bodyError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3137
|
+
readonly failures: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3138
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3139
|
+
readonly path: v.StringSchema<undefined>;
|
|
3140
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3141
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3142
|
+
}, undefined>, undefined>, readonly []>;
|
|
3143
|
+
}, undefined>, undefined>, undefined>;
|
|
3144
|
+
readonly postedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3145
|
+
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
3146
|
+
}, undefined>, undefined>, undefined>;
|
|
3147
|
+
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3148
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3149
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3150
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3151
|
+
}, undefined>, undefined>, undefined>;
|
|
3152
|
+
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3153
|
+
readonly previousProposal: v.StringSchema<undefined>;
|
|
3154
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
3155
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3156
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3157
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3158
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3159
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3160
|
+
readonly severity: v.OptionalSchema<v.SchemaWithFallback<v.PicklistSchema<["blocker", "major", "minor"], undefined>, "major">, undefined>;
|
|
3161
|
+
readonly body: v.StringSchema<undefined>;
|
|
3162
|
+
}, undefined>, undefined>, undefined>;
|
|
3163
|
+
readonly requestedBy: v.PicklistSchema<["human", "reviewer"], undefined>;
|
|
3164
|
+
}, undefined>, undefined>, undefined>;
|
|
3165
|
+
readonly pendingIncorporation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3166
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3167
|
+
}, undefined>, undefined>, undefined>;
|
|
3168
|
+
readonly pendingRecommendation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3169
|
+
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3170
|
+
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3171
|
+
}, undefined>, undefined>, undefined>;
|
|
3172
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3173
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3174
|
+
}, undefined>, undefined>, undefined>;
|
|
3175
|
+
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3176
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
3177
|
+
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
3178
|
+
readonly participants: v.ArraySchema<v.ObjectSchema<{
|
|
3179
|
+
readonly id: v.StringSchema<undefined>;
|
|
3180
|
+
readonly role: v.StringSchema<undefined>;
|
|
3181
|
+
readonly systemFraming: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3182
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3183
|
+
}, undefined>, undefined>;
|
|
3184
|
+
readonly synthesizerModelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3185
|
+
readonly rounds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
3186
|
+
readonly gating: v.OptionalSchema<v.ObjectSchema<{
|
|
3187
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
3188
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3189
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3190
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3191
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["consensus", "standard"], undefined>, "consensus">;
|
|
3192
|
+
}, undefined>, undefined>;
|
|
3193
|
+
readonly groupIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3194
|
+
readonly selectedGroup: v.OptionalSchema<v.ObjectSchema<{
|
|
3195
|
+
readonly id: v.StringSchema<undefined>;
|
|
3196
|
+
readonly name: v.StringSchema<undefined>;
|
|
3197
|
+
}, undefined>, undefined>;
|
|
3198
|
+
}, undefined>, undefined>, undefined>;
|
|
3199
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3200
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
3201
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3202
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3203
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3204
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
3205
|
+
}, undefined>, undefined>, undefined>;
|
|
3206
|
+
readonly stepOptions: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3207
|
+
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3208
|
+
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3209
|
+
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3210
|
+
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3211
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
3212
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
3213
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
3214
|
+
readonly generatorIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
3215
|
+
readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
|
|
3216
|
+
readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
|
|
3217
|
+
readonly generation: v.OptionalSchema<v.GenericSchema<unknown, import("../binary-capabilities.js").BinaryGenerationOptions>, undefined>;
|
|
3218
|
+
readonly comparison: v.OptionalSchema<v.ObjectSchema<{
|
|
3219
|
+
readonly perGenerator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 4, undefined>]>, undefined>;
|
|
3220
|
+
readonly multiSelect: v.OptionalSchema<v.LiteralSchema<true, undefined>, undefined>;
|
|
3221
|
+
}, undefined>, undefined>;
|
|
3222
|
+
}, undefined>, undefined>;
|
|
3223
|
+
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3224
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
3225
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3226
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
3227
|
+
}, undefined>, undefined>;
|
|
3228
|
+
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
3229
|
+
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
3230
|
+
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
3231
|
+
readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3232
|
+
}, undefined>, undefined>;
|
|
3233
|
+
readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
|
|
3234
|
+
readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
3235
|
+
}, undefined>, undefined>;
|
|
3236
|
+
readonly condition: v.OptionalSchema<v.ObjectSchema<{
|
|
3237
|
+
readonly serviceScope: v.PicklistSchema<["frontend", "backend"], undefined>;
|
|
3238
|
+
}, undefined>, undefined>;
|
|
3239
|
+
}, undefined>, undefined>, undefined>;
|
|
3240
|
+
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3241
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
3242
|
+
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3243
|
+
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3244
|
+
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3245
|
+
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3246
|
+
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
3247
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2015
3248
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2016
3249
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2017
3250
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2568,6 +3801,15 @@ export declare const cancelExecutionContract: {
|
|
|
2568
3801
|
readonly rationale: v.StringSchema<undefined>;
|
|
2569
3802
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2570
3803
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
3804
|
+
readonly basis: v.OptionalSchema<v.PicklistSchema<readonly ["predicted", "observed"], undefined>, undefined>;
|
|
3805
|
+
readonly supersedes: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3806
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3807
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3808
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3809
|
+
readonly basis: v.OptionalSchema<v.PicklistSchema<readonly ["predicted", "observed"], undefined>, undefined>;
|
|
3810
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3811
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3812
|
+
}, undefined>, undefined>, undefined>;
|
|
2571
3813
|
}, undefined>, undefined>, undefined>;
|
|
2572
3814
|
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2573
3815
|
readonly taskType: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["feature", "bug", "document", "spike", "review", "ralph", "media", "recurring"], undefined>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Consumer id must be <namespace>:<name> (lowercase a-z0-9, dash-separated)">]>], undefined>, undefined>;
|
|
@@ -2976,6 +4218,15 @@ export declare const mergeBlockContract: {
|
|
|
2976
4218
|
readonly rationale: v.StringSchema<undefined>;
|
|
2977
4219
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2978
4220
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
4221
|
+
readonly basis: v.OptionalSchema<v.PicklistSchema<readonly ["predicted", "observed"], undefined>, undefined>;
|
|
4222
|
+
readonly supersedes: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4223
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
4224
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
4225
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
4226
|
+
readonly basis: v.OptionalSchema<v.PicklistSchema<readonly ["predicted", "observed"], undefined>, undefined>;
|
|
4227
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4228
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
4229
|
+
}, undefined>, undefined>, undefined>;
|
|
2979
4230
|
}, undefined>, undefined>, undefined>;
|
|
2980
4231
|
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2981
4232
|
readonly taskType: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["feature", "bug", "document", "spike", "review", "ralph", "media", "recurring"], undefined>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Consumer id must be <namespace>:<name> (lowercase a-z0-9, dash-separated)">]>], undefined>, undefined>;
|
|
@@ -3384,6 +4635,7 @@ export declare const resumeSpendContract: {
|
|
|
3384
4635
|
}, undefined>;
|
|
3385
4636
|
}, undefined>;
|
|
3386
4637
|
readonly 200: v.ArraySchema<v.ObjectSchema<{
|
|
4638
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3387
4639
|
readonly id: v.StringSchema<undefined>;
|
|
3388
4640
|
readonly blockId: v.StringSchema<undefined>;
|
|
3389
4641
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -4070,12 +5322,13 @@ export declare const resumeSpendContract: {
|
|
|
4070
5322
|
}, undefined>, undefined>;
|
|
4071
5323
|
}, undefined>, undefined>, undefined>;
|
|
4072
5324
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4073
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
5325
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
4074
5326
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4075
5327
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4076
5328
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4077
5329
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4078
5330
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
5331
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4079
5332
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4080
5333
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4081
5334
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5045,6 +6298,7 @@ export declare const resolveDecisionContract: {
|
|
|
5045
6298
|
}, undefined>;
|
|
5046
6299
|
}, undefined>;
|
|
5047
6300
|
readonly 200: v.ObjectSchema<{
|
|
6301
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5048
6302
|
readonly id: v.StringSchema<undefined>;
|
|
5049
6303
|
readonly blockId: v.StringSchema<undefined>;
|
|
5050
6304
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -5731,12 +6985,13 @@ export declare const resolveDecisionContract: {
|
|
|
5731
6985
|
}, undefined>, undefined>;
|
|
5732
6986
|
}, undefined>, undefined>, undefined>;
|
|
5733
6987
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5734
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
6988
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
5735
6989
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5736
6990
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5737
6991
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5738
6992
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5739
6993
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
6994
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5740
6995
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5741
6996
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5742
6997
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -6268,6 +7523,7 @@ export declare const approveStepContract: {
|
|
|
6268
7523
|
}, undefined>;
|
|
6269
7524
|
}, undefined>;
|
|
6270
7525
|
readonly 200: v.ObjectSchema<{
|
|
7526
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6271
7527
|
readonly id: v.StringSchema<undefined>;
|
|
6272
7528
|
readonly blockId: v.StringSchema<undefined>;
|
|
6273
7529
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -6954,12 +8210,13 @@ export declare const approveStepContract: {
|
|
|
6954
8210
|
}, undefined>, undefined>;
|
|
6955
8211
|
}, undefined>, undefined>, undefined>;
|
|
6956
8212
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6957
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
8213
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
6958
8214
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6959
8215
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6960
8216
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6961
8217
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6962
8218
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
8219
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6963
8220
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6964
8221
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6965
8222
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -7505,6 +8762,7 @@ export declare const requestStepChangesContract: {
|
|
|
7505
8762
|
}, undefined>;
|
|
7506
8763
|
}, undefined>;
|
|
7507
8764
|
readonly 200: v.ObjectSchema<{
|
|
8765
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7508
8766
|
readonly id: v.StringSchema<undefined>;
|
|
7509
8767
|
readonly blockId: v.StringSchema<undefined>;
|
|
7510
8768
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -8191,12 +9449,13 @@ export declare const requestStepChangesContract: {
|
|
|
8191
9449
|
}, undefined>, undefined>;
|
|
8192
9450
|
}, undefined>, undefined>, undefined>;
|
|
8193
9451
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8194
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
9452
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
8195
9453
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8196
9454
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8197
9455
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8198
9456
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8199
9457
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
9458
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8200
9459
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8201
9460
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8202
9461
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -8728,6 +9987,7 @@ export declare const resolveStepExceededContract: {
|
|
|
8728
9987
|
}, undefined>;
|
|
8729
9988
|
}, undefined>;
|
|
8730
9989
|
readonly 200: v.ObjectSchema<{
|
|
9990
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8731
9991
|
readonly id: v.StringSchema<undefined>;
|
|
8732
9992
|
readonly blockId: v.StringSchema<undefined>;
|
|
8733
9993
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -9414,12 +10674,13 @@ export declare const resolveStepExceededContract: {
|
|
|
9414
10674
|
}, undefined>, undefined>;
|
|
9415
10675
|
}, undefined>, undefined>, undefined>;
|
|
9416
10676
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9417
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
10677
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
9418
10678
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9419
10679
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9420
10680
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9421
10681
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9422
10682
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
10683
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9423
10684
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9424
10685
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9425
10686
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -9949,6 +11210,7 @@ export declare const restartExecutionContract: {
|
|
|
9949
11210
|
}, undefined>;
|
|
9950
11211
|
}, undefined>;
|
|
9951
11212
|
readonly 200: v.ObjectSchema<{
|
|
11213
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9952
11214
|
readonly id: v.StringSchema<undefined>;
|
|
9953
11215
|
readonly blockId: v.StringSchema<undefined>;
|
|
9954
11216
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -10635,12 +11897,13 @@ export declare const restartExecutionContract: {
|
|
|
10635
11897
|
}, undefined>, undefined>;
|
|
10636
11898
|
}, undefined>, undefined>, undefined>;
|
|
10637
11899
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10638
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
11900
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
10639
11901
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10640
11902
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10641
11903
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10642
11904
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10643
11905
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
11906
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10644
11907
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10645
11908
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10646
11909
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -11172,6 +12435,7 @@ export declare const rejectStepContract: {
|
|
|
11172
12435
|
}, undefined>;
|
|
11173
12436
|
}, undefined>;
|
|
11174
12437
|
readonly 200: v.ObjectSchema<{
|
|
12438
|
+
readonly projected: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11175
12439
|
readonly id: v.StringSchema<undefined>;
|
|
11176
12440
|
readonly blockId: v.StringSchema<undefined>;
|
|
11177
12441
|
readonly pipelineId: v.StringSchema<undefined>;
|
|
@@ -11858,12 +13122,13 @@ export declare const rejectStepContract: {
|
|
|
11858
13122
|
}, undefined>, undefined>;
|
|
11859
13123
|
}, undefined>, undefined>, undefined>;
|
|
11860
13124
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11861
|
-
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete"], undefined>, undefined>;
|
|
13125
|
+
readonly skipReason: v.OptionalSchema<v.PicklistSchema<["gated", "condition", "producer_skipped", "run_complete", "no_pull_request"], undefined>, undefined>;
|
|
11862
13126
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11863
13127
|
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11864
13128
|
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11865
13129
|
readonly outputIsRendered: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11866
13130
|
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
13131
|
+
readonly hasOutput: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11867
13132
|
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11868
13133
|
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11869
13134
|
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|