@deepintel-ltd/farmpro-contracts 1.5.19 → 1.5.20

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.
@@ -1002,7 +1002,17 @@ export declare const geojsonPolygonGeometrySchema: z.ZodObject<{
1002
1002
  type: "Polygon";
1003
1003
  coordinates: [number, number][][];
1004
1004
  }>;
1005
- export declare const geojsonFeatureSchema: z.ZodObject<{
1005
+ export declare const geojsonPointGeometrySchema: z.ZodObject<{
1006
+ type: z.ZodLiteral<"Point">;
1007
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1008
+ }, "strip", z.ZodTypeAny, {
1009
+ type: "Point";
1010
+ coordinates: [number, number];
1011
+ }, {
1012
+ type: "Point";
1013
+ coordinates: [number, number];
1014
+ }>;
1015
+ export declare const geojsonPolygonFeatureSchema: z.ZodObject<{
1006
1016
  type: z.ZodLiteral<"Feature">;
1007
1017
  properties: z.ZodObject<{
1008
1018
  name: z.ZodString;
@@ -1050,6 +1060,179 @@ export declare const geojsonFeatureSchema: z.ZodObject<{
1050
1060
  data_note?: string | undefined;
1051
1061
  };
1052
1062
  }>;
1063
+ export declare const geojsonPointFeatureSchema: z.ZodObject<{
1064
+ type: z.ZodLiteral<"Feature">;
1065
+ properties: z.ZodObject<{
1066
+ Label: z.ZodString;
1067
+ easting: z.ZodNumber;
1068
+ northing: z.ZodNumber;
1069
+ zone: z.ZodNumber;
1070
+ hemisphere: z.ZodEnum<["N", "S"]>;
1071
+ datum: z.ZodString;
1072
+ }, "strip", z.ZodTypeAny, {
1073
+ Label: string;
1074
+ easting: number;
1075
+ northing: number;
1076
+ zone: number;
1077
+ hemisphere: "N" | "S";
1078
+ datum: string;
1079
+ }, {
1080
+ Label: string;
1081
+ easting: number;
1082
+ northing: number;
1083
+ zone: number;
1084
+ hemisphere: "N" | "S";
1085
+ datum: string;
1086
+ }>;
1087
+ geometry: z.ZodObject<{
1088
+ type: z.ZodLiteral<"Point">;
1089
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1090
+ }, "strip", z.ZodTypeAny, {
1091
+ type: "Point";
1092
+ coordinates: [number, number];
1093
+ }, {
1094
+ type: "Point";
1095
+ coordinates: [number, number];
1096
+ }>;
1097
+ }, "strip", z.ZodTypeAny, {
1098
+ type: "Feature";
1099
+ geometry: {
1100
+ type: "Point";
1101
+ coordinates: [number, number];
1102
+ };
1103
+ properties: {
1104
+ Label: string;
1105
+ easting: number;
1106
+ northing: number;
1107
+ zone: number;
1108
+ hemisphere: "N" | "S";
1109
+ datum: string;
1110
+ };
1111
+ }, {
1112
+ type: "Feature";
1113
+ geometry: {
1114
+ type: "Point";
1115
+ coordinates: [number, number];
1116
+ };
1117
+ properties: {
1118
+ Label: string;
1119
+ easting: number;
1120
+ northing: number;
1121
+ zone: number;
1122
+ hemisphere: "N" | "S";
1123
+ datum: string;
1124
+ };
1125
+ }>;
1126
+ export declare const geojsonFeatureSchema: z.ZodUnion<[z.ZodObject<{
1127
+ type: z.ZodLiteral<"Feature">;
1128
+ properties: z.ZodObject<{
1129
+ name: z.ZodString;
1130
+ area_hectares: z.ZodNumber;
1131
+ data_note: z.ZodOptional<z.ZodString>;
1132
+ }, "strip", z.ZodTypeAny, {
1133
+ name: string;
1134
+ area_hectares: number;
1135
+ data_note?: string | undefined;
1136
+ }, {
1137
+ name: string;
1138
+ area_hectares: number;
1139
+ data_note?: string | undefined;
1140
+ }>;
1141
+ geometry: z.ZodObject<{
1142
+ type: z.ZodLiteral<"Polygon">;
1143
+ coordinates: z.ZodArray<z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, "many">, "many">;
1144
+ }, "strip", z.ZodTypeAny, {
1145
+ type: "Polygon";
1146
+ coordinates: [number, number][][];
1147
+ }, {
1148
+ type: "Polygon";
1149
+ coordinates: [number, number][][];
1150
+ }>;
1151
+ }, "strip", z.ZodTypeAny, {
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
+ type: "Feature";
1164
+ geometry: {
1165
+ type: "Polygon";
1166
+ coordinates: [number, number][][];
1167
+ };
1168
+ properties: {
1169
+ name: string;
1170
+ area_hectares: number;
1171
+ data_note?: string | undefined;
1172
+ };
1173
+ }>, z.ZodObject<{
1174
+ type: z.ZodLiteral<"Feature">;
1175
+ properties: z.ZodObject<{
1176
+ Label: z.ZodString;
1177
+ easting: z.ZodNumber;
1178
+ northing: z.ZodNumber;
1179
+ zone: z.ZodNumber;
1180
+ hemisphere: z.ZodEnum<["N", "S"]>;
1181
+ datum: z.ZodString;
1182
+ }, "strip", z.ZodTypeAny, {
1183
+ Label: string;
1184
+ easting: number;
1185
+ northing: number;
1186
+ zone: number;
1187
+ hemisphere: "N" | "S";
1188
+ datum: string;
1189
+ }, {
1190
+ Label: string;
1191
+ easting: number;
1192
+ northing: number;
1193
+ zone: number;
1194
+ hemisphere: "N" | "S";
1195
+ datum: string;
1196
+ }>;
1197
+ geometry: z.ZodObject<{
1198
+ type: z.ZodLiteral<"Point">;
1199
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1200
+ }, "strip", z.ZodTypeAny, {
1201
+ type: "Point";
1202
+ coordinates: [number, number];
1203
+ }, {
1204
+ type: "Point";
1205
+ coordinates: [number, number];
1206
+ }>;
1207
+ }, "strip", z.ZodTypeAny, {
1208
+ type: "Feature";
1209
+ geometry: {
1210
+ type: "Point";
1211
+ coordinates: [number, number];
1212
+ };
1213
+ properties: {
1214
+ Label: string;
1215
+ easting: number;
1216
+ northing: number;
1217
+ zone: number;
1218
+ hemisphere: "N" | "S";
1219
+ datum: string;
1220
+ };
1221
+ }, {
1222
+ type: "Feature";
1223
+ geometry: {
1224
+ type: "Point";
1225
+ coordinates: [number, number];
1226
+ };
1227
+ properties: {
1228
+ Label: string;
1229
+ easting: number;
1230
+ northing: number;
1231
+ zone: number;
1232
+ hemisphere: "N" | "S";
1233
+ datum: string;
1234
+ };
1235
+ }>]>;
1053
1236
  export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1054
1237
  type: z.ZodLiteral<"FeatureCollection">;
1055
1238
  crs: z.ZodObject<{
@@ -1072,7 +1255,7 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1072
1255
  name: string;
1073
1256
  };
1074
1257
  }>;
1075
- features: z.ZodArray<z.ZodObject<{
1258
+ features: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1076
1259
  type: z.ZodLiteral<"Feature">;
1077
1260
  properties: z.ZodObject<{
1078
1261
  name: z.ZodString;
@@ -1119,7 +1302,69 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1119
1302
  area_hectares: number;
1120
1303
  data_note?: string | undefined;
1121
1304
  };
1122
- }>, "many">;
1305
+ }>, z.ZodObject<{
1306
+ type: z.ZodLiteral<"Feature">;
1307
+ properties: z.ZodObject<{
1308
+ Label: z.ZodString;
1309
+ easting: z.ZodNumber;
1310
+ northing: z.ZodNumber;
1311
+ zone: z.ZodNumber;
1312
+ hemisphere: z.ZodEnum<["N", "S"]>;
1313
+ datum: z.ZodString;
1314
+ }, "strip", z.ZodTypeAny, {
1315
+ Label: string;
1316
+ easting: number;
1317
+ northing: number;
1318
+ zone: number;
1319
+ hemisphere: "N" | "S";
1320
+ datum: string;
1321
+ }, {
1322
+ Label: string;
1323
+ easting: number;
1324
+ northing: number;
1325
+ zone: number;
1326
+ hemisphere: "N" | "S";
1327
+ datum: string;
1328
+ }>;
1329
+ geometry: z.ZodObject<{
1330
+ type: z.ZodLiteral<"Point">;
1331
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1332
+ }, "strip", z.ZodTypeAny, {
1333
+ type: "Point";
1334
+ coordinates: [number, number];
1335
+ }, {
1336
+ type: "Point";
1337
+ coordinates: [number, number];
1338
+ }>;
1339
+ }, "strip", z.ZodTypeAny, {
1340
+ type: "Feature";
1341
+ geometry: {
1342
+ type: "Point";
1343
+ coordinates: [number, number];
1344
+ };
1345
+ properties: {
1346
+ Label: string;
1347
+ easting: number;
1348
+ northing: number;
1349
+ zone: number;
1350
+ hemisphere: "N" | "S";
1351
+ datum: string;
1352
+ };
1353
+ }, {
1354
+ type: "Feature";
1355
+ geometry: {
1356
+ type: "Point";
1357
+ coordinates: [number, number];
1358
+ };
1359
+ properties: {
1360
+ Label: string;
1361
+ easting: number;
1362
+ northing: number;
1363
+ zone: number;
1364
+ hemisphere: "N" | "S";
1365
+ datum: string;
1366
+ };
1367
+ }>]>, "many">;
1123
1368
  }, "strip", z.ZodTypeAny, {
1124
1369
  type: "FeatureCollection";
1125
1370
  crs: {
@@ -1128,7 +1373,7 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1128
1373
  name: string;
1129
1374
  };
1130
1375
  };
