@deepintel-ltd/farmpro-contracts 1.3.1 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/index.d.ts +7 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +10 -1
  4. package/dist/routes/admin.routes.d.ts +747 -0
  5. package/dist/routes/admin.routes.d.ts.map +1 -0
  6. package/dist/routes/admin.routes.js +26 -0
  7. package/dist/routes/agent-workflows.routes.d.ts +2900 -0
  8. package/dist/routes/agent-workflows.routes.d.ts.map +1 -0
  9. package/dist/routes/agent-workflows.routes.js +160 -0
  10. package/dist/routes/documents.routes.d.ts +417 -0
  11. package/dist/routes/documents.routes.d.ts.map +1 -1
  12. package/dist/routes/documents.routes.js +16 -0
  13. package/dist/routes/field-monitoring.routes.d.ts +568 -23
  14. package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
  15. package/dist/routes/field-monitoring.routes.js +64 -0
  16. package/dist/routes/field-observations.routes.d.ts +130 -58
  17. package/dist/routes/field-observations.routes.d.ts.map +1 -1
  18. package/dist/routes/health.routes.d.ts +317 -0
  19. package/dist/routes/health.routes.d.ts.map +1 -0
  20. package/dist/routes/health.routes.js +18 -0
  21. package/dist/routes/index.d.ts +9 -0
  22. package/dist/routes/index.d.ts.map +1 -1
  23. package/dist/routes/index.js +6 -0
  24. package/dist/routes/tasks.routes.d.ts +408 -0
  25. package/dist/routes/tasks.routes.d.ts.map +1 -1
  26. package/dist/routes/weather.routes.d.ts +264 -17
  27. package/dist/routes/weather.routes.d.ts.map +1 -1
  28. package/dist/schemas/admin.schemas.d.ts +1063 -0
  29. package/dist/schemas/admin.schemas.d.ts.map +1 -0
  30. package/dist/schemas/admin.schemas.js +63 -0
  31. package/dist/schemas/agent-workflows.schemas.d.ts +2399 -0
  32. package/dist/schemas/agent-workflows.schemas.d.ts.map +1 -0
  33. package/dist/schemas/agent-workflows.schemas.js +70 -0
  34. package/dist/schemas/documents.schemas.d.ts +202 -0
  35. package/dist/schemas/documents.schemas.d.ts.map +1 -1
  36. package/dist/schemas/documents.schemas.js +10 -1
  37. package/dist/schemas/field-monitoring.schemas.d.ts +215 -9
  38. package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
  39. package/dist/schemas/field-monitoring.schemas.js +26 -2
  40. package/dist/schemas/field-observations.schemas.d.ts +100 -40
  41. package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
  42. package/dist/schemas/field-observations.schemas.js +2 -24
  43. package/dist/schemas/health.schemas.d.ts +176 -0
  44. package/dist/schemas/health.schemas.d.ts.map +1 -0
  45. package/dist/schemas/health.schemas.js +26 -0
  46. package/dist/schemas/recommendations.schemas.d.ts +112 -0
  47. package/dist/schemas/recommendations.schemas.d.ts.map +1 -0
  48. package/dist/schemas/recommendations.schemas.js +32 -0
  49. package/dist/schemas/tasks.schemas.d.ts +344 -0
  50. package/dist/schemas/tasks.schemas.d.ts.map +1 -1
  51. package/dist/schemas/tasks.schemas.js +9 -0
  52. package/dist/schemas/weather.schemas.d.ts +780 -44
  53. package/dist/schemas/weather.schemas.d.ts.map +1 -1
  54. package/dist/schemas/weather.schemas.js +2 -1
  55. package/package.json +1 -1
