@cat-factory/contracts 0.104.0 → 0.106.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.
Files changed (63) hide show
  1. package/dist/bootstrap.d.ts +2 -0
  2. package/dist/bootstrap.d.ts.map +1 -1
  3. package/dist/entities.d.ts +120 -0
  4. package/dist/entities.d.ts.map +1 -1
  5. package/dist/entities.js +38 -0
  6. package/dist/entities.js.map +1 -1
  7. package/dist/env-config-repair.d.ts +1 -0
  8. package/dist/env-config-repair.d.ts.map +1 -1
  9. package/dist/environments.d.ts +36 -0
  10. package/dist/environments.d.ts.map +1 -1
  11. package/dist/index.d.ts +1 -0
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +1 -0
  14. package/dist/index.js.map +1 -1
  15. package/dist/observability.d.ts +18 -0
  16. package/dist/observability.d.ts.map +1 -1
  17. package/dist/observability.js +25 -0
  18. package/dist/observability.js.map +1 -1
  19. package/dist/preflights.d.ts +107 -0
  20. package/dist/preflights.d.ts.map +1 -0
  21. package/dist/preflights.js +114 -0
  22. package/dist/preflights.js.map +1 -0
  23. package/dist/requests.d.ts +130 -4
  24. package/dist/requests.d.ts.map +1 -1
  25. package/dist/routes/agent-runs.d.ts +52 -0
  26. package/dist/routes/agent-runs.d.ts.map +1 -1
  27. package/dist/routes/board.d.ts +310 -4
  28. package/dist/routes/board.d.ts.map +1 -1
  29. package/dist/routes/bootstrap.d.ts +3 -0
  30. package/dist/routes/bootstrap.d.ts.map +1 -1
  31. package/dist/routes/environments.d.ts +18 -0
  32. package/dist/routes/environments.d.ts.map +1 -1
  33. package/dist/routes/execution.d.ts +274 -0
  34. package/dist/routes/execution.d.ts.map +1 -1
  35. package/dist/routes/execution.js +14 -1
  36. package/dist/routes/execution.js.map +1 -1
  37. package/dist/routes/human-review.d.ts +24 -0
  38. package/dist/routes/human-review.d.ts.map +1 -1
  39. package/dist/routes/human-test.d.ts +120 -0
  40. package/dist/routes/human-test.d.ts.map +1 -1
  41. package/dist/routes/index.d.ts +1 -0
  42. package/dist/routes/index.d.ts.map +1 -1
  43. package/dist/routes/index.js +1 -0
  44. package/dist/routes/index.js.map +1 -1
  45. package/dist/routes/initiative.d.ts +18 -0
  46. package/dist/routes/initiative.d.ts.map +1 -1
  47. package/dist/routes/preflights.d.ts +63 -0
  48. package/dist/routes/preflights.d.ts.map +1 -0
  49. package/dist/routes/preflights.js +27 -0
  50. package/dist/routes/preflights.js.map +1 -0
  51. package/dist/routes/tasks.d.ts +54 -0
  52. package/dist/routes/tasks.d.ts.map +1 -1
  53. package/dist/routes/visual-confirm.d.ts +72 -0
  54. package/dist/routes/visual-confirm.d.ts.map +1 -1
  55. package/dist/routes/workspaces.d.ts +88 -0
  56. package/dist/routes/workspaces.d.ts.map +1 -1
  57. package/dist/snapshot.d.ts +44 -0
  58. package/dist/snapshot.d.ts.map +1 -1
  59. package/dist/stack-recipes.d.ts +24 -0
  60. package/dist/stack-recipes.d.ts.map +1 -1
  61. package/dist/stack-recipes.js +8 -0
  62. package/dist/stack-recipes.js.map +1 -1
  63. package/package.json +1 -1
@@ -115,6 +115,24 @@ export declare const addFrameContract: {
115
115
  }, undefined>, undefined>, undefined>;
