@deepintel-ltd/farmpro-contracts 1.5.24 → 1.5.25

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.
@@ -85,6 +85,7 @@ export declare const waybillsRouter: {
85
85
  createdAt: string;
86
86
  updatedAt: string;
87
87
  currency: string;
88
+ organizationId: string;
88
89
  items: {
89
90
  description: string;
90
91
  unit: string;
@@ -93,7 +94,6 @@ export declare const waybillsRouter: {
93
94
  weight?: number | undefined;
94
95
  itemNumber?: number | undefined;
95
96
  }[];
96
- organizationId: string;
97
97
  waybillNumber: string;
98
98
  issueDate: string;
99
99
  senderName: string;
@@ -119,6 +119,7 @@ export declare const waybillsRouter: {
119
119
  }, {
120
120
  createdAt: string;
121
121
  updatedAt: string;
122
+ organizationId: string;
122
123
  items: {
123
124
  description: string;
124
125
  unit: string;
@@ -127,7 +128,6 @@ export declare const waybillsRouter: {
127
128
  weight?: number | undefined;
128
129
  itemNumber?: number | undefined;
129
130
  }[];
130
- organizationId: string;
131
131
  waybillNumber: string;
132
132
  issueDate: string;
133
133
  senderName: string;
@@ -162,6 +162,7 @@ export declare const waybillsRouter: {
162
162
  createdAt: string;
163
163
  updatedAt: string;
164
164
  currency: string;
165
+ organizationId: string;
165
166
  items: {
166
167
  description: string;
167
168
  unit: string;
@@ -170,7 +171,6 @@ export declare const waybillsRouter: {
170
171
  weight?: number | undefined;
171
172
  itemNumber?: number | undefined;
172
173
  }[];
173
- organizationId: string;
174
174
  waybillNumber: string;
175
175
  issueDate: string;
176
176
  senderName: string;
@@ -203,6 +203,7 @@ export declare const waybillsRouter: {
203
203
  attributes: {
204
204
  createdAt: string;
205
205
  updatedAt: string;
206
+ organizationId: string;
206
207
  items: {
207
208
  description: string;
208
209
  unit: string;
@@ -211,7 +212,6 @@ export declare const waybillsRouter: {
211
212
  weight?: number | undefined;
212
213
  itemNumber?: number | undefined;
213
214
  }[];
214
- organizationId: string;
215
215
  waybillNumber: string;
216
216
  issueDate: string;
217
217
  senderName: string;
@@ -272,6 +272,7 @@ export declare const waybillsRouter: {
272
272
  createdAt: string;
273
273
  updatedAt: string;
274
274
  currency: string;
275
+ organizationId: string;
275
276
  items: {
276
277
  description: string;
277
278
  unit: string;
@@ -280,7 +281,6 @@ export declare const waybillsRouter: {
280
281
  weight?: number | undefined;
281
282
  itemNumber?: number | undefined;
282
283
  }[];
283
- organizationId: string;
284
284
  waybillNumber: string;
285
285
  issueDate: string;
286
286
  senderName: string;
@@ -325,6 +325,7 @@ export declare const waybillsRouter: {
325
325
  attributes: {
326
326
  createdAt: string;
327
327
  updatedAt: string;
328
+ organizationId: string;
328
329
  items: {
329
330
  description: string;
330
331
  unit: string;
@@ -333,7 +334,6 @@ export declare const waybillsRouter: {
333
334
  weight?: number | undefined;
334
335
  itemNumber?: number | undefined;
335
336
  }[];
336
- organizationId: string;
337
337
  waybillNumber: string;
338
338
  issueDate: string;
339
339
  senderName: string;
@@ -575,10 +575,7 @@ export declare const waybillsRouter: {
575
575
  senderAddress: z.ZodOptional<z.ZodString>;
576
576
  senderPhone: z.ZodOptional<z.ZodString>;
577
577
  senderEmail: z.ZodOptional<z.ZodString>;
578
- recipientName: z.ZodString;
579
- recipientAddress: z.ZodOptional<z.ZodString>;
580
- recipientPhone: z.ZodOptional<z.ZodString>;
581
- recipientEmail: z.ZodOptional<z.ZodString>;
578
+ buyerId: z.ZodString;
582
579
  items: z.ZodArray<z.ZodObject<{
583
580
  description: z.ZodString;
584
581
  quantity: z.ZodNumber;
@@ -624,16 +621,13 @@ export declare const waybillsRouter: {
624
621
  itemNumber?: number | undefined;
625
622
  }[];
626
623
  senderName: string;
627
- recipientName: string;
624
+ buyerId: string;
628
625
  notes?: string | undefined;
629
626
  totalValue?: number | undefined;
630
627
  issueDate?: string | undefined;
631
628
  senderAddress?: string | undefined;
632
629
  senderPhone?: string | undefined;
633
630
  senderEmail?: string | undefined;
634
- recipientAddress?: string | undefined;
635
- recipientPhone?: string | undefined;
636
- recipientEmail?: string | undefined;
637
631
  totalWeight?: number | undefined;
638
632
  truckNumber?: string | undefined;
639
633
  truckPlateNumber?: string | undefined;
@@ -653,7 +647,7 @@ export declare const waybillsRouter: {
653
647
  itemNumber?: number | undefined;
654
648
  }[];
655
649
  senderName: string;
656
- recipientName: string;
650
+ buyerId: string;
657
651
  currency?: string | undefined;
658
652
  notes?: string | undefined;
659
653
  totalValue?: number | undefined;
@@ -661,9 +655,6 @@ export declare const waybillsRouter: {
661
655
  senderAddress?: string | undefined;
662
656
  senderPhone?: string | undefined;
663
657
  senderEmail?: string | undefined;
664
- recipientAddress?: string | undefined;
665
- recipientPhone?: string | undefined;
666
- recipientEmail?: string | undefined;
667
658
  totalWeight?: number | undefined;
668
659
  truckNumber?: string | undefined;
669
660
  truckPlateNumber?: string | undefined;
@@ -687,16 +678,13 @@ export declare const waybillsRouter: {
687
678
  itemNumber?: number | undefined;
688
679
  }[];
689
680
  senderName: string;
690
- recipientName: string;
681
+ buyerId: string;
691
682
  notes?: string | undefined;
692
683
  totalValue?: number | undefined;
693
684
  issueDate?: string | undefined;
694
685
  senderAddress?: string | undefined;
695
686
  senderPhone?: string | undefined;
696
687
  senderEmail?: string | undefined;
697
- recipientAddress?: string | undefined;
698
- recipientPhone?: string | undefined;
699
- recipientEmail?: string | undefined;
700
688
  totalWeight?: number | undefined;
701
689
  truckNumber?: string | undefined;
702
690
  truckPlateNumber?: string | undefined;
@@ -719,7 +707,7 @@ export declare const waybillsRouter: {
719
707
  itemNumber?: number | undefined;
720
708
  }[];
721
709
  senderName: string;
722
- recipientName: string;
710
+ buyerId: string;
723
711
  currency?: string | undefined;
724
712
  notes?: string | undefined;
725
713
  totalValue?: number | undefined;
@@ -727,9 +715,6 @@ export declare const waybillsRouter: {
727
715
  senderAddress?: string | undefined;
728
716
  senderPhone?: string | undefined;
729
717
  senderEmail?: string | undefined;
730
- recipientAddress?: string | undefined;
731
- recipientPhone?: string | undefined;
732
- recipientEmail?: string | undefined;
733
718
  totalWeight?: number | undefined;
734
719
  truckNumber?: string | undefined;
735
720
  truckPlateNumber?: string | undefined;
@@ -755,16 +740,13 @@ export declare const waybillsRouter: {
755
740
  itemNumber?: number | undefined;
756
741
  }[];
757
742
  senderName: string;
758
- recipientName: string;
743
+ buyerId: string;
759
744
  notes?: string | undefined;
760
745
  totalValue?: number | undefined;
761
746
  issueDate?: string | undefined;
762
747
  senderAddress?: string | undefined;
763
748
  senderPhone?: string | undefined;
764
749
  senderEmail?: string | undefined;
765
- recipientAddress?: string | undefined;
766
- recipientPhone?: string | undefined;
767
- recipientEmail?: string | undefined;
768
750
  totalWeight?: number | undefined;
769
751
  truckNumber?: string | undefined;
770
752
  truckPlateNumber?: string | undefined;
@@ -789,7 +771,7 @@ export declare const waybillsRouter: {
789
771
  itemNumber?: number | undefined;
790
772
  }[];
791
773
  senderName: string;
792
- recipientName: string;
774
+ buyerId: string;
793
775
  currency?: string | undefined;
794
776
  notes?: string | undefined;
795
777
  totalValue?: number | undefined;
@@ -797,9 +779,6 @@ export declare const waybillsRouter: {
797
779
  senderAddress?: string | undefined;
798
780
  senderPhone?: string | undefined;
799
781
  senderEmail?: string | undefined;
800
- recipientAddress?: string | undefined;
801
- recipientPhone?: string | undefined;
802
- recipientEmail?: string | undefined;
803
782
  totalWeight?: number | undefined;
804
783
  truckNumber?: string | undefined;
805
784
  truckPlateNumber?: string | undefined;
@@ -872,6 +851,7 @@ export declare const waybillsRouter: {
872
851
  createdAt: string;
873
852
  updatedAt: string;
874
853
  currency: string;
854
+ organizationId: string;
875
855
  items: {
876
856
  description: string;
877
857
  unit: string;
@@ -880,7 +860,6 @@ export declare const waybillsRouter: {
880
860
  weight?: number | undefined;
881
861
  itemNumber?: number | undefined;
882
862
  }[];
883
- organizationId: string;
884
863
  waybillNumber: string;
885
864
  issueDate: string;
886
865
  senderName: string;
@@ -906,6 +885,7 @@ export declare const waybillsRouter: {
906
885
  }, {
907
886
  createdAt: string;
908
887
  updatedAt: string;
888
+ organizationId: string;
909
889
  items: {
910
890
  description: string;
911
891
  unit: string;
@@ -914,7 +894,6 @@ export declare const waybillsRouter: {
914
894
  weight?: number | undefined;
915
895
  itemNumber?: number | undefined;
916
896
  }[];
917
- organizationId: string;
918
897
  waybillNumber: string;
919
898
  issueDate: string;
920
899
  senderName: string;
@@ -949,6 +928,7 @@ export declare const waybillsRouter: {
949
928
  createdAt: string;
950
929
  updatedAt: string;
951
930
  currency: string;
931
+ organizationId: string;
952
932
  items: {
953
933
  description: string;
954
934
  unit: string;
@@ -957,7 +937,6 @@ export declare const waybillsRouter: {
957
937
  weight?: number | undefined;
958
938
  itemNumber?: number | undefined;
959
939
  }[];
960
- organizationId: string;
961
940
  waybillNumber: string;
962
941
  issueDate: string;
963
942
  senderName: string;
@@ -990,6 +969,7 @@ export declare const waybillsRouter: {
990
969
  attributes: {
991
970
  createdAt: string;
992
971
  updatedAt: string;
972
+ organizationId: string;
993
973
  items: {
994
974
  description: string;
995
975
  unit: string;
@@ -998,7 +978,6 @@ export declare const waybillsRouter: {
998
978
  weight?: number | undefined;
999
979
  itemNumber?: number | undefined;
1000
980
  }[];
1001
- organizationId: string;
1002
981
  waybillNumber: string;
1003
982
  issueDate: string;
1004
983
  senderName: string;
@@ -1059,6 +1038,7 @@ export declare const waybillsRouter: {
1059
1038
  createdAt: string;
1060
1039
  updatedAt: string;
1061
1040
  currency: string;
1041
+ organizationId: string;
1062
1042
  items: {
1063
1043
  description: string;
1064
1044
  unit: string;
@@ -1067,7 +1047,6 @@ export declare const waybillsRouter: {
1067
1047
  weight?: number | undefined;
1068
1048
  itemNumber?: number | undefined;
1069
1049
  }[];
1070
- organizationId: string;
1071
1050
  waybillNumber: string;
1072
1051
  issueDate: string;
1073
1052
  senderName: string;
@@ -1112,6 +1091,7 @@ export declare const waybillsRouter: {
1112
1091
  attributes: {
1113
1092
  createdAt: string;
1114
1093
  updatedAt: string;
1094
+ organizationId: string;
1115
1095
  items: {
1116
1096
  description: string;
1117
1097
  unit: string;
@@ -1120,7 +1100,6 @@ export declare const waybillsRouter: {
1120
1100
  weight?: number | undefined;
1121
1101
  itemNumber?: number | undefined;
1122
1102
  }[];
1123
- organizationId: string;
1124
1103
  waybillNumber: string;
1125
1104
  issueDate: string;
1126
1105
  senderName: string;
@@ -1596,6 +1575,7 @@ export declare const waybillsRouter: {
1596
1575
  createdAt: string;
1597
1576
  updatedAt: string;
1598
1577
  currency: string;
1578
+ organizationId: string;
1599
1579
  items: {
1600
1580
  description: string;
1601
1581
  unit: string;
@@ -1604,7 +1584,6 @@ export declare const waybillsRouter: {
1604
1584
  weight?: number | undefined;
1605
1585
  itemNumber?: number | undefined;
1606
1586
  }[];
1607
- organizationId: string;
1608
1587
  waybillNumber: string;
1609
1588
  issueDate: string;
1610
1589
  senderName: string;
@@ -1630,6 +1609,7 @@ export declare const waybillsRouter: {
1630
1609
  }, {
1631
1610
  createdAt: string;
1632
1611
  updatedAt: string;
1612
+ organizationId: string;
1633
1613
  items: {
1634
1614
  description: string;
1635
1615
  unit: string;
@@ -1638,7 +1618,6 @@ export declare const waybillsRouter: {
1638
1618
  weight?: number | undefined;
1639
1619
  itemNumber?: number | undefined;
1640
1620
  }[];
1641
- organizationId: string;
1642
1621
  waybillNumber: string;
1643
1622
  issueDate: string;
1644
1623
  senderName: string;
@@ -1673,6 +1652,7 @@ export declare const waybillsRouter: {
1673
1652
  createdAt: string;
1674
1653
  updatedAt: string;
1675
1654
  currency: string;
1655
+ organizationId: string;
1676
1656
  items: {
1677
1657
  description: string;
1678
1658
  unit: string;
@@ -1681,7 +1661,6 @@ export declare const waybillsRouter: {
1681
1661
  weight?: number | undefined;
1682
1662
  itemNumber?: number | undefined;
1683
1663
  }[];
1684
- organizationId: string;
1685
1664
  waybillNumber: string;
1686
1665
  issueDate: string;
1687
1666
  senderName: string;
@@ -1714,6 +1693,7 @@ export declare const waybillsRouter: {
1714
1693
  attributes: {
1715
1694
  createdAt: string;
1716
1695
  updatedAt: string;
1696
+ organizationId: string;
1717
1697
  items: {
1718
1698
  description: string;
1719
1699
  unit: string;
@@ -1722,7 +1702,6 @@ export declare const waybillsRouter: {
1722
1702
  weight?: number | undefined;
1723
1703
  itemNumber?: number | undefined;
1724
1704
  }[];
1725
- organizationId: string;
1726
1705
  waybillNumber: string;
1727
1706
  issueDate: string;
1728
1707
  senderName: string;
@@ -1783,6 +1762,7 @@ export declare const waybillsRouter: {
1783
1762
  createdAt: string;
1784
1763
  updatedAt: string;
1785
1764
  currency: string;
1765
+ organizationId: string;
1786
1766
  items: {
1787
1767
  description: string;
1788
1768
  unit: string;
@@ -1791,7 +1771,6 @@ export declare const waybillsRouter: {
1791
1771
  weight?: number | undefined;
1792
1772
  itemNumber?: number | undefined;
1793
1773
  }[];
1794
- organizationId: string;
1795
1774
  waybillNumber: string;
1796
1775
  issueDate: string;
1797
1776
  senderName: string;
@@ -1836,6 +1815,7 @@ export declare const waybillsRouter: {
1836
1815
  attributes: {
1837
1816
  createdAt: string;
1838
1817
  updatedAt: string;
1818
+ organizationId: string;
1839
1819
  items: {
1840
1820
  description: string;
1841
1821
  unit: string;
@@ -1844,7 +1824,6 @@ export declare const waybillsRouter: {
1844
1824
  weight?: number | undefined;
1845
1825
  itemNumber?: number | undefined;
1846
1826
  }[];
1847
- organizationId: string;
1848
1827
  waybillNumber: string;
1849
1828
  issueDate: string;
1850
1829
  senderName: string;
@@ -2090,10 +2069,7 @@ export declare const waybillsRouter: {
2090
2069
  senderAddress: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2091
2070
  senderPhone: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2092
2071
  senderEmail: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2093
- recipientName: z.ZodOptional<z.ZodString>;
2094
- recipientAddress: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2095
- recipientPhone: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2096
- recipientEmail: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2072
+ buyerId: z.ZodOptional<z.ZodString>;
2097
2073
  items: z.ZodOptional<z.ZodArray<z.ZodObject<{
2098
2074
  description: z.ZodString;
2099
2075
  quantity: z.ZodNumber;
@@ -2145,10 +2121,6 @@ export declare const waybillsRouter: {
2145
2121
  senderAddress?: string | undefined;
2146
2122
  senderPhone?: string | undefined;
2147
2123
  senderEmail?: string | undefined;
2148
- recipientName?: string | undefined;
2149
- recipientAddress?: string | undefined;
2150
- recipientPhone?: string | undefined;
2151
- recipientEmail?: string | undefined;
2152
2124
  totalWeight?: number | undefined;
2153
2125
  truckNumber?: string | undefined;
2154
2126
  truckPlateNumber?: string | undefined;
@@ -2158,6 +2130,7 @@ export declare const waybillsRouter: {
2158
2130
  transporterName?: string | undefined;
2159
2131
  dispatchedLocation?: string | undefined;
2160
2132
  receivedCondition?: string | undefined;
2133
+ buyerId?: string | undefined;
2161
2134
  }, {
2162
2135
  currency?: string | undefined;
2163
2136
  notes?: string | undefined;
@@ -2175,10 +2148,6 @@ export declare const waybillsRouter: {
2175
2148
  senderAddress?: string | undefined;
2176
2149
  senderPhone?: string | undefined;
2177
2150
  senderEmail?: string | undefined;
2178
- recipientName?: string | undefined;
2179
- recipientAddress?: string | undefined;
2180
- recipientPhone?: string | undefined;
2181
- recipientEmail?: string | undefined;
2182
2151
  totalWeight?: number | undefined;
2183
2152
  truckNumber?: string | undefined;
2184
2153
  truckPlateNumber?: string | undefined;
@@ -2188,6 +2157,7 @@ export declare const waybillsRouter: {
2188
2157
  transporterName?: string | undefined;
2189
2158
  dispatchedLocation?: string | undefined;
2190
2159
  receivedCondition?: string | undefined;
2160
+ buyerId?: string | undefined;
2191
2161
  }>;
2192
2162
  }, "strip", z.ZodTypeAny, {
2193
2163
  type: "waybills";
@@ -2209,10 +2179,6 @@ export declare const waybillsRouter: {
2209
2179
  senderAddress?: string | undefined;
2210
2180
  senderPhone?: string | undefined;
2211
2181
  senderEmail?: string | undefined;
2212
- recipientName?: string | undefined;
2213
- recipientAddress?: string | undefined;
2214
- recipientPhone?: string | undefined;
2215
- recipientEmail?: string | undefined;
2216
2182
  totalWeight?: number | undefined;
2217
2183
  truckNumber?: string | undefined;
2218
2184
  truckPlateNumber?: string | undefined;
@@ -2222,6 +2188,7 @@ export declare const waybillsRouter: {
2222
2188
  transporterName?: string | undefined;
2223
2189
  dispatchedLocation?: string | undefined;
2224
2190
  receivedCondition?: string | undefined;
2191
+ buyerId?: string | undefined;
2225
2192
  };
2226
2193
  }, {
2227
2194
  type: "waybills";
@@ -2243,10 +2210,6 @@ export declare const waybillsRouter: {
2243
2210
  senderAddress?: string | undefined;
2244
2211
  senderPhone?: string | undefined;
2245
2212
  senderEmail?: string | undefined;
2246
- recipientName?: string | undefined;
2247
- recipientAddress?: string | undefined;
2248
- recipientPhone?: string | undefined;
2249
- recipientEmail?: string | undefined;
2250
2213
  totalWeight?: number | undefined;
2251
2214
  truckNumber?: string | undefined;
2252
2215
  truckPlateNumber?: string | undefined;
@@ -2256,6 +2219,7 @@ export declare const waybillsRouter: {
2256
2219
  transporterName?: string | undefined;
2257
2220
  dispatchedLocation?: string | undefined;
2258
2221
  receivedCondition?: string | undefined;
2222
+ buyerId?: string | undefined;
2259
2223
  };
2260
2224
  }>;
2261
2225
  }, "strip", z.ZodTypeAny, {
@@ -2279,10 +2243,6 @@ export declare const waybillsRouter: {
2279
2243
  senderAddress?: string | undefined;
2280
2244
  senderPhone?: string | undefined;
2281
2245
  senderEmail?: string | undefined;
2282
- recipientName?: string | undefined;
2283
- recipientAddress?: string | undefined;
2284
- recipientPhone?: string | undefined;
2285
- recipientEmail?: string | undefined;
2286
2246
  totalWeight?: number | undefined;
2287
2247
  truckNumber?: string | undefined;
2288
2248
  truckPlateNumber?: string | undefined;
@@ -2292,6 +2252,7 @@ export declare const waybillsRouter: {
2292
2252
  transporterName?: string | undefined;
2293
2253
  dispatchedLocation?: string | undefined;
2294
2254
  receivedCondition?: string | undefined;
2255
+ buyerId?: string | undefined;
2295
2256
  };
2296
2257
  };
2297
2258
  }, {
@@ -2315,10 +2276,6 @@ export declare const waybillsRouter: {
2315
2276
  senderAddress?: string | undefined;
2316
2277
  senderPhone?: string | undefined;
2317
2278
  senderEmail?: string | undefined;
2318
- recipientName?: string | undefined;
2319
- recipientAddress?: string | undefined;
2320
- recipientPhone?: string | undefined;
2321
- recipientEmail?: string | undefined;
2322
2279
  totalWeight?: number | undefined;
2323
2280
  truckNumber?: string | undefined;
2324
2281
  truckPlateNumber?: string | undefined;
@@ -2328,6 +2285,7 @@ export declare const waybillsRouter: {
2328
2285
  transporterName?: string | undefined;
2329
2286
  dispatchedLocation?: string | undefined;
2330
2287
  receivedCondition?: string | undefined;
2288
+ buyerId?: string | undefined;
2331
2289
  };
2332
2290
  };
2333
2291
  }>;
@@ -2391,6 +2349,7 @@ export declare const waybillsRouter: {
2391
2349
  createdAt: string;
2392
2350
  updatedAt: string;
2393
2351
  currency: string;
2352
+ organizationId: string;
2394
2353
  items: {
2395
2354
  description: string;
2396
2355
  unit: string;
@@ -2399,7 +2358,6 @@ export declare const waybillsRouter: {
2399
2358
  weight?: number | undefined;
2400
2359
  itemNumber?: number | undefined;
2401
2360
  }[];
2402
- organizationId: string;
2403
2361
  waybillNumber: string;
2404
2362
  issueDate: string;
2405
2363
  senderName: string;
@@ -2425,6 +2383,7 @@ export declare const waybillsRouter: {
2425
2383
  }, {
2426
2384
  createdAt: string;
2427
2385
  updatedAt: string;
2386
+ organizationId: string;
2428
2387
  items: {
2429
2388
  description: string;
2430
2389
  unit: string;
@@ -2433,7 +2392,6 @@ export declare const waybillsRouter: {
2433
2392
  weight?: number | undefined;
2434
2393
  itemNumber?: number | undefined;
2435
2394
  }[];
2436
- organizationId: string;
2437
2395
  waybillNumber: string;
2438
2396
  issueDate: string;
2439
2397
  senderName: string;
@@ -2468,6 +2426,7 @@ export declare const waybillsRouter: {
2468
2426
  createdAt: string;
2469
2427
  updatedAt: string;
2470
2428
  currency: string;
2429
+ organizationId: string;
2471
2430
  items: {
2472
2431
  description: string;
2473
2432
  unit: string;
@@ -2476,7 +2435,6 @@ export declare const waybillsRouter: {
2476
2435
  weight?: number | undefined;
2477
2436
  itemNumber?: number | undefined;
2478
2437
  }[];
2479
- organizationId: string;
2480
2438
  waybillNumber: string;
2481
2439
  issueDate: string;
2482
2440
  senderName: string;
@@ -2509,6 +2467,7 @@ export declare const waybillsRouter: {
2509
2467
  attributes: {
2510
2468
  createdAt: string;
2511
2469
  updatedAt: string;
2470
+ organizationId: string;
2512
2471
  items: {
2513
2472
  description: string;
2514
2473
  unit: string;
@@ -2517,7 +2476,6 @@ export declare const waybillsRouter: {
2517
2476
  weight?: number | undefined;
2518
2477
  itemNumber?: number | undefined;
2519
2478
  }[];
2520
- organizationId: string;
2521
2479
  waybillNumber: string;
2522
2480
  issueDate: string;
2523
2481
  senderName: string;
@@ -2578,6 +2536,7 @@ export declare const waybillsRouter: {
2578
2536
  createdAt: string;
2579
2537
  updatedAt: string;
2580
2538
  currency: string;
2539
+ organizationId: string;
2581
2540
  items: {
2582
2541
  description: string;
2583
2542
  unit: string;
@@ -2586,7 +2545,6 @@ export declare const waybillsRouter: {
2586
2545
  weight?: number | undefined;
2587
2546
  itemNumber?: number | undefined;
2588
2547
  }[];
2589
- organizationId: string;
2590
2548
  waybillNumber: string;
2591
2549
  issueDate: string;
2592
2550
  senderName: string;
@@ -2631,6 +2589,7 @@ export declare const waybillsRouter: {
2631
2589
  attributes: {
2632
2590
  createdAt: string;
2633
2591
  updatedAt: string;
2592
+ organizationId: string;
2634
2593
  items: {
2635
2594
  description: string;
2636
2595
  unit: string;
@@ -2639,7 +2598,6 @@ export declare const waybillsRouter: {
2639
2598
  weight?: number | undefined;
2640
2599
  itemNumber?: number | undefined;
2641
2600
  }[];
2642
- organizationId: string;
2643
2601
  waybillNumber: string;
2644
2602
  issueDate: string;
2645
2603
  senderName: string;
@@ -3116,6 +3074,7 @@ export declare const waybillsRouter: {
3116
3074
  createdAt: string;
3117
3075
  updatedAt: string;
3118
3076
  currency: string;
3077
+ organizationId: string;
3119
3078
  items: {
3120
3079
  description: string;
3121
3080
  unit: string;
@@ -3124,7 +3083,6 @@ export declare const waybillsRouter: {
3124
3083
  weight?: number | undefined;
3125
3084
  itemNumber?: number | undefined;
3126
3085
  }[];
3127
- organizationId: string;
3128
3086
  waybillNumber: string;
3129
3087
  issueDate: string;
3130
3088
  senderName: string;
@@ -3150,6 +3108,7 @@ export declare const waybillsRouter: {
3150
3108
  }, {
3151
3109
  createdAt: string;
3152
3110
  updatedAt: string;
3111
+ organizationId: string;
3153
3112
  items: {
3154
3113
  description: string;
3155
3114
  unit: string;
@@ -3158,7 +3117,6 @@ export declare const waybillsRouter: {
3158
3117
  weight?: number | undefined;
3159
3118
  itemNumber?: number | undefined;
3160
3119
  }[];
3161
- organizationId: string;
3162
3120
  waybillNumber: string;
3163
3121
  issueDate: string;
3164
3122
  senderName: string;
@@ -3193,6 +3151,7 @@ export declare const waybillsRouter: {
3193
3151
  createdAt: string;
3194
3152
  updatedAt: string;
3195
3153
  currency: string;
3154
+ organizationId: string;
3196
3155
  items: {
3197
3156
  description: string;
3198
3157
  unit: string;
@@ -3201,7 +3160,6 @@ export declare const waybillsRouter: {
3201
3160
  weight?: number | undefined;
3202
3161
  itemNumber?: number | undefined;
3203
3162
  }[];
3204
- organizationId: string;
3205
3163
  waybillNumber: string;
3206
3164
  issueDate: string;
3207
3165
  senderName: string;
@@ -3234,6 +3192,7 @@ export declare const waybillsRouter: {
3234
3192
  attributes: {
3235
3193
  createdAt: string;
3236
3194
  updatedAt: string;
3195
+ organizationId: string;
3237
3196
  items: {
3238
3197
  description: string;
3239
3198
  unit: string;
@@ -3242,7 +3201,6 @@ export declare const waybillsRouter: {
3242
3201
  weight?: number | undefined;
3243
3202
  itemNumber?: number | undefined;
3244
3203
  }[];
3245
- organizationId: string;
3246
3204
  waybillNumber: string;
3247
3205
  issueDate: string;
3248
3206
  senderName: string;
@@ -3303,6 +3261,7 @@ export declare const waybillsRouter: {
3303
3261
  createdAt: string;
3304
3262
  updatedAt: string;
3305
3263
  currency: string;
3264
+ organizationId: string;
3306
3265
  items: {
3307
3266
  description: string;
3308
3267
  unit: string;
@@ -3311,7 +3270,6 @@ export declare const waybillsRouter: {
3311
3270
  weight?: number | undefined;
3312
3271
  itemNumber?: number | undefined;
3313
3272
  }[];
3314
- organizationId: string;
3315
3273
  waybillNumber: string;
3316
3274
  issueDate: string;
3317
3275
  senderName: string;
@@ -3356,6 +3314,7 @@ export declare const waybillsRouter: {
3356
3314
  attributes: {
3357
3315
  createdAt: string;
3358
3316
  updatedAt: string;
3317
+ organizationId: string;
3359
3318
  items: {
3360
3319
  description: string;
3361
3320
  unit: string;
@@ -3364,7 +3323,6 @@ export declare const waybillsRouter: {
3364
3323
  weight?: number | undefined;
3365
3324
  itemNumber?: number | undefined;
3366
3325
  }[];
3367
- organizationId: string;
3368
3326
  waybillNumber: string;
3369
3327
  issueDate: string;
3370
3328
  senderName: string;