@deepintel-ltd/farmpro-contracts 1.16.9 → 1.16.11
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 +80 -80
- package/dist/routes/field-monitoring.routes.d.ts +8 -8
- package/dist/routes/field-observations.routes.d.ts +28 -28
- 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 +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +8 -8
- package/dist/schemas/field-observations.schemas.d.ts +20 -20
- package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.js +3 -2
- 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/monitoring-visualization.schemas.js +4 -4
- 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
|
@@ -22,7 +22,7 @@ export declare const paymentAttributesSchema: z.ZodObject<{
|
|
|
22
22
|
createdAt: z.ZodString;
|
|
23
23
|
updatedAt: z.ZodString;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
status: "pending" | "
|
|
25
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
26
26
|
createdAt: string;
|
|
27
27
|
updatedAt: string;
|
|
28
28
|
currency: "NGN" | "USD";
|
|
@@ -36,7 +36,7 @@ export declare const paymentAttributesSchema: z.ZodObject<{
|
|
|
36
36
|
failureReason?: string | null | undefined;
|
|
37
37
|
paidAt?: string | null | undefined;
|
|
38
38
|
}, {
|
|
39
|
-
status: "pending" | "
|
|
39
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
40
40
|
createdAt: string;
|
|
41
41
|
updatedAt: string;
|
|
42
42
|
currency: "NGN" | "USD";
|
|
@@ -77,11 +77,11 @@ export declare const updatePaymentAttributesSchema: z.ZodObject<{
|
|
|
77
77
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
78
78
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
|
-
status?: "pending" | "
|
|
80
|
+
status?: "pending" | "failed" | "processing" | "completed" | "cancelled" | undefined;
|
|
81
81
|
metadata?: Record<string, unknown> | undefined;
|
|
82
82
|
failureReason?: string | undefined;
|
|
83
83
|
}, {
|
|
84
|
-
status?: "pending" | "
|
|
84
|
+
status?: "pending" | "failed" | "processing" | "completed" | "cancelled" | undefined;
|
|
85
85
|
metadata?: Record<string, unknown> | undefined;
|
|
86
86
|
failureReason?: string | undefined;
|
|
87
87
|
}>;
|
|
@@ -104,7 +104,7 @@ export declare const paymentResourceSchema: z.ZodObject<{
|
|
|
104
104
|
createdAt: z.ZodString;
|
|
105
105
|
updatedAt: z.ZodString;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
|
-
status: "pending" | "
|
|
107
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
108
108
|
createdAt: string;
|
|
109
109
|
updatedAt: string;
|
|
110
110
|
currency: "NGN" | "USD";
|
|
@@ -118,7 +118,7 @@ export declare const paymentResourceSchema: z.ZodObject<{
|
|
|
118
118
|
failureReason?: string | null | undefined;
|
|
119
119
|
paidAt?: string | null | undefined;
|
|
120
120
|
}, {
|
|
121
|
-
status: "pending" | "
|
|
121
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
122
122
|
createdAt: string;
|
|
123
123
|
updatedAt: string;
|
|
124
124
|
currency: "NGN" | "USD";
|
|
@@ -139,7 +139,7 @@ export declare const paymentResourceSchema: z.ZodObject<{
|
|
|
139
139
|
type: string;
|
|
140
140
|
id: string;
|
|
141
141
|
attributes: {
|
|
142
|
-
status: "pending" | "
|
|
142
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
143
143
|
createdAt: string;
|
|
144
144
|
updatedAt: string;
|
|
145
145
|
currency: "NGN" | "USD";
|
|
@@ -160,7 +160,7 @@ export declare const paymentResourceSchema: z.ZodObject<{
|
|
|
160
160
|
type: string;
|
|
161
161
|
id: string;
|
|
162
162
|
attributes: {
|
|
163
|
-
status: "pending" | "
|
|
163
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
164
164
|
createdAt: string;
|
|
165
165
|
updatedAt: string;
|
|
166
166
|
currency: "NGN" | "USD";
|
|
@@ -198,7 +198,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
198
198
|
createdAt: z.ZodString;
|
|
199
199
|
updatedAt: z.ZodString;
|
|
200
200
|
}, "strip", z.ZodTypeAny, {
|
|
201
|
-
status: "pending" | "
|
|
201
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
202
202
|
createdAt: string;
|
|
203
203
|
updatedAt: string;
|
|
204
204
|
currency: "NGN" | "USD";
|
|
@@ -212,7 +212,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
212
212
|
failureReason?: string | null | undefined;
|
|
213
213
|
paidAt?: string | null | undefined;
|
|
214
214
|
}, {
|
|
215
|
-
status: "pending" | "
|
|
215
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
216
216
|
createdAt: string;
|
|
217
217
|
updatedAt: string;
|
|
218
218
|
currency: "NGN" | "USD";
|
|
@@ -233,7 +233,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
233
233
|
type: string;
|
|
234
234
|
id: string;
|
|
235
235
|
attributes: {
|
|
236
|
-
status: "pending" | "
|
|
236
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
237
237
|
createdAt: string;
|
|
238
238
|
updatedAt: string;
|
|
239
239
|
currency: "NGN" | "USD";
|
|
@@ -254,7 +254,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
254
254
|
type: string;
|
|
255
255
|
id: string;
|
|
256
256
|
attributes: {
|
|
257
|
-
status: "pending" | "
|
|
257
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
258
258
|
createdAt: string;
|
|
259
259
|
updatedAt: string;
|
|
260
260
|
currency: "NGN" | "USD";
|
|
@@ -301,7 +301,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
301
301
|
type: string;
|
|
302
302
|
id: string;
|
|
303
303
|
attributes: {
|
|
304
|
-
status: "pending" | "
|
|
304
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
305
305
|
createdAt: string;
|
|
306
306
|
updatedAt: string;
|
|
307
307
|
currency: "NGN" | "USD";
|
|
@@ -334,7 +334,7 @@ export declare const paymentResponseSchema: z.ZodObject<{
|
|
|
334
334
|
type: string;
|
|
335
335
|
id: string;
|
|
336
336
|
attributes: {
|
|
337
|
-
status: "pending" | "
|
|
337
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
338
338
|
createdAt: string;
|
|
339
339
|
updatedAt: string;
|
|
340
340
|
currency: "NGN" | "USD";
|
|
@@ -383,7 +383,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
383
383
|
createdAt: z.ZodString;
|
|
384
384
|
updatedAt: z.ZodString;
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
|
-
status: "pending" | "
|
|
386
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
387
387
|
createdAt: string;
|
|
388
388
|
updatedAt: string;
|
|
389
389
|
currency: "NGN" | "USD";
|
|
@@ -397,7 +397,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
397
397
|
failureReason?: string | null | undefined;
|
|
398
398
|
paidAt?: string | null | undefined;
|
|
399
399
|
}, {
|
|
400
|
-
status: "pending" | "
|
|
400
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
401
401
|
createdAt: string;
|
|
402
402
|
updatedAt: string;
|
|
403
403
|
currency: "NGN" | "USD";
|
|
@@ -418,7 +418,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
418
418
|
type: string;
|
|
419
419
|
id: string;
|
|
420
420
|
attributes: {
|
|
421
|
-
status: "pending" | "
|
|
421
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
422
422
|
createdAt: string;
|
|
423
423
|
updatedAt: string;
|
|
424
424
|
currency: "NGN" | "USD";
|
|
@@ -439,7 +439,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
439
439
|
type: string;
|
|
440
440
|
id: string;
|
|
441
441
|
attributes: {
|
|
442
|
-
status: "pending" | "
|
|
442
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
443
443
|
createdAt: string;
|
|
444
444
|
updatedAt: string;
|
|
445
445
|
currency: "NGN" | "USD";
|
|
@@ -486,7 +486,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
486
486
|
type: string;
|
|
487
487
|
id: string;
|
|
488
488
|
attributes: {
|
|
489
|
-
status: "pending" | "
|
|
489
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
490
490
|
createdAt: string;
|
|
491
491
|
updatedAt: string;
|
|
492
492
|
currency: "NGN" | "USD";
|
|
@@ -519,7 +519,7 @@ export declare const paymentListResponseSchema: z.ZodObject<{
|
|
|
519
519
|
type: string;
|
|
520
520
|
id: string;
|
|
521
521
|
attributes: {
|
|
522
|
-
status: "pending" | "
|
|
522
|
+
status: "pending" | "failed" | "processing" | "completed" | "cancelled";
|
|
523
523
|
createdAt: string;
|
|
524
524
|
updatedAt: string;
|
|
525
525
|
currency: "NGN" | "USD";
|
|
@@ -1675,7 +1675,7 @@ export declare const triggerAnalysisResponseSchema: z.ZodObject<{
|
|
|
1675
1675
|
}[];
|
|
1676
1676
|
}>>;
|
|
1677
1677
|
}, "strip", z.ZodTypeAny, {
|
|
1678
|
-
status: "
|
|
1678
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
1679
1679
|
message: string;
|
|
1680
1680
|
fieldId: string;
|
|
1681
1681
|
analysisId: string | null;
|
|
@@ -1779,7 +1779,7 @@ export declare const triggerAnalysisResponseSchema: z.ZodObject<{
|
|
|
1779
1779
|
}[];
|
|
1780
1780
|
} | null;
|
|
1781
1781
|
}, {
|
|
1782
|
-
status: "
|
|
1782
|
+
status: "queued" | "completed" | "started" | "cached";
|
|
1783
1783
|
message: string;
|
|
1784
1784
|
fieldId: string;
|
|
1785
1785
|
analysisId: string | null;
|
|
@@ -10,16 +10,16 @@ export declare const fertilizerRecommendationSchema: z.ZodObject<{
|
|
|
10
10
|
reason: z.ZodString;
|
|
11
11
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
reason: string;
|
|
13
14
|
quantity: number;
|
|
14
15
|
unit: string;
|
|
15
16
|
inventoryItemId: string;
|
|
16
|
-
reason: string;
|
|
17
17
|
estimatedCost?: number | undefined;
|
|
18
18
|
}, {
|
|
19
|
+
reason: string;
|
|
19
20
|
quantity: number;
|
|
20
21
|
unit: string;
|
|
21
22
|
inventoryItemId: string;
|
|
22
|
-
reason: string;
|
|
23
23
|
estimatedCost?: number | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
@@ -47,16 +47,16 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
|
47
47
|
reason: z.ZodString;
|
|
48
48
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
49
49
|
}, "strip", z.ZodTypeAny, {
|
|
50
|
+
reason: string;
|
|
50
51
|
quantity: number;
|
|
51
52
|
unit: string;
|
|
52
53
|
inventoryItemId: string;
|
|
53
|
-
reason: string;
|
|
54
54
|
estimatedCost?: number | undefined;
|
|
55
55
|
}, {
|
|
56
|
+
reason: string;
|
|
56
57
|
quantity: number;
|
|
57
58
|
unit: string;
|
|
58
59
|
inventoryItemId: string;
|
|
59
|
-
reason: string;
|
|
60
60
|
estimatedCost?: number | undefined;
|
|
61
61
|
}>, "many">>;
|
|
62
62
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -87,10 +87,10 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
|
87
87
|
recommendations?: string | null | undefined;
|
|
88
88
|
fieldName?: string | undefined;
|
|
89
89
|
recommendedFertilizers?: {
|
|
90
|
+
reason: string;
|
|
90
91
|
quantity: number;
|
|
91
92
|
unit: string;
|
|
92
93
|
inventoryItemId: string;
|
|
93
|
-
reason: string;
|
|
94
94
|
estimatedCost?: number | undefined;
|
|
95
95
|
}[] | undefined;
|
|
96
96
|
}, {
|
|
@@ -116,10 +116,10 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
|
116
116
|
recommendations?: string | null | undefined;
|
|
117
117
|
fieldName?: string | undefined;
|
|
118
118
|
recommendedFertilizers?: {
|
|
119
|
+
reason: string;
|
|
119
120
|
quantity: number;
|
|
120
121
|
unit: string;
|
|
121
122
|
inventoryItemId: string;
|
|
122
|
-
reason: string;
|
|
123
123
|
estimatedCost?: number | undefined;
|
|
124
124
|
}[] | undefined;
|
|
125
125
|
}>;
|
|
@@ -450,16 +450,16 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
450
450
|
reason: z.ZodString;
|
|
451
451
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
452
452
|
}, "strip", z.ZodTypeAny, {
|
|
453
|
+
reason: string;
|
|
453
454
|
quantity: number;
|
|
454
455
|
unit: string;
|
|
455
456
|
inventoryItemId: string;
|
|
456
|
-
reason: string;
|
|
457
457
|
estimatedCost?: number | undefined;
|
|
458
458
|
}, {
|
|
459
|
+
reason: string;
|
|
459
460
|
quantity: number;
|
|
460
461
|
unit: string;
|
|
461
462
|
inventoryItemId: string;
|
|
462
|
-
reason: string;
|
|
463
463
|
estimatedCost?: number | undefined;
|
|
464
464
|
}>, "many">>;
|
|
465
465
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -490,10 +490,10 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
490
490
|
recommendations?: string | null | undefined;
|
|
491
491
|
fieldName?: string | undefined;
|
|
492
492
|
recommendedFertilizers?: {
|
|
493
|
+
reason: string;
|
|
493
494
|
quantity: number;
|
|
494
495
|
unit: string;
|
|
495
496
|
inventoryItemId: string;
|
|
496
|
-
reason: string;
|
|
497
497
|
estimatedCost?: number | undefined;
|
|
498
498
|
}[] | undefined;
|
|
499
499
|
}, {
|
|
@@ -519,10 +519,10 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
519
519
|
recommendations?: string | null | undefined;
|
|
520
520
|
fieldName?: string | undefined;
|
|
521
521
|
recommendedFertilizers?: {
|
|
522
|
+
reason: string;
|
|
522
523
|
quantity: number;
|
|
523
524
|
unit: string;
|
|
524
525
|
inventoryItemId: string;
|
|
525
|
-
reason: string;
|
|
526
526
|
estimatedCost?: number | undefined;
|
|
527
527
|
}[] | undefined;
|
|
528
528
|
}>;
|
|
@@ -555,10 +555,10 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
555
555
|
recommendations?: string | null | undefined;
|
|
556
556
|
fieldName?: string | undefined;
|
|
557
557
|
recommendedFertilizers?: {
|
|
558
|
+
reason: string;
|
|
558
559
|
quantity: number;
|
|
559
560
|
unit: string;
|
|
560
561
|
inventoryItemId: string;
|
|
561
|
-
reason: string;
|
|
562
562
|
estimatedCost?: number | undefined;
|
|
563
563
|
}[] | undefined;
|
|
564
564
|
};
|
|
@@ -591,10 +591,10 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
591
591
|
recommendations?: string | null | undefined;
|
|
592
592
|
fieldName?: string | undefined;
|
|
593
593
|
recommendedFertilizers?: {
|
|
594
|
+
reason: string;
|
|
594
595
|
quantity: number;
|
|
595
596
|
unit: string;
|
|
596
597
|
inventoryItemId: string;
|
|
597
|
-
reason: string;
|
|
598
598
|
estimatedCost?: number | undefined;
|
|
599
599
|
}[] | undefined;
|
|
600
600
|
};
|
|
@@ -630,16 +630,16 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
630
630
|
reason: z.ZodString;
|
|
631
631
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
632
632
|
}, "strip", z.ZodTypeAny, {
|
|
633
|
+
reason: string;
|
|
633
634
|
quantity: number;
|
|
634
635
|
unit: string;
|
|
635
636
|
inventoryItemId: string;
|
|
636
|
-
reason: string;
|
|
637
637
|
estimatedCost?: number | undefined;
|
|
638
638
|
}, {
|
|
639
|
+
reason: string;
|
|
639
640
|
quantity: number;
|
|
640
641
|
unit: string;
|
|
641
642
|
inventoryItemId: string;
|
|
642
|
-
reason: string;
|
|
643
643
|
estimatedCost?: number | undefined;
|
|
644
644
|
}>, "many">>;
|
|
645
645
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -670,10 +670,10 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
670
670
|
recommendations?: string | null | undefined;
|
|
671
671
|
fieldName?: string | undefined;
|
|
672
672
|
recommendedFertilizers?: {
|
|
673
|
+
reason: string;
|
|
673
674
|
quantity: number;
|
|
674
675
|
unit: string;
|
|
675
676
|
inventoryItemId: string;
|
|
676
|
-
reason: string;
|
|
677
677
|
estimatedCost?: number | undefined;
|
|
678
678
|
}[] | undefined;
|
|
679
679
|
}, {
|
|
@@ -699,10 +699,10 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
699
699
|
recommendations?: string | null | undefined;
|
|
700
700
|
fieldName?: string | undefined;
|
|
701
701
|
recommendedFertilizers?: {
|
|
702
|
+
reason: string;
|
|
702
703
|
quantity: number;
|
|
703
704
|
unit: string;
|
|
704
705
|
inventoryItemId: string;
|
|
705
|
-
reason: string;
|
|
706
706
|
estimatedCost?: number | undefined;
|
|
707
707
|
}[] | undefined;
|
|
708
708
|
}>;
|
|
@@ -793,10 +793,10 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
793
793
|
recommendations?: string | null | undefined;
|
|
794
794
|
fieldName?: string | undefined;
|
|
795
795
|
recommendedFertilizers?: {
|
|
796
|
+
reason: string;
|
|
796
797
|
quantity: number;
|
|
797
798
|
unit: string;
|
|
798
799
|
inventoryItemId: string;
|
|
799
|
-
reason: string;
|
|
800
800
|
estimatedCost?: number | undefined;
|
|
801
801
|
}[] | undefined;
|
|
802
802
|
};
|
|
@@ -840,10 +840,10 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
840
840
|
recommendations?: string | null | undefined;
|
|
841
841
|
fieldName?: string | undefined;
|
|
842
842
|
recommendedFertilizers?: {
|
|
843
|
+
reason: string;
|
|
843
844
|
quantity: number;
|
|
844
845
|
unit: string;
|
|
845
846
|
inventoryItemId: string;
|
|
846
|
-
reason: string;
|
|
847
847
|
estimatedCost?: number | undefined;
|
|
848
848
|
}[] | undefined;
|
|
849
849
|
};
|
|
@@ -891,16 +891,16 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
891
891
|
reason: z.ZodString;
|
|
892
892
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
893
893
|
}, "strip", z.ZodTypeAny, {
|
|
894
|
+
reason: string;
|
|
894
895
|
quantity: number;
|
|
895
896
|
unit: string;
|
|
896
897
|
inventoryItemId: string;
|
|
897
|
-
reason: string;
|
|
898
898
|
estimatedCost?: number | undefined;
|
|
899
899
|
}, {
|
|
900
|
+
reason: string;
|
|
900
901
|
quantity: number;
|
|
901
902
|
unit: string;
|
|
902
903
|
inventoryItemId: string;
|
|
903
|
-
reason: string;
|
|
904
904
|
estimatedCost?: number | undefined;
|
|
905
905
|
}>, "many">>;
|
|
906
906
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -931,10 +931,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
931
931
|
recommendations?: string | null | undefined;
|
|
932
932
|
fieldName?: string | undefined;
|
|
933
933
|
recommendedFertilizers?: {
|
|
934
|
+
reason: string;
|
|
934
935
|
quantity: number;
|
|
935
936
|
unit: string;
|
|
936
937
|
inventoryItemId: string;
|
|
937
|
-
reason: string;
|
|
938
938
|
estimatedCost?: number | undefined;
|
|
939
939
|
}[] | undefined;
|
|
940
940
|
}, {
|
|
@@ -960,10 +960,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
960
960
|
recommendations?: string | null | undefined;
|
|
961
961
|
fieldName?: string | undefined;
|
|
962
962
|
recommendedFertilizers?: {
|
|
963
|
+
reason: string;
|
|
963
964
|
quantity: number;
|
|
964
965
|
unit: string;
|
|
965
966
|
inventoryItemId: string;
|
|
966
|
-
reason: string;
|
|
967
967
|
estimatedCost?: number | undefined;
|
|
968
968
|
}[] | undefined;
|
|
969
969
|
}>;
|
|
@@ -996,10 +996,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
996
996
|
recommendations?: string | null | undefined;
|
|
997
997
|
fieldName?: string | undefined;
|
|
998
998
|
recommendedFertilizers?: {
|
|
999
|
+
reason: string;
|
|
999
1000
|
quantity: number;
|
|
1000
1001
|
unit: string;
|
|
1001
1002
|
inventoryItemId: string;
|
|
1002
|
-
reason: string;
|
|
1003
1003
|
estimatedCost?: number | undefined;
|
|
1004
1004
|
}[] | undefined;
|
|
1005
1005
|
};
|
|
@@ -1032,10 +1032,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1032
1032
|
recommendations?: string | null | undefined;
|
|
1033
1033
|
fieldName?: string | undefined;
|
|
1034
1034
|
recommendedFertilizers?: {
|
|
1035
|
+
reason: string;
|
|
1035
1036
|
quantity: number;
|
|
1036
1037
|
unit: string;
|
|
1037
1038
|
inventoryItemId: string;
|
|
1038
|
-
reason: string;
|
|
1039
1039
|
estimatedCost?: number | undefined;
|
|
1040
1040
|
}[] | undefined;
|
|
1041
1041
|
};
|
|
@@ -1094,10 +1094,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1094
1094
|
recommendations?: string | null | undefined;
|
|
1095
1095
|
fieldName?: string | undefined;
|
|
1096
1096
|
recommendedFertilizers?: {
|
|
1097
|
+
reason: string;
|
|
1097
1098
|
quantity: number;
|
|
1098
1099
|
unit: string;
|
|
1099
1100
|
inventoryItemId: string;
|
|
1100
|
-
reason: string;
|
|
1101
1101
|
estimatedCost?: number | undefined;
|
|
1102
1102
|
}[] | undefined;
|
|
1103
1103
|
};
|
|
@@ -1142,10 +1142,10 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1142
1142
|
recommendations?: string | null | undefined;
|
|
1143
1143
|
fieldName?: string | undefined;
|
|
1144
1144
|
recommendedFertilizers?: {
|
|
1145
|
+
reason: string;
|
|
1145
1146
|
quantity: number;
|
|
1146
1147
|
unit: string;
|
|
1147
1148
|
inventoryItemId: string;
|
|
1148
|
-
reason: string;
|
|
1149
1149
|
estimatedCost?: number | undefined;
|
|
1150
1150
|
}[] | undefined;
|
|
1151
1151
|
};
|
|
@@ -1193,16 +1193,16 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1193
1193
|
reason: z.ZodString;
|
|
1194
1194
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
1195
1195
|
}, "strip", z.ZodTypeAny, {
|
|
1196
|
+
reason: string;
|
|
1196
1197
|
quantity: number;
|
|
1197
1198
|
unit: string;
|
|
1198
1199
|
inventoryItemId: string;
|
|
1199
|
-
reason: string;
|
|
1200
1200
|
estimatedCost?: number | undefined;
|
|
1201
1201
|
}, {
|
|
1202
|
+
reason: string;
|
|
1202
1203
|
quantity: number;
|
|
1203
1204
|
unit: string;
|
|
1204
1205
|
inventoryItemId: string;
|
|
1205
|
-
reason: string;
|
|
1206
1206
|
estimatedCost?: number | undefined;
|
|
1207
1207
|
}>, "many">>;
|
|
1208
1208
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1233,10 +1233,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1233
1233
|
recommendations?: string | null | undefined;
|
|
1234
1234
|
fieldName?: string | undefined;
|
|
1235
1235
|
recommendedFertilizers?: {
|
|
1236
|
+
reason: string;
|
|
1236
1237
|
quantity: number;
|
|
1237
1238
|
unit: string;
|
|
1238
1239
|
inventoryItemId: string;
|
|
1239
|
-
reason: string;
|
|
1240
1240
|
estimatedCost?: number | undefined;
|
|
1241
1241
|
}[] | undefined;
|
|
1242
1242
|
}, {
|
|
@@ -1262,10 +1262,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1262
1262
|
recommendations?: string | null | undefined;
|
|
1263
1263
|
fieldName?: string | undefined;
|
|
1264
1264
|
recommendedFertilizers?: {
|
|
1265
|
+
reason: string;
|
|
1265
1266
|
quantity: number;
|
|
1266
1267
|
unit: string;
|
|
1267
1268
|
inventoryItemId: string;
|
|
1268
|
-
reason: string;
|
|
1269
1269
|
estimatedCost?: number | undefined;
|
|
1270
1270
|
}[] | undefined;
|
|
1271
1271
|
}>;
|
|
@@ -1356,10 +1356,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1356
1356
|
recommendations?: string | null | undefined;
|
|
1357
1357
|
fieldName?: string | undefined;
|
|
1358
1358
|
recommendedFertilizers?: {
|
|
1359
|
+
reason: string;
|
|
1359
1360
|
quantity: number;
|
|
1360
1361
|
unit: string;
|
|
1361
1362
|
inventoryItemId: string;
|
|
1362
|
-
reason: string;
|
|
1363
1363
|
estimatedCost?: number | undefined;
|
|
1364
1364
|
}[] | undefined;
|
|
1365
1365
|
};
|
|
@@ -1403,10 +1403,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1403
1403
|
recommendations?: string | null | undefined;
|
|
1404
1404
|
fieldName?: string | undefined;
|
|
1405
1405
|
recommendedFertilizers?: {
|
|
1406
|
+
reason: string;
|
|
1406
1407
|
quantity: number;
|
|
1407
1408
|
unit: string;
|
|
1408
1409
|
inventoryItemId: string;
|
|
1409
|
-
reason: string;
|
|
1410
1410
|
estimatedCost?: number | undefined;
|
|
1411
1411
|
}[] | undefined;
|
|
1412
1412
|
};
|
|
@@ -1476,10 +1476,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1476
1476
|
recommendations?: string | null | undefined;
|
|
1477
1477
|
fieldName?: string | undefined;
|
|
1478
1478
|
recommendedFertilizers?: {
|
|
1479
|
+
reason: string;
|
|
1479
1480
|
quantity: number;
|
|
1480
1481
|
unit: string;
|
|
1481
1482
|
inventoryItemId: string;
|
|
1482
|
-
reason: string;
|
|
1483
1483
|
estimatedCost?: number | undefined;
|
|
1484
1484
|
}[] | undefined;
|
|
1485
1485
|
};
|
|
@@ -1535,10 +1535,10 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1535
1535
|
recommendations?: string | null | undefined;
|
|
1536
1536
|
fieldName?: string | undefined;
|
|
1537
1537
|
recommendedFertilizers?: {
|
|
1538
|
+
reason: string;
|
|
1538
1539
|
quantity: number;
|
|
1539
1540
|
unit: string;
|
|
1540
1541
|
inventoryItemId: string;
|
|
1541
|
-
reason: string;
|
|
1542
1542
|
estimatedCost?: number | undefined;
|
|
1543
1543
|
}[] | undefined;
|
|
1544
1544
|
};
|
|
@@ -1597,16 +1597,16 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1597
1597
|
reason: z.ZodString;
|
|
1598
1598
|
estimatedCost: z.ZodOptional<z.ZodNumber>;
|
|
1599
1599
|
}, "strip", z.ZodTypeAny, {
|
|
1600
|
+
reason: string;
|
|
1600
1601
|
quantity: number;
|
|
1601
1602
|
unit: string;
|
|
1602
1603
|
inventoryItemId: string;
|
|
1603
|
-
reason: string;
|
|
1604
1604
|
estimatedCost?: number | undefined;
|
|
1605
1605
|
}, {
|
|
1606
|
+
reason: string;
|
|
1606
1607
|
quantity: number;
|
|
1607
1608
|
unit: string;
|
|
1608
1609
|
inventoryItemId: string;
|
|
1609
|
-
reason: string;
|
|
1610
1610
|
estimatedCost?: number | undefined;
|
|
1611
1611
|
}>, "many">>;
|
|
1612
1612
|
recommendations: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1637,10 +1637,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1637
1637
|
recommendations?: string | null | undefined;
|
|
1638
1638
|
fieldName?: string | undefined;
|
|
1639
1639
|
recommendedFertilizers?: {
|
|
1640
|
+
reason: string;
|
|
1640
1641
|
quantity: number;
|
|
1641
1642
|
unit: string;
|
|
1642
1643
|
inventoryItemId: string;
|
|
1643
|
-
reason: string;
|
|
1644
1644
|
estimatedCost?: number | undefined;
|
|
1645
1645
|
}[] | undefined;
|
|
1646
1646
|
}, {
|
|
@@ -1666,10 +1666,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1666
1666
|
recommendations?: string | null | undefined;
|
|
1667
1667
|
fieldName?: string | undefined;
|
|
1668
1668
|
recommendedFertilizers?: {
|
|
1669
|
+
reason: string;
|
|
1669
1670
|
quantity: number;
|
|
1670
1671
|
unit: string;
|
|
1671
1672
|
inventoryItemId: string;
|
|
1672
|
-
reason: string;
|
|
1673
1673
|
estimatedCost?: number | undefined;
|
|
1674
1674
|
}[] | undefined;
|
|
1675
1675
|
}>;
|
|
@@ -1702,10 +1702,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1702
1702
|
recommendations?: string | null | undefined;
|
|
1703
1703
|
fieldName?: string | undefined;
|
|
1704
1704
|
recommendedFertilizers?: {
|
|
1705
|
+
reason: string;
|
|
1705
1706
|
quantity: number;
|
|
1706
1707
|
unit: string;
|
|
1707
1708
|
inventoryItemId: string;
|
|
1708
|
-
reason: string;
|
|
1709
1709
|
estimatedCost?: number | undefined;
|
|
1710
1710
|
}[] | undefined;
|
|
1711
1711
|
};
|
|
@@ -1738,10 +1738,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1738
1738
|
recommendations?: string | null | undefined;
|
|
1739
1739
|
fieldName?: string | undefined;
|
|
1740
1740
|
recommendedFertilizers?: {
|
|
1741
|
+
reason: string;
|
|
1741
1742
|
quantity: number;
|
|
1742
1743
|
unit: string;
|
|
1743
1744
|
inventoryItemId: string;
|
|
1744
|
-
reason: string;
|
|
1745
1745
|
estimatedCost?: number | undefined;
|
|
1746
1746
|
}[] | undefined;
|
|
1747
1747
|
};
|
|
@@ -1800,10 +1800,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1800
1800
|
recommendations?: string | null | undefined;
|
|
1801
1801
|
fieldName?: string | undefined;
|
|
1802
1802
|
recommendedFertilizers?: {
|
|
1803
|
+
reason: string;
|
|
1803
1804
|
quantity: number;
|
|
1804
1805
|
unit: string;
|
|
1805
1806
|
inventoryItemId: string;
|
|
1806
|
-
reason: string;
|
|
1807
1807
|
estimatedCost?: number | undefined;
|
|
1808
1808
|
}[] | undefined;
|
|
1809
1809
|
};
|
|
@@ -1848,10 +1848,10 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1848
1848
|
recommendations?: string | null | undefined;
|
|
1849
1849
|
fieldName?: string | undefined;
|
|
1850
1850
|
recommendedFertilizers?: {
|
|
1851
|
+
reason: string;
|
|
1851
1852
|
quantity: number;
|
|
1852
1853
|
unit: string;
|
|
1853
1854
|
inventoryItemId: string;
|
|
1854
|
-
reason: string;
|
|
1855
1855
|
estimatedCost?: number | undefined;
|
|
1856
1856
|
}[] | undefined;
|
|
1857
1857
|
};
|