@cat-factory/contracts 0.336.0 → 0.338.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/environment-reachability.d.ts +246 -0
- package/dist/environment-reachability.d.ts.map +1 -0
- package/dist/environment-reachability.js +248 -0
- package/dist/environment-reachability.js.map +1 -0
- package/dist/environments.d.ts +276 -1
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +35 -0
- package/dist/environments.js.map +1 -1
- package/dist/execution.d.ts +4 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/frontend.d.ts +52 -1
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +69 -9
- package/dist/frontend.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +4 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +4 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/environmentUserHandlers.d.ts +6 -0
- package/dist/routes/environmentUserHandlers.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +105 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +20 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +2 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +10 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +6 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +4 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +2 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/testing.d.ts +9 -0
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +9 -0
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
package/dist/environments.d.ts
CHANGED
|
@@ -125,6 +125,17 @@ export type EnvironmentAccessMapping = v.InferOutput<typeof environmentAccessMap
|
|
|
125
125
|
*/
|
|
126
126
|
export declare const environmentResponseMappingSchema: v.ObjectSchema<{
|
|
127
127
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
128
|
+
/**
|
|
129
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
130
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
131
|
+
*
|
|
132
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
133
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
134
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
135
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
136
|
+
* is the only thing to try.
|
|
137
|
+
*/
|
|
138
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
128
139
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
129
140
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
130
141
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -240,6 +251,17 @@ export declare const environmentManifestSchema: v.ObjectSchema<{
|
|
|
240
251
|
}, undefined>, undefined>;
|
|
241
252
|
readonly response: v.ObjectSchema<{
|
|
242
253
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
254
|
+
/**
|
|
255
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
256
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
257
|
+
*
|
|
258
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
259
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
260
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
261
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
262
|
+
* is the only thing to try.
|
|
263
|
+
*/
|
|
264
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
243
265
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
244
266
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
245
267
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -325,8 +347,14 @@ export type ProvisionType = v.InferOutput<typeof provisionTypeSchema>;
|
|
|
325
347
|
* - `environment_missing` — a service whose steps run against an ephemeral environment has
|
|
326
348
|
* none at all. The fix is the CHAIN (a tester with no `deployer` ahead of it) rather than the
|
|
327
349
|
* provider, which is why it does not share `environment_not_ready`'s code.
|
|
350
|
+
* - `environment_unreachable`: the provider called it `ready`, and neither the URL's own name
|
|
351
|
+
* nor any address the provider stated for it carried. The one member of this vocabulary that
|
|
352
|
+
* is about REACHING rather than provisioning, and it is here rather than in
|
|
353
|
+
* `EnvironmentUnreachableReason` because this is the vocabulary the deployer settles a frame
|
|
354
|
+
* in. Which LAYER failed is the sibling vocabulary's answer and rides the environment's own
|
|
355
|
+
* `reachability.proof.reason`.
|
|
328
356
|
*/
|
|
329
|
-
export declare const environmentFailureReasonSchema: v.PicklistSchema<["deploy_runner_unwired", "config_incomplete", "manifest_invalid", "image_unavailable", "workload_unhealthy", "permission_denied", "cluster_unreachable", "timeout", "environment_not_ready", "environment_missing"], undefined>;
|
|
357
|
+
export declare const environmentFailureReasonSchema: v.PicklistSchema<["deploy_runner_unwired", "config_incomplete", "manifest_invalid", "image_unavailable", "workload_unhealthy", "permission_denied", "cluster_unreachable", "timeout", "environment_not_ready", "environment_missing", "environment_unreachable"], undefined>;
|
|
330
358
|
export type EnvironmentFailureReason = v.InferOutput<typeof environmentFailureReasonSchema>;
|
|
331
359
|
/** See {@link REPO_FIXABLE_ENVIRONMENT_FAILURES}. An absent/unknown reason is never fixable. */
|
|
332
360
|
export declare function isRepoFixableEnvironmentFailure(reason: string | null | undefined): reason is EnvironmentFailureReason;
|
|
@@ -518,6 +546,17 @@ export declare const environmentBackendConfigSchema: v.VariantSchema<"kind", [v.
|
|
|
518
546
|
}, undefined>, undefined>;
|
|
519
547
|
readonly response: v.ObjectSchema<{
|
|
520
548
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
549
|
+
/**
|
|
550
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
551
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
552
|
+
*
|
|
553
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
554
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
555
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
556
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
557
|
+
* is the only thing to try.
|
|
558
|
+
*/
|
|
559
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
521
560
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
522
561
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
523
562
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -912,6 +951,17 @@ export declare const environmentBackendConfigSchema: v.VariantSchema<"kind", [v.
|
|
|
912
951
|
}, undefined>, undefined>;
|
|
913
952
|
readonly response: v.ObjectSchema<{
|
|
914
953
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
954
|
+
/**
|
|
955
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
956
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
957
|
+
*
|
|
958
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
959
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
960
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
961
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
962
|
+
* is the only thing to try.
|
|
963
|
+
*/
|
|
964
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
915
965
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
916
966
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
917
967
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1402,6 +1452,17 @@ export declare const infraHandlerConfigSchema: v.VariantSchema<"engine", [v.Obje
|
|
|
1402
1452
|
}, undefined>, undefined>;
|
|
1403
1453
|
readonly response: v.ObjectSchema<{
|
|
1404
1454
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1455
|
+
/**
|
|
1456
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
1457
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
1458
|
+
*
|
|
1459
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
1460
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
1461
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
1462
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
1463
|
+
* is the only thing to try.
|
|
1464
|
+
*/
|
|
1465
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1405
1466
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1406
1467
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1407
1468
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1723,6 +1784,17 @@ export declare const infraHandlerConfigSchema: v.VariantSchema<"engine", [v.Obje
|
|
|
1723
1784
|
}, undefined>, undefined>;
|
|
1724
1785
|
readonly response: v.ObjectSchema<{
|
|
1725
1786
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1787
|
+
/**
|
|
1788
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
1789
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
1790
|
+
*
|
|
1791
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
1792
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
1793
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
1794
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
1795
|
+
* is the only thing to try.
|
|
1796
|
+
*/
|
|
1797
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1726
1798
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1727
1799
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1728
1800
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1914,6 +1986,17 @@ export declare const environmentHandlerViewSchema: v.ObjectSchema<{
|
|
|
1914
1986
|
}, undefined>, undefined>;
|
|
1915
1987
|
readonly response: v.ObjectSchema<{
|
|
1916
1988
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1989
|
+
/**
|
|
1990
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
1991
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
1992
|
+
*
|
|
1993
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
1994
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
1995
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
1996
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
1997
|
+
* is the only thing to try.
|
|
1998
|
+
*/
|
|
1999
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1917
2000
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1918
2001
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1919
2002
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2235,6 +2318,17 @@ export declare const environmentHandlerViewSchema: v.ObjectSchema<{
|
|
|
2235
2318
|
}, undefined>, undefined>;
|
|
2236
2319
|
readonly response: v.ObjectSchema<{
|
|
2237
2320
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2321
|
+
/**
|
|
2322
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
2323
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
2324
|
+
*
|
|
2325
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
2326
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
2327
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
2328
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
2329
|
+
* is the only thing to try.
|
|
2330
|
+
*/
|
|
2331
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2238
2332
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2239
2333
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2240
2334
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2380,6 +2474,17 @@ export declare const registerEnvironmentHandlerSchema: v.ObjectSchema<{
|
|
|
2380
2474
|
}, undefined>, undefined>;
|
|
2381
2475
|
readonly response: v.ObjectSchema<{
|
|
2382
2476
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2477
|
+
/**
|
|
2478
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
2479
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
2480
|
+
*
|
|
2481
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
2482
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
2483
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
2484
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
2485
|
+
* is the only thing to try.
|
|
2486
|
+
*/
|
|
2487
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2383
2488
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2384
2489
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2385
2490
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2701,6 +2806,17 @@ export declare const registerEnvironmentHandlerSchema: v.ObjectSchema<{
|
|
|
2701
2806
|
}, undefined>, undefined>;
|
|
2702
2807
|
readonly response: v.ObjectSchema<{
|
|
2703
2808
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2809
|
+
/**
|
|
2810
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
2811
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
2812
|
+
*
|
|
2813
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
2814
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
2815
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
2816
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
2817
|
+
* is the only thing to try.
|
|
2818
|
+
*/
|
|
2819
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2704
2820
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2705
2821
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2706
2822
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -2846,6 +2962,17 @@ export declare const testEnvironmentHandlerSchema: v.ObjectSchema<{
|
|
|
2846
2962
|
}, undefined>, undefined>;
|
|
2847
2963
|
readonly response: v.ObjectSchema<{
|
|
2848
2964
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2965
|
+
/**
|
|
2966
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
2967
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
2968
|
+
*
|
|
2969
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
2970
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
2971
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
2972
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
2973
|
+
* is the only thing to try.
|
|
2974
|
+
*/
|
|
2975
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2849
2976
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2850
2977
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2851
2978
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3167,6 +3294,17 @@ export declare const testEnvironmentHandlerSchema: v.ObjectSchema<{
|
|
|
3167
3294
|
}, undefined>, undefined>;
|
|
3168
3295
|
readonly response: v.ObjectSchema<{
|
|
3169
3296
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3297
|
+
/**
|
|
3298
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
3299
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
3300
|
+
*
|
|
3301
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
3302
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
3303
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
3304
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
3305
|
+
* is the only thing to try.
|
|
3306
|
+
*/
|
|
3307
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3170
3308
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3171
3309
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3172
3310
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3313,6 +3451,17 @@ export declare const upsertEnvironmentUserHandlerBodySchema: v.ObjectSchema<{
|
|
|
3313
3451
|
}, undefined>, undefined>;
|
|
3314
3452
|
readonly response: v.ObjectSchema<{
|
|
3315
3453
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3454
|
+
/**
|
|
3455
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
3456
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
3457
|
+
*
|
|
3458
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
3459
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
3460
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
3461
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
3462
|
+
* is the only thing to try.
|
|
3463
|
+
*/
|
|
3464
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3316
3465
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3317
3466
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3318
3467
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3634,6 +3783,17 @@ export declare const upsertEnvironmentUserHandlerBodySchema: v.ObjectSchema<{
|
|
|
3634
3783
|
}, undefined>, undefined>;
|
|
3635
3784
|
readonly response: v.ObjectSchema<{
|
|
3636
3785
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3786
|
+
/**
|
|
3787
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
3788
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
3789
|
+
*
|
|
3790
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
3791
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
3792
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
3793
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
3794
|
+
* is the only thing to try.
|
|
3795
|
+
*/
|
|
3796
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3637
3797
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3638
3798
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3639
3799
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -3795,6 +3955,17 @@ export declare const environmentHandlersBundleSchema: v.ObjectSchema<{
|
|
|
3795
3955
|
}, undefined>, undefined>;
|
|
3796
3956
|
readonly response: v.ObjectSchema<{
|
|
3797
3957
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3958
|
+
/**
|
|
3959
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
3960
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
3961
|
+
*
|
|
3962
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
3963
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
3964
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
3965
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
3966
|
+
* is the only thing to try.
|
|
3967
|
+
*/
|
|
3968
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3798
3969
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3799
3970
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3800
3971
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4116,6 +4287,17 @@ export declare const environmentHandlersBundleSchema: v.ObjectSchema<{
|
|
|
4116
4287
|
}, undefined>, undefined>;
|
|
4117
4288
|
readonly response: v.ObjectSchema<{
|
|
4118
4289
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4290
|
+
/**
|
|
4291
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
4292
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
4293
|
+
*
|
|
4294
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
4295
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
4296
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
4297
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
4298
|
+
* is the only thing to try.
|
|
4299
|
+
*/
|
|
4300
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4119
4301
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4120
4302
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4121
4303
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4202,6 +4384,33 @@ export declare const environmentHandleSchema: v.ObjectSchema<{
|
|
|
4202
4384
|
readonly providerId: v.StringSchema<undefined>;
|
|
4203
4385
|
readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4204
4386
|
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4387
|
+
/**
|
|
4388
|
+
* What the platform knows about ADDRESSING this environment, beside the name in `url`: the
|
|
4389
|
+
* addresses its provider states carry traffic for that name, and what dialling them proved.
|
|
4390
|
+
*
|
|
4391
|
+
* Beside `url` rather than folded into it because they answer different questions and only one
|
|
4392
|
+
* of them is a claim. `url` is what a browser opens and what an ingress routes on, and it stays
|
|
4393
|
+
* exactly as the provider published it; this is whether anything can actually get there, which
|
|
4394
|
+
* before it existed nothing had ever asked. Null for an environment provisioned before this
|
|
4395
|
+
* field, and for a provider that states no addresses and has not been probed.
|
|
4396
|
+
*/
|
|
4397
|
+
readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4398
|
+
readonly candidates: v.ArraySchema<v.ObjectSchema<{
|
|
4399
|
+
readonly address: v.StringSchema<undefined>;
|
|
4400
|
+
readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4401
|
+
}, undefined>, undefined>;
|
|
4402
|
+
readonly proof: v.NullableSchema<v.ObjectSchema<{
|
|
4403
|
+
readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
|
|
4404
|
+
readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4405
|
+
readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4406
|
+
readonly attempts: v.ArraySchema<v.ObjectSchema<{
|
|
4407
|
+
readonly target: v.StringSchema<undefined>;
|
|
4408
|
+
readonly outcome: v.StringSchema<undefined>;
|
|
4409
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4410
|
+
}, undefined>, undefined>;
|
|
4411
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4412
|
+
}, undefined>, undefined>;
|
|
4413
|
+
}, undefined>, undefined>, undefined>;
|
|
4205
4414
|
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
4206
4415
|
/** Present only on the dedicated access endpoint / in agent context. */
|
|
4207
4416
|
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
@@ -4349,6 +4558,17 @@ export declare const environmentConnectionSchema: v.ObjectSchema<{
|
|
|
4349
4558
|
}, undefined>, undefined>;
|
|
4350
4559
|
readonly response: v.ObjectSchema<{
|
|
4351
4560
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4561
|
+
/**
|
|
4562
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
4563
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
4564
|
+
*
|
|
4565
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
4566
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
4567
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
4568
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
4569
|
+
* is the only thing to try.
|
|
4570
|
+
*/
|
|
4571
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4352
4572
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4353
4573
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4354
4574
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4743,6 +4963,17 @@ export declare const environmentConnectionSchema: v.ObjectSchema<{
|
|
|
4743
4963
|
}, undefined>, undefined>;
|
|
4744
4964
|
readonly response: v.ObjectSchema<{
|
|
4745
4965
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4966
|
+
/**
|
|
4967
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
4968
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
4969
|
+
*
|
|
4970
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
4971
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
4972
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
4973
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
4974
|
+
* is the only thing to try.
|
|
4975
|
+
*/
|
|
4976
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4746
4977
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4747
4978
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4748
4979
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -4886,6 +5117,17 @@ export declare const registerEnvironmentProviderSchema: v.ObjectSchema<{
|
|
|
4886
5117
|
}, undefined>, undefined>;
|
|
4887
5118
|
readonly response: v.ObjectSchema<{
|
|
4888
5119
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5120
|
+
/**
|
|
5121
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
5122
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
5123
|
+
*
|
|
5124
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
5125
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
5126
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
5127
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
5128
|
+
* is the only thing to try.
|
|
5129
|
+
*/
|
|
5130
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4889
5131
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4890
5132
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4891
5133
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -5280,6 +5522,17 @@ export declare const registerEnvironmentProviderSchema: v.ObjectSchema<{
|
|
|
5280
5522
|
}, undefined>, undefined>;
|
|
5281
5523
|
readonly response: v.ObjectSchema<{
|
|
5282
5524
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5525
|
+
/**
|
|
5526
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
5527
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
5528
|
+
*
|
|
5529
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
5530
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
5531
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
5532
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
5533
|
+
* is the only thing to try.
|
|
5534
|
+
*/
|
|
5535
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5283
5536
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5284
5537
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5285
5538
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -5425,6 +5678,17 @@ export declare const testEnvironmentConnectionSchema: v.ObjectSchema<{
|
|
|
5425
5678
|
}, undefined>, undefined>;
|
|
5426
5679
|
readonly response: v.ObjectSchema<{
|
|
5427
5680
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5681
|
+
/**
|
|
5682
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
5683
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
5684
|
+
*
|
|
5685
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
5686
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
5687
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
5688
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
5689
|
+
* is the only thing to try.
|
|
5690
|
+
*/
|
|
5691
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5428
5692
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5429
5693
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5430
5694
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -5819,6 +6083,17 @@ export declare const testEnvironmentConnectionSchema: v.ObjectSchema<{
|
|
|
5819
6083
|
}, undefined>, undefined>;
|
|
5820
6084
|
readonly response: v.ObjectSchema<{
|
|
5821
6085
|
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6086
|
+
/**
|
|
6087
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
6088
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
6089
|
+
*
|
|
6090
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
6091
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
6092
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
6093
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
6094
|
+
* is the only thing to try.
|
|
6095
|
+
*/
|
|
6096
|
+
readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5822
6097
|
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5823
6098
|
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5824
6099
|
readonly from: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../src/environments.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../src/environments.ts"],"names":[],"mappings":"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"}
|
package/dist/environments.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
import { customBackendKindSchema, environmentSecretRefSchema, nonEmpty, urlString, } from './primitives.js';
|
|
3
|
+
import { environmentReachabilitySchema } from './environment-reachability.js';
|
|
3
4
|
import { stackRecipeSchema } from './stack-recipes.js';
|
|
4
5
|
import { eksProvisionConfigSchema, kubernetesHelmReleaseSchema, kubernetesImageOverrideSchema, kubernetesManifestSourceSchema, kubernetesProvisionConfigSchema, kubernetesRendererSchema, kubernetesSecretInjectionSchema, kubernetesUrlSourceSchema, } from './environments-kubernetes.js';
|
|
5
6
|
// ---------------------------------------------------------------------------
|
|
@@ -135,6 +136,17 @@ export const environmentAccessMappingSchema = v.object({
|
|
|
135
136
|
*/
|
|
136
137
|
export const environmentResponseMappingSchema = v.object({
|
|
137
138
|
urlPath: v.optional(v.string()),
|
|
139
|
+
/**
|
|
140
|
+
* Where the response states the ADDRESSES that carry traffic for `urlPath`'s host: a string, or
|
|
141
|
+
* an array of strings, or an array of `{ address, label }` objects.
|
|
142
|
+
*
|
|
143
|
+
* The half of addressing a URL cannot express. An org whose per-environment DNS record lives in
|
|
144
|
+
* an internal view publishes a name that resolves nowhere from the deployment while the
|
|
145
|
+
* balancers fronting it are perfectly reachable, and this is how such a provider says so
|
|
146
|
+
* without the platform having to know its topology. Absent (the ordinary case) means the name
|
|
147
|
+
* is the only thing to try.
|
|
148
|
+
*/
|
|
149
|
+
addressesPath: v.optional(v.string()),
|
|
138
150
|
statusPath: v.optional(v.string()),
|
|
139
151
|
statusMap: v.optional(v.array(v.object({ from: v.string(), to: environmentStatusSchema }))),
|
|
140
152
|
expiresAtPath: v.optional(v.string()),
|
|
@@ -237,6 +249,12 @@ export const provisionTypeSchema = v.picklist([
|
|
|
237
249
|
* - `environment_missing` — a service whose steps run against an ephemeral environment has
|
|
238
250
|
* none at all. The fix is the CHAIN (a tester with no `deployer` ahead of it) rather than the
|
|
239
251
|
* provider, which is why it does not share `environment_not_ready`'s code.
|
|
252
|
+
* - `environment_unreachable`: the provider called it `ready`, and neither the URL's own name
|
|
253
|
+
* nor any address the provider stated for it carried. The one member of this vocabulary that
|
|
254
|
+
* is about REACHING rather than provisioning, and it is here rather than in
|
|
255
|
+
* `EnvironmentUnreachableReason` because this is the vocabulary the deployer settles a frame
|
|
256
|
+
* in. Which LAYER failed is the sibling vocabulary's answer and rides the environment's own
|
|
257
|
+
* `reachability.proof.reason`.
|
|
240
258
|
*/
|
|
241
259
|
export const environmentFailureReasonSchema = v.picklist([
|
|
242
260
|
'deploy_runner_unwired',
|
|
@@ -249,6 +267,7 @@ export const environmentFailureReasonSchema = v.picklist([
|
|
|
249
267
|
'timeout',
|
|
250
268
|
'environment_not_ready',
|
|
251
269
|
'environment_missing',
|
|
270
|
+
'environment_unreachable',
|
|
252
271
|
]);
|
|
253
272
|
/**
|
|
254
273
|
* Whether a failure of this cause could be fixed by editing the repository the run has checked
|
|
@@ -283,6 +302,11 @@ const REPO_FIXABLE_ENVIRONMENT_FAILURES = {
|
|
|
283
302
|
timeout: false,
|
|
284
303
|
environment_not_ready: false,
|
|
285
304
|
environment_missing: false,
|
|
305
|
+
// A route that does not carry is a DNS zone, a security group or a load balancer, none of
|
|
306
|
+
// which is in the checkout. An agent handed "nothing could reach it" and a repo has exactly
|
|
307
|
+
// one move, which is to change the address the manifest publishes, and that is the fact the
|
|
308
|
+
// failure was reporting rather than the fault.
|
|
309
|
+
environment_unreachable: false,
|
|
286
310
|
};
|
|
287
311
|
/** See {@link REPO_FIXABLE_ENVIRONMENT_FAILURES}. An absent/unknown reason is never fixable. */
|
|
288
312
|
export function isRepoFixableEnvironmentFailure(reason) {
|
|
@@ -657,6 +681,17 @@ export const environmentHandleSchema = v.object({
|
|
|
657
681
|
providerId: v.string(),
|
|
658
682
|
externalId: v.nullable(v.string()),
|
|
659
683
|
url: v.nullable(v.string()),
|
|
684
|
+
/**
|
|
685
|
+
* What the platform knows about ADDRESSING this environment, beside the name in `url`: the
|
|
686
|
+
* addresses its provider states carry traffic for that name, and what dialling them proved.
|
|
687
|
+
*
|
|
688
|
+
* Beside `url` rather than folded into it because they answer different questions and only one
|
|
689
|
+
* of them is a claim. `url` is what a browser opens and what an ingress routes on, and it stays
|
|
690
|
+
* exactly as the provider published it; this is whether anything can actually get there, which
|
|
691
|
+
* before it existed nothing had ever asked. Null for an environment provisioned before this
|
|
692
|
+
* field, and for a provider that states no addresses and has not been probed.
|
|
693
|
+
*/
|
|
694
|
+
reachability: v.optional(v.nullable(environmentReachabilitySchema)),
|
|
660
695
|
status: environmentStatusSchema,
|
|
661
696
|
/** Present only on the dedicated access endpoint / in agent context. */
|
|
662
697
|
access: v.optional(environmentAccessHandleSchema),
|