@deepintel-ltd/farmpro-contracts 1.15.5 → 1.16.0
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/agent-workflows.routes.d.ts +56 -56
- package/dist/routes/farm-updates.routes.d.ts +456 -16
- package/dist/routes/farm-updates.routes.d.ts.map +1 -1
- package/dist/routes/farm-updates.routes.js +27 -11
- package/dist/routes/fertigation.routes.d.ts +160 -160
- package/dist/routes/field-activities.routes.d.ts +172 -172
- package/dist/routes/field-monitoring.routes.d.ts +50 -50
- package/dist/routes/field-observations.routes.d.ts +40 -40
- package/dist/routes/fields.routes.d.ts +461 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +19 -1
- package/dist/routes/finance.routes.d.ts +78 -78
- package/dist/routes/harvest.routes.d.ts +72 -72
- package/dist/routes/inventory.routes.d.ts +42 -42
- package/dist/routes/live-monitor.routes.d.ts +6 -6
- package/dist/routes/measurements.routes.d.ts +6 -6
- package/dist/routes/monitoring-visualization.routes.d.ts +12 -12
- package/dist/routes/prescription-maps.routes.d.ts +28 -28
- package/dist/routes/soil-tests.routes.d.ts +80 -80
- package/dist/routes/suppliers.routes.d.ts +80 -80
- package/dist/routes/waybills.routes.d.ts +56 -56
- package/dist/routes/weather.routes.d.ts +24 -24
- package/dist/routes/yield-prediction.routes.d.ts +36 -36
- package/dist/schemas/agent-workflows.schemas.d.ts +64 -64
- package/dist/schemas/commodity-deals.schemas.d.ts +18 -5
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +5 -1
- package/dist/schemas/farm-updates.schemas.d.ts +249 -0
- package/dist/schemas/farm-updates.schemas.d.ts.map +1 -1
- package/dist/schemas/farm-updates.schemas.js +18 -0
- package/dist/schemas/fertigation.schemas.d.ts +72 -72
- package/dist/schemas/field-activities.schemas.d.ts +148 -148
- package/dist/schemas/field-monitoring.schemas.d.ts +30 -30
- package/dist/schemas/field-observations.schemas.d.ts +34 -34
- package/dist/schemas/fields.schemas.d.ts +286 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +26 -0
- package/dist/schemas/finance.schemas.d.ts +94 -94
- package/dist/schemas/harvest.schemas.d.ts +80 -80
- package/dist/schemas/inventory.schemas.d.ts +46 -46
- package/dist/schemas/live-monitor.schemas.d.ts +10 -10
- package/dist/schemas/measurements.schemas.d.ts +6 -6
- package/dist/schemas/monitoring-visualization.schemas.d.ts +14 -14
- package/dist/schemas/prescription-maps.schemas.d.ts +22 -22
- package/dist/schemas/recommendations.schemas.d.ts +6 -6
- package/dist/schemas/soil-tests.schemas.d.ts +84 -84
- package/dist/schemas/suppliers.schemas.d.ts +84 -84
- package/dist/schemas/waybills.schemas.d.ts +48 -48
- package/dist/schemas/weather.schemas.d.ts +68 -68
- package/dist/schemas/yield-prediction.schemas.d.ts +24 -24
- package/package.json +1 -1
|
@@ -2688,4 +2688,290 @@ export type FieldDetailResponse = z.infer<typeof fieldDetailResponseSchema>;
|
|
|
2688
2688
|
export type FieldListResponse = z.infer<typeof fieldListResponseSchema>;
|
|
2689
2689
|
export type RecordPlantingAttributes = z.infer<typeof recordPlantingAttributesSchema>;
|
|
2690
2690
|
export type RecordPlantingInput = z.infer<typeof recordPlantingSchema>;
|
|
2691
|
+
export declare const seasonTimelineEventKindSchema: z.ZodEnum<["harvest", "soil-test", "field-activity", "planting"]>;
|
|
2692
|
+
export declare const seasonTimelineActivityTypeSchema: z.ZodEnum<["weeding", "fertilizer"]>;
|
|
2693
|
+
export declare const seasonTimelineEventAttributesSchema: z.ZodObject<{
|
|
2694
|
+
eventKind: z.ZodEnum<["harvest", "soil-test", "field-activity", "planting"]>;
|
|
2695
|
+
/** ISO timestamp used for chronological sort (desc). */
|
|
2696
|
+
occurredAt: z.ZodString;
|
|
2697
|
+
crop: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2698
|
+
quantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2699
|
+
unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2700
|
+
qualityGrade: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2701
|
+
activityType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["weeding", "fertilizer"]>>>;
|
|
2702
|
+
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2703
|
+
productName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2704
|
+
/** Display label for planting (usually current crop). */
|
|
2705
|
+
cropLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2706
|
+
}, "strip", z.ZodTypeAny, {
|
|
2707
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2708
|
+
occurredAt: string;
|
|
2709
|
+
method?: string | null | undefined;
|
|
2710
|
+
crop?: string | null | undefined;
|
|
2711
|
+
quantity?: number | null | undefined;
|
|
2712
|
+
unit?: string | null | undefined;
|
|
2713
|
+
qualityGrade?: string | null | undefined;
|
|
2714
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2715
|
+
productName?: string | null | undefined;
|
|
2716
|
+
cropLabel?: string | null | undefined;
|
|
2717
|
+
}, {
|
|
2718
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2719
|
+
occurredAt: string;
|
|
2720
|
+
method?: string | null | undefined;
|
|
2721
|
+
crop?: string | null | undefined;
|
|
2722
|
+
quantity?: number | null | undefined;
|
|
2723
|
+
unit?: string | null | undefined;
|
|
2724
|
+
qualityGrade?: string | null | undefined;
|
|
2725
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2726
|
+
productName?: string | null | undefined;
|
|
2727
|
+
cropLabel?: string | null | undefined;
|
|
2728
|
+
}>;
|
|
2729
|
+
export declare const seasonTimelineEventResourceSchema: z.ZodObject<{
|
|
2730
|
+
type: z.ZodLiteral<string>;
|
|
2731
|
+
id: z.ZodString;
|
|
2732
|
+
attributes: z.ZodObject<{
|
|
2733
|
+
eventKind: z.ZodEnum<["harvest", "soil-test", "field-activity", "planting"]>;
|
|
2734
|
+
/** ISO timestamp used for chronological sort (desc). */
|
|
2735
|
+
occurredAt: z.ZodString;
|
|
2736
|
+
crop: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2737
|
+
quantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2738
|
+
unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2739
|
+
qualityGrade: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2740
|
+
activityType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["weeding", "fertilizer"]>>>;
|
|
2741
|
+
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2742
|
+
productName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2743
|
+
/** Display label for planting (usually current crop). */
|
|
2744
|
+
cropLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2745
|
+
}, "strip", z.ZodTypeAny, {
|
|
2746
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2747
|
+
occurredAt: string;
|
|
2748
|
+
method?: string | null | undefined;
|
|
2749
|
+
crop?: string | null | undefined;
|
|
2750
|
+
quantity?: number | null | undefined;
|
|
2751
|
+
unit?: string | null | undefined;
|
|
2752
|
+
qualityGrade?: string | null | undefined;
|
|
2753
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2754
|
+
productName?: string | null | undefined;
|
|
2755
|
+
cropLabel?: string | null | undefined;
|
|
2756
|
+
}, {
|
|
2757
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2758
|
+
occurredAt: string;
|
|
2759
|
+
method?: string | null | undefined;
|
|
2760
|
+
crop?: string | null | undefined;
|
|
2761
|
+
quantity?: number | null | undefined;
|
|
2762
|
+
unit?: string | null | undefined;
|
|
2763
|
+
qualityGrade?: string | null | undefined;
|
|
2764
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2765
|
+
productName?: string | null | undefined;
|
|
2766
|
+
cropLabel?: string | null | undefined;
|
|
2767
|
+
}>;
|
|
2768
|
+
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2769
|
+
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2770
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2771
|
+
}, "strip", z.ZodTypeAny, {
|
|
2772
|
+
type: string;
|
|
2773
|
+
id: string;
|
|
2774
|
+
attributes: {
|
|
2775
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2776
|
+
occurredAt: string;
|
|
2777
|
+
method?: string | null | undefined;
|
|
2778
|
+
crop?: string | null | undefined;
|
|
2779
|
+
quantity?: number | null | undefined;
|
|
2780
|
+
unit?: string | null | undefined;
|
|
2781
|
+
qualityGrade?: string | null | undefined;
|
|
2782
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2783
|
+
productName?: string | null | undefined;
|
|
2784
|
+
cropLabel?: string | null | undefined;
|
|
2785
|
+
};
|
|
2786
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2787
|
+
links?: Record<string, string> | undefined;
|
|
2788
|
+
meta?: Record<string, unknown> | undefined;
|
|
2789
|
+
}, {
|
|
2790
|
+
type: string;
|
|
2791
|
+
id: string;
|
|
2792
|
+
attributes: {
|
|
2793
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2794
|
+
occurredAt: string;
|
|
2795
|
+
method?: string | null | undefined;
|
|
2796
|
+
crop?: string | null | undefined;
|
|
2797
|
+
quantity?: number | null | undefined;
|
|
2798
|
+
unit?: string | null | undefined;
|
|
2799
|
+
qualityGrade?: string | null | undefined;
|
|
2800
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2801
|
+
productName?: string | null | undefined;
|
|
2802
|
+
cropLabel?: string | null | undefined;
|
|
2803
|
+
};
|
|
2804
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2805
|
+
links?: Record<string, string> | undefined;
|
|
2806
|
+
meta?: Record<string, unknown> | undefined;
|
|
2807
|
+
}>;
|
|
2808
|
+
export declare const seasonTimelineListResponseSchema: z.ZodObject<{
|
|
2809
|
+
data: z.ZodArray<z.ZodObject<{
|
|
2810
|
+
type: z.ZodLiteral<string>;
|
|
2811
|
+
id: z.ZodString;
|
|
2812
|
+
attributes: z.ZodObject<{
|
|
2813
|
+
eventKind: z.ZodEnum<["harvest", "soil-test", "field-activity", "planting"]>;
|
|
2814
|
+
/** ISO timestamp used for chronological sort (desc). */
|
|
2815
|
+
occurredAt: z.ZodString;
|
|
2816
|
+
crop: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2817
|
+
quantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2818
|
+
unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2819
|
+
qualityGrade: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2820
|
+
activityType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["weeding", "fertilizer"]>>>;
|
|
2821
|
+
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2822
|
+
productName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2823
|
+
/** Display label for planting (usually current crop). */
|
|
2824
|
+
cropLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2825
|
+
}, "strip", z.ZodTypeAny, {
|
|
2826
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2827
|
+
occurredAt: string;
|
|
2828
|
+
method?: string | null | undefined;
|
|
2829
|
+
crop?: string | null | undefined;
|
|
2830
|
+
quantity?: number | null | undefined;
|
|
2831
|
+
unit?: string | null | undefined;
|
|
2832
|
+
qualityGrade?: string | null | undefined;
|
|
2833
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2834
|
+
productName?: string | null | undefined;
|
|
2835
|
+
cropLabel?: string | null | undefined;
|
|
2836
|
+
}, {
|
|
2837
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2838
|
+
occurredAt: string;
|
|
2839
|
+
method?: string | null | undefined;
|
|
2840
|
+
crop?: string | null | undefined;
|
|
2841
|
+
quantity?: number | null | undefined;
|
|
2842
|
+
unit?: string | null | undefined;
|
|
2843
|
+
qualityGrade?: string | null | undefined;
|
|
2844
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2845
|
+
productName?: string | null | undefined;
|
|
2846
|
+
cropLabel?: string | null | undefined;
|
|
2847
|
+
}>;
|
|
2848
|
+
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2849
|
+
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2850
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2851
|
+
}, "strip", z.ZodTypeAny, {
|
|
2852
|
+
type: string;
|
|
2853
|
+
id: string;
|
|
2854
|
+
attributes: {
|
|
2855
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2856
|
+
occurredAt: string;
|
|
2857
|
+
method?: string | null | undefined;
|
|
2858
|
+
crop?: string | null | undefined;
|
|
2859
|
+
quantity?: number | null | undefined;
|
|
2860
|
+
unit?: string | null | undefined;
|
|
2861
|
+
qualityGrade?: string | null | undefined;
|
|
2862
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2863
|
+
productName?: string | null | undefined;
|
|
2864
|
+
cropLabel?: string | null | undefined;
|
|
2865
|
+
};
|
|
2866
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2867
|
+
links?: Record<string, string> | undefined;
|
|
2868
|
+
meta?: Record<string, unknown> | undefined;
|
|
2869
|
+
}, {
|
|
2870
|
+
type: string;
|
|
2871
|
+
id: string;
|
|
2872
|
+
attributes: {
|
|
2873
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2874
|
+
occurredAt: string;
|
|
2875
|
+
method?: string | null | undefined;
|
|
2876
|
+
crop?: string | null | undefined;
|
|
2877
|
+
quantity?: number | null | undefined;
|
|
2878
|
+
unit?: string | null | undefined;
|
|
2879
|
+
qualityGrade?: string | null | undefined;
|
|
2880
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2881
|
+
productName?: string | null | undefined;
|
|
2882
|
+
cropLabel?: string | null | undefined;
|
|
2883
|
+
};
|
|
2884
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2885
|
+
links?: Record<string, string> | undefined;
|
|
2886
|
+
meta?: Record<string, unknown> | undefined;
|
|
2887
|
+
}>, "many">;
|
|
2888
|
+
included: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2889
|
+
type: z.ZodString;
|
|
2890
|
+
id: z.ZodString;
|
|
2891
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2892
|
+
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2893
|
+
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2894
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2895
|
+
}, "strip", z.ZodTypeAny, {
|
|
2896
|
+
type: string;
|
|
2897
|
+
id: string;
|
|
2898
|
+
attributes?: Record<string, unknown> | undefined;
|
|
2899
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2900
|
+
links?: Record<string, string> | undefined;
|
|
2901
|
+
meta?: Record<string, unknown> | undefined;
|
|
2902
|
+
}, {
|
|
2903
|
+
type: string;
|
|
2904
|
+
id: string;
|
|
2905
|
+
attributes?: Record<string, unknown> | undefined;
|
|
2906
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2907
|
+
links?: Record<string, string> | undefined;
|
|
2908
|
+
meta?: Record<string, unknown> | undefined;
|
|
2909
|
+
}>, "many">>;
|
|
2910
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2911
|
+
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2912
|
+
}, "strip", z.ZodTypeAny, {
|
|
2913
|
+
data: {
|
|
2914
|
+
type: string;
|
|
2915
|
+
id: string;
|
|
2916
|
+
attributes: {
|
|
2917
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2918
|
+
occurredAt: string;
|
|
2919
|
+
method?: string | null | undefined;
|
|
2920
|
+
crop?: string | null | undefined;
|
|
2921
|
+
quantity?: number | null | undefined;
|
|
2922
|
+
unit?: string | null | undefined;
|
|
2923
|
+
qualityGrade?: string | null | undefined;
|
|
2924
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2925
|
+
productName?: string | null | undefined;
|
|
2926
|
+
cropLabel?: string | null | undefined;
|
|
2927
|
+
};
|
|
2928
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2929
|
+
links?: Record<string, string> | undefined;
|
|
2930
|
+
meta?: Record<string, unknown> | undefined;
|
|
2931
|
+
}[];
|
|
2932
|
+
links?: Record<string, string> | undefined;
|
|
2933
|
+
meta?: Record<string, unknown> | undefined;
|
|
2934
|
+
included?: {
|
|
2935
|
+
type: string;
|
|
2936
|
+
id: string;
|
|
2937
|
+
attributes?: Record<string, unknown> | undefined;
|
|
2938
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2939
|
+
links?: Record<string, string> | undefined;
|
|
2940
|
+
meta?: Record<string, unknown> | undefined;
|
|
2941
|
+
}[] | undefined;
|
|
2942
|
+
}, {
|
|
2943
|
+
data: {
|
|
2944
|
+
type: string;
|
|
2945
|
+
id: string;
|
|
2946
|
+
attributes: {
|
|
2947
|
+
eventKind: "harvest" | "soil-test" | "field-activity" | "planting";
|
|
2948
|
+
occurredAt: string;
|
|
2949
|
+
method?: string | null | undefined;
|
|
2950
|
+
crop?: string | null | undefined;
|
|
2951
|
+
quantity?: number | null | undefined;
|
|
2952
|
+
unit?: string | null | undefined;
|
|
2953
|
+
qualityGrade?: string | null | undefined;
|
|
2954
|
+
activityType?: "weeding" | "fertilizer" | null | undefined;
|
|
2955
|
+
productName?: string | null | undefined;
|
|
2956
|
+
cropLabel?: string | null | undefined;
|
|
2957
|
+
};
|
|
2958
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2959
|
+
links?: Record<string, string> | undefined;
|
|
2960
|
+
meta?: Record<string, unknown> | undefined;
|
|
2961
|
+
}[];
|
|
2962
|
+
links?: Record<string, string> | undefined;
|
|
2963
|
+
meta?: Record<string, unknown> | undefined;
|
|
2964
|
+
included?: {
|
|
2965
|
+
type: string;
|
|
2966
|
+
id: string;
|
|
2967
|
+
attributes?: Record<string, unknown> | undefined;
|
|
2968
|
+
relationships?: Record<string, unknown> | undefined;
|
|
2969
|
+
links?: Record<string, string> | undefined;
|
|
2970
|
+
meta?: Record<string, unknown> | undefined;
|
|
2971
|
+
}[] | undefined;
|
|
2972
|
+
}>;
|
|
2973
|
+
export type SeasonTimelineEventKind = z.infer<typeof seasonTimelineEventKindSchema>;
|
|
2974
|
+
export type SeasonTimelineEventAttributes = z.infer<typeof seasonTimelineEventAttributesSchema>;
|
|
2975
|
+
export type SeasonTimelineEventResource = z.infer<typeof seasonTimelineEventResourceSchema>;
|
|
2976
|
+
export type SeasonTimelineListResponse = z.infer<typeof seasonTimelineListResponseSchema>;
|
|
2691
2977
|
//# sourceMappingURL=fields.schemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/fields.schemas.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fields.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/fields.schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -144,3 +144,29 @@ export const fieldDetailResourceSchema = fieldResourceSchema.extend({
|
|
|
144
144
|
export const fieldResponseSchema = jsonApiSingleResponseSchema(fieldResourceSchema);
|
|
145
145
|
export const fieldDetailResponseSchema = jsonApiSingleResponseSchema(fieldDetailResourceSchema);
|
|
146
146
|
export const fieldListResponseSchema = jsonApiCollectionResponseSchema(fieldResourceSchema);
|
|
147
|
+
// ---------------------------------------------------------------------------
|
|
148
|
+
// Season timeline (merged harvests / soil tests / activities / planting)
|
|
149
|
+
// ---------------------------------------------------------------------------
|
|
150
|
+
export const seasonTimelineEventKindSchema = z.enum([
|
|
151
|
+
'harvest',
|
|
152
|
+
'soil-test',
|
|
153
|
+
'field-activity',
|
|
154
|
+
'planting',
|
|
155
|
+
]);
|
|
156
|
+
export const seasonTimelineActivityTypeSchema = z.enum(['weeding', 'fertilizer']);
|
|
157
|
+
export const seasonTimelineEventAttributesSchema = z.object({
|
|
158
|
+
eventKind: seasonTimelineEventKindSchema,
|
|
159
|
+
/** ISO timestamp used for chronological sort (desc). */
|
|
160
|
+
occurredAt: z.string().datetime(),
|
|
161
|
+
crop: z.string().nullable().optional(),
|
|
162
|
+
quantity: z.number().nullable().optional(),
|
|
163
|
+
unit: z.string().nullable().optional(),
|
|
164
|
+
qualityGrade: z.string().nullable().optional(),
|
|
165
|
+
activityType: seasonTimelineActivityTypeSchema.nullable().optional(),
|
|
166
|
+
method: z.string().nullable().optional(),
|
|
167
|
+
productName: z.string().nullable().optional(),
|
|
168
|
+
/** Display label for planting (usually current crop). */
|
|
169
|
+
cropLabel: z.string().nullable().optional(),
|
|
170
|
+
});
|
|
171
|
+
export const seasonTimelineEventResourceSchema = createJsonApiResourceSchema('season-timeline-events', seasonTimelineEventAttributesSchema);
|
|
172
|
+
export const seasonTimelineListResponseSchema = jsonApiCollectionResponseSchema(seasonTimelineEventResourceSchema);
|