116
116
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
117
117
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
118
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
119
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
120
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
121
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
122
+ readonly registry: 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 host: 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>;
124
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
125
+ readonly url: 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>;
126
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
127
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
128
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
129
+ readonly file: 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>;
130
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
131
+ }, undefined>, undefined>;
132
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
133
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
134
+ readonly label: 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>;
135
+ }, undefined>, undefined>, undefined>;
118
136
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
119
137
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
120
138
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -468,6 +486,24 @@ export declare const addServiceFromRepoContract: {
468
486
  }, undefined>, undefined>, undefined>;
469
487
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
470
488
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
489
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
490
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
491
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
492
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
493
+ readonly registry: 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>;
494
+ readonly host: 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>;
495
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
496
+ readonly url: 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>;
497
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
498
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
499
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
500
+ readonly file: 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>;
501
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
502
+ }, undefined>, undefined>;
503
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
504
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
505
+ readonly label: 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>;
506
+ }, undefined>, undefined>, undefined>;
471
507
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
472
508
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
473
509
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -847,6 +883,24 @@ export declare const addTaskContract: {
847
883
  }, undefined>, undefined>, undefined>;
848
884
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
849
885
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
886
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
887
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
888
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
889
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
890
+ readonly registry: 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>;
891
+ readonly host: 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>;
892
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
893
+ readonly url: 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>;
894
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
895
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
896
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
897
+ readonly file: 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>;
898
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
899
+ }, undefined>, undefined>;
900
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
901
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
902
+ readonly label: 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>;
903
+ }, undefined>, undefined>, undefined>;
850
904
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
851
905
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
852
906
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -1202,6 +1256,24 @@ export declare const addModuleContract: {
1202
1256
  }, undefined>, undefined>, undefined>;
1203
1257
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1204
1258
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1259
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1260
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
1261
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1262
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
1263
+ readonly registry: 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>;
1264
+ readonly host: 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>;
1265
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
1266
+ readonly url: 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>;
1267
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
1268
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
1269
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
1270
+ readonly file: 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>;
1271
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
1272
+ }, undefined>, undefined>;
1273
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
1274
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
1275
+ readonly label: 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>;
1276
+ }, undefined>, undefined>, undefined>;
1205
1277
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
1206
1278
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
1207
1279
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -1554,6 +1626,24 @@ export declare const addEpicContract: {
1554
1626
  }, undefined>, undefined>, undefined>;
1555
1627
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1556
1628
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1629
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1630
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
1631
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1632
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
1633
+ readonly registry: 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>;
1634
+ readonly host: 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>;
1635
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
1636
+ readonly url: 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>;
1637
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
1638
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
1639
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
1640
+ readonly file: 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>;
1641
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
1642
+ }, undefined>, undefined>;
1643
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
1644
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
1645
+ readonly label: 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>;
1646
+ }, undefined>, undefined>, undefined>;
1557
1647
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
1558
1648
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
1559
1649
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -1905,6 +1995,24 @@ export declare const assignEpicContract: {
1905
1995
  }, undefined>, undefined>, undefined>;
1906
1996
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1907
1997
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
1998
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1999
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
2000
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
2001
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
2002
+ readonly registry: 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>;
2003
+ readonly host: 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>;
2004
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
2005
+ readonly url: 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>;
2006
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
2007
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2008
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
2009
+ readonly file: 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>;
2010
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2011
+ }, undefined>, undefined>;
2012
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
2013
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
2014
+ readonly label: 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>;
2015
+ }, undefined>, undefined>, undefined>;
1908
2016
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
1909
2017
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
1910
2018
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -2191,6 +2299,24 @@ export declare const updateBlockContract: {
2191
2299
  }, undefined>, undefined>, undefined>;
