@cat-factory/contracts 0.178.0 → 0.180.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/bug-hunt.d.ts +199 -0
- package/dist/bug-hunt.d.ts.map +1 -0
- package/dist/bug-hunt.js +150 -0
- package/dist/bug-hunt.js.map +1 -0
- 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/provider-config.d.ts +24 -0
- package/dist/provider-config.d.ts.map +1 -1
- package/dist/provider-config.js +21 -0
- package/dist/provider-config.js.map +1 -1
- package/dist/routes/bug-hunt.d.ts +2689 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -0
- package/dist/routes/bug-hunt.js +43 -0
- package/dist/routes/bug-hunt.js.map +1 -0
- package/dist/routes/environments.d.ts +8 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/runners.d.ts +4 -0
- package/dist/routes/runners.d.ts.map +1 -1
- package/dist/routes/user-secret.d.ts +4 -0
- package/dist/routes/user-secret.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2689 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
declare const adoptBugHuntResultSchema: v.ObjectSchema<{
|
|
3
|
+
readonly block: v.ObjectSchema<{
|
|
4
|
+
readonly id: v.StringSchema<undefined>;
|
|
5
|
+
readonly title: v.StringSchema<undefined>;
|
|
6
|
+
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
7
|
+
readonly description: v.StringSchema<undefined>;
|
|
8
|
+
readonly position: v.ObjectSchema<{
|
|
9
|
+
readonly x: v.NumberSchema<undefined>;
|
|
10
|
+
readonly y: v.NumberSchema<undefined>;
|
|
11
|
+
}, undefined>;
|
|
12
|
+
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
13
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
14
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
15
|
+
}, undefined>, undefined>;
|
|
16
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
17
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
18
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
19
|
+
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
20
|
+
readonly level: v.PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
21
|
+
readonly parentId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
22
|
+
readonly epicId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
23
|
+
readonly initiativeId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
24
|
+
readonly autoStartDependents: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
25
|
+
readonly confidence: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
26
|
+
readonly estimate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
27
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
28
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
29
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
30
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
31
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
32
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
33
|
+
}, undefined>, undefined>, undefined>;
|
|
34
|
+
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
35
|
+
readonly taskType: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["feature", "bug", "document", "spike", "review", "ralph", "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>;
|
|
36
|
+
readonly taskTypeFields: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
37
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
38
|
+
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
39
|
+
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
40
|
+
readonly successCriteria: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
41
|
+
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
42
|
+
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
43
|
+
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
44
|
+
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
45
|
+
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
46
|
+
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
47
|
+
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
48
|
+
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
49
|
+
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
50
|
+
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
51
|
+
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
52
|
+
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
53
|
+
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
54
|
+
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
55
|
+
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
56
|
+
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
57
|
+
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
58
|
+
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
59
|
+
readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
60
|
+
}, undefined>, undefined>, undefined>;
|
|
61
|
+
readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
62
|
+
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
63
|
+
readonly serviceFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
64
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
65
|
+
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
66
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
67
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>;
|
|
68
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
69
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
70
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
71
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
72
|
+
}, undefined>, v.ObjectSchema<{
|
|
73
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
74
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
75
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
76
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
77
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
78
|
+
}, undefined>], undefined>, undefined>;
|
|
79
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
80
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
81
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
82
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
83
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
84
|
+
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>;
|
|
85
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
86
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
87
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
88
|
+
}, undefined>, undefined>, undefined>;
|
|
89
|
+
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>;
|
|
90
|
+
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>;
|
|
91
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
92
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
93
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
94
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
95
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
96
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
97
|
+
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>;
|
|
98
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
99
|
+
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>;
|
|
100
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
101
|
+
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>;
|
|
102
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
103
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
104
|
+
}, undefined>, undefined>;
|
|
105
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
106
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
107
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
108
|
+
}, undefined>, undefined>, undefined>;
|
|
109
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
110
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
111
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
112
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
113
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
114
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
115
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
116
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
117
|
+
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>;
|
|
118
|
+
}, undefined>, v.ObjectSchema<{
|
|
119
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
120
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
121
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
122
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
123
|
+
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>;
|
|
124
|
+
}, undefined>, v.ObjectSchema<{
|
|
125
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
126
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
127
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
128
|
+
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>;
|
|
129
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
130
|
+
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>;
|
|
131
|
+
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>;
|
|
132
|
+
}, undefined>, v.ObjectSchema<{
|
|
133
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
134
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
135
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
136
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
137
|
+
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>;
|
|
138
|
+
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>;
|
|
139
|
+
}, undefined>, v.ObjectSchema<{
|
|
140
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
141
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
142
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
143
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
144
|
+
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>;
|
|
145
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
146
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
147
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
148
|
+
}, undefined>, v.ObjectSchema<{
|
|
149
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
150
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
151
|
+
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>;
|
|
152
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
153
|
+
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>;
|
|
154
|
+
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>;
|
|
155
|
+
}, undefined>, v.ObjectSchema<{
|
|
156
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
157
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
158
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
159
|
+
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>;
|
|
160
|
+
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>;
|
|
161
|
+
}, undefined>], undefined>, undefined>;
|
|
162
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
163
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
164
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
165
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
166
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
167
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
168
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
169
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
170
|
+
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>;
|
|
171
|
+
}, undefined>, v.ObjectSchema<{
|
|
172
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
173
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
174
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
175
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
176
|
+
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>;
|
|
177
|
+
}, undefined>, v.ObjectSchema<{
|
|
178
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
179
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
180
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
181
|
+
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>;
|
|
182
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
183
|
+
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>;
|
|
184
|
+
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>;
|
|
185
|
+
}, undefined>, v.ObjectSchema<{
|
|
186
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
187
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
188
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
189
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
190
|
+
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>;
|
|
191
|
+
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>;
|
|
192
|
+
}, undefined>, v.ObjectSchema<{
|
|
193
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
194
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
195
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
196
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
197
|
+
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>;
|
|
198
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
199
|
+
}, undefined>, undefined>;
|
|
200
|
+
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>;
|
|
201
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
202
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
203
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
204
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
205
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
206
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
207
|
+
}, undefined>, v.CheckAction<{
|
|
208
|
+
name: string;
|
|
209
|
+
newNameTemplate?: string | undefined;
|
|
210
|
+
newTagTemplate?: string | undefined;
|
|
211
|
+
digestTemplate?: string | undefined;
|
|
212
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
213
|
+
name: string;
|
|
214
|
+
newNameTemplate?: string | undefined;
|
|
215
|
+
newTagTemplate?: string | undefined;
|
|
216
|
+
digestTemplate?: string | undefined;
|
|
217
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
218
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
219
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
220
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
221
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
222
|
+
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.">]>;
|
|
223
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
224
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
225
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
226
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
227
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
228
|
+
}, undefined>, undefined>, undefined>;
|
|
229
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
230
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
231
|
+
readonly secretRef: v.ObjectSchema<{
|
|
232
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
233
|
+
}, undefined>;
|
|
234
|
+
}, undefined>, undefined>, undefined>;
|
|
235
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
236
|
+
}, undefined>, undefined>, undefined>;
|
|
237
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
238
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
239
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
240
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
241
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
242
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
243
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
244
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
245
|
+
}, undefined>, undefined>;
|
|
246
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
247
|
+
}, undefined>, v.CheckAction<{
|
|
248
|
+
key: string;
|
|
249
|
+
secretRef?: {
|
|
250
|
+
key: string;
|
|
251
|
+
} | undefined;
|
|
252
|
+
valueTemplate?: string | undefined;
|
|
253
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
254
|
+
}, undefined>, v.ObjectSchema<{
|
|
255
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
256
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
257
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
258
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
259
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
260
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
261
|
+
}, undefined>, undefined>;
|
|
262
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
263
|
+
}, undefined>, v.CheckAction<{
|
|
264
|
+
key: string;
|
|
265
|
+
secretRef?: {
|
|
266
|
+
key: string;
|
|
267
|
+
} | undefined;
|
|
268
|
+
valueTemplate?: string | undefined;
|
|
269
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
270
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
271
|
+
}, undefined>, undefined>;
|
|
272
|
+
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
273
|
+
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
274
|
+
readonly frontendConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
275
|
+
readonly packageManager: v.OptionalSchema<v.PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
276
|
+
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
277
|
+
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
278
|
+
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
279
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
280
|
+
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
281
|
+
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
282
|
+
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
283
|
+
readonly envInjection: v.OptionalSchema<v.PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
284
|
+
readonly branch: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
285
|
+
readonly kind: v.LiteralSchema<"default", undefined>;
|
|
286
|
+
}, undefined>, v.ObjectSchema<{
|
|
287
|
+
readonly kind: v.LiteralSchema<"task", undefined>;
|
|
288
|
+
readonly fromTaskBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
289
|
+
}, undefined>], undefined>, undefined>;
|
|
290
|
+
readonly mockMappingsPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
291
|
+
readonly previewEnabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
292
|
+
readonly backendBindings: v.ArraySchema<v.ObjectSchema<{
|
|
293
|
+
readonly envVar: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
294
|
+
readonly source: v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
295
|
+
readonly kind: v.LiteralSchema<"service", undefined>;
|
|
296
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
297
|
+
}, undefined>, v.ObjectSchema<{
|
|
298
|
+
readonly kind: v.LiteralSchema<"mock", undefined>;
|
|
299
|
+
}, undefined>], undefined>;
|
|
300
|
+
}, undefined>, undefined>;
|
|
301
|
+
}, undefined>, undefined>;
|
|
302
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
303
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
304
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
305
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
306
|
+
serviceBlockId: string;
|
|
307
|
+
description?: string | undefined;
|
|
308
|
+
}[], 50, undefined>]>, undefined>;
|
|
309
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
310
|
+
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
311
|
+
readonly url: v.StringSchema<undefined>;
|
|
312
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
313
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
314
|
+
}, undefined>, undefined>;
|
|
315
|
+
readonly peerPullRequests: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
316
|
+
readonly repo: v.StringSchema<undefined>;
|
|
317
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
318
|
+
readonly ref: v.ObjectSchema<{
|
|
319
|
+
readonly url: v.StringSchema<undefined>;
|
|
320
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
321
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
322
|
+
}, undefined>;
|
|
323
|
+
}, undefined>, undefined>, undefined>;
|
|
324
|
+
readonly referenceRepos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
325
|
+
readonly repoId: v.NumberSchema<undefined>;
|
|
326
|
+
readonly owner: v.StringSchema<undefined>;
|
|
327
|
+
readonly name: v.StringSchema<undefined>;
|
|
328
|
+
readonly defaultBranch: v.StringSchema<undefined>;
|
|
329
|
+
readonly connectionId: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
330
|
+
}, undefined>, undefined>, undefined>;
|
|
331
|
+
readonly aprioriBranches: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
332
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>, v.CheckAction<string, "Not a valid git branch name">]>;
|
|
333
|
+
readonly mode: v.PicklistSchema<["reference", "working"], undefined>;
|
|
334
|
+
}, undefined>, undefined>, undefined>;
|
|
335
|
+
readonly riskPolicyId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
336
|
+
readonly modelPresetId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
337
|
+
readonly pipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
338
|
+
readonly createdBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
339
|
+
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
340
|
+
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
341
|
+
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
342
|
+
readonly trackerQuestionsOnPark: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
343
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
344
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
345
|
+
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
346
|
+
}, undefined>;
|
|
347
|
+
readonly task: v.ObjectSchema<{
|
|
348
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
349
|
+
readonly externalId: v.StringSchema<undefined>;
|
|
350
|
+
readonly title: v.StringSchema<undefined>;
|
|
351
|
+
readonly url: v.StringSchema<undefined>;
|
|
352
|
+
readonly status: v.StringSchema<undefined>;
|
|
353
|
+
readonly type: v.StringSchema<undefined>;
|
|
354
|
+
readonly assignee: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
355
|
+
readonly priority: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
356
|
+
readonly labels: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
357
|
+
readonly description: v.StringSchema<undefined>;
|
|
358
|
+
readonly comments: v.ArraySchema<v.ObjectSchema<{
|
|
359
|
+
readonly author: v.StringSchema<undefined>;
|
|
360
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
361
|
+
readonly body: v.StringSchema<undefined>;
|
|
362
|
+
}, undefined>, undefined>;
|
|
363
|
+
readonly excerpt: v.StringSchema<undefined>;
|
|
364
|
+
readonly linkedBlockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
365
|
+
readonly syncedAt: v.NumberSchema<undefined>;
|
|
366
|
+
}, undefined>;
|
|
367
|
+
readonly execution: v.ObjectSchema<{
|
|
368
|
+
readonly id: v.StringSchema<undefined>;
|
|
369
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
370
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
371
|
+
readonly pipelineName: v.StringSchema<undefined>;
|
|
372
|
+
readonly steps: v.ArraySchema<v.ObjectSchema<{
|
|
373
|
+
readonly runId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
374
|
+
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
375
|
+
readonly state: v.PicklistSchema<["pending", "working", "waiting_decision", "done"], undefined>;
|
|
376
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
377
|
+
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
378
|
+
readonly calls: v.NumberSchema<undefined>;
|
|
379
|
+
readonly promptTokens: v.NumberSchema<undefined>;
|
|
380
|
+
readonly cachedPromptTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
381
|
+
readonly completionTokens: v.NumberSchema<undefined>;
|
|
382
|
+
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
383
|
+
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
384
|
+
readonly truncatedCalls: v.NumberSchema<undefined>;
|
|
385
|
+
readonly upstreamMs: v.NumberSchema<undefined>;
|
|
386
|
+
readonly overheadMs: v.NumberSchema<undefined>;
|
|
387
|
+
readonly errors: v.NumberSchema<undefined>;
|
|
388
|
+
readonly warnings: v.NumberSchema<undefined>;
|
|
389
|
+
}, undefined>, undefined>, undefined>;
|
|
390
|
+
readonly gate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
391
|
+
readonly phase: v.PicklistSchema<["checking", "working"], undefined>;
|
|
392
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
393
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
394
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
395
|
+
readonly headShas: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
396
|
+
readonly conflictTarget: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
397
|
+
readonly repo: v.StringSchema<undefined>;
|
|
398
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
399
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
400
|
+
}, undefined>, undefined>, undefined>;
|
|
401
|
+
readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
402
|
+
readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
403
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
404
|
+
readonly name: v.StringSchema<undefined>;
|
|
405
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
406
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
407
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
408
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
409
|
+
readonly lastDispatchedInstructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
410
|
+
readonly watchSince: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
411
|
+
readonly watchWindowMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
412
|
+
readonly regressedSignals: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
413
|
+
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
414
|
+
readonly id: v.StringSchema<undefined>;
|
|
415
|
+
readonly name: v.StringSchema<undefined>;
|
|
416
|
+
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
417
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
418
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
419
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
420
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
421
|
+
readonly at: v.NumberSchema<undefined>;
|
|
422
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
423
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
424
|
+
readonly instructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
425
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
426
|
+
readonly name: v.StringSchema<undefined>;
|
|
427
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
428
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
429
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
430
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
431
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
432
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
433
|
+
readonly lastApprovals: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
434
|
+
readonly requiredApprovingReviewCount: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
435
|
+
readonly pendingThreadIds: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
436
|
+
readonly lastAddressedCommentAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
437
|
+
readonly humanReviewGraceMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
438
|
+
readonly pendingFix: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
439
|
+
readonly instructions: v.StringSchema<undefined>;
|
|
440
|
+
readonly at: v.NumberSchema<undefined>;
|
|
441
|
+
}, undefined>, undefined>, undefined>;
|
|
442
|
+
}, undefined>, undefined>, undefined>;
|
|
443
|
+
readonly test: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
444
|
+
readonly phase: v.PicklistSchema<["testing", "fixing"], undefined>;
|
|
445
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
446
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
447
|
+
readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
448
|
+
readonly greenlight: v.BooleanSchema<undefined>;
|
|
449
|
+
readonly summary: v.StringSchema<undefined>;
|
|
450
|
+
readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
451
|
+
readonly outcomes: v.ArraySchema<v.ObjectSchema<{
|
|
452
|
+
readonly name: v.StringSchema<undefined>;
|
|
453
|
+
readonly status: v.PicklistSchema<["passed", "failed", "skipped"], undefined>;
|
|
454
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
455
|
+
}, undefined>, undefined>;
|
|
456
|
+
readonly concerns: v.ArraySchema<v.ObjectSchema<{
|
|
457
|
+
readonly title: v.StringSchema<undefined>;
|
|
458
|
+
readonly detail: v.StringSchema<undefined>;
|
|
459
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
460
|
+
}, undefined>, undefined>;
|
|
461
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
462
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
463
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
464
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
465
|
+
}, undefined>, undefined>, undefined>;
|
|
466
|
+
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
467
|
+
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
468
|
+
readonly view: v.StringSchema<undefined>;
|
|
469
|
+
readonly artifactId: v.StringSchema<undefined>;
|
|
470
|
+
readonly hash: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
471
|
+
readonly width: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
472
|
+
readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
473
|
+
readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
474
|
+
}, undefined>, undefined>, undefined>;
|
|
475
|
+
readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
476
|
+
readonly reason: v.StringSchema<undefined>;
|
|
477
|
+
}, undefined>, undefined>, undefined>;
|
|
478
|
+
}, undefined>, v.TransformAction<{
|
|
479
|
+
greenlight: boolean;
|
|
480
|
+
summary: string;
|
|
481
|
+
tested: string[];
|
|
482
|
+
outcomes: {
|
|
483
|
+
name: string;
|
|
484
|
+
status: "failed" | "passed" | "skipped";
|
|
485
|
+
detail?: string | undefined;
|
|
486
|
+
}[];
|
|
487
|
+
concerns: {
|
|
488
|
+
title: string;
|
|
489
|
+
detail: string;
|
|
490
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
491
|
+
}[];
|
|
492
|
+
requirementVerdicts?: {
|
|
493
|
+
requirementId: string;
|
|
494
|
+
status: "met" | "not_covered" | "not_met";
|
|
495
|
+
detail?: string | undefined;
|
|
496
|
+
}[] | undefined;
|
|
497
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
498
|
+
screenshots?: {
|
|
499
|
+
view: string;
|
|
500
|
+
artifactId: string;
|
|
501
|
+
hash?: string | undefined;
|
|
502
|
+
width?: number | undefined;
|
|
503
|
+
height?: number | undefined;
|
|
504
|
+
referenceArtifactId?: string | undefined;
|
|
505
|
+
}[] | undefined;
|
|
506
|
+
abort?: {
|
|
507
|
+
reason: string;
|
|
508
|
+
} | null | undefined;
|
|
509
|
+
}, {
|
|
510
|
+
greenlight: boolean;
|
|
511
|
+
summary: string;
|
|
512
|
+
tested: string[];
|
|
513
|
+
outcomes: {
|
|
514
|
+
name: string;
|
|
515
|
+
status: "failed" | "passed" | "skipped";
|
|
516
|
+
detail?: string | undefined;
|
|
517
|
+
}[];
|
|
518
|
+
concerns: {
|
|
519
|
+
title: string;
|
|
520
|
+
detail: string;
|
|
521
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
522
|
+
}[];
|
|
523
|
+
requirementVerdicts?: {
|
|
524
|
+
requirementId: string;
|
|
525
|
+
status: "met" | "not_covered" | "not_met";
|
|
526
|
+
detail?: string | undefined;
|
|
527
|
+
}[] | undefined;
|
|
528
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
529
|
+
screenshots?: {
|
|
530
|
+
view: string;
|
|
531
|
+
artifactId: string;
|
|
532
|
+
hash?: string | undefined;
|
|
533
|
+
width?: number | undefined;
|
|
534
|
+
height?: number | undefined;
|
|
535
|
+
referenceArtifactId?: string | undefined;
|
|
536
|
+
}[] | undefined;
|
|
537
|
+
abort?: {
|
|
538
|
+
reason: string;
|
|
539
|
+
} | null | undefined;
|
|
540
|
+
}>]>, undefined>, undefined>;
|
|
541
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
542
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
543
|
+
readonly at: v.NumberSchema<undefined>;
|
|
544
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
545
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
546
|
+
readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
547
|
+
readonly title: v.StringSchema<undefined>;
|
|
548
|
+
readonly detail: v.StringSchema<undefined>;
|
|
549
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
550
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
551
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
552
|
+
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
553
|
+
readonly started: v.BooleanSchema<undefined>;
|
|
554
|
+
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
555
|
+
readonly at: v.NumberSchema<undefined>;
|
|
556
|
+
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
557
|
+
readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
558
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
559
|
+
}, undefined>, undefined>, undefined>;
|
|
560
|
+
}, undefined>, undefined>, undefined>;
|
|
561
|
+
readonly testerQuality: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
562
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
563
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
564
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
565
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
566
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
567
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
568
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
569
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
570
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
571
|
+
}, undefined>, undefined>, undefined>;
|
|
572
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
573
|
+
readonly adequate: v.BooleanSchema<undefined>;
|
|
574
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
575
|
+
readonly gaps: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
576
|
+
readonly at: v.NumberSchema<undefined>;
|
|
577
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
578
|
+
}, undefined>, undefined>;
|
|
579
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
580
|
+
}, undefined>, undefined>, undefined>;
|
|
581
|
+
readonly humanTest: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
582
|
+
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
583
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
584
|
+
readonly id: v.StringSchema<undefined>;
|
|
585
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
586
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
587
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
588
|
+
}, undefined>, undefined>, undefined>;
|
|
589
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
590
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
591
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
592
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
593
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
594
|
+
readonly kind: v.PicklistSchema<["fix", "pull-main"], undefined>;
|
|
595
|
+
readonly findings: v.StringSchema<undefined>;
|
|
596
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
597
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
598
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
599
|
+
readonly at: v.NumberSchema<undefined>;
|
|
600
|
+
}, undefined>, undefined>, undefined>;
|
|
601
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
602
|
+
readonly type: v.PicklistSchema<["confirm", "request-fix", "pull-main", "recreate"], undefined>;
|
|
603
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
604
|
+
}, undefined>, undefined>, undefined>;
|
|
605
|
+
}, undefined>, undefined>, undefined>;
|
|
606
|
+
readonly visualConfirm: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
607
|
+
readonly phase: v.PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
608
|
+
readonly pairs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
609
|
+
readonly view: v.StringSchema<undefined>;
|
|
610
|
+
readonly actualArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
611
|
+
readonly referenceArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
612
|
+
}, undefined>, undefined>, undefined>;
|
|
613
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
614
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
615
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
616
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
617
|
+
readonly findings: v.StringSchema<undefined>;
|
|
618
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
619
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
620
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
621
|
+
readonly at: v.NumberSchema<undefined>;
|
|
622
|
+
}, undefined>, undefined>, undefined>;
|
|
623
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
624
|
+
readonly type: v.PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
625
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
626
|
+
}, undefined>, undefined>, undefined>;
|
|
627
|
+
}, undefined>, undefined>, undefined>;
|
|
628
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
629
|
+
readonly id: v.StringSchema<undefined>;
|
|
630
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
631
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
632
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
633
|
+
readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
634
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
635
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
636
|
+
}, undefined>, undefined>, undefined>;
|
|
637
|
+
readonly subtasks: v.OptionalSchema<v.ObjectSchema<{
|
|
638
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
639
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
640
|
+
readonly total: v.NumberSchema<undefined>;
|
|
641
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
642
|
+
readonly label: v.StringSchema<undefined>;
|
|
643
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
644
|
+
}, undefined>, undefined>, undefined>;
|
|
645
|
+
}, undefined>, undefined>;
|
|
646
|
+
readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
647
|
+
readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
|
|
648
|
+
readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
649
|
+
readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
650
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
651
|
+
}, undefined>, undefined>, undefined>;
|
|
652
|
+
readonly search: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
653
|
+
readonly available: v.BooleanSchema<undefined>;
|
|
654
|
+
readonly provider: v.NullableSchema<v.PicklistSchema<["brave", "searxng"], undefined>, undefined>;
|
|
655
|
+
}, undefined>, undefined>, undefined>;
|
|
656
|
+
readonly decision: v.NullableSchema<v.ObjectSchema<{
|
|
657
|
+
readonly id: v.StringSchema<undefined>;
|
|
658
|
+
readonly question: v.StringSchema<undefined>;
|
|
659
|
+
readonly options: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
660
|
+
readonly chosen: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
661
|
+
}, undefined>, undefined>;
|
|
662
|
+
readonly requiresApproval: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
663
|
+
readonly approval: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
664
|
+
readonly id: v.StringSchema<undefined>;
|
|
665
|
+
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
666
|
+
readonly proposal: v.StringSchema<undefined>;
|
|
667
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
668
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
669
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
670
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
671
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
672
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
673
|
+
readonly body: v.StringSchema<undefined>;
|
|
674
|
+
}, undefined>, undefined>, undefined>;
|
|
675
|
+
}, undefined>, undefined>, undefined>;
|
|
676
|
+
readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
677
|
+
readonly threshold: v.NumberSchema<undefined>;
|
|
678
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
679
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
680
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
681
|
+
readonly rating: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
682
|
+
readonly threshold: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
683
|
+
readonly passed: v.BooleanSchema<undefined>;
|
|
684
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
685
|
+
}, undefined>, undefined>;
|
|
686
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
687
|
+
}, undefined>, undefined>, undefined>;
|
|
688
|
+
readonly followUps: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
689
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
690
|
+
readonly items: v.ArraySchema<v.ObjectSchema<{
|
|
691
|
+
readonly id: v.StringSchema<undefined>;
|
|
692
|
+
readonly kind: v.PicklistSchema<["follow_up", "question"], undefined>;
|
|
693
|
+
readonly title: v.StringSchema<undefined>;
|
|
694
|
+
readonly detail: v.StringSchema<undefined>;
|
|
695
|
+
readonly suggestedAction: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
696
|
+
readonly status: v.PicklistSchema<["pending", "filed", "queued", "answered", "dismissed"], undefined>;
|
|
697
|
+
readonly answer: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
698
|
+
readonly sentToCoder: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
699
|
+
readonly ticketExternalId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
700
|
+
readonly ticketUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
701
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
702
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
703
|
+
}, undefined>, undefined>;
|
|
704
|
+
readonly loops: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
705
|
+
readonly maxLoops: v.OptionalSchema<v.NumberSchema<undefined>, 3>;
|
|
706
|
+
}, undefined>, undefined>, undefined>;
|
|
707
|
+
readonly forkDecision: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
708
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
709
|
+
readonly seamSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
710
|
+
readonly forks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
711
|
+
readonly id: v.StringSchema<undefined>;
|
|
712
|
+
readonly title: v.StringSchema<undefined>;
|
|
713
|
+
readonly summary: v.StringSchema<undefined>;
|
|
714
|
+
readonly approach: v.StringSchema<undefined>;
|
|
715
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
716
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
717
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
718
|
+
}, undefined>, undefined>, readonly []>;
|
|
719
|
+
readonly singlePathReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
720
|
+
readonly chat: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
721
|
+
readonly id: v.StringSchema<undefined>;
|
|
722
|
+
readonly role: v.PicklistSchema<["human", "assistant"], undefined>;
|
|
723
|
+
readonly text: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>;
|
|
724
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
725
|
+
}, undefined>, undefined>, readonly []>;
|
|
726
|
+
readonly maxChatTurns: v.OptionalSchema<v.NumberSchema<undefined>, 15>;
|
|
727
|
+
readonly chosen: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
728
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
729
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
730
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
731
|
+
readonly at: v.NumberSchema<undefined>;
|
|
732
|
+
}, undefined>, v.CheckAction<{
|
|
733
|
+
forkId?: string | null | undefined;
|
|
734
|
+
custom?: string | null | undefined;
|
|
735
|
+
note?: string | null | undefined;
|
|
736
|
+
at: number;
|
|
737
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
738
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
739
|
+
}, undefined>, undefined>, undefined>;
|
|
740
|
+
readonly judge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
741
|
+
readonly status: v.PicklistSchema<["evaluating", "awaiting_decision", "bouncing", "passed", "failed", "skipped"], undefined>;
|
|
742
|
+
readonly rubricId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
743
|
+
readonly rubricName: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
744
|
+
readonly rubricOverridden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
745
|
+
readonly verdict: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
746
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
747
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
748
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
749
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
750
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
751
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
752
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
753
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
754
|
+
}, undefined>, undefined>, undefined>;
|
|
755
|
+
readonly threshold: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
756
|
+
readonly disposition: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>, undefined>, undefined>;
|
|
757
|
+
readonly bounces: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
758
|
+
readonly maxBounces: v.OptionalSchema<v.NumberSchema<undefined>, 1>;
|
|
759
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
760
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
761
|
+
readonly round: v.NumberSchema<undefined>;
|
|
762
|
+
readonly at: v.NumberSchema<undefined>;
|
|
763
|
+
readonly verdict: v.ObjectSchema<{
|
|
764
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
765
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
766
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
767
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
768
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
769
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
770
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
771
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
772
|
+
}, undefined>;
|
|
773
|
+
readonly disposition: v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>;
|
|
774
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
775
|
+
}, undefined>, undefined>, readonly []>;
|
|
776
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
777
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
778
|
+
readonly choice: v.PicklistSchema<["proceed", "bounce", "stop"], undefined>;
|
|
779
|
+
readonly feedback: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
780
|
+
readonly at: v.NumberSchema<undefined>;
|
|
781
|
+
}, undefined>, undefined>, undefined>;
|
|
782
|
+
}, undefined>, undefined>, undefined>;
|
|
783
|
+
readonly ralph: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
784
|
+
readonly phase: v.PicklistSchema<["iterating"], undefined>;
|
|
785
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
786
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
787
|
+
readonly validationCommand: v.StringSchema<undefined>;
|
|
788
|
+
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
789
|
+
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
790
|
+
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
791
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
792
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
793
|
+
readonly at: v.NumberSchema<undefined>;
|
|
794
|
+
readonly validationPassed: v.BooleanSchema<undefined>;
|
|
795
|
+
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
796
|
+
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
797
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
798
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
799
|
+
}, undefined>, undefined>, undefined>;
|
|
800
|
+
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
801
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
802
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
803
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
804
|
+
readonly outcomes: v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
805
|
+
readonly label: v.SchemaWithFallback<v.StringSchema<undefined>, "check">;
|
|
806
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
807
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
808
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
809
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
810
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
811
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
812
|
+
}, undefined>, undefined>, readonly []>;
|
|
813
|
+
readonly at: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
814
|
+
}, undefined>, undefined>, undefined>;
|
|
815
|
+
readonly reproduction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
816
|
+
readonly status: v.SchemaWithFallback<v.PicklistSchema<["reproduced", "inconclusive", "declared_infeasible"], undefined>, "inconclusive">;
|
|
817
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
818
|
+
readonly testPaths: v.SchemaWithFallback<v.ArraySchema<v.SchemaWithFallback<v.StringSchema<undefined>, "">, undefined>, readonly []>;
|
|
819
|
+
readonly omittedTestPaths: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
820
|
+
readonly base: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
821
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
822
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
823
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
824
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
825
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
826
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
827
|
+
}, undefined>, undefined>, undefined>;
|
|
828
|
+
readonly final: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
829
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
830
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
831
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
832
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
833
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
834
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
835
|
+
}, undefined>, undefined>, undefined>;
|
|
836
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
837
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
838
|
+
readonly reason: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
839
|
+
readonly alternativeVerification: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
840
|
+
readonly note: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
841
|
+
readonly at: v.SchemaWithFallback<v.NumberSchema<undefined>, 0>;
|
|
842
|
+
}, undefined>, undefined>, undefined>;
|
|
843
|
+
readonly pendingForkChat: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
844
|
+
readonly messageId: v.StringSchema<undefined>;
|
|
845
|
+
}, undefined>, undefined>, undefined>;
|
|
846
|
+
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
847
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
848
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
849
|
+
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
850
|
+
readonly id: v.StringSchema<undefined>;
|
|
851
|
+
readonly title: v.StringSchema<undefined>;
|
|
852
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
853
|
+
readonly paths: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
854
|
+
}, undefined>, undefined>, readonly []>;
|
|
855
|
+
readonly findings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
856
|
+
readonly id: v.StringSchema<undefined>;
|
|
857
|
+
readonly sliceId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
858
|
+
readonly path: v.StringSchema<undefined>;
|
|
859
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
860
|
+
readonly side: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "RIGHT"], undefined>, undefined>, undefined>;
|
|
861
|
+
readonly severity: v.PicklistSchema<["blocker", "high", "medium", "low", "nit"], undefined>;
|
|
862
|
+
readonly category: v.PicklistSchema<["correctness", "security", "performance", "maintainability", "style", "test", "other"], undefined>;
|
|
863
|
+
readonly title: v.StringSchema<undefined>;
|
|
864
|
+
readonly detail: v.StringSchema<undefined>;
|
|
865
|
+
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
866
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
867
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
868
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
869
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
870
|
+
}, undefined>, undefined>, undefined>;
|
|
871
|
+
}, undefined>, undefined>, readonly []>;
|
|
872
|
+
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
873
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
874
|
+
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
875
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
876
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
877
|
+
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
878
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
879
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
880
|
+
readonly folded: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
881
|
+
readonly bodyPosted: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
882
|
+
readonly bodyError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
883
|
+
readonly failures: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
884
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
885
|
+
readonly path: v.StringSchema<undefined>;
|
|
886
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
887
|
+
readonly reason: v.StringSchema<undefined>;
|
|
888
|
+
}, undefined>, undefined>, readonly []>;
|
|
889
|
+
}, undefined>, undefined>, undefined>;
|
|
890
|
+
readonly postedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
891
|
+
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
892
|
+
}, undefined>, undefined>, undefined>;
|
|
893
|
+
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
894
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
895
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
896
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
897
|
+
}, undefined>, undefined>, undefined>;
|
|
898
|
+
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
899
|
+
readonly previousProposal: v.StringSchema<undefined>;
|
|
900
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
901
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
902
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
903
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
904
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
905
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
906
|
+
readonly body: v.StringSchema<undefined>;
|
|
907
|
+
}, undefined>, undefined>, undefined>;
|
|
908
|
+
}, undefined>, undefined>, undefined>;
|
|
909
|
+
readonly pendingIncorporation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
910
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
911
|
+
}, undefined>, undefined>, undefined>;
|
|
912
|
+
readonly pendingRecommendation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
913
|
+
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
914
|
+
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
915
|
+
}, undefined>, undefined>, undefined>;
|
|
916
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
917
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
918
|
+
}, undefined>, undefined>, undefined>;
|
|
919
|
+
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
920
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
921
|
+
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
922
|
+
readonly participants: v.ArraySchema<v.ObjectSchema<{
|
|
923
|
+
readonly id: v.StringSchema<undefined>;
|
|
924
|
+
readonly role: v.StringSchema<undefined>;
|
|
925
|
+
readonly systemFraming: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
926
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
927
|
+
}, undefined>, undefined>;
|
|
928
|
+
readonly synthesizerModelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
929
|
+
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>;
|
|
930
|
+
readonly gating: v.OptionalSchema<v.ObjectSchema<{
|
|
931
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
932
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
933
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
934
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
935
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["consensus", "standard"], undefined>, "consensus">;
|
|
936
|
+
}, undefined>, undefined>;
|
|
937
|
+
}, undefined>, undefined>, undefined>;
|
|
938
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
939
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
940
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
941
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
942
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
943
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
944
|
+
}, undefined>, undefined>, undefined>;
|
|
945
|
+
readonly stepOptions: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
946
|
+
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
947
|
+
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
948
|
+
}, undefined>, undefined>, undefined>;
|
|
949
|
+
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
950
|
+
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
951
|
+
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
952
|
+
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
953
|
+
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
954
|
+
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
955
|
+
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
956
|
+
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
957
|
+
readonly selectedFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
958
|
+
readonly fragmentAdherence: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
959
|
+
readonly fragmentId: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
960
|
+
readonly title: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
961
|
+
readonly rating: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
962
|
+
readonly assessment: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
963
|
+
readonly relatedFindings: v.SchemaWithFallback<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
964
|
+
}, undefined>, undefined>, undefined>;
|
|
965
|
+
readonly effortReport: v.OptionalSchema<v.ObjectSchema<{
|
|
966
|
+
readonly difficulty: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
967
|
+
readonly summary: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
968
|
+
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
969
|
+
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
970
|
+
}, undefined>, undefined>;
|
|
971
|
+
readonly skillVersion: v.OptionalSchema<v.ObjectSchema<{
|
|
972
|
+
readonly skillId: v.StringSchema<undefined>;
|
|
973
|
+
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
974
|
+
readonly sha: v.StringSchema<undefined>;
|
|
975
|
+
}, undefined>, undefined>;
|
|
976
|
+
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
977
|
+
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
978
|
+
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
979
|
+
readonly lastActivityAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
980
|
+
readonly pausedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
981
|
+
readonly evictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
982
|
+
readonly transientEvictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
983
|
+
readonly firstEvictionDetail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
984
|
+
readonly deployProvisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
985
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>;
|
|
986
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
987
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
988
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
989
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
990
|
+
}, undefined>, v.ObjectSchema<{
|
|
991
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
992
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
993
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
994
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
995
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
996
|
+
}, undefined>], undefined>, undefined>;
|
|
997
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
998
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
999
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1000
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
1001
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
1002
|
+
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>;
|
|
1003
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1004
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1005
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1006
|
+
}, undefined>, undefined>, undefined>;
|
|
1007
|
+
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>;
|
|
1008
|
+
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>;
|
|
1009
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1010
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
1011
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
1012
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
1013
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1014
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1015
|
+
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>;
|
|
1016
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1017
|
+
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>;
|
|
1018
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1019
|
+
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>;
|
|
1020
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1021
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1022
|
+
}, undefined>, undefined>;
|
|
1023
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1024
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1025
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1026
|
+
}, undefined>, undefined>, undefined>;
|
|
1027
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1028
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1029
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1030
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1031
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1032
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1033
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1034
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1035
|
+
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>;
|
|
1036
|
+
}, undefined>, v.ObjectSchema<{
|
|
1037
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
1038
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1039
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1040
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1041
|
+
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>;
|
|
1042
|
+
}, undefined>, v.ObjectSchema<{
|
|
1043
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
1044
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1045
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1046
|
+
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>;
|
|
1047
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1048
|
+
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>;
|
|
1049
|
+
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>;
|
|
1050
|
+
}, undefined>, v.ObjectSchema<{
|
|
1051
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
1052
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1053
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1054
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1055
|
+
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>;
|
|
1056
|
+
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>;
|
|
1057
|
+
}, undefined>, v.ObjectSchema<{
|
|
1058
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
1059
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1060
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1061
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1062
|
+
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>;
|
|
1063
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1064
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1065
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
1066
|
+
}, undefined>, v.ObjectSchema<{
|
|
1067
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
1068
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1069
|
+
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>;
|
|
1070
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1071
|
+
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>;
|
|
1072
|
+
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>;
|
|
1073
|
+
}, undefined>, v.ObjectSchema<{
|
|
1074
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1075
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1076
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1077
|
+
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>;
|
|
1078
|
+
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>;
|
|
1079
|
+
}, undefined>], undefined>, undefined>;
|
|
1080
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1081
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1082
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1083
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1084
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1085
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1086
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1087
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1088
|
+
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>;
|
|
1089
|
+
}, undefined>, v.ObjectSchema<{
|
|
1090
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
1091
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1092
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1093
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1094
|
+
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>;
|
|
1095
|
+
}, undefined>, v.ObjectSchema<{
|
|
1096
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
1097
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1098
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1099
|
+
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>;
|
|
1100
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1101
|
+
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>;
|
|
1102
|
+
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>;
|
|
1103
|
+
}, undefined>, v.ObjectSchema<{
|
|
1104
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
1105
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1106
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1107
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1108
|
+
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>;
|
|
1109
|
+
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>;
|
|
1110
|
+
}, undefined>, v.ObjectSchema<{
|
|
1111
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
1112
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1113
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1114
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1115
|
+
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>;
|
|
1116
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1117
|
+
}, undefined>, undefined>;
|
|
1118
|
+
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>;
|
|
1119
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1120
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1121
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1122
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1123
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1124
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1125
|
+
}, undefined>, v.CheckAction<{
|
|
1126
|
+
name: string;
|
|
1127
|
+
newNameTemplate?: string | undefined;
|
|
1128
|
+
newTagTemplate?: string | undefined;
|
|
1129
|
+
digestTemplate?: string | undefined;
|
|
1130
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
1131
|
+
name: string;
|
|
1132
|
+
newNameTemplate?: string | undefined;
|
|
1133
|
+
newTagTemplate?: string | undefined;
|
|
1134
|
+
digestTemplate?: string | undefined;
|
|
1135
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
1136
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1137
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1138
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1139
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1140
|
+
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.">]>;
|
|
1141
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1142
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
1143
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1144
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1145
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1146
|
+
}, undefined>, undefined>, undefined>;
|
|
1147
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1148
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1149
|
+
readonly secretRef: v.ObjectSchema<{
|
|
1150
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1151
|
+
}, undefined>;
|
|
1152
|
+
}, undefined>, undefined>, undefined>;
|
|
1153
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
1154
|
+
}, undefined>, undefined>, undefined>;
|
|
1155
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
1156
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
1157
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1158
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1159
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1160
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
1161
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
1162
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1163
|
+
}, undefined>, undefined>;
|
|
1164
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1165
|
+
}, undefined>, v.CheckAction<{
|
|
1166
|
+
key: string;
|
|
1167
|
+
secretRef?: {
|
|
1168
|
+
key: string;
|
|
1169
|
+
} | undefined;
|
|
1170
|
+
valueTemplate?: string | undefined;
|
|
1171
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1172
|
+
}, undefined>, v.ObjectSchema<{
|
|
1173
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
1174
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1175
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1176
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
1177
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
1178
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1179
|
+
}, undefined>, undefined>;
|
|
1180
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1181
|
+
}, undefined>, v.CheckAction<{
|
|
1182
|
+
key: string;
|
|
1183
|
+
secretRef?: {
|
|
1184
|
+
key: string;
|
|
1185
|
+
} | undefined;
|
|
1186
|
+
valueTemplate?: string | undefined;
|
|
1187
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1188
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1189
|
+
}, undefined>, undefined>;
|
|
1190
|
+
readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
1191
|
+
readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
|
|
1192
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1193
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1194
|
+
}, undefined>, undefined>, undefined>;
|
|
1195
|
+
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1196
|
+
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1197
|
+
}, undefined>, undefined>;
|
|
1198
|
+
readonly currentStep: v.NumberSchema<undefined>;
|
|
1199
|
+
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1200
|
+
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1201
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1202
|
+
readonly message: v.StringSchema<undefined>;
|
|
1203
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1204
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1205
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1206
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1207
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1208
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1209
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1210
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1211
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1212
|
+
readonly label: v.StringSchema<undefined>;
|
|
1213
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1214
|
+
}, undefined>, undefined>, undefined>;
|
|
1215
|
+
}, undefined>, undefined>;
|
|
1216
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1217
|
+
}, undefined>, undefined>, undefined>;
|
|
1218
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1219
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1220
|
+
readonly message: v.StringSchema<undefined>;
|
|
1221
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1222
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1223
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1224
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1225
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1226
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1227
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1228
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1229
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1230
|
+
readonly label: v.StringSchema<undefined>;
|
|
1231
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1232
|
+
}, undefined>, undefined>, undefined>;
|
|
1233
|
+
}, undefined>, undefined>;
|
|
1234
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1235
|
+
}, undefined>, undefined>, undefined>;
|
|
1236
|
+
readonly outputHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1237
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1238
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1239
|
+
readonly output: v.StringSchema<undefined>;
|
|
1240
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1241
|
+
}, undefined>, undefined>, undefined>;
|
|
1242
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1243
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1244
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1245
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1246
|
+
}, undefined>, undefined>, undefined>;
|
|
1247
|
+
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1248
|
+
readonly intakeOrigin: v.OptionalSchema<v.PicklistSchema<["ui", "public-api"], undefined>, undefined>;
|
|
1249
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1250
|
+
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1251
|
+
readonly diagnostics: v.OptionalSchema<v.ObjectSchema<{
|
|
1252
|
+
readonly lastDispatch: v.OptionalSchema<v.ObjectSchema<{
|
|
1253
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1254
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
1255
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1256
|
+
readonly executionBackend: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1257
|
+
readonly repo: v.OptionalSchema<v.ObjectSchema<{
|
|
1258
|
+
readonly owner: v.StringSchema<undefined>;
|
|
1259
|
+
readonly name: v.StringSchema<undefined>;
|
|
1260
|
+
readonly baseBranch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1261
|
+
readonly provider: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1262
|
+
}, undefined>, undefined>;
|
|
1263
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1264
|
+
}, undefined>, undefined>;
|
|
1265
|
+
readonly host: v.OptionalSchema<v.ObjectSchema<{
|
|
1266
|
+
readonly platform: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1267
|
+
}, undefined>, undefined>;
|
|
1268
|
+
}, undefined>, undefined>;
|
|
1269
|
+
}, undefined>;
|
|
1270
|
+
}, undefined>;
|
|
1271
|
+
export type AdoptBugHuntResult = v.InferOutput<typeof adoptBugHuntResultSchema>;
|
|
1272
|
+
export declare const listTrackerBoardsContract: {
|
|
1273
|
+
readonly method: "get";
|
|
1274
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1275
|
+
source: v.StringSchema<undefined>;
|
|
1276
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1277
|
+
readonly pathResolver: ({ source }: {
|
|
1278
|
+
source: string;
|
|
1279
|
+
}) => string;
|
|
1280
|
+
readonly responsesByStatusCode: {
|
|
1281
|
+
readonly '4xx': v.ObjectSchema<{
|
|
1282
|
+
readonly error: v.ObjectSchema<{
|
|
1283
|
+
readonly code: v.StringSchema<undefined>;
|
|
1284
|
+
readonly message: v.StringSchema<undefined>;
|
|
1285
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1286
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1287
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1288
|
+
readonly message: v.StringSchema<undefined>;
|
|
1289
|
+
}, undefined>, undefined>, undefined>;
|
|
1290
|
+
}, undefined>;
|
|
1291
|
+
}, undefined>;
|
|
1292
|
+
readonly '5xx': v.ObjectSchema<{
|
|
1293
|
+
readonly error: v.ObjectSchema<{
|
|
1294
|
+
readonly code: v.StringSchema<undefined>;
|
|
1295
|
+
readonly message: v.StringSchema<undefined>;
|
|
1296
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1297
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1298
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1299
|
+
readonly message: v.StringSchema<undefined>;
|
|
1300
|
+
}, undefined>, undefined>, undefined>;
|
|
1301
|
+
}, undefined>;
|
|
1302
|
+
}, undefined>;
|
|
1303
|
+
readonly 200: v.ObjectSchema<{
|
|
1304
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
1305
|
+
readonly boards: v.ArraySchema<v.ObjectSchema<{
|
|
1306
|
+
readonly id: v.StringSchema<undefined>;
|
|
1307
|
+
readonly name: v.StringSchema<undefined>;
|
|
1308
|
+
readonly key: v.StringSchema<undefined>;
|
|
1309
|
+
}, undefined>, undefined>;
|
|
1310
|
+
}, undefined>;
|
|
1311
|
+
};
|
|
1312
|
+
};
|
|
1313
|
+
export declare const runBugHuntContract: {
|
|
1314
|
+
readonly method: "post";
|
|
1315
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1316
|
+
source: v.StringSchema<undefined>;
|
|
1317
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1318
|
+
readonly pathResolver: ({ source }: {
|
|
1319
|
+
source: string;
|
|
1320
|
+
}) => string;
|
|
1321
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
1322
|
+
readonly board: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1323
|
+
readonly issueType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 60, undefined>]>, undefined>;
|
|
1324
|
+
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 60, undefined>]>, undefined>, undefined>;
|
|
1325
|
+
readonly titleFragment: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
1326
|
+
}, undefined>;
|
|
1327
|
+
readonly responsesByStatusCode: {
|
|
1328
|
+
readonly '4xx': v.ObjectSchema<{
|
|
1329
|
+
readonly error: v.ObjectSchema<{
|
|
1330
|
+
readonly code: v.StringSchema<undefined>;
|
|
1331
|
+
readonly message: v.StringSchema<undefined>;
|
|
1332
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1333
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1334
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1335
|
+
readonly message: v.StringSchema<undefined>;
|
|
1336
|
+
}, undefined>, undefined>, undefined>;
|
|
1337
|
+
}, undefined>;
|
|
1338
|
+
}, undefined>;
|
|
1339
|
+
readonly '5xx': v.ObjectSchema<{
|
|
1340
|
+
readonly error: v.ObjectSchema<{
|
|
1341
|
+
readonly code: v.StringSchema<undefined>;
|
|
1342
|
+
readonly message: v.StringSchema<undefined>;
|
|
1343
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1344
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1345
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1346
|
+
readonly message: v.StringSchema<undefined>;
|
|
1347
|
+
}, undefined>, undefined>, undefined>;
|
|
1348
|
+
}, undefined>;
|
|
1349
|
+
}, undefined>;
|
|
1350
|
+
readonly 200: v.ObjectSchema<{
|
|
1351
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
1352
|
+
readonly board: v.StringSchema<undefined>;
|
|
1353
|
+
readonly analysisStatus: v.PicklistSchema<["ranked", "unavailable", "failed", "over_budget", "empty"], undefined>;
|
|
1354
|
+
readonly model: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1355
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
1356
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
1357
|
+
readonly externalId: v.StringSchema<undefined>;
|
|
1358
|
+
readonly title: v.StringSchema<undefined>;
|
|
1359
|
+
readonly url: v.StringSchema<undefined>;
|
|
1360
|
+
readonly status: v.StringSchema<undefined>;
|
|
1361
|
+
readonly type: v.StringSchema<undefined>;
|
|
1362
|
+
readonly priority: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1363
|
+
readonly labels: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1364
|
+
readonly description: v.StringSchema<undefined>;
|
|
1365
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
1366
|
+
readonly commentCount: v.NumberSchema<undefined>;
|
|
1367
|
+
readonly analysis: v.NullableSchema<v.ObjectSchema<{
|
|
1368
|
+
readonly impact: v.NumberSchema<undefined>;
|
|
1369
|
+
readonly complexity: v.NumberSchema<undefined>;
|
|
1370
|
+
readonly score: v.NumberSchema<undefined>;
|
|
1371
|
+
readonly confidence: v.PicklistSchema<["high", "medium", "low"], undefined>;
|
|
1372
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
1373
|
+
readonly recommended: v.BooleanSchema<undefined>;
|
|
1374
|
+
}, undefined>, undefined>;
|
|
1375
|
+
}, undefined>, undefined>;
|
|
1376
|
+
readonly scanned: v.NumberSchema<undefined>;
|
|
1377
|
+
readonly truncated: v.BooleanSchema<undefined>;
|
|
1378
|
+
}, undefined>;
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
export declare const adoptBugHuntCandidateContract: {
|
|
1382
|
+
readonly method: "post";
|
|
1383
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1384
|
+
source: v.StringSchema<undefined>;
|
|
1385
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1386
|
+
readonly pathResolver: ({ source }: {
|
|
1387
|
+
source: string;
|
|
1388
|
+
}) => string;
|
|
1389
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
1390
|
+
readonly externalId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1391
|
+
readonly containerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
1392
|
+
readonly pipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
1393
|
+
}, undefined>;
|
|
1394
|
+
readonly responsesByStatusCode: {
|
|
1395
|
+
readonly '4xx': v.ObjectSchema<{
|
|
1396
|
+
readonly error: v.ObjectSchema<{
|
|
1397
|
+
readonly code: v.StringSchema<undefined>;
|
|
1398
|
+
readonly message: v.StringSchema<undefined>;
|
|
1399
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1400
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1401
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1402
|
+
readonly message: v.StringSchema<undefined>;
|
|
1403
|
+
}, undefined>, undefined>, undefined>;
|
|
1404
|
+
}, undefined>;
|
|
1405
|
+
}, undefined>;
|
|
1406
|
+
readonly '5xx': v.ObjectSchema<{
|
|
1407
|
+
readonly error: v.ObjectSchema<{
|
|
1408
|
+
readonly code: v.StringSchema<undefined>;
|
|
1409
|
+
readonly message: v.StringSchema<undefined>;
|
|
1410
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1411
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1412
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1413
|
+
readonly message: v.StringSchema<undefined>;
|
|
1414
|
+
}, undefined>, undefined>, undefined>;
|
|
1415
|
+
}, undefined>;
|
|
1416
|
+
}, undefined>;
|
|
1417
|
+
readonly 201: v.ObjectSchema<{
|
|
1418
|
+
readonly block: v.ObjectSchema<{
|
|
1419
|
+
readonly id: v.StringSchema<undefined>;
|
|
1420
|
+
readonly title: v.StringSchema<undefined>;
|
|
1421
|
+
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
1422
|
+
readonly description: v.StringSchema<undefined>;
|
|
1423
|
+
readonly position: v.ObjectSchema<{
|
|
1424
|
+
readonly x: v.NumberSchema<undefined>;
|
|
1425
|
+
readonly y: v.NumberSchema<undefined>;
|
|
1426
|
+
}, undefined>;
|
|
1427
|
+
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
1428
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1429
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1430
|
+
}, undefined>, undefined>;
|
|
1431
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
1432
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
1433
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1434
|
+
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1435
|
+
readonly level: v.PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
1436
|
+
readonly parentId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1437
|
+
readonly epicId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1438
|
+
readonly initiativeId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1439
|
+
readonly autoStartDependents: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1440
|
+
readonly confidence: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1441
|
+
readonly estimate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1442
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1443
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1444
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1445
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
1446
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1447
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
1448
|
+
}, undefined>, undefined>, undefined>;
|
|
1449
|
+
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1450
|
+
readonly taskType: v.OptionalSchema<v.UnionSchema<[v.PicklistSchema<readonly ["feature", "bug", "document", "spike", "review", "ralph", "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>;
|
|
1451
|
+
readonly taskTypeFields: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1452
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
1453
|
+
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1454
|
+
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
1455
|
+
readonly successCriteria: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1456
|
+
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
1457
|
+
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1458
|
+
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
1459
|
+
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1460
|
+
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1461
|
+
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1462
|
+
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1463
|
+
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1464
|
+
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1465
|
+
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1466
|
+
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1467
|
+
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1468
|
+
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1469
|
+
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1470
|
+
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1471
|
+
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1472
|
+
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1473
|
+
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1474
|
+
readonly custom: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
1475
|
+
}, undefined>, undefined>, undefined>;
|
|
1476
|
+
readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1477
|
+
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1478
|
+
readonly serviceFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1479
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1480
|
+
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
1481
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
1482
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>;
|
|
1483
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1484
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
1485
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1486
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1487
|
+
}, undefined>, v.ObjectSchema<{
|
|
1488
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
1489
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1490
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1491
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1492
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1493
|
+
}, undefined>], undefined>, undefined>;
|
|
1494
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1495
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1496
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1497
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
1498
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
1499
|
+
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>;
|
|
1500
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1501
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1502
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1503
|
+
}, undefined>, undefined>, undefined>;
|
|
1504
|
+
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>;
|
|
1505
|
+
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>;
|
|
1506
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1507
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
1508
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
1509
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
1510
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1511
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1512
|
+
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>;
|
|
1513
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1514
|
+
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>;
|
|
1515
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1516
|
+
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>;
|
|
1517
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1518
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1519
|
+
}, undefined>, undefined>;
|
|
1520
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1521
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1522
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1523
|
+
}, undefined>, undefined>, undefined>;
|
|
1524
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1525
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1526
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1527
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1528
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1529
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1530
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1531
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1532
|
+
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>;
|
|
1533
|
+
}, undefined>, v.ObjectSchema<{
|
|
1534
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
1535
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1536
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1537
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1538
|
+
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>;
|
|
1539
|
+
}, undefined>, v.ObjectSchema<{
|
|
1540
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
1541
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1542
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1543
|
+
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>;
|
|
1544
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1545
|
+
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>;
|
|
1546
|
+
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>;
|
|
1547
|
+
}, undefined>, v.ObjectSchema<{
|
|
1548
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
1549
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1550
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1551
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1552
|
+
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>;
|
|
1553
|
+
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>;
|
|
1554
|
+
}, undefined>, v.ObjectSchema<{
|
|
1555
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
1556
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1557
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1558
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1559
|
+
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>;
|
|
1560
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1561
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1562
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
1563
|
+
}, undefined>, v.ObjectSchema<{
|
|
1564
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
1565
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1566
|
+
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>;
|
|
1567
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1568
|
+
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>;
|
|
1569
|
+
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>;
|
|
1570
|
+
}, undefined>, v.ObjectSchema<{
|
|
1571
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1572
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1573
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1574
|
+
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>;
|
|
1575
|
+
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>;
|
|
1576
|
+
}, undefined>], undefined>, undefined>;
|
|
1577
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1578
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
1579
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1580
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1581
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1582
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1583
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1584
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1585
|
+
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>;
|
|
1586
|
+
}, undefined>, v.ObjectSchema<{
|
|
1587
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
1588
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1589
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1590
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1591
|
+
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>;
|
|
1592
|
+
}, undefined>, v.ObjectSchema<{
|
|
1593
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
1594
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1595
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1596
|
+
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>;
|
|
1597
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1598
|
+
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>;
|
|
1599
|
+
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>;
|
|
1600
|
+
}, undefined>, v.ObjectSchema<{
|
|
1601
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
1602
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1603
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1604
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1605
|
+
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>;
|
|
1606
|
+
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>;
|
|
1607
|
+
}, undefined>, v.ObjectSchema<{
|
|
1608
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
1609
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1610
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
1611
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1612
|
+
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>;
|
|
1613
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1614
|
+
}, undefined>, undefined>;
|
|
1615
|
+
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>;
|
|
1616
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1617
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1618
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1619
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1620
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1621
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1622
|
+
}, undefined>, v.CheckAction<{
|
|
1623
|
+
name: string;
|
|
1624
|
+
newNameTemplate?: string | undefined;
|
|
1625
|
+
newTagTemplate?: string | undefined;
|
|
1626
|
+
digestTemplate?: string | undefined;
|
|
1627
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
1628
|
+
name: string;
|
|
1629
|
+
newNameTemplate?: string | undefined;
|
|
1630
|
+
newTagTemplate?: string | undefined;
|
|
1631
|
+
digestTemplate?: string | undefined;
|
|
1632
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
1633
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1634
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1635
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1636
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1637
|
+
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.">]>;
|
|
1638
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1639
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
1640
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1641
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1642
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1643
|
+
}, undefined>, undefined>, undefined>;
|
|
1644
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1645
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1646
|
+
readonly secretRef: v.ObjectSchema<{
|
|
1647
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1648
|
+
}, undefined>;
|
|
1649
|
+
}, undefined>, undefined>, undefined>;
|
|
1650
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
1651
|
+
}, undefined>, undefined>, undefined>;
|
|
1652
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
1653
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
1654
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1655
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1656
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1657
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
1658
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
1659
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1660
|
+
}, undefined>, undefined>;
|
|
1661
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1662
|
+
}, undefined>, v.CheckAction<{
|
|
1663
|
+
key: string;
|
|
1664
|
+
secretRef?: {
|
|
1665
|
+
key: string;
|
|
1666
|
+
} | undefined;
|
|
1667
|
+
valueTemplate?: string | undefined;
|
|
1668
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1669
|
+
}, undefined>, v.ObjectSchema<{
|
|
1670
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
1671
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1672
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1673
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
1674
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
1675
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1676
|
+
}, undefined>, undefined>;
|
|
1677
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1678
|
+
}, undefined>, v.CheckAction<{
|
|
1679
|
+
key: string;
|
|
1680
|
+
secretRef?: {
|
|
1681
|
+
key: string;
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
valueTemplate?: string | undefined;
|
|
1684
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1685
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1686
|
+
}, undefined>, undefined>;
|
|
1687
|
+
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1688
|
+
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
1689
|
+
readonly frontendConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
1690
|
+
readonly packageManager: v.OptionalSchema<v.PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
1691
|
+
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1692
|
+
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1693
|
+
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1694
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1695
|
+
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1696
|
+
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1697
|
+
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
1698
|
+
readonly envInjection: v.OptionalSchema<v.PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
1699
|
+
readonly branch: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1700
|
+
readonly kind: v.LiteralSchema<"default", undefined>;
|
|
1701
|
+
}, undefined>, v.ObjectSchema<{
|
|
1702
|
+
readonly kind: v.LiteralSchema<"task", undefined>;
|
|
1703
|
+
readonly fromTaskBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1704
|
+
}, undefined>], undefined>, undefined>;
|
|
1705
|
+
readonly mockMappingsPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1706
|
+
readonly previewEnabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1707
|
+
readonly backendBindings: v.ArraySchema<v.ObjectSchema<{
|
|
1708
|
+
readonly envVar: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1709
|
+
readonly source: v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
1710
|
+
readonly kind: v.LiteralSchema<"service", undefined>;
|
|
1711
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1712
|
+
}, undefined>, v.ObjectSchema<{
|
|
1713
|
+
readonly kind: v.LiteralSchema<"mock", undefined>;
|
|
1714
|
+
}, undefined>], undefined>;
|
|
1715
|
+
}, undefined>, undefined>;
|
|
1716
|
+
}, undefined>, undefined>;
|
|
1717
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1718
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1719
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1720
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
1721
|
+
serviceBlockId: string;
|
|
1722
|
+
description?: string | undefined;
|
|
1723
|
+
}[], 50, undefined>]>, undefined>;
|
|
1724
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1725
|
+
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
1726
|
+
readonly url: v.StringSchema<undefined>;
|
|
1727
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1728
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1729
|
+
}, undefined>, undefined>;
|
|
1730
|
+
readonly peerPullRequests: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1731
|
+
readonly repo: v.StringSchema<undefined>;
|
|
1732
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1733
|
+
readonly ref: v.ObjectSchema<{
|
|
1734
|
+
readonly url: v.StringSchema<undefined>;
|
|
1735
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1736
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1737
|
+
}, undefined>;
|
|
1738
|
+
}, undefined>, undefined>, undefined>;
|
|
1739
|
+
readonly referenceRepos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1740
|
+
readonly repoId: v.NumberSchema<undefined>;
|
|
1741
|
+
readonly owner: v.StringSchema<undefined>;
|
|
1742
|
+
readonly name: v.StringSchema<undefined>;
|
|
1743
|
+
readonly defaultBranch: v.StringSchema<undefined>;
|
|
1744
|
+
readonly connectionId: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1745
|
+
}, undefined>, undefined>, undefined>;
|
|
1746
|
+
readonly aprioriBranches: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1747
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>, v.CheckAction<string, "Not a valid git branch name">]>;
|
|
1748
|
+
readonly mode: v.PicklistSchema<["reference", "working"], undefined>;
|
|
1749
|
+
}, undefined>, undefined>, undefined>;
|
|
1750
|
+
readonly riskPolicyId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1751
|
+
readonly modelPresetId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1752
|
+
readonly pipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1753
|
+
readonly createdBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1754
|
+
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1755
|
+
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1756
|
+
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1757
|
+
readonly trackerQuestionsOnPark: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1758
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1759
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1760
|
+
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1761
|
+
}, undefined>;
|
|
1762
|
+
readonly task: v.ObjectSchema<{
|
|
1763
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
1764
|
+
readonly externalId: v.StringSchema<undefined>;
|
|
1765
|
+
readonly title: v.StringSchema<undefined>;
|
|
1766
|
+
readonly url: v.StringSchema<undefined>;
|
|
1767
|
+
readonly status: v.StringSchema<undefined>;
|
|
1768
|
+
readonly type: v.StringSchema<undefined>;
|
|
1769
|
+
readonly assignee: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1770
|
+
readonly priority: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1771
|
+
readonly labels: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1772
|
+
readonly description: v.StringSchema<undefined>;
|
|
1773
|
+
readonly comments: v.ArraySchema<v.ObjectSchema<{
|
|
1774
|
+
readonly author: v.StringSchema<undefined>;
|
|
1775
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
1776
|
+
readonly body: v.StringSchema<undefined>;
|
|
1777
|
+
}, undefined>, undefined>;
|
|
1778
|
+
readonly excerpt: v.StringSchema<undefined>;
|
|
1779
|
+
readonly linkedBlockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1780
|
+
readonly syncedAt: v.NumberSchema<undefined>;
|
|
1781
|
+
}, undefined>;
|
|
1782
|
+
readonly execution: v.ObjectSchema<{
|
|
1783
|
+
readonly id: v.StringSchema<undefined>;
|
|
1784
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
1785
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
1786
|
+
readonly pipelineName: v.StringSchema<undefined>;
|
|
1787
|
+
readonly steps: v.ArraySchema<v.ObjectSchema<{
|
|
1788
|
+
readonly runId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1789
|
+
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1790
|
+
readonly state: v.PicklistSchema<["pending", "working", "waiting_decision", "done"], undefined>;
|
|
1791
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
1792
|
+
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1793
|
+
readonly calls: v.NumberSchema<undefined>;
|
|
1794
|
+
readonly promptTokens: v.NumberSchema<undefined>;
|
|
1795
|
+
readonly cachedPromptTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1796
|
+
readonly completionTokens: v.NumberSchema<undefined>;
|
|
1797
|
+
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
1798
|
+
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1799
|
+
readonly truncatedCalls: v.NumberSchema<undefined>;
|
|
1800
|
+
readonly upstreamMs: v.NumberSchema<undefined>;
|
|
1801
|
+
readonly overheadMs: v.NumberSchema<undefined>;
|
|
1802
|
+
readonly errors: v.NumberSchema<undefined>;
|
|
1803
|
+
readonly warnings: v.NumberSchema<undefined>;
|
|
1804
|
+
}, undefined>, undefined>, undefined>;
|
|
1805
|
+
readonly gate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1806
|
+
readonly phase: v.PicklistSchema<["checking", "working"], undefined>;
|
|
1807
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
1808
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1809
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1810
|
+
readonly headShas: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
1811
|
+
readonly conflictTarget: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1812
|
+
readonly repo: v.StringSchema<undefined>;
|
|
1813
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1814
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1815
|
+
}, undefined>, undefined>, undefined>;
|
|
1816
|
+
readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
1817
|
+
readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1818
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1819
|
+
readonly name: v.StringSchema<undefined>;
|
|
1820
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1821
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1822
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1823
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1824
|
+
readonly lastDispatchedInstructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1825
|
+
readonly watchSince: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1826
|
+
readonly watchWindowMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1827
|
+
readonly regressedSignals: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1828
|
+
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
1829
|
+
readonly id: v.StringSchema<undefined>;
|
|
1830
|
+
readonly name: v.StringSchema<undefined>;
|
|
1831
|
+
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
1832
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1833
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1834
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1835
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
1836
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1837
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
1838
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1839
|
+
readonly instructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1840
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1841
|
+
readonly name: v.StringSchema<undefined>;
|
|
1842
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1843
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1844
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1845
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1846
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1847
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1848
|
+
readonly lastApprovals: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1849
|
+
readonly requiredApprovingReviewCount: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1850
|
+
readonly pendingThreadIds: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
1851
|
+
readonly lastAddressedCommentAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1852
|
+
readonly humanReviewGraceMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1853
|
+
readonly pendingFix: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1854
|
+
readonly instructions: v.StringSchema<undefined>;
|
|
1855
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1856
|
+
}, undefined>, undefined>, undefined>;
|
|
1857
|
+
}, undefined>, undefined>, undefined>;
|
|
1858
|
+
readonly test: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1859
|
+
readonly phase: v.PicklistSchema<["testing", "fixing"], undefined>;
|
|
1860
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
1861
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1862
|
+
readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1863
|
+
readonly greenlight: v.BooleanSchema<undefined>;
|
|
1864
|
+
readonly summary: v.StringSchema<undefined>;
|
|
1865
|
+
readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1866
|
+
readonly outcomes: v.ArraySchema<v.ObjectSchema<{
|
|
1867
|
+
readonly name: v.StringSchema<undefined>;
|
|
1868
|
+
readonly status: v.PicklistSchema<["passed", "failed", "skipped"], undefined>;
|
|
1869
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1870
|
+
}, undefined>, undefined>;
|
|
1871
|
+
readonly concerns: v.ArraySchema<v.ObjectSchema<{
|
|
1872
|
+
readonly title: v.StringSchema<undefined>;
|
|
1873
|
+
readonly detail: v.StringSchema<undefined>;
|
|
1874
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
1875
|
+
}, undefined>, undefined>;
|
|
1876
|
+
readonly requirementVerdicts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1877
|
+
readonly requirementId: v.StringSchema<undefined>;
|
|
1878
|
+
readonly status: v.PicklistSchema<["met", "not_met", "not_covered"], undefined>;
|
|
1879
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1880
|
+
}, undefined>, undefined>, undefined>;
|
|
1881
|
+
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1882
|
+
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1883
|
+
readonly view: v.StringSchema<undefined>;
|
|
1884
|
+
readonly artifactId: v.StringSchema<undefined>;
|
|
1885
|
+
readonly hash: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1886
|
+
readonly width: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1887
|
+
readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1888
|
+
readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1889
|
+
}, undefined>, undefined>, undefined>;
|
|
1890
|
+
readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1891
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1892
|
+
}, undefined>, undefined>, undefined>;
|
|
1893
|
+
}, undefined>, v.TransformAction<{
|
|
1894
|
+
greenlight: boolean;
|
|
1895
|
+
summary: string;
|
|
1896
|
+
tested: string[];
|
|
1897
|
+
outcomes: {
|
|
1898
|
+
name: string;
|
|
1899
|
+
status: "failed" | "passed" | "skipped";
|
|
1900
|
+
detail?: string | undefined;
|
|
1901
|
+
}[];
|
|
1902
|
+
concerns: {
|
|
1903
|
+
title: string;
|
|
1904
|
+
detail: string;
|
|
1905
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
1906
|
+
}[];
|
|
1907
|
+
requirementVerdicts?: {
|
|
1908
|
+
requirementId: string;
|
|
1909
|
+
status: "met" | "not_covered" | "not_met";
|
|
1910
|
+
detail?: string | undefined;
|
|
1911
|
+
}[] | undefined;
|
|
1912
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
1913
|
+
screenshots?: {
|
|
1914
|
+
view: string;
|
|
1915
|
+
artifactId: string;
|
|
1916
|
+
hash?: string | undefined;
|
|
1917
|
+
width?: number | undefined;
|
|
1918
|
+
height?: number | undefined;
|
|
1919
|
+
referenceArtifactId?: string | undefined;
|
|
1920
|
+
}[] | undefined;
|
|
1921
|
+
abort?: {
|
|
1922
|
+
reason: string;
|
|
1923
|
+
} | null | undefined;
|
|
1924
|
+
}, {
|
|
1925
|
+
greenlight: boolean;
|
|
1926
|
+
summary: string;
|
|
1927
|
+
tested: string[];
|
|
1928
|
+
outcomes: {
|
|
1929
|
+
name: string;
|
|
1930
|
+
status: "failed" | "passed" | "skipped";
|
|
1931
|
+
detail?: string | undefined;
|
|
1932
|
+
}[];
|
|
1933
|
+
concerns: {
|
|
1934
|
+
title: string;
|
|
1935
|
+
detail: string;
|
|
1936
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
1937
|
+
}[];
|
|
1938
|
+
requirementVerdicts?: {
|
|
1939
|
+
requirementId: string;
|
|
1940
|
+
status: "met" | "not_covered" | "not_met";
|
|
1941
|
+
detail?: string | undefined;
|
|
1942
|
+
}[] | undefined;
|
|
1943
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
1944
|
+
screenshots?: {
|
|
1945
|
+
view: string;
|
|
1946
|
+
artifactId: string;
|
|
1947
|
+
hash?: string | undefined;
|
|
1948
|
+
width?: number | undefined;
|
|
1949
|
+
height?: number | undefined;
|
|
1950
|
+
referenceArtifactId?: string | undefined;
|
|
1951
|
+
}[] | undefined;
|
|
1952
|
+
abort?: {
|
|
1953
|
+
reason: string;
|
|
1954
|
+
} | null | undefined;
|
|
1955
|
+
}>]>, undefined>, undefined>;
|
|
1956
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1957
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
1958
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1959
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
1960
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1961
|
+
readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1962
|
+
readonly title: v.StringSchema<undefined>;
|
|
1963
|
+
readonly detail: v.StringSchema<undefined>;
|
|
1964
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
1965
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1966
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1967
|
+
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1968
|
+
readonly started: v.BooleanSchema<undefined>;
|
|
1969
|
+
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1970
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1971
|
+
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1972
|
+
readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1973
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1974
|
+
}, undefined>, undefined>, undefined>;
|
|
1975
|
+
}, undefined>, undefined>, undefined>;
|
|
1976
|
+
readonly testerQuality: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1977
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
1978
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
1979
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1980
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1981
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
1982
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1983
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1984
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1985
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
1986
|
+
}, undefined>, undefined>, undefined>;
|
|
1987
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
1988
|
+
readonly adequate: v.BooleanSchema<undefined>;
|
|
1989
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
1990
|
+
readonly gaps: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1991
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1992
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1993
|
+
}, undefined>, undefined>;
|
|
1994
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1995
|
+
}, undefined>, undefined>, undefined>;
|
|
1996
|
+
readonly humanTest: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1997
|
+
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
1998
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1999
|
+
readonly id: v.StringSchema<undefined>;
|
|
2000
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2001
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2002
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2003
|
+
}, undefined>, undefined>, undefined>;
|
|
2004
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2005
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2006
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2007
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2008
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2009
|
+
readonly kind: v.PicklistSchema<["fix", "pull-main"], undefined>;
|
|
2010
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2011
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2012
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2013
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2014
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2015
|
+
}, undefined>, undefined>, undefined>;
|
|
2016
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2017
|
+
readonly type: v.PicklistSchema<["confirm", "request-fix", "pull-main", "recreate"], undefined>;
|
|
2018
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2019
|
+
}, undefined>, undefined>, undefined>;
|
|
2020
|
+
}, undefined>, undefined>, undefined>;
|
|
2021
|
+
readonly visualConfirm: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2022
|
+
readonly phase: v.PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
2023
|
+
readonly pairs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2024
|
+
readonly view: v.StringSchema<undefined>;
|
|
2025
|
+
readonly actualArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2026
|
+
readonly referenceArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2027
|
+
}, undefined>, undefined>, undefined>;
|
|
2028
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2029
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2030
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2031
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2032
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2033
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2034
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2035
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2036
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2037
|
+
}, undefined>, undefined>, undefined>;
|
|
2038
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2039
|
+
readonly type: v.PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
2040
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2041
|
+
}, undefined>, undefined>, undefined>;
|
|
2042
|
+
}, undefined>, undefined>, undefined>;
|
|
2043
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2044
|
+
readonly id: v.StringSchema<undefined>;
|
|
2045
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2046
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2047
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2048
|
+
readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2049
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
2050
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
2051
|
+
}, undefined>, undefined>, undefined>;
|
|
2052
|
+
readonly subtasks: v.OptionalSchema<v.ObjectSchema<{
|
|
2053
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2054
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2055
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2056
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2057
|
+
readonly label: v.StringSchema<undefined>;
|
|
2058
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2059
|
+
}, undefined>, undefined>, undefined>;
|
|
2060
|
+
}, undefined>, undefined>;
|
|
2061
|
+
readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2062
|
+
readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
|
|
2063
|
+
readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2064
|
+
readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2065
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2066
|
+
}, undefined>, undefined>, undefined>;
|
|
2067
|
+
readonly search: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2068
|
+
readonly available: v.BooleanSchema<undefined>;
|
|
2069
|
+
readonly provider: v.NullableSchema<v.PicklistSchema<["brave", "searxng"], undefined>, undefined>;
|
|
2070
|
+
}, undefined>, undefined>, undefined>;
|
|
2071
|
+
readonly decision: v.NullableSchema<v.ObjectSchema<{
|
|
2072
|
+
readonly id: v.StringSchema<undefined>;
|
|
2073
|
+
readonly question: v.StringSchema<undefined>;
|
|
2074
|
+
readonly options: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2075
|
+
readonly chosen: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2076
|
+
}, undefined>, undefined>;
|
|
2077
|
+
readonly requiresApproval: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2078
|
+
readonly approval: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2079
|
+
readonly id: v.StringSchema<undefined>;
|
|
2080
|
+
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2081
|
+
readonly proposal: v.StringSchema<undefined>;
|
|
2082
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2083
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2084
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2085
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2086
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2087
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2088
|
+
readonly body: v.StringSchema<undefined>;
|
|
2089
|
+
}, undefined>, undefined>, undefined>;
|
|
2090
|
+
}, undefined>, undefined>, undefined>;
|
|
2091
|
+
readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2092
|
+
readonly threshold: v.NumberSchema<undefined>;
|
|
2093
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2094
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2095
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
2096
|
+
readonly rating: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2097
|
+
readonly threshold: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2098
|
+
readonly passed: v.BooleanSchema<undefined>;
|
|
2099
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2100
|
+
}, undefined>, undefined>;
|
|
2101
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2102
|
+
}, undefined>, undefined>, undefined>;
|
|
2103
|
+
readonly followUps: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2104
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2105
|
+
readonly items: v.ArraySchema<v.ObjectSchema<{
|
|
2106
|
+
readonly id: v.StringSchema<undefined>;
|
|
2107
|
+
readonly kind: v.PicklistSchema<["follow_up", "question"], undefined>;
|
|
2108
|
+
readonly title: v.StringSchema<undefined>;
|
|
2109
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2110
|
+
readonly suggestedAction: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2111
|
+
readonly status: v.PicklistSchema<["pending", "filed", "queued", "answered", "dismissed"], undefined>;
|
|
2112
|
+
readonly answer: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2113
|
+
readonly sentToCoder: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2114
|
+
readonly ticketExternalId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2115
|
+
readonly ticketUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2116
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2117
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
2118
|
+
}, undefined>, undefined>;
|
|
2119
|
+
readonly loops: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2120
|
+
readonly maxLoops: v.OptionalSchema<v.NumberSchema<undefined>, 3>;
|
|
2121
|
+
}, undefined>, undefined>, undefined>;
|
|
2122
|
+
readonly forkDecision: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2123
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
2124
|
+
readonly seamSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2125
|
+
readonly forks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2126
|
+
readonly id: v.StringSchema<undefined>;
|
|
2127
|
+
readonly title: v.StringSchema<undefined>;
|
|
2128
|
+
readonly summary: v.StringSchema<undefined>;
|
|
2129
|
+
readonly approach: v.StringSchema<undefined>;
|
|
2130
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2131
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2132
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2133
|
+
}, undefined>, undefined>, readonly []>;
|
|
2134
|
+
readonly singlePathReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2135
|
+
readonly chat: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2136
|
+
readonly id: v.StringSchema<undefined>;
|
|
2137
|
+
readonly role: v.PicklistSchema<["human", "assistant"], undefined>;
|
|
2138
|
+
readonly text: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>;
|
|
2139
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2140
|
+
}, undefined>, undefined>, readonly []>;
|
|
2141
|
+
readonly maxChatTurns: v.OptionalSchema<v.NumberSchema<undefined>, 15>;
|
|
2142
|
+
readonly chosen: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2143
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2144
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2145
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2146
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2147
|
+
}, undefined>, v.CheckAction<{
|
|
2148
|
+
forkId?: string | null | undefined;
|
|
2149
|
+
custom?: string | null | undefined;
|
|
2150
|
+
note?: string | null | undefined;
|
|
2151
|
+
at: number;
|
|
2152
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
2153
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2154
|
+
}, undefined>, undefined>, undefined>;
|
|
2155
|
+
readonly judge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2156
|
+
readonly status: v.PicklistSchema<["evaluating", "awaiting_decision", "bouncing", "passed", "failed", "skipped"], undefined>;
|
|
2157
|
+
readonly rubricId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2158
|
+
readonly rubricName: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2159
|
+
readonly rubricOverridden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2160
|
+
readonly verdict: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2161
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
2162
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2163
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
2164
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
2165
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2166
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
2167
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2168
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
2169
|
+
}, undefined>, undefined>, undefined>;
|
|
2170
|
+
readonly threshold: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2171
|
+
readonly disposition: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>, undefined>, undefined>;
|
|
2172
|
+
readonly bounces: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2173
|
+
readonly maxBounces: v.OptionalSchema<v.NumberSchema<undefined>, 1>;
|
|
2174
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2175
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2176
|
+
readonly round: v.NumberSchema<undefined>;
|
|
2177
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2178
|
+
readonly verdict: v.ObjectSchema<{
|
|
2179
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
2180
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2181
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
2182
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
2183
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2184
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
2185
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2186
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
2187
|
+
}, undefined>;
|
|
2188
|
+
readonly disposition: v.PicklistSchema<["pass", "park", "bounce", "fail"], undefined>;
|
|
2189
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2190
|
+
}, undefined>, undefined>, readonly []>;
|
|
2191
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2192
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2193
|
+
readonly choice: v.PicklistSchema<["proceed", "bounce", "stop"], undefined>;
|
|
2194
|
+
readonly feedback: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2195
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2196
|
+
}, undefined>, undefined>, undefined>;
|
|
2197
|
+
}, undefined>, undefined>, undefined>;
|
|
2198
|
+
readonly ralph: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2199
|
+
readonly phase: v.PicklistSchema<["iterating"], undefined>;
|
|
2200
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2201
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
2202
|
+
readonly validationCommand: v.StringSchema<undefined>;
|
|
2203
|
+
readonly progressPath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2204
|
+
readonly lastExitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2205
|
+
readonly lastValidationTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2206
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2207
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2208
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2209
|
+
readonly validationPassed: v.BooleanSchema<undefined>;
|
|
2210
|
+
readonly exitCode: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2211
|
+
readonly outputTail: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2212
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2213
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2214
|
+
}, undefined>, undefined>, undefined>;
|
|
2215
|
+
readonly validation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2216
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
2217
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
2218
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
2219
|
+
readonly outcomes: v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
2220
|
+
readonly label: v.SchemaWithFallback<v.StringSchema<undefined>, "check">;
|
|
2221
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2222
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
2223
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
2224
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2225
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2226
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2227
|
+
}, undefined>, undefined>, readonly []>;
|
|
2228
|
+
readonly at: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2229
|
+
}, undefined>, undefined>, undefined>;
|
|
2230
|
+
readonly reproduction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2231
|
+
readonly status: v.SchemaWithFallback<v.PicklistSchema<["reproduced", "inconclusive", "declared_infeasible"], undefined>, "inconclusive">;
|
|
2232
|
+
readonly command: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2233
|
+
readonly testPaths: v.SchemaWithFallback<v.ArraySchema<v.SchemaWithFallback<v.StringSchema<undefined>, "">, undefined>, readonly []>;
|
|
2234
|
+
readonly omittedTestPaths: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2235
|
+
readonly base: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
2236
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
2237
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
2238
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2239
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2240
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2241
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2242
|
+
}, undefined>, undefined>, undefined>;
|
|
2243
|
+
readonly final: v.SchemaWithFallback<v.OptionalSchema<v.ObjectSchema<{
|
|
2244
|
+
readonly exitCode: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
2245
|
+
readonly passed: v.SchemaWithFallback<v.BooleanSchema<undefined>, false>;
|
|
2246
|
+
readonly outputTail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2247
|
+
readonly durationMs: v.SchemaWithFallback<v.OptionalSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2248
|
+
readonly timedOut: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2249
|
+
readonly setupFailed: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2250
|
+
}, undefined>, undefined>, undefined>;
|
|
2251
|
+
readonly attempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 1>;
|
|
2252
|
+
readonly maxAttempts: v.SchemaWithFallback<v.NumberSchema<undefined>, 3>;
|
|
2253
|
+
readonly reason: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2254
|
+
readonly alternativeVerification: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2255
|
+
readonly note: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2256
|
+
readonly at: v.SchemaWithFallback<v.NumberSchema<undefined>, 0>;
|
|
2257
|
+
}, undefined>, undefined>, undefined>;
|
|
2258
|
+
readonly pendingForkChat: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2259
|
+
readonly messageId: v.StringSchema<undefined>;
|
|
2260
|
+
}, undefined>, undefined>, undefined>;
|
|
2261
|
+
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2262
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2263
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2264
|
+
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2265
|
+
readonly id: v.StringSchema<undefined>;
|
|
2266
|
+
readonly title: v.StringSchema<undefined>;
|
|
2267
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
2268
|
+
readonly paths: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2269
|
+
}, undefined>, undefined>, readonly []>;
|
|
2270
|
+
readonly findings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2271
|
+
readonly id: v.StringSchema<undefined>;
|
|
2272
|
+
readonly sliceId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2273
|
+
readonly path: v.StringSchema<undefined>;
|
|
2274
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2275
|
+
readonly side: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "RIGHT"], undefined>, undefined>, undefined>;
|
|
2276
|
+
readonly severity: v.PicklistSchema<["blocker", "high", "medium", "low", "nit"], undefined>;
|
|
2277
|
+
readonly category: v.PicklistSchema<["correctness", "security", "performance", "maintainability", "style", "test", "other"], undefined>;
|
|
2278
|
+
readonly title: v.StringSchema<undefined>;
|
|
2279
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2280
|
+
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2281
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2282
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
2283
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2284
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2285
|
+
}, undefined>, undefined>, undefined>;
|
|
2286
|
+
}, undefined>, undefined>, readonly []>;
|
|
2287
|
+
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2288
|
+
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
2289
|
+
readonly prUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2290
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2291
|
+
readonly reviewedHeadSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2292
|
+
readonly postReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2293
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
2294
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
2295
|
+
readonly folded: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2296
|
+
readonly bodyPosted: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2297
|
+
readonly bodyError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2298
|
+
readonly failures: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2299
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2300
|
+
readonly path: v.StringSchema<undefined>;
|
|
2301
|
+
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2302
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2303
|
+
}, undefined>, undefined>, readonly []>;
|
|
2304
|
+
}, undefined>, undefined>, undefined>;
|
|
2305
|
+
readonly postedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2306
|
+
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2307
|
+
}, undefined>, undefined>, undefined>;
|
|
2308
|
+
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2309
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2310
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2311
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2312
|
+
}, undefined>, undefined>, undefined>;
|
|
2313
|
+
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2314
|
+
readonly previousProposal: v.StringSchema<undefined>;
|
|
2315
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2316
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2317
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2318
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2319
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2320
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2321
|
+
readonly body: v.StringSchema<undefined>;
|
|
2322
|
+
}, undefined>, undefined>, undefined>;
|
|
2323
|
+
}, undefined>, undefined>, undefined>;
|
|
2324
|
+
readonly pendingIncorporation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2325
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2326
|
+
}, undefined>, undefined>, undefined>;
|
|
2327
|
+
readonly pendingRecommendation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2328
|
+
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2329
|
+
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2330
|
+
}, undefined>, undefined>, undefined>;
|
|
2331
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2332
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2333
|
+
}, undefined>, undefined>, undefined>;
|
|
2334
|
+
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2335
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2336
|
+
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
2337
|
+
readonly participants: v.ArraySchema<v.ObjectSchema<{
|
|
2338
|
+
readonly id: v.StringSchema<undefined>;
|
|
2339
|
+
readonly role: v.StringSchema<undefined>;
|
|
2340
|
+
readonly systemFraming: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2341
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2342
|
+
}, undefined>, undefined>;
|
|
2343
|
+
readonly synthesizerModelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2344
|
+
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>;
|
|
2345
|
+
readonly gating: v.OptionalSchema<v.ObjectSchema<{
|
|
2346
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2347
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2348
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2349
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2350
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["consensus", "standard"], undefined>, "consensus">;
|
|
2351
|
+
}, undefined>, undefined>;
|
|
2352
|
+
}, undefined>, undefined>, undefined>;
|
|
2353
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2354
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2355
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2356
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2357
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2358
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2359
|
+
}, undefined>, undefined>, undefined>;
|
|
2360
|
+
readonly stepOptions: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2361
|
+
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2362
|
+
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2363
|
+
}, undefined>, undefined>, undefined>;
|
|
2364
|
+
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2365
|
+
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2366
|
+
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2367
|
+
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2368
|
+
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2369
|
+
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2370
|
+
readonly subscriptionTokenId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2371
|
+
readonly initiatedByUserId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2372
|
+
readonly selectedFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2373
|
+
readonly fragmentAdherence: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2374
|
+
readonly fragmentId: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2375
|
+
readonly title: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2376
|
+
readonly rating: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
2377
|
+
readonly assessment: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
2378
|
+
readonly relatedFindings: v.SchemaWithFallback<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2379
|
+
}, undefined>, undefined>, undefined>;
|
|
2380
|
+
readonly effortReport: v.OptionalSchema<v.ObjectSchema<{
|
|
2381
|
+
readonly difficulty: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, 5>;
|
|
2382
|
+
readonly summary: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2383
|
+
readonly reducedEffectiveness: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2384
|
+
readonly obstacles: v.SchemaWithFallback<v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2385
|
+
}, undefined>, undefined>;
|
|
2386
|
+
readonly skillVersion: v.OptionalSchema<v.ObjectSchema<{
|
|
2387
|
+
readonly skillId: v.StringSchema<undefined>;
|
|
2388
|
+
readonly commit: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2389
|
+
readonly sha: v.StringSchema<undefined>;
|
|
2390
|
+
}, undefined>, undefined>;
|
|
2391
|
+
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2392
|
+
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2393
|
+
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2394
|
+
readonly lastActivityAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2395
|
+
readonly pausedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2396
|
+
readonly evictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2397
|
+
readonly transientEvictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2398
|
+
readonly firstEvictionDetail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2399
|
+
readonly deployProvisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
2400
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>;
|
|
2401
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2402
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
2403
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2404
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2405
|
+
}, undefined>, v.ObjectSchema<{
|
|
2406
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
2407
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2408
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2409
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2410
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2411
|
+
}, undefined>], undefined>, undefined>;
|
|
2412
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2413
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2414
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2415
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
2416
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
2417
|
+
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>;
|
|
2418
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2419
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2420
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2421
|
+
}, undefined>, undefined>, undefined>;
|
|
2422
|
+
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>;
|
|
2423
|
+
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>;
|
|
2424
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2425
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
2426
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
2427
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
2428
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2429
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2430
|
+
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>;
|
|
2431
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2432
|
+
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>;
|
|
2433
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2434
|
+
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>;
|
|
2435
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2436
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2437
|
+
}, undefined>, undefined>;
|
|
2438
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2439
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2440
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2441
|
+
}, undefined>, undefined>, undefined>;
|
|
2442
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2443
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2444
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2445
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2446
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2447
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2448
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2449
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2450
|
+
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>;
|
|
2451
|
+
}, undefined>, v.ObjectSchema<{
|
|
2452
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2453
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2454
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2455
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2456
|
+
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>;
|
|
2457
|
+
}, undefined>, v.ObjectSchema<{
|
|
2458
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2459
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2460
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2461
|
+
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>;
|
|
2462
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2463
|
+
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>;
|
|
2464
|
+
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>;
|
|
2465
|
+
}, undefined>, v.ObjectSchema<{
|
|
2466
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2467
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2468
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2469
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2470
|
+
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>;
|
|
2471
|
+
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>;
|
|
2472
|
+
}, undefined>, v.ObjectSchema<{
|
|
2473
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2474
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2475
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2476
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2477
|
+
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>;
|
|
2478
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2479
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2480
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
2481
|
+
}, undefined>, v.ObjectSchema<{
|
|
2482
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
2483
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2484
|
+
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>;
|
|
2485
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2486
|
+
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>;
|
|
2487
|
+
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>;
|
|
2488
|
+
}, undefined>, v.ObjectSchema<{
|
|
2489
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2490
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2491
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2492
|
+
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>;
|
|
2493
|
+
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>;
|
|
2494
|
+
}, undefined>], undefined>, undefined>;
|
|
2495
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2496
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2497
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2498
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2499
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2500
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2501
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2502
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2503
|
+
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>;
|
|
2504
|
+
}, undefined>, v.ObjectSchema<{
|
|
2505
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2506
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2507
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2508
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2509
|
+
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>;
|
|
2510
|
+
}, undefined>, v.ObjectSchema<{
|
|
2511
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2512
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2513
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2514
|
+
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>;
|
|
2515
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2516
|
+
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>;
|
|
2517
|
+
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>;
|
|
2518
|
+
}, undefined>, v.ObjectSchema<{
|
|
2519
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2520
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2521
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2522
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2523
|
+
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>;
|
|
2524
|
+
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>;
|
|
2525
|
+
}, undefined>, v.ObjectSchema<{
|
|
2526
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2527
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2528
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2529
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2530
|
+
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>;
|
|
2531
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2532
|
+
}, undefined>, undefined>;
|
|
2533
|
+
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>;
|
|
2534
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2535
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2536
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2537
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2538
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2539
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2540
|
+
}, undefined>, v.CheckAction<{
|
|
2541
|
+
name: string;
|
|
2542
|
+
newNameTemplate?: string | undefined;
|
|
2543
|
+
newTagTemplate?: string | undefined;
|
|
2544
|
+
digestTemplate?: string | undefined;
|
|
2545
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
2546
|
+
name: string;
|
|
2547
|
+
newNameTemplate?: string | undefined;
|
|
2548
|
+
newTagTemplate?: string | undefined;
|
|
2549
|
+
digestTemplate?: string | undefined;
|
|
2550
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2551
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2552
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2553
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2554
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2555
|
+
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.">]>;
|
|
2556
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2557
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
2558
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2559
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2560
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2561
|
+
}, undefined>, undefined>, undefined>;
|
|
2562
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2563
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2564
|
+
readonly secretRef: v.ObjectSchema<{
|
|
2565
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2566
|
+
}, undefined>;
|
|
2567
|
+
}, undefined>, undefined>, undefined>;
|
|
2568
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2569
|
+
}, undefined>, undefined>, undefined>;
|
|
2570
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
2571
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
2572
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2573
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2574
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2575
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2576
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2577
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2578
|
+
}, undefined>, undefined>;
|
|
2579
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2580
|
+
}, undefined>, v.CheckAction<{
|
|
2581
|
+
key: string;
|
|
2582
|
+
secretRef?: {
|
|
2583
|
+
key: string;
|
|
2584
|
+
} | undefined;
|
|
2585
|
+
valueTemplate?: string | undefined;
|
|
2586
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2587
|
+
}, undefined>, v.ObjectSchema<{
|
|
2588
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
2589
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2590
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2591
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2592
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2593
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2594
|
+
}, undefined>, undefined>;
|
|
2595
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2596
|
+
}, undefined>, v.CheckAction<{
|
|
2597
|
+
key: string;
|
|
2598
|
+
secretRef?: {
|
|
2599
|
+
key: string;
|
|
2600
|
+
} | undefined;
|
|
2601
|
+
valueTemplate?: string | undefined;
|
|
2602
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2603
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2604
|
+
}, undefined>, undefined>;
|
|
2605
|
+
readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
2606
|
+
readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
|
|
2607
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2608
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2609
|
+
}, undefined>, undefined>, undefined>;
|
|
2610
|
+
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2611
|
+
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2612
|
+
}, undefined>, undefined>;
|
|
2613
|
+
readonly currentStep: v.NumberSchema<undefined>;
|
|
2614
|
+
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
2615
|
+
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2616
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2617
|
+
readonly message: v.StringSchema<undefined>;
|
|
2618
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2619
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2620
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2621
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2622
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2623
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2624
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2625
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2626
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2627
|
+
readonly label: v.StringSchema<undefined>;
|
|
2628
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2629
|
+
}, undefined>, undefined>, undefined>;
|
|
2630
|
+
}, undefined>, undefined>;
|
|
2631
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2632
|
+
}, undefined>, undefined>, undefined>;
|
|
2633
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2634
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2635
|
+
readonly message: v.StringSchema<undefined>;
|
|
2636
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2637
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2638
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2639
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2640
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2641
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2642
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2643
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2644
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2645
|
+
readonly label: v.StringSchema<undefined>;
|
|
2646
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2647
|
+
}, undefined>, undefined>, undefined>;
|
|
2648
|
+
}, undefined>, undefined>;
|
|
2649
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2650
|
+
}, undefined>, undefined>, undefined>;
|
|
2651
|
+
readonly outputHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2652
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2653
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2654
|
+
readonly output: v.StringSchema<undefined>;
|
|
2655
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2656
|
+
}, undefined>, undefined>, undefined>;
|
|
2657
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2658
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2659
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2660
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2661
|
+
}, undefined>, undefined>, undefined>;
|
|
2662
|
+
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2663
|
+
readonly intakeOrigin: v.OptionalSchema<v.PicklistSchema<["ui", "public-api"], undefined>, undefined>;
|
|
2664
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2665
|
+
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2666
|
+
readonly diagnostics: v.OptionalSchema<v.ObjectSchema<{
|
|
2667
|
+
readonly lastDispatch: v.OptionalSchema<v.ObjectSchema<{
|
|
2668
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2669
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
2670
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2671
|
+
readonly executionBackend: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2672
|
+
readonly repo: v.OptionalSchema<v.ObjectSchema<{
|
|
2673
|
+
readonly owner: v.StringSchema<undefined>;
|
|
2674
|
+
readonly name: v.StringSchema<undefined>;
|
|
2675
|
+
readonly baseBranch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2676
|
+
readonly provider: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2677
|
+
}, undefined>, undefined>;
|
|
2678
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2679
|
+
}, undefined>, undefined>;
|
|
2680
|
+
readonly host: v.OptionalSchema<v.ObjectSchema<{
|
|
2681
|
+
readonly platform: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2682
|
+
}, undefined>, undefined>;
|
|
2683
|
+
}, undefined>, undefined>;
|
|
2684
|
+
}, undefined>;
|
|
2685
|
+
}, undefined>;
|
|
2686
|
+
};
|
|
2687
|
+
};
|
|
2688
|
+
export {};
|
|
2689
|
+
//# sourceMappingURL=bug-hunt.d.ts.map
|