@deepintel-ltd/farmpro-contracts 1.7.20 → 1.8.0
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 +6 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/routes/commodity-deals.routes.d.ts +2702 -0
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -0
- package/dist/routes/commodity-deals.routes.js +83 -0
- package/dist/routes/device-gateway-admin.routes.d.ts +1135 -0
- package/dist/routes/device-gateway-admin.routes.d.ts.map +1 -0
- package/dist/routes/device-gateway-admin.routes.js +105 -0
- package/dist/routes/device-gateway.routes.d.ts +457 -0
- package/dist/routes/device-gateway.routes.d.ts.map +1 -0
- package/dist/routes/device-gateway.routes.js +63 -0
- package/dist/routes/index.d.ts +9 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +6 -0
- package/dist/routes/invoices.routes.d.ts +49 -0
- package/dist/routes/invoices.routes.d.ts.map +1 -1
- package/dist/routes/organizations.routes.d.ts +49 -0
- package/dist/routes/organizations.routes.d.ts.map +1 -1
- package/dist/routes/waybills.routes.d.ts +42 -0
- package/dist/routes/waybills.routes.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.d.ts +1109 -0
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -0
- package/dist/schemas/commodity-deals.schemas.js +82 -0
- package/dist/schemas/device-gateway.schemas.d.ts +1407 -0
- package/dist/schemas/device-gateway.schemas.d.ts.map +1 -0
- package/dist/schemas/device-gateway.schemas.js +165 -0
- package/dist/schemas/invoices.schemas.d.ts +38 -0
- package/dist/schemas/invoices.schemas.d.ts.map +1 -1
- package/dist/schemas/invoices.schemas.js +2 -0
- package/dist/schemas/organizations.schemas.d.ts +38 -0
- package/dist/schemas/organizations.schemas.d.ts.map +1 -1
- package/dist/schemas/organizations.schemas.js +2 -0
- package/dist/schemas/waybills.schemas.d.ts +48 -0
- package/dist/schemas/waybills.schemas.d.ts.map +1 -1
- package/dist/schemas/waybills.schemas.js +3 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export declare const organizationsRouter: {
|
|
|
30
30
|
phone: z.ZodNullable<z.ZodString>;
|
|
31
31
|
address: z.ZodNullable<z.ZodString>;
|
|
32
32
|
logo: z.ZodNullable<z.ZodString>;
|
|
33
|
+
commodityCommissionRate: z.ZodNullable<z.ZodNumber>;
|
|
33
34
|
} & {
|
|
34
35
|
createdAt: z.ZodString;
|
|
35
36
|
updatedAt: z.ZodString;
|
|
@@ -41,6 +42,7 @@ export declare const organizationsRouter: {
|
|
|
41
42
|
phone: string | null;
|
|
42
43
|
address: string | null;
|
|
43
44
|
logo: string | null;
|
|
45
|
+
commodityCommissionRate: number | null;
|
|
44
46
|
}, {
|
|
45
47
|
email: string | null;
|
|
46
48
|
createdAt: string;
|
|
@@ -49,6 +51,7 @@ export declare const organizationsRouter: {
|
|
|
49
51
|
phone: string | null;
|
|
50
52
|
address: string | null;
|
|
51
53
|
logo: string | null;
|
|
54
|
+
commodityCommissionRate: number | null;
|
|
52
55
|
}>;
|
|
53
56
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
54
57
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -64,6 +67,7 @@ export declare const organizationsRouter: {
|
|
|
64
67
|
phone: string | null;
|
|
65
68
|
address: string | null;
|
|
66
69
|
logo: string | null;
|
|
70
|
+
commodityCommissionRate: number | null;
|
|
67
71
|
};
|
|
68
72
|
relationships?: Record<string, unknown> | undefined;
|
|
69
73
|
links?: Record<string, string> | undefined;
|
|
@@ -79,6 +83,7 @@ export declare const organizationsRouter: {
|
|
|
79
83
|
phone: string | null;
|
|
80
84
|
address: string | null;
|
|
81
85
|
logo: string | null;
|
|
86
|
+
commodityCommissionRate: number | null;
|
|
82
87
|
};
|
|
83
88
|
relationships?: Record<string, unknown> | undefined;
|
|
84
89
|
links?: Record<string, string> | undefined;
|
|
@@ -120,6 +125,7 @@ export declare const organizationsRouter: {
|
|
|
120
125
|
phone: string | null;
|
|
121
126
|
address: string | null;
|
|
122
127
|
logo: string | null;
|
|
128
|
+
commodityCommissionRate: number | null;
|
|
123
129
|
};
|
|
124
130
|
relationships?: Record<string, unknown> | undefined;
|
|
125
131
|
links?: Record<string, string> | undefined;
|
|
@@ -147,6 +153,7 @@ export declare const organizationsRouter: {
|
|
|
147
153
|
phone: string | null;
|
|
148
154
|
address: string | null;
|
|
149
155
|
logo: string | null;
|
|
156
|
+
commodityCommissionRate: number | null;
|
|
150
157
|
};
|
|
151
158
|
relationships?: Record<string, unknown> | undefined;
|
|
152
159
|
links?: Record<string, string> | undefined;
|
|
@@ -268,18 +275,21 @@ export declare const organizationsRouter: {
|
|
|
268
275
|
phone: z.ZodOptional<z.ZodString>;
|
|
269
276
|
address: z.ZodOptional<z.ZodString>;
|
|
270
277
|
logo: z.ZodOptional<z.ZodString>;
|
|
278
|
+
commodityCommissionRate: z.ZodOptional<z.ZodNumber>;
|
|
271
279
|
}, "strip", z.ZodTypeAny, {
|
|
272
280
|
name: string;
|
|
273
281
|
email?: string | undefined;
|
|
274
282
|
phone?: string | undefined;
|
|
275
283
|
address?: string | undefined;
|
|
276
284
|
logo?: string | undefined;
|
|
285
|
+
commodityCommissionRate?: number | undefined;
|
|
277
286
|
}, {
|
|
278
287
|
name: string;
|
|
279
288
|
email?: string | undefined;
|
|
280
289
|
phone?: string | undefined;
|
|
281
290
|
address?: string | undefined;
|
|
282
291
|
logo?: string | undefined;
|
|
292
|
+
commodityCommissionRate?: number | undefined;
|
|
283
293
|
}>;
|
|
284
294
|
}, "strip", z.ZodTypeAny, {
|
|
285
295
|
type: "organizations";
|
|
@@ -289,6 +299,7 @@ export declare const organizationsRouter: {
|
|
|
289
299
|
phone?: string | undefined;
|
|
290
300
|
address?: string | undefined;
|
|
291
301
|
logo?: string | undefined;
|
|
302
|
+
commodityCommissionRate?: number | undefined;
|
|
292
303
|
};
|
|
293
304
|
}, {
|
|
294
305
|
type: "organizations";
|
|
@@ -298,6 +309,7 @@ export declare const organizationsRouter: {
|
|
|
298
309
|
phone?: string | undefined;
|
|
299
310
|
address?: string | undefined;
|
|
300
311
|
logo?: string | undefined;
|
|
312
|
+
commodityCommissionRate?: number | undefined;
|
|
301
313
|
};
|
|
302
314
|
}>;
|
|
303
315
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -309,6 +321,7 @@ export declare const organizationsRouter: {
|
|
|
309
321
|
phone?: string | undefined;
|
|
310
322
|
address?: string | undefined;
|
|
311
323
|
logo?: string | undefined;
|
|
324
|
+
commodityCommissionRate?: number | undefined;
|
|
312
325
|
};
|
|
313
326
|
};
|
|
314
327
|
}, {
|
|
@@ -320,6 +333,7 @@ export declare const organizationsRouter: {
|
|
|
320
333
|
phone?: string | undefined;
|
|
321
334
|
address?: string | undefined;
|
|
322
335
|
logo?: string | undefined;
|
|
336
|
+
commodityCommissionRate?: number | undefined;
|
|
323
337
|
};
|
|
324
338
|
};
|
|
325
339
|
}>;
|
|
@@ -335,6 +349,7 @@ export declare const organizationsRouter: {
|
|
|
335
349
|
phone: z.ZodNullable<z.ZodString>;
|
|
336
350
|
address: z.ZodNullable<z.ZodString>;
|
|
337
351
|
logo: z.ZodNullable<z.ZodString>;
|
|
352
|
+
commodityCommissionRate: z.ZodNullable<z.ZodNumber>;
|
|
338
353
|
} & {
|
|
339
354
|
createdAt: z.ZodString;
|
|
340
355
|
updatedAt: z.ZodString;
|
|
@@ -346,6 +361,7 @@ export declare const organizationsRouter: {
|
|
|
346
361
|
phone: string | null;
|
|
347
362
|
address: string | null;
|
|
348
363
|
logo: string | null;
|
|
364
|
+
commodityCommissionRate: number | null;
|
|
349
365
|
}, {
|
|
350
366
|
email: string | null;
|
|
351
367
|
createdAt: string;
|
|
@@ -354,6 +370,7 @@ export declare const organizationsRouter: {
|
|
|
354
370
|
phone: string | null;
|
|
355
371
|
address: string | null;
|
|
356
372
|
logo: string | null;
|
|
373
|
+
commodityCommissionRate: number | null;
|
|
357
374
|
}>;
|
|
358
375
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
359
376
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -369,6 +386,7 @@ export declare const organizationsRouter: {
|
|
|
369
386
|
phone: string | null;
|
|
370
387
|
address: string | null;
|
|
371
388
|
logo: string | null;
|
|
389
|
+
commodityCommissionRate: number | null;
|
|
372
390
|
};
|
|
373
391
|
relationships?: Record<string, unknown> | undefined;
|
|
374
392
|
links?: Record<string, string> | undefined;
|
|
@@ -384,6 +402,7 @@ export declare const organizationsRouter: {
|
|
|
384
402
|
phone: string | null;
|
|
385
403
|
address: string | null;
|
|
386
404
|
logo: string | null;
|
|
405
|
+
commodityCommissionRate: number | null;
|
|
387
406
|
};
|
|
388
407
|
relationships?: Record<string, unknown> | undefined;
|
|
389
408
|
links?: Record<string, string> | undefined;
|
|
@@ -425,6 +444,7 @@ export declare const organizationsRouter: {
|
|
|
425
444
|
phone: string | null;
|
|
426
445
|
address: string | null;
|
|
427
446
|
logo: string | null;
|
|
447
|
+
commodityCommissionRate: number | null;
|
|
428
448
|
};
|
|
429
449
|
relationships?: Record<string, unknown> | undefined;
|
|
430
450
|
links?: Record<string, string> | undefined;
|
|
@@ -452,6 +472,7 @@ export declare const organizationsRouter: {
|
|
|
452
472
|
phone: string | null;
|
|
453
473
|
address: string | null;
|
|
454
474
|
logo: string | null;
|
|
475
|
+
commodityCommissionRate: number | null;
|
|
455
476
|
};
|
|
456
477
|
relationships?: Record<string, unknown> | undefined;
|
|
457
478
|
links?: Record<string, string> | undefined;
|
|
@@ -763,6 +784,7 @@ export declare const organizationsRouter: {
|
|
|
763
784
|
phone: z.ZodNullable<z.ZodString>;
|
|
764
785
|
address: z.ZodNullable<z.ZodString>;
|
|
765
786
|
logo: z.ZodNullable<z.ZodString>;
|
|
787
|
+
commodityCommissionRate: z.ZodNullable<z.ZodNumber>;
|
|
766
788
|
} & {
|
|
767
789
|
createdAt: z.ZodString;
|
|
768
790
|
updatedAt: z.ZodString;
|
|
@@ -774,6 +796,7 @@ export declare const organizationsRouter: {
|
|
|
774
796
|
phone: string | null;
|
|
775
797
|
address: string | null;
|
|
776
798
|
logo: string | null;
|
|
799
|
+
commodityCommissionRate: number | null;
|
|
777
800
|
}, {
|
|
778
801
|
email: string | null;
|
|
779
802
|
createdAt: string;
|
|
@@ -782,6 +805,7 @@ export declare const organizationsRouter: {
|
|
|
782
805
|
phone: string | null;
|
|
783
806
|
address: string | null;
|
|
784
807
|
logo: string | null;
|
|
808
|
+
commodityCommissionRate: number | null;
|
|
785
809
|
}>;
|
|
786
810
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
787
811
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -797,6 +821,7 @@ export declare const organizationsRouter: {
|
|
|
797
821
|
phone: string | null;
|
|
798
822
|
address: string | null;
|
|
799
823
|
logo: string | null;
|
|
824
|
+
commodityCommissionRate: number | null;
|
|
800
825
|
};
|
|
801
826
|
relationships?: Record<string, unknown> | undefined;
|
|
802
827
|
links?: Record<string, string> | undefined;
|
|
@@ -812,6 +837,7 @@ export declare const organizationsRouter: {
|
|
|
812
837
|
phone: string | null;
|
|
813
838
|
address: string | null;
|
|
814
839
|
logo: string | null;
|
|
840
|
+
commodityCommissionRate: number | null;
|
|
815
841
|
};
|
|
816
842
|
relationships?: Record<string, unknown> | undefined;
|
|
817
843
|
links?: Record<string, string> | undefined;
|
|
@@ -853,6 +879,7 @@ export declare const organizationsRouter: {
|
|
|
853
879
|
phone: string | null;
|
|
854
880
|
address: string | null;
|
|
855
881
|
logo: string | null;
|
|
882
|
+
commodityCommissionRate: number | null;
|
|
856
883
|
};
|
|
857
884
|
relationships?: Record<string, unknown> | undefined;
|
|
858
885
|
links?: Record<string, string> | undefined;
|
|
@@ -880,6 +907,7 @@ export declare const organizationsRouter: {
|
|
|
880
907
|
phone: string | null;
|
|
881
908
|
address: string | null;
|
|
882
909
|
logo: string | null;
|
|
910
|
+
commodityCommissionRate: number | null;
|
|
883
911
|
};
|
|
884
912
|
relationships?: Record<string, unknown> | undefined;
|
|
885
913
|
links?: Record<string, string> | undefined;
|
|
@@ -1099,18 +1127,21 @@ export declare const organizationsRouter: {
|
|
|
1099
1127
|
phone: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1100
1128
|
address: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1101
1129
|
logo: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1130
|
+
commodityCommissionRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1102
1131
|
}, "strip", z.ZodTypeAny, {
|
|
1103
1132
|
email?: string | undefined;
|
|
1104
1133
|
name?: string | undefined;
|
|
1105
1134
|
phone?: string | undefined;
|
|
1106
1135
|
address?: string | undefined;
|
|
1107
1136
|
logo?: string | undefined;
|
|
1137
|
+
commodityCommissionRate?: number | undefined;
|
|
1108
1138
|
}, {
|
|
1109
1139
|
email?: string | undefined;
|
|
1110
1140
|
name?: string | undefined;
|
|
1111
1141
|
phone?: string | undefined;
|
|
1112
1142
|
address?: string | undefined;
|
|
1113
1143
|
logo?: string | undefined;
|
|
1144
|
+
commodityCommissionRate?: number | undefined;
|
|
1114
1145
|
}>;
|
|
1115
1146
|
}, "strip", z.ZodTypeAny, {
|
|
1116
1147
|
type: "organizations";
|
|
@@ -1120,6 +1151,7 @@ export declare const organizationsRouter: {
|
|
|
1120
1151
|
phone?: string | undefined;
|
|
1121
1152
|
address?: string | undefined;
|
|
1122
1153
|
logo?: string | undefined;
|
|
1154
|
+
commodityCommissionRate?: number | undefined;
|
|
1123
1155
|
};
|
|
1124
1156
|
id?: string | undefined;
|
|
1125
1157
|
}, {
|
|
@@ -1130,6 +1162,7 @@ export declare const organizationsRouter: {
|
|
|
1130
1162
|
phone?: string | undefined;
|
|
1131
1163
|
address?: string | undefined;
|
|
1132
1164
|
logo?: string | undefined;
|
|
1165
|
+
commodityCommissionRate?: number | undefined;
|
|
1133
1166
|
};
|
|
1134
1167
|
id?: string | undefined;
|
|
1135
1168
|
}>;
|
|
@@ -1142,6 +1175,7 @@ export declare const organizationsRouter: {
|
|
|
1142
1175
|
phone?: string | undefined;
|
|
1143
1176
|
address?: string | undefined;
|
|
1144
1177
|
logo?: string | undefined;
|
|
1178
|
+
commodityCommissionRate?: number | undefined;
|
|
1145
1179
|
};
|
|
1146
1180
|
id?: string | undefined;
|
|
1147
1181
|
};
|
|
@@ -1154,6 +1188,7 @@ export declare const organizationsRouter: {
|
|
|
1154
1188
|
phone?: string | undefined;
|
|
1155
1189
|
address?: string | undefined;
|
|
1156
1190
|
logo?: string | undefined;
|
|
1191
|
+
commodityCommissionRate?: number | undefined;
|
|
1157
1192
|
};
|
|
1158
1193
|
id?: string | undefined;
|
|
1159
1194
|
};
|
|
@@ -1170,6 +1205,7 @@ export declare const organizationsRouter: {
|
|
|
1170
1205
|
phone: z.ZodNullable<z.ZodString>;
|
|
1171
1206
|
address: z.ZodNullable<z.ZodString>;
|
|
1172
1207
|
logo: z.ZodNullable<z.ZodString>;
|
|
1208
|
+
commodityCommissionRate: z.ZodNullable<z.ZodNumber>;
|
|
1173
1209
|
} & {
|
|
1174
1210
|
createdAt: z.ZodString;
|
|
1175
1211
|
updatedAt: z.ZodString;
|
|
@@ -1181,6 +1217,7 @@ export declare const organizationsRouter: {
|
|
|
1181
1217
|
phone: string | null;
|
|
1182
1218
|
address: string | null;
|
|
1183
1219
|
logo: string | null;
|
|
1220
|
+
commodityCommissionRate: number | null;
|
|
1184
1221
|
}, {
|
|
1185
1222
|
email: string | null;
|
|
1186
1223
|
createdAt: string;
|
|
@@ -1189,6 +1226,7 @@ export declare const organizationsRouter: {
|
|
|
1189
1226
|
phone: string | null;
|
|
1190
1227
|
address: string | null;
|
|
1191
1228
|
logo: string | null;
|
|
1229
|
+
commodityCommissionRate: number | null;
|
|
1192
1230
|
}>;
|
|
1193
1231
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1194
1232
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -1204,6 +1242,7 @@ export declare const organizationsRouter: {
|
|
|
1204
1242
|
phone: string | null;
|
|
1205
1243
|
address: string | null;
|
|
1206
1244
|
logo: string | null;
|
|
1245
|
+
commodityCommissionRate: number | null;
|
|
1207
1246
|
};
|
|
1208
1247
|
relationships?: Record<string, unknown> | undefined;
|
|
1209
1248
|
links?: Record<string, string> | undefined;
|
|
@@ -1219,6 +1258,7 @@ export declare const organizationsRouter: {
|
|
|
1219
1258
|
phone: string | null;
|
|
1220
1259
|
address: string | null;
|
|
1221
1260
|
logo: string | null;
|
|
1261
|
+
commodityCommissionRate: number | null;
|
|
1222
1262
|
};
|
|
1223
1263
|
relationships?: Record<string, unknown> | undefined;
|
|
1224
1264
|
links?: Record<string, string> | undefined;
|
|
@@ -1260,6 +1300,7 @@ export declare const organizationsRouter: {
|
|
|
1260
1300
|
phone: string | null;
|
|
1261
1301
|
address: string | null;
|
|
1262
1302
|
logo: string | null;
|
|
1303
|
+
commodityCommissionRate: number | null;
|
|
1263
1304
|
};
|
|
1264
1305
|
relationships?: Record<string, unknown> | undefined;
|
|
1265
1306
|
links?: Record<string, string> | undefined;
|
|
@@ -1287,6 +1328,7 @@ export declare const organizationsRouter: {
|
|
|
1287
1328
|
phone: string | null;
|
|
1288
1329
|
address: string | null;
|
|
1289
1330
|
logo: string | null;
|
|
1331
|
+
commodityCommissionRate: number | null;
|
|
1290
1332
|
};
|
|
1291
1333
|
relationships?: Record<string, unknown> | undefined;
|
|
1292
1334
|
links?: Record<string, string> | undefined;
|
|
@@ -1696,6 +1738,7 @@ export declare const organizationsRouter: {
|
|
|
1696
1738
|
phone: z.ZodNullable<z.ZodString>;
|
|
1697
1739
|
address: z.ZodNullable<z.ZodString>;
|
|
1698
1740
|
logo: z.ZodNullable<z.ZodString>;
|
|
1741
|
+
commodityCommissionRate: z.ZodNullable<z.ZodNumber>;
|
|
1699
1742
|
} & {
|
|
1700
1743
|
createdAt: z.ZodString;
|
|
1701
1744
|
updatedAt: z.ZodString;
|
|
@@ -1707,6 +1750,7 @@ export declare const organizationsRouter: {
|
|
|
1707
1750
|
phone: string | null;
|
|
1708
1751
|
address: string | null;
|
|
1709
1752
|
logo: string | null;
|
|
1753
|
+
commodityCommissionRate: number | null;
|
|
1710
1754
|
}, {
|
|
1711
1755
|
email: string | null;
|
|
1712
1756
|
createdAt: string;
|
|
@@ -1715,6 +1759,7 @@ export declare const organizationsRouter: {
|
|
|
1715
1759
|
phone: string | null;
|
|
1716
1760
|
address: string | null;
|
|
1717
1761
|
logo: string | null;
|
|
1762
|
+
commodityCommissionRate: number | null;
|
|
1718
1763
|
}>;
|
|
1719
1764
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1720
1765
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -1730,6 +1775,7 @@ export declare const organizationsRouter: {
|
|
|
1730
1775
|
phone: string | null;
|
|
1731
1776
|
address: string | null;
|
|
1732
1777
|
logo: string | null;
|
|
1778
|
+
commodityCommissionRate: number | null;
|
|
1733
1779
|
};
|
|
1734
1780
|
relationships?: Record<string, unknown> | undefined;
|
|
1735
1781
|
links?: Record<string, string> | undefined;
|
|
@@ -1745,6 +1791,7 @@ export declare const organizationsRouter: {
|
|
|
1745
1791
|
phone: string | null;
|
|
1746
1792
|
address: string | null;
|
|
1747
1793
|
logo: string | null;
|
|
1794
|
+
commodityCommissionRate: number | null;
|
|
1748
1795
|
};
|
|
1749
1796
|
relationships?: Record<string, unknown> | undefined;
|
|
1750
1797
|
links?: Record<string, string> | undefined;
|
|
@@ -1786,6 +1833,7 @@ export declare const organizationsRouter: {
|
|
|
1786
1833
|
phone: string | null;
|
|
1787
1834
|
address: string | null;
|
|
1788
1835
|
logo: string | null;
|
|
1836
|
+
commodityCommissionRate: number | null;
|
|
1789
1837
|
};
|
|
1790
1838
|
relationships?: Record<string, unknown> | undefined;
|
|
1791
1839
|
links?: Record<string, string> | undefined;
|
|
@@ -1813,6 +1861,7 @@ export declare const organizationsRouter: {
|
|
|
1813
1861
|
phone: string | null;
|
|
1814
1862
|
address: string | null;
|
|
1815
1863
|
logo: string | null;
|
|
1864
|
+
commodityCommissionRate: number | null;
|
|
1816
1865
|
};
|
|
1817
1866
|
relationships?: Record<string, unknown> | undefined;
|
|
1818
1867
|
links?: Record<string, string> | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/organizations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"organizations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/organizations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwL9B,CAAC"}
|
|
@@ -602,6 +602,9 @@ export declare const waybillsRouter: {
|
|
|
602
602
|
transporterName: z.ZodOptional<z.ZodString>;
|
|
603
603
|
dispatchedLocation: z.ZodOptional<z.ZodString>;
|
|
604
604
|
receivedCondition: z.ZodOptional<z.ZodString>;
|
|
605
|
+
purchaseCost: z.ZodOptional<z.ZodNumber>;
|
|
606
|
+
transportCost: z.ZodOptional<z.ZodNumber>;
|
|
607
|
+
miscellaneousCost: z.ZodOptional<z.ZodNumber>;
|
|
605
608
|
}, "strip", z.ZodTypeAny, {
|
|
606
609
|
currency: string;
|
|
607
610
|
items: {
|
|
@@ -616,6 +619,7 @@ export declare const waybillsRouter: {
|
|
|
616
619
|
buyerId: string;
|
|
617
620
|
notes?: string | undefined;
|
|
618
621
|
totalValue?: number | undefined;
|
|
622
|
+
transportCost?: number | undefined;
|
|
619
623
|
issueDate?: string | undefined;
|
|
620
624
|
senderAddress?: string | undefined;
|
|
621
625
|
senderPhone?: string | undefined;
|
|
@@ -628,6 +632,8 @@ export declare const waybillsRouter: {
|
|
|
628
632
|
transporterName?: string | undefined;
|
|
629
633
|
dispatchedLocation?: string | undefined;
|
|
630
634
|
receivedCondition?: string | undefined;
|
|
635
|
+
purchaseCost?: number | undefined;
|
|
636
|
+
miscellaneousCost?: number | undefined;
|
|
631
637
|
}, {
|
|
632
638
|
items: {
|
|
633
639
|
description: string;
|
|
@@ -642,6 +648,7 @@ export declare const waybillsRouter: {
|
|
|
642
648
|
currency?: string | undefined;
|
|
643
649
|
notes?: string | undefined;
|
|
644
650
|
totalValue?: number | undefined;
|
|
651
|
+
transportCost?: number | undefined;
|
|
645
652
|
issueDate?: string | undefined;
|
|
646
653
|
senderAddress?: string | undefined;
|
|
647
654
|
senderPhone?: string | undefined;
|
|
@@ -654,6 +661,8 @@ export declare const waybillsRouter: {
|
|
|
654
661
|
transporterName?: string | undefined;
|
|
655
662
|
dispatchedLocation?: string | undefined;
|
|
656
663
|
receivedCondition?: string | undefined;
|
|
664
|
+
purchaseCost?: number | undefined;
|
|
665
|
+
miscellaneousCost?: number | undefined;
|
|
657
666
|
}>;
|
|
658
667
|
}, "strip", z.ZodTypeAny, {
|
|
659
668
|
type: "waybills";
|
|
@@ -671,6 +680,7 @@ export declare const waybillsRouter: {
|
|
|
671
680
|
buyerId: string;
|
|
672
681
|
notes?: string | undefined;
|
|
673
682
|
totalValue?: number | undefined;
|
|
683
|
+
transportCost?: number | undefined;
|
|
674
684
|
issueDate?: string | undefined;
|
|
675
685
|
senderAddress?: string | undefined;
|
|
676
686
|
senderPhone?: string | undefined;
|
|
@@ -683,6 +693,8 @@ export declare const waybillsRouter: {
|
|
|
683
693
|
transporterName?: string | undefined;
|
|
684
694
|
dispatchedLocation?: string | undefined;
|
|
685
695
|
receivedCondition?: string | undefined;
|
|
696
|
+
purchaseCost?: number | undefined;
|
|
697
|
+
miscellaneousCost?: number | undefined;
|
|
686
698
|
};
|
|
687
699
|
}, {
|
|
688
700
|
type: "waybills";
|
|
@@ -700,6 +712,7 @@ export declare const waybillsRouter: {
|
|
|
700
712
|
currency?: string | undefined;
|
|
701
713
|
notes?: string | undefined;
|
|
702
714
|
totalValue?: number | undefined;
|
|
715
|
+
transportCost?: number | undefined;
|
|
703
716
|
issueDate?: string | undefined;
|
|
704
717
|
senderAddress?: string | undefined;
|
|
705
718
|
senderPhone?: string | undefined;
|
|
@@ -712,6 +725,8 @@ export declare const waybillsRouter: {
|
|
|
712
725
|
transporterName?: string | undefined;
|
|
713
726
|
dispatchedLocation?: string | undefined;
|
|
714
727
|
receivedCondition?: string | undefined;
|
|
728
|
+
purchaseCost?: number | undefined;
|
|
729
|
+
miscellaneousCost?: number | undefined;
|
|
715
730
|
};
|
|
716
731
|
}>;
|
|
717
732
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -731,6 +746,7 @@ export declare const waybillsRouter: {
|
|
|
731
746
|
buyerId: string;
|
|
732
747
|
notes?: string | undefined;
|
|
733
748
|
totalValue?: number | undefined;
|
|
749
|
+
transportCost?: number | undefined;
|
|
734
750
|
issueDate?: string | undefined;
|
|
735
751
|
senderAddress?: string | undefined;
|
|
736
752
|
senderPhone?: string | undefined;
|
|
@@ -743,6 +759,8 @@ export declare const waybillsRouter: {
|
|
|
743
759
|
transporterName?: string | undefined;
|
|
744
760
|
dispatchedLocation?: string | undefined;
|
|
745
761
|
receivedCondition?: string | undefined;
|
|
762
|
+
purchaseCost?: number | undefined;
|
|
763
|
+
miscellaneousCost?: number | undefined;
|
|
746
764
|
};
|
|
747
765
|
};
|
|
748
766
|
}, {
|
|
@@ -762,6 +780,7 @@ export declare const waybillsRouter: {
|
|
|
762
780
|
currency?: string | undefined;
|
|
763
781
|
notes?: string | undefined;
|
|
764
782
|
totalValue?: number | undefined;
|
|
783
|
+
transportCost?: number | undefined;
|
|
765
784
|
issueDate?: string | undefined;
|
|
766
785
|
senderAddress?: string | undefined;
|
|
767
786
|
senderPhone?: string | undefined;
|
|
@@ -774,6 +793,8 @@ export declare const waybillsRouter: {
|
|
|
774
793
|
transporterName?: string | undefined;
|
|
775
794
|
dispatchedLocation?: string | undefined;
|
|
776
795
|
receivedCondition?: string | undefined;
|
|
796
|
+
purchaseCost?: number | undefined;
|
|
797
|
+
miscellaneousCost?: number | undefined;
|
|
777
798
|
};
|
|
778
799
|
};
|
|
779
800
|
}>;
|
|
@@ -2075,10 +2096,14 @@ export declare const waybillsRouter: {
|
|
|
2075
2096
|
transporterName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2076
2097
|
dispatchedLocation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2077
2098
|
receivedCondition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2099
|
+
purchaseCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2100
|
+
transportCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2101
|
+
miscellaneousCost: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2078
2102
|
}, "strip", z.ZodTypeAny, {
|
|
2079
2103
|
currency?: string | undefined;
|
|
2080
2104
|
notes?: string | undefined;
|
|
2081
2105
|
totalValue?: number | undefined;
|
|
2106
|
+
transportCost?: number | undefined;
|
|
2082
2107
|
items?: {
|
|
2083
2108
|
description: string;
|
|
2084
2109
|
unit: string;
|
|
@@ -2101,10 +2126,13 @@ export declare const waybillsRouter: {
|
|
|
2101
2126
|
dispatchedLocation?: string | undefined;
|
|
2102
2127
|
receivedCondition?: string | undefined;
|
|
2103
2128
|
buyerId?: string | undefined;
|
|
2129
|
+
purchaseCost?: number | undefined;
|
|
2130
|
+
miscellaneousCost?: number | undefined;
|
|
2104
2131
|
}, {
|
|
2105
2132
|
currency?: string | undefined;
|
|
2106
2133
|
notes?: string | undefined;
|
|
2107
2134
|
totalValue?: number | undefined;
|
|
2135
|
+
transportCost?: number | undefined;
|
|
2108
2136
|
items?: {
|
|
2109
2137
|
description: string;
|
|
2110
2138
|
unit: string;
|
|
@@ -2127,6 +2155,8 @@ export declare const waybillsRouter: {
|
|
|
2127
2155
|
dispatchedLocation?: string | undefined;
|
|
2128
2156
|
receivedCondition?: string | undefined;
|
|
2129
2157
|
buyerId?: string | undefined;
|
|
2158
|
+
purchaseCost?: number | undefined;
|
|
2159
|
+
miscellaneousCost?: number | undefined;
|
|
2130
2160
|
}>;
|
|
2131
2161
|
}, "strip", z.ZodTypeAny, {
|
|
2132
2162
|
type: "waybills";
|
|
@@ -2135,6 +2165,7 @@ export declare const waybillsRouter: {
|
|
|
2135
2165
|
currency?: string | undefined;
|
|
2136
2166
|
notes?: string | undefined;
|
|
2137
2167
|
totalValue?: number | undefined;
|
|
2168
|
+
transportCost?: number | undefined;
|
|
2138
2169
|
items?: {
|
|
2139
2170
|
description: string;
|
|
2140
2171
|
unit: string;
|
|
@@ -2157,6 +2188,8 @@ export declare const waybillsRouter: {
|
|
|
2157
2188
|
dispatchedLocation?: string | undefined;
|
|
2158
2189
|
receivedCondition?: string | undefined;
|
|
2159
2190
|
buyerId?: string | undefined;
|
|
2191
|
+
purchaseCost?: number | undefined;
|
|
2192
|
+
miscellaneousCost?: number | undefined;
|
|
2160
2193
|
};
|
|
2161
2194
|
}, {
|
|
2162
2195
|
type: "waybills";
|
|
@@ -2165,6 +2198,7 @@ export declare const waybillsRouter: {
|
|
|
2165
2198
|
currency?: string | undefined;
|
|
2166
2199
|
notes?: string | undefined;
|
|
2167
2200
|
totalValue?: number | undefined;
|
|
2201
|
+
transportCost?: number | undefined;
|
|
2168
2202
|
items?: {
|
|
2169
2203
|
description: string;
|
|
2170
2204
|
unit: string;
|
|
@@ -2187,6 +2221,8 @@ export declare const waybillsRouter: {
|
|
|
2187
2221
|
dispatchedLocation?: string | undefined;
|
|
2188
2222
|
receivedCondition?: string | undefined;
|
|
2189
2223
|
buyerId?: string | undefined;
|
|
2224
|
+
purchaseCost?: number | undefined;
|
|
2225
|
+
miscellaneousCost?: number | undefined;
|
|
2190
2226
|
};
|
|
2191
2227
|
}>;
|
|
2192
2228
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2197,6 +2233,7 @@ export declare const waybillsRouter: {
|
|
|
2197
2233
|
currency?: string | undefined;
|
|
2198
2234
|
notes?: string | undefined;
|
|
2199
2235
|
totalValue?: number | undefined;
|
|
2236
|
+
transportCost?: number | undefined;
|
|
2200
2237
|
items?: {
|
|
2201
2238
|
description: string;
|
|
2202
2239
|
unit: string;
|
|
@@ -2219,6 +2256,8 @@ export declare const waybillsRouter: {
|
|
|
2219
2256
|
dispatchedLocation?: string | undefined;
|
|
2220
2257
|
receivedCondition?: string | undefined;
|
|
2221
2258
|
buyerId?: string | undefined;
|
|
2259
|
+
purchaseCost?: number | undefined;
|
|
2260
|
+
miscellaneousCost?: number | undefined;
|
|
2222
2261
|
};
|
|
2223
2262
|
};
|
|
2224
2263
|
}, {
|
|
@@ -2229,6 +2268,7 @@ export declare const waybillsRouter: {
|
|
|
2229
2268
|
currency?: string | undefined;
|
|
2230
2269
|
notes?: string | undefined;
|
|
2231
2270
|
totalValue?: number | undefined;
|
|
2271
|
+
transportCost?: number | undefined;
|
|
2232
2272
|
items?: {
|
|
2233
2273
|
description: string;
|
|
2234
2274
|
unit: string;
|
|
@@ -2251,6 +2291,8 @@ export declare const waybillsRouter: {
|
|
|
2251
2291
|
dispatchedLocation?: string | undefined;
|
|
2252
2292
|
receivedCondition?: string | undefined;
|
|
2253
2293
|
buyerId?: string | undefined;
|
|
2294
|
+
purchaseCost?: number | undefined;
|
|
2295
|
+
miscellaneousCost?: number | undefined;
|
|
2254
2296
|
};
|
|
2255
2297
|
};
|
|
2256
2298
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"waybills.routes.d.ts","sourceRoot":"","sources":["../../src/routes/waybills.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"waybills.routes.d.ts","sourceRoot":"","sources":["../../src/routes/waybills.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAexB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6FzB,CAAC"}
|