2192
2300
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
2193
2301
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
2302
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
2303
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
2304
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
2305
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
2306
+ readonly registry: 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>;
2307
+ readonly host: 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>;
2308
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
2309
+ readonly url: 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>;
2310
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
2311
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2312
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
2313
+ readonly file: 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>;
2314
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2315
+ }, undefined>, undefined>;
2316
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
2317
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
2318
+ readonly label: 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>;
2319
+ }, undefined>, undefined>, undefined>;
2194
2320
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
2195
2321
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
2196
2322
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -2456,6 +2582,24 @@ export declare const updateBlockContract: {
2456
2582
  }, undefined>, undefined>, undefined>;
2457
2583
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
2458
2584
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
2585
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
2586
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
2587
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
2588
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
2589
+ readonly registry: 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>;
2590
+ readonly host: 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>;
2591
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
2592
+ readonly url: 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>;
2593
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
2594
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2595
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
2596
+ readonly file: 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>;
2597
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
2598
+ }, undefined>, undefined>;
2599
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
2600
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
2601
+ readonly label: 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>;
2602
+ }, undefined>, undefined>, undefined>;
2459
2603
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
2460
2604
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
2461
2605
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -2723,6 +2867,24 @@ export declare const updateBlockContract: {
2723
2867
  }[] | undefined;
2724
2868
  externalNetworks?: string[] | undefined;
2725
2869
  sharedStackRefs?: string[] | undefined;
