@deepintel-ltd/farmpro-contracts 1.17.0 → 1.19.1
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 +2 -0
- package/dist/routes/accounting.routes.d.ts +14156 -0
- package/dist/routes/accounting.routes.d.ts.map +1 -0
- package/dist/routes/accounting.routes.js +460 -0
- package/dist/routes/commodity-deals.routes.d.ts +48 -48
- package/dist/routes/finance.routes.d.ts +235 -38
- package/dist/routes/finance.routes.d.ts.map +1 -1
- 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/live-monitor.routes.d.ts +4 -4
- package/dist/routes/monitoring-visualization.routes.d.ts +16 -10
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/staff.routes.d.ts +36 -36
- package/dist/schemas/accounting.schemas.d.ts +6102 -0
- package/dist/schemas/accounting.schemas.d.ts.map +1 -0
- package/dist/schemas/accounting.schemas.js +344 -0
- package/dist/schemas/commodity-deals.schemas.d.ts +24 -24
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.d.ts +304 -46
- package/dist/schemas/finance.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.js +23 -9
- package/dist/schemas/live-monitor.schemas.d.ts +6 -6
- package/dist/schemas/locale.schemas.d.ts +3 -0
- package/dist/schemas/locale.schemas.d.ts.map +1 -1
- package/dist/schemas/locale.schemas.js +1 -0
- package/dist/schemas/monitoring-visualization.schemas.d.ts +43 -12
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +5 -1
- package/dist/schemas/staff.schemas.d.ts +30 -30
- package/package.json +1 -1
|
@@ -186,6 +186,7 @@ export declare const commodityDealAttributesSchema: z.ZodObject<{
|
|
|
186
186
|
updatedAt: string;
|
|
187
187
|
currency: string;
|
|
188
188
|
notes: string | null;
|
|
189
|
+
invoiceId: string | null;
|
|
189
190
|
buyerName: string | null;
|
|
190
191
|
transportCost: number;
|
|
191
192
|
organizationId: string;
|
|
@@ -194,7 +195,6 @@ export declare const commodityDealAttributesSchema: z.ZodObject<{
|
|
|
194
195
|
miscellaneousCost: number;
|
|
195
196
|
invoiceNumber: string | null;
|
|
196
197
|
waybillId: string;
|
|
197
|
-
invoiceId: string | null;
|
|
198
198
|
handlerUserId: string | null;
|
|
199
199
|
dealCapital: number | null;
|
|
200
200
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -233,6 +233,7 @@ export declare const commodityDealAttributesSchema: z.ZodObject<{
|
|
|
233
233
|
createdAt: string;
|
|
234
234
|
updatedAt: string;
|
|
235
235
|
notes: string | null;
|
|
236
|
+
invoiceId: string | null;
|
|
236
237
|
buyerName: string | null;
|
|
237
238
|
transportCost: number;
|
|
238
239
|
organizationId: string;
|
|
@@ -241,7 +242,6 @@ export declare const commodityDealAttributesSchema: z.ZodObject<{
|
|
|
241
242
|
miscellaneousCost: number;
|
|
242
243
|
invoiceNumber: string | null;
|
|
243
244
|
waybillId: string;
|
|
244
|
-
invoiceId: string | null;
|
|
245
245
|
handlerUserId: string | null;
|
|
246
246
|
dealCapital: number | null;
|
|
247
247
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -332,10 +332,10 @@ export declare const updateCommodityDealAttributesSchema: z.ZodObject<{
|
|
|
332
332
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
333
333
|
currency?: string | undefined;
|
|
334
334
|
notes?: string | null | undefined;
|
|
335
|
+
invoiceId?: string | undefined;
|
|
335
336
|
transportCost?: number | undefined;
|
|
336
337
|
purchaseCost?: number | undefined;
|
|
337
338
|
miscellaneousCost?: number | undefined;
|
|
338
|
-
invoiceId?: string | undefined;
|
|
339
339
|
handlerUserId?: string | null | undefined;
|
|
340
340
|
dealCapital?: number | null | undefined;
|
|
341
341
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -345,10 +345,10 @@ export declare const updateCommodityDealAttributesSchema: z.ZodObject<{
|
|
|
345
345
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
346
346
|
currency?: string | undefined;
|
|
347
347
|
notes?: string | null | undefined;
|
|
348
|
+
invoiceId?: string | undefined;
|
|
348
349
|
transportCost?: number | undefined;
|
|
349
350
|
purchaseCost?: number | undefined;
|
|
350
351
|
miscellaneousCost?: number | undefined;
|
|
351
|
-
invoiceId?: string | undefined;
|
|
352
352
|
handlerUserId?: string | null | undefined;
|
|
353
353
|
dealCapital?: number | null | undefined;
|
|
354
354
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -446,10 +446,10 @@ export declare const updateCommodityDealSchema: z.ZodObject<{
|
|
|
446
446
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
447
447
|
currency?: string | undefined;
|
|
448
448
|
notes?: string | null | undefined;
|
|
449
|
+
invoiceId?: string | undefined;
|
|
449
450
|
transportCost?: number | undefined;
|
|
450
451
|
purchaseCost?: number | undefined;
|
|
451
452
|
miscellaneousCost?: number | undefined;
|
|
452
|
-
invoiceId?: string | undefined;
|
|
453
453
|
handlerUserId?: string | null | undefined;
|
|
454
454
|
dealCapital?: number | null | undefined;
|
|
455
455
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -459,10 +459,10 @@ export declare const updateCommodityDealSchema: z.ZodObject<{
|
|
|
459
459
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
460
460
|
currency?: string | undefined;
|
|
461
461
|
notes?: string | null | undefined;
|
|
462
|
+
invoiceId?: string | undefined;
|
|
462
463
|
transportCost?: number | undefined;
|
|
463
464
|
purchaseCost?: number | undefined;
|
|
464
465
|
miscellaneousCost?: number | undefined;
|
|
465
|
-
invoiceId?: string | undefined;
|
|
466
466
|
handlerUserId?: string | null | undefined;
|
|
467
467
|
dealCapital?: number | null | undefined;
|
|
468
468
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -475,10 +475,10 @@ export declare const updateCommodityDealSchema: z.ZodObject<{
|
|
|
475
475
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
476
476
|
currency?: string | undefined;
|
|
477
477
|
notes?: string | null | undefined;
|
|
478
|
+
invoiceId?: string | undefined;
|
|
478
479
|
transportCost?: number | undefined;
|
|
479
480
|
purchaseCost?: number | undefined;
|
|
480
481
|
miscellaneousCost?: number | undefined;
|
|
481
|
-
invoiceId?: string | undefined;
|
|
482
482
|
handlerUserId?: string | null | undefined;
|
|
483
483
|
dealCapital?: number | null | undefined;
|
|
484
484
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -492,10 +492,10 @@ export declare const updateCommodityDealSchema: z.ZodObject<{
|
|
|
492
492
|
status?: "cancelled" | "paid" | "draft" | "in_transit" | "invoiced" | undefined;
|
|
493
493
|
currency?: string | undefined;
|
|
494
494
|
notes?: string | null | undefined;
|
|
495
|
+
invoiceId?: string | undefined;
|
|
495
496
|
transportCost?: number | undefined;
|
|
496
497
|
purchaseCost?: number | undefined;
|
|
497
498
|
miscellaneousCost?: number | undefined;
|
|
498
|
-
invoiceId?: string | undefined;
|
|
499
499
|
handlerUserId?: string | null | undefined;
|
|
500
500
|
dealCapital?: number | null | undefined;
|
|
501
501
|
companyFeeMode?: "percent_of_invoice" | "per_kg" | null | undefined;
|
|
@@ -679,6 +679,7 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
679
679
|
updatedAt: string;
|
|
680
680
|
currency: string;
|
|
681
681
|
notes: string | null;
|
|
682
|
+
invoiceId: string | null;
|
|
682
683
|
buyerName: string | null;
|
|
683
684
|
transportCost: number;
|
|
684
685
|
organizationId: string;
|
|
@@ -687,7 +688,6 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
687
688
|
miscellaneousCost: number;
|
|
688
689
|
invoiceNumber: string | null;
|
|
689
690
|
waybillId: string;
|
|
690
|
-
invoiceId: string | null;
|
|
691
691
|
handlerUserId: string | null;
|
|
692
692
|
dealCapital: number | null;
|
|
693
693
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -726,6 +726,7 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
726
726
|
createdAt: string;
|
|
727
727
|
updatedAt: string;
|
|
728
728
|
notes: string | null;
|
|
729
|
+
invoiceId: string | null;
|
|
729
730
|
buyerName: string | null;
|
|
730
731
|
transportCost: number;
|
|
731
732
|
organizationId: string;
|
|
@@ -734,7 +735,6 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
734
735
|
miscellaneousCost: number;
|
|
735
736
|
invoiceNumber: string | null;
|
|
736
737
|
waybillId: string;
|
|
737
|
-
invoiceId: string | null;
|
|
738
738
|
handlerUserId: string | null;
|
|
739
739
|
dealCapital: number | null;
|
|
740
740
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -782,6 +782,7 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
782
782
|
updatedAt: string;
|
|
783
783
|
currency: string;
|
|
784
784
|
notes: string | null;
|
|
785
|
+
invoiceId: string | null;
|
|
785
786
|
buyerName: string | null;
|
|
786
787
|
transportCost: number;
|
|
787
788
|
organizationId: string;
|
|
@@ -790,7 +791,6 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
790
791
|
miscellaneousCost: number;
|
|
791
792
|
invoiceNumber: string | null;
|
|
792
793
|
waybillId: string;
|
|
793
|
-
invoiceId: string | null;
|
|
794
794
|
handlerUserId: string | null;
|
|
795
795
|
dealCapital: number | null;
|
|
796
796
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -836,6 +836,7 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
836
836
|
createdAt: string;
|
|
837
837
|
updatedAt: string;
|
|
838
838
|
notes: string | null;
|
|
839
|
+
invoiceId: string | null;
|
|
839
840
|
buyerName: string | null;
|
|
840
841
|
transportCost: number;
|
|
841
842
|
organizationId: string;
|
|
@@ -844,7 +845,6 @@ export declare const commodityDealResourceSchema: z.ZodObject<{
|
|
|
844
845
|
miscellaneousCost: number;
|
|
845
846
|
invoiceNumber: string | null;
|
|
846
847
|
waybillId: string;
|
|
847
|
-
invoiceId: string | null;
|
|
848
848
|
handlerUserId: string | null;
|
|
849
849
|
dealCapital: number | null;
|
|
850
850
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -995,6 +995,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
995
995
|
updatedAt: string;
|
|
996
996
|
currency: string;
|
|
997
997
|
notes: string | null;
|
|
998
|
+
invoiceId: string | null;
|
|
998
999
|
buyerName: string | null;
|
|
999
1000
|
transportCost: number;
|
|
1000
1001
|
organizationId: string;
|
|
@@ -1003,7 +1004,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1003
1004
|
miscellaneousCost: number;
|
|
1004
1005
|
invoiceNumber: string | null;
|
|
1005
1006
|
waybillId: string;
|
|
1006
|
-
invoiceId: string | null;
|
|
1007
1007
|
handlerUserId: string | null;
|
|
1008
1008
|
dealCapital: number | null;
|
|
1009
1009
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1042,6 +1042,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1042
1042
|
createdAt: string;
|
|
1043
1043
|
updatedAt: string;
|
|
1044
1044
|
notes: string | null;
|
|
1045
|
+
invoiceId: string | null;
|
|
1045
1046
|
buyerName: string | null;
|
|
1046
1047
|
transportCost: number;
|
|
1047
1048
|
organizationId: string;
|
|
@@ -1050,7 +1051,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1050
1051
|
miscellaneousCost: number;
|
|
1051
1052
|
invoiceNumber: string | null;
|
|
1052
1053
|
waybillId: string;
|
|
1053
|
-
invoiceId: string | null;
|
|
1054
1054
|
handlerUserId: string | null;
|
|
1055
1055
|
dealCapital: number | null;
|
|
1056
1056
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1098,6 +1098,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1098
1098
|
updatedAt: string;
|
|
1099
1099
|
currency: string;
|
|
1100
1100
|
notes: string | null;
|
|
1101
|
+
invoiceId: string | null;
|
|
1101
1102
|
buyerName: string | null;
|
|
1102
1103
|
transportCost: number;
|
|
1103
1104
|
organizationId: string;
|
|
@@ -1106,7 +1107,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1106
1107
|
miscellaneousCost: number;
|
|
1107
1108
|
invoiceNumber: string | null;
|
|
1108
1109
|
waybillId: string;
|
|
1109
|
-
invoiceId: string | null;
|
|
1110
1110
|
handlerUserId: string | null;
|
|
1111
1111
|
dealCapital: number | null;
|
|
1112
1112
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1152,6 +1152,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1152
1152
|
createdAt: string;
|
|
1153
1153
|
updatedAt: string;
|
|
1154
1154
|
notes: string | null;
|
|
1155
|
+
invoiceId: string | null;
|
|
1155
1156
|
buyerName: string | null;
|
|
1156
1157
|
transportCost: number;
|
|
1157
1158
|
organizationId: string;
|
|
@@ -1160,7 +1161,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1160
1161
|
miscellaneousCost: number;
|
|
1161
1162
|
invoiceNumber: string | null;
|
|
1162
1163
|
waybillId: string;
|
|
1163
|
-
invoiceId: string | null;
|
|
1164
1164
|
handlerUserId: string | null;
|
|
1165
1165
|
dealCapital: number | null;
|
|
1166
1166
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1234,6 +1234,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1234
1234
|
updatedAt: string;
|
|
1235
1235
|
currency: string;
|
|
1236
1236
|
notes: string | null;
|
|
1237
|
+
invoiceId: string | null;
|
|
1237
1238
|
buyerName: string | null;
|
|
1238
1239
|
transportCost: number;
|
|
1239
1240
|
organizationId: string;
|
|
@@ -1242,7 +1243,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1242
1243
|
miscellaneousCost: number;
|
|
1243
1244
|
invoiceNumber: string | null;
|
|
1244
1245
|
waybillId: string;
|
|
1245
|
-
invoiceId: string | null;
|
|
1246
1246
|
handlerUserId: string | null;
|
|
1247
1247
|
dealCapital: number | null;
|
|
1248
1248
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1300,6 +1300,7 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1300
1300
|
createdAt: string;
|
|
1301
1301
|
updatedAt: string;
|
|
1302
1302
|
notes: string | null;
|
|
1303
|
+
invoiceId: string | null;
|
|
1303
1304
|
buyerName: string | null;
|
|
1304
1305
|
transportCost: number;
|
|
1305
1306
|
organizationId: string;
|
|
@@ -1308,7 +1309,6 @@ export declare const commodityDealResponseSchema: z.ZodObject<{
|
|
|
1308
1309
|
miscellaneousCost: number;
|
|
1309
1310
|
invoiceNumber: string | null;
|
|
1310
1311
|
waybillId: string;
|
|
1311
|
-
invoiceId: string | null;
|
|
1312
1312
|
handlerUserId: string | null;
|
|
1313
1313
|
dealCapital: number | null;
|
|
1314
1314
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1470,6 +1470,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1470
1470
|
updatedAt: string;
|
|
1471
1471
|
currency: string;
|
|
1472
1472
|
notes: string | null;
|
|
1473
|
+
invoiceId: string | null;
|
|
1473
1474
|
buyerName: string | null;
|
|
1474
1475
|
transportCost: number;
|
|
1475
1476
|
organizationId: string;
|
|
@@ -1478,7 +1479,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1478
1479
|
miscellaneousCost: number;
|
|
1479
1480
|
invoiceNumber: string | null;
|
|
1480
1481
|
waybillId: string;
|
|
1481
|
-
invoiceId: string | null;
|
|
1482
1482
|
handlerUserId: string | null;
|
|
1483
1483
|
dealCapital: number | null;
|
|
1484
1484
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1517,6 +1517,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1517
1517
|
createdAt: string;
|
|
1518
1518
|
updatedAt: string;
|
|
1519
1519
|
notes: string | null;
|
|
1520
|
+
invoiceId: string | null;
|
|
1520
1521
|
buyerName: string | null;
|
|
1521
1522
|
transportCost: number;
|
|
1522
1523
|
organizationId: string;
|
|
@@ -1525,7 +1526,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1525
1526
|
miscellaneousCost: number;
|
|
1526
1527
|
invoiceNumber: string | null;
|
|
1527
1528
|
waybillId: string;
|
|
1528
|
-
invoiceId: string | null;
|
|
1529
1529
|
handlerUserId: string | null;
|
|
1530
1530
|
dealCapital: number | null;
|
|
1531
1531
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1573,6 +1573,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1573
1573
|
updatedAt: string;
|
|
1574
1574
|
currency: string;
|
|
1575
1575
|
notes: string | null;
|
|
1576
|
+
invoiceId: string | null;
|
|
1576
1577
|
buyerName: string | null;
|
|
1577
1578
|
transportCost: number;
|
|
1578
1579
|
organizationId: string;
|
|
@@ -1581,7 +1582,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1581
1582
|
miscellaneousCost: number;
|
|
1582
1583
|
invoiceNumber: string | null;
|
|
1583
1584
|
waybillId: string;
|
|
1584
|
-
invoiceId: string | null;
|
|
1585
1585
|
handlerUserId: string | null;
|
|
1586
1586
|
dealCapital: number | null;
|
|
1587
1587
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1627,6 +1627,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1627
1627
|
createdAt: string;
|
|
1628
1628
|
updatedAt: string;
|
|
1629
1629
|
notes: string | null;
|
|
1630
|
+
invoiceId: string | null;
|
|
1630
1631
|
buyerName: string | null;
|
|
1631
1632
|
transportCost: number;
|
|
1632
1633
|
organizationId: string;
|
|
@@ -1635,7 +1636,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1635
1636
|
miscellaneousCost: number;
|
|
1636
1637
|
invoiceNumber: string | null;
|
|
1637
1638
|
waybillId: string;
|
|
1638
|
-
invoiceId: string | null;
|
|
1639
1639
|
handlerUserId: string | null;
|
|
1640
1640
|
dealCapital: number | null;
|
|
1641
1641
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1709,6 +1709,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1709
1709
|
updatedAt: string;
|
|
1710
1710
|
currency: string;
|
|
1711
1711
|
notes: string | null;
|
|
1712
|
+
invoiceId: string | null;
|
|
1712
1713
|
buyerName: string | null;
|
|
1713
1714
|
transportCost: number;
|
|
1714
1715
|
organizationId: string;
|
|
@@ -1717,7 +1718,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1717
1718
|
miscellaneousCost: number;
|
|
1718
1719
|
invoiceNumber: string | null;
|
|
1719
1720
|
waybillId: string;
|
|
1720
|
-
invoiceId: string | null;
|
|
1721
1721
|
handlerUserId: string | null;
|
|
1722
1722
|
dealCapital: number | null;
|
|
1723
1723
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1775,6 +1775,7 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1775
1775
|
createdAt: string;
|
|
1776
1776
|
updatedAt: string;
|
|
1777
1777
|
notes: string | null;
|
|
1778
|
+
invoiceId: string | null;
|
|
1778
1779
|
buyerName: string | null;
|
|
1779
1780
|
transportCost: number;
|
|
1780
1781
|
organizationId: string;
|
|
@@ -1783,7 +1784,6 @@ export declare const commodityDealListResponseSchema: z.ZodObject<{
|
|
|
1783
1784
|
miscellaneousCost: number;
|
|
1784
1785
|
invoiceNumber: string | null;
|
|
1785
1786
|
waybillId: string;
|
|
1786
|
-
invoiceId: string | null;
|
|
1787
1787
|
handlerUserId: string | null;
|
|
1788
1788
|
dealCapital: number | null;
|
|
1789
1789
|
companyFeeMode: "percent_of_invoice" | "per_kg" | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"farms.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/farms.schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"farms.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/farms.schemas.ts"],"names":[],"mappings":"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"}
|