1131
- features: {
1376
+ features: ({
1132
1377
  type: "Feature";
1133
1378
  geometry: {
1134
1379
  type: "Polygon";
@@ -1139,7 +1384,21 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1139
1384
  area_hectares: number;
1140
1385
  data_note?: string | undefined;
1141
1386
  };
1142
- }[];
1387
+ } | {
1388
+ type: "Feature";
1389
+ geometry: {
1390
+ type: "Point";
1391
+ coordinates: [number, number];
1392
+ };
1393
+ properties: {
1394
+ Label: string;
1395
+ easting: number;
1396
+ northing: number;
1397
+ zone: number;
1398
+ hemisphere: "N" | "S";
1399
+ datum: string;
1400
+ };
1401
+ })[];
1143
1402
  }, {
1144
1403
  type: "FeatureCollection";
1145
1404
  crs: {
@@ -1148,7 +1407,7 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1148
1407
  name: string;
1149
1408
  };
1150
1409
  };
1151
- features: {
1410
+ features: ({
1152
1411
  type: "Feature";
1153
1412
  geometry: {
1154
1413
  type: "Polygon";
@@ -1159,7 +1418,21 @@ export declare const geojsonFeatureCollectionSchema: z.ZodObject<{
1159
1418
  area_hectares: number;
1160
1419
  data_note?: string | undefined;
1161
1420
  };
1162
- }[];
1421
+ } | {
1422
+ type: "Feature";
1423
+ geometry: {
1424
+ type: "Point";
1425
+ coordinates: [number, number];
1426
+ };
1427
+ properties: {
1428
+ Label: string;
1429
+ easting: number;
1430
+ northing: number;
1431
+ zone: number;
1432
+ hemisphere: "N" | "S";
1433
+ datum: string;
1434
+ };
1435
+ })[];
1163
1436
  }>;