2870
+ prerequisites?: {
2871
+ check: "disk-space" | "docker-daemon" | "env-secrets-marker" | "hosts-entries" | "http-reachable" | "memory" | "mkcert-ca" | "registry-auth" | "tcp-reachable";
2872
+ params?: {
2873
+ minGib?: number | undefined;
2874
+ registry?: string | undefined;
2875
+ host?: string | undefined;
2876
+ port?: number | undefined;
2877
+ url?: string | undefined;
2878
+ expectStatus?: number | undefined;
2879
+ expectBodyContains?: string | undefined;
2880
+ hostnames?: string[] | undefined;
2881
+ file?: string | undefined;
2882
+ marker?: string | undefined;
2883
+ } | undefined;
2884
+ required?: boolean | undefined;
2885
+ remediation?: string | undefined;
2886
+ label?: string | undefined;
2887
+ }[] | undefined;
2726
2888
  setupSteps?: ({
2727
2889
  kind: "compose-exec";
2728
2890
  name: string;
@@ -2960,6 +3122,24 @@ export declare const updateBlockContract: {
2960
3122
  }[] | undefined;
2961
3123
  externalNetworks?: string[] | undefined;
2962
3124
  sharedStackRefs?: string[] | undefined;
3125
+ prerequisites?: {
3126
+ check: "disk-space" | "docker-daemon" | "env-secrets-marker" | "hosts-entries" | "http-reachable" | "memory" | "mkcert-ca" | "registry-auth" | "tcp-reachable";
3127
+ params?: {
3128
+ minGib?: number | undefined;
3129
+ registry?: string | undefined;
3130
+ host?: string | undefined;
3131
+ port?: number | undefined;
3132
+ url?: string | undefined;
3133
+ expectStatus?: number | undefined;
3134
+ expectBodyContains?: string | undefined;
3135
+ hostnames?: string[] | undefined;
3136
+ file?: string | undefined;
3137
+ marker?: string | undefined;
3138
+ } | undefined;
3139
+ required?: boolean | undefined;
3140
+ remediation?: string | undefined;
3141
+ label?: string | undefined;
3142
+ }[] | undefined;
2963
3143
  setupSteps?: ({
2964
3144
  kind: "compose-exec";
2965
3145
  name: string;
@@ -3198,6 +3378,24 @@ export declare const updateBlockContract: {
3198
3378
  }[] | undefined;
3199
3379
  externalNetworks?: string[] | undefined;
3200
3380
  sharedStackRefs?: string[] | undefined;
3381
+ prerequisites?: {
3382
+ check: "disk-space" | "docker-daemon" | "env-secrets-marker" | "hosts-entries" | "http-reachable" | "memory" | "mkcert-ca" | "registry-auth" | "tcp-reachable";
3383
+ params?: {
3384
+ minGib?: number | undefined;
3385
+ registry?: string | undefined;
3386
+ host?: string | undefined;
3387
+ port?: number | undefined;
3388
+ url?: string | undefined;
3389
+ expectStatus?: number | undefined;
3390
+ expectBodyContains?: string | undefined;
3391
+ hostnames?: string[] | undefined;
3392
+ file?: string | undefined;
3393
+ marker?: string | undefined;
3394
+ } | undefined;
3395
+ required?: boolean | undefined;
3396
+ remediation?: string | undefined;
3397
+ label?: string | undefined;
3398
+ }[] | undefined;
3201
3399
  setupSteps?: ({
3202
3400
  kind: "compose-exec";
3203
3401
  name: string;
@@ -3400,7 +3598,7 @@ export declare const updateBlockContract: {
3400
3598
  key: string;
3401
3599
  } | undefined;
3402
3600
  valueTemplate?: string | undefined;
3403
- }> | import("valibot").IntegerIssue<number> | 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, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
3601
+ }> | import("valibot").IntegerIssue<number> | 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, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
3404
3602
  serviceBlockId: string;
3405
3603
  description?: string | undefined;
3406
3604
  }[], 50> | import("valibot").MaxLengthIssue<{
@@ -3409,7 +3607,7 @@ export declare const updateBlockContract: {
3409
3607
  name: string;
3410
3608
  defaultBranch: string;
3411
3609
  connectionId?: number | undefined;
3412
- }[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue>;
3610
+ }[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue>;
3413
3611
  readonly "~types"?: {
3414
3612
  readonly input: {
3415
3613
  title?: string | undefined;
@@ -3457,6 +3655,24 @@ export declare const updateBlockContract: {
3457
3655
  }[] | undefined;
3458
3656
  externalNetworks?: string[] | undefined;
3459
3657
  sharedStackRefs?: string[] | undefined;
3658
+ prerequisites?: {
3659
+ check: "disk-space" | "docker-daemon" | "env-secrets-marker" | "hosts-entries" | "http-reachable" | "memory" | "mkcert-ca" | "registry-auth" | "tcp-reachable";
3660
+ params?: {
3661
+ minGib?: number | undefined;
3662
+ registry?: string | undefined;
3663
+ host?: string | undefined;
3664
+ port?: number | undefined;
3665
+ url?: string | undefined;
3666
+ expectStatus?: number | undefined;
3667
+ expectBodyContains?: string | undefined;
3668
+ hostnames?: string[] | undefined;
3669
+ file?: string | undefined;
3670
+ marker?: string | undefined;
3671
+ } | undefined;
3672
+ required?: boolean | undefined;
3673
+ remediation?: string | undefined;
3674
+ label?: string | undefined;
3675
+ }[] | undefined;
3460
3676
  setupSteps?: ({
3461
3677
  kind: "compose-exec";
3462
3678
  name: string;
@@ -3695,6 +3911,24 @@ export declare const updateBlockContract: {
3695
3911
  }[] | undefined;
3696
3912
  externalNetworks?: string[] | undefined;
3697
3913
  sharedStackRefs?: string[] | undefined;
3914
+ prerequisites?: {
3915
+ check: "disk-space" | "docker-daemon" | "env-secrets-marker" | "hosts-entries" | "http-reachable" | "memory" | "mkcert-ca" | "registry-auth" | "tcp-reachable";
3916
+ params?: {
3917
+ minGib?: number | undefined;
3918
+ registry?: string | undefined;
3919
+ host?: string | undefined;
3920
+ port?: number | undefined;
3921
+ url?: string | undefined;
3922
+ expectStatus?: number | undefined;
3923
+ expectBodyContains?: string | undefined;
3924
+ hostnames?: string[] | undefined;
3925
+ file?: string | undefined;
3926
+ marker?: string | undefined;
3927
+ } | undefined;
3928
+ required?: boolean | undefined;
3929
+ remediation?: string | undefined;
3930
+ label?: string | undefined;
3931
+ }[] | undefined;
3698
3932
  setupSteps?: ({
3699
3933
  kind: "compose-exec";
3700
3934
  name: string;
@@ -3898,7 +4132,7 @@ export declare const updateBlockContract: {
3898
4132
  key: string;
3899
4133
  } | undefined;
3900
4134
  valueTemplate?: string | undefined;
3901
- }> | import("valibot").IntegerIssue<number> | 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, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
4135
+ }> | import("valibot").IntegerIssue<number> | 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, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
3902
4136
  serviceBlockId: string;
3903
4137
  description?: string | undefined;
3904
4138
  }[], 50> | import("valibot").MaxLengthIssue<{
@@ -3907,7 +4141,7 @@ export declare const updateBlockContract: {
3907
4141
  name: string;
3908
4142
  defaultBranch: string;
3909
4143
  connectionId?: number | undefined;
3910
- }[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue;
4144
+ }[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue;
3911
4145
  } | undefined;
3912
4146
  };
3913
4147
  readonly responsesByStatusCode: {
@@ -4016,6 +4250,24 @@ export declare const updateBlockContract: {
4016
4250
  }, undefined>, undefined>, undefined>;
4017
4251
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4018
4252
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4253
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
4254
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
4255
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4256
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
4257
+ readonly registry: 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>;
4258
+ readonly host: 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>;
4259
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
4260
+ readonly url: 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>;
4261
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
4262
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
4263
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
4264
+ readonly file: 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>;
4265
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
4266
+ }, undefined>, undefined>;
4267
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
4268
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
4269
+ readonly label: 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>;
4270
+ }, undefined>, undefined>, undefined>;
4019
4271
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
4020
4272
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
4021
4273
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -4370,6 +4622,24 @@ export declare const moveBlockContract: {
4370
4622
  }, undefined>, undefined>, undefined>;
4371
4623
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4372
4624
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4625
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
4626
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
4627
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4628
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
4629
+ readonly registry: 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>;
4630
+ readonly host: 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>;
4631
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
4632
+ readonly url: 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>;
4633
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
4634
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
4635
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
4636
+ readonly file: 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>;
4637
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
4638
+ }, undefined>, undefined>;
4639
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
4640
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
4641
+ readonly label: 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>;
4642
+ }, undefined>, undefined>, undefined>;
4373
4643
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
4374
4644
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
4375
4645
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -4725,6 +4995,24 @@ export declare const reparentBlockContract: {
4725
4995
  }, undefined>, undefined>, undefined>;
4726
4996
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4727
4997
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
4998
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
4999
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
5000
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5001
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
5002
+ readonly registry: 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>;
5003
+ readonly host: 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>;
5004
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
5005
+ readonly url: 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>;
5006
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
5007
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
5008
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
5009
+ readonly file: 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>;
5010
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
5011
+ }, undefined>, undefined>;
5012
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
5013
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
5014
+ readonly label: 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>;
5015
+ }, undefined>, undefined>, undefined>;
4728
5016
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
4729
5017
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
4730
5018
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
@@ -5110,6 +5398,24 @@ export declare const toggleDependencyContract: {
5110
5398
  }, undefined>, undefined>, undefined>;
5111
5399
  readonly externalNetworks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
5112
5400
  readonly sharedStackRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
5401
+ readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
5402
+ readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
5403
+ readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5404
+ readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
5405
+ readonly registry: 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>;
5406
+ readonly host: 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>;
5407
+ readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
5408
+ readonly url: 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>;
5409
+ readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
5410
+ readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
5411
+ readonly hostnames: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
5412
+ readonly file: 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>;
5413
+ readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
5414
+ }, undefined>, undefined>;
5415
+ readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
5416
+ readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
5417
+ readonly label: 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>;
5418
+ }, undefined>, undefined>, undefined>;
5113
5419
  readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
5114
5420
  readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
5115
5421
  readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;