@scoutflo/topology-contracts 0.7.23 → 0.7.25
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/src/investigation/context.d.ts +1129 -156
- package/dist/src/investigation/context.js +38 -9
- package/dist/src/investigation/context.js.map +1 -1
- package/dist/src/schemas/index.d.ts +1 -1
- package/dist/src/schemas/index.js +7 -1
- package/dist/src/schemas/index.js.map +1 -1
- package/dist/test/investigation-context.test.js +61 -2
- package/dist/test/investigation-context.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,98 @@ import { z } from 'zod';
|
|
|
2
2
|
import { entityKindSchema } from '../source-sync/common';
|
|
3
3
|
export declare const GATEWAY_TOPOLOGY_CONTEXT_VERSION = "topology.gateway-context.v1";
|
|
4
4
|
export declare const diagnosticCriticalitySchema: z.ZodEnum<["blocking", "degrading", "optional"]>;
|
|
5
|
+
export declare const nestedTopologyTruncationReasonSchema: z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>;
|
|
6
|
+
export declare const nestedTopologyEvidenceSchema: z.ZodObject<{
|
|
7
|
+
type: z.ZodString;
|
|
8
|
+
ref: z.ZodString;
|
|
9
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
10
|
+
sourcePath: z.ZodOptional<z.ZodString>;
|
|
11
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12
|
+
key: z.ZodString;
|
|
13
|
+
value: z.ZodString;
|
|
14
|
+
sourcePath: z.ZodString;
|
|
15
|
+
confidence: z.ZodNumber;
|
|
16
|
+
kind: z.ZodEnum<["label", "tag", "annotation", "provider_identity", "resource_hint", "text_derived", "time", "rule", "query", "trace", "metric", "log"]>;
|
|
17
|
+
rawValue: z.ZodOptional<z.ZodUnknown>;
|
|
18
|
+
normalizedValue: z.ZodOptional<z.ZodString>;
|
|
19
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
20
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
21
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
22
|
+
schemaVersion: z.ZodOptional<z.ZodString>;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
value: string;
|
|
25
|
+
key: string;
|
|
26
|
+
sourcePath: string;
|
|
27
|
+
confidence: number;
|
|
28
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
29
|
+
rawValue?: unknown;
|
|
30
|
+
normalizedValue?: string | undefined;
|
|
31
|
+
namespace?: string | undefined;
|
|
32
|
+
provider?: string | undefined;
|
|
33
|
+
observedAt?: string | undefined;
|
|
34
|
+
schemaVersion?: string | undefined;
|
|
35
|
+
}, {
|
|
36
|
+
value: string;
|
|
37
|
+
key: string;
|
|
38
|
+
sourcePath: string;
|
|
39
|
+
confidence: number;
|
|
40
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
41
|
+
rawValue?: unknown;
|
|
42
|
+
normalizedValue?: string | undefined;
|
|
43
|
+
namespace?: string | undefined;
|
|
44
|
+
provider?: string | undefined;
|
|
45
|
+
observedAt?: string | undefined;
|
|
46
|
+
schemaVersion?: string | undefined;
|
|
47
|
+
}>, "many">>;
|
|
48
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
49
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
50
|
+
occurredAt: z.ZodOptional<z.ZodString>;
|
|
51
|
+
capturedAt: z.ZodOptional<z.ZodString>;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
type: string;
|
|
54
|
+
ref: string;
|
|
55
|
+
sourcePath?: string | undefined;
|
|
56
|
+
provider?: string | undefined;
|
|
57
|
+
observedAt?: string | undefined;
|
|
58
|
+
summary?: string | undefined;
|
|
59
|
+
facts?: {
|
|
60
|
+
value: string;
|
|
61
|
+
key: string;
|
|
62
|
+
sourcePath: string;
|
|
63
|
+
confidence: number;
|
|
64
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
65
|
+
rawValue?: unknown;
|
|
66
|
+
normalizedValue?: string | undefined;
|
|
67
|
+
namespace?: string | undefined;
|
|
68
|
+
provider?: string | undefined;
|
|
69
|
+
observedAt?: string | undefined;
|
|
70
|
+
schemaVersion?: string | undefined;
|
|
71
|
+
}[] | undefined;
|
|
72
|
+
occurredAt?: string | undefined;
|
|
73
|
+
capturedAt?: string | undefined;
|
|
74
|
+
}, {
|
|
75
|
+
type: string;
|
|
76
|
+
ref: string;
|
|
77
|
+
sourcePath?: string | undefined;
|
|
78
|
+
provider?: string | undefined;
|
|
79
|
+
observedAt?: string | undefined;
|
|
80
|
+
summary?: string | undefined;
|
|
81
|
+
facts?: {
|
|
82
|
+
value: string;
|
|
83
|
+
key: string;
|
|
84
|
+
sourcePath: string;
|
|
85
|
+
confidence: number;
|
|
86
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
87
|
+
rawValue?: unknown;
|
|
88
|
+
normalizedValue?: string | undefined;
|
|
89
|
+
namespace?: string | undefined;
|
|
90
|
+
provider?: string | undefined;
|
|
91
|
+
observedAt?: string | undefined;
|
|
92
|
+
schemaVersion?: string | undefined;
|
|
93
|
+
}[] | undefined;
|
|
94
|
+
occurredAt?: string | undefined;
|
|
95
|
+
capturedAt?: string | undefined;
|
|
96
|
+
}>;
|
|
5
97
|
export declare const nestedTopologyRelationshipSchema: z.ZodObject<{
|
|
6
98
|
id: z.ZodString;
|
|
7
99
|
relation: z.ZodString;
|
|
@@ -9,6 +101,97 @@ export declare const nestedTopologyRelationshipSchema: z.ZodObject<{
|
|
|
9
101
|
diagnostic_criticality: z.ZodOptional<z.ZodEnum<["blocking", "degrading", "optional"]>>;
|
|
10
102
|
attribute_schema_key: z.ZodOptional<z.ZodString>;
|
|
11
103
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
104
|
+
evidence: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
105
|
+
type: z.ZodString;
|
|
106
|
+
ref: z.ZodString;
|
|
107
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
108
|
+
sourcePath: z.ZodOptional<z.ZodString>;
|
|
109
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
110
|
+
key: z.ZodString;
|
|
111
|
+
value: z.ZodString;
|
|
112
|
+
sourcePath: z.ZodString;
|
|
113
|
+
confidence: z.ZodNumber;
|
|
114
|
+
kind: z.ZodEnum<["label", "tag", "annotation", "provider_identity", "resource_hint", "text_derived", "time", "rule", "query", "trace", "metric", "log"]>;
|
|
115
|
+
rawValue: z.ZodOptional<z.ZodUnknown>;
|
|
116
|
+
normalizedValue: z.ZodOptional<z.ZodString>;
|
|
117
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
118
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
119
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
120
|
+
schemaVersion: z.ZodOptional<z.ZodString>;
|
|
121
|
+
}, "strip", z.ZodTypeAny, {
|
|
122
|
+
value: string;
|
|
123
|
+
key: string;
|
|
124
|
+
sourcePath: string;
|
|
125
|
+
confidence: number;
|
|
126
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
127
|
+
rawValue?: unknown;
|
|
128
|
+
normalizedValue?: string | undefined;
|
|
129
|
+
namespace?: string | undefined;
|
|
130
|
+
provider?: string | undefined;
|
|
131
|
+
observedAt?: string | undefined;
|
|
132
|
+
schemaVersion?: string | undefined;
|
|
133
|
+
}, {
|
|
134
|
+
value: string;
|
|
135
|
+
key: string;
|
|
136
|
+
sourcePath: string;
|
|
137
|
+
confidence: number;
|
|
138
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
139
|
+
rawValue?: unknown;
|
|
140
|
+
normalizedValue?: string | undefined;
|
|
141
|
+
namespace?: string | undefined;
|
|
142
|
+
provider?: string | undefined;
|
|
143
|
+
observedAt?: string | undefined;
|
|
144
|
+
schemaVersion?: string | undefined;
|
|
145
|
+
}>, "many">>;
|
|
146
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
147
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
148
|
+
occurredAt: z.ZodOptional<z.ZodString>;
|
|
149
|
+
capturedAt: z.ZodOptional<z.ZodString>;
|
|
150
|
+
}, "strip", z.ZodTypeAny, {
|
|
151
|
+
type: string;
|
|
152
|
+
ref: string;
|
|
153
|
+
sourcePath?: string | undefined;
|
|
154
|
+
provider?: string | undefined;
|
|
155
|
+
observedAt?: string | undefined;
|
|
156
|
+
summary?: string | undefined;
|
|
157
|
+
facts?: {
|
|
158
|
+
value: string;
|
|
159
|
+
key: string;
|
|
160
|
+
sourcePath: string;
|
|
161
|
+
confidence: number;
|
|
162
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
163
|
+
rawValue?: unknown;
|
|
164
|
+
normalizedValue?: string | undefined;
|
|
165
|
+
namespace?: string | undefined;
|
|
166
|
+
provider?: string | undefined;
|
|
167
|
+
observedAt?: string | undefined;
|
|
168
|
+
schemaVersion?: string | undefined;
|
|
169
|
+
}[] | undefined;
|
|
170
|
+
occurredAt?: string | undefined;
|
|
171
|
+
capturedAt?: string | undefined;
|
|
172
|
+
}, {
|
|
173
|
+
type: string;
|
|
174
|
+
ref: string;
|
|
175
|
+
sourcePath?: string | undefined;
|
|
176
|
+
provider?: string | undefined;
|
|
177
|
+
observedAt?: string | undefined;
|
|
178
|
+
summary?: string | undefined;
|
|
179
|
+
facts?: {
|
|
180
|
+
value: string;
|
|
181
|
+
key: string;
|
|
182
|
+
sourcePath: string;
|
|
183
|
+
confidence: number;
|
|
184
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
185
|
+
rawValue?: unknown;
|
|
186
|
+
normalizedValue?: string | undefined;
|
|
187
|
+
namespace?: string | undefined;
|
|
188
|
+
provider?: string | undefined;
|
|
189
|
+
observedAt?: string | undefined;
|
|
190
|
+
schemaVersion?: string | undefined;
|
|
191
|
+
}[] | undefined;
|
|
192
|
+
occurredAt?: string | undefined;
|
|
193
|
+
capturedAt?: string | undefined;
|
|
194
|
+
}>, "many">>;
|
|
12
195
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
13
196
|
id: z.ZodString;
|
|
14
197
|
relation: z.ZodString;
|
|
@@ -16,6 +199,97 @@ export declare const nestedTopologyRelationshipSchema: z.ZodObject<{
|
|
|
16
199
|
diagnostic_criticality: z.ZodOptional<z.ZodEnum<["blocking", "degrading", "optional"]>>;
|
|
17
200
|
attribute_schema_key: z.ZodOptional<z.ZodString>;
|
|
18
201
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
202
|
+
evidence: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
203
|
+
type: z.ZodString;
|
|
204
|
+
ref: z.ZodString;
|
|
205
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
206
|
+
sourcePath: z.ZodOptional<z.ZodString>;
|
|
207
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
208
|
+
key: z.ZodString;
|
|
209
|
+
value: z.ZodString;
|
|
210
|
+
sourcePath: z.ZodString;
|
|
211
|
+
confidence: z.ZodNumber;
|
|
212
|
+
kind: z.ZodEnum<["label", "tag", "annotation", "provider_identity", "resource_hint", "text_derived", "time", "rule", "query", "trace", "metric", "log"]>;
|
|
213
|
+
rawValue: z.ZodOptional<z.ZodUnknown>;
|
|
214
|
+
normalizedValue: z.ZodOptional<z.ZodString>;
|
|
215
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
216
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
217
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
218
|
+
schemaVersion: z.ZodOptional<z.ZodString>;
|
|
219
|
+
}, "strip", z.ZodTypeAny, {
|
|
220
|
+
value: string;
|
|
221
|
+
key: string;
|
|
222
|
+
sourcePath: string;
|
|
223
|
+
confidence: number;
|
|
224
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
225
|
+
rawValue?: unknown;
|
|
226
|
+
normalizedValue?: string | undefined;
|
|
227
|
+
namespace?: string | undefined;
|
|
228
|
+
provider?: string | undefined;
|
|
229
|
+
observedAt?: string | undefined;
|
|
230
|
+
schemaVersion?: string | undefined;
|
|
231
|
+
}, {
|
|
232
|
+
value: string;
|
|
233
|
+
key: string;
|
|
234
|
+
sourcePath: string;
|
|
235
|
+
confidence: number;
|
|
236
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
237
|
+
rawValue?: unknown;
|
|
238
|
+
normalizedValue?: string | undefined;
|
|
239
|
+
namespace?: string | undefined;
|
|
240
|
+
provider?: string | undefined;
|
|
241
|
+
observedAt?: string | undefined;
|
|
242
|
+
schemaVersion?: string | undefined;
|
|
243
|
+
}>, "many">>;
|
|
244
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
245
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
246
|
+
occurredAt: z.ZodOptional<z.ZodString>;
|
|
247
|
+
capturedAt: z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
|
249
|
+
type: string;
|
|
250
|
+
ref: string;
|
|
251
|
+
sourcePath?: string | undefined;
|
|
252
|
+
provider?: string | undefined;
|
|
253
|
+
observedAt?: string | undefined;
|
|
254
|
+
summary?: string | undefined;
|
|
255
|
+
facts?: {
|
|
256
|
+
value: string;
|
|
257
|
+
key: string;
|
|
258
|
+
sourcePath: string;
|
|
259
|
+
confidence: number;
|
|
260
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
261
|
+
rawValue?: unknown;
|
|
262
|
+
normalizedValue?: string | undefined;
|
|
263
|
+
namespace?: string | undefined;
|
|
264
|
+
provider?: string | undefined;
|
|
265
|
+
observedAt?: string | undefined;
|
|
266
|
+
schemaVersion?: string | undefined;
|
|
267
|
+
}[] | undefined;
|
|
268
|
+
occurredAt?: string | undefined;
|
|
269
|
+
capturedAt?: string | undefined;
|
|
270
|
+
}, {
|
|
271
|
+
type: string;
|
|
272
|
+
ref: string;
|
|
273
|
+
sourcePath?: string | undefined;
|
|
274
|
+
provider?: string | undefined;
|
|
275
|
+
observedAt?: string | undefined;
|
|
276
|
+
summary?: string | undefined;
|
|
277
|
+
facts?: {
|
|
278
|
+
value: string;
|
|
279
|
+
key: string;
|
|
280
|
+
sourcePath: string;
|
|
281
|
+
confidence: number;
|
|
282
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
283
|
+
rawValue?: unknown;
|
|
284
|
+
normalizedValue?: string | undefined;
|
|
285
|
+
namespace?: string | undefined;
|
|
286
|
+
provider?: string | undefined;
|
|
287
|
+
observedAt?: string | undefined;
|
|
288
|
+
schemaVersion?: string | undefined;
|
|
289
|
+
}[] | undefined;
|
|
290
|
+
occurredAt?: string | undefined;
|
|
291
|
+
capturedAt?: string | undefined;
|
|
292
|
+
}>, "many">>;
|
|
19
293
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20
294
|
id: z.ZodString;
|
|
21
295
|
relation: z.ZodString;
|
|
@@ -23,8 +297,101 @@ export declare const nestedTopologyRelationshipSchema: z.ZodObject<{
|
|
|
23
297
|
diagnostic_criticality: z.ZodOptional<z.ZodEnum<["blocking", "degrading", "optional"]>>;
|
|
24
298
|
attribute_schema_key: z.ZodOptional<z.ZodString>;
|
|
25
299
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
300
|
+
evidence: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
301
|
+
type: z.ZodString;
|
|
302
|
+
ref: z.ZodString;
|
|
303
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
304
|
+
sourcePath: z.ZodOptional<z.ZodString>;
|
|
305
|
+
facts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
306
|
+
key: z.ZodString;
|
|
307
|
+
value: z.ZodString;
|
|
308
|
+
sourcePath: z.ZodString;
|
|
309
|
+
confidence: z.ZodNumber;
|
|
310
|
+
kind: z.ZodEnum<["label", "tag", "annotation", "provider_identity", "resource_hint", "text_derived", "time", "rule", "query", "trace", "metric", "log"]>;
|
|
311
|
+
rawValue: z.ZodOptional<z.ZodUnknown>;
|
|
312
|
+
normalizedValue: z.ZodOptional<z.ZodString>;
|
|
313
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
314
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
315
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
316
|
+
schemaVersion: z.ZodOptional<z.ZodString>;
|
|
317
|
+
}, "strip", z.ZodTypeAny, {
|
|
318
|
+
value: string;
|
|
319
|
+
key: string;
|
|
320
|
+
sourcePath: string;
|
|
321
|
+
confidence: number;
|
|
322
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
323
|
+
rawValue?: unknown;
|
|
324
|
+
normalizedValue?: string | undefined;
|
|
325
|
+
namespace?: string | undefined;
|
|
326
|
+
provider?: string | undefined;
|
|
327
|
+
observedAt?: string | undefined;
|
|
328
|
+
schemaVersion?: string | undefined;
|
|
329
|
+
}, {
|
|
330
|
+
value: string;
|
|
331
|
+
key: string;
|
|
332
|
+
sourcePath: string;
|
|
333
|
+
confidence: number;
|
|
334
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
335
|
+
rawValue?: unknown;
|
|
336
|
+
normalizedValue?: string | undefined;
|
|
337
|
+
namespace?: string | undefined;
|
|
338
|
+
provider?: string | undefined;
|
|
339
|
+
observedAt?: string | undefined;
|
|
340
|
+
schemaVersion?: string | undefined;
|
|
341
|
+
}>, "many">>;
|
|
342
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
343
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
344
|
+
occurredAt: z.ZodOptional<z.ZodString>;
|
|
345
|
+
capturedAt: z.ZodOptional<z.ZodString>;
|
|
346
|
+
}, "strip", z.ZodTypeAny, {
|
|
347
|
+
type: string;
|
|
348
|
+
ref: string;
|
|
349
|
+
sourcePath?: string | undefined;
|
|
350
|
+
provider?: string | undefined;
|
|
351
|
+
observedAt?: string | undefined;
|
|
352
|
+
summary?: string | undefined;
|
|
353
|
+
facts?: {
|
|
354
|
+
value: string;
|
|
355
|
+
key: string;
|
|
356
|
+
sourcePath: string;
|
|
357
|
+
confidence: number;
|
|
358
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
359
|
+
rawValue?: unknown;
|
|
360
|
+
normalizedValue?: string | undefined;
|
|
361
|
+
namespace?: string | undefined;
|
|
362
|
+
provider?: string | undefined;
|
|
363
|
+
observedAt?: string | undefined;
|
|
364
|
+
schemaVersion?: string | undefined;
|
|
365
|
+
}[] | undefined;
|
|
366
|
+
occurredAt?: string | undefined;
|
|
367
|
+
capturedAt?: string | undefined;
|
|
368
|
+
}, {
|
|
369
|
+
type: string;
|
|
370
|
+
ref: string;
|
|
371
|
+
sourcePath?: string | undefined;
|
|
372
|
+
provider?: string | undefined;
|
|
373
|
+
observedAt?: string | undefined;
|
|
374
|
+
summary?: string | undefined;
|
|
375
|
+
facts?: {
|
|
376
|
+
value: string;
|
|
377
|
+
key: string;
|
|
378
|
+
sourcePath: string;
|
|
379
|
+
confidence: number;
|
|
380
|
+
kind: "label" | "tag" | "annotation" | "provider_identity" | "resource_hint" | "text_derived" | "time" | "rule" | "query" | "trace" | "metric" | "log";
|
|
381
|
+
rawValue?: unknown;
|
|
382
|
+
normalizedValue?: string | undefined;
|
|
383
|
+
namespace?: string | undefined;
|
|
384
|
+
provider?: string | undefined;
|
|
385
|
+
observedAt?: string | undefined;
|
|
386
|
+
schemaVersion?: string | undefined;
|
|
387
|
+
}[] | undefined;
|
|
388
|
+
occurredAt?: string | undefined;
|
|
389
|
+
capturedAt?: string | undefined;
|
|
390
|
+
}>, "many">>;
|
|
26
391
|
}, z.ZodTypeAny, "passthrough">>;
|
|
27
392
|
export type NestedTopologyRelationship = z.infer<typeof nestedTopologyRelationshipSchema>;
|
|
393
|
+
export type NestedTopologyEvidence = z.infer<typeof nestedTopologyEvidenceSchema>;
|
|
394
|
+
export type NestedTopologyTruncationReason = z.infer<typeof nestedTopologyTruncationReasonSchema>;
|
|
28
395
|
export interface NestedTopologyNode {
|
|
29
396
|
entity_type: z.infer<typeof entityKindSchema>;
|
|
30
397
|
id: string;
|
|
@@ -32,11 +399,77 @@ export interface NestedTopologyNode {
|
|
|
32
399
|
root_refs?: Record<string, string>;
|
|
33
400
|
is_hierarchy_root_types?: string[];
|
|
34
401
|
already_visited?: boolean;
|
|
402
|
+
children_truncated?: boolean;
|
|
403
|
+
children_omitted?: number;
|
|
404
|
+
truncation_reasons?: NestedTopologyTruncationReason[];
|
|
35
405
|
children: NestedTopologyChild[];
|
|
36
406
|
}
|
|
37
407
|
export interface NestedTopologyChild extends NestedTopologyNode {
|
|
38
408
|
relationship: NestedTopologyRelationship;
|
|
39
409
|
}
|
|
410
|
+
export declare const nestedTopologyLimitsSchema: z.ZodObject<{
|
|
411
|
+
max_depth: z.ZodNumber;
|
|
412
|
+
max_nodes: z.ZodNumber;
|
|
413
|
+
max_edges: z.ZodNumber;
|
|
414
|
+
max_children_per_node: z.ZodNumber;
|
|
415
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
416
|
+
max_depth: z.ZodNumber;
|
|
417
|
+
max_nodes: z.ZodNumber;
|
|
418
|
+
max_edges: z.ZodNumber;
|
|
419
|
+
max_children_per_node: z.ZodNumber;
|
|
420
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
421
|
+
max_depth: z.ZodNumber;
|
|
422
|
+
max_nodes: z.ZodNumber;
|
|
423
|
+
max_edges: z.ZodNumber;
|
|
424
|
+
max_children_per_node: z.ZodNumber;
|
|
425
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
426
|
+
export declare const nestedTopologyStatsSchema: z.ZodObject<{
|
|
427
|
+
total_nodes: z.ZodNumber;
|
|
428
|
+
max_depth: z.ZodNumber;
|
|
429
|
+
structural_edges: z.ZodNumber;
|
|
430
|
+
associative_edges: z.ZodNumber;
|
|
431
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
432
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
433
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
434
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
435
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
436
|
+
total_nodes: z.ZodNumber;
|
|
437
|
+
max_depth: z.ZodNumber;
|
|
438
|
+
structural_edges: z.ZodNumber;
|
|
439
|
+
associative_edges: z.ZodNumber;
|
|
440
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
441
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
442
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
443
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
444
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
445
|
+
total_nodes: z.ZodNumber;
|
|
446
|
+
max_depth: z.ZodNumber;
|
|
447
|
+
structural_edges: z.ZodNumber;
|
|
448
|
+
associative_edges: z.ZodNumber;
|
|
449
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
450
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
451
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
452
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
453
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
454
|
+
export declare const nestedTopologyTruncationSchema: z.ZodObject<{
|
|
455
|
+
truncated: z.ZodBoolean;
|
|
456
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
457
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
458
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
459
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
460
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
461
|
+
truncated: z.ZodBoolean;
|
|
462
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
463
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
464
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
465
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
466
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
467
|
+
truncated: z.ZodBoolean;
|
|
468
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
469
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
470
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
471
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
472
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
40
473
|
export declare const nestedTopologyChildSchema: z.ZodType<NestedTopologyChild>;
|
|
41
474
|
export declare const nestedTopologyNodeSchema: z.ZodType<NestedTopologyNode>;
|
|
42
475
|
export declare const nestedTopologyResponseSchema: z.ZodObject<{
|
|
@@ -47,17 +480,64 @@ export declare const nestedTopologyResponseSchema: z.ZodObject<{
|
|
|
47
480
|
max_depth: z.ZodNumber;
|
|
48
481
|
structural_edges: z.ZodNumber;
|
|
49
482
|
associative_edges: z.ZodNumber;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
483
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
484
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
485
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
486
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
487
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
488
|
+
total_nodes: z.ZodNumber;
|
|
489
|
+
max_depth: z.ZodNumber;
|
|
490
|
+
structural_edges: z.ZodNumber;
|
|
491
|
+
associative_edges: z.ZodNumber;
|
|
492
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
493
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
494
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
495
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
496
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
497
|
+
total_nodes: z.ZodNumber;
|
|
498
|
+
max_depth: z.ZodNumber;
|
|
499
|
+
structural_edges: z.ZodNumber;
|
|
500
|
+
associative_edges: z.ZodNumber;
|
|
501
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
502
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
503
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
504
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
505
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
506
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
507
|
+
max_depth: z.ZodNumber;
|
|
508
|
+
max_nodes: z.ZodNumber;
|
|
509
|
+
max_edges: z.ZodNumber;
|
|
510
|
+
max_children_per_node: z.ZodNumber;
|
|
511
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
512
|
+
max_depth: z.ZodNumber;
|
|
513
|
+
max_nodes: z.ZodNumber;
|
|
514
|
+
max_edges: z.ZodNumber;
|
|
515
|
+
max_children_per_node: z.ZodNumber;
|
|
516
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
517
|
+
max_depth: z.ZodNumber;
|
|
518
|
+
max_nodes: z.ZodNumber;
|
|
519
|
+
max_edges: z.ZodNumber;
|
|
520
|
+
max_children_per_node: z.ZodNumber;
|
|
521
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
522
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
523
|
+
truncated: z.ZodBoolean;
|
|
524
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
525
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
526
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
527
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
528
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
529
|
+
truncated: z.ZodBoolean;
|
|
530
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
531
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
532
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
533
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
534
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
535
|
+
truncated: z.ZodBoolean;
|
|
536
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
537
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
538
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
539
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
540
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
61
541
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
62
542
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
63
543
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -66,17 +546,64 @@ export declare const nestedTopologyResponseSchema: z.ZodObject<{
|
|
|
66
546
|
max_depth: z.ZodNumber;
|
|
67
547
|
structural_edges: z.ZodNumber;
|
|
68
548
|
associative_edges: z.ZodNumber;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
549
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
550
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
551
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
552
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
553
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
554
|
+
total_nodes: z.ZodNumber;
|
|
555
|
+
max_depth: z.ZodNumber;
|
|
556
|
+
structural_edges: z.ZodNumber;
|
|
557
|
+
associative_edges: z.ZodNumber;
|
|
558
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
559
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
560
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
561
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
562
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
563
|
+
total_nodes: z.ZodNumber;
|
|
564
|
+
max_depth: z.ZodNumber;
|
|
565
|
+
structural_edges: z.ZodNumber;
|
|
566
|
+
associative_edges: z.ZodNumber;
|
|
567
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
568
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
569
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
570
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
571
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
572
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
573
|
+
max_depth: z.ZodNumber;
|
|
574
|
+
max_nodes: z.ZodNumber;
|
|
575
|
+
max_edges: z.ZodNumber;
|
|
576
|
+
max_children_per_node: z.ZodNumber;
|
|
577
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
578
|
+
max_depth: z.ZodNumber;
|
|
579
|
+
max_nodes: z.ZodNumber;
|
|
580
|
+
max_edges: z.ZodNumber;
|
|
581
|
+
max_children_per_node: z.ZodNumber;
|
|
582
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
583
|
+
max_depth: z.ZodNumber;
|
|
584
|
+
max_nodes: z.ZodNumber;
|
|
585
|
+
max_edges: z.ZodNumber;
|
|
586
|
+
max_children_per_node: z.ZodNumber;
|
|
587
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
588
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
589
|
+
truncated: z.ZodBoolean;
|
|
590
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
591
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
592
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
593
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
594
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
595
|
+
truncated: z.ZodBoolean;
|
|
596
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
597
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
598
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
599
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
600
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
601
|
+
truncated: z.ZodBoolean;
|
|
602
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
603
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
604
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
605
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
606
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
80
607
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
81
608
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
82
609
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -85,17 +612,64 @@ export declare const nestedTopologyResponseSchema: z.ZodObject<{
|
|
|
85
612
|
max_depth: z.ZodNumber;
|
|
86
613
|
structural_edges: z.ZodNumber;
|
|
87
614
|
associative_edges: z.ZodNumber;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
615
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
616
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
617
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
618
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
619
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
620
|
+
total_nodes: z.ZodNumber;
|
|
621
|
+
max_depth: z.ZodNumber;
|
|
622
|
+
structural_edges: z.ZodNumber;
|
|
623
|
+
associative_edges: z.ZodNumber;
|
|
624
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
625
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
626
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
627
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
628
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
629
|
+
total_nodes: z.ZodNumber;
|
|
630
|
+
max_depth: z.ZodNumber;
|
|
631
|
+
structural_edges: z.ZodNumber;
|
|
632
|
+
associative_edges: z.ZodNumber;
|
|
633
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
634
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
635
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
636
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
637
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
638
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
639
|
+
max_depth: z.ZodNumber;
|
|
640
|
+
max_nodes: z.ZodNumber;
|
|
641
|
+
max_edges: z.ZodNumber;
|
|
642
|
+
max_children_per_node: z.ZodNumber;
|
|
643
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
644
|
+
max_depth: z.ZodNumber;
|
|
645
|
+
max_nodes: z.ZodNumber;
|
|
646
|
+
max_edges: z.ZodNumber;
|
|
647
|
+
max_children_per_node: z.ZodNumber;
|
|
648
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
649
|
+
max_depth: z.ZodNumber;
|
|
650
|
+
max_nodes: z.ZodNumber;
|
|
651
|
+
max_edges: z.ZodNumber;
|
|
652
|
+
max_children_per_node: z.ZodNumber;
|
|
653
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
654
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
655
|
+
truncated: z.ZodBoolean;
|
|
656
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
657
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
658
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
659
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
660
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
661
|
+
truncated: z.ZodBoolean;
|
|
662
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
663
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
664
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
665
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
666
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
667
|
+
truncated: z.ZodBoolean;
|
|
668
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
669
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
670
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
671
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
672
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
99
673
|
}, z.ZodTypeAny, "passthrough">>;
|
|
100
674
|
export declare const topologyReasonCodeSchema: z.ZodString;
|
|
101
675
|
export declare const topologyCandidateTargetSchema: z.ZodObject<{
|
|
@@ -369,8 +943,6 @@ export declare const topologyInvestigationContextSchema: z.ZodObject<{
|
|
|
369
943
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
370
944
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
371
945
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
372
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
373
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
374
946
|
relatedServices: z.ZodObject<{
|
|
375
947
|
upstream: z.ZodArray<z.ZodObject<{
|
|
376
948
|
name: z.ZodString;
|
|
@@ -485,8 +1057,6 @@ export declare const topologyInvestigationContextSchema: z.ZodObject<{
|
|
|
485
1057
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
486
1058
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
487
1059
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
488
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
489
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
490
1060
|
relatedServices: z.ZodObject<{
|
|
491
1061
|
upstream: z.ZodArray<z.ZodObject<{
|
|
492
1062
|
name: z.ZodString;
|
|
@@ -601,8 +1171,6 @@ export declare const topologyInvestigationContextSchema: z.ZodObject<{
|
|
|
601
1171
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
602
1172
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
603
1173
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
604
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
605
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
606
1174
|
relatedServices: z.ZodObject<{
|
|
607
1175
|
upstream: z.ZodArray<z.ZodObject<{
|
|
608
1176
|
name: z.ZodString;
|
|
@@ -1092,8 +1660,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1092
1660
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
1093
1661
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1094
1662
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1095
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1096
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
1097
1663
|
relatedServices: z.ZodObject<{
|
|
1098
1664
|
upstream: z.ZodArray<z.ZodObject<{
|
|
1099
1665
|
name: z.ZodString;
|
|
@@ -1208,8 +1774,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1208
1774
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
1209
1775
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1210
1776
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1211
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1212
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
1213
1777
|
relatedServices: z.ZodObject<{
|
|
1214
1778
|
upstream: z.ZodArray<z.ZodObject<{
|
|
1215
1779
|
name: z.ZodString;
|
|
@@ -1324,8 +1888,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1324
1888
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
1325
1889
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1326
1890
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1327
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1328
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
1329
1891
|
relatedServices: z.ZodObject<{
|
|
1330
1892
|
upstream: z.ZodArray<z.ZodObject<{
|
|
1331
1893
|
name: z.ZodString;
|
|
@@ -1628,17 +2190,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1628
2190
|
max_depth: z.ZodNumber;
|
|
1629
2191
|
structural_edges: z.ZodNumber;
|
|
1630
2192
|
associative_edges: z.ZodNumber;
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
2193
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2194
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2195
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2196
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2197
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2198
|
+
total_nodes: z.ZodNumber;
|
|
2199
|
+
max_depth: z.ZodNumber;
|
|
2200
|
+
structural_edges: z.ZodNumber;
|
|
2201
|
+
associative_edges: z.ZodNumber;
|
|
2202
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2203
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2204
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2205
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2206
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2207
|
+
total_nodes: z.ZodNumber;
|
|
2208
|
+
max_depth: z.ZodNumber;
|
|
2209
|
+
structural_edges: z.ZodNumber;
|
|
2210
|
+
associative_edges: z.ZodNumber;
|
|
2211
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2212
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2213
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2214
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2215
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2216
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2217
|
+
max_depth: z.ZodNumber;
|
|
2218
|
+
max_nodes: z.ZodNumber;
|
|
2219
|
+
max_edges: z.ZodNumber;
|
|
2220
|
+
max_children_per_node: z.ZodNumber;
|
|
2221
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2222
|
+
max_depth: z.ZodNumber;
|
|
2223
|
+
max_nodes: z.ZodNumber;
|
|
2224
|
+
max_edges: z.ZodNumber;
|
|
2225
|
+
max_children_per_node: z.ZodNumber;
|
|
2226
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2227
|
+
max_depth: z.ZodNumber;
|
|
2228
|
+
max_nodes: z.ZodNumber;
|
|
2229
|
+
max_edges: z.ZodNumber;
|
|
2230
|
+
max_children_per_node: z.ZodNumber;
|
|
2231
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2232
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
2233
|
+
truncated: z.ZodBoolean;
|
|
2234
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2235
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2236
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2237
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2238
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2239
|
+
truncated: z.ZodBoolean;
|
|
2240
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2241
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2242
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2243
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2244
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2245
|
+
truncated: z.ZodBoolean;
|
|
2246
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2247
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2248
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2249
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2250
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1642
2251
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1643
2252
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
1644
2253
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -1647,17 +2256,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1647
2256
|
max_depth: z.ZodNumber;
|
|
1648
2257
|
structural_edges: z.ZodNumber;
|
|
1649
2258
|
associative_edges: z.ZodNumber;
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
2259
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2260
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2261
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2262
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2263
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2264
|
+
total_nodes: z.ZodNumber;
|
|
2265
|
+
max_depth: z.ZodNumber;
|
|
2266
|
+
structural_edges: z.ZodNumber;
|
|
2267
|
+
associative_edges: z.ZodNumber;
|
|
2268
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2269
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2270
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2271
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2272
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2273
|
+
total_nodes: z.ZodNumber;
|
|
2274
|
+
max_depth: z.ZodNumber;
|
|
2275
|
+
structural_edges: z.ZodNumber;
|
|
2276
|
+
associative_edges: z.ZodNumber;
|
|
2277
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2278
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2279
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2280
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2281
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2282
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2283
|
+
max_depth: z.ZodNumber;
|
|
2284
|
+
max_nodes: z.ZodNumber;
|
|
2285
|
+
max_edges: z.ZodNumber;
|
|
2286
|
+
max_children_per_node: z.ZodNumber;
|
|
2287
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2288
|
+
max_depth: z.ZodNumber;
|
|
2289
|
+
max_nodes: z.ZodNumber;
|
|
2290
|
+
max_edges: z.ZodNumber;
|
|
2291
|
+
max_children_per_node: z.ZodNumber;
|
|
2292
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2293
|
+
max_depth: z.ZodNumber;
|
|
2294
|
+
max_nodes: z.ZodNumber;
|
|
2295
|
+
max_edges: z.ZodNumber;
|
|
2296
|
+
max_children_per_node: z.ZodNumber;
|
|
2297
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2298
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
2299
|
+
truncated: z.ZodBoolean;
|
|
2300
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2301
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2302
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2303
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2304
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2305
|
+
truncated: z.ZodBoolean;
|
|
2306
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2307
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2308
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2309
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2310
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2311
|
+
truncated: z.ZodBoolean;
|
|
2312
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2313
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2314
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2315
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2316
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1661
2317
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1662
2318
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
1663
2319
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -1666,17 +2322,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1666
2322
|
max_depth: z.ZodNumber;
|
|
1667
2323
|
structural_edges: z.ZodNumber;
|
|
1668
2324
|
associative_edges: z.ZodNumber;
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
2325
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2326
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2327
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2328
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2329
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2330
|
+
total_nodes: z.ZodNumber;
|
|
2331
|
+
max_depth: z.ZodNumber;
|
|
2332
|
+
structural_edges: z.ZodNumber;
|
|
2333
|
+
associative_edges: z.ZodNumber;
|
|
2334
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2335
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2336
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2337
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2338
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2339
|
+
total_nodes: z.ZodNumber;
|
|
2340
|
+
max_depth: z.ZodNumber;
|
|
2341
|
+
structural_edges: z.ZodNumber;
|
|
2342
|
+
associative_edges: z.ZodNumber;
|
|
2343
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2344
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
2345
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
2346
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
2347
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2348
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2349
|
+
max_depth: z.ZodNumber;
|
|
2350
|
+
max_nodes: z.ZodNumber;
|
|
2351
|
+
max_edges: z.ZodNumber;
|
|
2352
|
+
max_children_per_node: z.ZodNumber;
|
|
2353
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2354
|
+
max_depth: z.ZodNumber;
|
|
2355
|
+
max_nodes: z.ZodNumber;
|
|
2356
|
+
max_edges: z.ZodNumber;
|
|
2357
|
+
max_children_per_node: z.ZodNumber;
|
|
2358
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2359
|
+
max_depth: z.ZodNumber;
|
|
2360
|
+
max_nodes: z.ZodNumber;
|
|
2361
|
+
max_edges: z.ZodNumber;
|
|
2362
|
+
max_children_per_node: z.ZodNumber;
|
|
2363
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2364
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
2365
|
+
truncated: z.ZodBoolean;
|
|
2366
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2367
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2368
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2369
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2370
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2371
|
+
truncated: z.ZodBoolean;
|
|
2372
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2373
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2374
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2375
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2376
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2377
|
+
truncated: z.ZodBoolean;
|
|
2378
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
2379
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2380
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
2381
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
2382
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1680
2383
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1681
2384
|
diagnostics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1682
2385
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -1854,8 +2557,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1854
2557
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
1855
2558
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1856
2559
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1857
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1858
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
1859
2560
|
relatedServices: z.ZodObject<{
|
|
1860
2561
|
upstream: z.ZodArray<z.ZodObject<{
|
|
1861
2562
|
name: z.ZodString;
|
|
@@ -1970,8 +2671,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
1970
2671
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
1971
2672
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1972
2673
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
1973
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
1974
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
1975
2674
|
relatedServices: z.ZodObject<{
|
|
1976
2675
|
upstream: z.ZodArray<z.ZodObject<{
|
|
1977
2676
|
name: z.ZodString;
|
|
@@ -2086,8 +2785,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2086
2785
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
2087
2786
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2088
2787
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
2089
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
2090
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
2091
2788
|
relatedServices: z.ZodObject<{
|
|
2092
2789
|
upstream: z.ZodArray<z.ZodObject<{
|
|
2093
2790
|
name: z.ZodString;
|
|
@@ -2390,17 +3087,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2390
3087
|
max_depth: z.ZodNumber;
|
|
2391
3088
|
structural_edges: z.ZodNumber;
|
|
2392
3089
|
associative_edges: z.ZodNumber;
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
3090
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3091
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3092
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3093
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3094
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3095
|
+
total_nodes: z.ZodNumber;
|
|
3096
|
+
max_depth: z.ZodNumber;
|
|
3097
|
+
structural_edges: z.ZodNumber;
|
|
3098
|
+
associative_edges: z.ZodNumber;
|
|
3099
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3100
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3101
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3102
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3103
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3104
|
+
total_nodes: z.ZodNumber;
|
|
3105
|
+
max_depth: z.ZodNumber;
|
|
3106
|
+
structural_edges: z.ZodNumber;
|
|
3107
|
+
associative_edges: z.ZodNumber;
|
|
3108
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3109
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3110
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3111
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3112
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3113
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
3114
|
+
max_depth: z.ZodNumber;
|
|
3115
|
+
max_nodes: z.ZodNumber;
|
|
3116
|
+
max_edges: z.ZodNumber;
|
|
3117
|
+
max_children_per_node: z.ZodNumber;
|
|
3118
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3119
|
+
max_depth: z.ZodNumber;
|
|
3120
|
+
max_nodes: z.ZodNumber;
|
|
3121
|
+
max_edges: z.ZodNumber;
|
|
3122
|
+
max_children_per_node: z.ZodNumber;
|
|
3123
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3124
|
+
max_depth: z.ZodNumber;
|
|
3125
|
+
max_nodes: z.ZodNumber;
|
|
3126
|
+
max_edges: z.ZodNumber;
|
|
3127
|
+
max_children_per_node: z.ZodNumber;
|
|
3128
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3129
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
3130
|
+
truncated: z.ZodBoolean;
|
|
3131
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3132
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3133
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3134
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3135
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3136
|
+
truncated: z.ZodBoolean;
|
|
3137
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3138
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3139
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3140
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3141
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3142
|
+
truncated: z.ZodBoolean;
|
|
3143
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3144
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3145
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3146
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3147
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2404
3148
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2405
3149
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
2406
3150
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -2409,17 +3153,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2409
3153
|
max_depth: z.ZodNumber;
|
|
2410
3154
|
structural_edges: z.ZodNumber;
|
|
2411
3155
|
associative_edges: z.ZodNumber;
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
3156
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3157
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3158
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3159
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3160
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3161
|
+
total_nodes: z.ZodNumber;
|
|
3162
|
+
max_depth: z.ZodNumber;
|
|
3163
|
+
structural_edges: z.ZodNumber;
|
|
3164
|
+
associative_edges: z.ZodNumber;
|
|
3165
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3166
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3167
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3168
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3169
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3170
|
+
total_nodes: z.ZodNumber;
|
|
3171
|
+
max_depth: z.ZodNumber;
|
|
3172
|
+
structural_edges: z.ZodNumber;
|
|
3173
|
+
associative_edges: z.ZodNumber;
|
|
3174
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3175
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3176
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3177
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3178
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3179
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
3180
|
+
max_depth: z.ZodNumber;
|
|
3181
|
+
max_nodes: z.ZodNumber;
|
|
3182
|
+
max_edges: z.ZodNumber;
|
|
3183
|
+
max_children_per_node: z.ZodNumber;
|
|
3184
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3185
|
+
max_depth: z.ZodNumber;
|
|
3186
|
+
max_nodes: z.ZodNumber;
|
|
3187
|
+
max_edges: z.ZodNumber;
|
|
3188
|
+
max_children_per_node: z.ZodNumber;
|
|
3189
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3190
|
+
max_depth: z.ZodNumber;
|
|
3191
|
+
max_nodes: z.ZodNumber;
|
|
3192
|
+
max_edges: z.ZodNumber;
|
|
3193
|
+
max_children_per_node: z.ZodNumber;
|
|
3194
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3195
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
3196
|
+
truncated: z.ZodBoolean;
|
|
3197
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3198
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3199
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3200
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3201
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3202
|
+
truncated: z.ZodBoolean;
|
|
3203
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3204
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3205
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3206
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3207
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3208
|
+
truncated: z.ZodBoolean;
|
|
3209
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3210
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3211
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3212
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3213
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2423
3214
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2424
3215
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
2425
3216
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -2428,17 +3219,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2428
3219
|
max_depth: z.ZodNumber;
|
|
2429
3220
|
structural_edges: z.ZodNumber;
|
|
2430
3221
|
associative_edges: z.ZodNumber;
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
3222
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3223
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3224
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3225
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3226
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3227
|
+
total_nodes: z.ZodNumber;
|
|
3228
|
+
max_depth: z.ZodNumber;
|
|
3229
|
+
structural_edges: z.ZodNumber;
|
|
3230
|
+
associative_edges: z.ZodNumber;
|
|
3231
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3232
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3233
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3234
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3235
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3236
|
+
total_nodes: z.ZodNumber;
|
|
3237
|
+
max_depth: z.ZodNumber;
|
|
3238
|
+
structural_edges: z.ZodNumber;
|
|
3239
|
+
associative_edges: z.ZodNumber;
|
|
3240
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3241
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3242
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3243
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3244
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3245
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
3246
|
+
max_depth: z.ZodNumber;
|
|
3247
|
+
max_nodes: z.ZodNumber;
|
|
3248
|
+
max_edges: z.ZodNumber;
|
|
3249
|
+
max_children_per_node: z.ZodNumber;
|
|
3250
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3251
|
+
max_depth: z.ZodNumber;
|
|
3252
|
+
max_nodes: z.ZodNumber;
|
|
3253
|
+
max_edges: z.ZodNumber;
|
|
3254
|
+
max_children_per_node: z.ZodNumber;
|
|
3255
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3256
|
+
max_depth: z.ZodNumber;
|
|
3257
|
+
max_nodes: z.ZodNumber;
|
|
3258
|
+
max_edges: z.ZodNumber;
|
|
3259
|
+
max_children_per_node: z.ZodNumber;
|
|
3260
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3261
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
3262
|
+
truncated: z.ZodBoolean;
|
|
3263
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3264
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3265
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3266
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3267
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3268
|
+
truncated: z.ZodBoolean;
|
|
3269
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3270
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3271
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3272
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3273
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3274
|
+
truncated: z.ZodBoolean;
|
|
3275
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
3276
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3277
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
3278
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
3279
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2442
3280
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2443
3281
|
diagnostics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2444
3282
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -2616,8 +3454,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2616
3454
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
2617
3455
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2618
3456
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
2619
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
2620
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
2621
3457
|
relatedServices: z.ZodObject<{
|
|
2622
3458
|
upstream: z.ZodArray<z.ZodObject<{
|
|
2623
3459
|
name: z.ZodString;
|
|
@@ -2732,8 +3568,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2732
3568
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
2733
3569
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2734
3570
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
2735
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
2736
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
2737
3571
|
relatedServices: z.ZodObject<{
|
|
2738
3572
|
upstream: z.ZodArray<z.ZodObject<{
|
|
2739
3573
|
name: z.ZodString;
|
|
@@ -2848,8 +3682,6 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
2848
3682
|
attributeSchemaKey: z.ZodOptional<z.ZodString>;
|
|
2849
3683
|
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2850
3684
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
2851
|
-
recommendedSpecialists: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
2852
|
-
eligibleSpecialists: z.ZodArray<z.ZodString, "many">;
|
|
2853
3685
|
relatedServices: z.ZodObject<{
|
|
2854
3686
|
upstream: z.ZodArray<z.ZodObject<{
|
|
2855
3687
|
name: z.ZodString;
|
|
@@ -3152,17 +3984,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
3152
3984
|
max_depth: z.ZodNumber;
|
|
3153
3985
|
structural_edges: z.ZodNumber;
|
|
3154
3986
|
associative_edges: z.ZodNumber;
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3987
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3988
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3989
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3990
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
3991
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3992
|
+
total_nodes: z.ZodNumber;
|
|
3993
|
+
max_depth: z.ZodNumber;
|
|
3994
|
+
structural_edges: z.ZodNumber;
|
|
3995
|
+
associative_edges: z.ZodNumber;
|
|
3996
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3997
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
3998
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
3999
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4000
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4001
|
+
total_nodes: z.ZodNumber;
|
|
4002
|
+
max_depth: z.ZodNumber;
|
|
4003
|
+
structural_edges: z.ZodNumber;
|
|
4004
|
+
associative_edges: z.ZodNumber;
|
|
4005
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4006
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4007
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4008
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4009
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4010
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
4011
|
+
max_depth: z.ZodNumber;
|
|
4012
|
+
max_nodes: z.ZodNumber;
|
|
4013
|
+
max_edges: z.ZodNumber;
|
|
4014
|
+
max_children_per_node: z.ZodNumber;
|
|
4015
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4016
|
+
max_depth: z.ZodNumber;
|
|
4017
|
+
max_nodes: z.ZodNumber;
|
|
4018
|
+
max_edges: z.ZodNumber;
|
|
4019
|
+
max_children_per_node: z.ZodNumber;
|
|
4020
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4021
|
+
max_depth: z.ZodNumber;
|
|
4022
|
+
max_nodes: z.ZodNumber;
|
|
4023
|
+
max_edges: z.ZodNumber;
|
|
4024
|
+
max_children_per_node: z.ZodNumber;
|
|
4025
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4026
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
4027
|
+
truncated: z.ZodBoolean;
|
|
4028
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4029
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4030
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4031
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4032
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4033
|
+
truncated: z.ZodBoolean;
|
|
4034
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4035
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4036
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4037
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4038
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4039
|
+
truncated: z.ZodBoolean;
|
|
4040
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4041
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4042
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4043
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4044
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3166
4045
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3167
4046
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
3168
4047
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -3171,17 +4050,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
3171
4050
|
max_depth: z.ZodNumber;
|
|
3172
4051
|
structural_edges: z.ZodNumber;
|
|
3173
4052
|
associative_edges: z.ZodNumber;
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
4053
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4054
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4055
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4056
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4057
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4058
|
+
total_nodes: z.ZodNumber;
|
|
4059
|
+
max_depth: z.ZodNumber;
|
|
4060
|
+
structural_edges: z.ZodNumber;
|
|
4061
|
+
associative_edges: z.ZodNumber;
|
|
4062
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4063
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4064
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4065
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4066
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4067
|
+
total_nodes: z.ZodNumber;
|
|
4068
|
+
max_depth: z.ZodNumber;
|
|
4069
|
+
structural_edges: z.ZodNumber;
|
|
4070
|
+
associative_edges: z.ZodNumber;
|
|
4071
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4072
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4073
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4074
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4075
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4076
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
4077
|
+
max_depth: z.ZodNumber;
|
|
4078
|
+
max_nodes: z.ZodNumber;
|
|
4079
|
+
max_edges: z.ZodNumber;
|
|
4080
|
+
max_children_per_node: z.ZodNumber;
|
|
4081
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4082
|
+
max_depth: z.ZodNumber;
|
|
4083
|
+
max_nodes: z.ZodNumber;
|
|
4084
|
+
max_edges: z.ZodNumber;
|
|
4085
|
+
max_children_per_node: z.ZodNumber;
|
|
4086
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4087
|
+
max_depth: z.ZodNumber;
|
|
4088
|
+
max_nodes: z.ZodNumber;
|
|
4089
|
+
max_edges: z.ZodNumber;
|
|
4090
|
+
max_children_per_node: z.ZodNumber;
|
|
4091
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4092
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
4093
|
+
truncated: z.ZodBoolean;
|
|
4094
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4095
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4096
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4097
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4098
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4099
|
+
truncated: z.ZodBoolean;
|
|
4100
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4101
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4102
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4103
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4104
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4105
|
+
truncated: z.ZodBoolean;
|
|
4106
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4107
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4108
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4109
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4110
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3185
4111
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3186
4112
|
status: z.ZodUnion<[z.ZodLiteral<"success">, z.ZodNumber]>;
|
|
3187
4113
|
topology: z.ZodType<NestedTopologyNode, z.ZodTypeDef, NestedTopologyNode>;
|
|
@@ -3190,17 +4116,64 @@ export declare const gatewayTopologyContextSchema: z.ZodObject<{
|
|
|
3190
4116
|
max_depth: z.ZodNumber;
|
|
3191
4117
|
structural_edges: z.ZodNumber;
|
|
3192
4118
|
associative_edges: z.ZodNumber;
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
4119
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4120
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4121
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4122
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4123
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4124
|
+
total_nodes: z.ZodNumber;
|
|
4125
|
+
max_depth: z.ZodNumber;
|
|
4126
|
+
structural_edges: z.ZodNumber;
|
|
4127
|
+
associative_edges: z.ZodNumber;
|
|
4128
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4129
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4130
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4131
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4132
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4133
|
+
total_nodes: z.ZodNumber;
|
|
4134
|
+
max_depth: z.ZodNumber;
|
|
4135
|
+
structural_edges: z.ZodNumber;
|
|
4136
|
+
associative_edges: z.ZodNumber;
|
|
4137
|
+
returned_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4138
|
+
returned_edges: z.ZodOptional<z.ZodNumber>;
|
|
4139
|
+
truncated_nodes: z.ZodOptional<z.ZodNumber>;
|
|
4140
|
+
truncated_edges: z.ZodOptional<z.ZodNumber>;
|
|
4141
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4142
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
4143
|
+
max_depth: z.ZodNumber;
|
|
4144
|
+
max_nodes: z.ZodNumber;
|
|
4145
|
+
max_edges: z.ZodNumber;
|
|
4146
|
+
max_children_per_node: z.ZodNumber;
|
|
4147
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4148
|
+
max_depth: z.ZodNumber;
|
|
4149
|
+
max_nodes: z.ZodNumber;
|
|
4150
|
+
max_edges: z.ZodNumber;
|
|
4151
|
+
max_children_per_node: z.ZodNumber;
|
|
4152
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4153
|
+
max_depth: z.ZodNumber;
|
|
4154
|
+
max_nodes: z.ZodNumber;
|
|
4155
|
+
max_edges: z.ZodNumber;
|
|
4156
|
+
max_children_per_node: z.ZodNumber;
|
|
4157
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4158
|
+
truncation: z.ZodOptional<z.ZodObject<{
|
|
4159
|
+
truncated: z.ZodBoolean;
|
|
4160
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4161
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4162
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4163
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4164
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4165
|
+
truncated: z.ZodBoolean;
|
|
4166
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4167
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4168
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4169
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4170
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4171
|
+
truncated: z.ZodBoolean;
|
|
4172
|
+
reasons: z.ZodArray<z.ZodEnum<["max_depth", "max_nodes", "max_edges", "max_children_per_node"]>, "many">;
|
|
4173
|
+
nodes_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4174
|
+
edges_omitted: z.ZodOptional<z.ZodNumber>;
|
|
4175
|
+
max_depth_reached: z.ZodOptional<z.ZodNumber>;
|
|
4176
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3204
4177
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
3205
4178
|
diagnostics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3206
4179
|
}, z.ZodTypeAny, "passthrough">>;
|