@deepintel-ltd/farmpro-contracts 1.11.10 → 1.11.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -64,6 +64,7 @@ export declare const weatherRouter: {
64
64
  message: z.ZodString;
65
65
  fieldId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
66
  date: z.ZodString;
67
+ recommendation: z.ZodOptional<z.ZodString>;
67
68
  recommendations: z.ZodOptional<z.ZodArray<z.ZodObject<{
68
69
  priority: z.ZodNumber;
69
70
  action: z.ZodString;
@@ -173,6 +174,7 @@ export declare const weatherRouter: {
173
174
  riskLevel?: string | undefined;
174
175
  }[] | undefined;
175
176
  fieldId?: string | null | undefined;
177
+ recommendation?: string | undefined;
176
178
  }, {
177
179
  type: "drought" | "heavy-rain" | "frost" | "optimal" | "wind";
178
180
  message: string;
@@ -202,6 +204,7 @@ export declare const weatherRouter: {
202
204
  riskLevel?: string | undefined;
203
205
  }[] | undefined;
204
206
  fieldId?: string | null | undefined;
207
+ recommendation?: string | undefined;
205
208
  }>, "many">>;
206
209
  }, "strip", z.ZodTypeAny, {
207
210
  farmId: string;
@@ -248,6 +251,7 @@ export declare const weatherRouter: {
248
251
  riskLevel?: string | undefined;
249
252
  }[] | undefined;
250
253
  fieldId?: string | null | undefined;
254
+ recommendation?: string | undefined;
251
255
  }[] | undefined;
252
256
  }, {
253
257
  farmId: string;
@@ -294,6 +298,7 @@ export declare const weatherRouter: {
294
298
  riskLevel?: string | undefined;
295
299
  }[] | undefined;
296
300
  fieldId?: string | null | undefined;
301
+ recommendation?: string | undefined;
297
302
  }[] | undefined;
298
303
  }>;
299
304
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -347,6 +352,7 @@ export declare const weatherRouter: {
347
352
  riskLevel?: string | undefined;
348
353
  }[] | undefined;
349
354
  fieldId?: string | null | undefined;
355
+ recommendation?: string | undefined;
350
356
  }[] | undefined;
351
357
  };
352
358
  relationships?: Record<string, unknown> | undefined;
@@ -400,6 +406,7 @@ export declare const weatherRouter: {
400
406
  riskLevel?: string | undefined;
401
407
  }[] | undefined;
402
408
  fieldId?: string | null | undefined;
409
+ recommendation?: string | undefined;
403
410
  }[] | undefined;
404
411
  };
405
412
  relationships?: Record<string, unknown> | undefined;
@@ -479,6 +486,7 @@ export declare const weatherRouter: {
479
486
  riskLevel?: string | undefined;
480
487
  }[] | undefined;
481
488
  fieldId?: string | null | undefined;
489
+ recommendation?: string | undefined;
482
490
  }[] | undefined;
483
491
  };
484
492
  relationships?: Record<string, unknown> | undefined;
@@ -544,6 +552,7 @@ export declare const weatherRouter: {
544
552
  riskLevel?: string | undefined;
545
553
  }[] | undefined;
546
554
  fieldId?: string | null | undefined;
555
+ recommendation?: string | undefined;
547
556
  }[] | undefined;
548
557
  };
549
558
  relationships?: Record<string, unknown> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"weather.routes.d.ts","sourceRoot":"","sources":["../../src/routes/weather.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BxB,CAAC"}
1
+ {"version":3,"file":"weather.routes.d.ts","sourceRoot":"","sources":["../../src/routes/weather.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BxB,CAAC"}
@@ -972,6 +972,197 @@ export declare const conversationListResponseSchema: z.ZodObject<{
972
972
  meta?: Record<string, unknown> | undefined;
973
973
  }[] | undefined;
974
974
  }>;
