@cat-factory/kernel 0.329.0 → 0.330.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/domain/environment-reachability.logic.d.ts +122 -35
- package/dist/domain/environment-reachability.logic.d.ts.map +1 -1
- package/dist/domain/environment-reachability.logic.js +246 -61
- package/dist/domain/environment-reachability.logic.js.map +1 -1
- package/dist/domain/types.d.ts +1 -1
- package/dist/domain/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/ports/environment-investigation.d.ts +6 -6
- package/dist/ports/environment-investigation.d.ts.map +1 -1
- package/dist/ports/environment-provider.d.ts +9 -3
- package/dist/ports/environment-provider.d.ts.map +1 -1
- package/dist/ports/host-resolver.d.ts +59 -0
- package/dist/ports/host-resolver.d.ts.map +1 -0
- package/dist/ports/host-resolver.js +2 -0
- package/dist/ports/host-resolver.js.map +1 -0
- package/dist/ports/index.d.ts +1 -0
- package/dist/ports/index.d.ts.map +1 -1
- package/dist/ports/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// Proving that a `ready` environment can be reached: what to try, in what order,
|
|
2
|
-
// answers add up to.
|
|
1
|
+
// Proving that a `ready` environment can be reached: what to look up, what to try, in what order,
|
|
2
|
+
// and what the answers add up to.
|
|
3
3
|
//
|
|
4
4
|
// The rule lives here rather than in the provisioning service because two layers act on the
|
|
5
5
|
// result and neither may re-derive it: the DEPLOYER settles a frame on the verdict, and the
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// `deploy-health` gate that would have probed the environment handle, on the grounds that the
|
|
12
12
|
// deployer owns provisioning through to a terminal verdict, and this is that verdict getting one
|
|
13
13
|
// more fact behind it.
|
|
14
|
-
import { environmentUnreachableReasonSchema } from '@cat-factory/contracts';
|
|
14
|
+
import { environmentUnreachableReasonSchema, statedRouteTarget } from '@cat-factory/contracts';
|
|
15
15
|
import { isBridgeableAddress } from '../shared/environment-host-bridge.logic.js';
|
|
16
16
|
/** How much of a probe's own error message is kept on the attempt it explains. */
|
|
17
17
|
const MAX_PROBE_DETAIL_CHARS = 200;
|
|
@@ -27,68 +27,221 @@ export const ROUTE_PROBE_TIMEOUT_MS = 4000;
|
|
|
27
27
|
* 162ms, so the ceiling is well under a second of ordinary cost.
|
|
28
28
|
*/
|
|
29
29
|
export const MAX_PROBED_ADDRESSES = 4;
|
|
30
|
+
/**
|
|
31
|
+
* How long one stated NAME gets to resolve before the lookup counts as one the platform could not
|
|
32
|
+
* complete.
|
|
33
|
+
*
|
|
34
|
+
* Much tighter than {@link ROUTE_PROBE_TIMEOUT_MS}, because the two wait on different things: a
|
|
35
|
+
* connect legitimately hangs against a route that does not carry, which is the finding, whereas a
|
|
36
|
+
* resolver that has not answered in two seconds is not about to.
|
|
37
|
+
*/
|
|
38
|
+
export const HOST_RESOLVE_TIMEOUT_MS = 2000;
|
|
39
|
+
/**
|
|
40
|
+
* How many stated NAMES a proof will look up.
|
|
41
|
+
*
|
|
42
|
+
* Its own bound rather than a share of {@link MAX_PROBED_ADDRESSES}, because they cap different
|
|
43
|
+
* costs: that one caps sockets opened, this one caps lookups made, and one name can expand into
|
|
44
|
+
* several addresses so neither implies the other. The same four, sized for the same shape (an
|
|
45
|
+
* internal and a public balancer, with room for a second availability zone).
|
|
46
|
+
*/
|
|
47
|
+
export const MAX_RESOLVED_HOSTS = 4;
|
|
48
|
+
/**
|
|
49
|
+
* The stated NAMES a proof will resolve, in the provider's order, deduplicated and bounded.
|
|
50
|
+
*
|
|
51
|
+
* Exported because the caller does the I/O and the plan consumes the answers, so both have to
|
|
52
|
+
* agree about exactly which names are in scope. Stated ONCE here and read twice rather than
|
|
53
|
+
* recomputed on each side: two copies of a bound is how a name beyond it comes to be reported as a
|
|
54
|
+
* name nothing could resolve.
|
|
55
|
+
*/
|
|
56
|
+
export function planHostResolutions(candidates = []) {
|
|
57
|
+
const hosts = [];
|
|
58
|
+
const seen = new Set();
|
|
59
|
+
for (const candidate of candidates) {
|
|
60
|
+
const stated = statedRouteTarget(candidate);
|
|
61
|
+
if (stated.kind !== 'host' || seen.has(stated.host))
|
|
62
|
+
continue;
|
|
63
|
+
seen.add(stated.host);
|
|
64
|
+
hosts.push(stated.host);
|
|
65
|
+
if (hosts.length >= MAX_RESOLVED_HOSTS)
|
|
66
|
+
break;
|
|
67
|
+
}
|
|
68
|
+
return hosts;
|
|
69
|
+
}
|
|
30
70
|
/**
|
|
31
71
|
* The targets a proof tries for one environment, in order: the URL's own name first, then each
|
|
32
|
-
* stated
|
|
72
|
+
* stated candidate in the PROVIDER'S preference order, a stated NAME expanded IN PLACE into the
|
|
73
|
+
* addresses it resolved to.
|
|
74
|
+
*
|
|
75
|
+
* The URL's name goes first because it is the answer that needs no bridge, and a deployment where
|
|
76
|
+
* it works must not start paying for `--add-host` entries and the warm-pool evictions they cost.
|
|
77
|
+
* The candidates keep the provider's order because the provider is the only thing that knows which
|
|
78
|
+
* of its balancers is the one it wants used; the platform decides only which one CARRIED. A name is
|
|
79
|
+
* expanded in place rather than having its addresses appended, so that order still means something
|
|
80
|
+
* when a provider states a name and an address side by side.
|
|
33
81
|
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
82
|
+
* **Every dialled target is an address a bridge could NAME**, whether the provider stated it or the
|
|
83
|
+
* platform resolved it. The rule is `isBridgeableAddress`, and applying it HERE rather than only at
|
|
84
|
+
* bridge-build time is the whole safety property of the probe: candidates are provider-authored
|
|
85
|
+
* data, so without it the orchestrator opens sockets wherever a manifest says and records the
|
|
86
|
+
* results on a row a workspace can read back, which is a liveness oracle against the deployment's
|
|
87
|
+
* own private network. Resolving first and grading each answer is what keeps that property intact
|
|
88
|
+
* for a name: the destination a bridge is built from is still an IP the platform itself proved, and
|
|
89
|
+
* a name answering with something unbridgeable is refused per address.
|
|
38
90
|
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
91
|
+
* The refusal costs nothing real either, because an address no bridge may name is an address no
|
|
92
|
+
* container could be pointed at, so proving it would prove something unusable. Refused and
|
|
93
|
+
* unresolvable targets are RECORDED (`kind: 'undialled'`) rather than dropped: a shortened list
|
|
94
|
+
* nobody is told about is how a provider's bad candidate becomes an unexplained `name_unresolved`.
|
|
95
|
+
*
|
|
96
|
+
* **Every cap this plan applies reports what it passed over**, in one final `not_attempted`
|
|
97
|
+
* target. Three of them bite (names beyond {@link MAX_RESOLVED_HOSTS}, addresses beyond the dial
|
|
98
|
+
* budget, records beyond the recording budget) and each ends the list early, so without that
|
|
99
|
+
* report a proof over a longer list is a prefix presented as the whole thing. It is not a
|
|
100
|
+
* cosmetic omission: {@link reduceRouteProof} grades `not_reached` only when every attempt
|
|
101
|
+
* established something, and a silently shortened list is how the deployer comes to fail a frame
|
|
102
|
+
* on a verdict about candidates the platform never looked at.
|
|
48
103
|
*
|
|
49
104
|
* Empty when there is no host or port to dial, which the caller reads as `no_candidate`: an
|
|
50
105
|
* environment with no URL was never going to be reached, and that is a different fact from one
|
|
51
106
|
* that was tried and failed.
|
|
52
107
|
*/
|
|
53
|
-
export function planRouteProbes(host, port, candidates = [],
|
|
108
|
+
export function planRouteProbes(host, port, candidates = [], plan = {}) {
|
|
54
109
|
if (!host || !port)
|
|
55
110
|
return [];
|
|
111
|
+
const timeoutMs = plan.timeoutMs ?? ROUTE_PROBE_TIMEOUT_MS;
|
|
56
112
|
const targets = [
|
|
57
113
|
{ kind: 'dial', request: { host, port, timeoutMs }, address: null, label: `${host}:${port}` },
|
|
58
114
|
];
|
|
115
|
+
const inScope = new Set(planHostResolutions(candidates));
|
|
59
116
|
const seen = new Set();
|
|
60
|
-
|
|
61
|
-
|
|
117
|
+
const budget = { dialable: 0, undialled: 0, passedOver: 0 };
|
|
118
|
+
// Bounded by `return` rather than `break`, so a manifest listing four refused addresses ahead of
|
|
119
|
+
// a good one still gets the good one dialled. Recording costs no I/O; the dial budget is what the
|
|
120
|
+
// deployer's settle path is actually waiting on.
|
|
121
|
+
const record = (label, reason, detail) => {
|
|
122
|
+
if (budget.undialled >= MAX_PROBED_ADDRESSES) {
|
|
123
|
+
budget.passedOver += 1;
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
budget.undialled += 1;
|
|
127
|
+
targets.push({ kind: 'undialled', label, reason, ...(detail ? { detail } : {}) });
|
|
128
|
+
};
|
|
129
|
+
const dial = (address, statedHost) => {
|
|
130
|
+
const label = statedHost
|
|
131
|
+
? `${host}@${address}:${port} (${statedHost})`
|
|
132
|
+
: `${host}@${address}:${port}`;
|
|
133
|
+
if (!isBridgeableAddress(address))
|
|
134
|
+
return record(label, 'address_refused');
|
|
135
|
+
if (budget.dialable >= MAX_PROBED_ADDRESSES) {
|
|
136
|
+
budget.passedOver += 1;
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
budget.dialable += 1;
|
|
140
|
+
targets.push({
|
|
141
|
+
kind: 'dial',
|
|
142
|
+
request: { host, address, port, timeoutMs },
|
|
143
|
+
address,
|
|
144
|
+
...(statedHost ? { statedHost } : {}),
|
|
145
|
+
label,
|
|
146
|
+
});
|
|
147
|
+
};
|
|
62
148
|
for (const candidate of candidates) {
|
|
63
|
-
const
|
|
64
|
-
if (
|
|
149
|
+
const stated = statedRouteTarget(candidate);
|
|
150
|
+
if (stated.kind === 'unusable') {
|
|
151
|
+
// No target to name, so the label names the position instead of inventing a value: a
|
|
152
|
+
// candidate stating nothing is still an omission the operator has to be able to see.
|
|
153
|
+
record(`${host}@(no target stated):${port}`, 'address_refused');
|
|
65
154
|
continue;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
if (refused < MAX_PROBED_ADDRESSES) {
|
|
73
|
-
refused += 1;
|
|
74
|
-
targets.push({ kind: 'refused', address, label, reason: 'address_refused' });
|
|
75
|
-
}
|
|
155
|
+
}
|
|
156
|
+
if (stated.kind === 'address') {
|
|
157
|
+
if (seen.has(`a:${stated.address}`))
|
|
158
|
+
continue;
|
|
159
|
+
seen.add(`a:${stated.address}`);
|
|
160
|
+
dial(stated.address);
|
|
76
161
|
continue;
|
|
77
162
|
}
|
|
78
|
-
if (
|
|
163
|
+
if (seen.has(`h:${stated.host}`))
|
|
79
164
|
continue;
|
|
80
|
-
|
|
81
|
-
|
|
165
|
+
seen.add(`h:${stated.host}`);
|
|
166
|
+
// Beyond the resolution bound. Counted rather than dropped, because the platform is not about
|
|
167
|
+
// to look this name up: nothing is established about the candidate, and a proof that omits it
|
|
168
|
+
// reads as one taken against everything the provider offered.
|
|
169
|
+
if (!inScope.has(stated.host)) {
|
|
170
|
+
budget.passedOver += 1;
|
|
171
|
+
continue;
|
|
172
|
+
}
|
|
173
|
+
expandHost(stated.host, plan.resolutions?.get(stated.host), `${host}@${stated.host}:${port}`, {
|
|
174
|
+
record,
|
|
175
|
+
dial,
|
|
176
|
+
seen,
|
|
177
|
+
});
|
|
82
178
|
}
|
|
179
|
+
if (budget.passedOver > 0)
|
|
180
|
+
targets.push(passedOverTarget(budget.passedOver));
|
|
83
181
|
return targets;
|
|
84
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* The one target that says the plan above is a PREFIX of what the provider stated.
|
|
185
|
+
*
|
|
186
|
+
* ONE entry naming the count, never one per passed-over candidate: what a reader needs is whether
|
|
187
|
+
* anything was left unlooked-at, and N copies of the same admission would spend the attempt log
|
|
188
|
+
* the real attempts live in (which is itself capped, so the copies would crowd out the evidence).
|
|
189
|
+
*
|
|
190
|
+
* Appended LAST, which keeps two rules intact. `reduceRouteProof` reports the FIRST attempt's
|
|
191
|
+
* reason for a determinate proof, and that must stay the URL's own name; and the dials ahead of it
|
|
192
|
+
* are what the settle path waits on, so a target that opens no socket may not delay them.
|
|
193
|
+
*/
|
|
194
|
+
function passedOverTarget(count) {
|
|
195
|
+
return {
|
|
196
|
+
kind: 'undialled',
|
|
197
|
+
label: count === 1
|
|
198
|
+
? '1 further target the provider stated'
|
|
199
|
+
: `${count} further targets the provider stated`,
|
|
200
|
+
reason: 'not_attempted',
|
|
201
|
+
detail: `The platform resolves at most ${MAX_RESOLVED_HOSTS} stated names and dials at most ` +
|
|
202
|
+
`${MAX_PROBED_ADDRESSES} addresses per environment, and this environment's provider stated ` +
|
|
203
|
+
'more than that.',
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Turn one stated name's resolution into dialled targets, or into the one attempt that says why
|
|
208
|
+
* there are none.
|
|
209
|
+
*
|
|
210
|
+
* The three failures stay apart because they name different owners, which is the same split the
|
|
211
|
+
* resolver port itself draws: nothing wired to resolve is an admission about the DEPLOYMENT, a name
|
|
212
|
+
* that answered nothing is a fact about the NAME, and a lookup that failed is "we could not tell".
|
|
213
|
+
* Only the middle one establishes anything, and a resolution answering an empty address list is
|
|
214
|
+
* that same middle fact rather than a fourth one.
|
|
215
|
+
*/
|
|
216
|
+
function expandHost(statedHost, resolution, label, sink) {
|
|
217
|
+
if (!resolution)
|
|
218
|
+
return sink.record(label, 'resolver_unavailable');
|
|
219
|
+
if (resolution.state === 'failed')
|
|
220
|
+
return sink.record(label, 'probe_failed', resolution.detail);
|
|
221
|
+
const addresses = resolution.state === 'resolved'
|
|
222
|
+
? resolution.addresses.map((address) => address.trim()).filter(Boolean)
|
|
223
|
+
: [];
|
|
224
|
+
if (addresses.length === 0)
|
|
225
|
+
return sink.record(label, 'name_unresolved');
|
|
226
|
+
for (const address of addresses) {
|
|
227
|
+
// Deduplicated against stated addresses and against the other names, because two balancers in
|
|
228
|
+
// one zone routinely answer with an overlapping set and dialling the same literal twice spends
|
|
229
|
+
// the bound on a target already tried.
|
|
230
|
+
if (sink.seen.has(`a:${address}`))
|
|
231
|
+
continue;
|
|
232
|
+
sink.seen.add(`a:${address}`);
|
|
233
|
+
sink.dial(address, statedHost);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
85
236
|
/**
|
|
86
237
|
* The user-facing reason one probe outcome states, for the target it was tried against.
|
|
87
238
|
*
|
|
88
239
|
* A NAME that does not resolve and an ADDRESS that does not resolve are not the same event, and
|
|
89
240
|
* only the first can happen: an address is dialled, never looked up. A resolver answering
|
|
90
241
|
* `unresolved` for a literal is a probe malfunction, so it is reported as `probe_failed` rather
|
|
91
|
-
* than as a claim about DNS that would send a reader to the wrong zone.
|
|
242
|
+
* than as a claim about DNS that would send a reader to the wrong zone. That holds for an address
|
|
243
|
+
* the platform RESOLVED a stated name into as much as for a stated one: the name's own lookup
|
|
244
|
+
* already happened and was recorded, and this attempt dials a literal.
|
|
92
245
|
*/
|
|
93
246
|
function reasonFor(outcome, address) {
|
|
94
247
|
switch (outcome.state) {
|
|
@@ -124,9 +277,21 @@ export function recordRouteAttempt(target, outcome) {
|
|
|
124
277
|
...(detail ? { detail: detail.slice(0, MAX_PROBE_DETAIL_CHARS) } : {}),
|
|
125
278
|
};
|
|
126
279
|
}
|
|
127
|
-
/**
|
|
128
|
-
|
|
129
|
-
|
|
280
|
+
/**
|
|
281
|
+
* Record a target the platform never DIALLED, so the omission is on the proof rather than lost.
|
|
282
|
+
*
|
|
283
|
+
* Carries the same `detail` a dialled attempt does, because one of the causes that lands here says
|
|
284
|
+
* nothing on its own: a lookup that failed rather than answering nothing is `probe_failed`, and
|
|
285
|
+
* without the resolver's own words a reader cannot tell a DNS timeout from a resolver outage from a
|
|
286
|
+
* bug in the adapter.
|
|
287
|
+
*/
|
|
288
|
+
export function recordUndialledAttempt(target) {
|
|
289
|
+
const detail = target.detail?.trim() ?? '';
|
|
290
|
+
return {
|
|
291
|
+
target: target.label,
|
|
292
|
+
outcome: target.reason,
|
|
293
|
+
...(detail ? { detail: detail.slice(0, MAX_PROBE_DETAIL_CHARS) } : {}),
|
|
294
|
+
};
|
|
130
295
|
}
|
|
131
296
|
/**
|
|
132
297
|
* Whether one attempt's outcome leaves a route the platform never actually RULED OUT.
|
|
@@ -144,6 +309,14 @@ const LEAVES_ROUTE_UNKNOWN = {
|
|
|
144
309
|
no_route: false,
|
|
145
310
|
connection_refused: false,
|
|
146
311
|
address_refused: false,
|
|
312
|
+
// A deployment with nothing to resolve a name with has not ruled that candidate out; it has
|
|
313
|
+
// declined to look at it. Grading it as established is how a facade missing a resolver would
|
|
314
|
+
// start failing deploys for environments it never dialled.
|
|
315
|
+
resolver_unavailable: true,
|
|
316
|
+
// The same shape of admission, from the platform's own bounds rather than its wiring: a
|
|
317
|
+
// candidate past the cap was passed over, so it is not ruled out, so the list as a whole cannot
|
|
318
|
+
// add up to "nothing reaches this environment".
|
|
319
|
+
not_attempted: true,
|
|
147
320
|
probe_failed: true,
|
|
148
321
|
};
|
|
149
322
|
/**
|
|
@@ -171,18 +344,27 @@ function leavesRouteUnknown(outcome) {
|
|
|
171
344
|
*
|
|
172
345
|
* - **`reached`** as soon as any attempt carried, publishing the target that did.
|
|
173
346
|
* - **`inconclusive`** when nothing carried AND some attempt left a route unruled-out: a probe
|
|
174
|
-
* that could not classify its own failure,
|
|
175
|
-
* matching none of that facade's markers, or a Node errno
|
|
176
|
-
* here, and reading either as a verdict about the environment
|
|
177
|
-
* second way for a healthy deploy to die. The reason names the
|
|
347
|
+
* that could not classify its own failure, a candidate the plan passed over, or nothing to try
|
|
348
|
+
* at all. A workerd connect message matching none of that facade's markers, or a Node errno
|
|
349
|
+
* outside the mapped five, arrives here, and reading either as a verdict about the environment
|
|
350
|
+
* is how a diagnostic becomes a second way for a healthy deploy to die. The reason names the
|
|
351
|
+
* attempt that left it unknown.
|
|
178
352
|
* - **`not_reached`** only when EVERY attempt established something and none of them carried.
|
|
179
353
|
* The reported reason is then the FIRST attempt's, which is always the name, so a reader is
|
|
180
354
|
* told what happened to the address they were given rather than what happened to the last
|
|
181
355
|
* balancer in someone's preference list. The attempt log carries the rest, in order.
|
|
182
356
|
*/
|
|
183
|
-
export function reduceRouteProof(attempts,
|
|
184
|
-
if (attempts.some((attempt) => attempt.outcome === 'carried'))
|
|
185
|
-
return {
|
|
357
|
+
export function reduceRouteProof(attempts, carried, checkedAt) {
|
|
358
|
+
if (attempts.some((attempt) => attempt.outcome === 'carried')) {
|
|
359
|
+
return {
|
|
360
|
+
state: 'reached',
|
|
361
|
+
via: carried?.address ?? null,
|
|
362
|
+
...(carried?.statedHost ? { viaHost: carried.statedHost } : {}),
|
|
363
|
+
reason: null,
|
|
364
|
+
attempts: [...attempts],
|
|
365
|
+
checkedAt,
|
|
366
|
+
};
|
|
367
|
+
}
|
|
186
368
|
if (attempts.length === 0) {
|
|
187
369
|
return {
|
|
188
370
|
state: 'inconclusive',
|
|
@@ -216,7 +398,9 @@ const UNREACHABLE_CAUSES = {
|
|
|
216
398
|
name_unresolved: 'its hostname resolves nowhere from this deployment, and no address the provider stated for it carried either',
|
|
217
399
|
no_route: 'nothing answered within the probe window, so no route reaches it',
|
|
218
400
|
connection_refused: 'the route reaches it and nothing is listening on that port',
|
|
219
|
-
address_refused: 'every
|
|
401
|
+
address_refused: 'every target its provider stated is one no host bridge may name (loopback, link-local or vendor metadata, or a non-canonical literal, or a candidate naming nothing at all), so none could be dialled',
|
|
402
|
+
resolver_unavailable: 'its provider identified the environment by NAME and this deployment has nothing wired to turn a name into an address, so nothing was established either way',
|
|
403
|
+
not_attempted: 'its provider stated more targets than the platform will look up and dial for one environment, so at least one of them was never tried and nothing was established either way',
|
|
220
404
|
probe_failed: 'the probe could not complete, so nothing was established either way',
|
|
221
405
|
};
|
|
222
406
|
/**
|
|
@@ -303,10 +487,10 @@ export function determinateRouteCause(candidates, proof) {
|
|
|
303
487
|
if (proof.reason === 'no_candidate') {
|
|
304
488
|
if (candidates.length === 0) {
|
|
305
489
|
return ('This environment carries no address to dial at all: no URL with a host and port, and no ' +
|
|
306
|
-
'address stated for one. Nothing was tried because there was nothing to try, so
|
|
307
|
-
'fact about what the provider published, never a verdict about the environment.
|
|
308
|
-
'maps this provider onto a URL (and onto stated addresses
|
|
309
|
-
'from this deployment) owns the fix.');
|
|
490
|
+
'address or name stated for one. Nothing was tried because there was nothing to try, so ' +
|
|
491
|
+
'this is a fact about what the provider published, never a verdict about the environment. ' +
|
|
492
|
+
'Whoever maps this provider onto a URL (and onto stated addresses or balancer names, if ' +
|
|
493
|
+
'the URL is not resolvable from this deployment) owns the fix.');
|
|
310
494
|
}
|
|
311
495
|
// The SAME reason, a different fact, and telling a reader the provider stated no addresses
|
|
312
496
|
// when it stated several is the misdirection this whole function exists to prevent. A stated
|
|
@@ -314,21 +498,22 @@ export function determinateRouteCause(candidates, proof) {
|
|
|
314
498
|
// before it will plan anything), so an environment with addresses and no parseable URL had
|
|
315
499
|
// nothing to dial them ON, and the fix is one field over from where the empty-list wording
|
|
316
500
|
// would send someone.
|
|
317
|
-
const count = candidates.length === 1 ? '1
|
|
501
|
+
const count = candidates.length === 1 ? '1 candidate' : `${candidates.length} candidates`;
|
|
318
502
|
return (`This environment published no URL with a host and port, so the ${count} its provider DID ` +
|
|
319
|
-
'state could not be dialled either:
|
|
320
|
-
'
|
|
321
|
-
'
|
|
322
|
-
"maps this provider onto the environment's URL
|
|
323
|
-
'the gap here.');
|
|
503
|
+
'state could not be dialled either: a stated address (or an address a stated name resolves ' +
|
|
504
|
+
'to) is tried on the port the URL names, and there was none. Nothing was tried because ' +
|
|
505
|
+
'there was nothing to try it on, so this is a fact about what the provider published, never ' +
|
|
506
|
+
"a verdict about the environment. Whoever maps this provider onto the environment's URL " +
|
|
507
|
+
'owns the fix; the stated candidates are not the gap here.');
|
|
324
508
|
}
|
|
325
509
|
if (proof.state !== 'not_reached' || candidates.length > 0)
|
|
326
510
|
return null;
|
|
327
511
|
return ("The only target that ever existed was the environment's own name, because the provider " +
|
|
328
|
-
'stated no addresses for it. Nothing else was tried because there was
|
|
329
|
-
'the empty candidate list means
|
|
330
|
-
'tried and failed. Whoever maps this provider onto stated addresses
|
|
331
|
-
'ranks ahead of any fault inferred from the ORDER platform events
|
|
512
|
+
'stated no addresses and no balancer names for it. Nothing else was tried because there was ' +
|
|
513
|
+
'nothing else to try: the empty candidate list means candidates were never STATED, not that ' +
|
|
514
|
+
'stated ones were tried and failed. Whoever maps this provider onto stated addresses or names ' +
|
|
515
|
+
'owns the fix, and this ranks ahead of any fault inferred from the ORDER platform events ' +
|
|
516
|
+
'appear to have happened in.');
|
|
332
517
|
}
|
|
333
518
|
/**
|
|
334
519
|
* The proof recorded when nothing was wired to open a socket.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment-reachability.logic.js","sourceRoot":"","sources":["../../src/domain/environment-reachability.logic.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"environment-reachability.logic.js","sourceRoot":"","sources":["../../src/domain/environment-reachability.logic.ts"],"names":[],"mappings":"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"}
|
package/dist/domain/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { AgentKind, AgentState, AgentFailure, AgentFailureKind, AgentRunKind, ModelFamily, ModelFamilyPolicy, ModelPolicyMode, AccountRegion, ModelFamilyPolicyPreset, Block, BlockLevel, BlockStatus, BlockType, TaskType, CreateTaskType, TaskTypeFields, CustomTaskType, TaskTypePresentation, TaskTypeFieldDescriptor, TaskTypeFieldType, TaskTypeFieldOption, DescriptorField, DescriptorFieldType, DescriptorFieldOption, DescriptorFieldShowWhen, DescriptorFieldValue, DescriptorFieldValues, DocKind, Decision, EnvConfigRepairJob, EnvConfigRepairStatus, EnvironmentTestRun, EnvironmentTestStage, EnvironmentTestStatus, ExecutionInstance, ExecutionStatus, IntakeOrigin, InputGateIssue, InputGateIssueCode, InputGateMode, InputGateSeverity, InputGateStatus, RunInputGate, ResolveInputGateChoice, ResolveInputGateRequest, Pipeline, PipelineAvailability, PipelineStep, Position, PriorStepOutput, PromptFragment, PullRequestRef, PeerPullRequest, ReferenceRepo, AprioriBranch, SpendStatus, StepApproval, StepReviewComment, ReviewCommentSeverity, StepSubtasks, WebSearchAvailability, WebSearchProvider, Workspace, WorkspaceSnapshot, FragmentOwnerKind, FragmentTier, CreatePromptFragmentInput, CreateDocumentFragmentInput, UpdatePromptFragmentInput, FragmentSource, LinkFragmentSourceInput, FragmentSyncResult, FragmentSourceStatus, ResolvedFragment, ResolvedFragmentCatalog, Account, AccountType, AccountRole, AccountMember, CreateAccountInput, AddMemberInput, WorkspaceRole, WorkspacePermission, WorkspaceAccessMode, WorkspaceMember, Service, WorkspaceMount, MountServiceInput, UpdateMountInput, GitHubBranch, GitHubCheckRun, GitHubCommit, GitHubConnection, GitHubInstallationOption, GitHubAvailableRepo, GitHubIssue, GitHubIssueState, GitHubPullRequest, GitHubPullRequestState, OpenedPullRequest, GitHubRepo, RepoTreeEntry, SetRepoMonorepoInput, CommitFilesInput, LinkReposInput, OpenPullRequestInput, MergePullRequestInput, ProviderConfigFieldType, ProviderConfigField, ProviderDescriptor, ConnectionTestResult, ConnectionWarning, ConnectionWarningCode, UserSecretKind, UserSecretStatus, StoreUserSecretInput, TestUserSecretInput, UserSecretDescriptor, DocumentSourceKind, DocumentOrigin, DocumentLinkRole, DocumentRenderStatus, DocumentSourceDescriptor, CredentialField, DocumentConnection, SourceDocument, DocumentSearchResult, DocumentBoardPlan, PlanFrame, PlanModule, PlanTask, TaskSourceKind, TaskSourceDescriptor, TaskSourceState, TaskSourceDiagnostic, TaskSourceDiagnosticStatus, TaskConnection, TaskComment, TaskDependencyLink, SourceTask, TaskSearchResult, IssueIntakePredicate, TrackerBoard, BugCandidate, BugHuntAnalysis, BugHuntAnalysisStatus, BugHuntCandidate, BugHuntConfidence, BugHuntResult, RunBugHuntInput, EnvironmentSecretRef, EnvironmentAuthScheme, EnvironmentHttpMethod, EnvironmentRequestTemplate, EnvironmentStatus, TeardownConfirmation, EnvironmentAccessScheme, EnvironmentAccessMapping, EnvironmentResponseMapping, EnvironmentManifest, EnvironmentBackendConfig, EnvironmentBackendKind, KubernetesEnvironmentConfig, KubernetesConnectionConfig, KubernetesManifestSource, KubernetesUrlSource, KubernetesRenderer, KubernetesImageOverride, KubernetesHelmRelease, KubernetesHelmSet, KubernetesSecretEntry, KubernetesSecretInjection, KubernetesProvisionConfig, CloudflareEnvironmentConfig, CloudflareConnectionConfig, ProvisionType, EnvironmentFailureReason, InfraEngine, ManifestId, ServiceProvisioning, StackRecipe, RecipeStep, RecipeStepKind, RecipeHealthGate, RecipeEnvFile, PreflightCheckId, PreflightParams, PreflightRef, PreflightStatus, PreflightResult, FrontendConfig, FrontendBackendBinding, FrontendBackendSource, ResolvedFrontendBinding, LiveEnvHandle, ServiceConnection, KubernetesEngineConfig, InfraHandlerConfig, CustomManifestType, CustomManifestTypeSource, UpsertCustomManifestTypeInput, EnvironmentAccessHandle, EnvironmentHandle,
|
|
1
|
+
export type { AgentKind, AgentState, AgentFailure, AgentFailureKind, AgentRunKind, ModelFamily, ModelFamilyPolicy, ModelPolicyMode, AccountRegion, ModelFamilyPolicyPreset, Block, BlockLevel, BlockStatus, BlockType, TaskType, CreateTaskType, TaskTypeFields, CustomTaskType, TaskTypePresentation, TaskTypeFieldDescriptor, TaskTypeFieldType, TaskTypeFieldOption, DescriptorField, DescriptorFieldType, DescriptorFieldOption, DescriptorFieldShowWhen, DescriptorFieldValue, DescriptorFieldValues, DocKind, Decision, EnvConfigRepairJob, EnvConfigRepairStatus, EnvironmentTestRun, EnvironmentTestStage, EnvironmentTestStatus, ExecutionInstance, ExecutionStatus, IntakeOrigin, InputGateIssue, InputGateIssueCode, InputGateMode, InputGateSeverity, InputGateStatus, RunInputGate, ResolveInputGateChoice, ResolveInputGateRequest, Pipeline, PipelineAvailability, PipelineStep, Position, PriorStepOutput, PromptFragment, PullRequestRef, PeerPullRequest, ReferenceRepo, AprioriBranch, SpendStatus, StepApproval, StepReviewComment, ReviewCommentSeverity, StepSubtasks, WebSearchAvailability, WebSearchProvider, Workspace, WorkspaceSnapshot, FragmentOwnerKind, FragmentTier, CreatePromptFragmentInput, CreateDocumentFragmentInput, UpdatePromptFragmentInput, FragmentSource, LinkFragmentSourceInput, FragmentSyncResult, FragmentSourceStatus, ResolvedFragment, ResolvedFragmentCatalog, Account, AccountType, AccountRole, AccountMember, CreateAccountInput, AddMemberInput, WorkspaceRole, WorkspacePermission, WorkspaceAccessMode, WorkspaceMember, Service, WorkspaceMount, MountServiceInput, UpdateMountInput, GitHubBranch, GitHubCheckRun, GitHubCommit, GitHubConnection, GitHubInstallationOption, GitHubAvailableRepo, GitHubIssue, GitHubIssueState, GitHubPullRequest, GitHubPullRequestState, OpenedPullRequest, GitHubRepo, RepoTreeEntry, SetRepoMonorepoInput, CommitFilesInput, LinkReposInput, OpenPullRequestInput, MergePullRequestInput, ProviderConfigFieldType, ProviderConfigField, ProviderDescriptor, ConnectionTestResult, ConnectionWarning, ConnectionWarningCode, UserSecretKind, UserSecretStatus, StoreUserSecretInput, TestUserSecretInput, UserSecretDescriptor, DocumentSourceKind, DocumentOrigin, DocumentLinkRole, DocumentRenderStatus, DocumentSourceDescriptor, CredentialField, DocumentConnection, SourceDocument, DocumentSearchResult, DocumentBoardPlan, PlanFrame, PlanModule, PlanTask, TaskSourceKind, TaskSourceDescriptor, TaskSourceState, TaskSourceDiagnostic, TaskSourceDiagnosticStatus, TaskConnection, TaskComment, TaskDependencyLink, SourceTask, TaskSearchResult, IssueIntakePredicate, TrackerBoard, BugCandidate, BugHuntAnalysis, BugHuntAnalysisStatus, BugHuntCandidate, BugHuntConfidence, BugHuntResult, RunBugHuntInput, EnvironmentSecretRef, EnvironmentAuthScheme, EnvironmentHttpMethod, EnvironmentRequestTemplate, EnvironmentStatus, TeardownConfirmation, EnvironmentAccessScheme, EnvironmentAccessMapping, EnvironmentResponseMapping, EnvironmentManifest, EnvironmentBackendConfig, EnvironmentBackendKind, KubernetesEnvironmentConfig, KubernetesConnectionConfig, KubernetesManifestSource, KubernetesUrlSource, KubernetesRenderer, KubernetesImageOverride, KubernetesHelmRelease, KubernetesHelmSet, KubernetesSecretEntry, KubernetesSecretInjection, KubernetesProvisionConfig, CloudflareEnvironmentConfig, CloudflareConnectionConfig, ProvisionType, EnvironmentFailureReason, InfraEngine, ManifestId, ServiceProvisioning, StackRecipe, RecipeStep, RecipeStepKind, RecipeHealthGate, RecipeEnvFile, PreflightCheckId, PreflightParams, PreflightRef, PreflightStatus, PreflightResult, FrontendConfig, FrontendBackendBinding, FrontendBackendSource, ResolvedFrontendBinding, LiveEnvHandle, ServiceConnection, KubernetesEngineConfig, InfraHandlerConfig, CustomManifestType, CustomManifestTypeSource, UpsertCustomManifestTypeInput, EnvironmentAccessHandle, EnvironmentHandle, EnvironmentRouteCandidate, StatedRouteTarget, EnvironmentReachability, EnvironmentReachabilityNote, EnvironmentRouteAttempt, EnvironmentRouteProof, EnvironmentUnreachableReason, EnvironmentConnection, TestEnvironmentConnectionInput, TestEnvironmentHandlerInput, ValidateEnvironmentRepoInput, BootstrapEnvironmentRepoInput, BootstrapRepoResult, TestSecretRef, TestSecretEntry, ServiceTestSecretsView, UpsertServiceTestSecretsInput, ProvisioningSubsystem, ProvisioningOperation, ProvisioningOutcome, ProvisioningLogEntry, RunnerPoolSecretRef, RunnerPoolAuthScheme, RunnerPoolRequestTemplate, RunnerJobState, RunnerPoolResponseMapping, RunnerPoolManifest, RunnerPoolConnection, TestRunnerPoolConnectionInput, RunnerBackendConfig, RunnerBackendKind, KubernetesRunnerConfig, KubernetesResourceQuantities, ReferenceArchitecture, CreateReferenceArchitectureInput, UpdateReferenceArchitectureInput, BootstrapStatus, BootstrapPhase, BootstrapFailure, BootstrapFailureKind, BootstrapJob, MonorepoBootstrapTarget, MonorepoBootstrapRef, AdoptionArea, AdoptionSource, AdoptionDecision, AdoptionSurvey, AdoptionPlan, AdoptionPlanUnavailableReason, AdoptionChoice, AdoptionReviewInput, ResolvedAdoption, ResolvedAdoptionDecision, BootstrapRepoInput, BlueprintModule, BlueprintService, BlueprintSource, BoardScanSpawnResult, ReviewItemCategory, ReviewItemSeverity, ReviewItemStatus, RequirementReviewItem, RequirementReviewStatus, RequirementReview, DocInterviewQa, DocInterviewStatus, DocInterviewSession, AnswerDocInterviewInput, KaizenGradingStatus, KaizenGrading, KaizenVerifiedCombo, KaizenOverview, KaizenRunGradings, RecommendationStatus, RequirementRecommendation, ReplyReviewItemInput, UpdateReviewItemStatusInput, IncorporateRequirementsInput, RequestRecommendationItem, RequestRecommendationsInput, ReRequestRecommendationInput, ResolveRequirementsExceededInput, ResolveRequirementsExceededChoice, FollowUpItemKind, FollowUpItemStatus, FollowUpResolution, FollowUpItem, FollowUpsStepState, AnswerFollowUpInput, StreamedFollowUp, ForkOption, ForkChatMessage, ForkDecisionStatus, ForkChoice, ForkDecisionStepState, ForkChatRequestInput, ChooseForkInput, ForkProposal, BinaryCandidate, BinaryCandidateComparison, BinaryCandidateChoice, BinaryCandidateKeep, BinaryCandidateNoChoiceReason, BinaryCandidateStatus, BinaryCandidateStepState, KeepBinaryCandidatesInput, BinaryGeneratorCapability, BinaryGenerationOptions, BinaryAssetRef, BinaryReferenceImage, JudgeFindingSeverity, JudgeFinding, JudgeVerdict, JudgeDisposition, JudgeStatus, JudgeRound, JudgeStepState, JudgeModelPin, JudgeModelPinStatus, ResolveJudgeInput, PrReviewSeverity, PrReviewCategory, PrReviewSlice, PrReviewSliceReview, PrReviewFinding, PrReviewFindingChallenge, PrReviewStatus, PrReviewResolution, PrReviewStepState, PrReviewPostReport, PrReviewPostFailure, PrReviewAgentOutput, PrReviewChallengeOutput, ResolvePrReviewInput, ChallengePrReviewFindingInput, ClarityReviewItem, ClarityReviewStatus, ClarityReview, ReplyClarityItemInput, UpdateClarityItemStatusInput, IncorporateClarityInput, ResolveClarityExceededInput, ResolveClarityExceededChoice, BrainstormStage, BrainstormItem, BrainstormStatus, BrainstormSession, ReplyBrainstormItemInput, UpdateBrainstormItemStatusInput, IncorporateBrainstormInput, ResolveBrainstormExceededInput, ResolveBrainstormExceededChoice, IterationCapChoice, ResolveIterationCapInput, RequirementPriority, RequirementKind,
|
|
2
2
|
/** Implementation state: agreed-but-not-built vs observed-to-hold. */
|
|
3
3
|
RequirementState, AcceptanceCriterion, RequirementItem, DomainRule, RequirementGroup, SpecModule, SpecDoc, CompanionAssessment, CompanionVerdict, DeployFixConfig, DeployFixState, DeployFixAttempt, GateStepState, GateFailingCheck, GateAttempt, RalphStepState, RalphVerdict, RalphAttempt, ValidationCheck, ValidationCheckOutcome, ValidationReport, ResolvedValidationChecks, ServiceValidationConfig, UpsertServiceValidationConfigInput, ReproductionProofMode, ResolvedReproduction, ReproductionStatus, ReproductionPhaseOutcome, ReproductionReport, HumanTestStepState, HumanTestEnvironment, HumanTestRound, RequestHumanTestFixInput, VisualConfirmStepState, VisualConfirmPair, VisualConfirmReferenceOrigin, VisualConfirmDesignGap, VisualConfirmDesignGapReason, VisualConfirmDesignReferences, VisualConfirmRound, MergeAssessment, MergeAxis, MergeDecision, MergeDecisionThresholds, MergeClassRule, MergeClassRules, ClassRulesByRole, SubmissionClassesByRole, RunMode, ChangeClass, ReviewEffort, MergeTrackDecision, MergeTrackRecord, MergeClassRollup, ReviewEffortDistribution, TagReviewEffortInput, PrVerificationReport, PrReportScope, PrReportOwnPullRequest, PrReportSectionStatus, PrReportStep, PrReportIssue, PrReportJudge, PrReportFollowUp, PrReportFollowUps, PrReportRun, PrReportCheck, PrReportCi, PrReportTestOutcome, PrReportTestConcern, PrReportTests, PrReportContext, PrReportContextDocument, PrReportValidation, PrReportValidationCommand, PrReportReproduction, PrReportReproductionPhase, PrReportEnvironment, PrReportEnvironments, PrReportEnvironmentTimeline, PrReportTimelineGap, PrReportEnvironmentEvidence, PrReportEvidenceArtifact, PrReportRequirement, PrReportRequirements, PrReportMerge, PrReportObservability, RiskPolicy, RequirementConcernLevel, CreateRiskPolicyInput, UpdateRiskPolicyInput, CloneRiskPolicyInput, RiskPolicyTier, RiskPolicyLibraryEntry, RiskPolicySuppression, RunAutonomy, RunDefaultScope, ComposeFileRef, ComposeSource, ComposeSourceKind, SharedStack, SharedStackStatus, CreateSharedStackInput, UpdateSharedStackInput, DetectSharedStackInput, SharedStackRecommendation, ConsensusStrategy, ConsensusParticipant, ConsensusGating, StepGating, ConsensusStepConfig, ConsensusGroup, CreateConsensusGroupInput, UpdateConsensusGroupInput, TaskEstimate, TaskEstimateBasis, SupersededTaskEstimate, ConsensusScore, ConsensusContribution, ConsensusRound, ConsensusSessionStatus, ConsensusSession, AgentConfigOption, AgentConfigDescriptor, AgentConfigCatalog, AgentConfigValues, TestReport, TestOutcome, TestConcern, TestConcernSeverity, RequirementVerdict, RequirementVerdictStatus, TesterQualityConfig, StepOptions, StepGateConfig, GateApproverPolicy, GateApprovalRecord, CloudProvider, InstanceSize, UpdateAccountInput, ModelFlavor, ModelPreset, CreateModelPresetInput, UpdateModelPresetInput, AgentPromptRevision, AgentPromptDetail, AgentPromptSummary, SaveAgentPromptInput, PromoteAgentPromptInput, WorkspaceAgentSettings, UpdateWorkspaceAgentSettingsInput, ServiceFragmentDefaults, SetServiceFragmentDefaultsInput, Notification, NotificationType, NotificationStatus, NotificationSeverity, NotificationPayload, ResolveNotificationAction, NotificationDeliveryChannel, NotificationChannelOverrides, NotificationRoutingMatrix, NotificationSettings, UpdateNotificationSettingsInput, WorkspaceSettings, UpdateWorkspaceSettingsInput, TaskLimitMode, TaskLimitPerType, UserSettings, UpdateUserSettingsInput, TutorialProgress, TutorialDecision, UpdateTutorialProgressInput, TutorialEvent, RecordTutorialEventInput, SlackConnection, SlackRoute, SlackNotificationSettings, SlackMemberMappingEntry, SlackMemberRole, SlackMemberMapping, SlackChannel, ConnectSlackByTokenInput, UpdateSlackSettingsInput, UpdateSlackMemberMappingInput, ScheduleTemplate, Recurrence, IssueIntakeConfig, PipelineSchedule, ScheduleRun, CreateScheduleInput, UpdateScheduleInput, TrackerKind, TrackerSettings, PutTrackerSettingsInput, WritebackOverride, LlmCallActivity, SandboxPromptOrigin, SandboxPromptVersion, SandboxFixtureKind, SandboxRepoRef, SandboxFixtureObjective, SandboxFixture, SandboxExperimentStatus, SandboxMatrix, SandboxExperiment, SandboxRunStatus, SandboxTokenUsage, SandboxRun, SandboxGradeDimension, SandboxObjectiveResult, SandboxGrade, Initiative, InitiativeStatus, InitiativeItem, InitiativeItemStatus, InitiativePhase, InitiativeEstimate, InitiativePipelineRule, InitiativeExecutionPolicy, InitiativeDecision, InitiativeDeviation, InitiativeFollowUp, InitiativeQa, InitiativeQaStatus, InitiativeInterviewState, InitiativePlanDraft, InitiativeDraftItem, InitiativeVersion, CreateInitiativeInput, AnswerInitiativeQuestionInput, PromoteInitiativeFollowUpInput, UpdateInitiativeItemInput, UpdateInitiativePolicyInput, AccountSettingsConfig, ContentStorageConfig, FigmaOAuthSecret, LinearOAuthSecret, S3CredentialsSecret, SlackOAuthSecret, WebSearchSecret, } from '@cat-factory/contracts';
|
|
4
4
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/domain/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/domain/types.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export { HARNESS_BODY_CAPABILITIES, type BlindJobStopOutcome, type HarnessBodyCa
|
|
|
68
68
|
export { CI_AGENT_KIND, CI_FIXER_AGENT_KIND, CONFLICTS_AGENT_KIND, CONFLICT_RESOLVER_AGENT_KIND, POST_RELEASE_HEALTH_AGENT_KIND, ON_CALL_AGENT_KIND, HUMAN_REVIEW_AGENT_KIND, FIXER_AGENT_KIND, DOC_QUALITY_AGENT_KIND, DOC_FIXER_AGENT_KIND, type CiVerdict, type ReleaseGateVerdict, aggregateCi, aggregateRepoCi, headFields, isCiGreen, listFailingChecks, listFailingChecksAcrossRepos, describeFailingChecks, describeFailingRepos, classifyReleaseHealth, describeRegressedSignals, renderReleaseEvidence, } from './domain/gate-logic.js';
|
|
69
69
|
export { environmentFailure, unresolvedPlaceholders, describeUnfilledConfigPlaceholders, type UnresolvedPlaceholder, } from './domain/environment-failure.js';
|
|
70
70
|
export { ENVIRONMENT_READY_TIMEOUT_MS, describeTerminalEnvironment, describeWaitedFor, judgeEnvironmentReadiness, type EnvironmentReadiness, type EnvironmentReadinessInput, } from './domain/environment-readiness.logic.js';
|
|
71
|
-
export { MAX_PROBED_ADDRESSES,
|
|
71
|
+
export { HOST_RESOLVE_TIMEOUT_MS, MAX_PROBED_ADDRESSES, MAX_RESOLVED_HOSTS, describeInconclusiveRoute, describeRouteTargets, describeUnreachableEnvironment, determinateRouteCause, planHostResolutions, planRouteProbes, recordRouteAttempt, recordUndialledAttempt, reduceRouteProof, ROUTE_PROBE_TIMEOUT_MS, unprovedRoute, type CarryingTarget, type RouteProbePlan, type RouteProbeTarget, } from './domain/environment-reachability.logic.js';
|
|
72
72
|
export { type GateActor, type GateApprovalRefusal, UNATTRIBUTED_GATE_ACTOR, foldGateApproval, hasApproverPolicy, refuseGateResolution, requiredGateApprovals, } from '@cat-factory/contracts';
|
|
73
73
|
export type { InboundTraceContext } from './domain/trace-context.js';
|
|
74
74
|
export { SPAN_ID_FIELD, TRACEPARENT_HEADER, TRACE_ID_FIELD, parseTraceparent, } from './domain/trace-context.js';
|