1164
1437
  export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1165
1438
  geojson: z.ZodObject<{
@@ -1184,7 +1457,7 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1184
1457
  name: string;
1185
1458
  };
1186
1459
  }>;
1187
- features: z.ZodArray<z.ZodObject<{
1460
+ features: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1188
1461
  type: z.ZodLiteral<"Feature">;
1189
1462
  properties: z.ZodObject<{
1190
1463
  name: z.ZodString;
@@ -1231,7 +1504,69 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1231
1504
  area_hectares: number;
1232
1505
  data_note?: string | undefined;
1233
1506
  };
1234
- }>, "many">;
1507
+ }>, z.ZodObject<{
1508
+ type: z.ZodLiteral<"Feature">;
1509
+ properties: z.ZodObject<{
1510
+ Label: z.ZodString;
1511
+ easting: z.ZodNumber;
1512
+ northing: z.ZodNumber;
1513
+ zone: z.ZodNumber;
1514
+ hemisphere: z.ZodEnum<["N", "S"]>;
1515
+ datum: z.ZodString;
1516
+ }, "strip", z.ZodTypeAny, {
1517
+ Label: string;
1518
+ easting: number;
1519
+ northing: number;
1520
+ zone: number;
1521
+ hemisphere: "N" | "S";
1522
+ datum: string;
1523
+ }, {
1524
+ Label: string;
1525
+ easting: number;
1526
+ northing: number;
1527
+ zone: number;
1528
+ hemisphere: "N" | "S";
1529
+ datum: string;
1530
+ }>;
1531
+ geometry: z.ZodObject<{
1532
+ type: z.ZodLiteral<"Point">;
1533
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1534
+ }, "strip", z.ZodTypeAny, {
1535
+ type: "Point";
1536
+ coordinates: [number, number];
1537
+ }, {
1538
+ type: "Point";
1539
+ coordinates: [number, number];
1540
+ }>;
1541
+ }, "strip", z.ZodTypeAny, {
1542
+ type: "Feature";
1543
+ geometry: {
1544
+ type: "Point";
1545
+ coordinates: [number, number];
1546
+ };
1547
+ properties: {
1548
+ Label: string;
1549
+ easting: number;
1550
+ northing: number;
1551
+ zone: number;
1552
+ hemisphere: "N" | "S";
1553
+ datum: string;
1554
+ };
1555
+ }, {
1556
+ type: "Feature";
1557
+ geometry: {
1558
+ type: "Point";
1559
+ coordinates: [number, number];
1560
+ };
1561
+ properties: {
1562
+ Label: string;
1563
+ easting: number;
1564
+ northing: number;
1565
+ zone: number;
1566
+ hemisphere: "N" | "S";
1567
+ datum: string;
1568
+ };
1569
+ }>]>, "many">;
1235
1570
  }, "strip", z.ZodTypeAny, {
1236
1571
  type: "FeatureCollection";
1237
1572
  crs: {
@@ -1240,7 +1575,7 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1240
1575
  name: string;
1241
1576
  };
1242
1577
  };
