@deepintel-ltd/farmpro-contracts 1.11.7 → 1.11.9

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.
Files changed (46) hide show
  1. package/dist/index.d.ts +5 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +4 -0
  4. package/dist/routes/agents.routes.d.ts +142 -0
  5. package/dist/routes/agents.routes.d.ts.map +1 -1
  6. package/dist/routes/equipment.routes.d.ts +36 -36
  7. package/dist/routes/extension.routes.d.ts +12 -12
  8. package/dist/routes/farm-updates.routes.d.ts +5445 -0
  9. package/dist/routes/farm-updates.routes.d.ts.map +1 -0
  10. package/dist/routes/farm-updates.routes.js +149 -0
  11. package/dist/routes/fertigation.routes.d.ts +156 -156
  12. package/dist/routes/field-activities.routes.d.ts +2397 -0
  13. package/dist/routes/field-activities.routes.d.ts.map +1 -0
  14. package/dist/routes/field-activities.routes.js +81 -0
  15. package/dist/routes/fields.routes.d.ts +860 -0
  16. package/dist/routes/fields.routes.d.ts.map +1 -1
  17. package/dist/routes/fields.routes.js +20 -1
  18. package/dist/routes/index.d.ts +6 -0
  19. package/dist/routes/index.d.ts.map +1 -1
  20. package/dist/routes/index.js +4 -0
  21. package/dist/routes/irrigation.routes.d.ts +20 -20
  22. package/dist/routes/livestock-groups.routes.d.ts +36 -36
  23. package/dist/routes/livestock.routes.d.ts +30 -30
  24. package/dist/routes/soil-tests.routes.d.ts +36 -36
  25. package/dist/routes/tasks.routes.d.ts +120 -120
  26. package/dist/schemas/agents.schemas.d.ts +163 -0
  27. package/dist/schemas/agents.schemas.d.ts.map +1 -1
  28. package/dist/schemas/agents.schemas.js +23 -0
  29. package/dist/schemas/equipment.schemas.d.ts +30 -30
  30. package/dist/schemas/extension.schemas.d.ts +18 -18
  31. package/dist/schemas/farm-updates.schemas.d.ts +3595 -0
  32. package/dist/schemas/farm-updates.schemas.d.ts.map +1 -0
  33. package/dist/schemas/farm-updates.schemas.js +91 -0
  34. package/dist/schemas/fertigation.schemas.d.ts +42 -42
  35. package/dist/schemas/field-activities.schemas.d.ts +806 -0
  36. package/dist/schemas/field-activities.schemas.d.ts.map +1 -0
  37. package/dist/schemas/field-activities.schemas.js +68 -0
  38. package/dist/schemas/fields.schemas.d.ts +173 -0
  39. package/dist/schemas/fields.schemas.d.ts.map +1 -1
  40. package/dist/schemas/fields.schemas.js +14 -0
  41. package/dist/schemas/irrigation.schemas.d.ts +14 -14
  42. package/dist/schemas/livestock-groups.schemas.d.ts +24 -24
  43. package/dist/schemas/livestock.schemas.d.ts +24 -24
  44. package/dist/schemas/soil-tests.schemas.d.ts +34 -34
  45. package/dist/schemas/tasks.schemas.d.ts +96 -96
  46. package/package.json +1 -1
