@deepintel-ltd/farmpro-contracts 1.16.0 → 1.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/routes/agents.routes.d.ts +8 -8
  2. package/dist/routes/documents.routes.d.ts +78 -78
  3. package/dist/routes/fertigation.routes.d.ts +4 -4
  4. package/dist/routes/field-observations.routes.d.ts +174 -28
  5. package/dist/routes/field-observations.routes.d.ts.map +1 -1
  6. package/dist/routes/field-observations.routes.js +7 -4
  7. package/dist/routes/fields.routes.d.ts +797 -0
  8. package/dist/routes/fields.routes.d.ts.map +1 -1
  9. package/dist/routes/fields.routes.js +23 -1
  10. package/dist/routes/files.routes.d.ts +6 -6
  11. package/dist/routes/finance.routes.d.ts +30 -30
  12. package/dist/routes/inventory.routes.d.ts +6 -6
  13. package/dist/routes/irrigation.routes.d.ts +2 -2
  14. package/dist/routes/live-monitor.routes.d.ts +29 -9
  15. package/dist/routes/live-monitor.routes.d.ts.map +1 -1
  16. package/dist/routes/monitoring-visualization.routes.d.ts +173 -45
  17. package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
  18. package/dist/routes/monitoring-visualization.routes.js +4 -4
  19. package/dist/routes/pest-disease-risk.routes.d.ts +66 -66
  20. package/dist/routes/prescription-maps.routes.d.ts +4 -4
  21. package/dist/routes/subscriptions.routes.d.ts +4 -4
  22. package/dist/routes/tasks.routes.d.ts +108 -108
  23. package/dist/routes/team-payments.routes.d.ts +72 -72
  24. package/dist/routes/weather.routes.d.ts +42 -42
  25. package/dist/schemas/agents.schemas.d.ts +152 -8
  26. package/dist/schemas/agents.schemas.d.ts.map +1 -1
  27. package/dist/schemas/agents.schemas.js +35 -0
  28. package/dist/schemas/common.schemas.d.ts +32 -0
  29. package/dist/schemas/common.schemas.d.ts.map +1 -1
  30. package/dist/schemas/common.schemas.js +14 -0
  31. package/dist/schemas/documents.schemas.d.ts +48 -48
  32. package/dist/schemas/fertigation.schemas.d.ts +2 -2
  33. package/dist/schemas/fields.schemas.d.ts +42 -0
  34. package/dist/schemas/fields.schemas.d.ts.map +1 -1
  35. package/dist/schemas/fields.schemas.js +4 -0
  36. package/dist/schemas/files.schemas.d.ts +12 -12
  37. package/dist/schemas/finance.schemas.d.ts +34 -34
  38. package/dist/schemas/inventory.schemas.d.ts +6 -6
  39. package/dist/schemas/irrigation.schemas.d.ts +2 -2
  40. package/dist/schemas/live-monitor.schemas.d.ts +44 -12
  41. package/dist/schemas/live-monitor.schemas.d.ts.map +1 -1
  42. package/dist/schemas/monitoring-visualization.schemas.d.ts +329 -46
  43. package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
  44. package/dist/schemas/monitoring-visualization.schemas.js +30 -0
  45. package/dist/schemas/pest-disease-risk.schemas.d.ts +56 -56
  46. package/dist/schemas/prescription-maps.schemas.d.ts +4 -4
  47. package/dist/schemas/subscriptions.schemas.d.ts +2 -2
  48. package/dist/schemas/tasks.schemas.d.ts +96 -96
  49. package/dist/schemas/team-payments.schemas.d.ts +54 -54
  50. package/dist/schemas/weather.schemas.d.ts +84 -84
  51. package/package.json +1 -1
@@ -25,12 +25,12 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
25
25
  updatedAt: string;
26
26
  organizationId: string;
27
27
  isDefault: boolean;
28
+ label: string;
28
29
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
29
30
  bankName: string;
30
31
  accountNumber: string;
31
32
  accountName: string;