1243
- features: {
1578
+ features: ({
1244
1579
  type: "Feature";
1245
1580
  geometry: {
1246
1581
  type: "Polygon";
@@ -1251,7 +1586,21 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1251
1586
  area_hectares: number;
1252
1587
  data_note?: string | undefined;
1253
1588
  };
1254
- }[];
1589
+ } | {
1590
+ type: "Feature";
1591
+ geometry: {
1592
+ type: "Point";
1593
+ coordinates: [number, number];
1594
+ };
1595
+ properties: {
1596
+ Label: string;
1597
+ easting: number;
1598
+ northing: number;
1599
+ zone: number;
1600
+ hemisphere: "N" | "S";
1601
+ datum: string;
1602
+ };
1603
+ })[];
1255
1604
  }, {
1256
1605
  type: "FeatureCollection";
1257
1606
  crs: {
@@ -1260,7 +1609,7 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1260
1609
  name: string;
1261
1610
  };
1262
1611
  };
1263
- features: {
1612
+ features: ({
1264
1613
  type: "Feature";
1265
1614
  geometry: {
1266
1615
  type: "Polygon";
@@ -1271,7 +1620,21 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1271
1620
  area_hectares: number;
1272
1621
  data_note?: string | undefined;
1273
1622
  };
1274
- }[];
1623
+ } | {
1624
+ type: "Feature";
1625
+ geometry: {
1626
+ type: "Point";
1627
+ coordinates: [number, number];
1628
+ };
1629
+ properties: {
1630
+ Label: string;
1631
+ easting: number;
1632
+ northing: number;
1633
+ zone: number;
1634
+ hemisphere: "N" | "S";
1635
+ datum: string;
1636
+ };
1637
+ })[];
1275
1638
  }>;
1276
1639
  processingNotes: z.ZodOptional<z.ZodString>;
1277
1640
  }, "strip", z.ZodTypeAny, {
@@ -1283,7 +1646,7 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1283
1646
  name: string;
1284
1647
  };
1285
1648
  };
1286
- features: {
1649
+ features: ({
1287
1650
  type: "Feature";
1288
1651
  geometry: {
1289
1652
  type: "Polygon";
@@ -1294,7 +1657,21 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1294
1657
  area_hectares: number;
1295
1658
  data_note?: string | undefined;
1296
1659
  };
1297
- }[];
1660
+ } | {
1661
+ type: "Feature";
1662
+ geometry: {
1663
+ type: "Point";
1664
+ coordinates: [number, number];
1665
+ };
1666
+ properties: {
1667
+ Label: string;
1668
+ easting: number;
1669
+ northing: number;
1670
+ zone: number;
1671
+ hemisphere: "N" | "S";
1672
+ datum: string;
1673
+ };
1674
+ })[];
1298
1675
  };
1299
1676
  processingNotes?: string | undefined;
1300
1677
  }, {
@@ -1306,7 +1683,7 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1306
1683
  name: string;
1307
1684
  };
1308
1685
  };
1309
- features: {
1686
+ features: ({
1310
1687
  type: "Feature";
1311
1688
  geometry: {
1312
1689
  type: "Polygon";
@@ -1317,7 +1694,21 @@ export declare const surveyGeoJsonResponseAttributesSchema: z.ZodObject<{
1317
1694
  area_hectares: number;
1318
1695
  data_note?: string | undefined;
1319
1696
  };
1320
- }[];
1697
+ } | {
1698
+ type: "Feature";
1699
+ geometry: {
1700
+ type: "Point";
1701
+ coordinates: [number, number];
1702
+ };
1703
+ properties: {
1704
+ Label: string;
1705
+ easting: number;
1706
+ northing: number;
1707
+ zone: number;
1708
+ hemisphere: "N" | "S";
1709
+ datum: string;
1710
+ };
1711
+ })[];
1321
1712
  };
1322
1713
  processingNotes?: string | undefined;
1323
1714
  }>;
@@ -1347,7 +1738,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1347
1738
  name: string;
1348
1739
  };
1349
1740
  }>;
