@deepintel-ltd/farmpro-contracts 1.23.0 → 1.23.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/routes/categories.routes.d.ts +26 -26
- package/dist/routes/commodity-deals.routes.d.ts +42 -42
- package/dist/routes/crop-profile.routes.d.ts +8 -8
- package/dist/routes/farm-enterprises.routes.d.ts +395 -0
- package/dist/routes/farm-enterprises.routes.d.ts.map +1 -1
- package/dist/routes/farm-enterprises.routes.js +14 -1
- package/dist/routes/farms.routes.d.ts +73 -20
- package/dist/routes/farms.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +96 -96
- package/dist/routes/field-monitoring.routes.d.ts +2 -2
- package/dist/routes/finance.routes.d.ts +8 -8
- package/dist/routes/invoices.routes.d.ts +63 -60
- package/dist/routes/invoices.routes.d.ts.map +1 -1
- package/dist/routes/invoices.routes.js +4 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +2 -2
- package/dist/routes/notifications.routes.d.ts +12 -12
- package/dist/routes/organizations.routes.d.ts +90 -47
- package/dist/routes/organizations.routes.d.ts.map +1 -1
- package/dist/routes/purchase-orders.routes.d.ts +9 -9
- package/dist/routes/suppliers.routes.d.ts +96 -96
- package/dist/routes/team-payments.routes.d.ts +105 -105
- package/dist/routes/team.routes.d.ts +125 -25
- package/dist/routes/team.routes.d.ts.map +1 -1
- package/dist/routes/trade-cash-events.routes.d.ts +46 -46
- package/dist/routes/waybills.routes.d.ts +61 -57
- package/dist/routes/waybills.routes.d.ts.map +1 -1
- package/dist/routes/waybills.routes.js +4 -1
- package/dist/schemas/categories.schemas.d.ts +21 -21
- package/dist/schemas/commodity-deals.schemas.d.ts +18 -18
- package/dist/schemas/crop-profile.schemas.d.ts +12 -12
- package/dist/schemas/farm-enterprises.schemas.d.ts +185 -0
- package/dist/schemas/farm-enterprises.schemas.d.ts.map +1 -1
- package/dist/schemas/farm-enterprises.schemas.js +21 -0
- package/dist/schemas/farms.schemas.d.ts +121 -19
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/farms.schemas.js +15 -1
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +2 -2
- package/dist/schemas/finance.schemas.d.ts +8 -8
- package/dist/schemas/invoices.schemas.d.ts +39 -39
- package/dist/schemas/notifications.schemas.d.ts +18 -18
- package/dist/schemas/organizations.schemas.d.ts +105 -46
- package/dist/schemas/organizations.schemas.d.ts.map +1 -1
- package/dist/schemas/organizations.schemas.js +8 -1
- package/dist/schemas/purchase-orders.schemas.d.ts +9 -9
- package/dist/schemas/suppliers.schemas.d.ts +96 -96
- package/dist/schemas/team-payments.schemas.d.ts +87 -87
- package/dist/schemas/team.schemas.d.ts +137 -20
- package/dist/schemas/team.schemas.d.ts.map +1 -1
- package/dist/schemas/team.schemas.js +29 -1
- package/dist/schemas/trade-cash-events.schemas.d.ts +60 -60
- package/dist/schemas/waybills.schemas.d.ts +39 -39
- package/package.json +1 -1
|
@@ -80,8 +80,8 @@ export declare const waybillAttributesSchema: z.ZodObject<{
|
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
81
|
createdAt: string;
|
|
82
82
|
updatedAt: string;
|
|
83
|
-
currency: string;
|
|
84
83
|
organizationId: string;
|
|
84
|
+
currency: string;
|
|
85
85
|
items: {
|
|
86
86
|
description: string;
|
|
87
87
|
quantity: number;
|
|
@@ -114,7 +114,7 @@ export declare const waybillAttributesSchema: z.ZodObject<{
|
|
|
114
114
|
receivedCondition?: string | null | undefined;
|
|
115
115
|
receivedAt?: string | null | undefined;
|
|
116
116
|
receivedByName?: string | null | undefined;
|
|
117
|
-
commercialIntent?: "
|
|
117
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
118
118
|
}, {
|
|
119
119
|
createdAt: string;
|
|
120
120
|
updatedAt: string;
|
|
@@ -152,7 +152,7 @@ export declare const waybillAttributesSchema: z.ZodObject<{
|
|
|
152
152
|
receivedCondition?: string | null | undefined;
|
|
153
153
|
receivedAt?: string | null | undefined;
|
|
154
154
|
receivedByName?: string | null | undefined;
|
|
155
|
-
commercialIntent?: "
|
|
155
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
156
156
|
}>;
|
|
157
157
|
export declare const createWaybillAttributesSchema: z.ZodObject<{
|
|
158
158
|
issueDate: z.ZodOptional<z.ZodString>;
|
|
@@ -232,7 +232,7 @@ export declare const createWaybillAttributesSchema: z.ZodObject<{
|
|
|
232
232
|
receivedCondition?: string | undefined;
|
|
233
233
|
receivedAt?: string | undefined;
|
|
234
234
|
receivedByName?: string | undefined;
|
|
235
|
-
commercialIntent?: "
|
|
235
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
236
236
|
purchaseCost?: number | undefined;
|
|
237
237
|
storageCost?: number | undefined;
|
|
238
238
|
miscellaneousCost?: number | undefined;
|
|
@@ -266,7 +266,7 @@ export declare const createWaybillAttributesSchema: z.ZodObject<{
|
|
|
266
266
|
receivedCondition?: string | undefined;
|
|
267
267
|
receivedAt?: string | undefined;
|
|
268
268
|
receivedByName?: string | undefined;
|
|
269
|
-
commercialIntent?: "
|
|
269
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
270
270
|
purchaseCost?: number | undefined;
|
|
271
271
|
storageCost?: number | undefined;
|
|
272
272
|
miscellaneousCost?: number | undefined;
|
|
@@ -348,7 +348,7 @@ export declare const updateWaybillAttributesSchema: z.ZodObject<{
|
|
|
348
348
|
receivedCondition?: string | undefined;
|
|
349
349
|
receivedAt?: string | undefined;
|
|
350
350
|
receivedByName?: string | undefined;
|
|
351
|
-
commercialIntent?: "
|
|
351
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
352
352
|
buyerId?: string | undefined;
|
|
353
353
|
purchaseCost?: number | undefined;
|
|
354
354
|
storageCost?: number | undefined;
|
|
@@ -382,7 +382,7 @@ export declare const updateWaybillAttributesSchema: z.ZodObject<{
|
|
|
382
382
|
receivedCondition?: string | undefined;
|
|
383
383
|
receivedAt?: string | undefined;
|
|
384
384
|
receivedByName?: string | undefined;
|
|
385
|
-
commercialIntent?: "
|
|
385
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
386
386
|
buyerId?: string | undefined;
|
|
387
387
|
purchaseCost?: number | undefined;
|
|
388
388
|
storageCost?: number | undefined;
|
|
@@ -468,7 +468,7 @@ export declare const createWaybillSchema: z.ZodObject<{
|
|
|
468
468
|
receivedCondition?: string | undefined;
|
|
469
469
|
receivedAt?: string | undefined;
|
|
470
470
|
receivedByName?: string | undefined;
|
|
471
|
-
commercialIntent?: "
|
|
471
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
472
472
|
purchaseCost?: number | undefined;
|
|
473
473
|
storageCost?: number | undefined;
|
|
474
474
|
miscellaneousCost?: number | undefined;
|
|
@@ -502,7 +502,7 @@ export declare const createWaybillSchema: z.ZodObject<{
|
|
|
502
502
|
receivedCondition?: string | undefined;
|
|
503
503
|
receivedAt?: string | undefined;
|
|
504
504
|
receivedByName?: string | undefined;
|
|
505
|
-
commercialIntent?: "
|
|
505
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
506
506
|
purchaseCost?: number | undefined;
|
|
507
507
|
storageCost?: number | undefined;
|
|
508
508
|
miscellaneousCost?: number | undefined;
|
|
@@ -539,7 +539,7 @@ export declare const createWaybillSchema: z.ZodObject<{
|
|
|
539
539
|
receivedCondition?: string | undefined;
|
|
540
540
|
receivedAt?: string | undefined;
|
|
541
541
|
receivedByName?: string | undefined;
|
|
542
|
-
commercialIntent?: "
|
|
542
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
543
543
|
purchaseCost?: number | undefined;
|
|
544
544
|
storageCost?: number | undefined;
|
|
545
545
|
miscellaneousCost?: number | undefined;
|
|
@@ -576,7 +576,7 @@ export declare const createWaybillSchema: z.ZodObject<{
|
|
|
576
576
|
receivedCondition?: string | undefined;
|
|
577
577
|
receivedAt?: string | undefined;
|
|
578
578
|
receivedByName?: string | undefined;
|
|
579
|
-
commercialIntent?: "
|
|
579
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
580
580
|
purchaseCost?: number | undefined;
|
|
581
581
|
storageCost?: number | undefined;
|
|
582
582
|
miscellaneousCost?: number | undefined;
|
|
@@ -662,7 +662,7 @@ export declare const updateWaybillSchema: z.ZodObject<{
|
|
|
662
662
|
receivedCondition?: string | undefined;
|
|
663
663
|
receivedAt?: string | undefined;
|
|
664
664
|
receivedByName?: string | undefined;
|
|
665
|
-
commercialIntent?: "
|
|
665
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
666
666
|
buyerId?: string | undefined;
|
|
667
667
|
purchaseCost?: number | undefined;
|
|
668
668
|
storageCost?: number | undefined;
|
|
@@ -696,7 +696,7 @@ export declare const updateWaybillSchema: z.ZodObject<{
|
|
|
696
696
|
receivedCondition?: string | undefined;
|
|
697
697
|
receivedAt?: string | undefined;
|
|
698
698
|
receivedByName?: string | undefined;
|
|
699
|
-
commercialIntent?: "
|
|
699
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
700
700
|
buyerId?: string | undefined;
|
|
701
701
|
purchaseCost?: number | undefined;
|
|
702
702
|
storageCost?: number | undefined;
|
|
@@ -734,7 +734,7 @@ export declare const updateWaybillSchema: z.ZodObject<{
|
|
|
734
734
|
receivedCondition?: string | undefined;
|
|
735
735
|
receivedAt?: string | undefined;
|
|
736
736
|
receivedByName?: string | undefined;
|
|
737
|
-
commercialIntent?: "
|
|
737
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
738
738
|
buyerId?: string | undefined;
|
|
739
739
|
purchaseCost?: number | undefined;
|
|
740
740
|
storageCost?: number | undefined;
|
|
@@ -772,7 +772,7 @@ export declare const updateWaybillSchema: z.ZodObject<{
|
|
|
772
772
|
receivedCondition?: string | undefined;
|
|
773
773
|
receivedAt?: string | undefined;
|
|
774
774
|
receivedByName?: string | undefined;
|
|
775
|
-
commercialIntent?: "
|
|
775
|
+
commercialIntent?: "trade" | "farm_sale" | undefined;
|
|
776
776
|
buyerId?: string | undefined;
|
|
777
777
|
purchaseCost?: number | undefined;
|
|
778
778
|
storageCost?: number | undefined;
|
|
@@ -838,8 +838,8 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
838
838
|
}, "strip", z.ZodTypeAny, {
|
|
839
839
|
createdAt: string;
|
|
840
840
|
updatedAt: string;
|
|
841
|
-
currency: string;
|
|
842
841
|
organizationId: string;
|
|
842
|
+
currency: string;
|
|
843
843
|
items: {
|
|
844
844
|
description: string;
|
|
845
845
|
quantity: number;
|
|
@@ -872,7 +872,7 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
872
872
|
receivedCondition?: string | null | undefined;
|
|
873
873
|
receivedAt?: string | null | undefined;
|
|
874
874
|
receivedByName?: string | null | undefined;
|
|
875
|
-
commercialIntent?: "
|
|
875
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
876
876
|
}, {
|
|
877
877
|
createdAt: string;
|
|
878
878
|
updatedAt: string;
|
|
@@ -910,7 +910,7 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
910
910
|
receivedCondition?: string | null | undefined;
|
|
911
911
|
receivedAt?: string | null | undefined;
|
|
912
912
|
receivedByName?: string | null | undefined;
|
|
913
|
-
commercialIntent?: "
|
|
913
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
914
914
|
}>;
|
|
915
915
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
916
916
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -921,8 +921,8 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
921
921
|
attributes: {
|
|
922
922
|
createdAt: string;
|
|
923
923
|
updatedAt: string;
|
|
924
|
-
currency: string;
|
|
925
924
|
organizationId: string;
|
|
925
|
+
currency: string;
|
|
926
926
|
items: {
|
|
927
927
|
description: string;
|
|
928
928
|
quantity: number;
|
|
@@ -955,7 +955,7 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
955
955
|
receivedCondition?: string | null | undefined;
|
|
956
956
|
receivedAt?: string | null | undefined;
|
|
957
957
|
receivedByName?: string | null | undefined;
|
|
958
|
-
commercialIntent?: "
|
|
958
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
959
959
|
};
|
|
960
960
|
relationships?: Record<string, unknown> | undefined;
|
|
961
961
|
links?: Record<string, string> | undefined;
|
|
@@ -1000,7 +1000,7 @@ export declare const waybillResourceSchema: z.ZodObject<{
|
|
|
1000
1000
|
receivedCondition?: string | null | undefined;
|
|
1001
1001
|
receivedAt?: string | null | undefined;
|
|
1002
1002
|
receivedByName?: string | null | undefined;
|
|
1003
|
-
commercialIntent?: "
|
|
1003
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1004
1004
|
};
|
|
1005
1005
|
relationships?: Record<string, unknown> | undefined;
|
|
1006
1006
|
links?: Record<string, string> | undefined;
|
|
@@ -1066,8 +1066,8 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
1067
|
createdAt: string;
|
|
1068
1068
|
updatedAt: string;
|
|
1069
|
-
currency: string;
|
|
1070
1069
|
organizationId: string;
|
|
1070
|
+
currency: string;
|
|
1071
1071
|
items: {
|
|
1072
1072
|
description: string;
|
|
1073
1073
|
quantity: number;
|
|
@@ -1100,7 +1100,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1100
1100
|
receivedCondition?: string | null | undefined;
|
|
1101
1101
|
receivedAt?: string | null | undefined;
|
|
1102
1102
|
receivedByName?: string | null | undefined;
|
|
1103
|
-
commercialIntent?: "
|
|
1103
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1104
1104
|
}, {
|
|
1105
1105
|
createdAt: string;
|
|
1106
1106
|
updatedAt: string;
|
|
@@ -1138,7 +1138,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1138
1138
|
receivedCondition?: string | null | undefined;
|
|
1139
1139
|
receivedAt?: string | null | undefined;
|
|
1140
1140
|
receivedByName?: string | null | undefined;
|
|
1141
|
-
commercialIntent?: "
|
|
1141
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1142
1142
|
}>;
|
|
1143
1143
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1144
1144
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -1149,8 +1149,8 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1149
1149
|
attributes: {
|
|
1150
1150
|
createdAt: string;
|
|
1151
1151
|
updatedAt: string;
|
|
1152
|
-
currency: string;
|
|
1153
1152
|
organizationId: string;
|
|
1153
|
+
currency: string;
|
|
1154
1154
|
items: {
|
|
1155
1155
|
description: string;
|
|
1156
1156
|
quantity: number;
|
|
@@ -1183,7 +1183,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1183
1183
|
receivedCondition?: string | null | undefined;
|
|
1184
1184
|
receivedAt?: string | null | undefined;
|
|
1185
1185
|
receivedByName?: string | null | undefined;
|
|
1186
|
-
commercialIntent?: "
|
|
1186
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1187
1187
|
};
|
|
1188
1188
|
relationships?: Record<string, unknown> | undefined;
|
|
1189
1189
|
links?: Record<string, string> | undefined;
|
|
@@ -1228,7 +1228,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1228
1228
|
receivedCondition?: string | null | undefined;
|
|
1229
1229
|
receivedAt?: string | null | undefined;
|
|
1230
1230
|
receivedByName?: string | null | undefined;
|
|
1231
|
-
commercialIntent?: "
|
|
1231
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1232
1232
|
};
|
|
1233
1233
|
relationships?: Record<string, unknown> | undefined;
|
|
1234
1234
|
links?: Record<string, string> | undefined;
|
|
@@ -1265,8 +1265,8 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1265
1265
|
attributes: {
|
|
1266
1266
|
createdAt: string;
|
|
1267
1267
|
updatedAt: string;
|
|
1268
|
-
currency: string;
|
|
1269
1268
|
organizationId: string;
|
|
1269
|
+
currency: string;
|
|
1270
1270
|
items: {
|
|
1271
1271
|
description: string;
|
|
1272
1272
|
quantity: number;
|
|
@@ -1299,7 +1299,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1299
1299
|
receivedCondition?: string | null | undefined;
|
|
1300
1300
|
receivedAt?: string | null | undefined;
|
|
1301
1301
|
receivedByName?: string | null | undefined;
|
|
1302
|
-
commercialIntent?: "
|
|
1302
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1303
1303
|
};
|
|
1304
1304
|
relationships?: Record<string, unknown> | undefined;
|
|
1305
1305
|
links?: Record<string, string> | undefined;
|
|
@@ -1356,7 +1356,7 @@ export declare const waybillResponseSchema: z.ZodObject<{
|
|
|
1356
1356
|
receivedCondition?: string | null | undefined;
|
|
1357
1357
|
receivedAt?: string | null | undefined;
|
|
1358
1358
|
receivedByName?: string | null | undefined;
|
|
1359
|
-
commercialIntent?: "
|
|
1359
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1360
1360
|
};
|
|
1361
1361
|
relationships?: Record<string, unknown> | undefined;
|
|
1362
1362
|
links?: Record<string, string> | undefined;
|
|
@@ -1433,8 +1433,8 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1433
1433
|
}, "strip", z.ZodTypeAny, {
|
|
1434
1434
|
createdAt: string;
|
|
1435
1435
|
updatedAt: string;
|
|
1436
|
-
currency: string;
|
|
1437
1436
|
organizationId: string;
|
|
1437
|
+
currency: string;
|
|
1438
1438
|
items: {
|
|
1439
1439
|
description: string;
|
|
1440
1440
|
quantity: number;
|
|
@@ -1467,7 +1467,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1467
1467
|
receivedCondition?: string | null | undefined;
|
|
1468
1468
|
receivedAt?: string | null | undefined;
|
|
1469
1469
|
receivedByName?: string | null | undefined;
|
|
1470
|
-
commercialIntent?: "
|
|
1470
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1471
1471
|
}, {
|
|
1472
1472
|
createdAt: string;
|
|
1473
1473
|
updatedAt: string;
|
|
@@ -1505,7 +1505,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1505
1505
|
receivedCondition?: string | null | undefined;
|
|
1506
1506
|
receivedAt?: string | null | undefined;
|
|
1507
1507
|
receivedByName?: string | null | undefined;
|
|
1508
|
-
commercialIntent?: "
|
|
1508
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1509
1509
|
}>;
|
|
1510
1510
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1511
1511
|
links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -1516,8 +1516,8 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1516
1516
|
attributes: {
|
|
1517
1517
|
createdAt: string;
|
|
1518
1518
|
updatedAt: string;
|
|
1519
|
-
currency: string;
|
|
1520
1519
|
organizationId: string;
|
|
1520
|
+
currency: string;
|
|
1521
1521
|
items: {
|
|
1522
1522
|
description: string;
|
|
1523
1523
|
quantity: number;
|
|
@@ -1550,7 +1550,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1550
1550
|
receivedCondition?: string | null | undefined;
|
|
1551
1551
|
receivedAt?: string | null | undefined;
|
|
1552
1552
|
receivedByName?: string | null | undefined;
|
|
1553
|
-
commercialIntent?: "
|
|
1553
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1554
1554
|
};
|
|
1555
1555
|
relationships?: Record<string, unknown> | undefined;
|
|
1556
1556
|
links?: Record<string, string> | undefined;
|
|
@@ -1595,7 +1595,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1595
1595
|
receivedCondition?: string | null | undefined;
|
|
1596
1596
|
receivedAt?: string | null | undefined;
|
|
1597
1597
|
receivedByName?: string | null | undefined;
|
|
1598
|
-
commercialIntent?: "
|
|
1598
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1599
1599
|
};
|
|
1600
1600
|
relationships?: Record<string, unknown> | undefined;
|
|
1601
1601
|
links?: Record<string, string> | undefined;
|
|
@@ -1632,8 +1632,8 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1632
1632
|
attributes: {
|
|
1633
1633
|
createdAt: string;
|
|
1634
1634
|
updatedAt: string;
|
|
1635
|
-
currency: string;
|
|
1636
1635
|
organizationId: string;
|
|
1636
|
+
currency: string;
|
|
1637
1637
|
items: {
|
|
1638
1638
|
description: string;
|
|
1639
1639
|
quantity: number;
|
|
@@ -1666,7 +1666,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1666
1666
|
receivedCondition?: string | null | undefined;
|
|
1667
1667
|
receivedAt?: string | null | undefined;
|
|
1668
1668
|
receivedByName?: string | null | undefined;
|
|
1669
|
-
commercialIntent?: "
|
|
1669
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1670
1670
|
};
|
|
1671
1671
|
relationships?: Record<string, unknown> | undefined;
|
|
1672
1672
|
links?: Record<string, string> | undefined;
|
|
@@ -1723,7 +1723,7 @@ export declare const waybillListResponseSchema: z.ZodObject<{
|
|
|
1723
1723
|
receivedCondition?: string | null | undefined;
|
|
1724
1724
|
receivedAt?: string | null | undefined;
|
|
1725
1725
|
receivedByName?: string | null | undefined;
|
|
1726
|
-
commercialIntent?: "
|
|
1726
|
+
commercialIntent?: "trade" | "farm_sale" | null | undefined;
|
|
1727
1727
|
};
|
|
1728
1728
|
relationships?: Record<string, unknown> | undefined;
|
|
1729
1729
|
links?: Record<string, string> | undefined;
|