975
+ export declare const updateConversationTitleRequestSchema: z.ZodObject<{
976
+ title: z.ZodString;
977
+ }, "strip", z.ZodTypeAny, {
978
+ title: string;
979
+ }, {
980
+ title: string;
981
+ }>;
982
+ export declare const conversationResourceAttributesSchema: z.ZodObject<{
983
+ title: z.ZodNullable<z.ZodString>;
984
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
985
+ farmId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
986
+ updatedAt: z.ZodOptional<z.ZodString>;
987
+ }, "strip", z.ZodTypeAny, {
988
+ title: string | null;
989
+ updatedAt?: string | undefined;
990
+ summary?: string | null | undefined;
991
+ farmId?: string | null | undefined;
992
+ }, {
993
+ title: string | null;
994
+ updatedAt?: string | undefined;
995
+ summary?: string | null | undefined;
996
+ farmId?: string | null | undefined;
997
+ }>;
998
+ export declare const conversationResourceSchema: z.ZodObject<{
999
+ type: z.ZodLiteral<string>;
1000
+ id: z.ZodString;
1001
+ attributes: z.ZodObject<{
1002
+ title: z.ZodNullable<z.ZodString>;
1003
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1004
+ farmId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1005
+ updatedAt: z.ZodOptional<z.ZodString>;
1006
+ }, "strip", z.ZodTypeAny, {
1007
+ title: string | null;
1008
+ updatedAt?: string | undefined;
1009
+ summary?: string | null | undefined;
1010
+ farmId?: string | null | undefined;
1011
+ }, {
1012
+ title: string | null;
1013
+ updatedAt?: string | undefined;
1014
+ summary?: string | null | undefined;
1015
+ farmId?: string | null | undefined;
1016
+ }>;
1017
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1018
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1019
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ type: string;
1022
+ id: string;
1023
+ attributes: {
1024
+ title: string | null;
1025
+ updatedAt?: string | undefined;
1026
+ summary?: string | null | undefined;
1027
+ farmId?: string | null | undefined;
1028
+ };
1029
+ relationships?: Record<string, unknown> | undefined;
1030
+ links?: Record<string, string> | undefined;
1031
+ meta?: Record<string, unknown> | undefined;
1032
+ }, {
1033
+ type: string;
1034
+ id: string;
1035
+ attributes: {
1036
+ title: string | null;
1037
+ updatedAt?: string | undefined;
1038
+ summary?: string | null | undefined;
1039
+ farmId?: string | null | undefined;
1040
+ };
1041
+ relationships?: Record<string, unknown> | undefined;
1042
+ links?: Record<string, string> | undefined;
1043
+ meta?: Record<string, unknown> | undefined;
1044
+ }>;
1045
+ export declare const conversationResponseSchema: z.ZodObject<{
1046
+ data: z.ZodObject<{
1047
+ type: z.ZodLiteral<string>;
1048
+ id: z.ZodString;
1049
+ attributes: z.ZodObject<{
1050
+ title: z.ZodNullable<z.ZodString>;
1051
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1052
+ farmId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1053
+ updatedAt: z.ZodOptional<z.ZodString>;
1054
+ }, "strip", z.ZodTypeAny, {
1055
+ title: string | null;
1056
+ updatedAt?: string | undefined;
1057
+ summary?: string | null | undefined;
1058
+ farmId?: string | null | undefined;
1059
+ }, {
1060
+ title: string | null;
1061
+ updatedAt?: string | undefined;
1062
+ summary?: string | null | undefined;
1063
+ farmId?: string | null | undefined;
1064
+ }>;
1065
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1066
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1067
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1068
+ }, "strip", z.ZodTypeAny, {
1069
+ type: string;
1070
+ id: string;
1071
+ attributes: {
1072
+ title: string | null;
1073
+ updatedAt?: string | undefined;
1074
+ summary?: string | null | undefined;
1075
+ farmId?: string | null | undefined;
1076
+ };
1077
+ relationships?: Record<string, unknown> | undefined;
1078
+ links?: Record<string, string> | undefined;
1079
+ meta?: Record<string, unknown> | undefined;
1080
+ }, {
1081
+ type: string;
1082
+ id: string;
1083
+ attributes: {
1084
+ title: string | null;
1085
+ updatedAt?: string | undefined;
1086
+ summary?: string | null | undefined;
1087
+ farmId?: string | null | undefined;
1088
+ };
1089
+ relationships?: Record<string, unknown> | undefined;
1090
+ links?: Record<string, string> | undefined;
1091
+ meta?: Record<string, unknown> | undefined;
1092
+ }>;
1093
+ included: z.ZodOptional<z.ZodArray<z.ZodObject<{
1094
+ type: z.ZodString;
1095
+ id: z.ZodString;
1096
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1097
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1098
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1099
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ type: string;
1102
+ id: string;
1103
+ attributes?: Record<string, unknown> | undefined;
1104
+ relationships?: Record<string, unknown> | undefined;
1105
+ links?: Record<string, string> | undefined;
1106
+ meta?: Record<string, unknown> | undefined;
1107
+ }, {
1108
+ type: string;
1109
+ id: string;
1110
+ attributes?: Record<string, unknown> | undefined;
1111
+ relationships?: Record<string, unknown> | undefined;
1112
+ links?: Record<string, string> | undefined;
1113
+ meta?: Record<string, unknown> | undefined;
1114
+ }>, "many">>;
1115
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1116
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1117
+ }, "strip", z.ZodTypeAny, {
1118
+ data: {
1119
+ type: string;
1120
+ id: string;
1121
+ attributes: {
1122
+ title: string | null;
1123
+ updatedAt?: string | undefined;
1124
+ summary?: string | null | undefined;
1125
+ farmId?: string | null | undefined;
1126
+ };
1127
+ relationships?: Record<string, unknown> | undefined;
1128
+ links?: Record<string, string> | undefined;
1129
+ meta?: Record<string, unknown> | undefined;
1130
+ };
1131
+ links?: Record<string, string> | undefined;
1132
+ meta?: Record<string, unknown> | undefined;
1133
+ included?: {
1134
+ type: string;
1135
+ id: string;
1136
+ attributes?: Record<string, unknown> | undefined;
1137
+ relationships?: Record<string, unknown> | undefined;
1138
+ links?: Record<string, string> | undefined;
1139
+ meta?: Record<string, unknown> | undefined;
1140
+ }[] | undefined;
1141
+ }, {
1142
+ data: {
1143
+ type: string;
1144
+ id: string;
1145
+ attributes: {
1146
+ title: string | null;
1147
+ updatedAt?: string | undefined;
1148
+ summary?: string | null | undefined;
1149
+ farmId?: string | null | undefined;
1150
+ };
1151
+ relationships?: Record<string, unknown> | undefined;
1152
+ links?: Record<string, string> | undefined;
1153
+ meta?: Record<string, unknown> | undefined;
1154
+ };
1155
+ links?: Record<string, string> | undefined;
1156
+ meta?: Record<string, unknown> | undefined;
1157
+ included?: {
1158
+ type: string;
1159
+ id: string;
1160
+ attributes?: Record<string, unknown> | undefined;
1161
+ relationships?: Record<string, unknown> | undefined;
1162
+ links?: Record<string, string> | undefined;
1163
+ meta?: Record<string, unknown> | undefined;
1164
+ }[] | undefined;
1165
+ }>;
975
1166
  export declare const geojsonCrsSchema: z.ZodObject<{
976
1167
  type: z.ZodLiteral<"name">;
977
1168
  properties: z.ZodObject<{
@@ -3483,13 +3674,17 @@ export declare const farmBrainProposedActionSchema: z.ZodObject<{
3483
3674
  }>;
3484
3675
  export declare const farmBrainChatRequestSchema: z.ZodObject<{
3485
3676
  message: z.ZodString;
3677
+ /** Continue an existing AgentConversation when set */
3678
+ conversationId: z.ZodOptional<z.ZodString>;
3486
3679
  /** When true (default), write actions are proposals only until Accept */
3487
3680
  supervisedMode: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3488
3681
  }, "strip", z.ZodTypeAny, {
3489
3682
  message: string;
3490
3683
  supervisedMode: boolean;
3684
+ conversationId?: string | undefined;
3491
3685
  }, {
3492
3686
  message: string;
3687
+ conversationId?: string | undefined;
3493
3688
  supervisedMode?: boolean | undefined;
3494
3689
  }>;
3495
3690
  export declare const farmBrainChatResponseSchema: z.ZodObject<{
@@ -3680,14 +3875,17 @@ export declare const dailyBriefingResponseSchema: z.ZodObject<{
3680
3875
  export declare const farmBrainLocalizedRequestSchema: z.ZodObject<{
3681
3876
  message: z.ZodString;
3682
3877
  language: z.ZodString;
3878
+ conversationId: z.ZodOptional<z.ZodString>;
3683
3879
  supervisedMode: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3684
3880
  }, "strip", z.ZodTypeAny, {
3685
3881
  message: string;
3686
3882
  language: string;
3687
3883
  supervisedMode: boolean;
3884
+ conversationId?: string | undefined;
3688
3885
  }, {
3689
3886
  message: string;
3690
3887
  language: string;
3888
+ conversationId?: string | undefined;
3691
3889
  supervisedMode?: boolean | undefined;
3692
3890
  }>;
3693
3891
  export declare const farmBrainLocalizedResponseSchema: z.ZodObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"agents.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/agents.schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"agents.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/agents.schemas.ts"],"names":[],"mappings":"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"}
@@ -75,6 +75,17 @@ export const conversationListAttributesSchema = z.object({
75
75
  export const conversationListResourceSchema = createJsonApiResourceSchema('conversation-lists', conversationListAttributesSchema);
76
76
  // Conversation list response
77
77
  export const conversationListResponseSchema = jsonApiSingleResponseSchema(conversationListResourceSchema);
78
+ export const updateConversationTitleRequestSchema = z.object({
79
+ title: z.string().min(1).max(200),
80
+ });
81
+ export const conversationResourceAttributesSchema = z.object({
82
+ title: z.string().nullable(),
83
+ summary: z.string().nullable().optional(),
84
+ farmId: z.string().uuid().nullable().optional(),
85
+ updatedAt: z.string().datetime().optional(),
86
+ });
87
+ export const conversationResourceSchema = createJsonApiResourceSchema('conversations', conversationResourceAttributesSchema);
88
+ export const conversationResponseSchema = jsonApiSingleResponseSchema(conversationResourceSchema);
78
89
  // Survey GeoJSON schemas
79
90
  export const geojsonCrsSchema = z.object({
80
91
  type: z.literal('name'),
@@ -274,6 +285,8 @@ export const farmBrainProposedActionSchema = z.object({
274
285
  });
275
286
  export const farmBrainChatRequestSchema = z.object({
276
287
  message: z.string().min(1).max(5000),
288
+ /** Continue an existing AgentConversation when set */
289
+ conversationId: z.string().uuid().optional(),
277
290
  /** When true (default), write actions are proposals only until Accept */
278
291
  supervisedMode: z.boolean().optional().default(true),
279
292
  });
@@ -305,6 +318,7 @@ export const dailyBriefingResponseSchema = z.object({
305
318
  export const farmBrainLocalizedRequestSchema = z.object({
306
319
  message: z.string().min(1).max(5000),
307
320
  language: z.string().min(2).max(20), // e.g. en, fr, sw, yo, ha, am
321
+ conversationId: z.string().uuid().optional(),
308
322
  supervisedMode: z.boolean().optional().default(true),
309
323
  });
310
324
  export const farmBrainLocalizedResponseSchema = z.object({
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const notificationTypeSchema: z.ZodEnum<["field_alert", "weather", "task", "payment", "system", "subscription", "team", "camera"]>;
3
- export declare const notificationSourceSchema: z.ZodEnum<["notification", "field_alert", "vendor_payment"]>;
3
+ export declare const notificationSourceSchema: z.ZodEnum<["notification", "field_alert", "vendor_payment", "weather_alert"]>;
4
4
  export declare const notificationAttributesSchema: z.ZodObject<{
5
5
  userId: z.ZodString;
6
6
  farmId: z.ZodNullable<z.ZodString>;
@@ -9,12 +9,12 @@ export declare const notificationAttributesSchema: z.ZodObject<{
9
9
  body: z.ZodString;
10
10
  readAt: z.ZodNullable<z.ZodString>;
11
11
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
12
- source: z.ZodEnum<["notification", "field_alert", "vendor_payment"]>;
12
+ source: z.ZodEnum<["notification", "field_alert", "vendor_payment", "weather_alert"]>;
13
13
  createdAt: z.ZodString;
14
14
  }, "strip", z.ZodTypeAny, {
15
15
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
16
16
  title: string;
17
- source: "field_alert" | "notification" | "vendor_payment";
17
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
18
18
  createdAt: string;
19
19
  metadata: Record<string, unknown> | null;
20
20
  body: string;
@@ -24,7 +24,7 @@ export declare const notificationAttributesSchema: z.ZodObject<{
24
24
  }, {
25
25
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
26
26
  title: string;
27
- source: "field_alert" | "notification" | "vendor_payment";
27
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
28
28
  createdAt: string;
29
29
  metadata: Record<string, unknown> | null;
30
30
  body: string;
@@ -43,12 +43,12 @@ export declare const notificationResourceSchema: z.ZodObject<{
43
43
  body: z.ZodString;
44
44
  readAt: z.ZodNullable<z.ZodString>;
45
45
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
46
- source: z.ZodEnum<["notification", "field_alert", "vendor_payment"]>;
46
+ source: z.ZodEnum<["notification", "field_alert", "vendor_payment", "weather_alert"]>;
47
47
  createdAt: z.ZodString;
48
48
  }, "strip", z.ZodTypeAny, {
49
49
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
50
50
  title: string;
51
- source: "field_alert" | "notification" | "vendor_payment";
51
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
52
52
  createdAt: string;
53
53
  metadata: Record<string, unknown> | null;
54
54
  body: string;
@@ -58,7 +58,7 @@ export declare const notificationResourceSchema: z.ZodObject<{
58
58
  }, {
59
59
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
60
60
  title: string;
61
- source: "field_alert" | "notification" | "vendor_payment";
61
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
62
62
  createdAt: string;
63
63
  metadata: Record<string, unknown> | null;
64
64
  body: string;
@@ -75,7 +75,7 @@ export declare const notificationResourceSchema: z.ZodObject<{
75
75
  attributes: {
76
76
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
77
77
  title: string;
78
- source: "field_alert" | "notification" | "vendor_payment";
78
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
79
79
  createdAt: string;
80
80
  metadata: Record<string, unknown> | null;
81
81
  body: string;
@@ -92,7 +92,7 @@ export declare const notificationResourceSchema: z.ZodObject<{
92
92
  attributes: {
93
93
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
94
94
  title: string;
95
- source: "field_alert" | "notification" | "vendor_payment";
95
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
96
96
  createdAt: string;
97
97
  metadata: Record<string, unknown> | null;
98
98
  body: string;
@@ -116,12 +116,12 @@ export declare const notificationResponseSchema: z.ZodObject<{
116
116
  body: z.ZodString;
117
117
  readAt: z.ZodNullable<z.ZodString>;
118
118
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
119
- source: z.ZodEnum<["notification", "field_alert", "vendor_payment"]>;
119
+ source: z.ZodEnum<["notification", "field_alert", "vendor_payment", "weather_alert"]>;
120
120
  createdAt: z.ZodString;
121
121
  }, "strip", z.ZodTypeAny, {
122
122
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
123
123
  title: string;
124
- source: "field_alert" | "notification" | "vendor_payment";
124
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
125
125
  createdAt: string;
126
126
  metadata: Record<string, unknown> | null;
127
127
  body: string;
@@ -131,7 +131,7 @@ export declare const notificationResponseSchema: z.ZodObject<{
131
131
  }, {
132
132
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
133
133
  title: string;
134
- source: "field_alert" | "notification" | "vendor_payment";
134
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
135
135
  createdAt: string;
136
136
  metadata: Record<string, unknown> | null;
137
137
  body: string;
@@ -148,7 +148,7 @@ export declare const notificationResponseSchema: z.ZodObject<{
148
148
  attributes: {
149
149
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
150
150
  title: string;
151
- source: "field_alert" | "notification" | "vendor_payment";
151
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
152
152
  createdAt: string;
153
153
  metadata: Record<string, unknown> | null;
154
154
  body: string;
@@ -165,7 +165,7 @@ export declare const notificationResponseSchema: z.ZodObject<{
165
165
  attributes: {
166
166
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
167
167
  title: string;
168
- source: "field_alert" | "notification" | "vendor_payment";
168
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
169
169
  createdAt: string;
170
170
  metadata: Record<string, unknown> | null;
171
171
  body: string;
@@ -208,7 +208,7 @@ export declare const notificationResponseSchema: z.ZodObject<{
208
208
  attributes: {
209
209
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
210
210
  title: string;
211
- source: "field_alert" | "notification" | "vendor_payment";
211
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
212
212
  createdAt: string;
213
213
  metadata: Record<string, unknown> | null;
214
214
  body: string;
@@ -237,7 +237,7 @@ export declare const notificationResponseSchema: z.ZodObject<{
237
237
  attributes: {
238
238
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
239
239
  title: string;
240
- source: "field_alert" | "notification" | "vendor_payment";
240
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
241
241
  createdAt: string;
242
242
  metadata: Record<string, unknown> | null;
243
243
  body: string;
@@ -272,12 +272,12 @@ export declare const notificationListResponseSchema: z.ZodObject<{
272
272
  body: z.ZodString;
273
273
  readAt: z.ZodNullable<z.ZodString>;
274
274
  metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
275
- source: z.ZodEnum<["notification", "field_alert", "vendor_payment"]>;
275
+ source: z.ZodEnum<["notification", "field_alert", "vendor_payment", "weather_alert"]>;
276
276
  createdAt: z.ZodString;
277
277
  }, "strip", z.ZodTypeAny, {
278
278
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
279
279
  title: string;
280
- source: "field_alert" | "notification" | "vendor_payment";
280
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
281
281
  createdAt: string;
282
282
  metadata: Record<string, unknown> | null;
283
283
  body: string;
@@ -287,7 +287,7 @@ export declare const notificationListResponseSchema: z.ZodObject<{
287
287
  }, {
288
288
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
289
289
  title: string;
290
- source: "field_alert" | "notification" | "vendor_payment";
290
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
291
291
  createdAt: string;
292
292
  metadata: Record<string, unknown> | null;
293
293
  body: string;
@@ -304,7 +304,7 @@ export declare const notificationListResponseSchema: z.ZodObject<{
304
304
  attributes: {
305
305
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
306
306
  title: string;
307
- source: "field_alert" | "notification" | "vendor_payment";
307
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
308
308
  createdAt: string;
309
309
  metadata: Record<string, unknown> | null;
310
310
  body: string;
@@ -321,7 +321,7 @@ export declare const notificationListResponseSchema: z.ZodObject<{
321
321
  attributes: {
322
322
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
323
323
  title: string;
324
- source: "field_alert" | "notification" | "vendor_payment";
324
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
325
325
  createdAt: string;
326
326
  metadata: Record<string, unknown> | null;
327
327
  body: string;
@@ -364,7 +364,7 @@ export declare const notificationListResponseSchema: z.ZodObject<{
364
364
  attributes: {
365
365
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
366
366
  title: string;
367
- source: "field_alert" | "notification" | "vendor_payment";
367
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
368
368
  createdAt: string;
369
369
  metadata: Record<string, unknown> | null;
370
370
  body: string;
@@ -393,7 +393,7 @@ export declare const notificationListResponseSchema: z.ZodObject<{
393
393
  attributes: {
394
394
  type: "team" | "weather" | "field_alert" | "task" | "payment" | "system" | "subscription" | "camera";
395
395
  title: string;
396
- source: "field_alert" | "notification" | "vendor_payment";
396
+ source: "field_alert" | "notification" | "vendor_payment" | "weather_alert";
397
397
  createdAt: string;
398
398
  metadata: Record<string, unknown> | null;
399
399
  body: string;
@@ -1 +1 @@
1
- {"version":3,"file":"notifications.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/notifications.schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,sBAAsB,sGASjC,CAAC;AAEH,eAAO,MAAM,wBAAwB,8DAInC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1C,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQpC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
1
+ {"version":3,"file":"notifications.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/notifications.schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,sBAAsB,sGASjC,CAAC;AAEH,eAAO,MAAM,wBAAwB,+EAKnC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1C,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQpC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
@@ -14,6 +14,7 @@ export const notificationSourceSchema = z.enum([
14
14
  'notification',
15
15
  'field_alert',
16
16
  'vendor_payment',
17
+ 'weather_alert',
17
18
  ]);
18
19
  export const notificationAttributesSchema = z.object({
19
20
  userId: z.string().uuid(),