@cat-factory/contracts 0.339.0 → 0.341.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 (45) hide show
  1. package/dist/bootstrap.d.ts +135 -4
  2. package/dist/bootstrap.d.ts.map +1 -1
  3. package/dist/bootstrap.js +82 -3
  4. package/dist/bootstrap.js.map +1 -1
  5. package/dist/environment-reachability.d.ts +139 -16
  6. package/dist/environment-reachability.d.ts.map +1 -1
  7. package/dist/environment-reachability.js +108 -12
  8. package/dist/environment-reachability.js.map +1 -1
  9. package/dist/environments.d.ts +311 -1
  10. package/dist/environments.d.ts.map +1 -1
  11. package/dist/environments.js +14 -0
  12. package/dist/environments.js.map +1 -1
  13. package/dist/errors.d.ts +1 -1
  14. package/dist/errors.d.ts.map +1 -1
  15. package/dist/errors.js +14 -0
  16. package/dist/errors.js.map +1 -1
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.d.ts.map +1 -1
  19. package/dist/index.js +1 -0
  20. package/dist/index.js.map +1 -1
  21. package/dist/monorepo-adoption.d.ts +220 -0
  22. package/dist/monorepo-adoption.d.ts.map +1 -0
  23. package/dist/monorepo-adoption.js +201 -0
  24. package/dist/monorepo-adoption.js.map +1 -0
  25. package/dist/public-provisioning.d.ts +13 -2
  26. package/dist/public-provisioning.d.ts.map +1 -1
  27. package/dist/public-provisioning.js +12 -1
  28. package/dist/public-provisioning.js.map +1 -1
  29. package/dist/routes/agent-runs.d.ts +94 -2
  30. package/dist/routes/agent-runs.d.ts.map +1 -1
  31. package/dist/routes/bootstrap.d.ts +289 -3
  32. package/dist/routes/bootstrap.d.ts.map +1 -1
  33. package/dist/routes/bootstrap.js +19 -0
  34. package/dist/routes/bootstrap.js.map +1 -1
  35. package/dist/routes/environmentUserHandlers.d.ts +6 -0
  36. package/dist/routes/environmentUserHandlers.d.ts.map +1 -1
  37. package/dist/routes/environments.d.ts +35 -5
  38. package/dist/routes/environments.d.ts.map +1 -1
  39. package/dist/routes/public-provisioning.d.ts +4 -2
  40. package/dist/routes/public-provisioning.d.ts.map +1 -1
  41. package/dist/routes/workspaces.d.ts +94 -2
  42. package/dist/routes/workspaces.d.ts.map +1 -1
  43. package/dist/snapshot.d.ts +47 -1
  44. package/dist/snapshot.d.ts.map +1 -1
  45. package/package.json +1 -1
