@deepintel-ltd/farmpro-contracts 1.20.1 → 1.22.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/agents.routes.d.ts +18 -18
- package/dist/routes/fertigation.routes.d.ts +108 -108
- package/dist/routes/fields.routes.d.ts +2265 -7
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +62 -3
- package/dist/routes/irrigation.routes.d.ts +22 -22
- package/dist/schemas/agents.schemas.d.ts +21 -21
- package/dist/schemas/agents.schemas.d.ts.map +1 -1
- package/dist/schemas/agents.schemas.js +1 -0
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/fields.schemas.d.ts +166 -5
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +21 -0
- package/dist/schemas/irrigation.schemas.d.ts +16 -16
- package/package.json +1 -1
|
@@ -5023,18 +5023,18 @@ export declare const agentsRouter: {
|
|
|
5023
5023
|
modelUsed: z.ZodOptional<z.ZodString>;
|
|
5024
5024
|
proposedActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5025
5025
|
id: z.ZodString;
|
|
5026
|
-
type: z.ZodEnum<["create_task", "log_expense", "log_revenue", "dismiss_alert", "open_entity", "record_planting", "record_harvest", "record_field_activity"]>;
|
|
5026
|
+
type: z.ZodEnum<["create_task", "log_expense", "log_revenue", "dismiss_alert", "open_entity", "record_planting", "record_harvest", "record_field_activity", "end_season"]>;
|
|
5027
5027
|
title: z.ZodString;
|
|
5028
5028
|
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5029
5029
|
requiresConfirmation: z.ZodDefault<z.ZodBoolean>;
|
|
5030
5030
|
}, "strip", z.ZodTypeAny, {
|
|
5031
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5031
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5032
5032
|
id: string;
|
|
5033
5033
|
title: string;
|
|
5034
5034
|
payload: Record<string, unknown>;
|
|
5035
5035
|
requiresConfirmation: boolean;
|
|
5036
5036
|
}, {
|
|
5037
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5037
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5038
5038
|
id: string;
|
|
5039
5039
|
title: string;
|
|
5040
5040
|
payload: Record<string, unknown>;
|
|
@@ -5046,7 +5046,7 @@ export declare const agentsRouter: {
|
|
|
5046
5046
|
conversationId?: string | undefined;
|
|
5047
5047
|
modelUsed?: string | undefined;
|
|
5048
5048
|
proposedActions?: {
|
|
5049
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5049
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5050
5050
|
id: string;
|
|
5051
5051
|
title: string;
|
|
5052
5052
|
payload: Record<string, unknown>;
|
|
@@ -5058,7 +5058,7 @@ export declare const agentsRouter: {
|
|
|
5058
5058
|
conversationId?: string | undefined;
|
|
5059
5059
|
modelUsed?: string | undefined;
|
|
5060
5060
|
proposedActions?: {
|
|
5061
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5061
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5062
5062
|
id: string;
|
|
5063
5063
|
title: string;
|
|
5064
5064
|
payload: Record<string, unknown>;
|
|
@@ -5074,7 +5074,7 @@ export declare const agentsRouter: {
|
|
|
5074
5074
|
conversationId?: string | undefined;
|
|
5075
5075
|
modelUsed?: string | undefined;
|
|
5076
5076
|
proposedActions?: {
|
|
5077
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5077
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5078
5078
|
id: string;
|
|
5079
5079
|
title: string;
|
|
5080
5080
|
payload: Record<string, unknown>;
|
|
@@ -5090,7 +5090,7 @@ export declare const agentsRouter: {
|
|
|
5090
5090
|
conversationId?: string | undefined;
|
|
5091
5091
|
modelUsed?: string | undefined;
|
|
5092
5092
|
proposedActions?: {
|
|
5093
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5093
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5094
5094
|
id: string;
|
|
5095
5095
|
title: string;
|
|
5096
5096
|
payload: Record<string, unknown>;
|
|
@@ -5108,7 +5108,7 @@ export declare const agentsRouter: {
|
|
|
5108
5108
|
conversationId?: string | undefined;
|
|
5109
5109
|
modelUsed?: string | undefined;
|
|
5110
5110
|
proposedActions?: {
|
|
5111
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5111
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5112
5112
|
id: string;
|
|
5113
5113
|
title: string;
|
|
5114
5114
|
payload: Record<string, unknown>;
|
|
@@ -5126,7 +5126,7 @@ export declare const agentsRouter: {
|
|
|
5126
5126
|
conversationId?: string | undefined;
|
|
5127
5127
|
modelUsed?: string | undefined;
|
|
5128
5128
|
proposedActions?: {
|
|
5129
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5129
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5130
5130
|
id: string;
|
|
5131
5131
|
title: string;
|
|
5132
5132
|
payload: Record<string, unknown>;
|
|
@@ -5703,18 +5703,18 @@ export declare const agentsRouter: {
|
|
|
5703
5703
|
modelUsed: z.ZodOptional<z.ZodString>;
|
|
5704
5704
|
proposedActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5705
5705
|
id: z.ZodString;
|
|
5706
|
-
type: z.ZodEnum<["create_task", "log_expense", "log_revenue", "dismiss_alert", "open_entity", "record_planting", "record_harvest", "record_field_activity"]>;
|
|
5706
|
+
type: z.ZodEnum<["create_task", "log_expense", "log_revenue", "dismiss_alert", "open_entity", "record_planting", "record_harvest", "record_field_activity", "end_season"]>;
|
|
5707
5707
|
title: z.ZodString;
|
|
5708
5708
|
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5709
5709
|
requiresConfirmation: z.ZodDefault<z.ZodBoolean>;
|
|
5710
5710
|
}, "strip", z.ZodTypeAny, {
|
|
5711
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5711
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5712
5712
|
id: string;
|
|
5713
5713
|
title: string;
|
|
5714
5714
|
payload: Record<string, unknown>;
|
|
5715
5715
|
requiresConfirmation: boolean;
|
|
5716
5716
|
}, {
|
|
5717
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5717
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5718
5718
|
id: string;
|
|
5719
5719
|
title: string;
|
|
5720
5720
|
payload: Record<string, unknown>;
|
|
@@ -5727,7 +5727,7 @@ export declare const agentsRouter: {
|
|
|
5727
5727
|
conversationId?: string | undefined;
|
|
5728
5728
|
modelUsed?: string | undefined;
|
|
5729
5729
|
proposedActions?: {
|
|
5730
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5730
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5731
5731
|
id: string;
|
|
5732
5732
|
title: string;
|
|
5733
5733
|
payload: Record<string, unknown>;
|
|
@@ -5740,7 +5740,7 @@ export declare const agentsRouter: {
|
|
|
5740
5740
|
conversationId?: string | undefined;
|
|
5741
5741
|
modelUsed?: string | undefined;
|
|
5742
5742
|
proposedActions?: {
|
|
5743
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5743
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5744
5744
|
id: string;
|
|
5745
5745
|
title: string;
|
|
5746
5746
|
payload: Record<string, unknown>;
|
|
@@ -5757,7 +5757,7 @@ export declare const agentsRouter: {
|
|
|
5757
5757
|
conversationId?: string | undefined;
|
|
5758
5758
|
modelUsed?: string | undefined;
|
|
5759
5759
|
proposedActions?: {
|
|
5760
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5760
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5761
5761
|
id: string;
|
|
5762
5762
|
title: string;
|
|
5763
5763
|
payload: Record<string, unknown>;
|
|
@@ -5774,7 +5774,7 @@ export declare const agentsRouter: {
|
|
|
5774
5774
|
conversationId?: string | undefined;
|
|
5775
5775
|
modelUsed?: string | undefined;
|
|
5776
5776
|
proposedActions?: {
|
|
5777
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5777
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5778
5778
|
id: string;
|
|
5779
5779
|
title: string;
|
|
5780
5780
|
payload: Record<string, unknown>;
|
|
@@ -5793,7 +5793,7 @@ export declare const agentsRouter: {
|
|
|
5793
5793
|
conversationId?: string | undefined;
|
|
5794
5794
|
modelUsed?: string | undefined;
|
|
5795
5795
|
proposedActions?: {
|
|
5796
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5796
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5797
5797
|
id: string;
|
|
5798
5798
|
title: string;
|
|
5799
5799
|
payload: Record<string, unknown>;
|
|
@@ -5812,7 +5812,7 @@ export declare const agentsRouter: {
|
|
|
5812
5812
|
conversationId?: string | undefined;
|
|
5813
5813
|
modelUsed?: string | undefined;
|
|
5814
5814
|
proposedActions?: {
|
|
5815
|
-
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity";
|
|
5815
|
+
type: "create_task" | "log_expense" | "log_revenue" | "dismiss_alert" | "open_entity" | "record_planting" | "record_harvest" | "record_field_activity" | "end_season";
|
|
5816
5816
|
id: string;
|
|
5817
5817
|
title: string;
|
|
5818
5818
|
payload: Record<string, unknown>;
|