1350
- features: z.ZodArray<z.ZodObject<{
1741
+ features: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1351
1742
  type: z.ZodLiteral<"Feature">;
1352
1743
  properties: z.ZodObject<{
1353
1744
  name: z.ZodString;
@@ -1394,7 +1785,69 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1394
1785
  area_hectares: number;
1395
1786
  data_note?: string | undefined;
1396
1787
  };
1397
- }>, "many">;
1788
+ }>, z.ZodObject<{
1789
+ type: z.ZodLiteral<"Feature">;
1790
+ properties: z.ZodObject<{
1791
+ Label: z.ZodString;
1792
+ easting: z.ZodNumber;
1793
+ northing: z.ZodNumber;
1794
+ zone: z.ZodNumber;
1795
+ hemisphere: z.ZodEnum<["N", "S"]>;
1796
+ datum: z.ZodString;
1797
+ }, "strip", z.ZodTypeAny, {
1798
+ Label: string;
1799
+ easting: number;
1800
+ northing: number;
1801
+ zone: number;
1802
+ hemisphere: "N" | "S";
1803
+ datum: string;
1804
+ }, {
1805
+ Label: string;
1806
+ easting: number;
1807
+ northing: number;
1808
+ zone: number;
1809
+ hemisphere: "N" | "S";
1810
+ datum: string;
1811
+ }>;
1812
+ geometry: z.ZodObject<{
1813
+ type: z.ZodLiteral<"Point">;
1814
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1815
+ }, "strip", z.ZodTypeAny, {
1816
+ type: "Point";
1817
+ coordinates: [number, number];
1818
+ }, {
1819
+ type: "Point";
1820
+ coordinates: [number, number];
1821
+ }>;
1822
+ }, "strip", z.ZodTypeAny, {
1823
+ type: "Feature";
1824
+ geometry: {
1825
+ type: "Point";
1826
+ coordinates: [number, number];
1827
+ };
1828
+ properties: {
1829
+ Label: string;
1830
+ easting: number;
1831
+ northing: number;
1832
+ zone: number;
1833
+ hemisphere: "N" | "S";
1834
+ datum: string;
1835
+ };
1836
+ }, {
1837
+ type: "Feature";
1838
+ geometry: {
1839
+ type: "Point";
1840
+ coordinates: [number, number];
1841
+ };
1842
+ properties: {
1843
+ Label: string;
1844
+ easting: number;
1845
+ northing: number;
1846
+ zone: number;
1847
+ hemisphere: "N" | "S";
1848
+ datum: string;
1849
+ };
1850
+ }>]>, "many">;
1398
1851
  }, "strip", z.ZodTypeAny, {
1399
1852
  type: "FeatureCollection";
1400
1853
  crs: {
@@ -1403,7 +1856,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1403
1856
  name: string;
1404
1857
  };
1405
1858
  };
1406
- features: {
1859
+ features: ({
1407
1860
  type: "Feature";
1408
1861
  geometry: {
1409
1862
  type: "Polygon";
@@ -1414,7 +1867,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1414
1867
  area_hectares: number;
1415
1868
  data_note?: string | undefined;
1416
1869
  };
1417
- }[];
1870
+ } | {
1871
+ type: "Feature";
1872
+ geometry: {
1873
+ type: "Point";
1874
+ coordinates: [number, number];
1875
+ };
1876
+ properties: {
1877
+ Label: string;
1878
+ easting: number;
1879
+ northing: number;
1880
+ zone: number;
1881
+ hemisphere: "N" | "S";
1882
+ datum: string;
1883
+ };
1884
+ })[];
1418
1885
  }, {
1419
1886
  type: "FeatureCollection";
1420
1887
  crs: {
@@ -1423,7 +1890,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1423
1890
  name: string;
1424
1891
  };
1425
1892
  };
1426
- features: {
1893
+ features: ({
1427
1894
  type: "Feature";
1428
1895
  geometry: {
1429
1896
  type: "Polygon";
@@ -1434,7 +1901,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1434
1901
  area_hectares: number;
1435
1902
  data_note?: string | undefined;
1436
1903
  };
1437
- }[];
1904
+ } | {
1905
+ type: "Feature";
1906
+ geometry: {
1907
+ type: "Point";
1908
+ coordinates: [number, number];
1909
+ };
1910
+ properties: {
1911
+ Label: string;
1912
+ easting: number;
1913
+ northing: number;
1914
+ zone: number;
1915
+ hemisphere: "N" | "S";
1916
+ datum: string;
1917
+ };
1918
+ })[];
1438
1919
  }>;
1439
1920
  processingNotes: z.ZodOptional<z.ZodString>;
1440
1921
  }, "strip", z.ZodTypeAny, {
@@ -1446,7 +1927,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1446
1927
  name: string;
1447
1928
  };
1448
1929
  };
