@cat-factory/contracts 0.60.0 → 0.61.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/entities.d.ts +71 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/environments.d.ts +495 -4
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +158 -2
- package/dist/environments.js.map +1 -1
- package/dist/requests.d.ts +421 -2
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/board.d.ts +1131 -2
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +50 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +142 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +213 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +142 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +71 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -86,16 +86,87 @@ export declare const addFrameContract: {
|
|
|
86
86
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
87
87
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
88
88
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
89
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
89
90
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
90
91
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
91
92
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
92
93
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
93
94
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
95
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
94
96
|
}, undefined>], undefined>, undefined>;
|
|
95
97
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
96
98
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
97
99
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
98
100
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
101
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
102
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
103
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
104
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
105
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
106
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
107
|
+
name: string;
|
|
108
|
+
newNameTemplate?: string | undefined;
|
|
109
|
+
newTagTemplate?: string | undefined;
|
|
110
|
+
digestTemplate?: string | undefined;
|
|
111
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
112
|
+
name: string;
|
|
113
|
+
newNameTemplate?: string | undefined;
|
|
114
|
+
newTagTemplate?: string | undefined;
|
|
115
|
+
digestTemplate?: string | undefined;
|
|
116
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
117
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
118
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
119
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
120
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
121
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
122
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
123
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
124
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
125
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
126
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
127
|
+
}, undefined>, undefined>, undefined>;
|
|
128
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
129
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
130
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
131
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
132
|
+
}, undefined>;
|
|
133
|
+
}, undefined>, undefined>, undefined>;
|
|
134
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
135
|
+
}, undefined>, undefined>, undefined>;
|
|
136
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
137
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
138
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
139
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
140
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
141
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
142
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
143
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
144
|
+
}, undefined>, undefined>;
|
|
145
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
146
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
147
|
+
key: string;
|
|
148
|
+
secretRef?: {
|
|
149
|
+
key: string;
|
|
150
|
+
} | undefined;
|
|
151
|
+
valueTemplate?: string | undefined;
|
|
152
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
153
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
154
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
155
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
156
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
157
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
158
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
159
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
160
|
+
}, undefined>, undefined>;
|
|
161
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
162
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
163
|
+
key: string;
|
|
164
|
+
secretRef?: {
|
|
165
|
+
key: string;
|
|
166
|
+
} | undefined;
|
|
167
|
+
valueTemplate?: string | undefined;
|
|
168
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
169
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
99
170
|
}, undefined>, undefined>;
|
|
100
171
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
101
172
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -203,16 +274,87 @@ export declare const addServiceFromRepoContract: {
|
|
|
203
274
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
204
275
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
205
276
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
277
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
206
278
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
207
279
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
208
280
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
209
281
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
210
282
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
283
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
211
284
|
}, undefined>], undefined>, undefined>;
|
|
212
285
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
213
286
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
214
287
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
215
288
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
289
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
290
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
291
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
292
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
293
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
294
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
295
|
+
name: string;
|
|
296
|
+
newNameTemplate?: string | undefined;
|
|
297
|
+
newTagTemplate?: string | undefined;
|
|
298
|
+
digestTemplate?: string | undefined;
|
|
299
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
300
|
+
name: string;
|
|
301
|
+
newNameTemplate?: string | undefined;
|
|
302
|
+
newTagTemplate?: string | undefined;
|
|
303
|
+
digestTemplate?: string | undefined;
|
|
304
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
305
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
306
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
307
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
308
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
309
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
310
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
311
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
312
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
313
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
314
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
315
|
+
}, undefined>, undefined>, undefined>;
|
|
316
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
317
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
318
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
319
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
320
|
+
}, undefined>;
|
|
321
|
+
}, undefined>, undefined>, undefined>;
|
|
322
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
323
|
+
}, undefined>, undefined>, undefined>;
|
|
324
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
325
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
326
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
327
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
328
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
329
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
330
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
331
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
332
|
+
}, undefined>, undefined>;
|
|
333
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
334
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
335
|
+
key: string;
|
|
336
|
+
secretRef?: {
|
|
337
|
+
key: string;
|
|
338
|
+
} | undefined;
|
|
339
|
+
valueTemplate?: string | undefined;
|
|
340
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
341
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
342
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
343
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
344
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
345
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
346
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
347
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
348
|
+
}, undefined>, undefined>;
|
|
349
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
350
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
351
|
+
key: string;
|
|
352
|
+
secretRef?: {
|
|
353
|
+
key: string;
|
|
354
|
+
} | undefined;
|
|
355
|
+
valueTemplate?: string | undefined;
|
|
356
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
357
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
216
358
|
}, undefined>, undefined>;
|
|
217
359
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
218
360
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -336,16 +478,87 @@ export declare const addTaskContract: {
|
|
|
336
478
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
337
479
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
338
480
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
481
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
339
482
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
340
483
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
341
484
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
342
485
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
343
486
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
487
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
344
488
|
}, undefined>], undefined>, undefined>;
|
|
345
489
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
346
490
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
347
491
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
348
492
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
493
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
494
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
495
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
496
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
497
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
498
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
499
|
+
name: string;
|
|
500
|
+
newNameTemplate?: string | undefined;
|
|
501
|
+
newTagTemplate?: string | undefined;
|
|
502
|
+
digestTemplate?: string | undefined;
|
|
503
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
504
|
+
name: string;
|
|
505
|
+
newNameTemplate?: string | undefined;
|
|
506
|
+
newTagTemplate?: string | undefined;
|
|
507
|
+
digestTemplate?: string | undefined;
|
|
508
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
509
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
510
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
511
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
512
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
513
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
514
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
515
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
516
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
517
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
518
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
519
|
+
}, undefined>, undefined>, undefined>;
|
|
520
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
521
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
522
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
523
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
524
|
+
}, undefined>;
|
|
525
|
+
}, undefined>, undefined>, undefined>;
|
|
526
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
527
|
+
}, undefined>, undefined>, undefined>;
|
|
528
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
529
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
530
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
531
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
532
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
533
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
534
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
535
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
536
|
+
}, undefined>, undefined>;
|
|
537
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
538
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
539
|
+
key: string;
|
|
540
|
+
secretRef?: {
|
|
541
|
+
key: string;
|
|
542
|
+
} | undefined;
|
|
543
|
+
valueTemplate?: string | undefined;
|
|
544
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
545
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
546
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
547
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
548
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
549
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
550
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
551
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
552
|
+
}, undefined>, undefined>;
|
|
553
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
554
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
555
|
+
key: string;
|
|
556
|
+
secretRef?: {
|
|
557
|
+
key: string;
|
|
558
|
+
} | undefined;
|
|
559
|
+
valueTemplate?: string | undefined;
|
|
560
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
561
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
349
562
|
}, undefined>, undefined>;
|
|
350
563
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
351
564
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -456,16 +669,87 @@ export declare const addModuleContract: {
|
|
|
456
669
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
457
670
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
458
671
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
672
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
459
673
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
460
674
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
461
675
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
462
676
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
463
677
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
678
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
464
679
|
}, undefined>], undefined>, undefined>;
|
|
465
680
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
466
681
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
467
682
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
468
683
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
684
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
685
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
686
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
687
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
688
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
689
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
690
|
+
name: string;
|
|
691
|
+
newNameTemplate?: string | undefined;
|
|
692
|
+
newTagTemplate?: string | undefined;
|
|
693
|
+
digestTemplate?: string | undefined;
|
|
694
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
695
|
+
name: string;
|
|
696
|
+
newNameTemplate?: string | undefined;
|
|
697
|
+
newTagTemplate?: string | undefined;
|
|
698
|
+
digestTemplate?: string | undefined;
|
|
699
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
700
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
701
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
702
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
703
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
704
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
705
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
706
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
707
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
708
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
709
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
710
|
+
}, undefined>, undefined>, undefined>;
|
|
711
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
712
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
713
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
714
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
715
|
+
}, undefined>;
|
|
716
|
+
}, undefined>, undefined>, undefined>;
|
|
717
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
718
|
+
}, undefined>, undefined>, undefined>;
|
|
719
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
720
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
721
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
722
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
723
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
724
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
725
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
726
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
727
|
+
}, undefined>, undefined>;
|
|
728
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
729
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
730
|
+
key: string;
|
|
731
|
+
secretRef?: {
|
|
732
|
+
key: string;
|
|
733
|
+
} | undefined;
|
|
734
|
+
valueTemplate?: string | undefined;
|
|
735
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
736
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
737
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
738
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
739
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
740
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
741
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
742
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
743
|
+
}, undefined>, undefined>;
|
|
744
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
745
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
746
|
+
key: string;
|
|
747
|
+
secretRef?: {
|
|
748
|
+
key: string;
|
|
749
|
+
} | undefined;
|
|
750
|
+
valueTemplate?: string | undefined;
|
|
751
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
752
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
469
753
|
}, undefined>, undefined>;
|
|
470
754
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
471
755
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -573,16 +857,87 @@ export declare const addEpicContract: {
|
|
|
573
857
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
574
858
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
575
859
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
860
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
576
861
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
577
862
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
578
863
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
579
864
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
580
865
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
866
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
581
867
|
}, undefined>], undefined>, undefined>;
|
|
582
868
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
583
869
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
584
870
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
585
871
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
872
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
873
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
874
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
875
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
876
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
877
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
878
|
+
name: string;
|
|
879
|
+
newNameTemplate?: string | undefined;
|
|
880
|
+
newTagTemplate?: string | undefined;
|
|
881
|
+
digestTemplate?: string | undefined;
|
|
882
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
883
|
+
name: string;
|
|
884
|
+
newNameTemplate?: string | undefined;
|
|
885
|
+
newTagTemplate?: string | undefined;
|
|
886
|
+
digestTemplate?: string | undefined;
|
|
887
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
888
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
889
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
890
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
891
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
892
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
893
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
894
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
895
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
896
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
897
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
898
|
+
}, undefined>, undefined>, undefined>;
|
|
899
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
900
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
901
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
902
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
903
|
+
}, undefined>;
|
|
904
|
+
}, undefined>, undefined>, undefined>;
|
|
905
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
906
|
+
}, undefined>, undefined>, undefined>;
|
|
907
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
908
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
909
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
910
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
911
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
912
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
913
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
914
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
915
|
+
}, undefined>, undefined>;
|
|
916
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
917
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
918
|
+
key: string;
|
|
919
|
+
secretRef?: {
|
|
920
|
+
key: string;
|
|
921
|
+
} | undefined;
|
|
922
|
+
valueTemplate?: string | undefined;
|
|
923
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
924
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
925
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
926
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
927
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
928
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
929
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
930
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
931
|
+
}, undefined>, undefined>;
|
|
932
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
933
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
934
|
+
key: string;
|
|
935
|
+
secretRef?: {
|
|
936
|
+
key: string;
|
|
937
|
+
} | undefined;
|
|
938
|
+
valueTemplate?: string | undefined;
|
|
939
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
940
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
586
941
|
}, undefined>, undefined>;
|
|
587
942
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
588
943
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -689,16 +1044,87 @@ export declare const assignEpicContract: {
|
|
|
689
1044
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
690
1045
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
691
1046
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1047
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
692
1048
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
693
1049
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
694
1050
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
695
1051
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
696
1052
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1053
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
697
1054
|
}, undefined>], undefined>, undefined>;
|
|
698
1055
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
699
1056
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
700
1057
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
701
1058
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1059
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1060
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1061
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1062
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1063
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1064
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1065
|
+
name: string;
|
|
1066
|
+
newNameTemplate?: string | undefined;
|
|
1067
|
+
newTagTemplate?: string | undefined;
|
|
1068
|
+
digestTemplate?: string | undefined;
|
|
1069
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
1070
|
+
name: string;
|
|
1071
|
+
newNameTemplate?: string | undefined;
|
|
1072
|
+
newTagTemplate?: string | undefined;
|
|
1073
|
+
digestTemplate?: string | undefined;
|
|
1074
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
1075
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1076
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1077
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1078
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1079
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
1080
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1081
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
1082
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1083
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1084
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
1085
|
+
}, undefined>, undefined>, undefined>;
|
|
1086
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1087
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1088
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
1089
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1090
|
+
}, undefined>;
|
|
1091
|
+
}, undefined>, undefined>, undefined>;
|
|
1092
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
1093
|
+
}, undefined>, undefined>, undefined>;
|
|
1094
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
1095
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
1096
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1097
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1098
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1099
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1100
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1101
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1102
|
+
}, undefined>, undefined>;
|
|
1103
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1104
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1105
|
+
key: string;
|
|
1106
|
+
secretRef?: {
|
|
1107
|
+
key: string;
|
|
1108
|
+
} | undefined;
|
|
1109
|
+
valueTemplate?: string | undefined;
|
|
1110
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1111
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1112
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
1113
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1114
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1115
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1116
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1117
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1118
|
+
}, undefined>, undefined>;
|
|
1119
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1120
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1121
|
+
key: string;
|
|
1122
|
+
secretRef?: {
|
|
1123
|
+
key: string;
|
|
1124
|
+
} | undefined;
|
|
1125
|
+
valueTemplate?: string | undefined;
|
|
1126
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1127
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
702
1128
|
}, undefined>, undefined>;
|
|
703
1129
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
704
1130
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -752,16 +1178,87 @@ export declare const updateBlockContract: {
|
|
|
752
1178
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
753
1179
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
754
1180
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1181
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
755
1182
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
756
1183
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
757
1184
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
758
1185
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
759
1186
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1187
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
760
1188
|
}, undefined>], undefined>, undefined>;
|
|
761
1189
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
762
1190
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
763
1191
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
764
1192
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1193
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1194
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1195
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1196
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1197
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1198
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1199
|
+
name: string;
|
|
1200
|
+
newNameTemplate?: string | undefined;
|
|
1201
|
+
newTagTemplate?: string | undefined;
|
|
1202
|
+
digestTemplate?: string | undefined;
|
|
1203
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
1204
|
+
name: string;
|
|
1205
|
+
newNameTemplate?: string | undefined;
|
|
1206
|
+
newTagTemplate?: string | undefined;
|
|
1207
|
+
digestTemplate?: string | undefined;
|
|
1208
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
1209
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1210
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1211
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1212
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1213
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
1214
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1215
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
1216
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1217
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1218
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
1219
|
+
}, undefined>, undefined>, undefined>;
|
|
1220
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1221
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1222
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
1223
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1224
|
+
}, undefined>;
|
|
1225
|
+
}, undefined>, undefined>, undefined>;
|
|
1226
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
1227
|
+
}, undefined>, undefined>, undefined>;
|
|
1228
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
1229
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
1230
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1231
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1232
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1233
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1234
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1235
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1236
|
+
}, undefined>, undefined>;
|
|
1237
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1238
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1239
|
+
key: string;
|
|
1240
|
+
secretRef?: {
|
|
1241
|
+
key: string;
|
|
1242
|
+
} | undefined;
|
|
1243
|
+
valueTemplate?: string | undefined;
|
|
1244
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1245
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1246
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
1247
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1248
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1249
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1250
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1251
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1252
|
+
}, undefined>, undefined>;
|
|
1253
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1254
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1255
|
+
key: string;
|
|
1256
|
+
secretRef?: {
|
|
1257
|
+
key: string;
|
|
1258
|
+
} | undefined;
|
|
1259
|
+
valueTemplate?: string | undefined;
|
|
1260
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1261
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
765
1262
|
}, undefined>;
|
|
766
1263
|
readonly cloudProvider: import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>;
|
|
767
1264
|
readonly instanceSize: import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>;
|
|
@@ -799,16 +1296,87 @@ export declare const updateBlockContract: {
|
|
|
799
1296
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
800
1297
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
801
1298
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1299
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
802
1300
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
803
1301
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
804
1302
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
805
1303
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
806
1304
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1305
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
807
1306
|
}, undefined>], undefined>, undefined>;
|
|
808
1307
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
809
1308
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
810
1309
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
811
1310
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1311
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1312
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1313
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1314
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1315
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1316
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1317
|
+
name: string;
|
|
1318
|
+
newNameTemplate?: string | undefined;
|
|
1319
|
+
newTagTemplate?: string | undefined;
|
|
1320
|
+
digestTemplate?: string | undefined;
|
|
1321
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
1322
|
+
name: string;
|
|
1323
|
+
newNameTemplate?: string | undefined;
|
|
1324
|
+
newTagTemplate?: string | undefined;
|
|
1325
|
+
digestTemplate?: string | undefined;
|
|
1326
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
1327
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1328
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1329
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1330
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1331
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
1332
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1333
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
1334
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1335
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1336
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
1337
|
+
}, undefined>, undefined>, undefined>;
|
|
1338
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1339
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1340
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
1341
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1342
|
+
}, undefined>;
|
|
1343
|
+
}, undefined>, undefined>, undefined>;
|
|
1344
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
1345
|
+
}, undefined>, undefined>, undefined>;
|
|
1346
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
1347
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
1348
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
1349
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1350
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1351
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1352
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1353
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1354
|
+
}, undefined>, undefined>;
|
|
1355
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1356
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1357
|
+
key: string;
|
|
1358
|
+
secretRef?: {
|
|
1359
|
+
key: string;
|
|
1360
|
+
} | undefined;
|
|
1361
|
+
valueTemplate?: string | undefined;
|
|
1362
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1363
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1364
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
1365
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1366
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1367
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
1368
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1369
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
1370
|
+
}, undefined>, undefined>;
|
|
1371
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1372
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1373
|
+
key: string;
|
|
1374
|
+
secretRef?: {
|
|
1375
|
+
key: string;
|
|
1376
|
+
} | undefined;
|
|
1377
|
+
valueTemplate?: string | undefined;
|
|
1378
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
1379
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
812
1380
|
}, undefined>, undefined>;
|
|
813
1381
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
814
1382
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -848,16 +1416,67 @@ export declare const updateBlockContract: {
|
|
|
848
1416
|
manifestSource?: {
|
|
849
1417
|
type: "colocated";
|
|
850
1418
|
path: string;
|
|
1419
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
851
1420
|
} | {
|
|
852
1421
|
type: "separate";
|
|
853
1422
|
repo: string;
|
|
854
1423
|
ref?: string | undefined;
|
|
855
1424
|
path: string;
|
|
1425
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
856
1426
|
} | undefined;
|
|
857
1427
|
composePath?: string | undefined;
|
|
858
1428
|
localDevOnly?: boolean | undefined;
|
|
859
1429
|
manifestId?: string | undefined;
|
|
860
1430
|
manifestPath?: string | undefined;
|
|
1431
|
+
images?: {
|
|
1432
|
+
name: string;
|
|
1433
|
+
newNameTemplate?: string | undefined;
|
|
1434
|
+
newTagTemplate?: string | undefined;
|
|
1435
|
+
digestTemplate?: string | undefined;
|
|
1436
|
+
}[] | undefined;
|
|
1437
|
+
helmReleases?: {
|
|
1438
|
+
name: string;
|
|
1439
|
+
chart: string;
|
|
1440
|
+
repo?: string | undefined;
|
|
1441
|
+
version: string;
|
|
1442
|
+
namespaceTemplate?: string | undefined;
|
|
1443
|
+
values?: {
|
|
1444
|
+
[x: string]: unknown;
|
|
1445
|
+
} | undefined;
|
|
1446
|
+
set?: {
|
|
1447
|
+
path: string;
|
|
1448
|
+
valueTemplate: string;
|
|
1449
|
+
}[] | undefined;
|
|
1450
|
+
valuesSecretRefs?: {
|
|
1451
|
+
path: string;
|
|
1452
|
+
secretRef: {
|
|
1453
|
+
key: string;
|
|
1454
|
+
};
|
|
1455
|
+
}[] | undefined;
|
|
1456
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
1457
|
+
}[] | undefined;
|
|
1458
|
+
secretInjections?: ({
|
|
1459
|
+
mode: "secret";
|
|
1460
|
+
secretName: string;
|
|
1461
|
+
secretType?: string | undefined;
|
|
1462
|
+
entries: {
|
|
1463
|
+
key: string;
|
|
1464
|
+
secretRef?: {
|
|
1465
|
+
key: string;
|
|
1466
|
+
} | undefined;
|
|
1467
|
+
valueTemplate?: string | undefined;
|
|
1468
|
+
}[];
|
|
1469
|
+
} | {
|
|
1470
|
+
mode: "generatorEnvFile";
|
|
1471
|
+
envFilePath: string;
|
|
1472
|
+
entries: {
|
|
1473
|
+
key: string;
|
|
1474
|
+
secretRef?: {
|
|
1475
|
+
key: string;
|
|
1476
|
+
} | undefined;
|
|
1477
|
+
valueTemplate?: string | undefined;
|
|
1478
|
+
}[];
|
|
1479
|
+
})[] | undefined;
|
|
861
1480
|
} | undefined;
|
|
862
1481
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
863
1482
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -896,16 +1515,67 @@ export declare const updateBlockContract: {
|
|
|
896
1515
|
manifestSource?: {
|
|
897
1516
|
type: "colocated";
|
|
898
1517
|
path: string;
|
|
1518
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
899
1519
|
} | {
|
|
900
1520
|
type: "separate";
|
|
901
1521
|
repo: string;
|
|
902
1522
|
ref?: string | undefined;
|
|
903
1523
|
path: string;
|
|
1524
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
904
1525
|
} | undefined;
|
|
905
1526
|
composePath?: string | undefined;
|
|
906
1527
|
localDevOnly?: boolean | undefined;
|
|
907
1528
|
manifestId?: string | undefined;
|
|
908
1529
|
manifestPath?: string | undefined;
|
|
1530
|
+
images?: {
|
|
1531
|
+
name: string;
|
|
1532
|
+
newNameTemplate?: string | undefined;
|
|
1533
|
+
newTagTemplate?: string | undefined;
|
|
1534
|
+
digestTemplate?: string | undefined;
|
|
1535
|
+
}[] | undefined;
|
|
1536
|
+
helmReleases?: {
|
|
1537
|
+
name: string;
|
|
1538
|
+
chart: string;
|
|
1539
|
+
repo?: string | undefined;
|
|
1540
|
+
version: string;
|
|
1541
|
+
namespaceTemplate?: string | undefined;
|
|
1542
|
+
values?: {
|
|
1543
|
+
[x: string]: unknown;
|
|
1544
|
+
} | undefined;
|
|
1545
|
+
set?: {
|
|
1546
|
+
path: string;
|
|
1547
|
+
valueTemplate: string;
|
|
1548
|
+
}[] | undefined;
|
|
1549
|
+
valuesSecretRefs?: {
|
|
1550
|
+
path: string;
|
|
1551
|
+
secretRef: {
|
|
1552
|
+
key: string;
|
|
1553
|
+
};
|
|
1554
|
+
}[] | undefined;
|
|
1555
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
1556
|
+
}[] | undefined;
|
|
1557
|
+
secretInjections?: ({
|
|
1558
|
+
mode: "secret";
|
|
1559
|
+
secretName: string;
|
|
1560
|
+
secretType?: string | undefined;
|
|
1561
|
+
entries: {
|
|
1562
|
+
key: string;
|
|
1563
|
+
secretRef?: {
|
|
1564
|
+
key: string;
|
|
1565
|
+
} | undefined;
|
|
1566
|
+
valueTemplate?: string | undefined;
|
|
1567
|
+
}[];
|
|
1568
|
+
} | {
|
|
1569
|
+
mode: "generatorEnvFile";
|
|
1570
|
+
envFilePath: string;
|
|
1571
|
+
entries: {
|
|
1572
|
+
key: string;
|
|
1573
|
+
secretRef?: {
|
|
1574
|
+
key: string;
|
|
1575
|
+
} | undefined;
|
|
1576
|
+
valueTemplate?: string | undefined;
|
|
1577
|
+
}[];
|
|
1578
|
+
})[] | undefined;
|
|
909
1579
|
} | undefined;
|
|
910
1580
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
911
1581
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -945,16 +1615,67 @@ export declare const updateBlockContract: {
|
|
|
945
1615
|
manifestSource?: {
|
|
946
1616
|
type: "colocated";
|
|
947
1617
|
path: string;
|
|
1618
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
948
1619
|
} | {
|
|
949
1620
|
type: "separate";
|
|
950
1621
|
repo: string;
|
|
951
1622
|
ref?: string | undefined;
|
|
952
1623
|
path: string;
|
|
1624
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
953
1625
|
} | undefined;
|
|
954
1626
|
composePath?: string | undefined;
|
|
955
1627
|
localDevOnly?: boolean | undefined;
|
|
956
1628
|
manifestId?: string | undefined;
|
|
957
1629
|
manifestPath?: string | undefined;
|
|
1630
|
+
images?: {
|
|
1631
|
+
name: string;
|
|
1632
|
+
newNameTemplate?: string | undefined;
|
|
1633
|
+
newTagTemplate?: string | undefined;
|
|
1634
|
+
digestTemplate?: string | undefined;
|
|
1635
|
+
}[] | undefined;
|
|
1636
|
+
helmReleases?: {
|
|
1637
|
+
name: string;
|
|
1638
|
+
chart: string;
|
|
1639
|
+
repo?: string | undefined;
|
|
1640
|
+
version: string;
|
|
1641
|
+
namespaceTemplate?: string | undefined;
|
|
1642
|
+
values?: {
|
|
1643
|
+
[x: string]: unknown;
|
|
1644
|
+
} | undefined;
|
|
1645
|
+
set?: {
|
|
1646
|
+
path: string;
|
|
1647
|
+
valueTemplate: string;
|
|
1648
|
+
}[] | undefined;
|
|
1649
|
+
valuesSecretRefs?: {
|
|
1650
|
+
path: string;
|
|
1651
|
+
secretRef: {
|
|
1652
|
+
key: string;
|
|
1653
|
+
};
|
|
1654
|
+
}[] | undefined;
|
|
1655
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
1656
|
+
}[] | undefined;
|
|
1657
|
+
secretInjections?: ({
|
|
1658
|
+
mode: "secret";
|
|
1659
|
+
secretName: string;
|
|
1660
|
+
secretType?: string | undefined;
|
|
1661
|
+
entries: {
|
|
1662
|
+
key: string;
|
|
1663
|
+
secretRef?: {
|
|
1664
|
+
key: string;
|
|
1665
|
+
} | undefined;
|
|
1666
|
+
valueTemplate?: string | undefined;
|
|
1667
|
+
}[];
|
|
1668
|
+
} | {
|
|
1669
|
+
mode: "generatorEnvFile";
|
|
1670
|
+
envFilePath: string;
|
|
1671
|
+
entries: {
|
|
1672
|
+
key: string;
|
|
1673
|
+
secretRef?: {
|
|
1674
|
+
key: string;
|
|
1675
|
+
} | undefined;
|
|
1676
|
+
valueTemplate?: string | undefined;
|
|
1677
|
+
}[];
|
|
1678
|
+
})[] | undefined;
|
|
958
1679
|
} | undefined;
|
|
959
1680
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
960
1681
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -964,7 +1685,18 @@ export declare const updateBlockContract: {
|
|
|
964
1685
|
responsibleProductUserId?: string | null | undefined;
|
|
965
1686
|
epicId?: string | undefined;
|
|
966
1687
|
autoStartDependents?: boolean | undefined;
|
|
967
|
-
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").
|
|
1688
|
+
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<{
|
|
1689
|
+
name: string;
|
|
1690
|
+
newNameTemplate?: string | undefined;
|
|
1691
|
+
newTagTemplate?: string | undefined;
|
|
1692
|
+
digestTemplate?: string | undefined;
|
|
1693
|
+
}> | import("valibot").CheckIssue<{
|
|
1694
|
+
key: string;
|
|
1695
|
+
secretRef?: {
|
|
1696
|
+
key: string;
|
|
1697
|
+
} | undefined;
|
|
1698
|
+
valueTemplate?: string | undefined;
|
|
1699
|
+
}> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue>;
|
|
968
1700
|
readonly "~types"?: {
|
|
969
1701
|
readonly input: {
|
|
970
1702
|
title?: string | undefined;
|
|
@@ -995,16 +1727,67 @@ export declare const updateBlockContract: {
|
|
|
995
1727
|
manifestSource?: {
|
|
996
1728
|
type: "colocated";
|
|
997
1729
|
path: string;
|
|
1730
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
998
1731
|
} | {
|
|
999
1732
|
type: "separate";
|
|
1000
1733
|
repo: string;
|
|
1001
1734
|
ref?: string | undefined;
|
|
1002
1735
|
path: string;
|
|
1736
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
1003
1737
|
} | undefined;
|
|
1004
1738
|
composePath?: string | undefined;
|
|
1005
1739
|
localDevOnly?: boolean | undefined;
|
|
1006
1740
|
manifestId?: string | undefined;
|
|
1007
1741
|
manifestPath?: string | undefined;
|
|
1742
|
+
images?: {
|
|
1743
|
+
name: string;
|
|
1744
|
+
newNameTemplate?: string | undefined;
|
|
1745
|
+
newTagTemplate?: string | undefined;
|
|
1746
|
+
digestTemplate?: string | undefined;
|
|
1747
|
+
}[] | undefined;
|
|
1748
|
+
helmReleases?: {
|
|
1749
|
+
name: string;
|
|
1750
|
+
chart: string;
|
|
1751
|
+
repo?: string | undefined;
|
|
1752
|
+
version: string;
|
|
1753
|
+
namespaceTemplate?: string | undefined;
|
|
1754
|
+
values?: {
|
|
1755
|
+
[x: string]: unknown;
|
|
1756
|
+
} | undefined;
|
|
1757
|
+
set?: {
|
|
1758
|
+
path: string;
|
|
1759
|
+
valueTemplate: string;
|
|
1760
|
+
}[] | undefined;
|
|
1761
|
+
valuesSecretRefs?: {
|
|
1762
|
+
path: string;
|
|
1763
|
+
secretRef: {
|
|
1764
|
+
key: string;
|
|
1765
|
+
};
|
|
1766
|
+
}[] | undefined;
|
|
1767
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
1768
|
+
}[] | undefined;
|
|
1769
|
+
secretInjections?: ({
|
|
1770
|
+
mode: "secret";
|
|
1771
|
+
secretName: string;
|
|
1772
|
+
secretType?: string | undefined;
|
|
1773
|
+
entries: {
|
|
1774
|
+
key: string;
|
|
1775
|
+
secretRef?: {
|
|
1776
|
+
key: string;
|
|
1777
|
+
} | undefined;
|
|
1778
|
+
valueTemplate?: string | undefined;
|
|
1779
|
+
}[];
|
|
1780
|
+
} | {
|
|
1781
|
+
mode: "generatorEnvFile";
|
|
1782
|
+
envFilePath: string;
|
|
1783
|
+
entries: {
|
|
1784
|
+
key: string;
|
|
1785
|
+
secretRef?: {
|
|
1786
|
+
key: string;
|
|
1787
|
+
} | undefined;
|
|
1788
|
+
valueTemplate?: string | undefined;
|
|
1789
|
+
}[];
|
|
1790
|
+
})[] | undefined;
|
|
1008
1791
|
} | undefined;
|
|
1009
1792
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
1010
1793
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -1044,16 +1827,67 @@ export declare const updateBlockContract: {
|
|
|
1044
1827
|
manifestSource?: {
|
|
1045
1828
|
type: "colocated";
|
|
1046
1829
|
path: string;
|
|
1830
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
1047
1831
|
} | {
|
|
1048
1832
|
type: "separate";
|
|
1049
1833
|
repo: string;
|
|
1050
1834
|
ref?: string | undefined;
|
|
1051
1835
|
path: string;
|
|
1836
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
1052
1837
|
} | undefined;
|
|
1053
1838
|
composePath?: string | undefined;
|
|
1054
1839
|
localDevOnly?: boolean | undefined;
|
|
1055
1840
|
manifestId?: string | undefined;
|
|
1056
1841
|
manifestPath?: string | undefined;
|
|
1842
|
+
images?: {
|
|
1843
|
+
name: string;
|
|
1844
|
+
newNameTemplate?: string | undefined;
|
|
1845
|
+
newTagTemplate?: string | undefined;
|
|
1846
|
+
digestTemplate?: string | undefined;
|
|
1847
|
+
}[] | undefined;
|
|
1848
|
+
helmReleases?: {
|
|
1849
|
+
name: string;
|
|
1850
|
+
chart: string;
|
|
1851
|
+
repo?: string | undefined;
|
|
1852
|
+
version: string;
|
|
1853
|
+
namespaceTemplate?: string | undefined;
|
|
1854
|
+
values?: {
|
|
1855
|
+
[x: string]: unknown;
|
|
1856
|
+
} | undefined;
|
|
1857
|
+
set?: {
|
|
1858
|
+
path: string;
|
|
1859
|
+
valueTemplate: string;
|
|
1860
|
+
}[] | undefined;
|
|
1861
|
+
valuesSecretRefs?: {
|
|
1862
|
+
path: string;
|
|
1863
|
+
secretRef: {
|
|
1864
|
+
key: string;
|
|
1865
|
+
};
|
|
1866
|
+
}[] | undefined;
|
|
1867
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
1868
|
+
}[] | undefined;
|
|
1869
|
+
secretInjections?: ({
|
|
1870
|
+
mode: "secret";
|
|
1871
|
+
secretName: string;
|
|
1872
|
+
secretType?: string | undefined;
|
|
1873
|
+
entries: {
|
|
1874
|
+
key: string;
|
|
1875
|
+
secretRef?: {
|
|
1876
|
+
key: string;
|
|
1877
|
+
} | undefined;
|
|
1878
|
+
valueTemplate?: string | undefined;
|
|
1879
|
+
}[];
|
|
1880
|
+
} | {
|
|
1881
|
+
mode: "generatorEnvFile";
|
|
1882
|
+
envFilePath: string;
|
|
1883
|
+
entries: {
|
|
1884
|
+
key: string;
|
|
1885
|
+
secretRef?: {
|
|
1886
|
+
key: string;
|
|
1887
|
+
} | undefined;
|
|
1888
|
+
valueTemplate?: string | undefined;
|
|
1889
|
+
}[];
|
|
1890
|
+
})[] | undefined;
|
|
1057
1891
|
} | undefined;
|
|
1058
1892
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
1059
1893
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -1064,7 +1898,18 @@ export declare const updateBlockContract: {
|
|
|
1064
1898
|
epicId?: string | undefined;
|
|
1065
1899
|
autoStartDependents?: boolean | undefined;
|
|
1066
1900
|
};
|
|
1067
|
-
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").
|
|
1901
|
+
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<{
|
|
1902
|
+
name: string;
|
|
1903
|
+
newNameTemplate?: string | undefined;
|
|
1904
|
+
newTagTemplate?: string | undefined;
|
|
1905
|
+
digestTemplate?: string | undefined;
|
|
1906
|
+
}> | import("valibot").CheckIssue<{
|
|
1907
|
+
key: string;
|
|
1908
|
+
secretRef?: {
|
|
1909
|
+
key: string;
|
|
1910
|
+
} | undefined;
|
|
1911
|
+
valueTemplate?: string | undefined;
|
|
1912
|
+
}> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue;
|
|
1068
1913
|
} | undefined;
|
|
1069
1914
|
};
|
|
1070
1915
|
readonly responsesByStatusCode: {
|
|
@@ -1144,16 +1989,87 @@ export declare const updateBlockContract: {
|
|
|
1144
1989
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1145
1990
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1146
1991
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1992
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1147
1993
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
1148
1994
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1149
1995
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1150
1996
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1151
1997
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1998
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1152
1999
|
}, undefined>], undefined>, undefined>;
|
|
1153
2000
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1154
2001
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1155
2002
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1156
2003
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2004
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2005
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2006
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2007
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2008
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2009
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2010
|
+
name: string;
|
|
2011
|
+
newNameTemplate?: string | undefined;
|
|
2012
|
+
newTagTemplate?: string | undefined;
|
|
2013
|
+
digestTemplate?: string | undefined;
|
|
2014
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
2015
|
+
name: string;
|
|
2016
|
+
newNameTemplate?: string | undefined;
|
|
2017
|
+
newTagTemplate?: string | undefined;
|
|
2018
|
+
digestTemplate?: string | undefined;
|
|
2019
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2020
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2021
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2022
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2023
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2024
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2025
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2026
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
2027
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2028
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2029
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
2030
|
+
}, undefined>, undefined>, undefined>;
|
|
2031
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2032
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2033
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
2034
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2035
|
+
}, undefined>;
|
|
2036
|
+
}, undefined>, undefined>, undefined>;
|
|
2037
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2038
|
+
}, undefined>, undefined>, undefined>;
|
|
2039
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
2040
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
2041
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2042
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2043
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2044
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2045
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2046
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2047
|
+
}, undefined>, undefined>;
|
|
2048
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2049
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2050
|
+
key: string;
|
|
2051
|
+
secretRef?: {
|
|
2052
|
+
key: string;
|
|
2053
|
+
} | undefined;
|
|
2054
|
+
valueTemplate?: string | undefined;
|
|
2055
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2056
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2057
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
2058
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2059
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2060
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2061
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2062
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2063
|
+
}, undefined>, undefined>;
|
|
2064
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2065
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2066
|
+
key: string;
|
|
2067
|
+
secretRef?: {
|
|
2068
|
+
key: string;
|
|
2069
|
+
} | undefined;
|
|
2070
|
+
valueTemplate?: string | undefined;
|
|
2071
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2072
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1157
2073
|
}, undefined>, undefined>;
|
|
1158
2074
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1159
2075
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -1263,16 +2179,87 @@ export declare const moveBlockContract: {
|
|
|
1263
2179
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1264
2180
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1265
2181
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2182
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1266
2183
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
1267
2184
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1268
2185
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1269
2186
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1270
2187
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2188
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1271
2189
|
}, undefined>], undefined>, undefined>;
|
|
1272
2190
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1273
2191
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1274
2192
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1275
2193
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2194
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2195
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2196
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2197
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2198
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2199
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2200
|
+
name: string;
|
|
2201
|
+
newNameTemplate?: string | undefined;
|
|
2202
|
+
newTagTemplate?: string | undefined;
|
|
2203
|
+
digestTemplate?: string | undefined;
|
|
2204
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
2205
|
+
name: string;
|
|
2206
|
+
newNameTemplate?: string | undefined;
|
|
2207
|
+
newTagTemplate?: string | undefined;
|
|
2208
|
+
digestTemplate?: string | undefined;
|
|
2209
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2210
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2211
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2212
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2213
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2214
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2215
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2216
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
2217
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2218
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2219
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
2220
|
+
}, undefined>, undefined>, undefined>;
|
|
2221
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2222
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2223
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
2224
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2225
|
+
}, undefined>;
|
|
2226
|
+
}, undefined>, undefined>, undefined>;
|
|
2227
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2228
|
+
}, undefined>, undefined>, undefined>;
|
|
2229
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
2230
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
2231
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2232
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2233
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2234
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2235
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2236
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2237
|
+
}, undefined>, undefined>;
|
|
2238
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2239
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2240
|
+
key: string;
|
|
2241
|
+
secretRef?: {
|
|
2242
|
+
key: string;
|
|
2243
|
+
} | undefined;
|
|
2244
|
+
valueTemplate?: string | undefined;
|
|
2245
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2246
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2247
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
2248
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2249
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2250
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2251
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2252
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2253
|
+
}, undefined>, undefined>;
|
|
2254
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2255
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2256
|
+
key: string;
|
|
2257
|
+
secretRef?: {
|
|
2258
|
+
key: string;
|
|
2259
|
+
} | undefined;
|
|
2260
|
+
valueTemplate?: string | undefined;
|
|
2261
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2262
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1276
2263
|
}, undefined>, undefined>;
|
|
1277
2264
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1278
2265
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -1383,16 +2370,87 @@ export declare const reparentBlockContract: {
|
|
|
1383
2370
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1384
2371
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1385
2372
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2373
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1386
2374
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
1387
2375
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1388
2376
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1389
2377
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1390
2378
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2379
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1391
2380
|
}, undefined>], undefined>, undefined>;
|
|
1392
2381
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1393
2382
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1394
2383
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1395
2384
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2385
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2386
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2387
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2388
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2389
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2390
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2391
|
+
name: string;
|
|
2392
|
+
newNameTemplate?: string | undefined;
|
|
2393
|
+
newTagTemplate?: string | undefined;
|
|
2394
|
+
digestTemplate?: string | undefined;
|
|
2395
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
2396
|
+
name: string;
|
|
2397
|
+
newNameTemplate?: string | undefined;
|
|
2398
|
+
newTagTemplate?: string | undefined;
|
|
2399
|
+
digestTemplate?: string | undefined;
|
|
2400
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2401
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2402
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2403
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2404
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2405
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2406
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2407
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
2408
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2409
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2410
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
2411
|
+
}, undefined>, undefined>, undefined>;
|
|
2412
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2413
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2414
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
2415
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2416
|
+
}, undefined>;
|
|
2417
|
+
}, undefined>, undefined>, undefined>;
|
|
2418
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2419
|
+
}, undefined>, undefined>, undefined>;
|
|
2420
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
2421
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
2422
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2423
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2424
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2425
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2426
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2427
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2428
|
+
}, undefined>, undefined>;
|
|
2429
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2430
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2431
|
+
key: string;
|
|
2432
|
+
secretRef?: {
|
|
2433
|
+
key: string;
|
|
2434
|
+
} | undefined;
|
|
2435
|
+
valueTemplate?: string | undefined;
|
|
2436
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2437
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2438
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
2439
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2440
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2441
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2442
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2443
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2444
|
+
}, undefined>, undefined>;
|
|
2445
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2446
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2447
|
+
key: string;
|
|
2448
|
+
secretRef?: {
|
|
2449
|
+
key: string;
|
|
2450
|
+
} | undefined;
|
|
2451
|
+
valueTemplate?: string | undefined;
|
|
2452
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2453
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1396
2454
|
}, undefined>, undefined>;
|
|
1397
2455
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1398
2456
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -1533,16 +2591,87 @@ export declare const toggleDependencyContract: {
|
|
|
1533
2591
|
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1534
2592
|
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1535
2593
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2594
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1536
2595
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
1537
2596
|
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1538
2597
|
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1539
2598
|
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1540
2599
|
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2600
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
1541
2601
|
}, undefined>], undefined>, undefined>;
|
|
1542
2602
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1543
2603
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1544
2604
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1545
2605
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2606
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2607
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2608
|
+
readonly newNameTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2609
|
+
readonly newTagTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2610
|
+
readonly digestTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2611
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2612
|
+
name: string;
|
|
2613
|
+
newNameTemplate?: string | undefined;
|
|
2614
|
+
newTagTemplate?: string | undefined;
|
|
2615
|
+
digestTemplate?: string | undefined;
|
|
2616
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
2617
|
+
name: string;
|
|
2618
|
+
newNameTemplate?: string | undefined;
|
|
2619
|
+
newTagTemplate?: string | undefined;
|
|
2620
|
+
digestTemplate?: string | undefined;
|
|
2621
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2622
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2623
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2624
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2625
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2626
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2627
|
+
readonly namespaceTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2628
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
2629
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2630
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2631
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
2632
|
+
}, undefined>, undefined>, undefined>;
|
|
2633
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2634
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2635
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
2636
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2637
|
+
}, undefined>;
|
|
2638
|
+
}, undefined>, undefined>, undefined>;
|
|
2639
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2640
|
+
}, undefined>, undefined>, undefined>;
|
|
2641
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
2642
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
2643
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
2644
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2645
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2646
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2647
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2648
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2649
|
+
}, undefined>, undefined>;
|
|
2650
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2651
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2652
|
+
key: string;
|
|
2653
|
+
secretRef?: {
|
|
2654
|
+
key: string;
|
|
2655
|
+
} | undefined;
|
|
2656
|
+
valueTemplate?: string | undefined;
|
|
2657
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2658
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2659
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
2660
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
2661
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2662
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
2663
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2664
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>;
|
|
2665
|
+
}, undefined>, undefined>;
|
|
2666
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2667
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2668
|
+
key: string;
|
|
2669
|
+
secretRef?: {
|
|
2670
|
+
key: string;
|
|
2671
|
+
} | undefined;
|
|
2672
|
+
valueTemplate?: string | undefined;
|
|
2673
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2674
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
1546
2675
|
}, undefined>, undefined>;
|
|
1547
2676
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1548
2677
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|