@deepintel-ltd/farmpro-contracts 1.0.3 → 1.0.4
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/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/routes/categories.routes.d.ts +800 -0
- package/dist/routes/categories.routes.d.ts.map +1 -0
- package/dist/routes/categories.routes.js +120 -0
- package/dist/routes/fields.routes.d.ts +90 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +1 -0
- package/dist/routes/index.d.ts +3 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +2 -0
- package/dist/routes/tasks.routes.d.ts +56 -0
- package/dist/routes/tasks.routes.d.ts.map +1 -1
- package/dist/schemas/categories.schemas.d.ts +471 -0
- package/dist/schemas/categories.schemas.d.ts.map +1 -0
- package/dist/schemas/categories.schemas.js +51 -0
- package/dist/schemas/tasks.schemas.d.ts +50 -0
- package/dist/schemas/tasks.schemas.d.ts.map +1 -1
- package/dist/schemas/tasks.schemas.js +3 -0
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -58,6 +58,7 @@ export declare const tasksRouter: {
|
|
|
58
58
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
59
59
|
date: z.ZodString;
|
|
60
60
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
61
|
+
category: z.ZodString;
|
|
61
62
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
62
63
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63
64
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -98,6 +99,7 @@ export declare const tasksRouter: {
|
|
|
98
99
|
createdAt: string;
|
|
99
100
|
updatedAt: string;
|
|
100
101
|
fieldId: string;
|
|
102
|
+
category: string;
|
|
101
103
|
inventoryItemId: string | null;
|
|
102
104
|
plannedQuantity: number | null;
|
|
103
105
|
actualQuantity: number | null;
|
|
@@ -122,6 +124,7 @@ export declare const tasksRouter: {
|
|
|
122
124
|
createdAt: string;
|
|
123
125
|
updatedAt: string;
|
|
124
126
|
fieldId: string;
|
|
127
|
+
category: string;
|
|
125
128
|
inventoryItemId: string | null;
|
|
126
129
|
plannedQuantity: number | null;
|
|
127
130
|
actualQuantity: number | null;
|
|
@@ -153,6 +156,7 @@ export declare const tasksRouter: {
|
|
|
153
156
|
createdAt: string;
|
|
154
157
|
updatedAt: string;
|
|
155
158
|
fieldId: string;
|
|
159
|
+
category: string;
|
|
156
160
|
inventoryItemId: string | null;
|
|
157
161
|
plannedQuantity: number | null;
|
|
158
162
|
actualQuantity: number | null;
|
|
@@ -184,6 +188,7 @@ export declare const tasksRouter: {
|
|
|
184
188
|
createdAt: string;
|
|
185
189
|
updatedAt: string;
|
|
186
190
|
fieldId: string;
|
|
191
|
+
category: string;
|
|
187
192
|
inventoryItemId: string | null;
|
|
188
193
|
plannedQuantity: number | null;
|
|
189
194
|
actualQuantity: number | null;
|
|
@@ -241,6 +246,7 @@ export declare const tasksRouter: {
|
|
|
241
246
|
createdAt: string;
|
|
242
247
|
updatedAt: string;
|
|
243
248
|
fieldId: string;
|
|
249
|
+
category: string;
|
|
244
250
|
inventoryItemId: string | null;
|
|
245
251
|
plannedQuantity: number | null;
|
|
246
252
|
actualQuantity: number | null;
|
|
@@ -284,6 +290,7 @@ export declare const tasksRouter: {
|
|
|
284
290
|
createdAt: string;
|
|
285
291
|
updatedAt: string;
|
|
286
292
|
fieldId: string;
|
|
293
|
+
category: string;
|
|
287
294
|
inventoryItemId: string | null;
|
|
288
295
|
plannedQuantity: number | null;
|
|
289
296
|
actualQuantity: number | null;
|
|
@@ -518,6 +525,7 @@ export declare const tasksRouter: {
|
|
|
518
525
|
fieldId: z.ZodString;
|
|
519
526
|
date: z.ZodString;
|
|
520
527
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>>>;
|
|
528
|
+
category: z.ZodOptional<z.ZodString>;
|
|
521
529
|
inventoryItemId: z.ZodOptional<z.ZodString>;
|
|
522
530
|
plannedQuantity: z.ZodOptional<z.ZodNumber>;
|
|
523
531
|
assignedTo: z.ZodOptional<z.ZodString>;
|
|
@@ -527,6 +535,7 @@ export declare const tasksRouter: {
|
|
|
527
535
|
title: string;
|
|
528
536
|
fieldId: string;
|
|
529
537
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
538
|
+
category?: string | undefined;
|
|
530
539
|
inventoryItemId?: string | undefined;
|
|
531
540
|
plannedQuantity?: number | undefined;
|
|
532
541
|
assignedTo?: string | undefined;
|
|
@@ -536,6 +545,7 @@ export declare const tasksRouter: {
|
|
|
536
545
|
title: string;
|
|
537
546
|
fieldId: string;
|
|
538
547
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
548
|
+
category?: string | undefined;
|
|
539
549
|
inventoryItemId?: string | undefined;
|
|
540
550
|
plannedQuantity?: number | undefined;
|
|
541
551
|
assignedTo?: string | undefined;
|
|
@@ -548,6 +558,7 @@ export declare const tasksRouter: {
|
|
|
548
558
|
title: string;
|
|
549
559
|
fieldId: string;
|
|
550
560
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
561
|
+
category?: string | undefined;
|
|
551
562
|
inventoryItemId?: string | undefined;
|
|
552
563
|
plannedQuantity?: number | undefined;
|
|
553
564
|
assignedTo?: string | undefined;
|
|
@@ -560,6 +571,7 @@ export declare const tasksRouter: {
|
|
|
560
571
|
title: string;
|
|
561
572
|
fieldId: string;
|
|
562
573
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
574
|
+
category?: string | undefined;
|
|
563
575
|
inventoryItemId?: string | undefined;
|
|
564
576
|
plannedQuantity?: number | undefined;
|
|
565
577
|
assignedTo?: string | undefined;
|
|
@@ -574,6 +586,7 @@ export declare const tasksRouter: {
|
|
|
574
586
|
title: string;
|
|
575
587
|
fieldId: string;
|
|
576
588
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
589
|
+
category?: string | undefined;
|
|
577
590
|
inventoryItemId?: string | undefined;
|
|
578
591
|
plannedQuantity?: number | undefined;
|
|
579
592
|
assignedTo?: string | undefined;
|
|
@@ -588,6 +601,7 @@ export declare const tasksRouter: {
|
|
|
588
601
|
title: string;
|
|
589
602
|
fieldId: string;
|
|
590
603
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
604
|
+
category?: string | undefined;
|
|
591
605
|
inventoryItemId?: string | undefined;
|
|
592
606
|
plannedQuantity?: number | undefined;
|
|
593
607
|
assignedTo?: string | undefined;
|
|
@@ -607,6 +621,7 @@ export declare const tasksRouter: {
|
|
|
607
621
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
608
622
|
date: z.ZodString;
|
|
609
623
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
624
|
+
category: z.ZodString;
|
|
610
625
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
611
626
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
612
627
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -647,6 +662,7 @@ export declare const tasksRouter: {
|
|
|
647
662
|
createdAt: string;
|
|
648
663
|
updatedAt: string;
|
|
649
664
|
fieldId: string;
|
|
665
|
+
category: string;
|
|
650
666
|
inventoryItemId: string | null;
|
|
651
667
|
plannedQuantity: number | null;
|
|
652
668
|
actualQuantity: number | null;
|
|
@@ -671,6 +687,7 @@ export declare const tasksRouter: {
|
|
|
671
687
|
createdAt: string;
|
|
672
688
|
updatedAt: string;
|
|
673
689
|
fieldId: string;
|
|
690
|
+
category: string;
|
|
674
691
|
inventoryItemId: string | null;
|
|
675
692
|
plannedQuantity: number | null;
|
|
676
693
|
actualQuantity: number | null;
|
|
@@ -702,6 +719,7 @@ export declare const tasksRouter: {
|
|
|
702
719
|
createdAt: string;
|
|
703
720
|
updatedAt: string;
|
|
704
721
|
fieldId: string;
|
|
722
|
+
category: string;
|
|
705
723
|
inventoryItemId: string | null;
|
|
706
724
|
plannedQuantity: number | null;
|
|
707
725
|
actualQuantity: number | null;
|
|
@@ -733,6 +751,7 @@ export declare const tasksRouter: {
|
|
|
733
751
|
createdAt: string;
|
|
734
752
|
updatedAt: string;
|
|
735
753
|
fieldId: string;
|
|
754
|
+
category: string;
|
|
736
755
|
inventoryItemId: string | null;
|
|
737
756
|
plannedQuantity: number | null;
|
|
738
757
|
actualQuantity: number | null;
|
|
@@ -790,6 +809,7 @@ export declare const tasksRouter: {
|
|
|
790
809
|
createdAt: string;
|
|
791
810
|
updatedAt: string;
|
|
792
811
|
fieldId: string;
|
|
812
|
+
category: string;
|
|
793
813
|
inventoryItemId: string | null;
|
|
794
814
|
plannedQuantity: number | null;
|
|
795
815
|
actualQuantity: number | null;
|
|
@@ -833,6 +853,7 @@ export declare const tasksRouter: {
|
|
|
833
853
|
createdAt: string;
|
|
834
854
|
updatedAt: string;
|
|
835
855
|
fieldId: string;
|
|
856
|
+
category: string;
|
|
836
857
|
inventoryItemId: string | null;
|
|
837
858
|
plannedQuantity: number | null;
|
|
838
859
|
actualQuantity: number | null;
|
|
@@ -1261,6 +1282,7 @@ export declare const tasksRouter: {
|
|
|
1261
1282
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
1262
1283
|
date: z.ZodString;
|
|
1263
1284
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
1285
|
+
category: z.ZodString;
|
|
1264
1286
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
1265
1287
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1266
1288
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1301,6 +1323,7 @@ export declare const tasksRouter: {
|
|
|
1301
1323
|
createdAt: string;
|
|
1302
1324
|
updatedAt: string;
|
|
1303
1325
|
fieldId: string;
|
|
1326
|
+
category: string;
|
|
1304
1327
|
inventoryItemId: string | null;
|
|
1305
1328
|
plannedQuantity: number | null;
|
|
1306
1329
|
actualQuantity: number | null;
|
|
@@ -1325,6 +1348,7 @@ export declare const tasksRouter: {
|
|
|
1325
1348
|
createdAt: string;
|
|
1326
1349
|
updatedAt: string;
|
|
1327
1350
|
fieldId: string;
|
|
1351
|
+
category: string;
|
|
1328
1352
|
inventoryItemId: string | null;
|
|
1329
1353
|
plannedQuantity: number | null;
|
|
1330
1354
|
actualQuantity: number | null;
|
|
@@ -1441,6 +1465,7 @@ export declare const tasksRouter: {
|
|
|
1441
1465
|
createdAt: string;
|
|
1442
1466
|
updatedAt: string;
|
|
1443
1467
|
fieldId: string;
|
|
1468
|
+
category: string;
|
|
1444
1469
|
inventoryItemId: string | null;
|
|
1445
1470
|
plannedQuantity: number | null;
|
|
1446
1471
|
actualQuantity: number | null;
|
|
@@ -1488,6 +1513,7 @@ export declare const tasksRouter: {
|
|
|
1488
1513
|
createdAt: string;
|
|
1489
1514
|
updatedAt: string;
|
|
1490
1515
|
fieldId: string;
|
|
1516
|
+
category: string;
|
|
1491
1517
|
inventoryItemId: string | null;
|
|
1492
1518
|
plannedQuantity: number | null;
|
|
1493
1519
|
actualQuantity: number | null;
|
|
@@ -1561,6 +1587,7 @@ export declare const tasksRouter: {
|
|
|
1561
1587
|
createdAt: string;
|
|
1562
1588
|
updatedAt: string;
|
|
1563
1589
|
fieldId: string;
|
|
1590
|
+
category: string;
|
|
1564
1591
|
inventoryItemId: string | null;
|
|
1565
1592
|
plannedQuantity: number | null;
|
|
1566
1593
|
actualQuantity: number | null;
|
|
@@ -1620,6 +1647,7 @@ export declare const tasksRouter: {
|
|
|
1620
1647
|
createdAt: string;
|
|
1621
1648
|
updatedAt: string;
|
|
1622
1649
|
fieldId: string;
|
|
1650
|
+
category: string;
|
|
1623
1651
|
inventoryItemId: string | null;
|
|
1624
1652
|
plannedQuantity: number | null;
|
|
1625
1653
|
actualQuantity: number | null;
|
|
@@ -1874,6 +1902,7 @@ export declare const tasksRouter: {
|
|
|
1874
1902
|
fieldId: z.ZodOptional<z.ZodString>;
|
|
1875
1903
|
date: z.ZodOptional<z.ZodString>;
|
|
1876
1904
|
status: z.ZodOptional<z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>>;
|
|
1905
|
+
category: z.ZodOptional<z.ZodString>;
|
|
1877
1906
|
inventoryItemId: z.ZodOptional<z.ZodString>;
|
|
1878
1907
|
plannedQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1879
1908
|
actualQuantity: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1883,6 +1912,7 @@ export declare const tasksRouter: {
|
|
|
1883
1912
|
date?: string | undefined;
|
|
1884
1913
|
title?: string | undefined;
|
|
1885
1914
|
fieldId?: string | undefined;
|
|
1915
|
+
category?: string | undefined;
|
|
1886
1916
|
inventoryItemId?: string | undefined;
|
|
1887
1917
|
plannedQuantity?: number | undefined;
|
|
1888
1918
|
actualQuantity?: number | undefined;
|
|
@@ -1892,6 +1922,7 @@ export declare const tasksRouter: {
|
|
|
1892
1922
|
date?: string | undefined;
|
|
1893
1923
|
title?: string | undefined;
|
|
1894
1924
|
fieldId?: string | undefined;
|
|
1925
|
+
category?: string | undefined;
|
|
1895
1926
|
inventoryItemId?: string | undefined;
|
|
1896
1927
|
plannedQuantity?: number | undefined;
|
|
1897
1928
|
actualQuantity?: number | undefined;
|
|
@@ -1905,6 +1936,7 @@ export declare const tasksRouter: {
|
|
|
1905
1936
|
date?: string | undefined;
|
|
1906
1937
|
title?: string | undefined;
|
|
1907
1938
|
fieldId?: string | undefined;
|
|
1939
|
+
category?: string | undefined;
|
|
1908
1940
|
inventoryItemId?: string | undefined;
|
|
1909
1941
|
plannedQuantity?: number | undefined;
|
|
1910
1942
|
actualQuantity?: number | undefined;
|
|
@@ -1918,6 +1950,7 @@ export declare const tasksRouter: {
|
|
|
1918
1950
|
date?: string | undefined;
|
|
1919
1951
|
title?: string | undefined;
|
|
1920
1952
|
fieldId?: string | undefined;
|
|
1953
|
+
category?: string | undefined;
|
|
1921
1954
|
inventoryItemId?: string | undefined;
|
|
1922
1955
|
plannedQuantity?: number | undefined;
|
|
1923
1956
|
actualQuantity?: number | undefined;
|
|
@@ -1933,6 +1966,7 @@ export declare const tasksRouter: {
|
|
|
1933
1966
|
date?: string | undefined;
|
|
1934
1967
|
title?: string | undefined;
|
|
1935
1968
|
fieldId?: string | undefined;
|
|
1969
|
+
category?: string | undefined;
|
|
1936
1970
|
inventoryItemId?: string | undefined;
|
|
1937
1971
|
plannedQuantity?: number | undefined;
|
|
1938
1972
|
actualQuantity?: number | undefined;
|
|
@@ -1948,6 +1982,7 @@ export declare const tasksRouter: {
|
|
|
1948
1982
|
date?: string | undefined;
|
|
1949
1983
|
title?: string | undefined;
|
|
1950
1984
|
fieldId?: string | undefined;
|
|
1985
|
+
category?: string | undefined;
|
|
1951
1986
|
inventoryItemId?: string | undefined;
|
|
1952
1987
|
plannedQuantity?: number | undefined;
|
|
1953
1988
|
actualQuantity?: number | undefined;
|
|
@@ -1967,6 +2002,7 @@ export declare const tasksRouter: {
|
|
|
1967
2002
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
1968
2003
|
date: z.ZodString;
|
|
1969
2004
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
2005
|
+
category: z.ZodString;
|
|
1970
2006
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
1971
2007
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1972
2008
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2007,6 +2043,7 @@ export declare const tasksRouter: {
|
|
|
2007
2043
|
createdAt: string;
|
|
2008
2044
|
updatedAt: string;
|
|
2009
2045
|
fieldId: string;
|
|
2046
|
+
category: string;
|
|
2010
2047
|
inventoryItemId: string | null;
|
|
2011
2048
|
plannedQuantity: number | null;
|
|
2012
2049
|
actualQuantity: number | null;
|
|
@@ -2031,6 +2068,7 @@ export declare const tasksRouter: {
|
|
|
2031
2068
|
createdAt: string;
|
|
2032
2069
|
updatedAt: string;
|
|
2033
2070
|
fieldId: string;
|
|
2071
|
+
category: string;
|
|
2034
2072
|
inventoryItemId: string | null;
|
|
2035
2073
|
plannedQuantity: number | null;
|
|
2036
2074
|
actualQuantity: number | null;
|
|
@@ -2062,6 +2100,7 @@ export declare const tasksRouter: {
|
|
|
2062
2100
|
createdAt: string;
|
|
2063
2101
|
updatedAt: string;
|
|
2064
2102
|
fieldId: string;
|
|
2103
|
+
category: string;
|
|
2065
2104
|
inventoryItemId: string | null;
|
|
2066
2105
|
plannedQuantity: number | null;
|
|
2067
2106
|
actualQuantity: number | null;
|
|
@@ -2093,6 +2132,7 @@ export declare const tasksRouter: {
|
|
|
2093
2132
|
createdAt: string;
|
|
2094
2133
|
updatedAt: string;
|
|
2095
2134
|
fieldId: string;
|
|
2135
|
+
category: string;
|
|
2096
2136
|
inventoryItemId: string | null;
|
|
2097
2137
|
plannedQuantity: number | null;
|
|
2098
2138
|
actualQuantity: number | null;
|
|
@@ -2150,6 +2190,7 @@ export declare const tasksRouter: {
|
|
|
2150
2190
|
createdAt: string;
|
|
2151
2191
|
updatedAt: string;
|
|
2152
2192
|
fieldId: string;
|
|
2193
|
+
category: string;
|
|
2153
2194
|
inventoryItemId: string | null;
|
|
2154
2195
|
plannedQuantity: number | null;
|
|
2155
2196
|
actualQuantity: number | null;
|
|
@@ -2193,6 +2234,7 @@ export declare const tasksRouter: {
|
|
|
2193
2234
|
createdAt: string;
|
|
2194
2235
|
updatedAt: string;
|
|
2195
2236
|
fieldId: string;
|
|
2237
|
+
category: string;
|
|
2196
2238
|
inventoryItemId: string | null;
|
|
2197
2239
|
plannedQuantity: number | null;
|
|
2198
2240
|
actualQuantity: number | null;
|
|
@@ -2662,6 +2704,7 @@ export declare const tasksRouter: {
|
|
|
2662
2704
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
2663
2705
|
date: z.ZodString;
|
|
2664
2706
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
2707
|
+
category: z.ZodString;
|
|
2665
2708
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
2666
2709
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2667
2710
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2702,6 +2745,7 @@ export declare const tasksRouter: {
|
|
|
2702
2745
|
createdAt: string;
|
|
2703
2746
|
updatedAt: string;
|
|
2704
2747
|
fieldId: string;
|
|
2748
|
+
category: string;
|
|
2705
2749
|
inventoryItemId: string | null;
|
|
2706
2750
|
plannedQuantity: number | null;
|
|
2707
2751
|
actualQuantity: number | null;
|
|
@@ -2726,6 +2770,7 @@ export declare const tasksRouter: {
|
|
|
2726
2770
|
createdAt: string;
|
|
2727
2771
|
updatedAt: string;
|
|
2728
2772
|
fieldId: string;
|
|
2773
|
+
category: string;
|
|
2729
2774
|
inventoryItemId: string | null;
|
|
2730
2775
|
plannedQuantity: number | null;
|
|
2731
2776
|
actualQuantity: number | null;
|
|
@@ -2757,6 +2802,7 @@ export declare const tasksRouter: {
|
|
|
2757
2802
|
createdAt: string;
|
|
2758
2803
|
updatedAt: string;
|
|
2759
2804
|
fieldId: string;
|
|
2805
|
+
category: string;
|
|
2760
2806
|
inventoryItemId: string | null;
|
|
2761
2807
|
plannedQuantity: number | null;
|
|
2762
2808
|
actualQuantity: number | null;
|
|
@@ -2788,6 +2834,7 @@ export declare const tasksRouter: {
|
|
|
2788
2834
|
createdAt: string;
|
|
2789
2835
|
updatedAt: string;
|
|
2790
2836
|
fieldId: string;
|
|
2837
|
+
category: string;
|
|
2791
2838
|
inventoryItemId: string | null;
|
|
2792
2839
|
plannedQuantity: number | null;
|
|
2793
2840
|
actualQuantity: number | null;
|
|
@@ -2845,6 +2892,7 @@ export declare const tasksRouter: {
|
|
|
2845
2892
|
createdAt: string;
|
|
2846
2893
|
updatedAt: string;
|
|
2847
2894
|
fieldId: string;
|
|
2895
|
+
category: string;
|
|
2848
2896
|
inventoryItemId: string | null;
|
|
2849
2897
|
plannedQuantity: number | null;
|
|
2850
2898
|
actualQuantity: number | null;
|
|
@@ -2888,6 +2936,7 @@ export declare const tasksRouter: {
|
|
|
2888
2936
|
createdAt: string;
|
|
2889
2937
|
updatedAt: string;
|
|
2890
2938
|
fieldId: string;
|
|
2939
|
+
category: string;
|
|
2891
2940
|
inventoryItemId: string | null;
|
|
2892
2941
|
plannedQuantity: number | null;
|
|
2893
2942
|
actualQuantity: number | null;
|
|
@@ -3567,6 +3616,7 @@ export declare const tasksRouter: {
|
|
|
3567
3616
|
fieldName: z.ZodOptional<z.ZodString>;
|
|
3568
3617
|
date: z.ZodString;
|
|
3569
3618
|
status: z.ZodEnum<["pending", "in-progress", "completed", "cancelled"]>;
|
|
3619
|
+
category: z.ZodString;
|
|
3570
3620
|
inventoryItemId: z.ZodNullable<z.ZodString>;
|
|
3571
3621
|
inventoryItemName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3572
3622
|
plannedQuantity: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3607,6 +3657,7 @@ export declare const tasksRouter: {
|
|
|
3607
3657
|
createdAt: string;
|
|
3608
3658
|
updatedAt: string;
|
|
3609
3659
|
fieldId: string;
|
|
3660
|
+
category: string;
|
|
3610
3661
|
inventoryItemId: string | null;
|
|
3611
3662
|
plannedQuantity: number | null;
|
|
3612
3663
|
actualQuantity: number | null;
|
|
@@ -3631,6 +3682,7 @@ export declare const tasksRouter: {
|
|
|
3631
3682
|
createdAt: string;
|
|
3632
3683
|
updatedAt: string;
|
|
3633
3684
|
fieldId: string;
|
|
3685
|
+
category: string;
|
|
3634
3686
|
inventoryItemId: string | null;
|
|
3635
3687
|
plannedQuantity: number | null;
|
|
3636
3688
|
actualQuantity: number | null;
|
|
@@ -3662,6 +3714,7 @@ export declare const tasksRouter: {
|
|
|
3662
3714
|
createdAt: string;
|
|
3663
3715
|
updatedAt: string;
|
|
3664
3716
|
fieldId: string;
|
|
3717
|
+
category: string;
|
|
3665
3718
|
inventoryItemId: string | null;
|
|
3666
3719
|
plannedQuantity: number | null;
|
|
3667
3720
|
actualQuantity: number | null;
|
|
@@ -3693,6 +3746,7 @@ export declare const tasksRouter: {
|
|
|
3693
3746
|
createdAt: string;
|
|
3694
3747
|
updatedAt: string;
|
|
3695
3748
|
fieldId: string;
|
|
3749
|
+
category: string;
|
|
3696
3750
|
inventoryItemId: string | null;
|
|
3697
3751
|
plannedQuantity: number | null;
|
|
3698
3752
|
actualQuantity: number | null;
|
|
@@ -3750,6 +3804,7 @@ export declare const tasksRouter: {
|
|
|
3750
3804
|
createdAt: string;
|
|
3751
3805
|
updatedAt: string;
|
|
3752
3806
|
fieldId: string;
|
|
3807
|
+
category: string;
|
|
3753
3808
|
inventoryItemId: string | null;
|
|
3754
3809
|
plannedQuantity: number | null;
|
|
3755
3810
|
actualQuantity: number | null;
|
|
@@ -3793,6 +3848,7 @@ export declare const tasksRouter: {
|
|
|
3793
3848
|
createdAt: string;
|
|
3794
3849
|
updatedAt: string;
|
|
3795
3850
|
fieldId: string;
|
|
3851
|
+
category: string;
|
|
3796
3852
|
inventoryItemId: string | null;
|
|
3797
3853
|
plannedQuantity: number | null;
|
|
3798
3854
|
actualQuantity: number | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.routes.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"tasks.routes.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuItB,CAAC"}
|