@deepintel-ltd/farmpro-contracts 1.16.6 → 1.16.8
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/routes/field-observations.routes.d.ts +82 -56
- package/dist/routes/field-observations.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +3 -0
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/routes/weather.routes.d.ts +64 -0
- package/dist/routes/weather.routes.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.d.ts +68 -42
- package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.js +39 -40
- package/dist/schemas/monitoring-visualization.schemas.d.ts +4 -0
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +2 -0
- package/dist/schemas/team-payments.schemas.d.ts +30 -30
- package/dist/schemas/weather.schemas.d.ts +191 -0
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/dist/schemas/weather.schemas.js +22 -3
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export declare const fieldObservationsRouter: {
|
|
|
4
4
|
summary: "Upload farm observation photo for AI analysis";
|
|
5
5
|
method: "POST";
|
|
6
6
|
contentType: "multipart/form-data";
|
|
7
|
-
body: z.ZodObject<{
|
|
7
|
+
body: z.ZodObject<Omit<{
|
|
8
8
|
fieldId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
observationType: z.ZodEnum<["disease", "pest", "nutrient", "weed", "general", "health_check"]>;
|
|
10
10
|
userNotes: z.ZodOptional<z.ZodString>;
|
|
@@ -23,8 +23,25 @@ export declare const fieldObservationsRouter: {
|
|
|
23
23
|
accuracy?: number | undefined;
|
|
24
24
|
}>>;
|
|
25
25
|
capturedAt: z.ZodOptional<z.ZodString>;
|
|
26
|
-
} & {
|
|
27
|
-
photo: z.ZodAny
|
|
26
|
+
}, "location"> & {
|
|
27
|
+
photo: z.ZodOptional<z.ZodAny>;
|
|
28
|
+
location: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
29
|
+
lat: z.ZodNumber;
|
|
30
|
+
lng: z.ZodNumber;
|
|
31
|
+
accuracy: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
lat: number;
|
|
34
|
+
lng: number;
|
|
35
|
+
accuracy?: number | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
lat: number;
|
|
38
|
+
lng: number;
|
|
39
|
+
accuracy?: number | undefined;
|
|
40
|
+
}>>, {
|
|
41
|
+
lat: number;
|
|
42
|
+
lng: number;
|
|
43
|
+
accuracy?: number | undefined;
|
|
44
|
+
} | undefined, unknown>;
|
|
28
45
|
}, "strip", z.ZodTypeAny, {
|
|
29
46
|
observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
|
|
30
47
|
location?: {
|
|
@@ -39,11 +56,7 @@ export declare const fieldObservationsRouter: {
|
|
|
39
56
|
photo?: any;
|
|
40
57
|
}, {
|
|
41
58
|
observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
|
|
42
|
-
location?:
|
|
43
|
-
lat: number;
|
|
44
|
-
lng: number;
|
|
45
|
-
accuracy?: number | undefined;
|
|
46
|
-
} | undefined;
|
|
59
|
+
location?: unknown;
|
|
47
60
|
fieldId?: string | undefined;
|
|
48
61
|
capturedAt?: string | undefined;
|
|
49
62
|
userNotes?: string | undefined;
|
|
@@ -164,7 +177,7 @@ export declare const fieldObservationsRouter: {
|
|
|
164
177
|
summary: "Upload field observation photo for AI analysis";
|
|
165
178
|
method: "POST";
|
|
166
179
|
contentType: "multipart/form-data";
|
|
167
|
-
body: z.ZodObject<{
|
|
180
|
+
body: z.ZodObject<Omit<{
|
|
168
181
|
fieldId: z.ZodOptional<z.ZodString>;
|
|
169
182
|
observationType: z.ZodEnum<["disease", "pest", "nutrient", "weed", "general", "health_check"]>;
|
|
170
183
|
userNotes: z.ZodOptional<z.ZodString>;
|
|
@@ -183,8 +196,25 @@ export declare const fieldObservationsRouter: {
|
|
|
183
196
|
accuracy?: number | undefined;
|
|
184
197
|
}>>;
|
|
185
198
|
capturedAt: z.ZodOptional<z.ZodString>;
|
|
186
|
-
} & {
|
|
187
|
-
photo: z.ZodAny
|
|
199
|
+
}, "location"> & {
|
|
200
|
+
photo: z.ZodOptional<z.ZodAny>;
|
|
201
|
+
location: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
202
|
+
lat: z.ZodNumber;
|
|
203
|
+
lng: z.ZodNumber;
|
|
204
|
+
accuracy: z.ZodOptional<z.ZodNumber>;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
lat: number;
|
|
207
|
+
lng: number;
|
|
208
|
+
accuracy?: number | undefined;
|
|
209
|
+
}, {
|
|
210
|
+
lat: number;
|
|
211
|
+
lng: number;
|
|
212
|
+
accuracy?: number | undefined;
|
|
213
|
+
}>>, {
|
|
214
|
+
lat: number;
|
|
215
|
+
lng: number;
|
|
216
|
+
accuracy?: number | undefined;
|
|
217
|
+
} | undefined, unknown>;
|
|
188
218
|
}, "strip", z.ZodTypeAny, {
|
|
189
219
|
observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
|
|
190
220
|
location?: {
|
|
@@ -199,11 +229,7 @@ export declare const fieldObservationsRouter: {
|
|
|
199
229
|
photo?: any;
|
|
200
230
|
}, {
|
|
201
231
|
observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
|
|
202
|
-
location?:
|
|
203
|
-
lat: number;
|
|
204
|
-
lng: number;
|
|
205
|
-
accuracy?: number | undefined;
|
|
206
|
-
} | undefined;
|
|
232
|
+
location?: unknown;
|
|
207
233
|
fieldId?: string | undefined;
|
|
208
234
|
capturedAt?: string | undefined;
|
|
209
235
|
userNotes?: string | undefined;
|
|
@@ -369,14 +395,14 @@ export declare const fieldObservationsRouter: {
|
|
|
369
395
|
provider: z.ZodString;
|
|
370
396
|
}, "strip", z.ZodTypeAny, {
|
|
371
397
|
confidence: number;
|
|
398
|
+
provider: string;
|
|
372
399
|
scientificName: string;
|
|
373
400
|
commonNames: string[];
|
|
374
|
-
provider: string;
|
|
375
401
|
}, {
|
|
376
402
|
confidence: number;
|
|
403
|
+
provider: string;
|
|
377
404
|
scientificName: string;
|
|
378
405
|
commonNames: string[];
|
|
379
|
-
provider: string;
|
|
380
406
|
}>>;
|
|
381
407
|
primaryIssue: z.ZodOptional<z.ZodObject<{
|
|
382
408
|
name: z.ZodString;
|
|
@@ -416,9 +442,9 @@ export declare const fieldObservationsRouter: {
|
|
|
416
442
|
}, "strip", z.ZodTypeAny, {
|
|
417
443
|
plantIdentification?: {
|
|
418
444
|
confidence: number;
|
|
445
|
+
provider: string;
|
|
419
446
|
scientificName: string;
|
|
420
447
|
commonNames: string[];
|
|
421
|
-
provider: string;
|
|
422
448
|
} | undefined;
|
|
423
449
|
primaryIssue?: {
|
|
424
450
|
name: string;
|
|
@@ -438,9 +464,9 @@ export declare const fieldObservationsRouter: {
|
|
|
438
464
|
}, {
|
|
439
465
|
plantIdentification?: {
|
|
440
466
|
confidence: number;
|
|
467
|
+
provider: string;
|
|
441
468
|
scientificName: string;
|
|
442
469
|
commonNames: string[];
|
|
443
|
-
provider: string;
|
|
444
470
|
} | undefined;
|
|
445
471
|
primaryIssue?: {
|
|
446
472
|
name: string;
|
|
@@ -605,9 +631,9 @@ export declare const fieldObservationsRouter: {
|
|
|
605
631
|
analysisDetails: {
|
|
606
632
|
plantIdentification?: {
|
|
607
633
|
confidence: number;
|
|
634
|
+
provider: string;
|
|
608
635
|
scientificName: string;
|
|
609
636
|
commonNames: string[];
|
|
610
|
-
provider: string;
|
|
611
637
|
} | undefined;
|
|
612
638
|
primaryIssue?: {
|
|
613
639
|
name: string;
|
|
@@ -688,9 +714,9 @@ export declare const fieldObservationsRouter: {
|
|
|
688
714
|
analysisDetails: {
|
|
689
715
|
plantIdentification?: {
|
|
690
716
|
confidence: number;
|
|
717
|
+
provider: string;
|
|
691
718
|
scientificName: string;
|
|
692
719
|
commonNames: string[];
|
|
693
|
-
provider: string;
|
|
694
720
|
} | undefined;
|
|
695
721
|
primaryIssue?: {
|
|
696
722
|
name: string;
|
|
@@ -778,9 +804,9 @@ export declare const fieldObservationsRouter: {
|
|
|
778
804
|
analysisDetails: {
|
|
779
805
|
plantIdentification?: {
|
|
780
806
|
confidence: number;
|
|
807
|
+
provider: string;
|
|
781
808
|
scientificName: string;
|
|
782
809
|
commonNames: string[];
|
|
783
|
-
provider: string;
|
|
784
810
|
} | undefined;
|
|
785
811
|
primaryIssue?: {
|
|
786
812
|
name: string;
|
|
@@ -868,9 +894,9 @@ export declare const fieldObservationsRouter: {
|
|
|
868
894
|
analysisDetails: {
|
|
869
895
|
plantIdentification?: {
|
|
870
896
|
confidence: number;
|
|
897
|
+
provider: string;
|
|
871
898
|
scientificName: string;
|
|
872
899
|
commonNames: string[];
|
|
873
|
-
provider: string;
|
|
874
900
|
} | undefined;
|
|
875
901
|
primaryIssue?: {
|
|
876
902
|
name: string;
|
|
@@ -984,9 +1010,9 @@ export declare const fieldObservationsRouter: {
|
|
|
984
1010
|
analysisDetails: {
|
|
985
1011
|
plantIdentification?: {
|
|
986
1012
|
confidence: number;
|
|
1013
|
+
provider: string;
|
|
987
1014
|
scientificName: string;
|
|
988
1015
|
commonNames: string[];
|
|
989
|
-
provider: string;
|
|
990
1016
|
} | undefined;
|
|
991
1017
|
primaryIssue?: {
|
|
992
1018
|
name: string;
|
|
@@ -1086,9 +1112,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1086
1112
|
analysisDetails: {
|
|
1087
1113
|
plantIdentification?: {
|
|
1088
1114
|
confidence: number;
|
|
1115
|
+
provider: string;
|
|
1089
1116
|
scientificName: string;
|
|
1090
1117
|
commonNames: string[];
|
|
1091
|
-
provider: string;
|
|
1092
1118
|
} | undefined;
|
|
1093
1119
|
primaryIssue?: {
|
|
1094
1120
|
name: string;
|
|
@@ -1226,14 +1252,14 @@ export declare const fieldObservationsRouter: {
|
|
|
1226
1252
|
provider: z.ZodString;
|
|
1227
1253
|
}, "strip", z.ZodTypeAny, {
|
|
1228
1254
|
confidence: number;
|
|
1255
|
+
provider: string;
|
|
1229
1256
|
scientificName: string;
|
|
1230
1257
|
commonNames: string[];
|
|
1231
|
-
provider: string;
|
|
1232
1258
|
}, {
|
|
1233
1259
|
confidence: number;
|
|
1260
|
+
provider: string;
|
|
1234
1261
|
scientificName: string;
|
|
1235
1262
|
commonNames: string[];
|
|
1236
|
-
provider: string;
|
|
1237
1263
|
}>>;
|
|
1238
1264
|
primaryIssue: z.ZodOptional<z.ZodObject<{
|
|
1239
1265
|
name: z.ZodString;
|
|
@@ -1273,9 +1299,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1273
1299
|
}, "strip", z.ZodTypeAny, {
|
|
1274
1300
|
plantIdentification?: {
|
|
1275
1301
|
confidence: number;
|
|
1302
|
+
provider: string;
|
|
1276
1303
|
scientificName: string;
|
|
1277
1304
|
commonNames: string[];
|
|
1278
|
-
provider: string;
|
|
1279
1305
|
} | undefined;
|
|
1280
1306
|
primaryIssue?: {
|
|
1281
1307
|
name: string;
|
|
@@ -1295,9 +1321,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1295
1321
|
}, {
|
|
1296
1322
|
plantIdentification?: {
|
|
1297
1323
|
confidence: number;
|
|
1324
|
+
provider: string;
|
|
1298
1325
|
scientificName: string;
|
|
1299
1326
|
commonNames: string[];
|
|
1300
|
-
provider: string;
|
|
1301
1327
|
} | undefined;
|
|
1302
1328
|
primaryIssue?: {
|
|
1303
1329
|
name: string;
|
|
@@ -1462,9 +1488,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1462
1488
|
analysisDetails: {
|
|
1463
1489
|
plantIdentification?: {
|
|
1464
1490
|
confidence: number;
|
|
1491
|
+
provider: string;
|
|
1465
1492
|
scientificName: string;
|
|
1466
1493
|
commonNames: string[];
|
|
1467
|
-
provider: string;
|
|
1468
1494
|
} | undefined;
|
|
1469
1495
|
primaryIssue?: {
|
|
1470
1496
|
name: string;
|
|
@@ -1545,9 +1571,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1545
1571
|
analysisDetails: {
|
|
1546
1572
|
plantIdentification?: {
|
|
1547
1573
|
confidence: number;
|
|
1574
|
+
provider: string;
|
|
1548
1575
|
scientificName: string;
|
|
1549
1576
|
commonNames: string[];
|
|
1550
|
-
provider: string;
|
|
1551
1577
|
} | undefined;
|
|
1552
1578
|
primaryIssue?: {
|
|
1553
1579
|
name: string;
|
|
@@ -1635,9 +1661,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1635
1661
|
analysisDetails: {
|
|
1636
1662
|
plantIdentification?: {
|
|
1637
1663
|
confidence: number;
|
|
1664
|
+
provider: string;
|
|
1638
1665
|
scientificName: string;
|
|
1639
1666
|
commonNames: string[];
|
|
1640
|
-
provider: string;
|
|
1641
1667
|
} | undefined;
|
|
1642
1668
|
primaryIssue?: {
|
|
1643
1669
|
name: string;
|
|
@@ -1725,9 +1751,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1725
1751
|
analysisDetails: {
|
|
1726
1752
|
plantIdentification?: {
|
|
1727
1753
|
confidence: number;
|
|
1754
|
+
provider: string;
|
|
1728
1755
|
scientificName: string;
|
|
1729
1756
|
commonNames: string[];
|
|
1730
|
-
provider: string;
|
|
1731
1757
|
} | undefined;
|
|
1732
1758
|
primaryIssue?: {
|
|
1733
1759
|
name: string;
|
|
@@ -1841,9 +1867,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1841
1867
|
analysisDetails: {
|
|
1842
1868
|
plantIdentification?: {
|
|
1843
1869
|
confidence: number;
|
|
1870
|
+
provider: string;
|
|
1844
1871
|
scientificName: string;
|
|
1845
1872
|
commonNames: string[];
|
|
1846
|
-
provider: string;
|
|
1847
1873
|
} | undefined;
|
|
1848
1874
|
primaryIssue?: {
|
|
1849
1875
|
name: string;
|
|
@@ -1943,9 +1969,9 @@ export declare const fieldObservationsRouter: {
|
|
|
1943
1969
|
analysisDetails: {
|
|
1944
1970
|
plantIdentification?: {
|
|
1945
1971
|
confidence: number;
|
|
1972
|
+
provider: string;
|
|
1946
1973
|
scientificName: string;
|
|
1947
1974
|
commonNames: string[];
|
|
1948
|
-
provider: string;
|
|
1949
1975
|
} | undefined;
|
|
1950
1976
|
primaryIssue?: {
|
|
1951
1977
|
name: string;
|
|
@@ -2083,14 +2109,14 @@ export declare const fieldObservationsRouter: {
|
|
|
2083
2109
|
provider: z.ZodString;
|
|
2084
2110
|
}, "strip", z.ZodTypeAny, {
|
|
2085
2111
|
confidence: number;
|
|
2112
|
+
provider: string;
|
|
2086
2113
|
scientificName: string;
|
|
2087
2114
|
commonNames: string[];
|
|
2088
|
-
provider: string;
|
|
2089
2115
|
}, {
|
|
2090
2116
|
confidence: number;
|
|
2117
|
+
provider: string;
|
|
2091
2118
|
scientificName: string;
|
|
2092
2119
|
commonNames: string[];
|
|
2093
|
-
provider: string;
|
|
2094
2120
|
}>>;
|
|
2095
2121
|
primaryIssue: z.ZodOptional<z.ZodObject<{
|
|
2096
2122
|
name: z.ZodString;
|
|
@@ -2130,9 +2156,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2130
2156
|
}, "strip", z.ZodTypeAny, {
|
|
2131
2157
|
plantIdentification?: {
|
|
2132
2158
|
confidence: number;
|
|
2159
|
+
provider: string;
|
|
2133
2160
|
scientificName: string;
|
|
2134
2161
|
commonNames: string[];
|
|
2135
|
-
provider: string;
|
|
2136
2162
|
} | undefined;
|
|
2137
2163
|
primaryIssue?: {
|
|
2138
2164
|
name: string;
|
|
@@ -2152,9 +2178,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2152
2178
|
}, {
|
|
2153
2179
|
plantIdentification?: {
|
|
2154
2180
|
confidence: number;
|
|
2181
|
+
provider: string;
|
|
2155
2182
|
scientificName: string;
|
|
2156
2183
|
commonNames: string[];
|
|
2157
|
-
provider: string;
|
|
2158
2184
|
} | undefined;
|
|
2159
2185
|
primaryIssue?: {
|
|
2160
2186
|
name: string;
|
|
@@ -2319,9 +2345,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2319
2345
|
analysisDetails: {
|
|
2320
2346
|
plantIdentification?: {
|
|
2321
2347
|
confidence: number;
|
|
2348
|
+
provider: string;
|
|
2322
2349
|
scientificName: string;
|
|
2323
2350
|
commonNames: string[];
|
|
2324
|
-
provider: string;
|
|
2325
2351
|
} | undefined;
|
|
2326
2352
|
primaryIssue?: {
|
|
2327
2353
|
name: string;
|
|
@@ -2402,9 +2428,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2402
2428
|
analysisDetails: {
|
|
2403
2429
|
plantIdentification?: {
|
|
2404
2430
|
confidence: number;
|
|
2431
|
+
provider: string;
|
|
2405
2432
|
scientificName: string;
|
|
2406
2433
|
commonNames: string[];
|
|
2407
|
-
provider: string;
|
|
2408
2434
|
} | undefined;
|
|
2409
2435
|
primaryIssue?: {
|
|
2410
2436
|
name: string;
|
|
@@ -2492,9 +2518,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2492
2518
|
analysisDetails: {
|
|
2493
2519
|
plantIdentification?: {
|
|
2494
2520
|
confidence: number;
|
|
2521
|
+
provider: string;
|
|
2495
2522
|
scientificName: string;
|
|
2496
2523
|
commonNames: string[];
|
|
2497
|
-
provider: string;
|
|
2498
2524
|
} | undefined;
|
|
2499
2525
|
primaryIssue?: {
|
|
2500
2526
|
name: string;
|
|
@@ -2582,9 +2608,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2582
2608
|
analysisDetails: {
|
|
2583
2609
|
plantIdentification?: {
|
|
2584
2610
|
confidence: number;
|
|
2611
|
+
provider: string;
|
|
2585
2612
|
scientificName: string;
|
|
2586
2613
|
commonNames: string[];
|
|
2587
|
-
provider: string;
|
|
2588
2614
|
} | undefined;
|
|
2589
2615
|
primaryIssue?: {
|
|
2590
2616
|
name: string;
|
|
@@ -2698,9 +2724,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2698
2724
|
analysisDetails: {
|
|
2699
2725
|
plantIdentification?: {
|
|
2700
2726
|
confidence: number;
|
|
2727
|
+
provider: string;
|
|
2701
2728
|
scientificName: string;
|
|
2702
2729
|
commonNames: string[];
|
|
2703
|
-
provider: string;
|
|
2704
2730
|
} | undefined;
|
|
2705
2731
|
primaryIssue?: {
|
|
2706
2732
|
name: string;
|
|
@@ -2800,9 +2826,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2800
2826
|
analysisDetails: {
|
|
2801
2827
|
plantIdentification?: {
|
|
2802
2828
|
confidence: number;
|
|
2829
|
+
provider: string;
|
|
2803
2830
|
scientificName: string;
|
|
2804
2831
|
commonNames: string[];
|
|
2805
|
-
provider: string;
|
|
2806
2832
|
} | undefined;
|
|
2807
2833
|
primaryIssue?: {
|
|
2808
2834
|
name: string;
|
|
@@ -2940,14 +2966,14 @@ export declare const fieldObservationsRouter: {
|
|
|
2940
2966
|
provider: z.ZodString;
|
|
2941
2967
|
}, "strip", z.ZodTypeAny, {
|
|
2942
2968
|
confidence: number;
|
|
2969
|
+
provider: string;
|
|
2943
2970
|
scientificName: string;
|
|
2944
2971
|
commonNames: string[];
|
|
2945
|
-
provider: string;
|
|
2946
2972
|
}, {
|
|
2947
2973
|
confidence: number;
|
|
2974
|
+
provider: string;
|
|
2948
2975
|
scientificName: string;
|
|
2949
2976
|
commonNames: string[];
|
|
2950
|
-
provider: string;
|
|
2951
2977
|
}>>;
|
|
2952
2978
|
primaryIssue: z.ZodOptional<z.ZodObject<{
|
|
2953
2979
|
name: z.ZodString;
|
|
@@ -2987,9 +3013,9 @@ export declare const fieldObservationsRouter: {
|
|
|
2987
3013
|
}, "strip", z.ZodTypeAny, {
|
|
2988
3014
|
plantIdentification?: {
|
|
2989
3015
|
confidence: number;
|
|
3016
|
+
provider: string;
|
|
2990
3017
|
scientificName: string;
|
|
2991
3018
|
commonNames: string[];
|
|
2992
|
-
provider: string;
|
|
2993
3019
|
} | undefined;
|
|
2994
3020
|
primaryIssue?: {
|
|
2995
3021
|
name: string;
|
|
@@ -3009,9 +3035,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3009
3035
|
}, {
|
|
3010
3036
|
plantIdentification?: {
|
|
3011
3037
|
confidence: number;
|
|
3038
|
+
provider: string;
|
|
3012
3039
|
scientificName: string;
|
|
3013
3040
|
commonNames: string[];
|
|
3014
|
-
provider: string;
|
|
3015
3041
|
} | undefined;
|
|
3016
3042
|
primaryIssue?: {
|
|
3017
3043
|
name: string;
|
|
@@ -3176,9 +3202,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3176
3202
|
analysisDetails: {
|
|
3177
3203
|
plantIdentification?: {
|
|
3178
3204
|
confidence: number;
|
|
3205
|
+
provider: string;
|
|
3179
3206
|
scientificName: string;
|
|
3180
3207
|
commonNames: string[];
|
|
3181
|
-
provider: string;
|
|
3182
3208
|
} | undefined;
|
|
3183
3209
|
primaryIssue?: {
|
|
3184
3210
|
name: string;
|
|
@@ -3259,9 +3285,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3259
3285
|
analysisDetails: {
|
|
3260
3286
|
plantIdentification?: {
|
|
3261
3287
|
confidence: number;
|
|
3288
|
+
provider: string;
|
|
3262
3289
|
scientificName: string;
|
|
3263
3290
|
commonNames: string[];
|
|
3264
|
-
provider: string;
|
|
3265
3291
|
} | undefined;
|
|
3266
3292
|
primaryIssue?: {
|
|
3267
3293
|
name: string;
|
|
@@ -3349,9 +3375,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3349
3375
|
analysisDetails: {
|
|
3350
3376
|
plantIdentification?: {
|
|
3351
3377
|
confidence: number;
|
|
3378
|
+
provider: string;
|
|
3352
3379
|
scientificName: string;
|
|
3353
3380
|
commonNames: string[];
|
|
3354
|
-
provider: string;
|
|
3355
3381
|
} | undefined;
|
|
3356
3382
|
primaryIssue?: {
|
|
3357
3383
|
name: string;
|
|
@@ -3439,9 +3465,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3439
3465
|
analysisDetails: {
|
|
3440
3466
|
plantIdentification?: {
|
|
3441
3467
|
confidence: number;
|
|
3468
|
+
provider: string;
|
|
3442
3469
|
scientificName: string;
|
|
3443
3470
|
commonNames: string[];
|
|
3444
|
-
provider: string;
|
|
3445
3471
|
} | undefined;
|
|
3446
3472
|
primaryIssue?: {
|
|
3447
3473
|
name: string;
|
|
@@ -3555,9 +3581,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3555
3581
|
analysisDetails: {
|
|
3556
3582
|
plantIdentification?: {
|
|
3557
3583
|
confidence: number;
|
|
3584
|
+
provider: string;
|
|
3558
3585
|
scientificName: string;
|
|
3559
3586
|
commonNames: string[];
|
|
3560
|
-
provider: string;
|
|
3561
3587
|
} | undefined;
|
|
3562
3588
|
primaryIssue?: {
|
|
3563
3589
|
name: string;
|
|
@@ -3657,9 +3683,9 @@ export declare const fieldObservationsRouter: {
|
|
|
3657
3683
|
analysisDetails: {
|
|
3658
3684
|
plantIdentification?: {
|
|
3659
3685
|
confidence: number;
|
|
3686
|
+
provider: string;
|
|
3660
3687
|
scientificName: string;
|
|
3661
3688
|
commonNames: string[];
|
|
3662
|
-
provider: string;
|
|
3663
3689
|
} | undefined;
|
|
3664
3690
|
primaryIssue?: {
|
|
3665
3691
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-observations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/field-observations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"field-observations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/field-observations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsHlC,CAAC"}
|
|
@@ -1253,6 +1253,7 @@ export declare const monitoringVisualizationRouter: {
|
|
|
1253
1253
|
start: string;
|
|
1254
1254
|
end: string;
|
|
1255
1255
|
}>;
|
|
1256
|
+
rainfallIsForecast: z.ZodOptional<z.ZodBoolean>;
|
|
1256
1257
|
rainfall: z.ZodObject<{
|
|
1257
1258
|
total: z.ZodNumber;
|
|
1258
1259
|
daily: z.ZodArray<z.ZodObject<{
|
|
@@ -1393,6 +1394,7 @@ export declare const monitoringVisualizationRouter: {
|
|
|
1393
1394
|
} | null;
|
|
1394
1395
|
temperatureTrend: "stable" | "warming" | "cooling";
|
|
1395
1396
|
} | undefined;
|
|
1397
|
+
rainfallIsForecast?: boolean | undefined;
|
|
1396
1398
|
}, {
|
|
1397
1399
|
fieldId: string;
|
|
1398
1400
|
rainfall: {
|
|
@@ -1431,6 +1433,7 @@ export declare const monitoringVisualizationRouter: {
|
|
|
1431
1433
|
} | null;
|
|
1432
1434
|
temperatureTrend: "stable" | "warming" | "cooling";
|
|
1433
1435
|
} | undefined;
|
|
1436
|
+
rainfallIsForecast?: boolean | undefined;
|
|
1434
1437
|
}>;
|
|
1435
1438
|
404: z.ZodObject<{
|
|
1436
1439
|
message: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"monitoring-visualization.routes.d.ts","sourceRoot":"","sources":["../../src/routes/monitoring-visualization.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsExB,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"monitoring-visualization.routes.d.ts","sourceRoot":"","sources":["../../src/routes/monitoring-visualization.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsExB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiiBxC,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,OAAO,6BAA6B,CAAC"}
|