@deepintel-ltd/farmpro-contracts 1.14.0 → 1.15.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.
- package/dist/routes/capital.routes.d.ts +70 -0
- package/dist/routes/capital.routes.d.ts.map +1 -1
- package/dist/routes/field-activities.routes.d.ts +24 -24
- package/dist/routes/finance.routes.d.ts +112 -0
- package/dist/routes/finance.routes.d.ts.map +1 -1
- package/dist/routes/team-payments.routes.d.ts +196 -0
- package/dist/routes/team-payments.routes.d.ts.map +1 -1
- package/dist/schemas/capital.schemas.d.ts +68 -0
- package/dist/schemas/capital.schemas.d.ts.map +1 -1
- package/dist/schemas/capital.schemas.js +2 -0
- package/dist/schemas/field-activities.schemas.d.ts +18 -18
- package/dist/schemas/finance.schemas.d.ts +136 -0
- package/dist/schemas/finance.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.js +4 -0
- package/dist/schemas/team-payments.schemas.d.ts +164 -0
- package/dist/schemas/team-payments.schemas.d.ts.map +1 -1
- package/dist/schemas/team-payments.schemas.js +10 -0
- package/package.json +1 -1
|
@@ -471,6 +471,8 @@ export declare const capitalRouter: {
|
|
|
471
471
|
amountRepaid: z.ZodNumber;
|
|
472
472
|
outstandingBalance: z.ZodOptional<z.ZodNumber>;
|
|
473
473
|
notes: z.ZodNullable<z.ZodString>;
|
|
474
|
+
createdById: z.ZodNullable<z.ZodString>;
|
|
475
|
+
createdByName: z.ZodNullable<z.ZodString>;
|
|
474
476
|
} & {
|
|
475
477
|
createdAt: z.ZodString;
|
|
476
478
|
updatedAt: z.ZodString;
|
|
@@ -484,6 +486,8 @@ export declare const capitalRouter: {
|
|
|
484
486
|
currency: "NGN" | "USD";
|
|
485
487
|
notes: string | null;
|
|
486
488
|
amount: number;
|
|
489
|
+
createdById: string | null;
|
|
490
|
+
createdByName: string | null;
|
|
487
491
|
reference: string | null;
|
|
488
492
|
transactionDate: string;
|
|
489
493
|
isRepayable: boolean;
|
|
@@ -502,6 +506,8 @@ export declare const capitalRouter: {
|
|
|
502
506
|
currency: "NGN" | "USD";
|
|
503
507
|
notes: string | null;
|
|
504
508
|
amount: number;
|
|
509
|
+
createdById: string | null;
|
|
510
|
+
createdByName: string | null;
|
|
505
511
|
reference: string | null;
|
|
506
512
|
transactionDate: string;
|
|
507
513
|
isRepayable: boolean;
|
|
@@ -527,6 +533,8 @@ export declare const capitalRouter: {
|
|
|
527
533
|
currency: "NGN" | "USD";
|
|
528
534
|
notes: string | null;
|
|
529
535
|
amount: number;
|
|
536
|
+
createdById: string | null;
|
|
537
|
+
createdByName: string | null;
|
|
530
538
|
reference: string | null;
|
|
531
539
|
transactionDate: string;
|
|
532
540
|
isRepayable: boolean;
|
|
@@ -552,6 +560,8 @@ export declare const capitalRouter: {
|
|
|
552
560
|
currency: "NGN" | "USD";
|
|
553
561
|
notes: string | null;
|
|
554
562
|
amount: number;
|
|
563
|
+
createdById: string | null;
|
|
564
|
+
createdByName: string | null;
|
|
555
565
|
reference: string | null;
|
|
556
566
|
transactionDate: string;
|
|
557
567
|
isRepayable: boolean;
|
|
@@ -603,6 +613,8 @@ export declare const capitalRouter: {
|
|
|
603
613
|
currency: "NGN" | "USD";
|
|
604
614
|
notes: string | null;
|
|
605
615
|
amount: number;
|
|
616
|
+
createdById: string | null;
|
|
617
|
+
createdByName: string | null;
|
|
606
618
|
reference: string | null;
|
|
607
619
|
transactionDate: string;
|
|
608
620
|
isRepayable: boolean;
|
|
@@ -640,6 +652,8 @@ export declare const capitalRouter: {
|
|
|
640
652
|
currency: "NGN" | "USD";
|
|
641
653
|
notes: string | null;
|
|
642
654
|
amount: number;
|
|
655
|
+
createdById: string | null;
|
|
656
|
+
createdByName: string | null;
|
|
643
657
|
reference: string | null;
|
|
644
658
|
transactionDate: string;
|
|
645
659
|
isRepayable: boolean;
|
|
@@ -1018,6 +1032,8 @@ export declare const capitalRouter: {
|
|
|
1018
1032
|
amountRepaid: z.ZodNumber;
|
|
1019
1033
|
outstandingBalance: z.ZodOptional<z.ZodNumber>;
|
|
1020
1034
|
notes: z.ZodNullable<z.ZodString>;
|
|
1035
|
+
createdById: z.ZodNullable<z.ZodString>;
|
|
1036
|
+
createdByName: z.ZodNullable<z.ZodString>;
|
|
1021
1037
|
} & {
|
|
1022
1038
|
createdAt: z.ZodString;
|
|
1023
1039
|
updatedAt: z.ZodString;
|
|
@@ -1031,6 +1047,8 @@ export declare const capitalRouter: {
|
|
|
1031
1047
|
currency: "NGN" | "USD";
|
|
1032
1048
|
notes: string | null;
|
|
1033
1049
|
amount: number;
|
|
1050
|
+
createdById: string | null;
|
|
1051
|
+
createdByName: string | null;
|
|
1034
1052
|
reference: string | null;
|
|
1035
1053
|
transactionDate: string;
|
|
1036
1054
|
isRepayable: boolean;
|
|
@@ -1049,6 +1067,8 @@ export declare const capitalRouter: {
|
|
|
1049
1067
|
currency: "NGN" | "USD";
|
|
1050
1068
|
notes: string | null;
|
|
1051
1069
|
amount: number;
|
|
1070
|
+
createdById: string | null;
|
|
1071
|
+
createdByName: string | null;
|
|
1052
1072
|
reference: string | null;
|
|
1053
1073
|
transactionDate: string;
|
|
1054
1074
|
isRepayable: boolean;
|
|
@@ -1074,6 +1094,8 @@ export declare const capitalRouter: {
|
|
|
1074
1094
|
currency: "NGN" | "USD";
|
|
1075
1095
|
notes: string | null;
|
|
1076
1096
|
amount: number;
|
|
1097
|
+
createdById: string | null;
|
|
1098
|
+
createdByName: string | null;
|
|
1077
1099
|
reference: string | null;
|
|
1078
1100
|
transactionDate: string;
|
|
1079
1101
|
isRepayable: boolean;
|
|
@@ -1099,6 +1121,8 @@ export declare const capitalRouter: {
|
|
|
1099
1121
|
currency: "NGN" | "USD";
|
|
1100
1122
|
notes: string | null;
|
|
1101
1123
|
amount: number;
|
|
1124
|
+
createdById: string | null;
|
|
1125
|
+
createdByName: string | null;
|
|
1102
1126
|
reference: string | null;
|
|
1103
1127
|
transactionDate: string;
|
|
1104
1128
|
isRepayable: boolean;
|
|
@@ -1150,6 +1174,8 @@ export declare const capitalRouter: {
|
|
|
1150
1174
|
currency: "NGN" | "USD";
|
|
1151
1175
|
notes: string | null;
|
|
1152
1176
|
amount: number;
|
|
1177
|
+
createdById: string | null;
|
|
1178
|
+
createdByName: string | null;
|
|
1153
1179
|
reference: string | null;
|
|
1154
1180
|
transactionDate: string;
|
|
1155
1181
|
isRepayable: boolean;
|
|
@@ -1187,6 +1213,8 @@ export declare const capitalRouter: {
|
|
|
1187
1213
|
currency: "NGN" | "USD";
|
|
1188
1214
|
notes: string | null;
|
|
1189
1215
|
amount: number;
|
|
1216
|
+
createdById: string | null;
|
|
1217
|
+
createdByName: string | null;
|
|
1190
1218
|
reference: string | null;
|
|
1191
1219
|
transactionDate: string;
|
|
1192
1220
|
isRepayable: boolean;
|
|
@@ -1616,6 +1644,8 @@ export declare const capitalRouter: {
|
|
|
1616
1644
|
amountRepaid: z.ZodNumber;
|
|
1617
1645
|
outstandingBalance: z.ZodOptional<z.ZodNumber>;
|
|
1618
1646
|
notes: z.ZodNullable<z.ZodString>;
|
|
1647
|
+
createdById: z.ZodNullable<z.ZodString>;
|
|
1648
|
+
createdByName: z.ZodNullable<z.ZodString>;
|
|
1619
1649
|
} & {
|
|
1620
1650
|
createdAt: z.ZodString;
|
|
1621
1651
|
updatedAt: z.ZodString;
|
|
@@ -1629,6 +1659,8 @@ export declare const capitalRouter: {
|
|
|
1629
1659
|
currency: "NGN" | "USD";
|
|
1630
1660
|
notes: string | null;
|
|
1631
1661
|
amount: number;
|
|
1662
|
+
createdById: string | null;
|
|
1663
|
+
createdByName: string | null;
|
|
1632
1664
|
reference: string | null;
|
|
1633
1665
|
transactionDate: string;
|
|
1634
1666
|
isRepayable: boolean;
|
|
@@ -1647,6 +1679,8 @@ export declare const capitalRouter: {
|
|
|
1647
1679
|
currency: "NGN" | "USD";
|
|
1648
1680
|
notes: string | null;
|
|
1649
1681
|
amount: number;
|
|
1682
|
+
createdById: string | null;
|
|
1683
|
+
createdByName: string | null;
|
|
1650
1684
|
reference: string | null;
|
|
1651
1685
|
transactionDate: string;
|
|
1652
1686
|
isRepayable: boolean;
|
|
@@ -1703,6 +1737,8 @@ export declare const capitalRouter: {
|
|
|
1703
1737
|
currency: "NGN" | "USD";
|
|
1704
1738
|
notes: string | null;
|
|
1705
1739
|
amount: number;
|
|
1740
|
+
createdById: string | null;
|
|
1741
|
+
createdByName: string | null;
|
|
1706
1742
|
reference: string | null;
|
|
1707
1743
|
transactionDate: string;
|
|
1708
1744
|
isRepayable: boolean;
|
|
@@ -1734,6 +1770,8 @@ export declare const capitalRouter: {
|
|
|
1734
1770
|
currency: "NGN" | "USD";
|
|
1735
1771
|
notes: string | null;
|
|
1736
1772
|
amount: number;
|
|
1773
|
+
createdById: string | null;
|
|
1774
|
+
createdByName: string | null;
|
|
1737
1775
|
reference: string | null;
|
|
1738
1776
|
transactionDate: string;
|
|
1739
1777
|
isRepayable: boolean;
|
|
@@ -1791,6 +1829,8 @@ export declare const capitalRouter: {
|
|
|
1791
1829
|
currency: "NGN" | "USD";
|
|
1792
1830
|
notes: string | null;
|
|
1793
1831
|
amount: number;
|
|
1832
|
+
createdById: string | null;
|
|
1833
|
+
createdByName: string | null;
|
|
1794
1834
|
reference: string | null;
|
|
1795
1835
|
transactionDate: string;
|
|
1796
1836
|
isRepayable: boolean;
|
|
@@ -1834,6 +1874,8 @@ export declare const capitalRouter: {
|
|
|
1834
1874
|
currency: "NGN" | "USD";
|
|
1835
1875
|
notes: string | null;
|
|
1836
1876
|
amount: number;
|
|
1877
|
+
createdById: string | null;
|
|
1878
|
+
createdByName: string | null;
|
|
1837
1879
|
reference: string | null;
|
|
1838
1880
|
transactionDate: string;
|
|
1839
1881
|
isRepayable: boolean;
|
|
@@ -2214,6 +2256,8 @@ export declare const capitalRouter: {
|
|
|
2214
2256
|
amountRepaid: z.ZodNumber;
|
|
2215
2257
|
outstandingBalance: z.ZodOptional<z.ZodNumber>;
|
|
2216
2258
|
notes: z.ZodNullable<z.ZodString>;
|
|
2259
|
+
createdById: z.ZodNullable<z.ZodString>;
|
|
2260
|
+
createdByName: z.ZodNullable<z.ZodString>;
|
|
2217
2261
|
} & {
|
|
2218
2262
|
createdAt: z.ZodString;
|
|
2219
2263
|
updatedAt: z.ZodString;
|
|
@@ -2227,6 +2271,8 @@ export declare const capitalRouter: {
|
|
|
2227
2271
|
currency: "NGN" | "USD";
|
|
2228
2272
|
notes: string | null;
|
|
2229
2273
|
amount: number;
|
|
2274
|
+
createdById: string | null;
|
|
2275
|
+
createdByName: string | null;
|
|
2230
2276
|
reference: string | null;
|
|
2231
2277
|
transactionDate: string;
|
|
2232
2278
|
isRepayable: boolean;
|
|
@@ -2245,6 +2291,8 @@ export declare const capitalRouter: {
|
|
|
2245
2291
|
currency: "NGN" | "USD";
|
|
2246
2292
|
notes: string | null;
|
|
2247
2293
|
amount: number;
|
|
2294
|
+
createdById: string | null;
|
|
2295
|
+
createdByName: string | null;
|
|
2248
2296
|
reference: string | null;
|
|
2249
2297
|
transactionDate: string;
|
|
2250
2298
|
isRepayable: boolean;
|
|
@@ -2270,6 +2318,8 @@ export declare const capitalRouter: {
|
|
|
2270
2318
|
currency: "NGN" | "USD";
|
|
2271
2319
|
notes: string | null;
|
|
2272
2320
|
amount: number;
|
|
2321
|
+
createdById: string | null;
|
|
2322
|
+
createdByName: string | null;
|
|
2273
2323
|
reference: string | null;
|
|
2274
2324
|
transactionDate: string;
|
|
2275
2325
|
isRepayable: boolean;
|
|
@@ -2295,6 +2345,8 @@ export declare const capitalRouter: {
|
|
|
2295
2345
|
currency: "NGN" | "USD";
|
|
2296
2346
|
notes: string | null;
|
|
2297
2347
|
amount: number;
|
|
2348
|
+
createdById: string | null;
|
|
2349
|
+
createdByName: string | null;
|
|
2298
2350
|
reference: string | null;
|
|
2299
2351
|
transactionDate: string;
|
|
2300
2352
|
isRepayable: boolean;
|
|
@@ -2346,6 +2398,8 @@ export declare const capitalRouter: {
|
|
|
2346
2398
|
currency: "NGN" | "USD";
|
|
2347
2399
|
notes: string | null;
|
|
2348
2400
|
amount: number;
|
|
2401
|
+
createdById: string | null;
|
|
2402
|
+
createdByName: string | null;
|
|
2349
2403
|
reference: string | null;
|
|
2350
2404
|
transactionDate: string;
|
|
2351
2405
|
isRepayable: boolean;
|
|
@@ -2383,6 +2437,8 @@ export declare const capitalRouter: {
|
|
|
2383
2437
|
currency: "NGN" | "USD";
|
|
2384
2438
|
notes: string | null;
|
|
2385
2439
|
amount: number;
|
|
2440
|
+
createdById: string | null;
|
|
2441
|
+
createdByName: string | null;
|
|
2386
2442
|
reference: string | null;
|
|
2387
2443
|
transactionDate: string;
|
|
2388
2444
|
isRepayable: boolean;
|
|
@@ -3070,6 +3126,8 @@ export declare const capitalRouter: {
|
|
|
3070
3126
|
amountRepaid: z.ZodNumber;
|
|
3071
3127
|
outstandingBalance: z.ZodOptional<z.ZodNumber>;
|
|
3072
3128
|
notes: z.ZodNullable<z.ZodString>;
|
|
3129
|
+
createdById: z.ZodNullable<z.ZodString>;
|
|
3130
|
+
createdByName: z.ZodNullable<z.ZodString>;
|
|
3073
3131
|
} & {
|
|
3074
3132
|
createdAt: z.ZodString;
|
|
3075
3133
|
updatedAt: z.ZodString;
|
|
@@ -3083,6 +3141,8 @@ export declare const capitalRouter: {
|
|
|
3083
3141
|
currency: "NGN" | "USD";
|
|
3084
3142
|
notes: string | null;
|
|
3085
3143
|
amount: number;
|
|
3144
|
+
createdById: string | null;
|
|
3145
|
+
createdByName: string | null;
|
|
3086
3146
|
reference: string | null;
|
|
3087
3147
|
transactionDate: string;
|
|
3088
3148
|
isRepayable: boolean;
|
|
@@ -3101,6 +3161,8 @@ export declare const capitalRouter: {
|
|
|
3101
3161
|
currency: "NGN" | "USD";
|
|
3102
3162
|
notes: string | null;
|
|
3103
3163
|
amount: number;
|
|
3164
|
+
createdById: string | null;
|
|
3165
|
+
createdByName: string | null;
|
|
3104
3166
|
reference: string | null;
|
|
3105
3167
|
transactionDate: string;
|
|
3106
3168
|
isRepayable: boolean;
|
|
@@ -3126,6 +3188,8 @@ export declare const capitalRouter: {
|
|
|
3126
3188
|
currency: "NGN" | "USD";
|
|
3127
3189
|
notes: string | null;
|
|
3128
3190
|
amount: number;
|
|
3191
|
+
createdById: string | null;
|
|
3192
|
+
createdByName: string | null;
|
|
3129
3193
|
reference: string | null;
|
|
3130
3194
|
transactionDate: string;
|
|
3131
3195
|
isRepayable: boolean;
|
|
@@ -3151,6 +3215,8 @@ export declare const capitalRouter: {
|
|
|
3151
3215
|
currency: "NGN" | "USD";
|
|
3152
3216
|
notes: string | null;
|
|
3153
3217
|
amount: number;
|
|
3218
|
+
createdById: string | null;
|
|
3219
|
+
createdByName: string | null;
|
|
3154
3220
|
reference: string | null;
|
|
3155
3221
|
transactionDate: string;
|
|
3156
3222
|
isRepayable: boolean;
|
|
@@ -3202,6 +3268,8 @@ export declare const capitalRouter: {
|
|
|
3202
3268
|
currency: "NGN" | "USD";
|
|
3203
3269
|
notes: string | null;
|
|
3204
3270
|
amount: number;
|
|
3271
|
+
createdById: string | null;
|
|
3272
|
+
createdByName: string | null;
|
|
3205
3273
|
reference: string | null;
|
|
3206
3274
|
transactionDate: string;
|
|
3207
3275
|
isRepayable: boolean;
|
|
@@ -3239,6 +3307,8 @@ export declare const capitalRouter: {
|
|
|
3239
3307
|
currency: "NGN" | "USD";
|
|
3240
3308
|
notes: string | null;
|
|
3241
3309
|
amount: number;
|
|
3310
|
+
createdById: string | null;
|
|
3311
|
+
createdByName: string | null;
|
|
3242
3312
|
reference: string | null;
|
|
3243
3313
|
transactionDate: string;
|
|
3244
3314
|
isRepayable: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capital.routes.d.ts","sourceRoot":"","sources":["../../src/routes/capital.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"capital.routes.d.ts","sourceRoot":"","sources":["../../src/routes/capital.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmIxB,CAAC"}
|
|
@@ -65,10 +65,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
65
65
|
inventoryItemId: string | null;
|
|
66
66
|
unit: string | null;
|
|
67
67
|
quantity: number | null;
|
|
68
|
+
createdById: string | null;
|
|
68
69
|
productName: string | null;
|
|
69
70
|
fertilizerProductId: string | null;
|
|
70
71
|
occurredAt: string;
|
|
71
|
-
createdById: string | null;
|
|
72
72
|
fieldName?: string | undefined;
|
|
73
73
|
}, {
|
|
74
74
|
type: "fertilizer" | "weeding";
|
|
@@ -81,10 +81,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
81
81
|
inventoryItemId: string | null;
|
|
82
82
|
unit: string | null;
|
|
83
83
|
quantity: number | null;
|
|
84
|
+
createdById: string | null;
|
|
84
85
|
productName: string | null;
|
|
85
86
|
fertilizerProductId: string | null;
|
|
86
87
|
occurredAt: string;
|
|
87
|
-
createdById: string | null;
|
|
88
88
|
fieldName?: string | undefined;
|
|
89
89
|
}>;
|
|
90
90
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -104,10 +104,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
104
104
|
inventoryItemId: string | null;
|
|
105
105
|
unit: string | null;
|
|
106
106
|
quantity: number | null;
|
|
107
|
+
createdById: string | null;
|
|
107
108
|
productName: string | null;
|
|
108
109
|
fertilizerProductId: string | null;
|
|
109
110
|
occurredAt: string;
|
|
110
|
-
createdById: string | null;
|
|
111
111
|
fieldName?: string | undefined;
|
|
112
112
|
};
|
|
113
113
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -127,10 +127,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
127
127
|
inventoryItemId: string | null;
|
|
128
128
|
unit: string | null;
|
|
129
129
|
quantity: number | null;
|
|
130
|
+
createdById: string | null;
|
|
130
131
|
productName: string | null;
|
|
131
132
|
fertilizerProductId: string | null;
|
|
132
133
|
occurredAt: string;
|
|
133
|
-
createdById: string | null;
|
|
134
134
|
fieldName?: string | undefined;
|
|
135
135
|
};
|
|
136
136
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -176,10 +176,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
176
176
|
inventoryItemId: string | null;
|
|
177
177
|
unit: string | null;
|
|
178
178
|
quantity: number | null;
|
|
179
|
+
createdById: string | null;
|
|
179
180
|
productName: string | null;
|
|
180
181
|
fertilizerProductId: string | null;
|
|
181
182
|
occurredAt: string;
|
|
182
|
-
createdById: string | null;
|
|
183
183
|
fieldName?: string | undefined;
|
|
184
184
|
};
|
|
185
185
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -211,10 +211,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
211
211
|
inventoryItemId: string | null;
|
|
212
212
|
unit: string | null;
|
|
213
213
|
quantity: number | null;
|
|
214
|
+
createdById: string | null;
|
|
214
215
|
productName: string | null;
|
|
215
216
|
fertilizerProductId: string | null;
|
|
216
217
|
occurredAt: string;
|
|
217
|
-
createdById: string | null;
|
|
218
218
|
fieldName?: string | undefined;
|
|
219
219
|
};
|
|
220
220
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -588,10 +588,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
588
588
|
inventoryItemId: string | null;
|
|
589
589
|
unit: string | null;
|
|
590
590
|
quantity: number | null;
|
|
591
|
+
createdById: string | null;
|
|
591
592
|
productName: string | null;
|
|
592
593
|
fertilizerProductId: string | null;
|
|
593
594
|
occurredAt: string;
|
|
594
|
-
createdById: string | null;
|
|
595
595
|
fieldName?: string | undefined;
|
|
596
596
|
}, {
|
|
597
597
|
type: "fertilizer" | "weeding";
|
|
@@ -604,10 +604,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
604
604
|
inventoryItemId: string | null;
|
|
605
605
|
unit: string | null;
|
|
606
606
|
quantity: number | null;
|
|
607
|
+
createdById: string | null;
|
|
607
608
|
productName: string | null;
|
|
608
609
|
fertilizerProductId: string | null;
|
|
609
610
|
occurredAt: string;
|
|
610
|
-
createdById: string | null;
|
|
611
611
|
fieldName?: string | undefined;
|
|
612
612
|
}>;
|
|
613
613
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -627,10 +627,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
627
627
|
inventoryItemId: string | null;
|
|
628
628
|
unit: string | null;
|
|
629
629
|
quantity: number | null;
|
|
630
|
+
createdById: string | null;
|
|
630
631
|
productName: string | null;
|
|
631
632
|
fertilizerProductId: string | null;
|
|
632
633
|
occurredAt: string;
|
|
633
|
-
createdById: string | null;
|
|
634
634
|
fieldName?: string | undefined;
|
|
635
635
|
};
|
|
636
636
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -650,10 +650,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
650
650
|
inventoryItemId: string | null;
|
|
651
651
|
unit: string | null;
|
|
652
652
|
quantity: number | null;
|
|
653
|
+
createdById: string | null;
|
|
653
654
|
productName: string | null;
|
|
654
655
|
fertilizerProductId: string | null;
|
|
655
656
|
occurredAt: string;
|
|
656
|
-
createdById: string | null;
|
|
657
657
|
fieldName?: string | undefined;
|
|
658
658
|
};
|
|
659
659
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -699,10 +699,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
699
699
|
inventoryItemId: string | null;
|
|
700
700
|
unit: string | null;
|
|
701
701
|
quantity: number | null;
|
|
702
|
+
createdById: string | null;
|
|
702
703
|
productName: string | null;
|
|
703
704
|
fertilizerProductId: string | null;
|
|
704
705
|
occurredAt: string;
|
|
705
|
-
createdById: string | null;
|
|
706
706
|
fieldName?: string | undefined;
|
|
707
707
|
};
|
|
708
708
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -734,10 +734,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
734
734
|
inventoryItemId: string | null;
|
|
735
735
|
unit: string | null;
|
|
736
736
|
quantity: number | null;
|
|
737
|
+
createdById: string | null;
|
|
737
738
|
productName: string | null;
|
|
738
739
|
fertilizerProductId: string | null;
|
|
739
740
|
occurredAt: string;
|
|
740
|
-
createdById: string | null;
|
|
741
741
|
fieldName?: string | undefined;
|
|
742
742
|
};
|
|
743
743
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1164,10 +1164,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1164
1164
|
inventoryItemId: string | null;
|
|
1165
1165
|
unit: string | null;
|
|
1166
1166
|
quantity: number | null;
|
|
1167
|
+
createdById: string | null;
|
|
1167
1168
|
productName: string | null;
|
|
1168
1169
|
fertilizerProductId: string | null;
|
|
1169
1170
|
occurredAt: string;
|
|
1170
|
-
createdById: string | null;
|
|
1171
1171
|
fieldName?: string | undefined;
|
|
1172
1172
|
}, {
|
|
1173
1173
|
type: "fertilizer" | "weeding";
|
|
@@ -1180,10 +1180,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1180
1180
|
inventoryItemId: string | null;
|
|
1181
1181
|
unit: string | null;
|
|
1182
1182
|
quantity: number | null;
|
|
1183
|
+
createdById: string | null;
|
|
1183
1184
|
productName: string | null;
|
|
1184
1185
|
fertilizerProductId: string | null;
|
|
1185
1186
|
occurredAt: string;
|
|
1186
|
-
createdById: string | null;
|
|
1187
1187
|
fieldName?: string | undefined;
|
|
1188
1188
|
}>;
|
|
1189
1189
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1203,10 +1203,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1203
1203
|
inventoryItemId: string | null;
|
|
1204
1204
|
unit: string | null;
|
|
1205
1205
|
quantity: number | null;
|
|
1206
|
+
createdById: string | null;
|
|
1206
1207
|
productName: string | null;
|
|
1207
1208
|
fertilizerProductId: string | null;
|
|
1208
1209
|
occurredAt: string;
|
|
1209
|
-
createdById: string | null;
|
|
1210
1210
|
fieldName?: string | undefined;
|
|
1211
1211
|
};
|
|
1212
1212
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1226,10 +1226,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1226
1226
|
inventoryItemId: string | null;
|
|
1227
1227
|
unit: string | null;
|
|
1228
1228
|
quantity: number | null;
|
|
1229
|
+
createdById: string | null;
|
|
1229
1230
|
productName: string | null;
|
|
1230
1231
|
fertilizerProductId: string | null;
|
|
1231
1232
|
occurredAt: string;
|
|
1232
|
-
createdById: string | null;
|
|
1233
1233
|
fieldName?: string | undefined;
|
|
1234
1234
|
};
|
|
1235
1235
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1275,10 +1275,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1275
1275
|
inventoryItemId: string | null;
|
|
1276
1276
|
unit: string | null;
|
|
1277
1277
|
quantity: number | null;
|
|
1278
|
+
createdById: string | null;
|
|
1278
1279
|
productName: string | null;
|
|
1279
1280
|
fertilizerProductId: string | null;
|
|
1280
1281
|
occurredAt: string;
|
|
1281
|
-
createdById: string | null;
|
|
1282
1282
|
fieldName?: string | undefined;
|
|
1283
1283
|
};
|
|
1284
1284
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1310,10 +1310,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1310
1310
|
inventoryItemId: string | null;
|
|
1311
1311
|
unit: string | null;
|
|
1312
1312
|
quantity: number | null;
|
|
1313
|
+
createdById: string | null;
|
|
1313
1314
|
productName: string | null;
|
|
1314
1315
|
fertilizerProductId: string | null;
|
|
1315
1316
|
occurredAt: string;
|
|
1316
|
-
createdById: string | null;
|
|
1317
1317
|
fieldName?: string | undefined;
|
|
1318
1318
|
};
|
|
1319
1319
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1650,10 +1650,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1650
1650
|
inventoryItemId: string | null;
|
|
1651
1651
|
unit: string | null;
|
|
1652
1652
|
quantity: number | null;
|
|
1653
|
+
createdById: string | null;
|
|
1653
1654
|
productName: string | null;
|
|
1654
1655
|
fertilizerProductId: string | null;
|
|
1655
1656
|
occurredAt: string;
|
|
1656
|
-
createdById: string | null;
|
|
1657
1657
|
fieldName?: string | undefined;
|
|
1658
1658
|
}, {
|
|
1659
1659
|
type: "fertilizer" | "weeding";
|
|
@@ -1666,10 +1666,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1666
1666
|
inventoryItemId: string | null;
|
|
1667
1667
|
unit: string | null;
|
|
1668
1668
|
quantity: number | null;
|
|
1669
|
+
createdById: string | null;
|
|
1669
1670
|
productName: string | null;
|
|
1670
1671
|
fertilizerProductId: string | null;
|
|
1671
1672
|
occurredAt: string;
|
|
1672
|
-
createdById: string | null;
|
|
1673
1673
|
fieldName?: string | undefined;
|
|
1674
1674
|
}>;
|
|
1675
1675
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1689,10 +1689,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1689
1689
|
inventoryItemId: string | null;
|
|
1690
1690
|
unit: string | null;
|
|
1691
1691
|
quantity: number | null;
|
|
1692
|
+
createdById: string | null;
|
|
1692
1693
|
productName: string | null;
|
|
1693
1694
|
fertilizerProductId: string | null;
|
|
1694
1695
|
occurredAt: string;
|
|
1695
|
-
createdById: string | null;
|
|
1696
1696
|
fieldName?: string | undefined;
|
|
1697
1697
|
};
|
|
1698
1698
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1712,10 +1712,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1712
1712
|
inventoryItemId: string | null;
|
|
1713
1713
|
unit: string | null;
|
|
1714
1714
|
quantity: number | null;
|
|
1715
|
+
createdById: string | null;
|
|
1715
1716
|
productName: string | null;
|
|
1716
1717
|
fertilizerProductId: string | null;
|
|
1717
1718
|
occurredAt: string;
|
|
1718
|
-
createdById: string | null;
|
|
1719
1719
|
fieldName?: string | undefined;
|
|
1720
1720
|
};
|
|
1721
1721
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1761,10 +1761,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1761
1761
|
inventoryItemId: string | null;
|
|
1762
1762
|
unit: string | null;
|
|
1763
1763
|
quantity: number | null;
|
|
1764
|
+
createdById: string | null;
|
|
1764
1765
|
productName: string | null;
|
|
1765
1766
|
fertilizerProductId: string | null;
|
|
1766
1767
|
occurredAt: string;
|
|
1767
|
-
createdById: string | null;
|
|
1768
1768
|
fieldName?: string | undefined;
|
|
1769
1769
|
};
|
|
1770
1770
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -1796,10 +1796,10 @@ export declare const fieldActivitiesRouter: {
|
|
|
1796
1796
|
inventoryItemId: string | null;
|
|
1797
1797
|
unit: string | null;
|
|
1798
1798
|
quantity: number | null;
|
|
1799
|
+
createdById: string | null;
|
|
1799
1800
|
productName: string | null;
|
|
1800
1801
|
fertilizerProductId: string | null;
|
|
1801
1802
|
occurredAt: string;
|
|
1802
|
-
createdById: string | null;
|
|
1803
1803
|
fieldName?: string | undefined;
|
|
1804
1804
|
};
|
|
1805
1805
|
relationships?: Record<string, unknown> | undefined;
|