@anlyx/core 0.1.3 → 0.1.5

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.
@@ -0,0 +1,885 @@
1
+ import { z } from "zod";
2
+ export declare const projectSchemaVersionSchema: z.ZodLiteral<"0.2.0">;
3
+ export declare const projectLanguageSchema: z.ZodEnum<{
4
+ ko: "ko";
5
+ en: "en";
6
+ zh: "zh";
7
+ ja: "ja";
8
+ fr: "fr";
9
+ }>;
10
+ export declare const requestRoleSchema: z.ZodEnum<{
11
+ external: "external";
12
+ primary: "primary";
13
+ supporting: "supporting";
14
+ background: "background";
15
+ }>;
16
+ export declare const requestPurposeSchema: z.ZodEnum<{
17
+ unknown: "unknown";
18
+ "data-load": "data-load";
19
+ mutation: "mutation";
20
+ "auth-session": "auth-session";
21
+ preload: "preload";
22
+ analytics: "analytics";
23
+ tracking: "tracking";
24
+ permission: "permission";
25
+ notification: "notification";
26
+ polling: "polling";
27
+ "health-check": "health-check";
28
+ "external-api": "external-api";
29
+ "dev-runtime": "dev-runtime";
30
+ }>;
31
+ export declare const flowLayerKindSchema: z.ZodEnum<{
32
+ unknown: "unknown";
33
+ frontend: "frontend";
34
+ controller: "controller";
35
+ handler: "handler";
36
+ middleware: "middleware";
37
+ service: "service";
38
+ repository: "repository";
39
+ external: "external";
40
+ queue: "queue";
41
+ job: "job";
42
+ database: "database";
43
+ cache: "cache";
44
+ mapper: "mapper";
45
+ request: "request";
46
+ api: "api";
47
+ policy: "policy";
48
+ result: "result";
49
+ }>;
50
+ export declare const evidenceStatusSchema: z.ZodEnum<{
51
+ unknown: "unknown";
52
+ manual: "manual";
53
+ observed: "observed";
54
+ measured: "measured";
55
+ "source-matched": "source-matched";
56
+ "agent-inferred": "agent-inferred";
57
+ "not-proven": "not-proven";
58
+ }>;
59
+ export declare const measurementSourceSchema: z.ZodEnum<{
60
+ har: "har";
61
+ "browser-network": "browser-network";
62
+ log: "log";
63
+ trace: "trace";
64
+ opentelemetry: "opentelemetry";
65
+ "framework-profiler": "framework-profiler";
66
+ "apm-export": "apm-export";
67
+ "test-trace": "test-trace";
68
+ }>;
69
+ export declare const sourceLocationSchema: z.ZodObject<{
70
+ filePath: z.ZodOptional<z.ZodString>;
71
+ lineStart: z.ZodOptional<z.ZodNumber>;
72
+ lineEnd: z.ZodOptional<z.ZodNumber>;
73
+ symbol: z.ZodOptional<z.ZodString>;
74
+ }, z.core.$strict>;
75
+ export declare const projectGeneratedBySchema: z.ZodObject<{
76
+ kind: z.ZodEnum<{
77
+ manual: "manual";
78
+ agent: "agent";
79
+ }>;
80
+ name: z.ZodOptional<z.ZodString>;
81
+ model: z.ZodOptional<z.ZodString>;
82
+ version: z.ZodOptional<z.ZodString>;
83
+ }, z.core.$strict>;
84
+ export declare const projectInfoSchema: z.ZodObject<{
85
+ id: z.ZodString;
86
+ name: z.ZodString;
87
+ description: z.ZodOptional<z.ZodString>;
88
+ root: z.ZodOptional<z.ZodString>;
89
+ analyzedAt: z.ZodOptional<z.ZodString>;
90
+ frameworkNotes: z.ZodDefault<z.ZodArray<z.ZodString>>;
91
+ generatedBy: z.ZodOptional<z.ZodObject<{
92
+ kind: z.ZodEnum<{
93
+ manual: "manual";
94
+ agent: "agent";
95
+ }>;
96
+ name: z.ZodOptional<z.ZodString>;
97
+ model: z.ZodOptional<z.ZodString>;
98
+ version: z.ZodOptional<z.ZodString>;
99
+ }, z.core.$strict>>;
100
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
101
+ }, z.core.$strict>;
102
+ export declare const projectAreaSchema: z.ZodObject<{
103
+ id: z.ZodString;
104
+ name: z.ZodString;
105
+ description: z.ZodOptional<z.ZodString>;
106
+ order: z.ZodOptional<z.ZodNumber>;
107
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
108
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
109
+ }, z.core.$strict>;
110
+ export declare const projectPageSchema: z.ZodObject<{
111
+ id: z.ZodString;
112
+ path: z.ZodString;
113
+ title: z.ZodString;
114
+ areaId: z.ZodOptional<z.ZodString>;
115
+ description: z.ZodOptional<z.ZodString>;
116
+ source: z.ZodOptional<z.ZodObject<{
117
+ filePath: z.ZodOptional<z.ZodString>;
118
+ lineStart: z.ZodOptional<z.ZodNumber>;
119
+ lineEnd: z.ZodOptional<z.ZodNumber>;
120
+ symbol: z.ZodOptional<z.ZodString>;
121
+ }, z.core.$strict>>;
122
+ featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
123
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
124
+ confidence: z.ZodOptional<z.ZodEnum<{
125
+ unknown: "unknown";
126
+ high: "high";
127
+ medium: "medium";
128
+ low: "low";
129
+ }>>;
130
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
131
+ }, z.core.$strict>;
132
+ export declare const projectRequestSchema: z.ZodObject<{
133
+ id: z.ZodString;
134
+ method: z.ZodOptional<z.ZodEnum<{
135
+ GET: "GET";
136
+ POST: "POST";
137
+ PUT: "PUT";
138
+ PATCH: "PATCH";
139
+ DELETE: "DELETE";
140
+ }>>;
141
+ path: z.ZodOptional<z.ZodString>;
142
+ label: z.ZodOptional<z.ZodString>;
143
+ role: z.ZodEnum<{
144
+ external: "external";
145
+ primary: "primary";
146
+ supporting: "supporting";
147
+ background: "background";
148
+ }>;
149
+ purpose: z.ZodEnum<{
150
+ unknown: "unknown";
151
+ "data-load": "data-load";
152
+ mutation: "mutation";
153
+ "auth-session": "auth-session";
154
+ preload: "preload";
155
+ analytics: "analytics";
156
+ tracking: "tracking";
157
+ permission: "permission";
158
+ notification: "notification";
159
+ polling: "polling";
160
+ "health-check": "health-check";
161
+ "external-api": "external-api";
162
+ "dev-runtime": "dev-runtime";
163
+ }>;
164
+ description: z.ZodOptional<z.ZodString>;
165
+ flowId: z.ZodOptional<z.ZodString>;
166
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
167
+ confidence: z.ZodOptional<z.ZodEnum<{
168
+ unknown: "unknown";
169
+ high: "high";
170
+ medium: "medium";
171
+ low: "low";
172
+ }>>;
173
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
174
+ }, z.core.$strict>;
175
+ export declare const projectFeatureSchema: z.ZodObject<{
176
+ id: z.ZodString;
177
+ pageId: z.ZodString;
178
+ name: z.ZodString;
179
+ description: z.ZodOptional<z.ZodString>;
180
+ requests: z.ZodDefault<z.ZodArray<z.ZodObject<{
181
+ id: z.ZodString;
182
+ method: z.ZodOptional<z.ZodEnum<{
183
+ GET: "GET";
184
+ POST: "POST";
185
+ PUT: "PUT";
186
+ PATCH: "PATCH";
187
+ DELETE: "DELETE";
188
+ }>>;
189
+ path: z.ZodOptional<z.ZodString>;
190
+ label: z.ZodOptional<z.ZodString>;
191
+ role: z.ZodEnum<{
192
+ external: "external";
193
+ primary: "primary";
194
+ supporting: "supporting";
195
+ background: "background";
196
+ }>;
197
+ purpose: z.ZodEnum<{
198
+ unknown: "unknown";
199
+ "data-load": "data-load";
200
+ mutation: "mutation";
201
+ "auth-session": "auth-session";
202
+ preload: "preload";
203
+ analytics: "analytics";
204
+ tracking: "tracking";
205
+ permission: "permission";
206
+ notification: "notification";
207
+ polling: "polling";
208
+ "health-check": "health-check";
209
+ "external-api": "external-api";
210
+ "dev-runtime": "dev-runtime";
211
+ }>;
212
+ description: z.ZodOptional<z.ZodString>;
213
+ flowId: z.ZodOptional<z.ZodString>;
214
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
215
+ confidence: z.ZodOptional<z.ZodEnum<{
216
+ unknown: "unknown";
217
+ high: "high";
218
+ medium: "medium";
219
+ low: "low";
220
+ }>>;
221
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
222
+ }, z.core.$strict>>>;
223
+ requestIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
224
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
225
+ confidence: z.ZodOptional<z.ZodEnum<{
226
+ unknown: "unknown";
227
+ high: "high";
228
+ medium: "medium";
229
+ low: "low";
230
+ }>>;
231
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
232
+ }, z.core.$strict>;
233
+ export declare const projectFlowLayerSchema: z.ZodObject<{
234
+ id: z.ZodString;
235
+ kind: z.ZodEnum<{
236
+ unknown: "unknown";
237
+ frontend: "frontend";
238
+ controller: "controller";
239
+ handler: "handler";
240
+ middleware: "middleware";
241
+ service: "service";
242
+ repository: "repository";
243
+ external: "external";
244
+ queue: "queue";
245
+ job: "job";
246
+ database: "database";
247
+ cache: "cache";
248
+ mapper: "mapper";
249
+ request: "request";
250
+ api: "api";
251
+ policy: "policy";
252
+ result: "result";
253
+ }>;
254
+ label: z.ZodString;
255
+ source: z.ZodOptional<z.ZodObject<{
256
+ filePath: z.ZodOptional<z.ZodString>;
257
+ lineStart: z.ZodOptional<z.ZodNumber>;
258
+ lineEnd: z.ZodOptional<z.ZodNumber>;
259
+ symbol: z.ZodOptional<z.ZodString>;
260
+ }, z.core.$strict>>;
261
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
262
+ status: z.ZodDefault<z.ZodEnum<{
263
+ unknown: "unknown";
264
+ manual: "manual";
265
+ observed: "observed";
266
+ measured: "measured";
267
+ "source-matched": "source-matched";
268
+ "agent-inferred": "agent-inferred";
269
+ "not-proven": "not-proven";
270
+ }>>;
271
+ confidence: z.ZodOptional<z.ZodEnum<{
272
+ unknown: "unknown";
273
+ high: "high";
274
+ medium: "medium";
275
+ low: "low";
276
+ }>>;
277
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
278
+ }, z.core.$strict>;
279
+ export declare const projectFlowSchema: z.ZodObject<{
280
+ id: z.ZodString;
281
+ requestId: z.ZodOptional<z.ZodString>;
282
+ name: z.ZodOptional<z.ZodString>;
283
+ layers: z.ZodDefault<z.ZodArray<z.ZodObject<{
284
+ id: z.ZodString;
285
+ kind: z.ZodEnum<{
286
+ unknown: "unknown";
287
+ frontend: "frontend";
288
+ controller: "controller";
289
+ handler: "handler";
290
+ middleware: "middleware";
291
+ service: "service";
292
+ repository: "repository";
293
+ external: "external";
294
+ queue: "queue";
295
+ job: "job";
296
+ database: "database";
297
+ cache: "cache";
298
+ mapper: "mapper";
299
+ request: "request";
300
+ api: "api";
301
+ policy: "policy";
302
+ result: "result";
303
+ }>;
304
+ label: z.ZodString;
305
+ source: z.ZodOptional<z.ZodObject<{
306
+ filePath: z.ZodOptional<z.ZodString>;
307
+ lineStart: z.ZodOptional<z.ZodNumber>;
308
+ lineEnd: z.ZodOptional<z.ZodNumber>;
309
+ symbol: z.ZodOptional<z.ZodString>;
310
+ }, z.core.$strict>>;
311
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
312
+ status: z.ZodDefault<z.ZodEnum<{
313
+ unknown: "unknown";
314
+ manual: "manual";
315
+ observed: "observed";
316
+ measured: "measured";
317
+ "source-matched": "source-matched";
318
+ "agent-inferred": "agent-inferred";
319
+ "not-proven": "not-proven";
320
+ }>>;
321
+ confidence: z.ZodOptional<z.ZodEnum<{
322
+ unknown: "unknown";
323
+ high: "high";
324
+ medium: "medium";
325
+ low: "low";
326
+ }>>;
327
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
328
+ }, z.core.$strict>>>;
329
+ layerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
330
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
331
+ confidence: z.ZodOptional<z.ZodEnum<{
332
+ unknown: "unknown";
333
+ high: "high";
334
+ medium: "medium";
335
+ low: "low";
336
+ }>>;
337
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
338
+ }, z.core.$strict>;
339
+ export declare const architectureNodeSchema: z.ZodObject<{
340
+ id: z.ZodString;
341
+ kind: z.ZodEnum<{
342
+ unknown: "unknown";
343
+ frontend: "frontend";
344
+ controller: "controller";
345
+ handler: "handler";
346
+ middleware: "middleware";
347
+ service: "service";
348
+ repository: "repository";
349
+ external: "external";
350
+ queue: "queue";
351
+ job: "job";
352
+ database: "database";
353
+ cache: "cache";
354
+ mapper: "mapper";
355
+ request: "request";
356
+ api: "api";
357
+ policy: "policy";
358
+ result: "result";
359
+ }>;
360
+ label: z.ZodString;
361
+ displayLabel: z.ZodOptional<z.ZodString>;
362
+ domain: z.ZodOptional<z.ZodString>;
363
+ source: z.ZodOptional<z.ZodObject<{
364
+ filePath: z.ZodOptional<z.ZodString>;
365
+ lineStart: z.ZodOptional<z.ZodNumber>;
366
+ lineEnd: z.ZodOptional<z.ZodNumber>;
367
+ symbol: z.ZodOptional<z.ZodString>;
368
+ }, z.core.$strict>>;
369
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
370
+ confidence: z.ZodOptional<z.ZodEnum<{
371
+ unknown: "unknown";
372
+ high: "high";
373
+ medium: "medium";
374
+ low: "low";
375
+ }>>;
376
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
377
+ }, z.core.$strict>;
378
+ export declare const architectureEdgeSchema: z.ZodObject<{
379
+ id: z.ZodString;
380
+ source: z.ZodString;
381
+ target: z.ZodString;
382
+ role: z.ZodDefault<z.ZodEnum<{
383
+ primary: "primary";
384
+ shared: "shared";
385
+ aggregate: "aggregate";
386
+ context: "context";
387
+ }>>;
388
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
389
+ confidence: z.ZodOptional<z.ZodEnum<{
390
+ unknown: "unknown";
391
+ high: "high";
392
+ medium: "medium";
393
+ low: "low";
394
+ }>>;
395
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
396
+ }, z.core.$strict>;
397
+ export declare const architectureGraphSchema: z.ZodObject<{
398
+ nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
399
+ id: z.ZodString;
400
+ kind: z.ZodEnum<{
401
+ unknown: "unknown";
402
+ frontend: "frontend";
403
+ controller: "controller";
404
+ handler: "handler";
405
+ middleware: "middleware";
406
+ service: "service";
407
+ repository: "repository";
408
+ external: "external";
409
+ queue: "queue";
410
+ job: "job";
411
+ database: "database";
412
+ cache: "cache";
413
+ mapper: "mapper";
414
+ request: "request";
415
+ api: "api";
416
+ policy: "policy";
417
+ result: "result";
418
+ }>;
419
+ label: z.ZodString;
420
+ displayLabel: z.ZodOptional<z.ZodString>;
421
+ domain: z.ZodOptional<z.ZodString>;
422
+ source: z.ZodOptional<z.ZodObject<{
423
+ filePath: z.ZodOptional<z.ZodString>;
424
+ lineStart: z.ZodOptional<z.ZodNumber>;
425
+ lineEnd: z.ZodOptional<z.ZodNumber>;
426
+ symbol: z.ZodOptional<z.ZodString>;
427
+ }, z.core.$strict>>;
428
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
429
+ confidence: z.ZodOptional<z.ZodEnum<{
430
+ unknown: "unknown";
431
+ high: "high";
432
+ medium: "medium";
433
+ low: "low";
434
+ }>>;
435
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
436
+ }, z.core.$strict>>>;
437
+ edges: z.ZodDefault<z.ZodArray<z.ZodObject<{
438
+ id: z.ZodString;
439
+ source: z.ZodString;
440
+ target: z.ZodString;
441
+ role: z.ZodDefault<z.ZodEnum<{
442
+ primary: "primary";
443
+ shared: "shared";
444
+ aggregate: "aggregate";
445
+ context: "context";
446
+ }>>;
447
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
448
+ confidence: z.ZodOptional<z.ZodEnum<{
449
+ unknown: "unknown";
450
+ high: "high";
451
+ medium: "medium";
452
+ low: "low";
453
+ }>>;
454
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
455
+ }, z.core.$strict>>>;
456
+ }, z.core.$strict>;
457
+ export declare const projectEvidenceSchema: z.ZodObject<{
458
+ id: z.ZodString;
459
+ status: z.ZodEnum<{
460
+ unknown: "unknown";
461
+ manual: "manual";
462
+ observed: "observed";
463
+ measured: "measured";
464
+ "source-matched": "source-matched";
465
+ "agent-inferred": "agent-inferred";
466
+ "not-proven": "not-proven";
467
+ }>;
468
+ label: z.ZodString;
469
+ detail: z.ZodOptional<z.ZodString>;
470
+ source: z.ZodOptional<z.ZodObject<{
471
+ filePath: z.ZodOptional<z.ZodString>;
472
+ lineStart: z.ZodOptional<z.ZodNumber>;
473
+ lineEnd: z.ZodOptional<z.ZodNumber>;
474
+ symbol: z.ZodOptional<z.ZodString>;
475
+ }, z.core.$strict>>;
476
+ targetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
477
+ confidence: z.ZodOptional<z.ZodEnum<{
478
+ unknown: "unknown";
479
+ high: "high";
480
+ medium: "medium";
481
+ low: "low";
482
+ }>>;
483
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
484
+ }, z.core.$strict>;
485
+ export declare const projectMeasurementSchema: z.ZodObject<{
486
+ id: z.ZodString;
487
+ targetId: z.ZodString;
488
+ source: z.ZodEnum<{
489
+ har: "har";
490
+ "browser-network": "browser-network";
491
+ log: "log";
492
+ trace: "trace";
493
+ opentelemetry: "opentelemetry";
494
+ "framework-profiler": "framework-profiler";
495
+ "apm-export": "apm-export";
496
+ "test-trace": "test-trace";
497
+ }>;
498
+ durationMs: z.ZodNumber;
499
+ observedAt: z.ZodOptional<z.ZodString>;
500
+ evidenceId: z.ZodOptional<z.ZodString>;
501
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
502
+ }, z.core.$strict>;
503
+ export declare const dictionaryTermSchema: z.ZodObject<{
504
+ id: z.ZodString;
505
+ term: z.ZodString;
506
+ definition: z.ZodString;
507
+ relatedIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
508
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
509
+ }, z.core.$strict>;
510
+ export declare const projectDictionarySchema: z.ZodObject<{
511
+ defaultLanguage: z.ZodDefault<z.ZodEnum<{
512
+ ko: "ko";
513
+ en: "en";
514
+ zh: "zh";
515
+ ja: "ja";
516
+ fr: "fr";
517
+ }>>;
518
+ terms: z.ZodDefault<z.ZodArray<z.ZodObject<{
519
+ id: z.ZodString;
520
+ term: z.ZodString;
521
+ definition: z.ZodString;
522
+ relatedIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
523
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
524
+ }, z.core.$strict>>>;
525
+ }, z.core.$strict>;
526
+ export declare const projectDataSchema: z.ZodObject<{
527
+ schemaVersion: z.ZodLiteral<"0.2.0">;
528
+ project: z.ZodObject<{
529
+ id: z.ZodString;
530
+ name: z.ZodString;
531
+ description: z.ZodOptional<z.ZodString>;
532
+ root: z.ZodOptional<z.ZodString>;
533
+ analyzedAt: z.ZodOptional<z.ZodString>;
534
+ frameworkNotes: z.ZodDefault<z.ZodArray<z.ZodString>>;
535
+ generatedBy: z.ZodOptional<z.ZodObject<{
536
+ kind: z.ZodEnum<{
537
+ manual: "manual";
538
+ agent: "agent";
539
+ }>;
540
+ name: z.ZodOptional<z.ZodString>;
541
+ model: z.ZodOptional<z.ZodString>;
542
+ version: z.ZodOptional<z.ZodString>;
543
+ }, z.core.$strict>>;
544
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
545
+ }, z.core.$strict>;
546
+ areas: z.ZodDefault<z.ZodArray<z.ZodObject<{
547
+ id: z.ZodString;
548
+ name: z.ZodString;
549
+ description: z.ZodOptional<z.ZodString>;
550
+ order: z.ZodOptional<z.ZodNumber>;
551
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
552
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
553
+ }, z.core.$strict>>>;
554
+ pages: z.ZodDefault<z.ZodArray<z.ZodObject<{
555
+ id: z.ZodString;
556
+ path: z.ZodString;
557
+ title: z.ZodString;
558
+ areaId: z.ZodOptional<z.ZodString>;
559
+ description: z.ZodOptional<z.ZodString>;
560
+ source: z.ZodOptional<z.ZodObject<{
561
+ filePath: z.ZodOptional<z.ZodString>;
562
+ lineStart: z.ZodOptional<z.ZodNumber>;
563
+ lineEnd: z.ZodOptional<z.ZodNumber>;
564
+ symbol: z.ZodOptional<z.ZodString>;
565
+ }, z.core.$strict>>;
566
+ featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
567
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
568
+ confidence: z.ZodOptional<z.ZodEnum<{
569
+ unknown: "unknown";
570
+ high: "high";
571
+ medium: "medium";
572
+ low: "low";
573
+ }>>;
574
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
575
+ }, z.core.$strict>>>;
576
+ features: z.ZodDefault<z.ZodArray<z.ZodObject<{
577
+ id: z.ZodString;
578
+ pageId: z.ZodString;
579
+ name: z.ZodString;
580
+ description: z.ZodOptional<z.ZodString>;
581
+ requests: z.ZodDefault<z.ZodArray<z.ZodObject<{
582
+ id: z.ZodString;
583
+ method: z.ZodOptional<z.ZodEnum<{
584
+ GET: "GET";
585
+ POST: "POST";
586
+ PUT: "PUT";
587
+ PATCH: "PATCH";
588
+ DELETE: "DELETE";
589
+ }>>;
590
+ path: z.ZodOptional<z.ZodString>;
591
+ label: z.ZodOptional<z.ZodString>;
592
+ role: z.ZodEnum<{
593
+ external: "external";
594
+ primary: "primary";
595
+ supporting: "supporting";
596
+ background: "background";
597
+ }>;
598
+ purpose: z.ZodEnum<{
599
+ unknown: "unknown";
600
+ "data-load": "data-load";
601
+ mutation: "mutation";
602
+ "auth-session": "auth-session";
603
+ preload: "preload";
604
+ analytics: "analytics";
605
+ tracking: "tracking";
606
+ permission: "permission";
607
+ notification: "notification";
608
+ polling: "polling";
609
+ "health-check": "health-check";
610
+ "external-api": "external-api";
611
+ "dev-runtime": "dev-runtime";
612
+ }>;
613
+ description: z.ZodOptional<z.ZodString>;
614
+ flowId: z.ZodOptional<z.ZodString>;
615
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
616
+ confidence: z.ZodOptional<z.ZodEnum<{
617
+ unknown: "unknown";
618
+ high: "high";
619
+ medium: "medium";
620
+ low: "low";
621
+ }>>;
622
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
623
+ }, z.core.$strict>>>;
624
+ requestIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
625
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
626
+ confidence: z.ZodOptional<z.ZodEnum<{
627
+ unknown: "unknown";
628
+ high: "high";
629
+ medium: "medium";
630
+ low: "low";
631
+ }>>;
632
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
633
+ }, z.core.$strict>>>;
634
+ requests: z.ZodDefault<z.ZodArray<z.ZodObject<{
635
+ id: z.ZodString;
636
+ method: z.ZodOptional<z.ZodEnum<{
637
+ GET: "GET";
638
+ POST: "POST";
639
+ PUT: "PUT";
640
+ PATCH: "PATCH";
641
+ DELETE: "DELETE";
642
+ }>>;
643
+ path: z.ZodOptional<z.ZodString>;
644
+ label: z.ZodOptional<z.ZodString>;
645
+ role: z.ZodEnum<{
646
+ external: "external";
647
+ primary: "primary";
648
+ supporting: "supporting";
649
+ background: "background";
650
+ }>;
651
+ purpose: z.ZodEnum<{
652
+ unknown: "unknown";
653
+ "data-load": "data-load";
654
+ mutation: "mutation";
655
+ "auth-session": "auth-session";
656
+ preload: "preload";
657
+ analytics: "analytics";
658
+ tracking: "tracking";
659
+ permission: "permission";
660
+ notification: "notification";
661
+ polling: "polling";
662
+ "health-check": "health-check";
663
+ "external-api": "external-api";
664
+ "dev-runtime": "dev-runtime";
665
+ }>;
666
+ description: z.ZodOptional<z.ZodString>;
667
+ flowId: z.ZodOptional<z.ZodString>;
668
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
669
+ confidence: z.ZodOptional<z.ZodEnum<{
670
+ unknown: "unknown";
671
+ high: "high";
672
+ medium: "medium";
673
+ low: "low";
674
+ }>>;
675
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
676
+ }, z.core.$strict>>>;
677
+ flows: z.ZodDefault<z.ZodArray<z.ZodObject<{
678
+ id: z.ZodString;
679
+ requestId: z.ZodOptional<z.ZodString>;
680
+ name: z.ZodOptional<z.ZodString>;
681
+ layers: z.ZodDefault<z.ZodArray<z.ZodObject<{
682
+ id: z.ZodString;
683
+ kind: z.ZodEnum<{
684
+ unknown: "unknown";
685
+ frontend: "frontend";
686
+ controller: "controller";
687
+ handler: "handler";
688
+ middleware: "middleware";
689
+ service: "service";
690
+ repository: "repository";
691
+ external: "external";
692
+ queue: "queue";
693
+ job: "job";
694
+ database: "database";
695
+ cache: "cache";
696
+ mapper: "mapper";
697
+ request: "request";
698
+ api: "api";
699
+ policy: "policy";
700
+ result: "result";
701
+ }>;
702
+ label: z.ZodString;
703
+ source: z.ZodOptional<z.ZodObject<{
704
+ filePath: z.ZodOptional<z.ZodString>;
705
+ lineStart: z.ZodOptional<z.ZodNumber>;
706
+ lineEnd: z.ZodOptional<z.ZodNumber>;
707
+ symbol: z.ZodOptional<z.ZodString>;
708
+ }, z.core.$strict>>;
709
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
710
+ status: z.ZodDefault<z.ZodEnum<{
711
+ unknown: "unknown";
712
+ manual: "manual";
713
+ observed: "observed";
714
+ measured: "measured";
715
+ "source-matched": "source-matched";
716
+ "agent-inferred": "agent-inferred";
717
+ "not-proven": "not-proven";
718
+ }>>;
719
+ confidence: z.ZodOptional<z.ZodEnum<{
720
+ unknown: "unknown";
721
+ high: "high";
722
+ medium: "medium";
723
+ low: "low";
724
+ }>>;
725
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
726
+ }, z.core.$strict>>>;
727
+ layerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
728
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
729
+ confidence: z.ZodOptional<z.ZodEnum<{
730
+ unknown: "unknown";
731
+ high: "high";
732
+ medium: "medium";
733
+ low: "low";
734
+ }>>;
735
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
736
+ }, z.core.$strict>>>;
737
+ architecture: z.ZodDefault<z.ZodObject<{
738
+ nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
739
+ id: z.ZodString;
740
+ kind: z.ZodEnum<{
741
+ unknown: "unknown";
742
+ frontend: "frontend";
743
+ controller: "controller";
744
+ handler: "handler";
745
+ middleware: "middleware";
746
+ service: "service";
747
+ repository: "repository";
748
+ external: "external";
749
+ queue: "queue";
750
+ job: "job";
751
+ database: "database";
752
+ cache: "cache";
753
+ mapper: "mapper";
754
+ request: "request";
755
+ api: "api";
756
+ policy: "policy";
757
+ result: "result";
758
+ }>;
759
+ label: z.ZodString;
760
+ displayLabel: z.ZodOptional<z.ZodString>;
761
+ domain: z.ZodOptional<z.ZodString>;
762
+ source: z.ZodOptional<z.ZodObject<{
763
+ filePath: z.ZodOptional<z.ZodString>;
764
+ lineStart: z.ZodOptional<z.ZodNumber>;
765
+ lineEnd: z.ZodOptional<z.ZodNumber>;
766
+ symbol: z.ZodOptional<z.ZodString>;
767
+ }, z.core.$strict>>;
768
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
769
+ confidence: z.ZodOptional<z.ZodEnum<{
770
+ unknown: "unknown";
771
+ high: "high";
772
+ medium: "medium";
773
+ low: "low";
774
+ }>>;
775
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
776
+ }, z.core.$strict>>>;
777
+ edges: z.ZodDefault<z.ZodArray<z.ZodObject<{
778
+ id: z.ZodString;
779
+ source: z.ZodString;
780
+ target: z.ZodString;
781
+ role: z.ZodDefault<z.ZodEnum<{
782
+ primary: "primary";
783
+ shared: "shared";
784
+ aggregate: "aggregate";
785
+ context: "context";
786
+ }>>;
787
+ evidenceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
788
+ confidence: z.ZodOptional<z.ZodEnum<{
789
+ unknown: "unknown";
790
+ high: "high";
791
+ medium: "medium";
792
+ low: "low";
793
+ }>>;
794
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
795
+ }, z.core.$strict>>>;
796
+ }, z.core.$strict>>;
797
+ evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
798
+ id: z.ZodString;
799
+ status: z.ZodEnum<{
800
+ unknown: "unknown";
801
+ manual: "manual";
802
+ observed: "observed";
803
+ measured: "measured";
804
+ "source-matched": "source-matched";
805
+ "agent-inferred": "agent-inferred";
806
+ "not-proven": "not-proven";
807
+ }>;
808
+ label: z.ZodString;
809
+ detail: z.ZodOptional<z.ZodString>;
810
+ source: z.ZodOptional<z.ZodObject<{
811
+ filePath: z.ZodOptional<z.ZodString>;
812
+ lineStart: z.ZodOptional<z.ZodNumber>;
813
+ lineEnd: z.ZodOptional<z.ZodNumber>;
814
+ symbol: z.ZodOptional<z.ZodString>;
815
+ }, z.core.$strict>>;
816
+ targetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
817
+ confidence: z.ZodOptional<z.ZodEnum<{
818
+ unknown: "unknown";
819
+ high: "high";
820
+ medium: "medium";
821
+ low: "low";
822
+ }>>;
823
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
824
+ }, z.core.$strict>>>;
825
+ measurements: z.ZodDefault<z.ZodArray<z.ZodObject<{
826
+ id: z.ZodString;
827
+ targetId: z.ZodString;
828
+ source: z.ZodEnum<{
829
+ har: "har";
830
+ "browser-network": "browser-network";
831
+ log: "log";
832
+ trace: "trace";
833
+ opentelemetry: "opentelemetry";
834
+ "framework-profiler": "framework-profiler";
835
+ "apm-export": "apm-export";
836
+ "test-trace": "test-trace";
837
+ }>;
838
+ durationMs: z.ZodNumber;
839
+ observedAt: z.ZodOptional<z.ZodString>;
840
+ evidenceId: z.ZodOptional<z.ZodString>;
841
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
842
+ }, z.core.$strict>>>;
843
+ dictionary: z.ZodDefault<z.ZodObject<{
844
+ defaultLanguage: z.ZodDefault<z.ZodEnum<{
845
+ ko: "ko";
846
+ en: "en";
847
+ zh: "zh";
848
+ ja: "ja";
849
+ fr: "fr";
850
+ }>>;
851
+ terms: z.ZodDefault<z.ZodArray<z.ZodObject<{
852
+ id: z.ZodString;
853
+ term: z.ZodString;
854
+ definition: z.ZodString;
855
+ relatedIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
856
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
857
+ }, z.core.$strict>>>;
858
+ }, z.core.$strict>>;
859
+ }, z.core.$strict>;
860
+ export type ProjectSchemaVersion = z.infer<typeof projectSchemaVersionSchema>;
861
+ export type ProjectLanguage = z.infer<typeof projectLanguageSchema>;
862
+ export type RequestRole = z.infer<typeof requestRoleSchema>;
863
+ export type RequestPurpose = z.infer<typeof requestPurposeSchema>;
864
+ export type FlowLayerKind = z.infer<typeof flowLayerKindSchema>;
865
+ export type EvidenceStatus = z.infer<typeof evidenceStatusSchema>;
866
+ export type MeasurementSource = z.infer<typeof measurementSourceSchema>;
867
+ export type SourceLocation = z.infer<typeof sourceLocationSchema>;
868
+ export type ProjectGeneratedBy = z.infer<typeof projectGeneratedBySchema>;
869
+ export type ProjectInfo = z.infer<typeof projectInfoSchema>;
870
+ export type ProjectArea = z.infer<typeof projectAreaSchema>;
871
+ export type ProjectPage = z.infer<typeof projectPageSchema>;
872
+ export type ProjectRequest = z.infer<typeof projectRequestSchema>;
873
+ export type ProjectFeature = z.infer<typeof projectFeatureSchema>;
874
+ export type ProjectFlowLayer = z.infer<typeof projectFlowLayerSchema>;
875
+ export type ProjectFlow = z.infer<typeof projectFlowSchema>;
876
+ export type ArchitectureNode = z.infer<typeof architectureNodeSchema>;
877
+ export type ArchitectureEdge = z.infer<typeof architectureEdgeSchema>;
878
+ export type ArchitectureGraph = z.infer<typeof architectureGraphSchema>;
879
+ export type ProjectEvidence = z.infer<typeof projectEvidenceSchema>;
880
+ export type ProjectMeasurement = z.infer<typeof projectMeasurementSchema>;
881
+ export type DictionaryTerm = z.infer<typeof dictionaryTermSchema>;
882
+ export type ProjectDictionary = z.infer<typeof projectDictionarySchema>;
883
+ export type ProjectData = z.infer<typeof projectDataSchema>;
884
+ export declare function parseProjectData(value: unknown): ProjectData;
885
+ //# sourceMappingURL=project-schema.d.ts.map