32
33
  isActive: boolean;
33
- label: string;
34
34
  providerAccountId: string | null;
35
35
  dailyLimit: number | null;
36
36
  monthlyLimit: number | null;
@@ -42,12 +42,12 @@ export declare const companyPaymentAccountAttributesSchema: z.ZodObject<{
42
42
  updatedAt: string;
43
43
  organizationId: string;
44
44
  isDefault: boolean;
45
+ label: string;
45
46
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
46
47
  bankName: string;
47
48
  accountNumber: string;
48
49
  accountName: string;
49
50
  isActive: boolean;
50
- label: string;
51
51
  providerAccountId: string | null;
52
52
  dailyLimit: number | null;
53
53
  monthlyLimit: number | null;
@@ -69,22 +69,22 @@ export declare const createCompanyPaymentAccountAttributesSchema: z.ZodObject<{
69
69
  monthlyLimit: z.ZodOptional<z.ZodNumber>;
70
70
  }, "strip", z.ZodTypeAny, {
71
71
  isDefault: boolean;
72
+ label: string;
72
73
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
73
74
  bankName: string;
74
75
  accountNumber: string;
75
76
  accountName: string;
76
77
  isActive: boolean;
77
- label: string;
78
78
  providerAccountId?: string | undefined;
79
79
  dailyLimit?: number | undefined;
80
80
  monthlyLimit?: number | undefined;
81
81
  providerCredentials?: Record<string, unknown> | undefined;
82
82
  }, {
83
+ label: string;
83
84
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
84
85
  bankName: string;
85
86
  accountNumber: string;
86
87
  accountName: string;
87
- label: string;
88
88
  isDefault?: boolean | undefined;
89
89
  isActive?: boolean | undefined;
90
90
  providerAccountId?: string | undefined;
@@ -106,24 +106,24 @@ export declare const updateCompanyPaymentAccountAttributesSchema: z.ZodObject<{
106
106
  monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  isDefault?: boolean | undefined;
109
+ label?: string | undefined;
109
110
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
110
111
  bankName?: string | undefined;
111
112
  accountNumber?: string | undefined;
112
113
  accountName?: string | undefined;
113
114
  isActive?: boolean | undefined;
114
- label?: string | undefined;
115
115
  providerAccountId?: string | undefined;
116
116
  dailyLimit?: number | undefined;
117
117
  monthlyLimit?: number | undefined;
118
118
  providerCredentials?: Record<string, unknown> | undefined;
119
119
  }, {
120
120
  isDefault?: boolean | undefined;
121
+ label?: string | undefined;
121
122
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
122
123
  bankName?: string | undefined;
123
124
  accountNumber?: string | undefined;
124
125
  accountName?: string | undefined;
125
126
  isActive?: boolean | undefined;
126
- label?: string | undefined;
127
127
  providerAccountId?: string | undefined;
128
128
  dailyLimit?: number | undefined;
129
129
  monthlyLimit?: number | undefined;
@@ -145,22 +145,22 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
145
145
  monthlyLimit: z.ZodOptional<z.ZodNumber>;
146
146
  }, "strip", z.ZodTypeAny, {
147
147
  isDefault: boolean;
148
+ label: string;
148
149
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
149
150
  bankName: string;
150
151
  accountNumber: string;
151
152
  accountName: string;
152
153
  isActive: boolean;
153
- label: string;
154
154
  providerAccountId?: string | undefined;
155
155
  dailyLimit?: number | undefined;
156
156
  monthlyLimit?: number | undefined;
157
157
  providerCredentials?: Record<string, unknown> | undefined;
158
158
  }, {
159
+ label: string;
159
160
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
160
161
  bankName: string;
161
162
  accountNumber: string;
162
163
  accountName: string;
163
- label: string;
164
164
  isDefault?: boolean | undefined;
165
165
  isActive?: boolean | undefined;
166
166
  providerAccountId?: string | undefined;
@@ -172,12 +172,12 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
172
172
  type: "company-payment-accounts";
173
173
  attributes: {
174
174
  isDefault: boolean;
175
+ label: string;
175
176
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
176
177
  bankName: string;
177
178
  accountNumber: string;
178
179
  accountName: string;
179
180
  isActive: boolean;
180
- label: string;
181
181
  providerAccountId?: string | undefined;
182
182
  dailyLimit?: number | undefined;
183
183
  monthlyLimit?: number | undefined;
@@ -186,11 +186,11 @@ export declare const createCompanyPaymentAccountSchema: z.ZodObject<{
186
186
  }, {
187
187
  type: "company-payment-accounts";
188
188
  attributes: {
189
+ label: string;
189
190
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
190
191
  bankName: string;
191
192
  accountNumber: string;
192
193
  accountName: string;
193
- label: string;
194
194
  isDefault?: boolean | undefined;
195
195
  isActive?: boolean | undefined;
196
196
  providerAccountId?: string | undefined;
@@ -216,24 +216,24 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
216
216
  monthlyLimit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
217
217
  }, "strip", z.ZodTypeAny, {
218
218
  isDefault?: boolean | undefined;
219
+ label?: string | undefined;
219
220
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
220
221
  bankName?: string | undefined;
221
222
  accountNumber?: string | undefined;
222
223
  accountName?: string | undefined;
223
224
  isActive?: boolean | undefined;
224
- label?: string | undefined;
225
225
  providerAccountId?: string | undefined;
226
226
  dailyLimit?: number | undefined;
227
227
  monthlyLimit?: number | undefined;
228
228
  providerCredentials?: Record<string, unknown> | undefined;
229
229
  }, {
230
230
  isDefault?: boolean | undefined;
231
+ label?: string | undefined;
231
232
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
232
233
  bankName?: string | undefined;
233
234
  accountNumber?: string | undefined;
234
235
  accountName?: string | undefined;
235
236
  isActive?: boolean | undefined;
236
- label?: string | undefined;
237
237
  providerAccountId?: string | undefined;
238
238
  dailyLimit?: number | undefined;
239
239
  monthlyLimit?: number | undefined;
@@ -244,12 +244,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
244
244
  id: string;
245
245
  attributes: {
246
246
  isDefault?: boolean | undefined;
247
+ label?: string | undefined;
247
248
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
248
249
  bankName?: string | undefined;
249
250
  accountNumber?: string | undefined;
250
251
  accountName?: string | undefined;
251
252
  isActive?: boolean | undefined;
252
- label?: string | undefined;
253
253
  providerAccountId?: string | undefined;
254
254
  dailyLimit?: number | undefined;
255
255
  monthlyLimit?: number | undefined;
@@ -260,12 +260,12 @@ export declare const updateCompanyPaymentAccountSchema: z.ZodObject<{
260
260
  id: string;
261
261
  attributes: {
262
262
  isDefault?: boolean | undefined;
263
+ label?: string | undefined;
263
264
  provider?: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT" | undefined;
264
265
  bankName?: string | undefined;
265
266
  accountNumber?: string | undefined;
266
267
  accountName?: string | undefined;
267
268
  isActive?: boolean | undefined;
268
- label?: string | undefined;
269
269
  providerAccountId?: string | undefined;
270
270
  dailyLimit?: number | undefined;
271
271
  monthlyLimit?: number | undefined;
@@ -298,12 +298,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
298
298
  updatedAt: string;
299
299
  organizationId: string;
300
300
  isDefault: boolean;
301
+ label: string;
301
302
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
302
303
  bankName: string;
303
304
  accountNumber: string;
304
305
  accountName: string;
305
306
  isActive: boolean;
306
- label: string;
307
307
  providerAccountId: string | null;
308
308
  dailyLimit: number | null;
309
309
  monthlyLimit: number | null;
@@ -315,12 +315,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
315
315
  updatedAt: string;
316
316
  organizationId: string;
317
317
  isDefault: boolean;
318
+ label: string;
318
319
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
319
320
  bankName: string;
320
321
  accountNumber: string;
321
322
  accountName: string;
322
323
  isActive: boolean;
323
- label: string;
324
324
  providerAccountId: string | null;
325
325
  dailyLimit: number | null;
326
326
  monthlyLimit: number | null;
@@ -339,12 +339,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
339
339
  updatedAt: string;
340
340
  organizationId: string;
341
341
  isDefault: boolean;
342
+ label: string;
342
343
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
343
344
  bankName: string;
344
345
  accountNumber: string;
345
346
  accountName: string;
346
347
  isActive: boolean;
347
- label: string;
348
348
  providerAccountId: string | null;
349
349
  dailyLimit: number | null;
350
350
  monthlyLimit: number | null;
@@ -363,12 +363,12 @@ export declare const companyPaymentAccountResourceSchema: z.ZodObject<{
363
363
  updatedAt: string;
364
364
  organizationId: string;
365
365
  isDefault: boolean;
366
+ label: string;
366
367
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
367
368
  bankName: string;
368
369
  accountNumber: string;
369
370
  accountName: string;
370
371
  isActive: boolean;
371
- label: string;
372
372
  providerAccountId: string | null;
373
373
  dailyLimit: number | null;
374
374
  monthlyLimit: number | null;
@@ -407,12 +407,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
407
407
  updatedAt: string;
408
408
  organizationId: string;
409
409
  isDefault: boolean;
410
+ label: string;
410
411
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
411
412
  bankName: string;
412
413
  accountNumber: string;
413
414
  accountName: string;
414
415
  isActive: boolean;
415
- label: string;
416
416
  providerAccountId: string | null;
417
417
  dailyLimit: number | null;
418
418
  monthlyLimit: number | null;
@@ -424,12 +424,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
424
424
  updatedAt: string;
425
425
  organizationId: string;
426
426
  isDefault: boolean;
427
+ label: string;
427
428
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
428
429
  bankName: string;
429
430
  accountNumber: string;
430
431
  accountName: string;
431
432
  isActive: boolean;
432
- label: string;
433
433
  providerAccountId: string | null;
434
434
  dailyLimit: number | null;
435
435
  monthlyLimit: number | null;
@@ -448,12 +448,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
448
448
  updatedAt: string;
449
449
  organizationId: string;
450
450
  isDefault: boolean;
451
+ label: string;
451
452
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
452
453
  bankName: string;
453
454
  accountNumber: string;
454
455
  accountName: string;
455
456
  isActive: boolean;
456
- label: string;
457
457
  providerAccountId: string | null;
458
458
  dailyLimit: number | null;
459
459
  monthlyLimit: number | null;
@@ -472,12 +472,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
472
472
  updatedAt: string;
473
473
  organizationId: string;
474
474
  isDefault: boolean;
475
+ label: string;
475
476
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
476
477
  bankName: string;
477
478
  accountNumber: string;
478
479
  accountName: string;
479
480
  isActive: boolean;
480
- label: string;
481
481
  providerAccountId: string | null;
482
482
  dailyLimit: number | null;
483
483
  monthlyLimit: number | null;
@@ -522,12 +522,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
522
522
  updatedAt: string;
523
523
  organizationId: string;
524
524
  isDefault: boolean;
525
+ label: string;
525
526
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
526
527
  bankName: string;
527
528
  accountNumber: string;
528
529
  accountName: string;
529
530
  isActive: boolean;
530
- label: string;
531
531
  providerAccountId: string | null;
532
532
  dailyLimit: number | null;
533
533
  monthlyLimit: number | null;
@@ -558,12 +558,12 @@ export declare const companyPaymentAccountResponseSchema: z.ZodObject<{
558
558
  updatedAt: string;
559
559
  organizationId: string;
560
560
  isDefault: boolean;
561
+ label: string;
561
562
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
562
563
  bankName: string;
563
564
  accountNumber: string;
564
565
  accountName: string;
565
566
  isActive: boolean;
566
- label: string;
567
567
  providerAccountId: string | null;
568
568
  dailyLimit: number | null;
569
569
  monthlyLimit: number | null;
@@ -613,12 +613,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
613
613
  updatedAt: string;
614
614
  organizationId: string;
615
615
  isDefault: boolean;
616
+ label: string;
616
617
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
617
618
  bankName: string;
618
619
  accountNumber: string;
619
620
  accountName: string;
620
621
  isActive: boolean;
621
- label: string;
622
622
  providerAccountId: string | null;
623
623
  dailyLimit: number | null;
624
624
  monthlyLimit: number | null;
@@ -630,12 +630,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
630
630
  updatedAt: string;
631
631
  organizationId: string;
632
632
  isDefault: boolean;
633
+ label: string;
633
634
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
634
635
  bankName: string;
635
636
  accountNumber: string;
636
637
  accountName: string;
637
638
  isActive: boolean;
638
- label: string;
639
639
  providerAccountId: string | null;
640
640
  dailyLimit: number | null;
641
641
  monthlyLimit: number | null;
@@ -654,12 +654,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
654
654
  updatedAt: string;
655
655
  organizationId: string;
656
656
  isDefault: boolean;
657
+ label: string;
657
658
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
658
659
  bankName: string;
659
660
  accountNumber: string;
660
661
  accountName: string;
661
662
  isActive: boolean;
662
- label: string;
663
663
  providerAccountId: string | null;
664
664
  dailyLimit: number | null;
665
665
  monthlyLimit: number | null;
@@ -678,12 +678,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
678
678
  updatedAt: string;
679
679
  organizationId: string;
680
680
  isDefault: boolean;
681
+ label: string;
681
682
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
682
683
  bankName: string;
683
684
  accountNumber: string;
684
685
  accountName: string;
685
686
  isActive: boolean;
686
- label: string;
687
687
  providerAccountId: string | null;
688
688
  dailyLimit: number | null;
689
689
  monthlyLimit: number | null;
@@ -728,12 +728,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
728
728
  updatedAt: string;
729
729
  organizationId: string;
730
730
  isDefault: boolean;
731
+ label: string;
731
732
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
732
733
  bankName: string;
733
734
  accountNumber: string;
734
735
  accountName: string;
735
736
  isActive: boolean;
736
- label: string;
737
737
  providerAccountId: string | null;
738
738
  dailyLimit: number | null;
739
739
  monthlyLimit: number | null;
@@ -764,12 +764,12 @@ export declare const companyPaymentAccountListResponseSchema: z.ZodObject<{
764
764
  updatedAt: string;
765
765
  organizationId: string;
766
766
  isDefault: boolean;
767
+ label: string;
767
768
  provider: "OPAY" | "PAYSTACK" | "FLUTTERWAVE" | "MONO" | "OKRA" | "BANK_DIRECT";
768
769
  bankName: string;
769
770
  accountNumber: string;
770
771
  accountName: string;
771
772
  isActive: boolean;
772
- label: string;
773
773
  providerAccountId: string | null;
774
774
  dailyLimit: number | null;
775
775
  monthlyLimit: number | null;
@@ -1470,8 +1470,8 @@ export declare const vendorPaymentAttributesSchema: z.ZodObject<{
1470
1470
  updatedAt: string;
1471
1471
  farmId: string;
1472
1472
  currency: string;
1473
- fieldId: string | null;
1474
1473
  category: string;
1474
+ fieldId: string | null;
1475
1475
  cropId: string | null;
1476
1476
  expenseId: string | null;
1477
1477
  amount: number;
@@ -1499,8 +1499,8 @@ export declare const vendorPaymentAttributesSchema: z.ZodObject<{
1499
1499
  updatedAt: string;
1500
1500
  farmId: string;
1501
1501
  currency: string;
1502
- fieldId: string | null;
1503
1502
  category: string;
1503
+ fieldId: string | null;
1504
1504
  cropId: string | null;
1505
1505
  expenseId: string | null;
1506
1506
  amount: number;
@@ -1782,8 +1782,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
1782
1782
  updatedAt: string;
1783
1783
  farmId: string;
1784
1784
  currency: string;
1785
- fieldId: string | null;
1786
1785
  category: string;
1786
+ fieldId: string | null;
1787
1787
  cropId: string | null;
1788
1788
  expenseId: string | null;
1789
1789
  amount: number;
@@ -1811,8 +1811,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
1811
1811
  updatedAt: string;
1812
1812
  farmId: string;
1813
1813
  currency: string;
1814
- fieldId: string | null;
1815
1814
  category: string;
1815
+ fieldId: string | null;
1816
1816
  cropId: string | null;
1817
1817
  expenseId: string | null;
1818
1818
  amount: number;
@@ -1847,8 +1847,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
1847
1847
  updatedAt: string;
1848
1848
  farmId: string;
1849
1849
  currency: string;
1850
- fieldId: string | null;
1851
1850
  category: string;
1851
+ fieldId: string | null;
1852
1852
  cropId: string | null;
1853
1853
  expenseId: string | null;
1854
1854
  amount: number;
@@ -1883,8 +1883,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
1883
1883
  updatedAt: string;
1884
1884
  farmId: string;
1885
1885
  currency: string;
1886
- fieldId: string | null;
1887
1886
  category: string;
1887
+ fieldId: string | null;
1888
1888
  cropId: string | null;
1889
1889
  expenseId: string | null;
1890
1890
  amount: number;
@@ -1951,8 +1951,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
1951
1951
  updatedAt: string;
1952
1952
  farmId: string;
1953
1953
  currency: string;
1954
- fieldId: string | null;
1955
1954
  category: string;
1955
+ fieldId: string | null;
1956
1956
  cropId: string | null;
1957
1957
  expenseId: string | null;
1958
1958
  amount: number;
@@ -1980,8 +1980,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
1980
1980
  updatedAt: string;
1981
1981
  farmId: string;
1982
1982
  currency: string;
1983
- fieldId: string | null;
1984
1983
  category: string;
1984
+ fieldId: string | null;
1985
1985
  cropId: string | null;
1986
1986
  expenseId: string | null;
1987
1987
  amount: number;
@@ -2016,8 +2016,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
2016
2016
  updatedAt: string;
2017
2017
  farmId: string;
2018
2018
  currency: string;
2019
- fieldId: string | null;
2020
2019
  category: string;
2020
+ fieldId: string | null;
2021
2021
  cropId: string | null;
2022
2022
  expenseId: string | null;
2023
2023
  amount: number;
@@ -2052,8 +2052,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
2052
2052
  updatedAt: string;
2053
2053
  farmId: string;
2054
2054
  currency: string;
2055
- fieldId: string | null;
2056
2055
  category: string;
2056
+ fieldId: string | null;
2057
2057
  cropId: string | null;
2058
2058
  expenseId: string | null;
2059
2059
  amount: number;
@@ -2114,8 +2114,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
2114
2114
  updatedAt: string;
2115
2115
  farmId: string;
2116
2116
  currency: string;
2117
- fieldId: string | null;
2118
2117
  category: string;
2118
+ fieldId: string | null;
2119
2119
  cropId: string | null;
2120
2120
  expenseId: string | null;
2121
2121
  amount: number;
@@ -2162,8 +2162,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
2162
2162
  updatedAt: string;
2163
2163
  farmId: string;
2164
2164
  currency: string;
2165
- fieldId: string | null;
2166
2165
  category: string;
2166
+ fieldId: string | null;
2167
2167
  cropId: string | null;
2168
2168
  expenseId: string | null;
2169
2169
  amount: number;
@@ -2241,8 +2241,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2241
2241
  updatedAt: string;
2242
2242
  farmId: string;
2243
2243
  currency: string;
2244
- fieldId: string | null;
2245
2244
  category: string;
2245
+ fieldId: string | null;
2246
2246
  cropId: string | null;
2247
2247
  expenseId: string | null;
2248
2248
  amount: number;
@@ -2270,8 +2270,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2270
2270
  updatedAt: string;
2271
2271
  farmId: string;
2272
2272
  currency: string;
2273
- fieldId: string | null;
2274
2273
  category: string;
2274
+ fieldId: string | null;
2275
2275
  cropId: string | null;
2276
2276
  expenseId: string | null;
2277
2277
  amount: number;
@@ -2306,8 +2306,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2306
2306
  updatedAt: string;
2307
2307
  farmId: string;
2308
2308
  currency: string;
2309
- fieldId: string | null;
2310
2309
  category: string;
2310
+ fieldId: string | null;
2311
2311
  cropId: string | null;
2312
2312
  expenseId: string | null;
2313
2313
  amount: number;
@@ -2342,8 +2342,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2342
2342
  updatedAt: string;
2343
2343
  farmId: string;
2344
2344
  currency: string;
2345
- fieldId: string | null;
2346
2345
  category: string;
2346
+ fieldId: string | null;
2347
2347
  cropId: string | null;
2348
2348
  expenseId: string | null;
2349
2349
  amount: number;
@@ -2404,8 +2404,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2404
2404
  updatedAt: string;
2405
2405
  farmId: string;
2406
2406
  currency: string;
2407
- fieldId: string | null;
2408
2407
  category: string;
2408
+ fieldId: string | null;
2409
2409
  cropId: string | null;
2410
2410
  expenseId: string | null;
2411
2411
  amount: number;
@@ -2452,8 +2452,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
2452
2452
  updatedAt: string;
2453
2453
  farmId: string;
2454
2454
  currency: string;
2455
- fieldId: string | null;
2456
2455
  category: string;
2456
+ fieldId: string | null;
2457
2457
  cropId: string | null;
2458
2458
  expenseId: string | null;
2459
2459
  amount: number;
@@ -2531,8 +2531,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2531
2531
  updatedAt: string;
2532
2532
  farmId: string;
2533
2533
  currency: string;
2534
- fieldId: string | null;
2535
2534
  category: string;
2535
+ fieldId: string | null;
2536
2536
  cropId: string | null;
2537
2537
  expenseId: string | null;
2538
2538
  amount: number;
@@ -2560,8 +2560,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2560
2560
  updatedAt: string;
2561
2561
  farmId: string;
2562
2562
  currency: string;
2563
- fieldId: string | null;
2564
2563
  category: string;
2564
+ fieldId: string | null;
2565
2565
  cropId: string | null;
2566
2566
  expenseId: string | null;
2567
2567
  amount: number;
@@ -2596,8 +2596,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2596
2596
  updatedAt: string;
2597
2597
  farmId: string;
2598
2598
  currency: string;
2599
- fieldId: string | null;
2600
2599
  category: string;
2600
+ fieldId: string | null;
2601
2601
  cropId: string | null;
2602
2602
  expenseId: string | null;
2603
2603
  amount: number;
@@ -2632,8 +2632,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2632
2632
  updatedAt: string;
2633
2633
  farmId: string;
2634
2634
  currency: string;
2635
- fieldId: string | null;
2636
2635
  category: string;
2636
+ fieldId: string | null;
2637
2637
  cropId: string | null;
2638
2638
  expenseId: string | null;
2639
2639
  amount: number;
@@ -2694,8 +2694,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2694
2694
  updatedAt: string;
2695
2695
  farmId: string;
2696
2696
  currency: string;
2697
- fieldId: string | null;
2698
2697
  category: string;
2698
+ fieldId: string | null;
2699
2699
  cropId: string | null;
2700
2700
  expenseId: string | null;
2701
2701
  amount: number;
@@ -2742,8 +2742,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
2742
2742
  updatedAt: string;
2743
2743
  farmId: string;
2744
2744
  currency: string;
2745
- fieldId: string | null;
2746
2745
  category: string;
2746
+ fieldId: string | null;
2747
2747
  cropId: string | null;
2748
2748
  expenseId: string | null;
2749
2749
  amount: number;