@deepintel-ltd/farmpro-contracts 1.16.1 → 1.16.3
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/agents.routes.d.ts +8 -8
- package/dist/routes/documents.routes.d.ts +78 -78
- package/dist/routes/fertigation.routes.d.ts +4 -4
- package/dist/routes/field-monitoring.routes.d.ts +40 -0
- package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.d.ts +174 -28
- package/dist/routes/field-observations.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.js +7 -4
- package/dist/routes/fields.routes.d.ts +923 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +23 -1
- package/dist/routes/files.routes.d.ts +6 -6
- package/dist/routes/finance.routes.d.ts +30 -30
- package/dist/routes/inventory.routes.d.ts +6 -6
- package/dist/routes/irrigation.routes.d.ts +2 -2
- package/dist/routes/monitoring-visualization.routes.d.ts +4 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +44 -44
- package/dist/routes/prescription-maps.routes.d.ts +4 -4
- package/dist/routes/subscriptions.routes.d.ts +4 -4
- package/dist/routes/tasks.routes.d.ts +108 -108
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/routes/weather.routes.d.ts +42 -42
- package/dist/schemas/agents.schemas.d.ts +8 -8
- package/dist/schemas/common.schemas.d.ts +32 -0
- package/dist/schemas/common.schemas.d.ts.map +1 -1
- package/dist/schemas/common.schemas.js +14 -0
- package/dist/schemas/documents.schemas.d.ts +48 -48
- package/dist/schemas/fertigation.schemas.d.ts +2 -2
- package/dist/schemas/field-monitoring.schemas.d.ts +20 -0
- package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
- package/dist/schemas/field-monitoring.schemas.js +4 -0
- package/dist/schemas/fields.schemas.d.ts +170 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +14 -0
- package/dist/schemas/files.schemas.d.ts +12 -12
- package/dist/schemas/finance.schemas.d.ts +34 -34
- package/dist/schemas/inventory.schemas.d.ts +6 -6
- package/dist/schemas/irrigation.schemas.d.ts +2 -2
- package/dist/schemas/monitoring-visualization.schemas.d.ts +6 -6
- package/dist/schemas/pest-disease-risk.schemas.d.ts +36 -36
- package/dist/schemas/prescription-maps.schemas.d.ts +4 -4
- package/dist/schemas/subscriptions.schemas.d.ts +2 -2
- package/dist/schemas/tasks.schemas.d.ts +96 -96
- package/dist/schemas/team-payments.schemas.d.ts +24 -24
- package/dist/schemas/weather.schemas.d.ts +84 -84
- package/package.json +1 -1
|
@@ -42,14 +42,14 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
42
42
|
avg7d: z.ZodNullable<z.ZodNumber>;
|
|
43
43
|
unit: z.ZodLiteral<"celsius">;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
-
unit: "celsius";
|
|
46
45
|
current: number;
|
|
46
|
+
unit: "celsius";
|
|
47
47
|
min24h: number | null;
|
|
48
48
|
max24h: number | null;
|
|
49
49
|
avg7d: number | null;
|
|
50
50
|
}, {
|
|
51
|
-
unit: "celsius";
|
|
52
51
|
current: number;
|
|
52
|
+
unit: "celsius";
|
|
53
53
|
min24h: number | null;
|
|
54
54
|
max24h: number | null;
|
|
55
55
|
avg7d: number | null;
|
|
@@ -92,12 +92,12 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
92
92
|
avg24h: z.ZodNullable<z.ZodNumber>;
|
|
93
93
|
unit: z.ZodLiteral<"km/h">;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
unit: "km/h";
|
|
96
95
|
current: number | null;
|
|
96
|
+
unit: "km/h";
|
|
97
97
|
avg24h: number | null;
|
|
98
98
|
}, {
|
|
99
|
-
unit: "km/h";
|
|
100
99
|
current: number | null;
|
|
100
|
+
unit: "km/h";
|
|
101
101
|
avg24h: number | null;
|
|
102
102
|
}>>;
|
|
103
103
|
conditions: z.ZodObject<{
|
|
@@ -131,15 +131,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
131
131
|
current: number | null;
|
|
132
132
|
} | null;
|
|
133
133
|
temperature: {
|
|
134
|
-
unit: "celsius";
|
|
135
134
|
current: number;
|
|
135
|
+
unit: "celsius";
|
|
136
136
|
min24h: number | null;
|
|
137
137
|
max24h: number | null;
|
|
138
138
|
avg7d: number | null;
|
|
139
139
|
};
|
|
140
140
|
windSpeed: {
|
|
141
|
-
unit: "km/h";
|
|
142
141
|
current: number | null;
|
|
142
|
+
unit: "km/h";
|
|
143
143
|
avg24h: number | null;
|
|
144
144
|
} | null;
|
|
145
145
|
conditions: {
|
|
@@ -163,15 +163,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
163
163
|
current: number | null;
|
|
164
164
|
} | null;
|
|
165
165
|
temperature: {
|
|
166
|
-
unit: "celsius";
|
|
167
166
|
current: number;
|
|
167
|
+
unit: "celsius";
|
|
168
168
|
min24h: number | null;
|
|
169
169
|
max24h: number | null;
|
|
170
170
|
avg7d: number | null;
|
|
171
171
|
};
|
|
172
172
|
windSpeed: {
|
|
173
|
-
unit: "km/h";
|
|
174
173
|
current: number | null;
|
|
174
|
+
unit: "km/h";
|
|
175
175
|
avg24h: number | null;
|
|
176
176
|
} | null;
|
|
177
177
|
conditions: {
|
|
@@ -400,15 +400,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
400
400
|
current: number | null;
|
|
401
401
|
} | null;
|
|
402
402
|
temperature: {
|
|
403
|
-
unit: "celsius";
|
|
404
403
|
current: number;
|
|
404
|
+
unit: "celsius";
|
|
405
405
|
min24h: number | null;
|
|
406
406
|
max24h: number | null;
|
|
407
407
|
avg7d: number | null;
|
|
408
408
|
};
|
|
409
409
|
windSpeed: {
|
|
410
|
-
unit: "km/h";
|
|
411
410
|
current: number | null;
|
|
411
|
+
unit: "km/h";
|
|
412
412
|
avg24h: number | null;
|
|
413
413
|
} | null;
|
|
414
414
|
conditions: {
|
|
@@ -497,15 +497,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
497
497
|
current: number | null;
|
|
498
498
|
} | null;
|
|
499
499
|
temperature: {
|
|
500
|
-
unit: "celsius";
|
|
501
500
|
current: number;
|
|
501
|
+
unit: "celsius";
|
|
502
502
|
min24h: number | null;
|
|
503
503
|
max24h: number | null;
|
|
504
504
|
avg7d: number | null;
|
|
505
505
|
};
|
|
506
506
|
windSpeed: {
|
|
507
|
-
unit: "km/h";
|
|
508
507
|
current: number | null;
|
|
508
|
+
unit: "km/h";
|
|
509
509
|
avg24h: number | null;
|
|
510
510
|
} | null;
|
|
511
511
|
conditions: {
|
|
@@ -901,14 +901,14 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
901
901
|
avg7d: z.ZodNullable<z.ZodNumber>;
|
|
902
902
|
unit: z.ZodLiteral<"celsius">;
|
|
903
903
|
}, "strip", z.ZodTypeAny, {
|
|
904
|
-
unit: "celsius";
|
|
905
904
|
current: number;
|
|
905
|
+
unit: "celsius";
|
|
906
906
|
min24h: number | null;
|
|
907
907
|
max24h: number | null;
|
|
908
908
|
avg7d: number | null;
|
|
909
909
|
}, {
|
|
910
|
-
unit: "celsius";
|
|
911
910
|
current: number;
|
|
911
|
+
unit: "celsius";
|
|
912
912
|
min24h: number | null;
|
|
913
913
|
max24h: number | null;
|
|
914
914
|
avg7d: number | null;
|
|
@@ -951,12 +951,12 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
951
951
|
avg24h: z.ZodNullable<z.ZodNumber>;
|
|
952
952
|
unit: z.ZodLiteral<"km/h">;
|
|
953
953
|
}, "strip", z.ZodTypeAny, {
|
|
954
|
-
unit: "km/h";
|
|
955
954
|
current: number | null;
|
|
955
|
+
unit: "km/h";
|
|
956
956
|
avg24h: number | null;
|
|
957
957
|
}, {
|
|
958
|
-
unit: "km/h";
|
|
959
958
|
current: number | null;
|
|
959
|
+
unit: "km/h";
|
|
960
960
|
avg24h: number | null;
|
|
961
961
|
}>>;
|
|
962
962
|
conditions: z.ZodObject<{
|
|
@@ -990,15 +990,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
990
990
|
current: number | null;
|
|
991
991
|
} | null;
|
|
992
992
|
temperature: {
|
|
993
|
-
unit: "celsius";
|
|
994
993
|
current: number;
|
|
994
|
+
unit: "celsius";
|
|
995
995
|
min24h: number | null;
|
|
996
996
|
max24h: number | null;
|
|
997
997
|
avg7d: number | null;
|
|
998
998
|
};
|
|
999
999
|
windSpeed: {
|
|
1000
|
-
unit: "km/h";
|
|
1001
1000
|
current: number | null;
|
|
1001
|
+
unit: "km/h";
|
|
1002
1002
|
avg24h: number | null;
|
|
1003
1003
|
} | null;
|
|
1004
1004
|
conditions: {
|
|
@@ -1022,15 +1022,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1022
1022
|
current: number | null;
|
|
1023
1023
|
} | null;
|
|
1024
1024
|
temperature: {
|
|
1025
|
-
unit: "celsius";
|
|
1026
1025
|
current: number;
|
|
1026
|
+
unit: "celsius";
|
|
1027
1027
|
min24h: number | null;
|
|
1028
1028
|
max24h: number | null;
|
|
1029
1029
|
avg7d: number | null;
|
|
1030
1030
|
};
|
|
1031
1031
|
windSpeed: {
|
|
1032
|
-
unit: "km/h";
|
|
1033
1032
|
current: number | null;
|
|
1033
|
+
unit: "km/h";
|
|
1034
1034
|
avg24h: number | null;
|
|
1035
1035
|
} | null;
|
|
1036
1036
|
conditions: {
|
|
@@ -1259,15 +1259,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1259
1259
|
current: number | null;
|
|
1260
1260
|
} | null;
|
|
1261
1261
|
temperature: {
|
|
1262
|
-
unit: "celsius";
|
|
1263
1262
|
current: number;
|
|
1263
|
+
unit: "celsius";
|
|
1264
1264
|
min24h: number | null;
|
|
1265
1265
|
max24h: number | null;
|
|
1266
1266
|
avg7d: number | null;
|
|
1267
1267
|
};
|
|
1268
1268
|
windSpeed: {
|
|
1269
|
-
unit: "km/h";
|
|
1270
1269
|
current: number | null;
|
|
1270
|
+
unit: "km/h";
|
|
1271
1271
|
avg24h: number | null;
|
|
1272
1272
|
} | null;
|
|
1273
1273
|
conditions: {
|
|
@@ -1356,15 +1356,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1356
1356
|
current: number | null;
|
|
1357
1357
|
} | null;
|
|
1358
1358
|
temperature: {
|
|
1359
|
-
unit: "celsius";
|
|
1360
1359
|
current: number;
|
|
1360
|
+
unit: "celsius";
|
|
1361
1361
|
min24h: number | null;
|
|
1362
1362
|
max24h: number | null;
|
|
1363
1363
|
avg7d: number | null;
|
|
1364
1364
|
};
|
|
1365
1365
|
windSpeed: {
|
|
1366
|
-
unit: "km/h";
|
|
1367
1366
|
current: number | null;
|
|
1367
|
+
unit: "km/h";
|
|
1368
1368
|
avg24h: number | null;
|
|
1369
1369
|
} | null;
|
|
1370
1370
|
conditions: {
|
|
@@ -1460,15 +1460,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1460
1460
|
current: number | null;
|
|
1461
1461
|
} | null;
|
|
1462
1462
|
temperature: {
|
|
1463
|
-
unit: "celsius";
|
|
1464
1463
|
current: number;
|
|
1464
|
+
unit: "celsius";
|
|
1465
1465
|
min24h: number | null;
|
|
1466
1466
|
max24h: number | null;
|
|
1467
1467
|
avg7d: number | null;
|
|
1468
1468
|
};
|
|
1469
1469
|
windSpeed: {
|
|
1470
|
-
unit: "km/h";
|
|
1471
1470
|
current: number | null;
|
|
1471
|
+
unit: "km/h";
|
|
1472
1472
|
avg24h: number | null;
|
|
1473
1473
|
} | null;
|
|
1474
1474
|
conditions: {
|
|
@@ -1564,15 +1564,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1564
1564
|
current: number | null;
|
|
1565
1565
|
} | null;
|
|
1566
1566
|
temperature: {
|
|
1567
|
-
unit: "celsius";
|
|
1568
1567
|
current: number;
|
|
1568
|
+
unit: "celsius";
|
|
1569
1569
|
min24h: number | null;
|
|
1570
1570
|
max24h: number | null;
|
|
1571
1571
|
avg7d: number | null;
|
|
1572
1572
|
};
|
|
1573
1573
|
windSpeed: {
|
|
1574
|
-
unit: "km/h";
|
|
1575
1574
|
current: number | null;
|
|
1575
|
+
unit: "km/h";
|
|
1576
1576
|
avg24h: number | null;
|
|
1577
1577
|
} | null;
|
|
1578
1578
|
conditions: {
|
|
@@ -1654,14 +1654,14 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1654
1654
|
avg7d: z.ZodNullable<z.ZodNumber>;
|
|
1655
1655
|
unit: z.ZodLiteral<"celsius">;
|
|
1656
1656
|
}, "strip", z.ZodTypeAny, {
|
|
1657
|
-
unit: "celsius";
|
|
1658
1657
|
current: number;
|
|
1658
|
+
unit: "celsius";
|
|
1659
1659
|
min24h: number | null;
|
|
1660
1660
|
max24h: number | null;
|
|
1661
1661
|
avg7d: number | null;
|
|
1662
1662
|
}, {
|
|
1663
|
-
unit: "celsius";
|
|
1664
1663
|
current: number;
|
|
1664
|
+
unit: "celsius";
|
|
1665
1665
|
min24h: number | null;
|
|
1666
1666
|
max24h: number | null;
|
|
1667
1667
|
avg7d: number | null;
|
|
@@ -1704,12 +1704,12 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1704
1704
|
avg24h: z.ZodNullable<z.ZodNumber>;
|
|
1705
1705
|
unit: z.ZodLiteral<"km/h">;
|
|
1706
1706
|
}, "strip", z.ZodTypeAny, {
|
|
1707
|
-
unit: "km/h";
|
|
1708
1707
|
current: number | null;
|
|
1708
|
+
unit: "km/h";
|
|
1709
1709
|
avg24h: number | null;
|
|
1710
1710
|
}, {
|
|
1711
|
-
unit: "km/h";
|
|
1712
1711
|
current: number | null;
|
|
1712
|
+
unit: "km/h";
|
|
1713
1713
|
avg24h: number | null;
|
|
1714
1714
|
}>>;
|
|
1715
1715
|
conditions: z.ZodObject<{
|
|
@@ -1743,15 +1743,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1743
1743
|
current: number | null;
|
|
1744
1744
|
} | null;
|
|
1745
1745
|
temperature: {
|
|
1746
|
-
unit: "celsius";
|
|
1747
1746
|
current: number;
|
|
1747
|
+
unit: "celsius";
|
|
1748
1748
|
min24h: number | null;
|
|
1749
1749
|
max24h: number | null;
|
|
1750
1750
|
avg7d: number | null;
|
|
1751
1751
|
};
|
|
1752
1752
|
windSpeed: {
|
|
1753
|
-
unit: "km/h";
|
|
1754
1753
|
current: number | null;
|
|
1754
|
+
unit: "km/h";
|
|
1755
1755
|
avg24h: number | null;
|
|
1756
1756
|
} | null;
|
|
1757
1757
|
conditions: {
|
|
@@ -1775,15 +1775,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1775
1775
|
current: number | null;
|
|
1776
1776
|
} | null;
|
|
1777
1777
|
temperature: {
|
|
1778
|
-
unit: "celsius";
|
|
1779
1778
|
current: number;
|
|
1779
|
+
unit: "celsius";
|
|
1780
1780
|
min24h: number | null;
|
|
1781
1781
|
max24h: number | null;
|
|
1782
1782
|
avg7d: number | null;
|
|
1783
1783
|
};
|
|
1784
1784
|
windSpeed: {
|
|
1785
|
-
unit: "km/h";
|
|
1786
1785
|
current: number | null;
|
|
1786
|
+
unit: "km/h";
|
|
1787
1787
|
avg24h: number | null;
|
|
1788
1788
|
} | null;
|
|
1789
1789
|
conditions: {
|
|
@@ -2012,15 +2012,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2012
2012
|
current: number | null;
|
|
2013
2013
|
} | null;
|
|
2014
2014
|
temperature: {
|
|
2015
|
-
unit: "celsius";
|
|
2016
2015
|
current: number;
|
|
2016
|
+
unit: "celsius";
|
|
2017
2017
|
min24h: number | null;
|
|
2018
2018
|
max24h: number | null;
|
|
2019
2019
|
avg7d: number | null;
|
|
2020
2020
|
};
|
|
2021
2021
|
windSpeed: {
|
|
2022
|
-
unit: "km/h";
|
|
2023
2022
|
current: number | null;
|
|
2023
|
+
unit: "km/h";
|
|
2024
2024
|
avg24h: number | null;
|
|
2025
2025
|
} | null;
|
|
2026
2026
|
conditions: {
|
|
@@ -2109,15 +2109,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2109
2109
|
current: number | null;
|
|
2110
2110
|
} | null;
|
|
2111
2111
|
temperature: {
|
|
2112
|
-
unit: "celsius";
|
|
2113
2112
|
current: number;
|
|
2113
|
+
unit: "celsius";
|
|
2114
2114
|
min24h: number | null;
|
|
2115
2115
|
max24h: number | null;
|
|
2116
2116
|
avg7d: number | null;
|
|
2117
2117
|
};
|
|
2118
2118
|
windSpeed: {
|
|
2119
|
-
unit: "km/h";
|
|
2120
2119
|
current: number | null;
|
|
2120
|
+
unit: "km/h";
|
|
2121
2121
|
avg24h: number | null;
|
|
2122
2122
|
} | null;
|
|
2123
2123
|
conditions: {
|
|
@@ -2213,15 +2213,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2213
2213
|
current: number | null;
|
|
2214
2214
|
} | null;
|
|
2215
2215
|
temperature: {
|
|
2216
|
-
unit: "celsius";
|
|
2217
2216
|
current: number;
|
|
2217
|
+
unit: "celsius";
|
|
2218
2218
|
min24h: number | null;
|
|
2219
2219
|
max24h: number | null;
|
|
2220
2220
|
avg7d: number | null;
|
|
2221
2221
|
};
|
|
2222
2222
|
windSpeed: {
|
|
2223
|
-
unit: "km/h";
|
|
2224
2223
|
current: number | null;
|
|
2224
|
+
unit: "km/h";
|
|
2225
2225
|
avg24h: number | null;
|
|
2226
2226
|
} | null;
|
|
2227
2227
|
conditions: {
|
|
@@ -2317,15 +2317,15 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2317
2317
|
current: number | null;
|
|
2318
2318
|
} | null;
|
|
2319
2319
|
temperature: {
|
|
2320
|
-
unit: "celsius";
|
|
2321
2320
|
current: number;
|
|
2321
|
+
unit: "celsius";
|
|
2322
2322
|
min24h: number | null;
|
|
2323
2323
|
max24h: number | null;
|
|
2324
2324
|
avg7d: number | null;
|
|
2325
2325
|
};
|
|
2326
2326
|
windSpeed: {
|
|
2327
|
-
unit: "km/h";
|
|
2328
2327
|
current: number | null;
|
|
2328
|
+
unit: "km/h";
|
|
2329
2329
|
avg24h: number | null;
|
|
2330
2330
|
} | null;
|
|
2331
2331
|
conditions: {
|
|
@@ -3035,15 +3035,15 @@ export declare const prescriptionMapsRouter: {
|
|
|
3035
3035
|
expiresAt: z.ZodString;
|
|
3036
3036
|
}, "strip", z.ZodTypeAny, {
|
|
3037
3037
|
expiresAt: string;
|
|
3038
|
-
fileName: string;
|
|
3039
3038
|
fileSize: number | null;
|
|
3039
|
+
fileName: string;
|
|
3040
3040
|
format: string;
|
|
3041
3041
|
exportId: string;
|
|
3042
3042
|
downloadUrl: string;
|
|
3043
3043
|
}, {
|
|
3044
3044
|
expiresAt: string;
|
|
3045
|
-
fileName: string;
|
|
3046
3045
|
fileSize: number | null;
|
|
3046
|
+
fileName: string;
|
|
3047
3047
|
format: string;
|
|
3048
3048
|
exportId: string;
|
|
3049
3049
|
downloadUrl: string;
|
|
@@ -3438,16 +3438,16 @@ export declare const prescriptionMapsRouter: {
|
|
|
3438
3438
|
machinery: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
3439
3439
|
}, "strip", z.ZodTypeAny, {
|
|
3440
3440
|
id: string;
|
|
3441
|
-
fileName: string;
|
|
3442
3441
|
fileSize: number | null;
|
|
3442
|
+
fileName: string;
|
|
3443
3443
|
format: string;
|
|
3444
3444
|
machinery: string[] | null;
|
|
3445
3445
|
downloadUrl: string;
|
|
3446
3446
|
exportedAt: string;
|
|
3447
3447
|
}, {
|
|
3448
3448
|
id: string;
|
|
3449
|
-
fileName: string;
|
|
3450
3449
|
fileSize: number | null;
|
|
3450
|
+
fileName: string;
|
|
3451
3451
|
format: string;
|
|
3452
3452
|
machinery: string[] | null;
|
|
3453
3453
|
downloadUrl: string;
|
|
@@ -3304,33 +3304,33 @@ export declare const subscriptionsRouter: {
|
|
|
3304
3304
|
periodStart: z.ZodString;
|
|
3305
3305
|
periodEnd: z.ZodString;
|
|
3306
3306
|
}, "strip", z.ZodTypeAny, {
|
|
3307
|
+
limit: number | null;
|
|
3307
3308
|
count: number;
|
|
3308
3309
|
periodStart: string;
|
|
3309
3310
|
periodEnd: string;
|
|
3310
3311
|
resourceType: string;
|
|
3311
|
-
limit: number | null;
|
|
3312
3312
|
}, {
|
|
3313
|
+
limit: number | null;
|
|
3313
3314
|
count: number;
|
|
3314
3315
|
periodStart: string;
|
|
3315
3316
|
periodEnd: string;
|
|
3316
3317
|
resourceType: string;
|
|
3317
|
-
limit: number | null;
|
|
3318
3318
|
}>;
|
|
3319
3319
|
}, "strip", z.ZodTypeAny, {
|
|
3320
3320
|
data: {
|
|
3321
|
+
limit: number | null;
|
|
3321
3322
|
count: number;
|
|
3322
3323
|
periodStart: string;
|
|
3323
3324
|
periodEnd: string;
|
|
3324
3325
|
resourceType: string;
|
|
3325
|
-
limit: number | null;
|
|
3326
3326
|
};
|
|
3327
3327
|
}, {
|
|
3328
3328
|
data: {
|
|
3329
|
+
limit: number | null;
|
|
3329
3330
|
count: number;
|
|
3330
3331
|
periodStart: string;
|
|
3331
3332
|
periodEnd: string;
|
|
3332
3333
|
resourceType: string;
|
|
3333
|
-
limit: number | null;
|
|
3334
3334
|
};
|
|
3335
3335
|
}>;
|
|
3336
3336
|
404: z.ZodObject<{
|