1449
- features: {
1930
+ features: ({
1450
1931
  type: "Feature";
1451
1932
  geometry: {
1452
1933
  type: "Polygon";
@@ -1457,7 +1938,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1457
1938
  area_hectares: number;
1458
1939
  data_note?: string | undefined;
1459
1940
  };
1460
- }[];
1941
+ } | {
1942
+ type: "Feature";
1943
+ geometry: {
1944
+ type: "Point";
1945
+ coordinates: [number, number];
1946
+ };
1947
+ properties: {
1948
+ Label: string;
1949
+ easting: number;
1950
+ northing: number;
1951
+ zone: number;
1952
+ hemisphere: "N" | "S";
1953
+ datum: string;
1954
+ };
1955
+ })[];
1461
1956
  };
1462
1957
  processingNotes?: string | undefined;
1463
1958
  }, {
@@ -1469,7 +1964,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1469
1964
  name: string;
1470
1965
  };
1471
1966
  };
1472
- features: {
1967
+ features: ({
1473
1968
  type: "Feature";
1474
1969
  geometry: {
1475
1970
  type: "Polygon";
@@ -1480,7 +1975,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1480
1975
  area_hectares: number;
1481
1976
  data_note?: string | undefined;
1482
1977
  };
1483
- }[];
1978
+ } | {
1979
+ type: "Feature";
1980
+ geometry: {
1981
+ type: "Point";
1982
+ coordinates: [number, number];
1983
+ };
1984
+ properties: {
1985
+ Label: string;
1986
+ easting: number;
1987
+ northing: number;
1988
+ zone: number;
1989
+ hemisphere: "N" | "S";
1990
+ datum: string;
1991
+ };
1992
+ })[];
1484
1993
  };
1485
1994
  processingNotes?: string | undefined;
1486
1995
  }>;
@@ -1499,7 +2008,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1499
2008
  name: string;
1500
2009
  };
1501
2010
  };
1502
- features: {
2011
+ features: ({
1503
2012
  type: "Feature";
1504
2013
  geometry: {
1505
2014
  type: "Polygon";
@@ -1510,7 +2019,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1510
2019
  area_hectares: number;
1511
2020
  data_note?: string | undefined;
1512
2021
  };
1513
- }[];
2022
+ } | {
2023
+ type: "Feature";
2024
+ geometry: {
2025
+ type: "Point";
2026
+ coordinates: [number, number];
2027
+ };
2028
+ properties: {
2029
+ Label: string;
2030
+ easting: number;
2031
+ northing: number;
2032
+ zone: number;
2033
+ hemisphere: "N" | "S";
2034
+ datum: string;
2035
+ };
2036
+ })[];
1514
2037
  };
1515
2038
  processingNotes?: string | undefined;
1516
2039
  };
@@ -1529,7 +2052,7 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1529
2052
  name: string;
1530
2053
  };
1531
2054
  };
1532
- features: {
2055
+ features: ({
1533
2056
  type: "Feature";
1534
2057
  geometry: {
1535
2058
  type: "Polygon";
@@ -1540,7 +2063,21 @@ export declare const surveyGeoJsonResponseResourceSchema: z.ZodObject<{
1540
2063
  area_hectares: number;
1541
2064
  data_note?: string | undefined;
1542
2065
  };
1543
- }[];
2066
+ } | {
2067
+ type: "Feature";
2068
+ geometry: {
2069
+ type: "Point";
2070
+ coordinates: [number, number];
2071
+ };
2072
+ properties: {
2073
+ Label: string;
2074
+ easting: number;
2075
+ northing: number;
2076
+ zone: number;
2077
+ hemisphere: "N" | "S";
2078
+ datum: string;
2079
+ };
2080
+ })[];
1544
2081
  };
1545
2082
  processingNotes?: string | undefined;
1546
2083
  };
@@ -1575,7 +2112,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1575
2112
  name: string;
1576
2113
  };
1577
2114
  }>;