@@ -0,0 +1,747 @@
1
+ import { z } from 'zod';
2
+ export declare const adminRouter: {
3
+ getAutonomousMonitoringStats: {
4
+ query: z.ZodObject<{
5
+ startDate: z.ZodOptional<z.ZodString>;
6
+ endDate: z.ZodOptional<z.ZodString>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ startDate?: string | undefined;
9
+ endDate?: string | undefined;
10
+ }, {
11
+ startDate?: string | undefined;
12
+ endDate?: string | undefined;
13
+ }>;
14
+ summary: "Get autonomous monitoring analytics";
15
+ description: "Get comprehensive analytics for the autonomous multi-agent monitoring system";
16
+ method: "GET";
17
+ path: "/admin/autonomous-monitoring/stats";
18
+ responses: {
19
+ 200: z.ZodObject<{
20
+ data: z.ZodObject<{
21
+ type: z.ZodLiteral<string>;
22
+ id: z.ZodString;
23
+ attributes: z.ZodObject<{
24
+ overall: z.ZodObject<{
25
+ totalRecommendations: z.ZodNumber;
26
+ tasksCreated: z.ZodNumber;
27
+ tasksUpdated: z.ZodNumber;
28
+ skipped: z.ZodNumber;
29
+ deduplicationRate: z.ZodNumber;
30
+ }, "strip", z.ZodTypeAny, {
31
+ skipped: number;
32
+ tasksCreated: number;
33
+ tasksUpdated: number;
34
+ deduplicationRate: number;
35
+ totalRecommendations: number;
36
+ }, {
37
+ skipped: number;
38
+ tasksCreated: number;
39
+ tasksUpdated: number;
40
+ deduplicationRate: number;
41
+ totalRecommendations: number;
42
+ }>;
43
+ bySource: z.ZodRecord<z.ZodString, z.ZodObject<{
44
+ recommendations: z.ZodNumber;
45
+ tasksCreated: z.ZodNumber;
46
+ tasksUpdated: z.ZodNumber;
47
+ skipped: z.ZodNumber;
48
+ avgConfidence: z.ZodNumber;
49
+ tasksCompleted: z.ZodOptional<z.ZodNumber>;
50
+ successfulOutcomes: z.ZodOptional<z.ZodNumber>;
51
+ successRate: z.ZodOptional<z.ZodNumber>;
52
+ }, "strip", z.ZodTypeAny, {
53
+ recommendations: number;
54
+ skipped: number;
55
+ tasksCreated: number;
56
+ tasksUpdated: number;
57
+ avgConfidence: number;
58
+ tasksCompleted?: number | undefined;
59
+ successRate?: number | undefined;
60
+ successfulOutcomes?: number | undefined;
61
+ }, {
62
+ recommendations: number;
63
+ skipped: number;
64
+ tasksCreated: number;
65
+ tasksUpdated: number;
66
+ avgConfidence: number;
67
+ tasksCompleted?: number | undefined;
68
+ successRate?: number | undefined;
69
+ successfulOutcomes?: number | undefined;
70
+ }>>;
71
+ crossSourceMatches: z.ZodArray<z.ZodObject<{
72
+ issueType: z.ZodString;
73
+ sources: z.ZodArray<z.ZodString, "many">;
74
+ occurrences: z.ZodNumber;
75
+ tasksCreated: z.ZodNumber;
76
+ deduplicationRate: z.ZodNumber;
77
+ }, "strip", z.ZodTypeAny, {
78
+ tasksCreated: number;
79
+ issueType: string;
80
+ sources: string[];
81
+ occurrences: number;
82
+ deduplicationRate: number;
83
+ }, {
84
+ tasksCreated: number;
85
+ issueType: string;
86
+ sources: string[];
87
+ occurrences: number;
88
+ deduplicationRate: number;
89
+ }>, "many">;
90
+ effectiveness: z.ZodRecord<z.ZodString, z.ZodObject<{
91
+ tasksCompleted: z.ZodNumber;
92
+ successfulOutcomes: z.ZodNumber;
93
+ successRate: z.ZodNumber;
94
+ avgImprovementScore: z.ZodNumber;
95
+ }, "strip", z.ZodTypeAny, {
96
+ tasksCompleted: number;
97
+ successRate: number;
98
+ successfulOutcomes: number;
99
+ avgImprovementScore: number;
100
+ }, {
101
+ tasksCompleted: number;
102
+ successRate: number;
103
+ successfulOutcomes: number;
104
+ avgImprovementScore: number;
105
+ }>>;
106
+ learnedPatterns: z.ZodObject<{
107
+ totalPatterns: z.ZodNumber;
108
+ patterns: z.ZodArray<z.ZodObject<{
109
+ issueType: z.ZodString;
110
+ bestSource: z.ZodString;
111
+ bestSourceScore: z.ZodNumber;
112
+ worstSource: z.ZodString;
113
+ worstSourceScore: z.ZodNumber;
114
+ }, "strip", z.ZodTypeAny, {
115
+ issueType: string;
116
+ bestSource: string;
117
+ bestSourceScore: number;
118
+ worstSource: string;
119
+ worstSourceScore: number;
120
+ }, {
121
+ issueType: string;
122
+ bestSource: string;
123
+ bestSourceScore: number;
124
+ worstSource: string;
125
+ worstSourceScore: number;
126
+ }>, "many">;
127
+ }, "strip", z.ZodTypeAny, {
128
+ totalPatterns: number;
129
+ patterns: {
130
+ issueType: string;
131
+ bestSource: string;
132
+ bestSourceScore: number;
133
+ worstSource: string;
134
+ worstSourceScore: number;
135
+ }[];
136
+ }, {
137
+ totalPatterns: number;
138
+ patterns: {
139
+ issueType: string;
140
+ bestSource: string;
141
+ bestSourceScore: number;
142
+ worstSource: string;
143
+ worstSourceScore: number;
144
+ }[];
145
+ }>;
146
+ }, "strip", z.ZodTypeAny, {
147
+ overall: {
148
+ skipped: number;
149
+ tasksCreated: number;
150
+ tasksUpdated: number;
151
+ deduplicationRate: number;
152
+ totalRecommendations: number;
153
+ };
154
+ bySource: Record<string, {
155
+ recommendations: number;
156
+ skipped: number;
157
+ tasksCreated: number;
158
+ tasksUpdated: number;
159
+ avgConfidence: number;
160
+ tasksCompleted?: number | undefined;
161
+ successRate?: number | undefined;
162
+ successfulOutcomes?: number | undefined;
163
+ }>;
164
+ crossSourceMatches: {
165
+ tasksCreated: number;
166
+ issueType: string;
167
+ sources: string[];
168
+ occurrences: number;
169
+ deduplicationRate: number;
170
+ }[];
171
+ effectiveness: Record<string, {
172
+ tasksCompleted: number;
173
+ successRate: number;
174
+ successfulOutcomes: number;
175
+ avgImprovementScore: number;
176
+ }>;
177
+ learnedPatterns: {
178
+ totalPatterns: number;
179
+ patterns: {
180
+ issueType: string;
181
+ bestSource: string;
182
+ bestSourceScore: number;
183
+ worstSource: string;
184
+ worstSourceScore: number;
185
+ }[];
186
+ };
187
+ }, {
188
+ overall: {
189
+ skipped: number;
190
+ tasksCreated: number;
191
+ tasksUpdated: number;
192
+ deduplicationRate: number;
193
+ totalRecommendations: number;
194
+ };
195
+ bySource: Record<string, {
196
+ recommendations: number;
197
+ skipped: number;
198
+ tasksCreated: number;
199
+ tasksUpdated: number;
200
+ avgConfidence: number;
201
+ tasksCompleted?: number | undefined;
202
+ successRate?: number | undefined;
203
+ successfulOutcomes?: number | undefined;
204
+ }>;
205
+ crossSourceMatches: {
206
+ tasksCreated: number;
207
+ issueType: string;
208
+ sources: string[];
209
+ occurrences: number;
210
+ deduplicationRate: number;
211
+ }[];
212
+ effectiveness: Record<string, {
213
+ tasksCompleted: number;
214
+ successRate: number;
215
+ successfulOutcomes: number;
216
+ avgImprovementScore: number;
217
+ }>;
218
+ learnedPatterns: {
219
+ totalPatterns: number;
220
+ patterns: {
221
+ issueType: string;
222
+ bestSource: string;
223
+ bestSourceScore: number;
224
+ worstSource: string;
225
+ worstSourceScore: number;
226
+ }[];
227
+ };
228
+ }>;
229
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
230
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
231
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
232
+ }, "strip", z.ZodTypeAny, {
233
+ type: string;
234
+ id: string;
235
+ attributes: {
236
+ overall: {
237
+ skipped: number;
238
+ tasksCreated: number;
239
+ tasksUpdated: number;
240
+ deduplicationRate: number;
241
+ totalRecommendations: number;
242
+ };
243
+ bySource: Record<string, {
244
+ recommendations: number;
245
+ skipped: number;
246
+ tasksCreated: number;
247
+ tasksUpdated: number;
248
+ avgConfidence: number;
249
+ tasksCompleted?: number | undefined;
250
+ successRate?: number | undefined;
251
+ successfulOutcomes?: number | undefined;
252
+ }>;
253
+ crossSourceMatches: {
254
+ tasksCreated: number;
255
+ issueType: string;
256
+ sources: string[];
257
+ occurrences: number;
258
+ deduplicationRate: number;
259
+ }[];
260
+ effectiveness: Record<string, {
261
+ tasksCompleted: number;
262
+ successRate: number;
263
+ successfulOutcomes: number;
264
+ avgImprovementScore: number;
265
+ }>;
266
+ learnedPatterns: {
267
+ totalPatterns: number;
268
+ patterns: {
269
+ issueType: string;
270
+ bestSource: string;
271
+ bestSourceScore: number;
272
+ worstSource: string;
273
+ worstSourceScore: number;
274
+ }[];
275
+ };
276
+ };
277
+ relationships?: Record<string, unknown> | undefined;
278
+ links?: Record<string, string> | undefined;
279
+ meta?: Record<string, unknown> | undefined;
280
+ }, {
281
+ type: string;
282
+ id: string;
283
+ attributes: {
284
+ overall: {
285
+ skipped: number;
286
+ tasksCreated: number;
287
+ tasksUpdated: number;
288
+ deduplicationRate: number;
289
+ totalRecommendations: number;
290
+ };
291
+ bySource: Record<string, {
292
+ recommendations: number;
293
+ skipped: number;
294
+ tasksCreated: number;
295
+ tasksUpdated: number;
296
+ avgConfidence: number;
297
+ tasksCompleted?: number | undefined;
298
+ successRate?: number | undefined;
299
+ successfulOutcomes?: number | undefined;
300
+ }>;
301
+ crossSourceMatches: {
302
+ tasksCreated: number;
303
+ issueType: string;
304
+ sources: string[];
305
+ occurrences: number;
306
+ deduplicationRate: number;
307
+ }[];
308
+ effectiveness: Record<string, {
309
+ tasksCompleted: number;
310
+ successRate: number;
311
+ successfulOutcomes: number;
312
+ avgImprovementScore: number;
313
+ }>;
314
+ learnedPatterns: {
315
+ totalPatterns: number;
316
+ patterns: {
317
+ issueType: string;
318
+ bestSource: string;
319
+ bestSourceScore: number;
320
+ worstSource: string;
321
+ worstSourceScore: number;
322
+ }[];
323
+ };
324
+ };
325
+ relationships?: Record<string, unknown> | undefined;
326
+ links?: Record<string, string> | undefined;
327
+ meta?: Record<string, unknown> | undefined;
328
+ }>;
329
+ included: z.ZodOptional<z.ZodArray<z.ZodObject<{
330
+ type: z.ZodString;
331
+ id: z.ZodString;
332
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
333
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
334
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
335
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
336
+ }, "strip", z.ZodTypeAny, {
337
+ type: string;
338
+ id: string;
339
+ attributes?: Record<string, unknown> | undefined;
340
+ relationships?: Record<string, unknown> | undefined;
341
+ links?: Record<string, string> | undefined;
342
+ meta?: Record<string, unknown> | undefined;
343
+ }, {
344
+ type: string;
345
+ id: string;
346
+ attributes?: Record<string, unknown> | undefined;
347
+ relationships?: Record<string, unknown> | undefined;
348
+ links?: Record<string, string> | undefined;
349
+ meta?: Record<string, unknown> | undefined;
350
+ }>, "many">>;
351
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
352
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
353
+ }, "strip", z.ZodTypeAny, {
354
+ data: {
355
+ type: string;
356
+ id: string;
357
+ attributes: {
358
+ overall: {
359
+ skipped: number;
360
+ tasksCreated: number;
361
+ tasksUpdated: number;
362
+ deduplicationRate: number;
363
+ totalRecommendations: number;
364
+ };
365
+ bySource: Record<string, {
366
+ recommendations: number;
367
+ skipped: number;
368
+ tasksCreated: number;
369
+ tasksUpdated: number;
370
+ avgConfidence: number;
371
+ tasksCompleted?: number | undefined;
372
+ successRate?: number | undefined;
373
+ successfulOutcomes?: number | undefined;
374
+ }>;
375
+ crossSourceMatches: {
376
+ tasksCreated: number;
377
+ issueType: string;
378
+ sources: string[];
379
+ occurrences: number;
380
+ deduplicationRate: number;
381
+ }[];
382
+ effectiveness: Record<string, {
383
+ tasksCompleted: number;
384
+ successRate: number;
385
+ successfulOutcomes: number;
386
+ avgImprovementScore: number;
387
+ }>;
388
+ learnedPatterns: {
389
+ totalPatterns: number;
390
+ patterns: {
391
+ issueType: string;
392
+ bestSource: string;
393
+ bestSourceScore: number;
394
+ worstSource: string;
395
+ worstSourceScore: number;
396
+ }[];
397
+ };
398
+ };
399
+ relationships?: Record<string, unknown> | undefined;
400
+ links?: Record<string, string> | undefined;
401
+ meta?: Record<string, unknown> | undefined;
402
+ };
403
+ links?: Record<string, string> | undefined;
404
+ meta?: Record<string, unknown> | undefined;
405
+ included?: {
406
+ type: string;
407
+ id: string;
408
+ attributes?: Record<string, unknown> | undefined;
409
+ relationships?: Record<string, unknown> | undefined;
410
+ links?: Record<string, string> | undefined;
411
+ meta?: Record<string, unknown> | undefined;
412
+ }[] | undefined;
413
+ }, {
414
+ data: {
415
+ type: string;
416
+ id: string;
417
+ attributes: {
418
+ overall: {
419
+ skipped: number;
420
+ tasksCreated: number;
421
+ tasksUpdated: number;
422
+ deduplicationRate: number;
423
+ totalRecommendations: number;
424
+ };
425
+ bySource: Record<string, {
426
+ recommendations: number;
427
+ skipped: number;
428
+ tasksCreated: number;
429
+ tasksUpdated: number;
430
+ avgConfidence: number;
431
+ tasksCompleted?: number | undefined;
432
+ successRate?: number | undefined;
433
+ successfulOutcomes?: number | undefined;
434
+ }>;
435
+ crossSourceMatches: {
436
+ tasksCreated: number;
437
+ issueType: string;
438
+ sources: string[];
439
+ occurrences: number;
440
+ deduplicationRate: number;
441
+ }[];
442
+ effectiveness: Record<string, {
443
+ tasksCompleted: number;
444
+ successRate: number;
445
+ successfulOutcomes: number;
446
+ avgImprovementScore: number;
447
+ }>;
448
+ learnedPatterns: {
449
+ totalPatterns: number;
450
+ patterns: {
451
+ issueType: string;
452
+ bestSource: string;
453
+ bestSourceScore: number;
454
+ worstSource: string;
455
+ worstSourceScore: number;
456
+ }[];
457
+ };
458
+ };
459
+ relationships?: Record<string, unknown> | undefined;
460
+ links?: Record<string, string> | undefined;
461
+ meta?: Record<string, unknown> | undefined;
462
+ };
463
+ links?: Record<string, string> | undefined;
464
+ meta?: Record<string, unknown> | undefined;
465
+ included?: {
466
+ type: string;
467
+ id: string;
468
+ attributes?: Record<string, unknown> | undefined;
469
+ relationships?: Record<string, unknown> | undefined;
470
+ links?: Record<string, string> | undefined;
471
+ meta?: Record<string, unknown> | undefined;
472
+ }[] | undefined;
473
+ }>;
474
+ 401: z.ZodObject<{
475
+ errors: z.ZodArray<z.ZodObject<{
476
+ id: z.ZodOptional<z.ZodString>;
477
+ links: z.ZodOptional<z.ZodObject<{
478
+ about: z.ZodOptional<z.ZodString>;
479
+ }, "strip", z.ZodTypeAny, {
480
+ about?: string | undefined;
481
+ }, {
482
+ about?: string | undefined;
483
+ }>>;
484
+ status: z.ZodOptional<z.ZodString>;
485
+ code: z.ZodOptional<z.ZodString>;
486
+ title: z.ZodOptional<z.ZodString>;
487
+ detail: z.ZodOptional<z.ZodString>;
488
+ source: z.ZodOptional<z.ZodObject<{
489
+ pointer: z.ZodOptional<z.ZodString>;
490
+ parameter: z.ZodOptional<z.ZodString>;
491
+ }, "strip", z.ZodTypeAny, {
492
+ pointer?: string | undefined;
493
+ parameter?: string | undefined;
494
+ }, {
495
+ pointer?: string | undefined;
496
+ parameter?: string | undefined;
497
+ }>>;
498
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
499
+ }, "strip", z.ZodTypeAny, {
500
+ status?: string | undefined;
501
+ code?: string | undefined;
502
+ id?: string | undefined;
503
+ links?: {
504
+ about?: string | undefined;
505
+ } | undefined;
506
+ meta?: Record<string, unknown> | undefined;
507
+ title?: string | undefined;
508
+ detail?: string | undefined;
509
+ source?: {
510
+ pointer?: string | undefined;
511
+ parameter?: string | undefined;
512
+ } | undefined;
513
+ }, {
514
+ status?: string | undefined;
515
+ code?: string | undefined;
516
+ id?: string | undefined;
517
+ links?: {
518
+ about?: string | undefined;
519
+ } | undefined;
520
+ meta?: Record<string, unknown> | undefined;
521
+ title?: string | undefined;
522
+ detail?: string | undefined;
523
+ source?: {
524
+ pointer?: string | undefined;
525
+ parameter?: string | undefined;
526
+ } | undefined;
527
+ }>, "many">;
528
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
529
+ }, "strip", z.ZodTypeAny, {
530
+ errors: {
531
+ status?: string | undefined;
532
+ code?: string | undefined;
533
+ id?: string | undefined;
534
+ links?: {
535
+ about?: string | undefined;
536
+ } | undefined;
537
+ meta?: Record<string, unknown> | undefined;
538
+ title?: string | undefined;
539
+ detail?: string | undefined;
540
+ source?: {
541
+ pointer?: string | undefined;
542
+ parameter?: string | undefined;
543
+ } | undefined;
544
+ }[];
545
+ meta?: Record<string, unknown> | undefined;
546
+ }, {
547
+ errors: {
548
+ status?: string | undefined;
549
+ code?: string | undefined;
550
+ id?: string | undefined;
551
+ links?: {
552
+ about?: string | undefined;
553
+ } | undefined;
554
+ meta?: Record<string, unknown> | undefined;
555
+ title?: string | undefined;
556
+ detail?: string | undefined;
557
+ source?: {
558
+ pointer?: string | undefined;
559
+ parameter?: string | undefined;
560
+ } | undefined;
561
+ }[];
562
+ meta?: Record<string, unknown> | undefined;
563
+ }>;
564
+ 403: z.ZodObject<{
565
+ errors: z.ZodArray<z.ZodObject<{
566
+ id: z.ZodOptional<z.ZodString>;
567
+ links: z.ZodOptional<z.ZodObject<{
568
+ about: z.ZodOptional<z.ZodString>;
569
+ }, "strip", z.ZodTypeAny, {
570
+ about?: string | undefined;
571
+ }, {
572
+ about?: string | undefined;
573
+ }>>;
574
+ status: z.ZodOptional<z.ZodString>;
575
+ code: z.ZodOptional<z.ZodString>;
576
+ title: z.ZodOptional<z.ZodString>;
577
+ detail: z.ZodOptional<z.ZodString>;
578
+ source: z.ZodOptional<z.ZodObject<{
579
+ pointer: z.ZodOptional<z.ZodString>;
580
+ parameter: z.ZodOptional<z.ZodString>;
581
+ }, "strip", z.ZodTypeAny, {
582
+ pointer?: string | undefined;
583
+ parameter?: string | undefined;
584
+ }, {
585
+ pointer?: string | undefined;
586
+ parameter?: string | undefined;
587
+ }>>;
588
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
589
+ }, "strip", z.ZodTypeAny, {
590
+ status?: string | undefined;
591
+ code?: string | undefined;
592
+ id?: string | undefined;
593
+ links?: {
594
+ about?: string | undefined;
595
+ } | undefined;
596
+ meta?: Record<string, unknown> | undefined;
597
+ title?: string | undefined;
598
+ detail?: string | undefined;
599
+ source?: {
600
+ pointer?: string | undefined;
601
+ parameter?: string | undefined;
602
+ } | undefined;
603
+ }, {
604
+ status?: string | undefined;
605
+ code?: string | undefined;
606
+ id?: string | undefined;
607
+ links?: {
608
+ about?: string | undefined;
609
+ } | undefined;
610
+ meta?: Record<string, unknown> | undefined;
611
+ title?: string | undefined;
612
+ detail?: string | undefined;
613
+ source?: {
614
+ pointer?: string | undefined;
615
+ parameter?: string | undefined;
616
+ } | undefined;
617
+ }>, "many">;
618
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
619
+ }, "strip", z.ZodTypeAny, {
620
+ errors: {
621
+ status?: string | undefined;
622
+ code?: string | undefined;
623
+ id?: string | undefined;
624
+ links?: {
625
+ about?: string | undefined;
626
+ } | undefined;
627
+ meta?: Record<string, unknown> | undefined;
628
+ title?: string | undefined;
629
+ detail?: string | undefined;
630
+ source?: {
631
+ pointer?: string | undefined;
632
+ parameter?: string | undefined;
633
+ } | undefined;
634
+ }[];
635
+ meta?: Record<string, unknown> | undefined;
636
+ }, {
637
+ errors: {
638
+ status?: string | undefined;
639
+ code?: string | undefined;
640
+ id?: string | undefined;
641
+ links?: {
642
+ about?: string | undefined;
643
+ } | undefined;
644
+ meta?: Record<string, unknown> | undefined;
645
+ title?: string | undefined;
646
+ detail?: string | undefined;
647
+ source?: {
648
+ pointer?: string | undefined;
649
+ parameter?: string | undefined;
650
+ } | undefined;
651
+ }[];
652
+ meta?: Record<string, unknown> | undefined;
653
+ }>;
654
+ 500: z.ZodObject<{
655
+ errors: z.ZodArray<z.ZodObject<{
656
+ id: z.ZodOptional<z.ZodString>;
657
+ links: z.ZodOptional<z.ZodObject<{
658
+ about: z.ZodOptional<z.ZodString>;
659
+ }, "strip", z.ZodTypeAny, {
660
+ about?: string | undefined;
661
+ }, {
662
+ about?: string | undefined;
663
+ }>>;
664
+ status: z.ZodOptional<z.ZodString>;
665
+ code: z.ZodOptional<z.ZodString>;
666
+ title: z.ZodOptional<z.ZodString>;
667
+ detail: z.ZodOptional<z.ZodString>;
668
+ source: z.ZodOptional<z.ZodObject<{
669
+ pointer: z.ZodOptional<z.ZodString>;
670
+ parameter: z.ZodOptional<z.ZodString>;
671
+ }, "strip", z.ZodTypeAny, {
672
+ pointer?: string | undefined;
673
+ parameter?: string | undefined;
674
+ }, {
675
+ pointer?: string | undefined;
676
+ parameter?: string | undefined;
677
+ }>>;
678
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
679
+ }, "strip", z.ZodTypeAny, {
680
+ status?: string | undefined;
681
+ code?: string | undefined;
682
+ id?: string | undefined;
683
+ links?: {
684
+ about?: string | undefined;
685
+ } | undefined;
686
+ meta?: Record<string, unknown> | undefined;
687
+ title?: string | undefined;
688
+ detail?: string | undefined;
689
+ source?: {
690
+ pointer?: string | undefined;
691
+ parameter?: string | undefined;
692
+ } | undefined;
693
+ }, {
694
+ status?: string | undefined;
695
+ code?: string | undefined;
696
+ id?: string | undefined;
697
+ links?: {
698
+ about?: string | undefined;
699
+ } | undefined;
700
+ meta?: Record<string, unknown> | undefined;
701
+ title?: string | undefined;
702
+ detail?: string | undefined;
703
+ source?: {
704
+ pointer?: string | undefined;
705
+ parameter?: string | undefined;
706
+ } | undefined;
707
+ }>, "many">;
708
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
709
+ }, "strip", z.ZodTypeAny, {
710
+ errors: {
711
+ status?: string | undefined;
712
+ code?: string | undefined;
713
+ id?: string | undefined;
714
+ links?: {
715
+ about?: string | undefined;
716
+ } | undefined;
717
+ meta?: Record<string, unknown> | undefined;
718
+ title?: string | undefined;
719
+ detail?: string | undefined;
720
+ source?: {
721
+ pointer?: string | undefined;
722
+ parameter?: string | undefined;
723
+ } | undefined;
724
+ }[];
725
+ meta?: Record<string, unknown> | undefined;
726
+ }, {
727
+ errors: {
728
+ status?: string | undefined;
729
+ code?: string | undefined;
730
+ id?: string | undefined;
731
+ links?: {
732
+ about?: string | undefined;
733
+ } | undefined;
734
+ meta?: Record<string, unknown> | undefined;
735
+ title?: string | undefined;
736
+ detail?: string | undefined;
737
+ source?: {
738
+ pointer?: string | undefined;
739
+ parameter?: string | undefined;
740
+ } | undefined;
741
+ }[];
742
+ meta?: Record<string, unknown> | undefined;
743
+ }>;
744
+ };
745
+ };
746
+ };
747
+ //# sourceMappingURL=admin.routes.d.ts.map