@@ -136,6 +136,20 @@ export declare const environmentResponseMappingSchema: v.ObjectSchema<{
136
136
  * is the only thing to try.
137
137
  */
138
138
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
139
+ /**
140
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
141
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
142
+ * dials, and grades every address it answers with exactly as a stated address is graded.
143
+ *
144
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
145
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
146
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
147
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
148
+ * addresses are then tried ahead of the names; a provider that wants a different order between
149
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
150
+ * is the one shape that can interleave them.
151
+ */
152
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
139
153
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
140
154
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
141
155
  readonly from: v.StringSchema<undefined>;
@@ -262,6 +276,20 @@ export declare const environmentManifestSchema: v.ObjectSchema<{
262
276
  * is the only thing to try.
263
277
  */
264
278
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
279
+ /**
280
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
281
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
282
+ * dials, and grades every address it answers with exactly as a stated address is graded.
283
+ *
284
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
285
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
286
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
287
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
288
+ * addresses are then tried ahead of the names; a provider that wants a different order between
289
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
290
+ * is the one shape that can interleave them.
291
+ */
292
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
265
293
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
266
294
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
267
295
  readonly from: v.StringSchema<undefined>;
@@ -557,6 +585,20 @@ export declare const environmentBackendConfigSchema: v.VariantSchema<"kind", [v.
557
585
  * is the only thing to try.
558
586
  */
559
587
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
588
+ /**
589
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
590
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
591
+ * dials, and grades every address it answers with exactly as a stated address is graded.
592
+ *
593
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
594
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
595
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
596
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
597
+ * addresses are then tried ahead of the names; a provider that wants a different order between
598
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
599
+ * is the one shape that can interleave them.
600
+ */
601
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
560
602
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
561
603
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
562
604
  readonly from: v.StringSchema<undefined>;
@@ -962,6 +1004,20 @@ export declare const environmentBackendConfigSchema: v.VariantSchema<"kind", [v.
962
1004
  * is the only thing to try.
963
1005
  */
964
1006
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1007
+ /**
1008
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
1009
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
1010
+ * dials, and grades every address it answers with exactly as a stated address is graded.
1011
+ *
1012
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
1013
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
1014
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
1015
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
1016
+ * addresses are then tried ahead of the names; a provider that wants a different order between
1017
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
1018
+ * is the one shape that can interleave them.
1019
+ */
1020
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
965
1021
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
966
1022
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
967
1023
  readonly from: v.StringSchema<undefined>;
@@ -1463,6 +1519,20 @@ export declare const infraHandlerConfigSchema: v.VariantSchema<"engine", [v.Obje
1463
1519
  * is the only thing to try.
1464
1520
  */
1465
1521
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1522
+ /**
1523
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
1524
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
1525
+ * dials, and grades every address it answers with exactly as a stated address is graded.
1526
+ *
1527
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
1528
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
1529
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
1530
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
1531
+ * addresses are then tried ahead of the names; a provider that wants a different order between
1532
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
1533
+ * is the one shape that can interleave them.
1534
+ */
1535
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1466
1536
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1467
1537
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1468
1538
  readonly from: v.StringSchema<undefined>;
@@ -1795,6 +1865,20 @@ export declare const infraHandlerConfigSchema: v.VariantSchema<"engine", [v.Obje
1795
1865
  * is the only thing to try.
1796
1866
  */
1797
1867
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1868
+ /**
1869
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
1870
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
1871
+ * dials, and grades every address it answers with exactly as a stated address is graded.
1872
+ *
1873
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
1874
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
1875
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
1876
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
1877
+ * addresses are then tried ahead of the names; a provider that wants a different order between
1878
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
1879
+ * is the one shape that can interleave them.
1880
+ */
1881
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1798
1882
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1799
1883
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1800
1884
  readonly from: v.StringSchema<undefined>;
@@ -1997,6 +2081,20 @@ export declare const environmentHandlerViewSchema: v.ObjectSchema<{
1997
2081
  * is the only thing to try.
1998
2082
  */
1999
2083
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2084
+ /**
2085
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
2086
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
2087
+ * dials, and grades every address it answers with exactly as a stated address is graded.
2088
+ *
2089
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
2090
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
2091
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
2092
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
2093
+ * addresses are then tried ahead of the names; a provider that wants a different order between
2094
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
2095
+ * is the one shape that can interleave them.
2096
+ */
2097
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2000
2098
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2001
2099
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2002
2100
  readonly from: v.StringSchema<undefined>;
@@ -2329,6 +2427,20 @@ export declare const environmentHandlerViewSchema: v.ObjectSchema<{
2329
2427
  * is the only thing to try.
2330
2428
  */
2331
2429
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2430
+ /**
2431
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
2432
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
2433
+ * dials, and grades every address it answers with exactly as a stated address is graded.
2434
+ *
2435
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
2436
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
2437
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
2438
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
2439
+ * addresses are then tried ahead of the names; a provider that wants a different order between
2440
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
2441
+ * is the one shape that can interleave them.
2442
+ */
2443
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2332
2444
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2333
2445
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2334
2446
  readonly from: v.StringSchema<undefined>;
@@ -2485,6 +2597,20 @@ export declare const registerEnvironmentHandlerSchema: v.ObjectSchema<{
2485
2597
  * is the only thing to try.
2486
2598
  */
2487
2599
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2600
+ /**
2601
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
2602
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
2603
+ * dials, and grades every address it answers with exactly as a stated address is graded.
2604
+ *
2605
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
2606
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
2607
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
2608
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
2609
+ * addresses are then tried ahead of the names; a provider that wants a different order between
2610
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
2611
+ * is the one shape that can interleave them.
2612
+ */
2613
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2488
2614
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2489
2615
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2490
2616
  readonly from: v.StringSchema<undefined>;
@@ -2817,6 +2943,20 @@ export declare const registerEnvironmentHandlerSchema: v.ObjectSchema<{
2817
2943
  * is the only thing to try.
2818
2944
  */
2819
2945
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2946
+ /**
2947
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
2948
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
2949
+ * dials, and grades every address it answers with exactly as a stated address is graded.
2950
+ *
2951
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
2952
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
2953
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
2954
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
2955
+ * addresses are then tried ahead of the names; a provider that wants a different order between
2956
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
2957
+ * is the one shape that can interleave them.
2958
+ */
2959
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2820
2960
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2821
2961
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2822
2962
  readonly from: v.StringSchema<undefined>;
@@ -2973,6 +3113,20 @@ export declare const testEnvironmentHandlerSchema: v.ObjectSchema<{
2973
3113
  * is the only thing to try.
2974
3114
  */
2975
3115
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3116
+ /**
3117
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
3118
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
3119
+ * dials, and grades every address it answers with exactly as a stated address is graded.
3120
+ *
3121
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
3122
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
3123
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
3124
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
3125
+ * addresses are then tried ahead of the names; a provider that wants a different order between
3126
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
3127
+ * is the one shape that can interleave them.
3128
+ */
3129
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2976
3130
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2977
3131
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2978
3132
  readonly from: v.StringSchema<undefined>;
@@ -3305,6 +3459,20 @@ export declare const testEnvironmentHandlerSchema: v.ObjectSchema<{
3305
3459
  * is the only thing to try.
3306
3460
  */
3307
3461
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3462
+ /**
3463
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
3464
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
3465
+ * dials, and grades every address it answers with exactly as a stated address is graded.
3466
+ *
3467
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
3468
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
3469
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
3470
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
3471
+ * addresses are then tried ahead of the names; a provider that wants a different order between
3472
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
3473
+ * is the one shape that can interleave them.
3474
+ */
3475
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3308
3476
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3309
3477
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3310
3478
  readonly from: v.StringSchema<undefined>;
@@ -3462,6 +3630,20 @@ export declare const upsertEnvironmentUserHandlerBodySchema: v.ObjectSchema<{
3462
3630
  * is the only thing to try.
3463
3631
  */
3464
3632
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3633
+ /**
3634
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
3635
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
3636
+ * dials, and grades every address it answers with exactly as a stated address is graded.
3637
+ *
3638
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
3639
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
3640
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
3641
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
3642
+ * addresses are then tried ahead of the names; a provider that wants a different order between
3643
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
3644
+ * is the one shape that can interleave them.
3645
+ */
3646
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3465
3647
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3466
3648
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3467
3649
  readonly from: v.StringSchema<undefined>;
@@ -3794,6 +3976,20 @@ export declare const upsertEnvironmentUserHandlerBodySchema: v.ObjectSchema<{
3794
3976
  * is the only thing to try.
3795
3977
  */
3796
3978
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3979
+ /**
3980
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
3981
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
3982
+ * dials, and grades every address it answers with exactly as a stated address is graded.
3983
+ *
3984
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
3985
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
3986
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
3987
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
3988
+ * addresses are then tried ahead of the names; a provider that wants a different order between
3989
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
3990
+ * is the one shape that can interleave them.
3991
+ */
3992
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3797
3993
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3798
3994
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3799
3995
  readonly from: v.StringSchema<undefined>;
@@ -3966,6 +4162,20 @@ export declare const environmentHandlersBundleSchema: v.ObjectSchema<{
3966
4162
  * is the only thing to try.
3967
4163
  */
3968
4164
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4165
+ /**
4166
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
4167
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
4168
+ * dials, and grades every address it answers with exactly as a stated address is graded.
4169
+ *
4170
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
4171
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
4172
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
4173
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
4174
+ * addresses are then tried ahead of the names; a provider that wants a different order between
4175
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
4176
+ * is the one shape that can interleave them.
4177
+ */
4178
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3969
4179
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3970
4180
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3971
4181
  readonly from: v.StringSchema<undefined>;
@@ -4298,6 +4508,20 @@ export declare const environmentHandlersBundleSchema: v.ObjectSchema<{
4298
4508
  * is the only thing to try.
4299
4509
  */
4300
4510
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4511
+ /**
4512
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
4513
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
4514
+ * dials, and grades every address it answers with exactly as a stated address is graded.
4515
+ *
4516
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
4517
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
4518
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
4519
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
4520
+ * addresses are then tried ahead of the names; a provider that wants a different order between
4521
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
4522
+ * is the one shape that can interleave them.
4523
+ */
4524
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4301
4525
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4302
4526
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4303
4527
  readonly from: v.StringSchema<undefined>;
@@ -4396,12 +4620,14 @@ export declare const environmentHandleSchema: v.ObjectSchema<{
4396
4620
  */
4397
4621
  readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
4398
4622
  readonly candidates: v.ArraySchema<v.ObjectSchema<{
4399
- readonly address: v.StringSchema<undefined>;
4623
+ readonly address: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4624
+ readonly host: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4400
4625
  readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4401
4626
  }, undefined>, undefined>;
4402
4627
  readonly proof: v.NullableSchema<v.ObjectSchema<{
4403
4628
  readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
4404
4629
  readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
4630
+ readonly viaHost: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4405
4631
  readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
4406
4632
  readonly attempts: v.ArraySchema<v.ObjectSchema<{
4407
4633
  readonly target: v.StringSchema<undefined>;
@@ -4589,6 +4815,20 @@ export declare const environmentConnectionSchema: v.ObjectSchema<{
4589
4815
  * is the only thing to try.
4590
4816
  */
4591
4817
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4818
+ /**
4819
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
4820
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
4821
+ * dials, and grades every address it answers with exactly as a stated address is graded.
4822
+ *
4823
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
4824
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
4825
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
4826
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
4827
+ * addresses are then tried ahead of the names; a provider that wants a different order between
4828
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
4829
+ * is the one shape that can interleave them.
4830
+ */
4831
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4592
4832
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4593
4833
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4594
4834
  readonly from: v.StringSchema<undefined>;
@@ -4994,6 +5234,20 @@ export declare const environmentConnectionSchema: v.ObjectSchema<{
4994
5234
  * is the only thing to try.
4995
5235
  */
4996
5236
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5237
+ /**
5238
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
5239
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
5240
+ * dials, and grades every address it answers with exactly as a stated address is graded.
5241
+ *
5242
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
5243
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
5244
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
5245
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
5246
+ * addresses are then tried ahead of the names; a provider that wants a different order between
5247
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
5248
+ * is the one shape that can interleave them.
5249
+ */
5250
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4997
5251
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4998
5252
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4999
5253
  readonly from: v.StringSchema<undefined>;
@@ -5148,6 +5402,20 @@ export declare const registerEnvironmentProviderSchema: v.ObjectSchema<{
5148
5402
  * is the only thing to try.
5149
5403
  */
5150
5404
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5405
+ /**
5406
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
5407
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
5408
+ * dials, and grades every address it answers with exactly as a stated address is graded.
5409
+ *
5410
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
5411
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
5412
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
5413
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
5414
+ * addresses are then tried ahead of the names; a provider that wants a different order between
5415
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
5416
+ * is the one shape that can interleave them.
5417
+ */
5418
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5151
5419
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5152
5420
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
5153
5421
  readonly from: v.StringSchema<undefined>;
@@ -5553,6 +5821,20 @@ export declare const registerEnvironmentProviderSchema: v.ObjectSchema<{
5553
5821
  * is the only thing to try.
5554
5822
  */
5555
5823
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5824
+ /**
5825
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
5826
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
5827
+ * dials, and grades every address it answers with exactly as a stated address is graded.
5828
+ *
5829
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
5830
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
5831
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
5832
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
5833
+ * addresses are then tried ahead of the names; a provider that wants a different order between
5834
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
5835
+ * is the one shape that can interleave them.
5836
+ */
5837
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5556
5838
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5557
5839
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
5558
5840
  readonly from: v.StringSchema<undefined>;
@@ -5709,6 +5991,20 @@ export declare const testEnvironmentConnectionSchema: v.ObjectSchema<{
5709
5991
  * is the only thing to try.
5710
5992
  */
5711
5993
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5994
+ /**
5995
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
5996
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
5997
+ * dials, and grades every address it answers with exactly as a stated address is graded.
5998
+ *
5999
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
6000
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
6001
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
6002
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
6003
+ * addresses are then tried ahead of the names; a provider that wants a different order between
6004
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
6005
+ * is the one shape that can interleave them.
6006
+ */
6007
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5712
6008
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5713
6009
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
5714
6010
  readonly from: v.StringSchema<undefined>;
@@ -6114,6 +6410,20 @@ export declare const testEnvironmentConnectionSchema: v.ObjectSchema<{
6114
6410
  * is the only thing to try.
6115
6411
  */
6116
6412
  readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6413
+ /**
6414
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
6415
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
6416
+ * dials, and grades every address it answers with exactly as a stated address is graded.
6417
+ *
6418
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
6419
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
6420
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
6421
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
6422
+ * addresses are then tried ahead of the names; a provider that wants a different order between
6423
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
6424
+ * is the one shape that can interleave them.
6425
+ */
6426
+ readonly hostsPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6117
6427
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6118
6428
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6119
6429
  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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"}
@@ -147,6 +147,20 @@ export const environmentResponseMappingSchema = v.object({
147
147
  * is the only thing to try.
148
148
  */
149
149
  addressesPath: v.optional(v.string()),
150
+ /**
151
+ * The same, for a management API that identifies those balancers by NAME: a string, an array of
152
+ * strings, or an array of `{ host, label }` objects. The platform resolves each name when it
153
+ * dials, and grades every address it answers with exactly as a stated address is graded.
154
+ *
155
+ * A second path rather than more shapes on {@link addressesPath}, because a bare string there
156
+ * already means an address and cannot be re-read as a name without guessing: a manifest saying
157
+ * which kind it publishes is the whole difference between resolving a balancer FQDN and handing
158
+ * a resolver a non-canonical literal that answers loopback. Declaring both is fine, and the
159
+ * addresses are then tried ahead of the names; a provider that wants a different order between
160
+ * the two states them all through `addressesPath` as `{ address }` / `{ host }` objects, which
161
+ * is the one shape that can interleave them.
162
+ */
163
+ hostsPath: v.optional(v.string()),
150
164
  statusPath: v.optional(v.string()),
151
165
  statusMap: v.optional(v.array(v.object({ from: v.string(), to: environmentStatusSchema }))),
152
166
  expiresAtPath: v.optional(v.string()),