1578
- features: z.ZodArray<z.ZodObject<{
2115
+ features: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1579
2116
  type: z.ZodLiteral<"Feature">;
1580
2117
  properties: z.ZodObject<{
1581
2118
  name: z.ZodString;
@@ -1622,7 +2159,69 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1622
2159
  area_hectares: number;
1623
2160
  data_note?: string | undefined;
1624
2161
  };
1625
- }>, "many">;
2162
+ }>, z.ZodObject<{
2163
+ type: z.ZodLiteral<"Feature">;
2164
+ properties: z.ZodObject<{
2165
+ Label: z.ZodString;
2166
+ easting: z.ZodNumber;
2167
+ northing: z.ZodNumber;
2168
+ zone: z.ZodNumber;
2169
+ hemisphere: z.ZodEnum<["N", "S"]>;
2170
+ datum: z.ZodString;
2171
+ }, "strip", z.ZodTypeAny, {
2172
+ Label: string;
2173
+ easting: number;
2174
+ northing: number;
2175
+ zone: number;
2176
+ hemisphere: "N" | "S";
2177
+ datum: string;
2178
+ }, {
2179
+ Label: string;
2180
+ easting: number;
2181
+ northing: number;
2182
+ zone: number;
2183
+ hemisphere: "N" | "S";
2184
+ datum: string;
2185
+ }>;
2186
+ geometry: z.ZodObject<{
2187
+ type: z.ZodLiteral<"Point">;
2188
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
2189
+ }, "strip", z.ZodTypeAny, {
2190
+ type: "Point";
2191
+ coordinates: [number, number];
2192
+ }, {
2193
+ type: "Point";
2194
+ coordinates: [number, number];
2195
+ }>;
2196
+ }, "strip", z.ZodTypeAny, {
2197
+ type: "Feature";
2198
+ geometry: {
2199
+ type: "Point";
2200
+ coordinates: [number, number];
2201
+ };
2202
+ properties: {
2203
+ Label: string;
2204
+ easting: number;
2205
+ northing: number;
2206
+ zone: number;
2207
+ hemisphere: "N" | "S";
2208
+ datum: string;
2209
+ };
2210
+ }, {
2211
+ type: "Feature";
2212
+ geometry: {
2213
+ type: "Point";
2214
+ coordinates: [number, number];
2215
+ };
2216
+ properties: {
2217
+ Label: string;
2218
+ easting: number;
2219
+ northing: number;
2220
+ zone: number;
2221
+ hemisphere: "N" | "S";
2222
+ datum: string;
2223
+ };
2224
+ }>]>, "many">;
1626
2225
  }, "strip", z.ZodTypeAny, {
1627
2226
  type: "FeatureCollection";
1628
2227
  crs: {
@@ -1631,7 +2230,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1631
2230
  name: string;
1632
2231
  };
1633
2232
  };
1634
- features: {
2233
+ features: ({
1635
2234
  type: "Feature";
1636
2235
  geometry: {
1637
2236
  type: "Polygon";
@@ -1642,7 +2241,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1642
2241
  area_hectares: number;
1643
2242
  data_note?: string | undefined;
1644
2243
  };
1645
- }[];
2244
+ } | {
2245
+ type: "Feature";
2246
+ geometry: {
2247
+ type: "Point";
2248
+ coordinates: [number, number];
2249
+ };
2250
+ properties: {
2251
+ Label: string;
2252
+ easting: number;
2253
+ northing: number;
2254
+ zone: number;
2255
+ hemisphere: "N" | "S";
2256
+ datum: string;
2257
+ };
2258
+ })[];
1646
2259
  }, {
1647
2260
  type: "FeatureCollection";
1648
2261
  crs: {
@@ -1651,7 +2264,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1651
2264
  name: string;
1652
2265
  };
1653
2266
  };
1654
- features: {
2267
+ features: ({
1655
2268
  type: "Feature";
1656
2269
  geometry: {
1657
2270
  type: "Polygon";
@@ -1662,7 +2275,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1662
2275
  area_hectares: number;
1663
2276
  data_note?: string | undefined;
1664
2277
  };
1665
- }[];
2278
+ } | {
2279
+ type: "Feature";
2280
+ geometry: {
2281
+ type: "Point";
2282
+ coordinates: [number, number];
2283
+ };
2284
+ properties: {
2285
+ Label: string;
2286
+ easting: number;
2287
+ northing: number;
2288
+ zone: number;
2289
+ hemisphere: "N" | "S";
2290
+ datum: string;
2291
+ };
2292
+ })[];
1666
2293
  }>;
1667
2294
  processingNotes: z.ZodOptional<z.ZodString>;
1668
2295
  }, "strip", z.ZodTypeAny, {
@@ -1674,7 +2301,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1674
2301
  name: string;
1675
2302
  };
1676
2303
  };
1677
- features: {
2304
+ features: ({
1678
2305
  type: "Feature";
1679
2306
  geometry: {
1680
2307
  type: "Polygon";
@@ -1685,7 +2312,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1685
2312
  area_hectares: number;
1686
2313
  data_note?: string | undefined;
1687
2314
  };
1688
- }[];
2315
+ } | {
2316
+ type: "Feature";
2317
+ geometry: {
2318
+ type: "Point";
2319
+ coordinates: [number, number];
2320
+ };
2321
+ properties: {
2322
+ Label: string;
2323
+ easting: number;
2324
+ northing: number;
2325
+ zone: number;
2326
+ hemisphere: "N" | "S";
2327
+ datum: string;
2328
+ };
2329
+ })[];
1689
2330
  };
1690
2331
  processingNotes?: string | undefined;
1691
2332
  }, {
@@ -1697,7 +2338,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1697
2338
  name: string;
1698
2339
  };
