@deepintel-ltd/farmpro-contracts 1.16.12 → 1.16.13

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.
@@ -8484,20 +8484,20 @@ export declare const financeRouter: {
8484
8484
  method: z.ZodDefault<z.ZodEnum<["field_grounded", "seasonal_fallback"]>>;
8485
8485
  excludedCapexTotal: z.ZodDefault<z.ZodNumber>;
8486
8486
  drivers: z.ZodDefault<z.ZodArray<z.ZodObject<{
8487
- kind: z.ZodEnum<["harvest", "opex", "capex_excluded", "not_bearing"]>;
8487
+ kind: z.ZodEnum<["harvest", "opex", "capex_excluded", "not_bearing", "labor", "scheduled_inputs"]>;
8488
8488
  fieldName: z.ZodOptional<z.ZodString>;
8489
8489
  month: z.ZodOptional<z.ZodString>;
8490
8490
  amount: z.ZodNumber;
8491
8491
  note: z.ZodString;
8492
8492
  }, "strip", z.ZodTypeAny, {
8493
8493
  amount: number;
8494
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8494
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8495
8495
  note: string;
8496
8496
  fieldName?: string | undefined;
8497
8497
  month?: string | undefined;
8498
8498
  }, {
8499
8499
  amount: number;
8500
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8500
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8501
8501
  note: string;
8502
8502
  fieldName?: string | undefined;
8503
8503
  month?: string | undefined;
@@ -8540,7 +8540,7 @@ export declare const financeRouter: {
8540
8540
  excludedCapexTotal: number;
8541
8541
  drivers: {
8542
8542
  amount: number;
8543
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8543
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8544
8544
  note: string;
8545
8545
  fieldName?: string | undefined;
8546
8546
  month?: string | undefined;
@@ -8577,7 +8577,7 @@ export declare const financeRouter: {
8577
8577
  excludedCapexTotal?: number | undefined;
8578
8578
  drivers?: {
8579
8579
  amount: number;
8580
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8580
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8581
8581
  note: string;
8582
8582
  fieldName?: string | undefined;
8583
8583
  month?: string | undefined;
@@ -8614,7 +8614,7 @@ export declare const financeRouter: {
8614
8614
  excludedCapexTotal: number;
8615
8615
  drivers: {
8616
8616
  amount: number;
8617
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8617
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8618
8618
  note: string;
8619
8619
  fieldName?: string | undefined;
8620
8620
  month?: string | undefined;
@@ -8655,7 +8655,7 @@ export declare const financeRouter: {
8655
8655
  excludedCapexTotal?: number | undefined;
8656
8656
  drivers?: {
8657
8657
  amount: number;
8658
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8658
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8659
8659
  note: string;
8660
8660
  fieldName?: string | undefined;
8661
8661
  month?: string | undefined;
@@ -8694,7 +8694,7 @@ export declare const financeRouter: {
8694
8694
  excludedCapexTotal: number;
8695
8695
  drivers: {
8696
8696
  amount: number;
8697
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8697
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8698
8698
  note: string;
8699
8699
  fieldName?: string | undefined;
8700
8700
  month?: string | undefined;
@@ -8737,7 +8737,7 @@ export declare const financeRouter: {
8737
8737
  excludedCapexTotal?: number | undefined;
8738
8738
  drivers?: {
8739
8739
  amount: number;
8740
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
8740
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
8741
8741
  note: string;
8742
8742
  fieldName?: string | undefined;
8743
8743
  month?: string | undefined;
@@ -31,7 +31,7 @@ export declare const suppliersRouter: {
31
31
  'filter[status]'?: string | undefined;
32
32
  'filter[crop]'?: string | undefined;
33
33
  include?: string | undefined;
34
- 'filter[type]'?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
34
+ 'filter[type]'?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
35
35
  }, {
36
36
  sort?: string | undefined;
37
37
  'page[number]'?: number | undefined;
@@ -41,7 +41,7 @@ export declare const suppliersRouter: {
41
41
  'filter[status]'?: string | undefined;
42
42
  'filter[crop]'?: string | undefined;
43
43
  include?: string | undefined;
44
- 'filter[type]'?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
44
+ 'filter[type]'?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
45
45
  }>;
46
46
  summary: "List suppliers";
47
47
  description: "Get all suppliers for an organization with optional filtering";
@@ -88,7 +88,7 @@ export declare const suppliersRouter: {
88
88
  createdAt: z.ZodString;
89
89
  updatedAt: z.ZodString;
90
90
  }, "strip", z.ZodTypeAny, {
91
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
91
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
92
92
  email: string | null;
93
93
  createdAt: string;
94
94
  updatedAt: string;
@@ -108,7 +108,7 @@ export declare const suppliersRouter: {
108
108
  price: number;
109
109
  }[] | undefined;
110
110
  }, {
111
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
111
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
112
112
  email: string | null;
113
113
  createdAt: string;
114
114
  updatedAt: string;
@@ -135,7 +135,7 @@ export declare const suppliersRouter: {
135
135
  type: string;
136
136
  id: string;
137
137
  attributes: {
138
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
138
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
139
139
  email: string | null;
140
140
  createdAt: string;
141
141
  updatedAt: string;
@@ -162,7 +162,7 @@ export declare const suppliersRouter: {
162
162
  type: string;
163
163
  id: string;
164
164
  attributes: {
165
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
165
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
166
166
  email: string | null;
167
167
  createdAt: string;
168
168
  updatedAt: string;
@@ -215,7 +215,7 @@ export declare const suppliersRouter: {
215
215
  type: string;
216
216
  id: string;
217
217
  attributes: {
218
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
218
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
219
219
  email: string | null;
220
220
  createdAt: string;
221
221
  updatedAt: string;
@@ -254,7 +254,7 @@ export declare const suppliersRouter: {
254
254
  type: string;
255
255
  id: string;
256
256
  attributes: {
257
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
257
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
258
258
  email: string | null;
259
259
  createdAt: string;
260
260
  updatedAt: string;
@@ -495,7 +495,7 @@ export declare const suppliersRouter: {
495
495
  rating: z.ZodOptional<z.ZodNumber>;
496
496
  notes: z.ZodOptional<z.ZodString>;
497
497
  }, "strip", z.ZodTypeAny, {
498
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
498
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
499
499
  name: string;
500
500
  email?: string | undefined;
501
501
  phone?: string | undefined;
@@ -504,7 +504,7 @@ export declare const suppliersRouter: {
504
504
  address?: string | undefined;
505
505
  rating?: number | undefined;
506
506
  }, {
507
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
507
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
508
508
  name: string;
509
509
  email?: string | undefined;
510
510
  phone?: string | undefined;
@@ -516,7 +516,7 @@ export declare const suppliersRouter: {
516
516
  }, "strip", z.ZodTypeAny, {
517
517
  type: "suppliers";
518
518
  attributes: {
519
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
519
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
520
520
  name: string;
521
521
  email?: string | undefined;
522
522
  phone?: string | undefined;
@@ -528,7 +528,7 @@ export declare const suppliersRouter: {
528
528
  }, {
529
529
  type: "suppliers";
530
530
  attributes: {
531
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
531
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
532
532
  name: string;
533
533
  email?: string | undefined;
534
534
  phone?: string | undefined;
@@ -542,7 +542,7 @@ export declare const suppliersRouter: {
542
542
  data: {
543
543
  type: "suppliers";
544
544
  attributes: {
545
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
545
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
546
546
  name: string;
547
547
  email?: string | undefined;
548
548
  phone?: string | undefined;
@@ -556,7 +556,7 @@ export declare const suppliersRouter: {
556
556
  data: {
557
557
  type: "suppliers";
558
558
  attributes: {
559
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
559
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
560
560
  name: string;
561
561
  email?: string | undefined;
562
562
  phone?: string | undefined;
@@ -609,7 +609,7 @@ export declare const suppliersRouter: {
609
609
  createdAt: z.ZodString;
610
610
  updatedAt: z.ZodString;
611
611
  }, "strip", z.ZodTypeAny, {
612
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
612
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
613
613
  email: string | null;
614
614
  createdAt: string;
615
615
  updatedAt: string;
@@ -629,7 +629,7 @@ export declare const suppliersRouter: {
629
629
  price: number;
630
630
  }[] | undefined;
631
631
  }, {
632
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
632
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
633
633
  email: string | null;
634
634
  createdAt: string;
635
635
  updatedAt: string;
@@ -656,7 +656,7 @@ export declare const suppliersRouter: {
656
656
  type: string;
657
657
  id: string;
658
658
  attributes: {
659
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
659
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
660
660
  email: string | null;
661
661
  createdAt: string;
662
662
  updatedAt: string;
@@ -683,7 +683,7 @@ export declare const suppliersRouter: {
683
683
  type: string;
684
684
  id: string;
685
685
  attributes: {
686
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
686
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
687
687
  email: string | null;
688
688
  createdAt: string;
689
689
  updatedAt: string;
@@ -736,7 +736,7 @@ export declare const suppliersRouter: {
736
736
  type: string;
737
737
  id: string;
738
738
  attributes: {
739
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
739
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
740
740
  email: string | null;
741
741
  createdAt: string;
742
742
  updatedAt: string;
@@ -775,7 +775,7 @@ export declare const suppliersRouter: {
775
775
  type: string;
776
776
  id: string;
777
777
  attributes: {
778
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
778
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
779
779
  email: string | null;
780
780
  createdAt: string;
781
781
  updatedAt: string;
@@ -1200,7 +1200,7 @@ export declare const suppliersRouter: {
1200
1200
  rating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1201
1201
  notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1202
1202
  }, "strip", z.ZodTypeAny, {
1203
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1203
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1204
1204
  email?: string | null | undefined;
1205
1205
  name?: string | undefined;
1206
1206
  phone?: string | null | undefined;
@@ -1209,7 +1209,7 @@ export declare const suppliersRouter: {
1209
1209
  address?: string | null | undefined;
1210
1210
  rating?: number | null | undefined;
1211
1211
  }, {
1212
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1212
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1213
1213
  email?: string | null | undefined;
1214
1214
  name?: string | undefined;
1215
1215
  phone?: string | null | undefined;
@@ -1222,7 +1222,7 @@ export declare const suppliersRouter: {
1222
1222
  type: "suppliers";
1223
1223
  id: string;
1224
1224
  attributes: {
1225
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1225
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1226
1226
  email?: string | null | undefined;
1227
1227
  name?: string | undefined;
1228
1228
  phone?: string | null | undefined;
@@ -1235,7 +1235,7 @@ export declare const suppliersRouter: {
1235
1235
  type: "suppliers";
1236
1236
  id: string;
1237
1237
  attributes: {
1238
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1238
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1239
1239
  email?: string | null | undefined;
1240
1240
  name?: string | undefined;
1241
1241
  phone?: string | null | undefined;
@@ -1250,7 +1250,7 @@ export declare const suppliersRouter: {
1250
1250
  type: "suppliers";
1251
1251
  id: string;
1252
1252
  attributes: {
1253
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1253
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1254
1254
  email?: string | null | undefined;
1255
1255
  name?: string | undefined;
1256
1256
  phone?: string | null | undefined;
@@ -1265,7 +1265,7 @@ export declare const suppliersRouter: {
1265
1265
  type: "suppliers";
1266
1266
  id: string;
1267
1267
  attributes: {
1268
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
1268
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
1269
1269
  email?: string | null | undefined;
1270
1270
  name?: string | undefined;
1271
1271
  phone?: string | null | undefined;
@@ -1318,7 +1318,7 @@ export declare const suppliersRouter: {
1318
1318
  createdAt: z.ZodString;
1319
1319
  updatedAt: z.ZodString;
1320
1320
  }, "strip", z.ZodTypeAny, {
1321
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1321
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1322
1322
  email: string | null;
1323
1323
  createdAt: string;
1324
1324
  updatedAt: string;
@@ -1338,7 +1338,7 @@ export declare const suppliersRouter: {
1338
1338
  price: number;
1339
1339
  }[] | undefined;
1340
1340
  }, {
1341
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1341
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1342
1342
  email: string | null;
1343
1343
  createdAt: string;
1344
1344
  updatedAt: string;
@@ -1365,7 +1365,7 @@ export declare const suppliersRouter: {
1365
1365
  type: string;
1366
1366
  id: string;
1367
1367
  attributes: {
1368
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1368
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1369
1369
  email: string | null;
1370
1370
  createdAt: string;
1371
1371
  updatedAt: string;
@@ -1392,7 +1392,7 @@ export declare const suppliersRouter: {
1392
1392
  type: string;
1393
1393
  id: string;
1394
1394
  attributes: {
1395
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1395
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1396
1396
  email: string | null;
1397
1397
  createdAt: string;
1398
1398
  updatedAt: string;
@@ -1445,7 +1445,7 @@ export declare const suppliersRouter: {
1445
1445
  type: string;
1446
1446
  id: string;
1447
1447
  attributes: {
1448
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1448
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1449
1449
  email: string | null;
1450
1450
  createdAt: string;
1451
1451
  updatedAt: string;
@@ -1484,7 +1484,7 @@ export declare const suppliersRouter: {
1484
1484
  type: string;
1485
1485
  id: string;
1486
1486
  attributes: {
1487
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1487
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1488
1488
  email: string | null;
1489
1489
  createdAt: string;
1490
1490
  updatedAt: string;
@@ -3307,20 +3307,20 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3307
3307
  method: z.ZodDefault<z.ZodEnum<["field_grounded", "seasonal_fallback"]>>;
3308
3308
  excludedCapexTotal: z.ZodDefault<z.ZodNumber>;
3309
3309
  drivers: z.ZodDefault<z.ZodArray<z.ZodObject<{
3310
- kind: z.ZodEnum<["harvest", "opex", "capex_excluded", "not_bearing"]>;
3310
+ kind: z.ZodEnum<["harvest", "opex", "capex_excluded", "not_bearing", "labor", "scheduled_inputs"]>;
3311
3311
  fieldName: z.ZodOptional<z.ZodString>;
3312
3312
  month: z.ZodOptional<z.ZodString>;
3313
3313
  amount: z.ZodNumber;
3314
3314
  note: z.ZodString;
3315
3315
  }, "strip", z.ZodTypeAny, {
3316
3316
  amount: number;
3317
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3317
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3318
3318
  note: string;
3319
3319
  fieldName?: string | undefined;
3320
3320
  month?: string | undefined;
3321
3321
  }, {
3322
3322
  amount: number;
3323
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3323
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3324
3324
  note: string;
3325
3325
  fieldName?: string | undefined;
3326
3326
  month?: string | undefined;
@@ -3363,7 +3363,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3363
3363
  excludedCapexTotal: number;
3364
3364
  drivers: {
3365
3365
  amount: number;
3366
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3366
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3367
3367
  note: string;
3368
3368
  fieldName?: string | undefined;
3369
3369
  month?: string | undefined;
@@ -3400,7 +3400,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3400
3400
  excludedCapexTotal?: number | undefined;
3401
3401
  drivers?: {
3402
3402
  amount: number;
3403
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3403
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3404
3404
  note: string;
3405
3405
  fieldName?: string | undefined;
3406
3406
  month?: string | undefined;
@@ -3437,7 +3437,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3437
3437
  excludedCapexTotal: number;
3438
3438
  drivers: {
3439
3439
  amount: number;
3440
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3440
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3441
3441
  note: string;
3442
3442
  fieldName?: string | undefined;
3443
3443
  month?: string | undefined;
@@ -3478,7 +3478,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3478
3478
  excludedCapexTotal?: number | undefined;
3479
3479
  drivers?: {
3480
3480
  amount: number;
3481
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3481
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3482
3482
  note: string;
3483
3483
  fieldName?: string | undefined;
3484
3484
  month?: string | undefined;
@@ -3517,7 +3517,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3517
3517
  excludedCapexTotal: number;
3518
3518
  drivers: {
3519
3519
  amount: number;
3520
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3520
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3521
3521
  note: string;
3522
3522
  fieldName?: string | undefined;
3523
3523
  month?: string | undefined;
@@ -3560,7 +3560,7 @@ export declare const cashFlowForecastResponseSchema: z.ZodObject<{
3560
3560
  excludedCapexTotal?: number | undefined;
3561
3561
  drivers?: {
3562
3562
  amount: number;
3563
- kind: "harvest" | "opex" | "capex_excluded" | "not_bearing";
3563
+ kind: "harvest" | "opex" | "capex_excluded" | "not_bearing" | "labor" | "scheduled_inputs";
3564
3564
  note: string;
3565
3565
  fieldName?: string | undefined;
3566
3566
  month?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"finance.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/finance.schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"finance.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/finance.schemas.ts"],"names":[],"mappings":"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"}
@@ -256,7 +256,14 @@ export const cashFlowForecastResponseSchema = z.object({
256
256
  excludedCapexTotal: z.number().default(0),
257
257
  drivers: z
258
258
  .array(z.object({
259
- kind: z.enum(['harvest', 'opex', 'capex_excluded', 'not_bearing']),
259
+ kind: z.enum([
260
+ 'harvest',
261
+ 'opex',
262
+ 'capex_excluded',
263
+ 'not_bearing',
264
+ 'labor',
265
+ 'scheduled_inputs',
266
+ ]),
260
267
  fieldName: z.string().optional(),
261
268
  month: z.string().optional(),
262
269
  amount: z.number(),
@@ -61,7 +61,7 @@ export declare const supplierAttributesSchema: z.ZodObject<{
61
61
  createdAt: z.ZodString;
62
62
  updatedAt: z.ZodString;
63
63
  }, "strip", z.ZodTypeAny, {
64
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
64
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
65
65
  email: string | null;
66
66
  createdAt: string;
67
67
  updatedAt: string;
@@ -81,7 +81,7 @@ export declare const supplierAttributesSchema: z.ZodObject<{
81
81
  price: number;
82
82
  }[] | undefined;
83
83
  }, {
84
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
84
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
85
85
  email: string | null;
86
86
  createdAt: string;
87
87
  updatedAt: string;
@@ -111,7 +111,7 @@ export declare const createSupplierAttributesSchema: z.ZodObject<{
111
111
  rating: z.ZodOptional<z.ZodNumber>;
112
112
  notes: z.ZodOptional<z.ZodString>;
113
113
  }, "strip", z.ZodTypeAny, {
114
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
114
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
115
115
  name: string;
116
116
  email?: string | undefined;
117
117
  phone?: string | undefined;
@@ -120,7 +120,7 @@ export declare const createSupplierAttributesSchema: z.ZodObject<{
120
120
  address?: string | undefined;
121
121
  rating?: number | undefined;
122
122
  }, {
123
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
123
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
124
124
  name: string;
125
125
  email?: string | undefined;
126
126
  phone?: string | undefined;
@@ -139,7 +139,7 @@ export declare const updateSupplierAttributesSchema: z.ZodObject<{
139
139
  rating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
140
140
  notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
141
  }, "strip", z.ZodTypeAny, {
142
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
142
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
143
143
  email?: string | null | undefined;
144
144
  name?: string | undefined;
145
145
  phone?: string | null | undefined;
@@ -148,7 +148,7 @@ export declare const updateSupplierAttributesSchema: z.ZodObject<{
148
148
  address?: string | null | undefined;
149
149
  rating?: number | null | undefined;
150
150
  }, {
151
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
151
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
152
152
  email?: string | null | undefined;
153
153
  name?: string | undefined;
154
154
  phone?: string | null | undefined;
@@ -301,7 +301,7 @@ export declare const createSupplierSchema: z.ZodObject<{
301
301
  rating: z.ZodOptional<z.ZodNumber>;
302
302
  notes: z.ZodOptional<z.ZodString>;
303
303
  }, "strip", z.ZodTypeAny, {
304
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
304
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
305
305
  name: string;
306
306
  email?: string | undefined;
307
307
  phone?: string | undefined;
@@ -310,7 +310,7 @@ export declare const createSupplierSchema: z.ZodObject<{
310
310
  address?: string | undefined;
311
311
  rating?: number | undefined;
312
312
  }, {
313
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
313
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
314
314
  name: string;
315
315
  email?: string | undefined;
316
316
  phone?: string | undefined;
@@ -322,7 +322,7 @@ export declare const createSupplierSchema: z.ZodObject<{
322
322
  }, "strip", z.ZodTypeAny, {
323
323
  type: "suppliers";
324
324
  attributes: {
325
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
325
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
326
326
  name: string;
327
327
  email?: string | undefined;
328
328
  phone?: string | undefined;
@@ -334,7 +334,7 @@ export declare const createSupplierSchema: z.ZodObject<{
334
334
  }, {
335
335
  type: "suppliers";
336
336
  attributes: {
337
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
337
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
338
338
  name: string;
339
339
  email?: string | undefined;
340
340
  phone?: string | undefined;
@@ -357,7 +357,7 @@ export declare const updateSupplierSchema: z.ZodObject<{
357
357
  rating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
358
358
  notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
359
359
  }, "strip", z.ZodTypeAny, {
360
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
360
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
361
361
  email?: string | null | undefined;
362
362
  name?: string | undefined;
363
363
  phone?: string | null | undefined;
@@ -366,7 +366,7 @@ export declare const updateSupplierSchema: z.ZodObject<{
366
366
  address?: string | null | undefined;
367
367
  rating?: number | null | undefined;
368
368
  }, {
369
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
369
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
370
370
  email?: string | null | undefined;
371
371
  name?: string | undefined;
372
372
  phone?: string | null | undefined;
@@ -379,7 +379,7 @@ export declare const updateSupplierSchema: z.ZodObject<{
379
379
  type: "suppliers";
380
380
  id: string;
381
381
  attributes: {
382
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
382
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
383
383
  email?: string | null | undefined;
384
384
  name?: string | undefined;
385
385
  phone?: string | null | undefined;
@@ -392,7 +392,7 @@ export declare const updateSupplierSchema: z.ZodObject<{
392
392
  type: "suppliers";
393
393
  id: string;
394
394
  attributes: {
395
- type?: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor" | undefined;
395
+ type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
396
396
  email?: string | null | undefined;
397
397
  name?: string | undefined;
398
398
  phone?: string | null | undefined;
@@ -554,7 +554,7 @@ export declare const supplierResourceSchema: z.ZodObject<{
554
554
  createdAt: z.ZodString;
555
555
  updatedAt: z.ZodString;
556
556
  }, "strip", z.ZodTypeAny, {
557
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
557
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
558
558
  email: string | null;
559
559
  createdAt: string;
560
560
  updatedAt: string;
@@ -574,7 +574,7 @@ export declare const supplierResourceSchema: z.ZodObject<{
574
574
  price: number;
575
575
  }[] | undefined;
576
576
  }, {
577
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
577
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
578
578
  email: string | null;
579
579
  createdAt: string;
580
580
  updatedAt: string;
@@ -601,7 +601,7 @@ export declare const supplierResourceSchema: z.ZodObject<{
601
601
  type: string;
602
602
  id: string;
603
603
  attributes: {
604
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
604
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
605
605
  email: string | null;
606
606
  createdAt: string;
607
607
  updatedAt: string;
@@ -628,7 +628,7 @@ export declare const supplierResourceSchema: z.ZodObject<{
628
628
  type: string;
629
629
  id: string;
630
630
  attributes: {
631
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
631
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
632
632
  email: string | null;
633
633
  createdAt: string;
634
634
  updatedAt: string;
@@ -829,7 +829,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
829
829
  createdAt: z.ZodString;
830
830
  updatedAt: z.ZodString;
831
831
  }, "strip", z.ZodTypeAny, {
832
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
832
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
833
833
  email: string | null;
834
834
  createdAt: string;
835
835
  updatedAt: string;
@@ -849,7 +849,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
849
849
  price: number;
850
850
  }[] | undefined;
851
851
  }, {
852
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
852
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
853
853
  email: string | null;
854
854
  createdAt: string;
855
855
  updatedAt: string;
@@ -876,7 +876,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
876
876
  type: string;
877
877
  id: string;
878
878
  attributes: {
879
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
879
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
880
880
  email: string | null;
881
881
  createdAt: string;
882
882
  updatedAt: string;
@@ -903,7 +903,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
903
903
  type: string;
904
904
  id: string;
905
905
  attributes: {
906
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
906
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
907
907
  email: string | null;
908
908
  createdAt: string;
909
909
  updatedAt: string;
@@ -956,7 +956,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
956
956
  type: string;
957
957
  id: string;
958
958
  attributes: {
959
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
959
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
960
960
  email: string | null;
961
961
  createdAt: string;
962
962
  updatedAt: string;
@@ -995,7 +995,7 @@ export declare const supplierResponseSchema: z.ZodObject<{
995
995
  type: string;
996
996
  id: string;
997
997
  attributes: {
998
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
998
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
999
999
  email: string | null;
1000
1000
  createdAt: string;
1001
1001
  updatedAt: string;
@@ -1070,7 +1070,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1070
1070
  createdAt: z.ZodString;
1071
1071
  updatedAt: z.ZodString;
1072
1072
  }, "strip", z.ZodTypeAny, {
1073
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1073
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1074
1074
  email: string | null;
1075
1075
  createdAt: string;
1076
1076
  updatedAt: string;
@@ -1090,7 +1090,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1090
1090
  price: number;
1091
1091
  }[] | undefined;
1092
1092
  }, {
1093
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1093
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1094
1094
  email: string | null;
1095
1095
  createdAt: string;
1096
1096
  updatedAt: string;
@@ -1117,7 +1117,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1117
1117
  type: string;
1118
1118
  id: string;
1119
1119
  attributes: {
1120
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1120
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1121
1121
  email: string | null;
1122
1122
  createdAt: string;
1123
1123
  updatedAt: string;
@@ -1144,7 +1144,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1144
1144
  type: string;
1145
1145
  id: string;
1146
1146
  attributes: {
1147
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1147
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1148
1148
  email: string | null;
1149
1149
  createdAt: string;
1150
1150
  updatedAt: string;
@@ -1197,7 +1197,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1197
1197
  type: string;
1198
1198
  id: string;
1199
1199
  attributes: {
1200
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1200
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1201
1201
  email: string | null;
1202
1202
  createdAt: string;
1203
1203
  updatedAt: string;
@@ -1236,7 +1236,7 @@ export declare const supplierListResponseSchema: z.ZodObject<{
1236
1236
  type: string;
1237
1237
  id: string;
1238
1238
  attributes: {
1239
- type: "other" | "fertilizer" | "equipment" | "seed" | "pesticide" | "labor";
1239
+ type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
1240
1240
  email: string | null;
1241
1241
  createdAt: string;
1242
1242
  updatedAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepintel-ltd/farmpro-contracts",
3
- "version": "1.16.12",
3
+ "version": "1.16.13",
4
4
  "description": "Type-safe API contracts for FarmPro API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",