@@ -51,8 +51,8 @@ export declare const livestockGroupAttributesSchema: z.ZodObject<{
51
51
  farmId: string;
52
52
  location: string | null;
53
53
  currency: string;
54
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
55
54
  notes: string | null;
55
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
56
56
  purchasePrice: number | null;
57
57
  currentValue: number | null;
58
58
  breed: string | null;
@@ -80,8 +80,8 @@ export declare const livestockGroupAttributesSchema: z.ZodObject<{
80
80
  description: string | null;
81
81
  farmId: string;
82
82
  location: string | null;
83
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
84
83
  notes: string | null;
84
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
85
85
  purchasePrice: number | null;
86
86
  currentValue: number | null;
87
87
  breed: string | null;
@@ -210,8 +210,8 @@ export declare const updateLivestockGroupAttributesSchema: z.ZodObject<{
210
210
  description?: string | null | undefined;
211
211
  location?: string | null | undefined;
212
212
  currency?: string | undefined;
213
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
214
213
  notes?: string | null | undefined;
214
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
215
215
  purchasePrice?: number | null | undefined;
216
216
  currentValue?: number | null | undefined;
217
217
  breed?: string | null | undefined;
@@ -235,8 +235,8 @@ export declare const updateLivestockGroupAttributesSchema: z.ZodObject<{
235
235
  description?: string | null | undefined;
236
236
  location?: string | null | undefined;
237
237
  currency?: string | undefined;
238
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
239
238
  notes?: string | null | undefined;
239
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
240
240
  purchasePrice?: number | null | undefined;
241
241
  currentValue?: number | null | undefined;
242
242
  breed?: string | null | undefined;
@@ -565,8 +565,8 @@ export declare const updateLivestockGroupSchema: z.ZodObject<{
565
565
  description?: string | null | undefined;
566
566
  location?: string | null | undefined;
567
567
  currency?: string | undefined;
568
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
569
568
  notes?: string | null | undefined;
569
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
570
570
  purchasePrice?: number | null | undefined;
571
571
  currentValue?: number | null | undefined;
572
572
  breed?: string | null | undefined;
@@ -590,8 +590,8 @@ export declare const updateLivestockGroupSchema: z.ZodObject<{
590
590
  description?: string | null | undefined;
591
591
  location?: string | null | undefined;
592
592
  currency?: string | undefined;
593
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
594
593
  notes?: string | null | undefined;
594
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
595
595
  purchasePrice?: number | null | undefined;
596
596
  currentValue?: number | null | undefined;
597
597
  breed?: string | null | undefined;
@@ -619,8 +619,8 @@ export declare const updateLivestockGroupSchema: z.ZodObject<{
619
619
  description?: string | null | undefined;
620
620
  location?: string | null | undefined;
621
621
  currency?: string | undefined;
622
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
623
622
  notes?: string | null | undefined;
623
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
624
624
  purchasePrice?: number | null | undefined;
625
625
  currentValue?: number | null | undefined;
626
626
  breed?: string | null | undefined;
@@ -648,8 +648,8 @@ export declare const updateLivestockGroupSchema: z.ZodObject<{
648
648
  description?: string | null | undefined;
649
649
  location?: string | null | undefined;
650
650
  currency?: string | undefined;
651
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
652
651
  notes?: string | null | undefined;
652
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
653
653
  purchasePrice?: number | null | undefined;
654
654
  currentValue?: number | null | undefined;
655
655
  breed?: string | null | undefined;
@@ -827,8 +827,8 @@ export declare const livestockGroupResourceSchema: z.ZodObject<{
827
827
  farmId: string;
828
828
  location: string | null;
829
829
  currency: string;
830
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
831
830
  notes: string | null;
831
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
832
832
  purchasePrice: number | null;
833
833
  currentValue: number | null;
834
834
  breed: string | null;
@@ -856,8 +856,8 @@ export declare const livestockGroupResourceSchema: z.ZodObject<{
856
856
  description: string | null;
857
857
  farmId: string;
858
858
  location: string | null;
859
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
860
859
  notes: string | null;
860
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
861
861
  purchasePrice: number | null;
862
862
  currentValue: number | null;
863
863
  breed: string | null;
@@ -894,8 +894,8 @@ export declare const livestockGroupResourceSchema: z.ZodObject<{
894
894
  farmId: string;
895
895
  location: string | null;
896
896
  currency: string;
897
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
898
897
  notes: string | null;
898
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
899
899
  purchasePrice: number | null;
900
900
  currentValue: number | null;
901
901
  breed: string | null;
@@ -930,8 +930,8 @@ export declare const livestockGroupResourceSchema: z.ZodObject<{
930
930
  description: string | null;
931
931
  farmId: string;
932
932
  location: string | null;
933
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
934
933
  notes: string | null;
934
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
935
935
  purchasePrice: number | null;
936
936
  currentValue: number | null;
937
937
  breed: string | null;
@@ -1149,8 +1149,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1149
1149
  farmId: string;
1150
1150
  location: string | null;
1151
1151
  currency: string;
1152
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1153
1152
  notes: string | null;
1153
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1154
1154
  purchasePrice: number | null;
1155
1155
  currentValue: number | null;
1156
1156
  breed: string | null;
@@ -1178,8 +1178,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1178
1178
  description: string | null;
1179
1179
  farmId: string;
1180
1180
  location: string | null;
1181
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1182
1181
  notes: string | null;
1182
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1183
1183
  purchasePrice: number | null;
1184
1184
  currentValue: number | null;
1185
1185
  breed: string | null;
@@ -1216,8 +1216,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1216
1216
  farmId: string;
1217
1217
  location: string | null;
1218
1218
  currency: string;
1219
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1220
1219
  notes: string | null;
1220
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1221
1221
  purchasePrice: number | null;
1222
1222
  currentValue: number | null;
1223
1223
  breed: string | null;
@@ -1252,8 +1252,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1252
1252
  description: string | null;
1253
1253
  farmId: string;
1254
1254
  location: string | null;
1255
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1256
1255
  notes: string | null;
1256
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1257
1257
  purchasePrice: number | null;
1258
1258
  currentValue: number | null;
1259
1259
  breed: string | null;
@@ -1316,8 +1316,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1316
1316
  farmId: string;
1317
1317
  location: string | null;
1318
1318
  currency: string;
1319
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1320
1319
  notes: string | null;
1320
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1321
1321
  purchasePrice: number | null;
1322
1322
  currentValue: number | null;
1323
1323
  breed: string | null;
@@ -1364,8 +1364,8 @@ export declare const livestockGroupResponseSchema: z.ZodObject<{
1364
1364
  description: string | null;
1365
1365
  farmId: string;
1366
1366
  location: string | null;
1367
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1368
1367
  notes: string | null;
1368
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1369
1369
  purchasePrice: number | null;
1370
1370
  currentValue: number | null;
1371
1371
  breed: string | null;
@@ -1446,8 +1446,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1446
1446
  farmId: string;
1447
1447
  location: string | null;
1448
1448
  currency: string;
1449
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1450
1449
  notes: string | null;
1450
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1451
1451
  purchasePrice: number | null;
1452
1452
  currentValue: number | null;
1453
1453
  breed: string | null;
@@ -1475,8 +1475,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1475
1475
  description: string | null;
1476
1476
  farmId: string;
1477
1477
  location: string | null;
1478
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1479
1478
  notes: string | null;
1479
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1480
1480
  purchasePrice: number | null;
1481
1481
  currentValue: number | null;
1482
1482
  breed: string | null;
@@ -1513,8 +1513,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1513
1513
  farmId: string;
1514
1514
  location: string | null;
1515
1515
  currency: string;
1516
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1517
1516
  notes: string | null;
1517
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1518
1518
  purchasePrice: number | null;
1519
1519
  currentValue: number | null;
1520
1520
  breed: string | null;
@@ -1549,8 +1549,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1549
1549
  description: string | null;
1550
1550
  farmId: string;
1551
1551
  location: string | null;
1552
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1553
1552
  notes: string | null;
1553
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1554
1554
  purchasePrice: number | null;
1555
1555
  currentValue: number | null;
1556
1556
  breed: string | null;
@@ -1613,8 +1613,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1613
1613
  farmId: string;
1614
1614
  location: string | null;
1615
1615
  currency: string;
1616
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1617
1616
  notes: string | null;
1617
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1618
1618
  purchasePrice: number | null;
1619
1619
  currentValue: number | null;
1620
1620
  breed: string | null;
@@ -1661,8 +1661,8 @@ export declare const livestockGroupListResponseSchema: z.ZodObject<{
1661
1661
  description: string | null;
1662
1662
  farmId: string;
1663
1663
  location: string | null;
1664
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1665
1664
  notes: string | null;
1665
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1666
1666
  purchasePrice: number | null;
1667
1667
  currentValue: number | null;
1668
1668
  breed: string | null;
@@ -274,8 +274,8 @@ export declare const livestockAttributesSchema: z.ZodObject<{
274
274
  farmId: string;
275
275
  location: string | null;
276
276
  currency: string;
277
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
278
277
  notes: string | null;
278
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
279
279
  purchasePrice: number | null;
280
280
  currentValue: number | null;
281
281
  weight: number | null;
@@ -342,8 +342,8 @@ export declare const livestockAttributesSchema: z.ZodObject<{
342
342
  name: string | null;
343
343
  farmId: string;
344
344
  location: string | null;
345
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
346
345
  notes: string | null;
346
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
347
347
  purchasePrice: number | null;
348
348
  currentValue: number | null;
349
349
  weight: number | null;
@@ -497,8 +497,8 @@ export declare const updateLivestockAttributesSchema: z.ZodObject<{
497
497
  name?: string | null | undefined;
498
498
  location?: string | null | undefined;
499
499
  currency?: string | undefined;
500
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
501
500
  notes?: string | null | undefined;
501
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
502
502
  purchasePrice?: number | null | undefined;
503
503
  currentValue?: number | null | undefined;
504
504
  weight?: number | null | undefined;
@@ -517,8 +517,8 @@ export declare const updateLivestockAttributesSchema: z.ZodObject<{
517
517
  name?: string | null | undefined;
518
518
  location?: string | null | undefined;
519
519
  currency?: string | undefined;
520
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
521
520
  notes?: string | null | undefined;
521
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
522
522
  purchasePrice?: number | null | undefined;
523
523
  currentValue?: number | null | undefined;
524
524
  weight?: number | null | undefined;
@@ -786,8 +786,8 @@ export declare const updateLivestockSchema: z.ZodObject<{
786
786
  name?: string | null | undefined;
787
787
  location?: string | null | undefined;
788
788
  currency?: string | undefined;
789
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
790
789
  notes?: string | null | undefined;
790
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
791
791
  purchasePrice?: number | null | undefined;
792
792
  currentValue?: number | null | undefined;
793
793
  weight?: number | null | undefined;
@@ -806,8 +806,8 @@ export declare const updateLivestockSchema: z.ZodObject<{
806
806
  name?: string | null | undefined;
807
807
  location?: string | null | undefined;
808
808
  currency?: string | undefined;
809
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
810
809
  notes?: string | null | undefined;
810
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
811
811
  purchasePrice?: number | null | undefined;
812
812
  currentValue?: number | null | undefined;
813
813
  weight?: number | null | undefined;
@@ -830,8 +830,8 @@ export declare const updateLivestockSchema: z.ZodObject<{
830
830
  name?: string | null | undefined;
831
831
  location?: string | null | undefined;
832
832
  currency?: string | undefined;
833
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
834
833
  notes?: string | null | undefined;
834
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
835
835
  purchasePrice?: number | null | undefined;
836
836
  currentValue?: number | null | undefined;
837
837
  weight?: number | null | undefined;
@@ -854,8 +854,8 @@ export declare const updateLivestockSchema: z.ZodObject<{
854
854
  name?: string | null | undefined;
855
855
  location?: string | null | undefined;
856
856
  currency?: string | undefined;
857
- category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
858
857
  notes?: string | null | undefined;
858
+ category?: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT" | undefined;
859
859
  purchasePrice?: number | null | undefined;
860
860
  currentValue?: number | null | undefined;
861
861
  weight?: number | null | undefined;
@@ -1226,8 +1226,8 @@ export declare const livestockResourceSchema: z.ZodObject<{
1226
1226
  farmId: string;
1227
1227
  location: string | null;
1228
1228
  currency: string;
1229
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1230
1229
  notes: string | null;
1230
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1231
1231
  purchasePrice: number | null;
1232
1232
  currentValue: number | null;
1233
1233
  weight: number | null;
@@ -1294,8 +1294,8 @@ export declare const livestockResourceSchema: z.ZodObject<{
1294
1294
  name: string | null;
1295
1295
  farmId: string;
1296
1296
  location: string | null;
1297
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1298
1297
  notes: string | null;
1298
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1299
1299
  purchasePrice: number | null;
1300
1300
  currentValue: number | null;
1301
1301
  weight: number | null;
@@ -1371,8 +1371,8 @@ export declare const livestockResourceSchema: z.ZodObject<{
1371
1371
  farmId: string;
1372
1372
  location: string | null;
1373
1373
  currency: string;
1374
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1375
1374
  notes: string | null;
1375
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1376
1376
  purchasePrice: number | null;
1377
1377
  currentValue: number | null;
1378
1378
  weight: number | null;
@@ -1446,8 +1446,8 @@ export declare const livestockResourceSchema: z.ZodObject<{
1446
1446
  name: string | null;
1447
1447
  farmId: string;
1448
1448
  location: string | null;
1449
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1450
1449
  notes: string | null;
1450
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1451
1451
  purchasePrice: number | null;
1452
1452
  currentValue: number | null;
1453
1453
  weight: number | null;
@@ -1920,8 +1920,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
1920
1920
  farmId: string;
1921
1921
  location: string | null;
1922
1922
  currency: string;
1923
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1924
1923
  notes: string | null;
1924
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1925
1925
  purchasePrice: number | null;
1926
1926
  currentValue: number | null;
1927
1927
  weight: number | null;
@@ -1988,8 +1988,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
1988
1988
  name: string | null;
1989
1989
  farmId: string;
1990
1990
  location: string | null;
1991
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1992
1991
  notes: string | null;
1992
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
1993
1993
  purchasePrice: number | null;
1994
1994
  currentValue: number | null;
1995
1995
  weight: number | null;
@@ -2065,8 +2065,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
2065
2065
  farmId: string;
2066
2066
  location: string | null;
2067
2067
  currency: string;
2068
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2069
2068
  notes: string | null;
2069
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2070
2070
  purchasePrice: number | null;
2071
2071
  currentValue: number | null;
2072
2072
  weight: number | null;
@@ -2140,8 +2140,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
2140
2140
  name: string | null;
2141
2141
  farmId: string;
2142
2142
  location: string | null;
2143
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2144
2143
  notes: string | null;
2144
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2145
2145
  purchasePrice: number | null;
2146
2146
  currentValue: number | null;
2147
2147
  weight: number | null;
@@ -2243,8 +2243,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
2243
2243
  farmId: string;
2244
2244
  location: string | null;
2245
2245
  currency: string;
2246
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2247
2246
  notes: string | null;
2247
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2248
2248
  purchasePrice: number | null;
2249
2249
  currentValue: number | null;
2250
2250
  weight: number | null;
@@ -2330,8 +2330,8 @@ export declare const livestockResponseSchema: z.ZodObject<{
2330
2330
  name: string | null;
2331
2331
  farmId: string;
2332
2332
  location: string | null;
2333
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2334
2333
  notes: string | null;
2334
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2335
2335
  purchasePrice: number | null;
2336
2336
  currentValue: number | null;
2337
2337
  weight: number | null;
@@ -2564,8 +2564,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2564
2564
  farmId: string;
2565
2565
  location: string | null;
2566
2566
  currency: string;
2567
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2568
2567
  notes: string | null;
2568
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2569
2569
  purchasePrice: number | null;
2570
2570
  currentValue: number | null;
2571
2571
  weight: number | null;
@@ -2632,8 +2632,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2632
2632
  name: string | null;
2633
2633
  farmId: string;
2634
2634
  location: string | null;
2635
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2636
2635
  notes: string | null;
2636
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2637
2637
  purchasePrice: number | null;
2638
2638
  currentValue: number | null;
2639
2639
  weight: number | null;
@@ -2709,8 +2709,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2709
2709
  farmId: string;
2710
2710
  location: string | null;
2711
2711
  currency: string;
2712
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2713
2712
  notes: string | null;
2713
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2714
2714
  purchasePrice: number | null;
2715
2715
  currentValue: number | null;
2716
2716
  weight: number | null;
@@ -2784,8 +2784,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2784
2784
  name: string | null;
2785
2785
  farmId: string;
2786
2786
  location: string | null;
2787
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2788
2787
  notes: string | null;
2788
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2789
2789
  purchasePrice: number | null;
2790
2790
  currentValue: number | null;
2791
2791
  weight: number | null;
@@ -2887,8 +2887,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2887
2887
  farmId: string;
2888
2888
  location: string | null;
2889
2889
  currency: string;
2890
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2891
2890
  notes: string | null;
2891
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2892
2892
  purchasePrice: number | null;
2893
2893
  currentValue: number | null;
2894
2894
  weight: number | null;
@@ -2974,8 +2974,8 @@ export declare const livestockListResponseSchema: z.ZodObject<{
2974
2974
  name: string | null;
2975
2975
  farmId: string;
2976
2976
  location: string | null;
2977
- category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2978
2977
  notes: string | null;
2978
+ category: "OTHER" | "CATTLE" | "POULTRY" | "SHEEP" | "GOAT" | "PIG" | "FISH" | "RABBIT";
2979
2979
  purchasePrice: number | null;
2980
2980
  currentValue: number | null;
2981
2981
  weight: number | null;