1699
2340
  };
1700
- features: {
2341
+ features: ({
1701
2342
  type: "Feature";
1702
2343
  geometry: {
1703
2344
  type: "Polygon";
@@ -1708,7 +2349,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1708
2349
  area_hectares: number;
1709
2350
  data_note?: string | undefined;
1710
2351
  };
1711
- }[];
2352
+ } | {
2353
+ type: "Feature";
2354
+ geometry: {
2355
+ type: "Point";
2356
+ coordinates: [number, number];
2357
+ };
2358
+ properties: {
2359
+ Label: string;
2360
+ easting: number;
2361
+ northing: number;
2362
+ zone: number;
2363
+ hemisphere: "N" | "S";
2364
+ datum: string;
2365
+ };
2366
+ })[];
1712
2367
  };
1713
2368
  processingNotes?: string | undefined;
1714
2369
  }>;
@@ -1727,7 +2382,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1727
2382
  name: string;
1728
2383
  };
1729
2384
  };
1730
- features: {
2385
+ features: ({
1731
2386
  type: "Feature";
1732
2387
  geometry: {
1733
2388
  type: "Polygon";
@@ -1738,7 +2393,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1738
2393
  area_hectares: number;
1739
2394
  data_note?: string | undefined;
1740
2395
  };
1741
- }[];
2396
+ } | {
2397
+ type: "Feature";
2398
+ geometry: {
2399
+ type: "Point";
2400
+ coordinates: [number, number];
2401
+ };
2402
+ properties: {
2403
+ Label: string;
2404
+ easting: number;
2405
+ northing: number;
2406
+ zone: number;
2407
+ hemisphere: "N" | "S";
2408
+ datum: string;
2409
+ };
2410
+ })[];
1742
2411
  };
1743
2412
  processingNotes?: string | undefined;
1744
2413
  };
@@ -1757,7 +2426,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1757
2426
  name: string;
1758
2427
  };
1759
2428
  };
1760
- features: {
2429
+ features: ({
1761
2430
  type: "Feature";
1762
2431
  geometry: {
1763
2432
  type: "Polygon";
@@ -1768,7 +2437,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1768
2437
  area_hectares: number;
1769
2438
  data_note?: string | undefined;
1770
2439
  };
1771
- }[];
2440
+ } | {
2441
+ type: "Feature";
2442
+ geometry: {
2443
+ type: "Point";
2444
+ coordinates: [number, number];
2445
+ };
2446
+ properties: {
2447
+ Label: string;
2448
+ easting: number;
2449
+ northing: number;
2450
+ zone: number;
2451
+ hemisphere: "N" | "S";
2452
+ datum: string;
2453
+ };
2454
+ })[];
1772
2455
  };
1773
2456
  processingNotes?: string | undefined;
1774
2457
  };
@@ -1813,7 +2496,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1813
2496
  name: string;
1814
2497
  };
1815
2498
  };
1816
- features: {
2499
+ features: ({
1817
2500
  type: "Feature";
1818
2501
  geometry: {
1819
2502
  type: "Polygon";
@@ -1824,7 +2507,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1824
2507
  area_hectares: number;
1825
2508
  data_note?: string | undefined;
1826
2509
  };
1827
- }[];
2510
+ } | {
2511
+ type: "Feature";
2512
+ geometry: {
2513
+ type: "Point";
2514
+ coordinates: [number, number];
2515
+ };
2516
+ properties: {
2517
+ Label: string;
2518
+ easting: number;
2519
+ northing: number;
2520
+ zone: number;
2521
+ hemisphere: "N" | "S";
2522
+ datum: string;
2523
+ };
2524
+ })[];
1828
2525
  };
1829
2526
  processingNotes?: string | undefined;
1830
2527
  };
@@ -1855,7 +2552,7 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1855
2552
  name: string;
1856
2553
  };
1857
2554
  };
1858
- features: {
2555
+ features: ({
1859
2556
  type: "Feature";
1860
2557
  geometry: {
1861
2558
  type: "Polygon";
@@ -1866,7 +2563,21 @@ export declare const surveyGeoJsonResponseSchema: z.ZodObject<{
1866
2563
  area_hectares: number;
1867
2564
  data_note?: string | undefined;
1868
2565
  };
1869
- }[];
2566
+ } | {
2567
+ type: "Feature";
2568
+ geometry: {
2569
+ type: "Point";
2570
+ coordinates: [number, number];
2571
+ };
2572
+ properties: {
2573
+ Label: string;
2574
+ easting: number;
2575
+ northing: number;
2576
+ zone: number;
2577
+ hemisphere: "N" | "S";
2578
+ datum: string;
2579
+ };
2580
+ })[];
1870
2581
  };
1871
2582
  processingNotes?: string | undefined;
1872
2583
  };