@deepintel-ltd/farmpro-contracts 1.18.0 → 1.20.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/accounting.routes.d.ts +295 -0
- package/dist/routes/accounting.routes.d.ts.map +1 -1
- package/dist/routes/accounting.routes.js +13 -1
- package/dist/routes/agent-workflows.routes.d.ts +228 -48
- package/dist/routes/agent-workflows.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +80 -80
- package/dist/routes/field-monitoring.routes.d.ts +174 -30
- package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.d.ts +1690 -156
- package/dist/routes/field-observations.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.js +13 -1
- package/dist/routes/weather.routes.d.ts +49 -10
- package/dist/routes/weather.routes.d.ts.map +1 -1
- package/dist/schemas/accounting.schemas.d.ts +100 -0
- package/dist/schemas/accounting.schemas.d.ts.map +1 -1
- package/dist/schemas/accounting.schemas.js +3 -0
- package/dist/schemas/agent-workflows.schemas.d.ts +262 -52
- package/dist/schemas/agent-workflows.schemas.d.ts.map +1 -1
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +91 -16
- package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.d.ts +623 -132
- package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.js +32 -4
- package/dist/schemas/recommendations.schemas.d.ts +26 -2
- package/dist/schemas/recommendations.schemas.d.ts.map +1 -1
- package/dist/schemas/recommendations.schemas.js +3 -0
- package/dist/schemas/weather.schemas.d.ts +148 -28
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -69,6 +69,9 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
69
69
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
70
70
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
71
71
|
availability: z.ZodOptional<z.ZodString>;
|
|
72
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
73
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
74
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
72
75
|
}, "strip", z.ZodTypeAny, {
|
|
73
76
|
name: string;
|
|
74
77
|
quantity: number;
|
|
@@ -77,6 +80,9 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
77
80
|
totalCost?: number | undefined;
|
|
78
81
|
costPerUnit?: number | undefined;
|
|
79
82
|
availability?: string | undefined;
|
|
83
|
+
inStock?: boolean | undefined;
|
|
84
|
+
stockQuantity?: number | undefined;
|
|
85
|
+
applicationMethod?: string | undefined;
|
|
80
86
|
}, {
|
|
81
87
|
name: string;
|
|
82
88
|
quantity: number;
|
|
@@ -85,6 +91,9 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
85
91
|
totalCost?: number | undefined;
|
|
86
92
|
costPerUnit?: number | undefined;
|
|
87
93
|
availability?: string | undefined;
|
|
94
|
+
inStock?: boolean | undefined;
|
|
95
|
+
stockQuantity?: number | undefined;
|
|
96
|
+
applicationMethod?: string | undefined;
|
|
88
97
|
}>, "many">>;
|
|
89
98
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
90
99
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -97,6 +106,7 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
97
106
|
details: string;
|
|
98
107
|
timing: string;
|
|
99
108
|
confidence?: number | undefined;
|
|
109
|
+
applicationMethod?: string | undefined;
|
|
100
110
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
101
111
|
materials?: {
|
|
102
112
|
name: string;
|
|
@@ -106,8 +116,10 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
106
116
|
totalCost?: number | undefined;
|
|
107
117
|
costPerUnit?: number | undefined;
|
|
108
118
|
availability?: string | undefined;
|
|
119
|
+
inStock?: boolean | undefined;
|
|
120
|
+
stockQuantity?: number | undefined;
|
|
121
|
+
applicationMethod?: string | undefined;
|
|
109
122
|
}[] | undefined;
|
|
110
|
-
applicationMethod?: string | undefined;
|
|
111
123
|
expectedOutcome?: string | undefined;
|
|
112
124
|
preventiveMeasures?: string[] | undefined;
|
|
113
125
|
estimatedTime?: string | undefined;
|
|
@@ -118,6 +130,7 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
118
130
|
details: string;
|
|
119
131
|
timing: string;
|
|
120
132
|
confidence?: number | undefined;
|
|
133
|
+
applicationMethod?: string | undefined;
|
|
121
134
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
122
135
|
materials?: {
|
|
123
136
|
name: string;
|
|
@@ -127,8 +140,10 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
127
140
|
totalCost?: number | undefined;
|
|
128
141
|
costPerUnit?: number | undefined;
|
|
129
142
|
availability?: string | undefined;
|
|
143
|
+
inStock?: boolean | undefined;
|
|
144
|
+
stockQuantity?: number | undefined;
|
|
145
|
+
applicationMethod?: string | undefined;
|
|
130
146
|
}[] | undefined;
|
|
131
|
-
applicationMethod?: string | undefined;
|
|
132
147
|
expectedOutcome?: string | undefined;
|
|
133
148
|
preventiveMeasures?: string[] | undefined;
|
|
134
149
|
estimatedTime?: string | undefined;
|
|
@@ -146,6 +161,7 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
146
161
|
details: string;
|
|
147
162
|
timing: string;
|
|
148
163
|
confidence?: number | undefined;
|
|
164
|
+
applicationMethod?: string | undefined;
|
|
149
165
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
150
166
|
materials?: {
|
|
151
167
|
name: string;
|
|
@@ -155,8 +171,10 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
155
171
|
totalCost?: number | undefined;
|
|
156
172
|
costPerUnit?: number | undefined;
|
|
157
173
|
availability?: string | undefined;
|
|
174
|
+
inStock?: boolean | undefined;
|
|
175
|
+
stockQuantity?: number | undefined;
|
|
176
|
+
applicationMethod?: string | undefined;
|
|
158
177
|
}[] | undefined;
|
|
159
|
-
applicationMethod?: string | undefined;
|
|
160
178
|
expectedOutcome?: string | undefined;
|
|
161
179
|
preventiveMeasures?: string[] | undefined;
|
|
162
180
|
estimatedTime?: string | undefined;
|
|
@@ -176,6 +194,7 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
176
194
|
details: string;
|
|
177
195
|
timing: string;
|
|
178
196
|
confidence?: number | undefined;
|
|
197
|
+
applicationMethod?: string | undefined;
|
|
179
198
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
180
199
|
materials?: {
|
|
181
200
|
name: string;
|
|
@@ -185,8 +204,10 @@ export declare const weatherAlertSchema: z.ZodObject<{
|
|
|
185
204
|
totalCost?: number | undefined;
|
|
186
205
|
costPerUnit?: number | undefined;
|
|
187
206
|
availability?: string | undefined;
|
|
207
|
+
inStock?: boolean | undefined;
|
|
208
|
+
stockQuantity?: number | undefined;
|
|
209
|
+
applicationMethod?: string | undefined;
|
|
188
210
|
}[] | undefined;
|
|
189
|
-
applicationMethod?: string | undefined;
|
|
190
211
|
expectedOutcome?: string | undefined;
|
|
191
212
|
preventiveMeasures?: string[] | undefined;
|
|
192
213
|
estimatedTime?: string | undefined;
|
|
@@ -275,6 +296,9 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
275
296
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
276
297
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
277
298
|
availability: z.ZodOptional<z.ZodString>;
|
|
299
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
300
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
301
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
278
302
|
}, "strip", z.ZodTypeAny, {
|
|
279
303
|
name: string;
|
|
280
304
|
quantity: number;
|
|
@@ -283,6 +307,9 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
283
307
|
totalCost?: number | undefined;
|
|
284
308
|
costPerUnit?: number | undefined;
|
|
285
309
|
availability?: string | undefined;
|
|
310
|
+
inStock?: boolean | undefined;
|
|
311
|
+
stockQuantity?: number | undefined;
|
|
312
|
+
applicationMethod?: string | undefined;
|
|
286
313
|
}, {
|
|
287
314
|
name: string;
|
|
288
315
|
quantity: number;
|
|
@@ -291,6 +318,9 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
291
318
|
totalCost?: number | undefined;
|
|
292
319
|
costPerUnit?: number | undefined;
|
|
293
320
|
availability?: string | undefined;
|
|
321
|
+
inStock?: boolean | undefined;
|
|
322
|
+
stockQuantity?: number | undefined;
|
|
323
|
+
applicationMethod?: string | undefined;
|
|
294
324
|
}>, "many">>;
|
|
295
325
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
296
326
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -303,6 +333,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
303
333
|
details: string;
|
|
304
334
|
timing: string;
|
|
305
335
|
confidence?: number | undefined;
|
|
336
|
+
applicationMethod?: string | undefined;
|
|
306
337
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
307
338
|
materials?: {
|
|
308
339
|
name: string;
|
|
@@ -312,8 +343,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
312
343
|
totalCost?: number | undefined;
|
|
313
344
|
costPerUnit?: number | undefined;
|
|
314
345
|
availability?: string | undefined;
|
|
346
|
+
inStock?: boolean | undefined;
|
|
347
|
+
stockQuantity?: number | undefined;
|
|
348
|
+
applicationMethod?: string | undefined;
|
|
315
349
|
}[] | undefined;
|
|
316
|
-
applicationMethod?: string | undefined;
|
|
317
350
|
expectedOutcome?: string | undefined;
|
|
318
351
|
preventiveMeasures?: string[] | undefined;
|
|
319
352
|
estimatedTime?: string | undefined;
|
|
@@ -324,6 +357,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
324
357
|
details: string;
|
|
325
358
|
timing: string;
|
|
326
359
|
confidence?: number | undefined;
|
|
360
|
+
applicationMethod?: string | undefined;
|
|
327
361
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
328
362
|
materials?: {
|
|
329
363
|
name: string;
|
|
@@ -333,8 +367,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
333
367
|
totalCost?: number | undefined;
|
|
334
368
|
costPerUnit?: number | undefined;
|
|
335
369
|
availability?: string | undefined;
|
|
370
|
+
inStock?: boolean | undefined;
|
|
371
|
+
stockQuantity?: number | undefined;
|
|
372
|
+
applicationMethod?: string | undefined;
|
|
336
373
|
}[] | undefined;
|
|
337
|
-
applicationMethod?: string | undefined;
|
|
338
374
|
expectedOutcome?: string | undefined;
|
|
339
375
|
preventiveMeasures?: string[] | undefined;
|
|
340
376
|
estimatedTime?: string | undefined;
|
|
@@ -352,6 +388,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
352
388
|
details: string;
|
|
353
389
|
timing: string;
|
|
354
390
|
confidence?: number | undefined;
|
|
391
|
+
applicationMethod?: string | undefined;
|
|
355
392
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
356
393
|
materials?: {
|
|
357
394
|
name: string;
|
|
@@ -361,8 +398,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
361
398
|
totalCost?: number | undefined;
|
|
362
399
|
costPerUnit?: number | undefined;
|
|
363
400
|
availability?: string | undefined;
|
|
401
|
+
inStock?: boolean | undefined;
|
|
402
|
+
stockQuantity?: number | undefined;
|
|
403
|
+
applicationMethod?: string | undefined;
|
|
364
404
|
}[] | undefined;
|
|
365
|
-
applicationMethod?: string | undefined;
|
|
366
405
|
expectedOutcome?: string | undefined;
|
|
367
406
|
preventiveMeasures?: string[] | undefined;
|
|
368
407
|
estimatedTime?: string | undefined;
|
|
@@ -382,6 +421,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
382
421
|
details: string;
|
|
383
422
|
timing: string;
|
|
384
423
|
confidence?: number | undefined;
|
|
424
|
+
applicationMethod?: string | undefined;
|
|
385
425
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
386
426
|
materials?: {
|
|
387
427
|
name: string;
|
|
@@ -391,8 +431,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
391
431
|
totalCost?: number | undefined;
|
|
392
432
|
costPerUnit?: number | undefined;
|
|
393
433
|
availability?: string | undefined;
|
|
434
|
+
inStock?: boolean | undefined;
|
|
435
|
+
stockQuantity?: number | undefined;
|
|
436
|
+
applicationMethod?: string | undefined;
|
|
394
437
|
}[] | undefined;
|
|
395
|
-
applicationMethod?: string | undefined;
|
|
396
438
|
expectedOutcome?: string | undefined;
|
|
397
439
|
preventiveMeasures?: string[] | undefined;
|
|
398
440
|
estimatedTime?: string | undefined;
|
|
@@ -452,6 +494,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
452
494
|
details: string;
|
|
453
495
|
timing: string;
|
|
454
496
|
confidence?: number | undefined;
|
|
497
|
+
applicationMethod?: string | undefined;
|
|
455
498
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
456
499
|
materials?: {
|
|
457
500
|
name: string;
|
|
@@ -461,8 +504,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
461
504
|
totalCost?: number | undefined;
|
|
462
505
|
costPerUnit?: number | undefined;
|
|
463
506
|
availability?: string | undefined;
|
|
507
|
+
inStock?: boolean | undefined;
|
|
508
|
+
stockQuantity?: number | undefined;
|
|
509
|
+
applicationMethod?: string | undefined;
|
|
464
510
|
}[] | undefined;
|
|
465
|
-
applicationMethod?: string | undefined;
|
|
466
511
|
expectedOutcome?: string | undefined;
|
|
467
512
|
preventiveMeasures?: string[] | undefined;
|
|
468
513
|
estimatedTime?: string | undefined;
|
|
@@ -507,6 +552,7 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
507
552
|
details: string;
|
|
508
553
|
timing: string;
|
|
509
554
|
confidence?: number | undefined;
|
|
555
|
+
applicationMethod?: string | undefined;
|
|
510
556
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
511
557
|
materials?: {
|
|
512
558
|
name: string;
|
|
@@ -516,8 +562,10 @@ export declare const weatherAttributesSchema: z.ZodObject<{
|
|
|
516
562
|
totalCost?: number | undefined;
|
|
517
563
|
costPerUnit?: number | undefined;
|
|
518
564
|
availability?: string | undefined;
|
|
565
|
+
inStock?: boolean | undefined;
|
|
566
|
+
stockQuantity?: number | undefined;
|
|
567
|
+
applicationMethod?: string | undefined;
|
|
519
568
|
}[] | undefined;
|
|
520
|
-
applicationMethod?: string | undefined;
|
|
521
569
|
expectedOutcome?: string | undefined;
|
|
522
570
|
preventiveMeasures?: string[] | undefined;
|
|
523
571
|
estimatedTime?: string | undefined;
|
|
@@ -1281,6 +1329,9 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1281
1329
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1282
1330
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1283
1331
|
availability: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1333
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1334
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1284
1335
|
}, "strip", z.ZodTypeAny, {
|
|
1285
1336
|
name: string;
|
|
1286
1337
|
quantity: number;
|
|
@@ -1289,6 +1340,9 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1289
1340
|
totalCost?: number | undefined;
|
|
1290
1341
|
costPerUnit?: number | undefined;
|
|
1291
1342
|
availability?: string | undefined;
|
|
1343
|
+
inStock?: boolean | undefined;
|
|
1344
|
+
stockQuantity?: number | undefined;
|
|
1345
|
+
applicationMethod?: string | undefined;
|
|
1292
1346
|
}, {
|
|
1293
1347
|
name: string;
|
|
1294
1348
|
quantity: number;
|
|
@@ -1297,6 +1351,9 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1297
1351
|
totalCost?: number | undefined;
|
|
1298
1352
|
costPerUnit?: number | undefined;
|
|
1299
1353
|
availability?: string | undefined;
|
|
1354
|
+
inStock?: boolean | undefined;
|
|
1355
|
+
stockQuantity?: number | undefined;
|
|
1356
|
+
applicationMethod?: string | undefined;
|
|
1300
1357
|
}>, "many">>;
|
|
1301
1358
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1302
1359
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1309,6 +1366,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1309
1366
|
details: string;
|
|
1310
1367
|
timing: string;
|
|
1311
1368
|
confidence?: number | undefined;
|
|
1369
|
+
applicationMethod?: string | undefined;
|
|
1312
1370
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1313
1371
|
materials?: {
|
|
1314
1372
|
name: string;
|
|
@@ -1318,8 +1376,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1318
1376
|
totalCost?: number | undefined;
|
|
1319
1377
|
costPerUnit?: number | undefined;
|
|
1320
1378
|
availability?: string | undefined;
|
|
1379
|
+
inStock?: boolean | undefined;
|
|
1380
|
+
stockQuantity?: number | undefined;
|
|
1381
|
+
applicationMethod?: string | undefined;
|
|
1321
1382
|
}[] | undefined;
|
|
1322
|
-
applicationMethod?: string | undefined;
|
|
1323
1383
|
expectedOutcome?: string | undefined;
|
|
1324
1384
|
preventiveMeasures?: string[] | undefined;
|
|
1325
1385
|
estimatedTime?: string | undefined;
|
|
@@ -1330,6 +1390,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1330
1390
|
details: string;
|
|
1331
1391
|
timing: string;
|
|
1332
1392
|
confidence?: number | undefined;
|
|
1393
|
+
applicationMethod?: string | undefined;
|
|
1333
1394
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1334
1395
|
materials?: {
|
|
1335
1396
|
name: string;
|
|
@@ -1339,8 +1400,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1339
1400
|
totalCost?: number | undefined;
|
|
1340
1401
|
costPerUnit?: number | undefined;
|
|
1341
1402
|
availability?: string | undefined;
|
|
1403
|
+
inStock?: boolean | undefined;
|
|
1404
|
+
stockQuantity?: number | undefined;
|
|
1405
|
+
applicationMethod?: string | undefined;
|
|
1342
1406
|
}[] | undefined;
|
|
1343
|
-
applicationMethod?: string | undefined;
|
|
1344
1407
|
expectedOutcome?: string | undefined;
|
|
1345
1408
|
preventiveMeasures?: string[] | undefined;
|
|
1346
1409
|
estimatedTime?: string | undefined;
|
|
@@ -1358,6 +1421,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1358
1421
|
details: string;
|
|
1359
1422
|
timing: string;
|
|
1360
1423
|
confidence?: number | undefined;
|
|
1424
|
+
applicationMethod?: string | undefined;
|
|
1361
1425
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1362
1426
|
materials?: {
|
|
1363
1427
|
name: string;
|
|
@@ -1367,8 +1431,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1367
1431
|
totalCost?: number | undefined;
|
|
1368
1432
|
costPerUnit?: number | undefined;
|
|
1369
1433
|
availability?: string | undefined;
|
|
1434
|
+
inStock?: boolean | undefined;
|
|
1435
|
+
stockQuantity?: number | undefined;
|
|
1436
|
+
applicationMethod?: string | undefined;
|
|
1370
1437
|
}[] | undefined;
|
|
1371
|
-
applicationMethod?: string | undefined;
|
|
1372
1438
|
expectedOutcome?: string | undefined;
|
|
1373
1439
|
preventiveMeasures?: string[] | undefined;
|
|
1374
1440
|
estimatedTime?: string | undefined;
|
|
@@ -1388,6 +1454,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1388
1454
|
details: string;
|
|
1389
1455
|
timing: string;
|
|
1390
1456
|
confidence?: number | undefined;
|
|
1457
|
+
applicationMethod?: string | undefined;
|
|
1391
1458
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1392
1459
|
materials?: {
|
|
1393
1460
|
name: string;
|
|
@@ -1397,8 +1464,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1397
1464
|
totalCost?: number | undefined;
|
|
1398
1465
|
costPerUnit?: number | undefined;
|
|
1399
1466
|
availability?: string | undefined;
|
|
1467
|
+
inStock?: boolean | undefined;
|
|
1468
|
+
stockQuantity?: number | undefined;
|
|
1469
|
+
applicationMethod?: string | undefined;
|
|
1400
1470
|
}[] | undefined;
|
|
1401
|
-
applicationMethod?: string | undefined;
|
|
1402
1471
|
expectedOutcome?: string | undefined;
|
|
1403
1472
|
preventiveMeasures?: string[] | undefined;
|
|
1404
1473
|
estimatedTime?: string | undefined;
|
|
@@ -1458,6 +1527,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1458
1527
|
details: string;
|
|
1459
1528
|
timing: string;
|
|
1460
1529
|
confidence?: number | undefined;
|
|
1530
|
+
applicationMethod?: string | undefined;
|
|
1461
1531
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1462
1532
|
materials?: {
|
|
1463
1533
|
name: string;
|
|
@@ -1467,8 +1537,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1467
1537
|
totalCost?: number | undefined;
|
|
1468
1538
|
costPerUnit?: number | undefined;
|
|
1469
1539
|
availability?: string | undefined;
|
|
1540
|
+
inStock?: boolean | undefined;
|
|
1541
|
+
stockQuantity?: number | undefined;
|
|
1542
|
+
applicationMethod?: string | undefined;
|
|
1470
1543
|
}[] | undefined;
|
|
1471
|
-
applicationMethod?: string | undefined;
|
|
1472
1544
|
expectedOutcome?: string | undefined;
|
|
1473
1545
|
preventiveMeasures?: string[] | undefined;
|
|
1474
1546
|
estimatedTime?: string | undefined;
|
|
@@ -1513,6 +1585,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1513
1585
|
details: string;
|
|
1514
1586
|
timing: string;
|
|
1515
1587
|
confidence?: number | undefined;
|
|
1588
|
+
applicationMethod?: string | undefined;
|
|
1516
1589
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1517
1590
|
materials?: {
|
|
1518
1591
|
name: string;
|
|
@@ -1522,8 +1595,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1522
1595
|
totalCost?: number | undefined;
|
|
1523
1596
|
costPerUnit?: number | undefined;
|
|
1524
1597
|
availability?: string | undefined;
|
|
1598
|
+
inStock?: boolean | undefined;
|
|
1599
|
+
stockQuantity?: number | undefined;
|
|
1600
|
+
applicationMethod?: string | undefined;
|
|
1525
1601
|
}[] | undefined;
|
|
1526
|
-
applicationMethod?: string | undefined;
|
|
1527
1602
|
expectedOutcome?: string | undefined;
|
|
1528
1603
|
preventiveMeasures?: string[] | undefined;
|
|
1529
1604
|
estimatedTime?: string | undefined;
|
|
@@ -1575,6 +1650,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1575
1650
|
details: string;
|
|
1576
1651
|
timing: string;
|
|
1577
1652
|
confidence?: number | undefined;
|
|
1653
|
+
applicationMethod?: string | undefined;
|
|
1578
1654
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1579
1655
|
materials?: {
|
|
1580
1656
|
name: string;
|
|
@@ -1584,8 +1660,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1584
1660
|
totalCost?: number | undefined;
|
|
1585
1661
|
costPerUnit?: number | undefined;
|
|
1586
1662
|
availability?: string | undefined;
|
|
1663
|
+
inStock?: boolean | undefined;
|
|
1664
|
+
stockQuantity?: number | undefined;
|
|
1665
|
+
applicationMethod?: string | undefined;
|
|
1587
1666
|
}[] | undefined;
|
|
1588
|
-
applicationMethod?: string | undefined;
|
|
1589
1667
|
expectedOutcome?: string | undefined;
|
|
1590
1668
|
preventiveMeasures?: string[] | undefined;
|
|
1591
1669
|
estimatedTime?: string | undefined;
|
|
@@ -1637,6 +1715,7 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1637
1715
|
details: string;
|
|
1638
1716
|
timing: string;
|
|
1639
1717
|
confidence?: number | undefined;
|
|
1718
|
+
applicationMethod?: string | undefined;
|
|
1640
1719
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1641
1720
|
materials?: {
|
|
1642
1721
|
name: string;
|
|
@@ -1646,8 +1725,10 @@ export declare const weatherResourceSchema: z.ZodObject<{
|
|
|
1646
1725
|
totalCost?: number | undefined;
|
|
1647
1726
|
costPerUnit?: number | undefined;
|
|
1648
1727
|
availability?: string | undefined;
|
|
1728
|
+
inStock?: boolean | undefined;
|
|
1729
|
+
stockQuantity?: number | undefined;
|
|
1730
|
+
applicationMethod?: string | undefined;
|
|
1649
1731
|
}[] | undefined;
|
|
1650
|
-
applicationMethod?: string | undefined;
|
|
1651
1732
|
expectedOutcome?: string | undefined;
|
|
1652
1733
|
preventiveMeasures?: string[] | undefined;
|
|
1653
1734
|
estimatedTime?: string | undefined;
|
|
@@ -1740,6 +1821,9 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1740
1821
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1741
1822
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1742
1823
|
availability: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1825
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1826
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1743
1827
|
}, "strip", z.ZodTypeAny, {
|
|
1744
1828
|
name: string;
|
|
1745
1829
|
quantity: number;
|
|
@@ -1748,6 +1832,9 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1748
1832
|
totalCost?: number | undefined;
|
|
1749
1833
|
costPerUnit?: number | undefined;
|
|
1750
1834
|
availability?: string | undefined;
|
|
1835
|
+
inStock?: boolean | undefined;
|
|
1836
|
+
stockQuantity?: number | undefined;
|
|
1837
|
+
applicationMethod?: string | undefined;
|
|
1751
1838
|
}, {
|
|
1752
1839
|
name: string;
|
|
1753
1840
|
quantity: number;
|
|
@@ -1756,6 +1843,9 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1756
1843
|
totalCost?: number | undefined;
|
|
1757
1844
|
costPerUnit?: number | undefined;
|
|
1758
1845
|
availability?: string | undefined;
|
|
1846
|
+
inStock?: boolean | undefined;
|
|
1847
|
+
stockQuantity?: number | undefined;
|
|
1848
|
+
applicationMethod?: string | undefined;
|
|
1759
1849
|
}>, "many">>;
|
|
1760
1850
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1761
1851
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1768,6 +1858,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1768
1858
|
details: string;
|
|
1769
1859
|
timing: string;
|
|
1770
1860
|
confidence?: number | undefined;
|
|
1861
|
+
applicationMethod?: string | undefined;
|
|
1771
1862
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1772
1863
|
materials?: {
|
|
1773
1864
|
name: string;
|
|
@@ -1777,8 +1868,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1777
1868
|
totalCost?: number | undefined;
|
|
1778
1869
|
costPerUnit?: number | undefined;
|
|
1779
1870
|
availability?: string | undefined;
|
|
1871
|
+
inStock?: boolean | undefined;
|
|
1872
|
+
stockQuantity?: number | undefined;
|
|
1873
|
+
applicationMethod?: string | undefined;
|
|
1780
1874
|
}[] | undefined;
|
|
1781
|
-
applicationMethod?: string | undefined;
|
|
1782
1875
|
expectedOutcome?: string | undefined;
|
|
1783
1876
|
preventiveMeasures?: string[] | undefined;
|
|
1784
1877
|
estimatedTime?: string | undefined;
|
|
@@ -1789,6 +1882,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1789
1882
|
details: string;
|
|
1790
1883
|
timing: string;
|
|
1791
1884
|
confidence?: number | undefined;
|
|
1885
|
+
applicationMethod?: string | undefined;
|
|
1792
1886
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1793
1887
|
materials?: {
|
|
1794
1888
|
name: string;
|
|
@@ -1798,8 +1892,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1798
1892
|
totalCost?: number | undefined;
|
|
1799
1893
|
costPerUnit?: number | undefined;
|
|
1800
1894
|
availability?: string | undefined;
|
|
1895
|
+
inStock?: boolean | undefined;
|
|
1896
|
+
stockQuantity?: number | undefined;
|
|
1897
|
+
applicationMethod?: string | undefined;
|
|
1801
1898
|
}[] | undefined;
|
|
1802
|
-
applicationMethod?: string | undefined;
|
|
1803
1899
|
expectedOutcome?: string | undefined;
|
|
1804
1900
|
preventiveMeasures?: string[] | undefined;
|
|
1805
1901
|
estimatedTime?: string | undefined;
|
|
@@ -1817,6 +1913,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1817
1913
|
details: string;
|
|
1818
1914
|
timing: string;
|
|
1819
1915
|
confidence?: number | undefined;
|
|
1916
|
+
applicationMethod?: string | undefined;
|
|
1820
1917
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1821
1918
|
materials?: {
|
|
1822
1919
|
name: string;
|
|
@@ -1826,8 +1923,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1826
1923
|
totalCost?: number | undefined;
|
|
1827
1924
|
costPerUnit?: number | undefined;
|
|
1828
1925
|
availability?: string | undefined;
|
|
1926
|
+
inStock?: boolean | undefined;
|
|
1927
|
+
stockQuantity?: number | undefined;
|
|
1928
|
+
applicationMethod?: string | undefined;
|
|
1829
1929
|
}[] | undefined;
|
|
1830
|
-
applicationMethod?: string | undefined;
|
|
1831
1930
|
expectedOutcome?: string | undefined;
|
|
1832
1931
|
preventiveMeasures?: string[] | undefined;
|
|
1833
1932
|
estimatedTime?: string | undefined;
|
|
@@ -1847,6 +1946,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1847
1946
|
details: string;
|
|
1848
1947
|
timing: string;
|
|
1849
1948
|
confidence?: number | undefined;
|
|
1949
|
+
applicationMethod?: string | undefined;
|
|
1850
1950
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1851
1951
|
materials?: {
|
|
1852
1952
|
name: string;
|
|
@@ -1856,8 +1956,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1856
1956
|
totalCost?: number | undefined;
|
|
1857
1957
|
costPerUnit?: number | undefined;
|
|
1858
1958
|
availability?: string | undefined;
|
|
1959
|
+
inStock?: boolean | undefined;
|
|
1960
|
+
stockQuantity?: number | undefined;
|
|
1961
|
+
applicationMethod?: string | undefined;
|
|
1859
1962
|
}[] | undefined;
|
|
1860
|
-
applicationMethod?: string | undefined;
|
|
1861
1963
|
expectedOutcome?: string | undefined;
|
|
1862
1964
|
preventiveMeasures?: string[] | undefined;
|
|
1863
1965
|
estimatedTime?: string | undefined;
|
|
@@ -1917,6 +2019,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1917
2019
|
details: string;
|
|
1918
2020
|
timing: string;
|
|
1919
2021
|
confidence?: number | undefined;
|
|
2022
|
+
applicationMethod?: string | undefined;
|
|
1920
2023
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1921
2024
|
materials?: {
|
|
1922
2025
|
name: string;
|
|
@@ -1926,8 +2029,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1926
2029
|
totalCost?: number | undefined;
|
|
1927
2030
|
costPerUnit?: number | undefined;
|
|
1928
2031
|
availability?: string | undefined;
|
|
2032
|
+
inStock?: boolean | undefined;
|
|
2033
|
+
stockQuantity?: number | undefined;
|
|
2034
|
+
applicationMethod?: string | undefined;
|
|
1929
2035
|
}[] | undefined;
|
|
1930
|
-
applicationMethod?: string | undefined;
|
|
1931
2036
|
expectedOutcome?: string | undefined;
|
|
1932
2037
|
preventiveMeasures?: string[] | undefined;
|
|
1933
2038
|
estimatedTime?: string | undefined;
|
|
@@ -1972,6 +2077,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1972
2077
|
details: string;
|
|
1973
2078
|
timing: string;
|
|
1974
2079
|
confidence?: number | undefined;
|
|
2080
|
+
applicationMethod?: string | undefined;
|
|
1975
2081
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1976
2082
|
materials?: {
|
|
1977
2083
|
name: string;
|
|
@@ -1981,8 +2087,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
1981
2087
|
totalCost?: number | undefined;
|
|
1982
2088
|
costPerUnit?: number | undefined;
|
|
1983
2089
|
availability?: string | undefined;
|
|
2090
|
+
inStock?: boolean | undefined;
|
|
2091
|
+
stockQuantity?: number | undefined;
|
|
2092
|
+
applicationMethod?: string | undefined;
|
|
1984
2093
|
}[] | undefined;
|
|
1985
|
-
applicationMethod?: string | undefined;
|
|
1986
2094
|
expectedOutcome?: string | undefined;
|
|
1987
2095
|
preventiveMeasures?: string[] | undefined;
|
|
1988
2096
|
estimatedTime?: string | undefined;
|
|
@@ -2034,6 +2142,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2034
2142
|
details: string;
|
|
2035
2143
|
timing: string;
|
|
2036
2144
|
confidence?: number | undefined;
|
|
2145
|
+
applicationMethod?: string | undefined;
|
|
2037
2146
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2038
2147
|
materials?: {
|
|
2039
2148
|
name: string;
|
|
@@ -2043,8 +2152,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2043
2152
|
totalCost?: number | undefined;
|
|
2044
2153
|
costPerUnit?: number | undefined;
|
|
2045
2154
|
availability?: string | undefined;
|
|
2155
|
+
inStock?: boolean | undefined;
|
|
2156
|
+
stockQuantity?: number | undefined;
|
|
2157
|
+
applicationMethod?: string | undefined;
|
|
2046
2158
|
}[] | undefined;
|
|
2047
|
-
applicationMethod?: string | undefined;
|
|
2048
2159
|
expectedOutcome?: string | undefined;
|
|
2049
2160
|
preventiveMeasures?: string[] | undefined;
|
|
2050
2161
|
estimatedTime?: string | undefined;
|
|
@@ -2096,6 +2207,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2096
2207
|
details: string;
|
|
2097
2208
|
timing: string;
|
|
2098
2209
|
confidence?: number | undefined;
|
|
2210
|
+
applicationMethod?: string | undefined;
|
|
2099
2211
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2100
2212
|
materials?: {
|
|
2101
2213
|
name: string;
|
|
@@ -2105,8 +2217,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2105
2217
|
totalCost?: number | undefined;
|
|
2106
2218
|
costPerUnit?: number | undefined;
|
|
2107
2219
|
availability?: string | undefined;
|
|
2220
|
+
inStock?: boolean | undefined;
|
|
2221
|
+
stockQuantity?: number | undefined;
|
|
2222
|
+
applicationMethod?: string | undefined;
|
|
2108
2223
|
}[] | undefined;
|
|
2109
|
-
applicationMethod?: string | undefined;
|
|
2110
2224
|
expectedOutcome?: string | undefined;
|
|
2111
2225
|
preventiveMeasures?: string[] | undefined;
|
|
2112
2226
|
estimatedTime?: string | undefined;
|
|
@@ -2184,6 +2298,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2184
2298
|
details: string;
|
|
2185
2299
|
timing: string;
|
|
2186
2300
|
confidence?: number | undefined;
|
|
2301
|
+
applicationMethod?: string | undefined;
|
|
2187
2302
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2188
2303
|
materials?: {
|
|
2189
2304
|
name: string;
|
|
@@ -2193,8 +2308,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2193
2308
|
totalCost?: number | undefined;
|
|
2194
2309
|
costPerUnit?: number | undefined;
|
|
2195
2310
|
availability?: string | undefined;
|
|
2311
|
+
inStock?: boolean | undefined;
|
|
2312
|
+
stockQuantity?: number | undefined;
|
|
2313
|
+
applicationMethod?: string | undefined;
|
|
2196
2314
|
}[] | undefined;
|
|
2197
|
-
applicationMethod?: string | undefined;
|
|
2198
2315
|
expectedOutcome?: string | undefined;
|
|
2199
2316
|
preventiveMeasures?: string[] | undefined;
|
|
2200
2317
|
estimatedTime?: string | undefined;
|
|
@@ -2258,6 +2375,7 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2258
2375
|
details: string;
|
|
2259
2376
|
timing: string;
|
|
2260
2377
|
confidence?: number | undefined;
|
|
2378
|
+
applicationMethod?: string | undefined;
|
|
2261
2379
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2262
2380
|
materials?: {
|
|
2263
2381
|
name: string;
|
|
@@ -2267,8 +2385,10 @@ export declare const weatherResponseSchema: z.ZodObject<{
|
|
|
2267
2385
|
totalCost?: number | undefined;
|
|
2268
2386
|
costPerUnit?: number | undefined;
|
|
2269
2387
|
availability?: string | undefined;
|
|
2388
|
+
inStock?: boolean | undefined;
|
|
2389
|
+
stockQuantity?: number | undefined;
|
|
2390
|
+
applicationMethod?: string | undefined;
|
|
2270
2391
|
}[] | undefined;
|
|
2271
|
-
applicationMethod?: string | undefined;
|
|
2272
2392
|
expectedOutcome?: string | undefined;
|
|
2273
2393
|
preventiveMeasures?: string[] | undefined;
|
|
2274
2394
|
estimatedTime?: string | undefined;
|