@deepintel-ltd/farmpro-contracts 1.5.12 → 1.5.14

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.
@@ -972,6 +972,919 @@ export declare const conversationListResponseSchema: z.ZodObject<{
972
972
  meta?: Record<string, unknown> | undefined;
973
973
  }[] | undefined;
974
974
  }>;
975
+ export declare const geojsonCrsSchema: z.ZodObject<{
976
+ type: z.ZodLiteral<"name">;
977
+ properties: z.ZodObject<{
978
+ name: z.ZodString;
979
+ }, "strip", z.ZodTypeAny, {
980
+ name: string;
981
+ }, {
982
+ name: string;
983
+ }>;
984
+ }, "strip", z.ZodTypeAny, {
985
+ type: "name";
986
+ properties: {
987
+ name: string;
988
+ };
989
+ }, {
990
+ type: "name";
991
+ properties: {
992
+ name: string;
993
+ };
994
+ }>;
995
+ export declare const geojsonPolygonGeometrySchema: z.ZodObject<{
996
+ type: z.ZodLiteral<"Polygon">;
997
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
998
+ }, "strip", z.ZodTypeAny, {
999
+ type: "Polygon";
1000
+ coordinates: [number, number][][];
1001
+ }, {
1002
+ type: "Polygon";
1003
+ coordinates: [number, number][][];
1004
+ }>;
1005
+ export declare const geojsonFeatureSchema: z.ZodObject<{
1006
+ type: z.ZodLiteral<"Feature">;
1007
+ properties: z.ZodObject<{
1008
+ name: z.ZodString;
1009
+ area_hectares: z.ZodNumber;
1010
+ data_note: z.ZodOptional<z.ZodString>;
1011
+ }, "strip", z.ZodTypeAny, {
1012
+ name: string;
1013
+ area_hectares: number;
1014
+ data_note?: string | undefined;
1015
+ }, {
1016
+ name: string;
1017
+ area_hectares: number;
1018
+ data_note?: string | undefined;
1019
+ }>;
1020
+ geometry: z.ZodObject<{
1021
+ type: z.ZodLiteral<"Polygon">;
1022
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1023
+ }, "strip", z.ZodTypeAny, {
1024
+ type: "Polygon";
1025
+ coordinates: [number, number][][];
1026
+ }, {
1027
+ type: "Polygon";
1028
+ coordinates: [number, number][][];
1029
+ }>;
1030
+ }, "strip", z.ZodTypeAny, {
1031
+ type: "Feature";
1032
+ geometry: {
1033
+ type: "Polygon";
1034
+ coordinates: [number, number][][];
1035
+ };
1036
+ properties: {
1037
+ name: string;
1038
+ area_hectares: number;
1039
+ data_note?: string | undefined;
1040
+ };
1041
+ }, {
1042
+ type: "Feature";
1043
+ geometry: {
1044
+ type: "Polygon";
1045
+ coordinates: [number, number][][];
1046
+ };
1047
+ properties: {
1048
+ name: string;
1049
+ area_hectares: number;
1050
+ data_note?: string | undefined;
1051
+ };
1052
+ }>;
1053
+ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1054
+ type: z.ZodLiteral<"FeatureCollection">;
1055
+ crs: z.ZodObject<{
1056
+ type: z.ZodLiteral<"name">;
1057
+ properties: z.ZodObject<{
1058
+ name: z.ZodString;
1059
+ }, "strip", z.ZodTypeAny, {
1060
+ name: string;
1061
+ }, {
1062
+ name: string;
1063
+ }>;
1064
+ }, "strip", z.ZodTypeAny, {
1065
+ type: "name";
1066
+ properties: {
1067
+ name: string;
1068
+ };
1069
+ }, {
1070
+ type: "name";
1071
+ properties: {
1072
+ name: string;
1073
+ };
1074
+ }>;
1075
+ features: z.ZodArray<z.ZodObject<{
1076
+ type: z.ZodLiteral<"Feature">;
1077
+ properties: z.ZodObject<{
1078
+ name: z.ZodString;
1079
+ area_hectares: z.ZodNumber;
1080
+ data_note: z.ZodOptional<z.ZodString>;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ name: string;
1083
+ area_hectares: number;
1084
+ data_note?: string | undefined;
1085
+ }, {
1086
+ name: string;
1087
+ area_hectares: number;
1088
+ data_note?: string | undefined;
1089
+ }>;
1090
+ geometry: z.ZodObject<{
1091
+ type: z.ZodLiteral<"Polygon">;
1092
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1093
+ }, "strip", z.ZodTypeAny, {
1094
+ type: "Polygon";
1095
+ coordinates: [number, number][][];
1096
+ }, {
1097
+ type: "Polygon";
1098
+ coordinates: [number, number][][];
1099
+ }>;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ type: "Feature";
1102
+ geometry: {
1103
+ type: "Polygon";
1104
+ coordinates: [number, number][][];
1105
+ };
1106
+ properties: {
1107
+ name: string;
1108
+ area_hectares: number;
1109
+ data_note?: string | undefined;
1110
+ };
1111
+ }, {
1112
+ type: "Feature";
1113
+ geometry: {
1114
+ type: "Polygon";
1115
+ coordinates: [number, number][][];
1116
+ };
1117
+ properties: {
1118
+ name: string;
1119
+ area_hectares: number;
1120
+ data_note?: string | undefined;
1121
+ };
1122
+ }>, "many">;
1123
+ }, "strip", z.ZodTypeAny, {
1124
+ type: "FeatureCollection";
1125
+ crs: {
1126
+ type: "name";
1127
+ properties: {
1128
+ name: string;
1129
+ };
1130
+ };
1131
+ features: {
1132
+ type: "Feature";
1133
+ geometry: {
1134
+ type: "Polygon";
1135
+ coordinates: [number, number][][];
1136
+ };
1137
+ properties: {
1138
+ name: string;
1139
+ area_hectares: number;
1140
+ data_note?: string | undefined;
1141
+ };
1142
+ }[];
1143
+ }, {
1144
+ type: "FeatureCollection";
1145
+ crs: {
1146
+ type: "name";
1147
+ properties: {
1148
+ name: string;
1149
+ };
1150
+ };
1151
+ features: {
1152
+ type: "Feature";
1153
+ geometry: {
1154
+ type: "Polygon";
1155
+ coordinates: [number, number][][];
1156
+ };
1157
+ properties: {
1158
+ name: string;
1159
+ area_hectares: number;
1160
+ data_note?: string | undefined;
1161
+ };
1162
+ }[];
1163
+ }>;
1164
+ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1165
+ geojson: z.ZodObject<{
1166
+ type: z.ZodLiteral<"FeatureCollection">;
1167
+ crs: z.ZodObject<{
1168
+ type: z.ZodLiteral<"name">;
1169
+ properties: z.ZodObject<{
1170
+ name: z.ZodString;
1171
+ }, "strip", z.ZodTypeAny, {
1172
+ name: string;
1173
+ }, {
1174
+ name: string;
1175
+ }>;
1176
+ }, "strip", z.ZodTypeAny, {
1177
+ type: "name";
1178
+ properties: {
1179
+ name: string;
1180
+ };
1181
+ }, {
1182
+ type: "name";
1183
+ properties: {
1184
+ name: string;
1185
+ };
1186
+ }>;
1187
+ features: z.ZodArray<z.ZodObject<{
1188
+ type: z.ZodLiteral<"Feature">;
1189
+ properties: z.ZodObject<{
1190
+ name: z.ZodString;
1191
+ area_hectares: z.ZodNumber;
1192
+ data_note: z.ZodOptional<z.ZodString>;
1193
+ }, "strip", z.ZodTypeAny, {
1194
+ name: string;
1195
+ area_hectares: number;
1196
+ data_note?: string | undefined;
1197
+ }, {
1198
+ name: string;
1199
+ area_hectares: number;
1200
+ data_note?: string | undefined;
1201
+ }>;
1202
+ geometry: z.ZodObject<{
1203
+ type: z.ZodLiteral<"Polygon">;
1204
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1205
+ }, "strip", z.ZodTypeAny, {
1206
+ type: "Polygon";
1207
+ coordinates: [number, number][][];
1208
+ }, {
1209
+ type: "Polygon";
1210
+ coordinates: [number, number][][];
1211
+ }>;
1212
+ }, "strip", z.ZodTypeAny, {
1213
+ type: "Feature";
1214
+ geometry: {
1215
+ type: "Polygon";
1216
+ coordinates: [number, number][][];
1217
+ };
1218
+ properties: {
1219
+ name: string;
1220
+ area_hectares: number;
1221
+ data_note?: string | undefined;
1222
+ };
1223
+ }, {
1224
+ type: "Feature";
1225
+ geometry: {
1226
+ type: "Polygon";
1227
+ coordinates: [number, number][][];
1228
+ };
1229
+ properties: {
1230
+ name: string;
1231
+ area_hectares: number;
1232
+ data_note?: string | undefined;
1233
+ };
1234
+ }>, "many">;
1235
+ }, "strip", z.ZodTypeAny, {
1236
+ type: "FeatureCollection";
1237
+ crs: {
1238
+ type: "name";
1239
+ properties: {
1240
+ name: string;
1241
+ };
1242
+ };
1243
+ features: {
1244
+ type: "Feature";
1245
+ geometry: {
1246
+ type: "Polygon";
1247
+ coordinates: [number, number][][];
1248
+ };
1249
+ properties: {
1250
+ name: string;
1251
+ area_hectares: number;
1252
+ data_note?: string | undefined;
1253
+ };
1254
+ }[];
1255
+ }, {
1256
+ type: "FeatureCollection";
1257
+ crs: {
1258
+ type: "name";
1259
+ properties: {
1260
+ name: string;
1261
+ };
1262
+ };
1263
+ features: {
1264
+ type: "Feature";
1265
+ geometry: {
1266
+ type: "Polygon";
1267
+ coordinates: [number, number][][];
1268
+ };
1269
+ properties: {
1270
+ name: string;
1271
+ area_hectares: number;
1272
+ data_note?: string | undefined;
1273
+ };
1274
+ }[];
1275
+ }>;
1276
+ processingNotes: z.ZodOptional<z.ZodString>;
1277
+ }, "strip", z.ZodTypeAny, {
1278
+ geojson: {
1279
+ type: "FeatureCollection";
1280
+ crs: {
1281
+ type: "name";
1282
+ properties: {
1283
+ name: string;
1284
+ };
1285
+ };
1286
+ features: {
1287
+ type: "Feature";
1288
+ geometry: {
1289
+ type: "Polygon";
1290
+ coordinates: [number, number][][];
1291
+ };
1292
+ properties: {
1293
+ name: string;
1294
+ area_hectares: number;
1295
+ data_note?: string | undefined;
1296
+ };
1297
+ }[];
1298
+ };
1299
+ processingNotes?: string | undefined;
1300
+ }, {
1301
+ geojson: {
1302
+ type: "FeatureCollection";
1303
+ crs: {
1304
+ type: "name";
1305
+ properties: {
1306
+ name: string;
1307
+ };
1308
+ };
1309
+ features: {
1310
+ type: "Feature";
1311
+ geometry: {
1312
+ type: "Polygon";
1313
+ coordinates: [number, number][][];
1314
+ };
1315
+ properties: {
1316
+ name: string;
1317
+ area_hectares: number;
1318
+ data_note?: string | undefined;
1319
+ };
1320
+ }[];
1321
+ };
1322
+ processingNotes?: string | undefined;
1323
+ }>;
1324
+ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1325
+ type: z.ZodLiteral<string>;
1326
+ id: z.ZodString;
1327
+ attributes: z.ZodObject<{
1328
+ geojson: z.ZodObject<{
1329
+ type: z.ZodLiteral<"FeatureCollection">;
1330
+ crs: z.ZodObject<{
1331
+ type: z.ZodLiteral<"name">;
1332
+ properties: z.ZodObject<{
1333
+ name: z.ZodString;
1334
+ }, "strip", z.ZodTypeAny, {
1335
+ name: string;
1336
+ }, {
1337
+ name: string;
1338
+ }>;
1339
+ }, "strip", z.ZodTypeAny, {
1340
+ type: "name";
1341
+ properties: {
1342
+ name: string;
1343
+ };
1344
+ }, {
1345
+ type: "name";
1346
+ properties: {
1347
+ name: string;
1348
+ };
1349
+ }>;
1350
+ features: z.ZodArray<z.ZodObject<{
1351
+ type: z.ZodLiteral<"Feature">;
1352
+ properties: z.ZodObject<{
1353
+ name: z.ZodString;
1354
+ area_hectares: z.ZodNumber;
1355
+ data_note: z.ZodOptional<z.ZodString>;
1356
+ }, "strip", z.ZodTypeAny, {
1357
+ name: string;
1358
+ area_hectares: number;
1359
+ data_note?: string | undefined;
1360
+ }, {
1361
+ name: string;
1362
+ area_hectares: number;
1363
+ data_note?: string | undefined;
1364
+ }>;
1365
+ geometry: z.ZodObject<{
1366
+ type: z.ZodLiteral<"Polygon">;
1367
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1368
+ }, "strip", z.ZodTypeAny, {
1369
+ type: "Polygon";
1370
+ coordinates: [number, number][][];
1371
+ }, {
1372
+ type: "Polygon";
1373
+ coordinates: [number, number][][];
1374
+ }>;
1375
+ }, "strip", z.ZodTypeAny, {
1376
+ type: "Feature";
1377
+ geometry: {
1378
+ type: "Polygon";
1379
+ coordinates: [number, number][][];
1380
+ };
1381
+ properties: {
1382
+ name: string;
1383
+ area_hectares: number;
1384
+ data_note?: string | undefined;
1385
+ };
1386
+ }, {
1387
+ type: "Feature";
1388
+ geometry: {
1389
+ type: "Polygon";
1390
+ coordinates: [number, number][][];
1391
+ };
1392
+ properties: {
1393
+ name: string;
1394
+ area_hectares: number;
1395
+ data_note?: string | undefined;
1396
+ };
1397
+ }>, "many">;
1398
+ }, "strip", z.ZodTypeAny, {
1399
+ type: "FeatureCollection";
1400
+ crs: {
1401
+ type: "name";
1402
+ properties: {
1403
+ name: string;
1404
+ };
1405
+ };
1406
+ features: {
1407
+ type: "Feature";
1408
+ geometry: {
1409
+ type: "Polygon";
1410
+ coordinates: [number, number][][];
1411
+ };
1412
+ properties: {
1413
+ name: string;
1414
+ area_hectares: number;
1415
+ data_note?: string | undefined;
1416
+ };
1417
+ }[];
1418
+ }, {
1419
+ type: "FeatureCollection";
1420
+ crs: {
1421
+ type: "name";
1422
+ properties: {
1423
+ name: string;
1424
+ };
1425
+ };
1426
+ features: {
1427
+ type: "Feature";
1428
+ geometry: {
1429
+ type: "Polygon";
1430
+ coordinates: [number, number][][];
1431
+ };
1432
+ properties: {
1433
+ name: string;
1434
+ area_hectares: number;
1435
+ data_note?: string | undefined;
1436
+ };
1437
+ }[];
1438
+ }>;
1439
+ processingNotes: z.ZodOptional<z.ZodString>;
1440
+ }, "strip", z.ZodTypeAny, {
1441
+ geojson: {
1442
+ type: "FeatureCollection";
1443
+ crs: {
1444
+ type: "name";
1445
+ properties: {
1446
+ name: string;
1447
+ };
1448
+ };
1449
+ features: {
1450
+ type: "Feature";
1451
+ geometry: {
1452
+ type: "Polygon";
1453
+ coordinates: [number, number][][];
1454
+ };
1455
+ properties: {
1456
+ name: string;
1457
+ area_hectares: number;
1458
+ data_note?: string | undefined;
1459
+ };
1460
+ }[];
1461
+ };
1462
+ processingNotes?: string | undefined;
1463
+ }, {
1464
+ geojson: {
1465
+ type: "FeatureCollection";
1466
+ crs: {
1467
+ type: "name";
1468
+ properties: {
1469
+ name: string;
1470
+ };
1471
+ };
1472
+ features: {
1473
+ type: "Feature";
1474
+ geometry: {
1475
+ type: "Polygon";
1476
+ coordinates: [number, number][][];
1477
+ };
1478
+ properties: {
1479
+ name: string;
1480
+ area_hectares: number;
1481
+ data_note?: string | undefined;
1482
+ };
1483
+ }[];
1484
+ };
1485
+ processingNotes?: string | undefined;
1486
+ }>;
1487
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1488
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1489
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1490
+ }, "strip", z.ZodTypeAny, {
1491
+ type: string;
1492
+ id: string;
1493
+ attributes: {
1494
+ geojson: {
1495
+ type: "FeatureCollection";
1496
+ crs: {
1497
+ type: "name";
1498
+ properties: {
1499
+ name: string;
1500
+ };
1501
+ };
1502
+ features: {
1503
+ type: "Feature";
1504
+ geometry: {
1505
+ type: "Polygon";
1506
+ coordinates: [number, number][][];
1507
+ };
1508
+ properties: {
1509
+ name: string;
1510
+ area_hectares: number;
1511
+ data_note?: string | undefined;
1512
+ };
1513
+ }[];
1514
+ };
1515
+ processingNotes?: string | undefined;
1516
+ };
1517
+ relationships?: Record<string, unknown> | undefined;
1518
+ links?: Record<string, string> | undefined;
1519
+ meta?: Record<string, unknown> | undefined;
1520
+ }, {
1521
+ type: string;
1522
+ id: string;
1523
+ attributes: {
1524
+ geojson: {
1525
+ type: "FeatureCollection";
1526
+ crs: {
1527
+ type: "name";
1528
+ properties: {
1529
+ name: string;
1530
+ };
1531
+ };
1532
+ features: {
1533
+ type: "Feature";
1534
+ geometry: {
1535
+ type: "Polygon";
1536
+ coordinates: [number, number][][];
1537
+ };
1538
+ properties: {
1539
+ name: string;
1540
+ area_hectares: number;
1541
+ data_note?: string | undefined;
1542
+ };
1543
+ }[];
1544
+ };
1545
+ processingNotes?: string | undefined;
1546
+ };
1547
+ relationships?: Record<string, unknown> | undefined;
1548
+ links?: Record<string, string> | undefined;
1549
+ meta?: Record<string, unknown> | undefined;
1550
+ }>;
1551
+ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1552
+ data: z.ZodObject<{
1553
+ type: z.ZodLiteral<string>;
1554
+ id: z.ZodString;
1555
+ attributes: z.ZodObject<{
1556
+ geojson: z.ZodObject<{
1557
+ type: z.ZodLiteral<"FeatureCollection">;
1558
+ crs: z.ZodObject<{
1559
+ type: z.ZodLiteral<"name">;
1560
+ properties: z.ZodObject<{
1561
+ name: z.ZodString;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ name: string;
1564
+ }, {
1565
+ name: string;
1566
+ }>;
1567
+ }, "strip", z.ZodTypeAny, {
1568
+ type: "name";
1569
+ properties: {
1570
+ name: string;
1571
+ };
1572
+ }, {
1573
+ type: "name";
1574
+ properties: {
1575
+ name: string;
1576
+ };
1577
+ }>;
1578
+ features: z.ZodArray<z.ZodObject<{
1579
+ type: z.ZodLiteral<"Feature">;
1580
+ properties: z.ZodObject<{
1581
+ name: z.ZodString;
1582
+ area_hectares: z.ZodNumber;
1583
+ data_note: z.ZodOptional<z.ZodString>;
1584
+ }, "strip", z.ZodTypeAny, {
1585
+ name: string;
1586
+ area_hectares: number;
1587
+ data_note?: string | undefined;
1588
+ }, {
1589
+ name: string;
1590
+ area_hectares: number;
1591
+ data_note?: string | undefined;
1592
+ }>;
1593
+ geometry: z.ZodObject<{
1594
+ type: z.ZodLiteral<"Polygon">;
1595
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1596
+ }, "strip", z.ZodTypeAny, {
1597
+ type: "Polygon";
1598
+ coordinates: [number, number][][];
1599
+ }, {
1600
+ type: "Polygon";
1601
+ coordinates: [number, number][][];
1602
+ }>;
1603
+ }, "strip", z.ZodTypeAny, {
1604
+ type: "Feature";
1605
+ geometry: {
1606
+ type: "Polygon";
1607
+ coordinates: [number, number][][];
1608
+ };
1609
+ properties: {
1610
+ name: string;
1611
+ area_hectares: number;
1612
+ data_note?: string | undefined;
1613
+ };
1614
+ }, {
1615
+ type: "Feature";
1616
+ geometry: {
1617
+ type: "Polygon";
1618
+ coordinates: [number, number][][];
1619
+ };
1620
+ properties: {
1621
+ name: string;
1622
+ area_hectares: number;
1623
+ data_note?: string | undefined;
1624
+ };
1625
+ }>, "many">;
1626
+ }, "strip", z.ZodTypeAny, {
1627
+ type: "FeatureCollection";
1628
+ crs: {
1629
+ type: "name";
1630
+ properties: {
1631
+ name: string;
1632
+ };
1633
+ };
1634
+ features: {
1635
+ type: "Feature";
1636
+ geometry: {
1637
+ type: "Polygon";
1638
+ coordinates: [number, number][][];
1639
+ };
1640
+ properties: {
1641
+ name: string;
1642
+ area_hectares: number;
1643
+ data_note?: string | undefined;
1644
+ };
1645
+ }[];
1646
+ }, {
1647
+ type: "FeatureCollection";
1648
+ crs: {
1649
+ type: "name";
1650
+ properties: {
1651
+ name: string;
1652
+ };
1653
+ };
1654
+ features: {
1655
+ type: "Feature";
1656
+ geometry: {
1657
+ type: "Polygon";
1658
+ coordinates: [number, number][][];
1659
+ };
1660
+ properties: {
1661
+ name: string;
1662
+ area_hectares: number;
1663
+ data_note?: string | undefined;
1664
+ };
1665
+ }[];
1666
+ }>;
1667
+ processingNotes: z.ZodOptional<z.ZodString>;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ geojson: {
1670
+ type: "FeatureCollection";
1671
+ crs: {
1672
+ type: "name";
1673
+ properties: {
1674
+ name: string;
1675
+ };
1676
+ };
1677
+ features: {
1678
+ type: "Feature";
1679
+ geometry: {
1680
+ type: "Polygon";
1681
+ coordinates: [number, number][][];
1682
+ };
1683
+ properties: {
1684
+ name: string;
1685
+ area_hectares: number;
1686
+ data_note?: string | undefined;
1687
+ };
1688
+ }[];
1689
+ };
1690
+ processingNotes?: string | undefined;
1691
+ }, {
1692
+ geojson: {
1693
+ type: "FeatureCollection";
1694
+ crs: {
1695
+ type: "name";
1696
+ properties: {
1697
+ name: string;
1698
+ };
1699
+ };
1700
+ features: {
1701
+ type: "Feature";
1702
+ geometry: {
1703
+ type: "Polygon";
1704
+ coordinates: [number, number][][];
1705
+ };
1706
+ properties: {
1707
+ name: string;
1708
+ area_hectares: number;
1709
+ data_note?: string | undefined;
1710
+ };
1711
+ }[];
1712
+ };
1713
+ processingNotes?: string | undefined;
1714
+ }>;
1715
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1716
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1717
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1718
+ }, "strip", z.ZodTypeAny, {
1719
+ type: string;
1720
+ id: string;
1721
+ attributes: {
1722
+ geojson: {
1723
+ type: "FeatureCollection";
1724
+ crs: {
1725
+ type: "name";
1726
+ properties: {
1727
+ name: string;
1728
+ };
1729
+ };
1730
+ features: {
1731
+ type: "Feature";
1732
+ geometry: {
1733
+ type: "Polygon";
1734
+ coordinates: [number, number][][];
1735
+ };
1736
+ properties: {
1737
+ name: string;
1738
+ area_hectares: number;
1739
+ data_note?: string | undefined;
1740
+ };
1741
+ }[];
1742
+ };
1743
+ processingNotes?: string | undefined;
1744
+ };
1745
+ relationships?: Record<string, unknown> | undefined;
1746
+ links?: Record<string, string> | undefined;
1747
+ meta?: Record<string, unknown> | undefined;
1748
+ }, {
1749
+ type: string;
1750
+ id: string;
1751
+ attributes: {
1752
+ geojson: {
1753
+ type: "FeatureCollection";
1754
+ crs: {
1755
+ type: "name";
1756
+ properties: {
1757
+ name: string;
1758
+ };
1759
+ };
1760
+ features: {
1761
+ type: "Feature";
1762
+ geometry: {
1763
+ type: "Polygon";
1764
+ coordinates: [number, number][][];
1765
+ };
1766
+ properties: {
1767
+ name: string;
1768
+ area_hectares: number;
1769
+ data_note?: string | undefined;
1770
+ };
1771
+ }[];
1772
+ };
1773
+ processingNotes?: string | undefined;
1774
+ };
1775
+ relationships?: Record<string, unknown> | undefined;
1776
+ links?: Record<string, string> | undefined;
1777
+ meta?: Record<string, unknown> | undefined;
1778
+ }>;
1779
+ included: z.ZodOptional<z.ZodArray<z.ZodObject<{
1780
+ type: z.ZodString;
1781
+ id: z.ZodString;
1782
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1783
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1784
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1785
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1786
+ }, "strip", z.ZodTypeAny, {
1787
+ type: string;
1788
+ id: string;
1789
+ attributes?: Record<string, unknown> | undefined;
1790
+ relationships?: Record<string, unknown> | undefined;
1791
+ links?: Record<string, string> | undefined;
1792
+ meta?: Record<string, unknown> | undefined;
1793
+ }, {
1794
+ type: string;
1795
+ id: string;
1796
+ attributes?: Record<string, unknown> | undefined;
1797
+ relationships?: Record<string, unknown> | undefined;
1798
+ links?: Record<string, string> | undefined;
1799
+ meta?: Record<string, unknown> | undefined;
1800
+ }>, "many">>;
1801
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1802
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1803
+ }, "strip", z.ZodTypeAny, {
1804
+ data: {
1805
+ type: string;
1806
+ id: string;
1807
+ attributes: {
1808
+ geojson: {
1809
+ type: "FeatureCollection";
1810
+ crs: {
1811
+ type: "name";
1812
+ properties: {
1813
+ name: string;
1814
+ };
1815
+ };
1816
+ features: {
1817
+ type: "Feature";
1818
+ geometry: {
1819
+ type: "Polygon";
1820
+ coordinates: [number, number][][];
1821
+ };
1822
+ properties: {
1823
+ name: string;
1824
+ area_hectares: number;
1825
+ data_note?: string | undefined;
1826
+ };
1827
+ }[];
1828
+ };
1829
+ processingNotes?: string | undefined;
1830
+ };
1831
+ relationships?: Record<string, unknown> | undefined;
1832
+ links?: Record<string, string> | undefined;
1833
+ meta?: Record<string, unknown> | undefined;
1834
+ };
1835
+ links?: Record<string, string> | undefined;
1836
+ meta?: Record<string, unknown> | undefined;
1837
+ included?: {
1838
+ type: string;
1839
+ id: string;
1840
+ attributes?: Record<string, unknown> | undefined;
1841
+ relationships?: Record<string, unknown> | undefined;
1842
+ links?: Record<string, string> | undefined;
1843
+ meta?: Record<string, unknown> | undefined;
1844
+ }[] | undefined;
1845
+ }, {
1846
+ data: {
1847
+ type: string;
1848
+ id: string;
1849
+ attributes: {
1850
+ geojson: {
1851
+ type: "FeatureCollection";
1852
+ crs: {
1853
+ type: "name";
1854
+ properties: {
1855
+ name: string;
1856
+ };
1857
+ };
1858
+ features: {
1859
+ type: "Feature";
1860
+ geometry: {
1861
+ type: "Polygon";
1862
+ coordinates: [number, number][][];
1863
+ };
1864
+ properties: {
1865
+ name: string;
1866
+ area_hectares: number;
1867
+ data_note?: string | undefined;
1868
+ };
1869
+ }[];
1870
+ };
1871
+ processingNotes?: string | undefined;
1872
+ };
1873
+ relationships?: Record<string, unknown> | undefined;
1874
+ links?: Record<string, string> | undefined;
1875
+ meta?: Record<string, unknown> | undefined;
1876
+ };
1877
+ links?: Record<string, string> | undefined;
1878
+ meta?: Record<string, unknown> | undefined;
1879
+ included?: {
1880
+ type: string;
1881
+ id: string;
1882
+ attributes?: Record<string, unknown> | undefined;
1883
+ relationships?: Record<string, unknown> | undefined;
1884
+ links?: Record<string, string> | undefined;
1885
+ meta?: Record<string, unknown> | undefined;
1886
+ }[] | undefined;
1887
+ }>;
975
1888
  export type MessageRole = z.infer<typeof messageRoleSchema>;
976
1889
  export type ConversationMessage = z.infer<typeof conversationMessageSchema>;
977
1890
  export type ConversationHistoryMessage = z.infer<typeof conversationHistoryMessageSchema>;
@@ -985,4 +1898,7 @@ export type ConversationHistoryResponse = z.infer<typeof conversationHistoryResp
985
1898
  export type ConversationListItem = z.infer<typeof conversationListItemSchema>;
986
1899
  export type ConversationListAttributes = z.infer<typeof conversationListAttributesSchema>;
987
1900
  export type ConversationListResponse = z.infer<typeof conversationListResponseSchema>;
1901
+ export type GeoJSONFeatureCollection = z.infer<typeof geojsonFeatureCollectionSchema>;
1902
+ export type SurveyGeoJsonResponseAttributes = z.infer<typeof surveyGeoJsonResponseAttributesSchema>;
1903
+ export type SurveyGeoJsonResponse = z.infer<typeof surveyGeoJsonResponseSchema>;
988
1904
  //# sourceMappingURL=agents.schemas.d.ts.map