@deepintel-ltd/farmpro-contracts 1.16.10 → 1.16.12
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/admin.routes.d.ts +1036 -0
- package/dist/routes/admin.routes.d.ts.map +1 -1
- package/dist/routes/admin.routes.js +29 -1
- package/dist/routes/agent-workflows.routes.d.ts +246 -246
- package/dist/routes/agents.routes.d.ts +16 -16
- package/dist/routes/fertigation.routes.d.ts +336 -336
- package/dist/routes/field-monitoring.routes.d.ts +8 -8
- package/dist/routes/field-observations.routes.d.ts +56 -56
- package/dist/routes/fields.routes.d.ts +63 -63
- package/dist/routes/health.routes.d.ts +66 -0
- package/dist/routes/health.routes.d.ts.map +1 -1
- package/dist/routes/livestock-groups.routes.d.ts +8 -8
- package/dist/routes/livestock.routes.d.ts +50 -50
- package/dist/routes/payments.routes.d.ts +20 -20
- package/dist/routes/pest-disease-risk.routes.d.ts +4 -4
- package/dist/routes/soil-tests.routes.d.ts +40 -40
- package/dist/schemas/admin.schemas.d.ts +267 -0
- package/dist/schemas/admin.schemas.d.ts.map +1 -1
- package/dist/schemas/admin.schemas.js +38 -0
- package/dist/schemas/agent-workflows.schemas.d.ts +206 -206
- package/dist/schemas/agents.schemas.d.ts +16 -16
- package/dist/schemas/fertigation.schemas.d.ts +128 -128
- package/dist/schemas/field-monitoring.schemas.d.ts +8 -8
- package/dist/schemas/field-observations.schemas.d.ts +46 -46
- package/dist/schemas/fields.schemas.d.ts +59 -59
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +8 -1
- package/dist/schemas/health.schemas.d.ts +33 -0
- package/dist/schemas/health.schemas.d.ts.map +1 -1
- package/dist/schemas/health.schemas.js +1 -0
- package/dist/schemas/livestock.schemas.d.ts +50 -50
- package/dist/schemas/payments.schemas.d.ts +20 -20
- package/dist/schemas/pest-disease-risk.schemas.d.ts +2 -2
- package/dist/schemas/soil-tests.schemas.d.ts +42 -42
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ export declare const paymentsRouter: {
|
|
|
25
25
|
'page[size]'?: number | undefined;
|
|
26
26
|
'filter[startDate]'?: string | undefined;
|
|
27
27
|
'filter[endDate]'?: string | undefined;
|
|
28
|
-
'filter[status]'?: "pending" | "
|
|
28
|
+
'filter[status]'?: "pending" | "failed" | "processing" | "completed" | "cancelled" | undefined;
|
|
29
29
|
'filter[crop]'?: string | undefined;
|
|
30
30
|
include?: string | undefined;
|
|
31
31
|
'filter[currency]'?: "NGN" | "USD" | undefined;
|
|
@@ -35,7 +35,7 @@ export declare const paymentsRouter: {
|
|
|
35
35
|
'page[size]'?: number | undefined;
|
|
36
36
|
'filter[startDate]'?: string | undefined;
|
|
37
37
|
'filter[endDate]'?: string | undefined;
|
|
38
|
-
'filter[status]'?: "pending" | "
|
|
38
|
+
'filter[status]'?: "pending" | "failed" | "processing" | "completed" | "cancelled" | undefined;
|
|
39
39
|
'filter[crop]'?: string | undefined;
|
|
40
40
|
include?: string | undefined;
|
|
41
41
|
'filter[currency]'?: "NGN" | "USD" | undefined;
|
|
@@ -65,7 +65,7 @@ export declare const paymentsRouter: {
|
|
|
65
65
|
createdAt: z.ZodString;
|
|
66
66
|
updatedAt: z.ZodString;
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
|
-
status: "pending" | "
|
|
68
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
69
69
|
createdAt: string;
|
|
70
70
|
updatedAt: string;
|
|
71
71
|
currency: "NGN" | "USD";
|
|
@@ -79,7 +79,7 @@ export declare const paymentsRouter: {
|
|
|
79
79
|
failureReason?: string | null | undefined;
|
|
80
80
|
paidAt?: string | null | undefined;
|
|
81
81
|
}, {
|
|
82
|
-
status: "pending" | "
|
|
82
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
83
83
|
createdAt: string;
|
|
84
84
|
updatedAt: string;
|
|
85
85
|
currency: "NGN" | "USD";
|
|
@@ -100,7 +100,7 @@ export declare const paymentsRouter: {
|
|
|
100
100
|
type: string;
|
|
101
101
|
id: string;
|
|
102
102
|
attributes: {
|
|
103
|
-
status: "pending" | "
|
|
103
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
104
104
|
createdAt: string;
|
|
105
105
|
updatedAt: string;
|
|
106
106
|
currency: "NGN" | "USD";
|
|
@@ -121,7 +121,7 @@ export declare const paymentsRouter: {
|
|
|
121
121
|
type: string;
|
|
122
122
|
id: string;
|
|
123
123
|
attributes: {
|
|
124
|
-
status: "pending" | "
|
|
124
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
125
125
|
createdAt: string;
|
|
126
126
|
updatedAt: string;
|
|
127
127
|
currency: "NGN" | "USD";
|
|
@@ -168,7 +168,7 @@ export declare const paymentsRouter: {
|
|
|
168
168
|
type: string;
|
|
169
169
|
id: string;
|
|
170
170
|
attributes: {
|
|
171
|
-
status: "pending" | "
|
|
171
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
172
172
|
createdAt: string;
|
|
173
173
|
updatedAt: string;
|
|
174
174
|
currency: "NGN" | "USD";
|
|
@@ -201,7 +201,7 @@ export declare const paymentsRouter: {
|
|
|
201
201
|
type: string;
|
|
202
202
|
id: string;
|
|
203
203
|
attributes: {
|
|
204
|
-
status: "pending" | "
|
|
204
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
205
205
|
createdAt: string;
|
|
206
206
|
updatedAt: string;
|
|
207
207
|
currency: "NGN" | "USD";
|
|
@@ -455,7 +455,7 @@ export declare const paymentsRouter: {
|
|
|
455
455
|
createdAt: z.ZodString;
|
|
456
456
|
updatedAt: z.ZodString;
|
|
457
457
|
}, "strip", z.ZodTypeAny, {
|
|
458
|
-
status: "pending" | "
|
|
458
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
459
459
|
createdAt: string;
|
|
460
460
|
updatedAt: string;
|
|
461
461
|
currency: "NGN" | "USD";
|
|
@@ -469,7 +469,7 @@ export declare const paymentsRouter: {
|
|
|
469
469
|
failureReason?: string | null | undefined;
|
|
470
470
|
paidAt?: string | null | undefined;
|
|
471
471
|
}, {
|
|
472
|
-
status: "pending" | "
|
|
472
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
473
473
|
createdAt: string;
|
|
474
474
|
updatedAt: string;
|
|
475
475
|
currency: "NGN" | "USD";
|
|
@@ -490,7 +490,7 @@ export declare const paymentsRouter: {
|
|
|
490
490
|
type: string;
|
|
491
491
|
id: string;
|
|
492
492
|
attributes: {
|
|
493
|
-
status: "pending" | "
|
|
493
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
494
494
|
createdAt: string;
|
|
495
495
|
updatedAt: string;
|
|
496
496
|
currency: "NGN" | "USD";
|
|
@@ -511,7 +511,7 @@ export declare const paymentsRouter: {
|
|
|
511
511
|
type: string;
|
|
512
512
|
id: string;
|
|
513
513
|
attributes: {
|
|
514
|
-
status: "pending" | "
|
|
514
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
515
515
|
createdAt: string;
|
|
516
516
|
updatedAt: string;
|
|
517
517
|
currency: "NGN" | "USD";
|
|
@@ -558,7 +558,7 @@ export declare const paymentsRouter: {
|
|
|
558
558
|
type: string;
|
|
559
559
|
id: string;
|
|
560
560
|
attributes: {
|
|
561
|
-
status: "pending" | "
|
|
561
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
562
562
|
createdAt: string;
|
|
563
563
|
updatedAt: string;
|
|
564
564
|
currency: "NGN" | "USD";
|
|
@@ -591,7 +591,7 @@ export declare const paymentsRouter: {
|
|
|
591
591
|
type: string;
|
|
592
592
|
id: string;
|
|
593
593
|
attributes: {
|
|
594
|
-
status: "pending" | "
|
|
594
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
595
595
|
createdAt: string;
|
|
596
596
|
updatedAt: string;
|
|
597
597
|
currency: "NGN" | "USD";
|
|
@@ -1294,7 +1294,7 @@ export declare const paymentsRouter: {
|
|
|
1294
1294
|
createdAt: z.ZodString;
|
|
1295
1295
|
updatedAt: z.ZodString;
|
|
1296
1296
|
}, "strip", z.ZodTypeAny, {
|
|
1297
|
-
status: "pending" | "
|
|
1297
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1298
1298
|
createdAt: string;
|
|
1299
1299
|
updatedAt: string;
|
|
1300
1300
|
currency: "NGN" | "USD";
|
|
@@ -1308,7 +1308,7 @@ export declare const paymentsRouter: {
|
|
|
1308
1308
|
failureReason?: string | null | undefined;
|
|
1309
1309
|
paidAt?: string | null | undefined;
|
|
1310
1310
|
}, {
|
|
1311
|
-
status: "pending" | "
|
|
1311
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1312
1312
|
createdAt: string;
|
|
1313
1313
|
updatedAt: string;
|
|
1314
1314
|
currency: "NGN" | "USD";
|
|
@@ -1329,7 +1329,7 @@ export declare const paymentsRouter: {
|
|
|
1329
1329
|
type: string;
|
|
1330
1330
|
id: string;
|
|
1331
1331
|
attributes: {
|
|
1332
|
-
status: "pending" | "
|
|
1332
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1333
1333
|
createdAt: string;
|
|
1334
1334
|
updatedAt: string;
|
|
1335
1335
|
currency: "NGN" | "USD";
|
|
@@ -1350,7 +1350,7 @@ export declare const paymentsRouter: {
|
|
|
1350
1350
|
type: string;
|
|
1351
1351
|
id: string;
|
|
1352
1352
|
attributes: {
|
|
1353
|
-
status: "pending" | "
|
|
1353
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1354
1354
|
createdAt: string;
|
|
1355
1355
|
updatedAt: string;
|
|
1356
1356
|
currency: "NGN" | "USD";
|
|
@@ -1397,7 +1397,7 @@ export declare const paymentsRouter: {
|
|
|
1397
1397
|
type: string;
|
|
1398
1398
|
id: string;
|
|
1399
1399
|
attributes: {
|
|
1400
|
-
status: "pending" | "
|
|
1400
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1401
1401
|
createdAt: string;
|
|
1402
1402
|
updatedAt: string;
|
|
1403
1403
|
currency: "NGN" | "USD";
|
|
@@ -1430,7 +1430,7 @@ export declare const paymentsRouter: {
|
|
|
1430
1430
|
type: string;
|
|
1431
1431
|
id: string;
|
|
1432
1432
|
attributes: {
|
|
1433
|
-
status: "pending" | "
|
|
1433
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
1434
1434
|
createdAt: string;
|
|
1435
1435
|
updatedAt: string;
|
|
1436
1436
|
currency: "NGN" | "USD";
|
|
@@ -1424,7 +1424,7 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1424
1424
|
}[];
|
|
1425
1425
|
}>>;
|
|
1426
1426
|
}, "strip", z.ZodTypeAny, {
|
|
1427
|
-
status: "
|
|
1427
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
1428
1428
|
message: string;
|
|
1429
1429
|
fieldId: string;
|
|
1430
1430
|
analysisId: string | null;
|
|
@@ -1528,7 +1528,7 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
1528
1528
|
}[];
|
|
1529
1529
|
} | null;
|
|
1530
1530
|
}, {
|
|
1531
|
-
status: "
|
|
1531
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
1532
1532
|
message: string;
|
|
1533
1533
|
fieldId: string;
|
|
1534
1534
|
analysisId: string | null;
|
|
@@ -2177,7 +2177,7 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2177
2177
|
}[];
|
|
2178
2178
|
}>>;
|
|
2179
2179
|
}, "strip", z.ZodTypeAny, {
|
|
2180
|
-
status: "
|
|
2180
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
2181
2181
|
message: string;
|
|
2182
2182
|
fieldId: string;
|
|
2183
2183
|
analysisId: string | null;
|
|
@@ -2281,7 +2281,7 @@ export declare const pestDiseaseRiskRouter: {
|
|
|
2281
2281
|
}[];
|
|
2282
2282
|
} | null;
|
|
2283
2283
|
}, {
|
|
2284
|
-
status: "
|
|
2284
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
2285
2285
|
message: string;
|
|
2286
2286
|
fieldId: string;
|
|
2287
2287
|
analysisId: string | null;
|
|
@@ -77,16 +77,16 @@ export declare const soilTestsRouter: {
|
|
|
77
77
|
reason: z.ZodString;
|
|
78
78
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
|
+
reason: string;
|
|
80
81
|
quantity: number;
|
|
81
82
|
unit: string;
|
|
82
83
|
inventoryItemId: string;
|
|
83
|
-
reason: string;
|
|
84
84
|
estimatedCost?: number | undefined;
|
|
85
85
|
}, {
|
|
86
|
+
reason: string;
|
|
86
87
|
quantity: number;
|
|
87
88
|
unit: string;
|
|
88
89
|
inventoryItemId: string;
|
|
89
|
-
reason: string;
|
|
90
90
|
estimatedCost?: number | undefined;
|
|
91
91
|
}>, "many">>;
|
|
92
92
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -117,10 +117,10 @@ export declare const soilTestsRouter: {
|
|
|
117
117
|
recommendations?: string | null | undefined;
|
|
118
118
|
fieldName?: string | undefined;
|
|
119
119
|
recommendedFertilizers?: {
|
|
120
|
+
reason: string;
|
|
120
121
|
quantity: number;
|
|
121
122
|
unit: string;
|
|
122
123
|
inventoryItemId: string;
|
|
123
|
-
reason: string;
|
|
124
124
|
estimatedCost?: number | undefined;
|
|
125
125
|
}[] | undefined;
|
|
126
126
|
}, {
|
|
@@ -146,10 +146,10 @@ export declare const soilTestsRouter: {
|
|
|
146
146
|
recommendations?: string | null | undefined;
|
|
147
147
|
fieldName?: string | undefined;
|
|
148
148
|
recommendedFertilizers?: {
|
|
149
|
+
reason: string;
|
|
149
150
|
quantity: number;
|
|
150
151
|
unit: string;
|
|
151
152
|
inventoryItemId: string;
|
|
152
|
-
reason: string;
|
|
153
153
|
estimatedCost?: number | undefined;
|
|
154
154
|
}[] | undefined;
|
|
155
155
|
}>;
|
|
@@ -182,10 +182,10 @@ export declare const soilTestsRouter: {
|
|
|
182
182
|
recommendations?: string | null | undefined;
|
|
183
183
|
fieldName?: string | undefined;
|
|
184
184
|
recommendedFertilizers?: {
|
|
185
|
+
reason: string;
|
|
185
186
|
quantity: number;
|
|
186
187
|
unit: string;
|
|
187
188
|
inventoryItemId: string;
|
|
188
|
-
reason: string;
|
|
189
189
|
estimatedCost?: number | undefined;
|
|
190
190
|
}[] | undefined;
|
|
191
191
|
};
|
|
@@ -218,10 +218,10 @@ export declare const soilTestsRouter: {
|
|
|
218
218
|
recommendations?: string | null | undefined;
|
|
219
219
|
fieldName?: string | undefined;
|
|
220
220
|
recommendedFertilizers?: {
|
|
221
|
+
reason: string;
|
|
221
222
|
quantity: number;
|
|
222
223
|
unit: string;
|
|
223
224
|
inventoryItemId: string;
|
|
224
|
-
reason: string;
|
|
225
225
|
estimatedCost?: number | undefined;
|
|
226
226
|
}[] | undefined;
|
|
227
227
|
};
|
|
@@ -280,10 +280,10 @@ export declare const soilTestsRouter: {
|
|
|
280
280
|
recommendations?: string | null | undefined;
|
|
281
281
|
fieldName?: string | undefined;
|
|
282
282
|
recommendedFertilizers?: {
|
|
283
|
+
reason: string;
|
|
283
284
|
quantity: number;
|
|
284
285
|
unit: string;
|
|
285
286
|
inventoryItemId: string;
|
|
286
|
-
reason: string;
|
|
287
287
|
estimatedCost?: number | undefined;
|
|
288
288
|
}[] | undefined;
|
|
289
289
|
};
|
|
@@ -328,10 +328,10 @@ export declare const soilTestsRouter: {
|
|
|
328
328
|
recommendations?: string | null | undefined;
|
|
329
329
|
fieldName?: string | undefined;
|
|
330
330
|
recommendedFertilizers?: {
|
|
331
|
+
reason: string;
|
|
331
332
|
quantity: number;
|
|
332
333
|
unit: string;
|
|
333
334
|
inventoryItemId: string;
|
|
334
|
-
reason: string;
|
|
335
335
|
estimatedCost?: number | undefined;
|
|
336
336
|
}[] | undefined;
|
|
337
337
|
};
|
|
@@ -715,16 +715,16 @@ export declare const soilTestsRouter: {
|
|
|
715
715
|
reason: z.ZodString;
|
|
716
716
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
|
718
|
+
reason: string;
|
|
718
719
|
quantity: number;
|
|
719
720
|
unit: string;
|
|
720
721
|
inventoryItemId: string;
|
|
721
|
-
reason: string;
|
|
722
722
|
estimatedCost?: number | undefined;
|
|
723
723
|
}, {
|
|
724
|
+
reason: string;
|
|
724
725
|
quantity: number;
|
|
725
726
|
unit: string;
|
|
726
727
|
inventoryItemId: string;
|
|
727
|
-
reason: string;
|
|
728
728
|
estimatedCost?: number | undefined;
|
|
729
729
|
}>, "many">>;
|
|
730
730
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -755,10 +755,10 @@ export declare const soilTestsRouter: {
|
|
|
755
755
|
recommendations?: string | null | undefined;
|
|
756
756
|
fieldName?: string | undefined;
|
|
757
757
|
recommendedFertilizers?: {
|
|
758
|
+
reason: string;
|
|
758
759
|
quantity: number;
|
|
759
760
|
unit: string;
|
|
760
761
|
inventoryItemId: string;
|
|
761
|
-
reason: string;
|
|
762
762
|
estimatedCost?: number | undefined;
|
|
763
763
|
}[] | undefined;
|
|
764
764
|
}, {
|
|
@@ -784,10 +784,10 @@ export declare const soilTestsRouter: {
|
|
|
784
784
|
recommendations?: string | null | undefined;
|
|
785
785
|
fieldName?: string | undefined;
|
|
786
786
|
recommendedFertilizers?: {
|
|
787
|
+
reason: string;
|
|
787
788
|
quantity: number;
|
|
788
789
|
unit: string;
|
|
789
790
|
inventoryItemId: string;
|
|
790
|
-
reason: string;
|
|
791
791
|
estimatedCost?: number | undefined;
|
|
792
792
|
}[] | undefined;
|
|
793
793
|
}>;
|
|
@@ -820,10 +820,10 @@ export declare const soilTestsRouter: {
|
|
|
820
820
|
recommendations?: string | null | undefined;
|
|
821
821
|
fieldName?: string | undefined;
|
|
822
822
|
recommendedFertilizers?: {
|
|
823
|
+
reason: string;
|
|
823
824
|
quantity: number;
|
|
824
825
|
unit: string;
|
|
825
826
|
inventoryItemId: string;
|
|
826
|
-
reason: string;
|
|
827
827
|
estimatedCost?: number | undefined;
|
|
828
828
|
}[] | undefined;
|
|
829
829
|
};
|
|
@@ -856,10 +856,10 @@ export declare const soilTestsRouter: {
|
|
|
856
856
|
recommendations?: string | null | undefined;
|
|
857
857
|
fieldName?: string | undefined;
|
|
858
858
|
recommendedFertilizers?: {
|
|
859
|
+
reason: string;
|
|
859
860
|
quantity: number;
|
|
860
861
|
unit: string;
|
|
861
862
|
inventoryItemId: string;
|
|
862
|
-
reason: string;
|
|
863
863
|
estimatedCost?: number | undefined;
|
|
864
864
|
}[] | undefined;
|
|
865
865
|
};
|
|
@@ -918,10 +918,10 @@ export declare const soilTestsRouter: {
|
|
|
918
918
|
recommendations?: string | null | undefined;
|
|
919
919
|
fieldName?: string | undefined;
|
|
920
920
|
recommendedFertilizers?: {
|
|
921
|
+
reason: string;
|
|
921
922
|
quantity: number;
|
|
922
923
|
unit: string;
|
|
923
924
|
inventoryItemId: string;
|
|
924
|
-
reason: string;
|
|
925
925
|
estimatedCost?: number | undefined;
|
|
926
926
|
}[] | undefined;
|
|
927
927
|
};
|
|
@@ -966,10 +966,10 @@ export declare const soilTestsRouter: {
|
|
|
966
966
|
recommendations?: string | null | undefined;
|
|
967
967
|
fieldName?: string | undefined;
|
|
968
968
|
recommendedFertilizers?: {
|
|
969
|
+
reason: string;
|
|
969
970
|
quantity: number;
|
|
970
971
|
unit: string;
|
|
971
972
|
inventoryItemId: string;
|
|
972
|
-
reason: string;
|
|
973
973
|
estimatedCost?: number | undefined;
|
|
974
974
|
}[] | undefined;
|
|
975
975
|
};
|
|
@@ -1402,16 +1402,16 @@ export declare const soilTestsRouter: {
|
|
|
1402
1402
|
reason: z.ZodString;
|
|
1403
1403
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
1404
1404
|
}, "strip", z.ZodTypeAny, {
|
|
1405
|
+
reason: string;
|
|
1405
1406
|
quantity: number;
|
|
1406
1407
|
unit: string;
|
|
1407
1408
|
inventoryItemId: string;
|
|
1408
|
-
reason: string;
|
|
1409
1409
|
estimatedCost?: number | undefined;
|
|
1410
1410
|
}, {
|
|
1411
|
+
reason: string;
|
|
1411
1412
|
quantity: number;
|
|
1412
1413
|
unit: string;
|
|
1413
1414
|
inventoryItemId: string;
|
|
1414
|
-
reason: string;
|
|
1415
1415
|
estimatedCost?: number | undefined;
|
|
1416
1416
|
}>, "many">>;
|
|
1417
1417
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1442,10 +1442,10 @@ export declare const soilTestsRouter: {
|
|
|
1442
1442
|
recommendations?: string | null | undefined;
|
|
1443
1443
|
fieldName?: string | undefined;
|
|
1444
1444
|
recommendedFertilizers?: {
|
|
1445
|
+
reason: string;
|
|
1445
1446
|
quantity: number;
|
|
1446
1447
|
unit: string;
|
|
1447
1448
|
inventoryItemId: string;
|
|
1448
|
-
reason: string;
|
|
1449
1449
|
estimatedCost?: number | undefined;
|
|
1450
1450
|
}[] | undefined;
|
|
1451
1451
|
}, {
|
|
@@ -1471,10 +1471,10 @@ export declare const soilTestsRouter: {
|
|
|
1471
1471
|
recommendations?: string | null | undefined;
|
|
1472
1472
|
fieldName?: string | undefined;
|
|
1473
1473
|
recommendedFertilizers?: {
|
|
1474
|
+
reason: string;
|
|
1474
1475
|
quantity: number;
|
|
1475
1476
|
unit: string;
|
|
1476
1477
|
inventoryItemId: string;
|
|
1477
|
-
reason: string;
|
|
1478
1478
|
estimatedCost?: number | undefined;
|
|
1479
1479
|
}[] | undefined;
|
|
1480
1480
|
}>;
|
|
@@ -1565,10 +1565,10 @@ export declare const soilTestsRouter: {
|
|
|
1565
1565
|
recommendations?: string | null | undefined;
|
|
1566
1566
|
fieldName?: string | undefined;
|
|
1567
1567
|
recommendedFertilizers?: {
|
|
1568
|
+
reason: string;
|
|
1568
1569
|
quantity: number;
|
|
1569
1570
|
unit: string;
|
|
1570
1571
|
inventoryItemId: string;
|
|
1571
|
-
reason: string;
|
|
1572
1572
|
estimatedCost?: number | undefined;
|
|
1573
1573
|
}[] | undefined;
|
|
1574
1574
|
};
|
|
@@ -1612,10 +1612,10 @@ export declare const soilTestsRouter: {
|
|
|
1612
1612
|
recommendations?: string | null | undefined;
|
|
1613
1613
|
fieldName?: string | undefined;
|
|
1614
1614
|
recommendedFertilizers?: {
|
|
1615
|
+
reason: string;
|
|
1615
1616
|
quantity: number;
|
|
1616
1617
|
unit: string;
|
|
1617
1618
|
inventoryItemId: string;
|
|
1618
|
-
reason: string;
|
|
1619
1619
|
estimatedCost?: number | undefined;
|
|
1620
1620
|
}[] | undefined;
|
|
1621
1621
|
};
|
|
@@ -1685,10 +1685,10 @@ export declare const soilTestsRouter: {
|
|
|
1685
1685
|
recommendations?: string | null | undefined;
|
|
1686
1686
|
fieldName?: string | undefined;
|
|
1687
1687
|
recommendedFertilizers?: {
|
|
1688
|
+
reason: string;
|
|
1688
1689
|
quantity: number;
|
|
1689
1690
|
unit: string;
|
|
1690
1691
|
inventoryItemId: string;
|
|
1691
|
-
reason: string;
|
|
1692
1692
|
estimatedCost?: number | undefined;
|
|
1693
1693
|
}[] | undefined;
|
|
1694
1694
|
};
|
|
@@ -1744,10 +1744,10 @@ export declare const soilTestsRouter: {
|
|
|
1744
1744
|
recommendations?: string | null | undefined;
|
|
1745
1745
|
fieldName?: string | undefined;
|
|
1746
1746
|
recommendedFertilizers?: {
|
|
1747
|
+
reason: string;
|
|
1747
1748
|
quantity: number;
|
|
1748
1749
|
unit: string;
|
|
1749
1750
|
inventoryItemId: string;
|
|
1750
|
-
reason: string;
|
|
1751
1751
|
estimatedCost?: number | undefined;
|
|
1752
1752
|
}[] | undefined;
|
|
1753
1753
|
};
|
|
@@ -2151,16 +2151,16 @@ export declare const soilTestsRouter: {
|
|
|
2151
2151
|
reason: z.ZodString;
|
|
2152
2152
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
2153
2153
|
}, "strip", z.ZodTypeAny, {
|
|
2154
|
+
reason: string;
|
|
2154
2155
|
quantity: number;
|
|
2155
2156
|
unit: string;
|
|
2156
2157
|
inventoryItemId: string;
|
|
2157
|
-
reason: string;
|
|
2158
2158
|
estimatedCost?: number | undefined;
|
|
2159
2159
|
}, {
|
|
2160
|
+
reason: string;
|
|
2160
2161
|
quantity: number;
|
|
2161
2162
|
unit: string;
|
|
2162
2163
|
inventoryItemId: string;
|
|
2163
|
-
reason: string;
|
|
2164
2164
|
estimatedCost?: number | undefined;
|
|
2165
2165
|
}>, "many">>;
|
|
2166
2166
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2191,10 +2191,10 @@ export declare const soilTestsRouter: {
|
|
|
2191
2191
|
recommendations?: string | null | undefined;
|
|
2192
2192
|
fieldName?: string | undefined;
|
|
2193
2193
|
recommendedFertilizers?: {
|
|
2194
|
+
reason: string;
|
|
2194
2195
|
quantity: number;
|
|
2195
2196
|
unit: string;
|
|
2196
2197
|
inventoryItemId: string;
|
|
2197
|
-
reason: string;
|
|
2198
2198
|
estimatedCost?: number | undefined;
|
|
2199
2199
|
}[] | undefined;
|
|
2200
2200
|
}, {
|
|
@@ -2220,10 +2220,10 @@ export declare const soilTestsRouter: {
|
|
|
2220
2220
|
recommendations?: string | null | undefined;
|
|
2221
2221
|
fieldName?: string | undefined;
|
|
2222
2222
|
recommendedFertilizers?: {
|
|
2223
|
+
reason: string;
|
|
2223
2224
|
quantity: number;
|
|
2224
2225
|
unit: string;
|
|
2225
2226
|
inventoryItemId: string;
|
|
2226
|
-
reason: string;
|
|
2227
2227
|
estimatedCost?: number | undefined;
|
|
2228
2228
|
}[] | undefined;
|
|
2229
2229
|
}>;
|
|
@@ -2256,10 +2256,10 @@ export declare const soilTestsRouter: {
|
|
|
2256
2256
|
recommendations?: string | null | undefined;
|
|
2257
2257
|
fieldName?: string | undefined;
|
|
2258
2258
|
recommendedFertilizers?: {
|
|
2259
|
+
reason: string;
|
|
2259
2260
|
quantity: number;
|
|
2260
2261
|
unit: string;
|
|
2261
2262
|
inventoryItemId: string;
|
|
2262
|
-
reason: string;
|
|
2263
2263
|
estimatedCost?: number | undefined;
|
|
2264
2264
|
}[] | undefined;
|
|
2265
2265
|
};
|
|
@@ -2292,10 +2292,10 @@ export declare const soilTestsRouter: {
|
|
|
2292
2292
|
recommendations?: string | null | undefined;
|
|
2293
2293
|
fieldName?: string | undefined;
|
|
2294
2294
|
recommendedFertilizers?: {
|
|
2295
|
+
reason: string;
|
|
2295
2296
|
quantity: number;
|
|
2296
2297
|
unit: string;
|
|
2297
2298
|
inventoryItemId: string;
|
|
2298
|
-
reason: string;
|
|
2299
2299
|
estimatedCost?: number | undefined;
|
|
2300
2300
|
}[] | undefined;
|
|
2301
2301
|
};
|
|
@@ -2354,10 +2354,10 @@ export declare const soilTestsRouter: {
|
|
|
2354
2354
|
recommendations?: string | null | undefined;
|
|
2355
2355
|
fieldName?: string | undefined;
|
|
2356
2356
|
recommendedFertilizers?: {
|
|
2357
|
+
reason: string;
|
|
2357
2358
|
quantity: number;
|
|
2358
2359
|
unit: string;
|
|
2359
2360
|
inventoryItemId: string;
|
|
2360
|
-
reason: string;
|
|
2361
2361
|
estimatedCost?: number | undefined;
|
|
2362
2362
|
}[] | undefined;
|
|
2363
2363
|
};
|
|
@@ -2402,10 +2402,10 @@ export declare const soilTestsRouter: {
|
|
|
2402
2402
|
recommendations?: string | null | undefined;
|
|
2403
2403
|
fieldName?: string | undefined;
|
|
2404
2404
|
recommendedFertilizers?: {
|
|
2405
|
+
reason: string;
|
|
2405
2406
|
quantity: number;
|
|
2406
2407
|
unit: string;
|
|
2407
2408
|
inventoryItemId: string;
|
|
2408
|
-
reason: string;
|
|
2409
2409
|
estimatedCost?: number | undefined;
|
|
2410
2410
|
}[] | undefined;
|
|
2411
2411
|
};
|
|
@@ -3054,16 +3054,16 @@ export declare const soilTestsRouter: {
|
|
|
3054
3054
|
reason: z.ZodString;
|
|
3055
3055
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
3056
3056
|
}, "strip", z.ZodTypeAny, {
|
|
3057
|
+
reason: string;
|
|
3057
3058
|
quantity: number;
|
|
3058
3059
|
unit: string;
|
|
3059
3060
|
inventoryItemId: string;
|
|
3060
|
-
reason: string;
|
|
3061
3061
|
estimatedCost?: number | undefined;
|
|
3062
3062
|
}, {
|
|
3063
|
+
reason: string;
|
|
3063
3064
|
quantity: number;
|
|
3064
3065
|
unit: string;
|
|
3065
3066
|
inventoryItemId: string;
|
|
3066
|
-
reason: string;
|
|
3067
3067
|
estimatedCost?: number | undefined;
|
|
3068
3068
|
}>, "many">>;
|
|
3069
3069
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3094,10 +3094,10 @@ export declare const soilTestsRouter: {
|
|
|
3094
3094
|
recommendations?: string | null | undefined;
|
|
3095
3095
|
fieldName?: string | undefined;
|
|
3096
3096
|
recommendedFertilizers?: {
|
|
3097
|
+
reason: string;
|
|
3097
3098
|
quantity: number;
|
|
3098
3099
|
unit: string;
|
|
3099
3100
|
inventoryItemId: string;
|
|
3100
|
-
reason: string;
|
|
3101
3101
|
estimatedCost?: number | undefined;
|
|
3102
3102
|
}[] | undefined;
|
|
3103
3103
|
}, {
|
|
@@ -3123,10 +3123,10 @@ export declare const soilTestsRouter: {
|
|
|
3123
3123
|
recommendations?: string | null | undefined;
|
|
3124
3124
|
fieldName?: string | undefined;
|
|
3125
3125
|
recommendedFertilizers?: {
|
|
3126
|
+
reason: string;
|
|
3126
3127
|
quantity: number;
|
|
3127
3128
|
unit: string;
|
|
3128
3129
|
inventoryItemId: string;
|
|
3129
|
-
reason: string;
|
|
3130
3130
|
estimatedCost?: number | undefined;
|
|
3131
3131
|
}[] | undefined;
|
|
3132
3132
|
}>;
|
|
@@ -3159,10 +3159,10 @@ export declare const soilTestsRouter: {
|
|
|
3159
3159
|
recommendations?: string | null | undefined;
|
|
3160
3160
|
fieldName?: string | undefined;
|
|
3161
3161
|
recommendedFertilizers?: {
|
|
3162
|
+
reason: string;
|
|
3162
3163
|
quantity: number;
|
|
3163
3164
|
unit: string;
|
|
3164
3165
|
inventoryItemId: string;
|
|
3165
|
-
reason: string;
|
|
3166
3166
|
estimatedCost?: number | undefined;
|
|
3167
3167
|
}[] | undefined;
|
|
3168
3168
|
};
|
|
@@ -3195,10 +3195,10 @@ export declare const soilTestsRouter: {
|
|
|
3195
3195
|
recommendations?: string | null | undefined;
|
|
3196
3196
|
fieldName?: string | undefined;
|
|
3197
3197
|
recommendedFertilizers?: {
|
|
3198
|
+
reason: string;
|
|
3198
3199
|
quantity: number;
|
|
3199
3200
|
unit: string;
|
|
3200
3201
|
inventoryItemId: string;
|
|
3201
|
-
reason: string;
|
|
3202
3202
|
estimatedCost?: number | undefined;
|
|
3203
3203
|
}[] | undefined;
|
|
3204
3204
|
};
|
|
@@ -3257,10 +3257,10 @@ export declare const soilTestsRouter: {
|
|
|
3257
3257
|
recommendations?: string | null | undefined;
|
|
3258
3258
|
fieldName?: string | undefined;
|
|
3259
3259
|
recommendedFertilizers?: {
|
|
3260
|
+
reason: string;
|
|
3260
3261
|
quantity: number;
|
|
3261
3262
|
unit: string;
|
|
3262
3263
|
inventoryItemId: string;
|
|
3263
|
-
reason: string;
|
|
3264
3264
|
estimatedCost?: number | undefined;
|
|
3265
3265
|
}[] | undefined;
|
|
3266
3266
|
};
|
|
@@ -3305,10 +3305,10 @@ export declare const soilTestsRouter: {
|
|
|
3305
3305
|
recommendations?: string | null | undefined;
|
|
3306
3306
|
fieldName?: string | undefined;
|
|
3307
3307
|
recommendedFertilizers?: {
|
|
3308
|
+
reason: string;
|
|
3308
3309
|
quantity: number;
|
|
3309
3310
|
unit: string;
|
|
3310
3311
|
inventoryItemId: string;
|
|
3311
|
-
reason: string;
|
|
3312
3312
|
estimatedCost?: number | undefined;
|
|
3313
3313
|
}[] | undefined;
|
|
3314
3314
|
};
|