controlresell 2.9.6 → 2.9.7

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.
Files changed (51) hide show
  1. package/package.json +1 -1
  2. package/src/com/controlresell/api/responses/items/ItemAction.d.ts +1 -1
  3. package/src/com/controlresell/api/responses/items/ItemAction.d.ts.map +1 -1
  4. package/src/com/controlresell/api/responses/items/ItemAction.js +1 -1
  5. package/src/com/controlresell/api/responses/items/ItemAction.js.map +1 -1
  6. package/src/com/controlresell/api/responses/items/ItemAction.ts +1 -1
  7. package/src/com/controlresell/api/responses/items/ItemActions.d.ts +3 -3
  8. package/src/com/controlresell/api/responses/items/ItemsWithFilters.d.ts +439 -7
  9. package/src/com/controlresell/api/responses/items/ItemsWithFilters.d.ts.map +1 -1
  10. package/src/com/controlresell/api/responses/items/ListedItem.d.ts +365 -5
  11. package/src/com/controlresell/api/responses/items/ListedItem.d.ts.map +1 -1
  12. package/src/com/controlresell/inbox/models/transactions/items/TransactionWithItems.d.ts +864 -0
  13. package/src/com/controlresell/inbox/models/transactions/items/TransactionWithItems.d.ts.map +1 -1
  14. package/src/com/controlresell/inventory/models/items/CreatedItems.d.ts +864 -0
  15. package/src/com/controlresell/inventory/models/items/CreatedItems.d.ts.map +1 -1
  16. package/src/com/controlresell/inventory/models/items/Item.d.ts +720 -0
  17. package/src/com/controlresell/inventory/models/items/Item.d.ts.map +1 -1
  18. package/src/com/controlresell/inventory/models/items/ItemUpdate.d.ts +864 -0
  19. package/src/com/controlresell/inventory/models/items/ItemUpdate.d.ts.map +1 -1
  20. package/src/com/controlresell/inventory/models/items/UpdatedItem.d.ts +864 -0
  21. package/src/com/controlresell/inventory/models/items/UpdatedItem.d.ts.map +1 -1
  22. package/src/com/controlresell/inventory/models/items/history/CreateItemHistoryPayload.d.ts +288 -0
  23. package/src/com/controlresell/inventory/models/items/history/CreateItemHistoryPayload.d.ts.map +1 -1
  24. package/src/com/controlresell/inventory/models/items/history/ItemHistory.d.ts +288 -0
  25. package/src/com/controlresell/inventory/models/items/history/ItemHistory.d.ts.map +1 -1
  26. package/src/com/controlresell/inventory/models/items/history/ItemHistoryDecodedPayload.d.ts +436 -0
  27. package/src/com/controlresell/inventory/models/items/history/ItemHistoryDecodedPayload.d.ts.map +1 -1
  28. package/src/com/controlresell/inventory/models/items/history/ItemHistoryDecodedPayload.js +13 -1
  29. package/src/com/controlresell/inventory/models/items/history/ItemHistoryDecodedPayload.js.map +1 -1
  30. package/src/com/controlresell/inventory/models/items/history/ItemHistoryDecodedPayload.ts +17 -1
  31. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatedPayload.d.ts +10 -0
  32. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatedPayload.d.ts.map +1 -0
  33. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatedPayload.js +6 -0
  34. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatedPayload.js.map +1 -0
  35. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatedPayload.ts +7 -0
  36. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatingPayload.d.ts +136 -0
  37. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatingPayload.d.ts.map +1 -0
  38. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatingPayload.js +9 -0
  39. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatingPayload.js.map +1 -0
  40. package/src/com/controlresell/inventory/models/items/history/data/ItemHistoryUpdatingPayload.ts +10 -0
  41. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +1008 -0
  42. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
  43. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +864 -0
  44. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
  45. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +1728 -0
  46. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
  47. package/src/index.d.ts +2 -0
  48. package/src/index.d.ts.map +1 -1
  49. package/src/index.js +2 -0
  50. package/src/index.js.map +1 -1
  51. package/src/index.ts +2 -0
@@ -1679,6 +1679,222 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1679
1679
  error?: string | null | undefined;
1680
1680
  }[] | null | undefined;
1681
1681
  };
1682
+ }>, z.ZodObject<{
1683
+ data: z.ZodObject<{
1684
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
1685
+ }, "strip", z.ZodTypeAny, {
1686
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1687
+ }, {
1688
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1689
+ }>;
1690
+ type: z.ZodLiteral<"UPDATED">;
1691
+ }, "strip", z.ZodTypeAny, {
1692
+ type: "UPDATED";
1693
+ data: {
1694
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1695
+ };
1696
+ }, {
1697
+ type: "UPDATED";
1698
+ data: {
1699
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1700
+ };
1701
+ }>, z.ZodObject<{
1702
+ data: z.ZodObject<{
1703
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
1704
+ post: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1705
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1706
+ catalog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1707
+ catalogId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1708
+ colors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1709
+ colorIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
1710
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1711
+ measurementLength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1712
+ measurementWidth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1713
+ packageSizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1714
+ photoUrls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1715
+ price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1716
+ currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1717
+ size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1718
+ sizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1719
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1720
+ statusId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1721
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1722
+ isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1723
+ isArchived: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1724
+ availableQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1725
+ material: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
1726
+ manufacturerLabelling: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1727
+ labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1728
+ }, "strip", z.ZodTypeAny, {
1729
+ status?: string | null | undefined;
1730
+ price?: number | null | undefined;
1731
+ currency?: string | null | undefined;
1732
+ brand?: string | null | undefined;
1733
+ catalog?: string | null | undefined;
1734
+ catalogId?: number | null | undefined;
1735
+ colors?: string[] | null | undefined;
1736
+ colorIds?: number[] | null | undefined;
1737
+ description?: string | null | undefined;
1738
+ measurementLength?: number | null | undefined;
1739
+ measurementWidth?: number | null | undefined;
1740
+ packageSizeId?: number | null | undefined;
1741
+ photoUrls?: string[] | null | undefined;
1742
+ size?: string | null | undefined;
1743
+ sizeId?: number | null | undefined;
1744
+ statusId?: number | null | undefined;
1745
+ title?: string | null | undefined;
1746
+ isDraft?: boolean | null | undefined;
1747
+ isArchived?: boolean | null | undefined;
1748
+ availableQuantity?: number | null | undefined;
1749
+ material?: number[] | null | undefined;
1750
+ manufacturerLabelling?: string | null | undefined;
1751
+ labels?: string[] | null | undefined;
1752
+ }, {
1753
+ status?: string | null | undefined;
1754
+ price?: number | null | undefined;
1755
+ currency?: string | null | undefined;
1756
+ brand?: string | null | undefined;
1757
+ catalog?: string | null | undefined;
1758
+ catalogId?: number | null | undefined;
1759
+ colors?: string[] | null | undefined;
1760
+ colorIds?: number[] | null | undefined;
1761
+ description?: string | null | undefined;
1762
+ measurementLength?: number | null | undefined;
1763
+ measurementWidth?: number | null | undefined;
1764
+ packageSizeId?: number | null | undefined;
1765
+ photoUrls?: string[] | null | undefined;
1766
+ size?: string | null | undefined;
1767
+ sizeId?: number | null | undefined;
1768
+ statusId?: number | null | undefined;
1769
+ title?: string | null | undefined;
1770
+ isDraft?: boolean | null | undefined;
1771
+ isArchived?: boolean | null | undefined;
1772
+ availableQuantity?: number | null | undefined;
1773
+ material?: number[] | null | undefined;
1774
+ manufacturerLabelling?: string | null | undefined;
1775
+ labels?: string[] | null | undefined;
1776
+ }>>>;
1777
+ targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1778
+ }, "strip", z.ZodTypeAny, {
1779
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1780
+ post?: {
1781
+ status?: string | null | undefined;
1782
+ price?: number | null | undefined;
1783
+ currency?: string | null | undefined;
1784
+ brand?: string | null | undefined;
1785
+ catalog?: string | null | undefined;
1786
+ catalogId?: number | null | undefined;
1787
+ colors?: string[] | null | undefined;
1788
+ colorIds?: number[] | null | undefined;
1789
+ description?: string | null | undefined;
1790
+ measurementLength?: number | null | undefined;
1791
+ measurementWidth?: number | null | undefined;
1792
+ packageSizeId?: number | null | undefined;
1793
+ photoUrls?: string[] | null | undefined;
1794
+ size?: string | null | undefined;
1795
+ sizeId?: number | null | undefined;
1796
+ statusId?: number | null | undefined;
1797
+ title?: string | null | undefined;
1798
+ isDraft?: boolean | null | undefined;
1799
+ isArchived?: boolean | null | undefined;
1800
+ availableQuantity?: number | null | undefined;
1801
+ material?: number[] | null | undefined;
1802
+ manufacturerLabelling?: string | null | undefined;
1803
+ labels?: string[] | null | undefined;
1804
+ } | null | undefined;
1805
+ targetDate?: Date | null | undefined;
1806
+ }, {
1807
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1808
+ post?: {
1809
+ status?: string | null | undefined;
1810
+ price?: number | null | undefined;
1811
+ currency?: string | null | undefined;
1812
+ brand?: string | null | undefined;
1813
+ catalog?: string | null | undefined;
1814
+ catalogId?: number | null | undefined;
1815
+ colors?: string[] | null | undefined;
1816
+ colorIds?: number[] | null | undefined;
1817
+ description?: string | null | undefined;
1818
+ measurementLength?: number | null | undefined;
1819
+ measurementWidth?: number | null | undefined;
1820
+ packageSizeId?: number | null | undefined;
1821
+ photoUrls?: string[] | null | undefined;
1822
+ size?: string | null | undefined;
1823
+ sizeId?: number | null | undefined;
1824
+ statusId?: number | null | undefined;
1825
+ title?: string | null | undefined;
1826
+ isDraft?: boolean | null | undefined;
1827
+ isArchived?: boolean | null | undefined;
1828
+ availableQuantity?: number | null | undefined;
1829
+ material?: number[] | null | undefined;
1830
+ manufacturerLabelling?: string | null | undefined;
1831
+ labels?: string[] | null | undefined;
1832
+ } | null | undefined;
1833
+ targetDate?: Date | null | undefined;
1834
+ }>;
1835
+ type: z.ZodLiteral<"UPDATING">;
1836
+ }, "strip", z.ZodTypeAny, {
1837
+ type: "UPDATING";
1838
+ data: {
1839
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1840
+ post?: {
1841
+ status?: string | null | undefined;
1842
+ price?: number | null | undefined;
1843
+ currency?: string | null | undefined;
1844
+ brand?: string | null | undefined;
1845
+ catalog?: string | null | undefined;
1846
+ catalogId?: number | null | undefined;
1847
+ colors?: string[] | null | undefined;
1848
+ colorIds?: number[] | null | undefined;
1849
+ description?: string | null | undefined;
1850
+ measurementLength?: number | null | undefined;
1851
+ measurementWidth?: number | null | undefined;
1852
+ packageSizeId?: number | null | undefined;
1853
+ photoUrls?: string[] | null | undefined;
1854
+ size?: string | null | undefined;
1855
+ sizeId?: number | null | undefined;
1856
+ statusId?: number | null | undefined;
1857
+ title?: string | null | undefined;
1858
+ isDraft?: boolean | null | undefined;
1859
+ isArchived?: boolean | null | undefined;
1860
+ availableQuantity?: number | null | undefined;
1861
+ material?: number[] | null | undefined;
1862
+ manufacturerLabelling?: string | null | undefined;
1863
+ labels?: string[] | null | undefined;
1864
+ } | null | undefined;
1865
+ targetDate?: Date | null | undefined;
1866
+ };
1867
+ }, {
1868
+ type: "UPDATING";
1869
+ data: {
1870
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1871
+ post?: {
1872
+ status?: string | null | undefined;
1873
+ price?: number | null | undefined;
1874
+ currency?: string | null | undefined;
1875
+ brand?: string | null | undefined;
1876
+ catalog?: string | null | undefined;
1877
+ catalogId?: number | null | undefined;
1878
+ colors?: string[] | null | undefined;
1879
+ colorIds?: number[] | null | undefined;
1880
+ description?: string | null | undefined;
1881
+ measurementLength?: number | null | undefined;
1882
+ measurementWidth?: number | null | undefined;
1883
+ packageSizeId?: number | null | undefined;
1884
+ photoUrls?: string[] | null | undefined;
1885
+ size?: string | null | undefined;
1886
+ sizeId?: number | null | undefined;
1887
+ statusId?: number | null | undefined;
1888
+ title?: string | null | undefined;
1889
+ isDraft?: boolean | null | undefined;
1890
+ isArchived?: boolean | null | undefined;
1891
+ availableQuantity?: number | null | undefined;
1892
+ material?: number[] | null | undefined;
1893
+ manufacturerLabelling?: string | null | undefined;
1894
+ labels?: string[] | null | undefined;
1895
+ } | null | undefined;
1896
+ targetDate?: Date | null | undefined;
1897
+ };
1682
1898
  }>]>>>;
1683
1899
  createdAt: z.ZodDate;
1684
1900
  targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -1843,6 +2059,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
1843
2059
  error?: string | null | undefined;
1844
2060
  }[] | null | undefined;
1845
2061
  };
2062
+ } | {
2063
+ type: "UPDATED";
2064
+ data: {
2065
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2066
+ };
2067
+ } | {
2068
+ type: "UPDATING";
2069
+ data: {
2070
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2071
+ post?: {
2072
+ status?: string | null | undefined;
2073
+ price?: number | null | undefined;
2074
+ currency?: string | null | undefined;
2075
+ brand?: string | null | undefined;
2076
+ catalog?: string | null | undefined;
2077
+ catalogId?: number | null | undefined;
2078
+ colors?: string[] | null | undefined;
2079
+ colorIds?: number[] | null | undefined;
2080
+ description?: string | null | undefined;
2081
+ measurementLength?: number | null | undefined;
2082
+ measurementWidth?: number | null | undefined;
2083
+ packageSizeId?: number | null | undefined;
2084
+ photoUrls?: string[] | null | undefined;
2085
+ size?: string | null | undefined;
2086
+ sizeId?: number | null | undefined;
2087
+ statusId?: number | null | undefined;
2088
+ title?: string | null | undefined;
2089
+ isDraft?: boolean | null | undefined;
2090
+ isArchived?: boolean | null | undefined;
2091
+ availableQuantity?: number | null | undefined;
2092
+ material?: number[] | null | undefined;
2093
+ manufacturerLabelling?: string | null | undefined;
2094
+ labels?: string[] | null | undefined;
2095
+ } | null | undefined;
2096
+ targetDate?: Date | null | undefined;
2097
+ };
1846
2098
  } | null | undefined;
1847
2099
  accountId?: string | null | undefined;
1848
2100
  requestId?: string | null | undefined;
@@ -2006,6 +2258,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
2006
2258
  error?: string | null | undefined;
2007
2259
  }[] | null | undefined;
2008
2260
  };
2261
+ } | {
2262
+ type: "UPDATED";
2263
+ data: {
2264
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2265
+ };
2266
+ } | {
2267
+ type: "UPDATING";
2268
+ data: {
2269
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2270
+ post?: {
2271
+ status?: string | null | undefined;
2272
+ price?: number | null | undefined;
2273
+ currency?: string | null | undefined;
2274
+ brand?: string | null | undefined;
2275
+ catalog?: string | null | undefined;
2276
+ catalogId?: number | null | undefined;
2277
+ colors?: string[] | null | undefined;
2278
+ colorIds?: number[] | null | undefined;
2279
+ description?: string | null | undefined;
2280
+ measurementLength?: number | null | undefined;
2281
+ measurementWidth?: number | null | undefined;
2282
+ packageSizeId?: number | null | undefined;
2283
+ photoUrls?: string[] | null | undefined;
2284
+ size?: string | null | undefined;
2285
+ sizeId?: number | null | undefined;
2286
+ statusId?: number | null | undefined;
2287
+ title?: string | null | undefined;
2288
+ isDraft?: boolean | null | undefined;
2289
+ isArchived?: boolean | null | undefined;
2290
+ availableQuantity?: number | null | undefined;
2291
+ material?: number[] | null | undefined;
2292
+ manufacturerLabelling?: string | null | undefined;
2293
+ labels?: string[] | null | undefined;
2294
+ } | null | undefined;
2295
+ targetDate?: Date | null | undefined;
2296
+ };
2009
2297
  } | null | undefined;
2010
2298
  accountId?: string | null | undefined;
2011
2299
  requestId?: string | null | undefined;
@@ -2993,6 +3281,222 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
2993
3281
  error?: string | null | undefined;
2994
3282
  }[] | null | undefined;
2995
3283
  };
3284
+ }>, z.ZodObject<{
3285
+ data: z.ZodObject<{
3286
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
3287
+ }, "strip", z.ZodTypeAny, {
3288
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3289
+ }, {
3290
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3291
+ }>;
3292
+ type: z.ZodLiteral<"UPDATED">;
3293
+ }, "strip", z.ZodTypeAny, {
3294
+ type: "UPDATED";
3295
+ data: {
3296
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3297
+ };
3298
+ }, {
3299
+ type: "UPDATED";
3300
+ data: {
3301
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3302
+ };
3303
+ }>, z.ZodObject<{
3304
+ data: z.ZodObject<{
3305
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
3306
+ post: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3307
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3308
+ catalog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3309
+ catalogId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3310
+ colors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3311
+ colorIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
3312
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3313
+ measurementLength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3314
+ measurementWidth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3315
+ packageSizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3316
+ photoUrls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3317
+ price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3318
+ currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3319
+ size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3320
+ sizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3321
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3322
+ statusId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3323
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3324
+ isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3325
+ isArchived: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3326
+ availableQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3327
+ material: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
3328
+ manufacturerLabelling: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3329
+ labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3330
+ }, "strip", z.ZodTypeAny, {
3331
+ status?: string | null | undefined;
3332
+ price?: number | null | undefined;
3333
+ currency?: string | null | undefined;
3334
+ brand?: string | null | undefined;
3335
+ catalog?: string | null | undefined;
3336
+ catalogId?: number | null | undefined;
3337
+ colors?: string[] | null | undefined;
3338
+ colorIds?: number[] | null | undefined;
3339
+ description?: string | null | undefined;
3340
+ measurementLength?: number | null | undefined;
3341
+ measurementWidth?: number | null | undefined;
3342
+ packageSizeId?: number | null | undefined;
3343
+ photoUrls?: string[] | null | undefined;
3344
+ size?: string | null | undefined;
3345
+ sizeId?: number | null | undefined;
3346
+ statusId?: number | null | undefined;
3347
+ title?: string | null | undefined;
3348
+ isDraft?: boolean | null | undefined;
3349
+ isArchived?: boolean | null | undefined;
3350
+ availableQuantity?: number | null | undefined;
3351
+ material?: number[] | null | undefined;
3352
+ manufacturerLabelling?: string | null | undefined;
3353
+ labels?: string[] | null | undefined;
3354
+ }, {
3355
+ status?: string | null | undefined;
3356
+ price?: number | null | undefined;
3357
+ currency?: string | null | undefined;
3358
+ brand?: string | null | undefined;
3359
+ catalog?: string | null | undefined;
3360
+ catalogId?: number | null | undefined;
3361
+ colors?: string[] | null | undefined;
3362
+ colorIds?: number[] | null | undefined;
3363
+ description?: string | null | undefined;
3364
+ measurementLength?: number | null | undefined;
3365
+ measurementWidth?: number | null | undefined;
3366
+ packageSizeId?: number | null | undefined;
3367
+ photoUrls?: string[] | null | undefined;
3368
+ size?: string | null | undefined;
3369
+ sizeId?: number | null | undefined;
3370
+ statusId?: number | null | undefined;
3371
+ title?: string | null | undefined;
3372
+ isDraft?: boolean | null | undefined;
3373
+ isArchived?: boolean | null | undefined;
3374
+ availableQuantity?: number | null | undefined;
3375
+ material?: number[] | null | undefined;
3376
+ manufacturerLabelling?: string | null | undefined;
3377
+ labels?: string[] | null | undefined;
3378
+ }>>>;
3379
+ targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
3380
+ }, "strip", z.ZodTypeAny, {
3381
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3382
+ post?: {
3383
+ status?: string | null | undefined;
3384
+ price?: number | null | undefined;
3385
+ currency?: string | null | undefined;
3386
+ brand?: string | null | undefined;
3387
+ catalog?: string | null | undefined;
3388
+ catalogId?: number | null | undefined;
3389
+ colors?: string[] | null | undefined;
3390
+ colorIds?: number[] | null | undefined;
3391
+ description?: string | null | undefined;
3392
+ measurementLength?: number | null | undefined;
3393
+ measurementWidth?: number | null | undefined;
3394
+ packageSizeId?: number | null | undefined;
3395
+ photoUrls?: string[] | null | undefined;
3396
+ size?: string | null | undefined;
3397
+ sizeId?: number | null | undefined;
3398
+ statusId?: number | null | undefined;
3399
+ title?: string | null | undefined;
3400
+ isDraft?: boolean | null | undefined;
3401
+ isArchived?: boolean | null | undefined;
3402
+ availableQuantity?: number | null | undefined;
3403
+ material?: number[] | null | undefined;
3404
+ manufacturerLabelling?: string | null | undefined;
3405
+ labels?: string[] | null | undefined;
3406
+ } | null | undefined;
3407
+ targetDate?: Date | null | undefined;
3408
+ }, {
3409
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3410
+ post?: {
3411
+ status?: string | null | undefined;
3412
+ price?: number | null | undefined;
3413
+ currency?: string | null | undefined;
3414
+ brand?: string | null | undefined;
3415
+ catalog?: string | null | undefined;
3416
+ catalogId?: number | null | undefined;
3417
+ colors?: string[] | null | undefined;
3418
+ colorIds?: number[] | null | undefined;
3419
+ description?: string | null | undefined;
3420
+ measurementLength?: number | null | undefined;
3421
+ measurementWidth?: number | null | undefined;
3422
+ packageSizeId?: number | null | undefined;
3423
+ photoUrls?: string[] | null | undefined;
3424
+ size?: string | null | undefined;
3425
+ sizeId?: number | null | undefined;
3426
+ statusId?: number | null | undefined;
3427
+ title?: string | null | undefined;
3428
+ isDraft?: boolean | null | undefined;
3429
+ isArchived?: boolean | null | undefined;
3430
+ availableQuantity?: number | null | undefined;
3431
+ material?: number[] | null | undefined;
3432
+ manufacturerLabelling?: string | null | undefined;
3433
+ labels?: string[] | null | undefined;
3434
+ } | null | undefined;
3435
+ targetDate?: Date | null | undefined;
3436
+ }>;
3437
+ type: z.ZodLiteral<"UPDATING">;
3438
+ }, "strip", z.ZodTypeAny, {
3439
+ type: "UPDATING";
3440
+ data: {
3441
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3442
+ post?: {
3443
+ status?: string | null | undefined;
3444
+ price?: number | null | undefined;
3445
+ currency?: string | null | undefined;
3446
+ brand?: string | null | undefined;
3447
+ catalog?: string | null | undefined;
3448
+ catalogId?: number | null | undefined;
3449
+ colors?: string[] | null | undefined;
3450
+ colorIds?: number[] | null | undefined;
3451
+ description?: string | null | undefined;
3452
+ measurementLength?: number | null | undefined;
3453
+ measurementWidth?: number | null | undefined;
3454
+ packageSizeId?: number | null | undefined;
3455
+ photoUrls?: string[] | null | undefined;
3456
+ size?: string | null | undefined;
3457
+ sizeId?: number | null | undefined;
3458
+ statusId?: number | null | undefined;
3459
+ title?: string | null | undefined;
3460
+ isDraft?: boolean | null | undefined;
3461
+ isArchived?: boolean | null | undefined;
3462
+ availableQuantity?: number | null | undefined;
3463
+ material?: number[] | null | undefined;
3464
+ manufacturerLabelling?: string | null | undefined;
3465
+ labels?: string[] | null | undefined;
3466
+ } | null | undefined;
3467
+ targetDate?: Date | null | undefined;
3468
+ };
3469
+ }, {
3470
+ type: "UPDATING";
3471
+ data: {
3472
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3473
+ post?: {
3474
+ status?: string | null | undefined;
3475
+ price?: number | null | undefined;
3476
+ currency?: string | null | undefined;
3477
+ brand?: string | null | undefined;
3478
+ catalog?: string | null | undefined;
3479
+ catalogId?: number | null | undefined;
3480
+ colors?: string[] | null | undefined;
3481
+ colorIds?: number[] | null | undefined;
3482
+ description?: string | null | undefined;
3483
+ measurementLength?: number | null | undefined;
3484
+ measurementWidth?: number | null | undefined;
3485
+ packageSizeId?: number | null | undefined;
3486
+ photoUrls?: string[] | null | undefined;
3487
+ size?: string | null | undefined;
3488
+ sizeId?: number | null | undefined;
3489
+ statusId?: number | null | undefined;
3490
+ title?: string | null | undefined;
3491
+ isDraft?: boolean | null | undefined;
3492
+ isArchived?: boolean | null | undefined;
3493
+ availableQuantity?: number | null | undefined;
3494
+ material?: number[] | null | undefined;
3495
+ manufacturerLabelling?: string | null | undefined;
3496
+ labels?: string[] | null | undefined;
3497
+ } | null | undefined;
3498
+ targetDate?: Date | null | undefined;
3499
+ };
2996
3500
  }>]>>>;
2997
3501
  createdAt: z.ZodDate;
2998
3502
  targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -3157,6 +3661,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
3157
3661
  error?: string | null | undefined;
3158
3662
  }[] | null | undefined;
3159
3663
  };
3664
+ } | {
3665
+ type: "UPDATED";
3666
+ data: {
3667
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3668
+ };
3669
+ } | {
3670
+ type: "UPDATING";
3671
+ data: {
3672
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3673
+ post?: {
3674
+ status?: string | null | undefined;
3675
+ price?: number | null | undefined;
3676
+ currency?: string | null | undefined;
3677
+ brand?: string | null | undefined;
3678
+ catalog?: string | null | undefined;
3679
+ catalogId?: number | null | undefined;
3680
+ colors?: string[] | null | undefined;
3681
+ colorIds?: number[] | null | undefined;
3682
+ description?: string | null | undefined;
3683
+ measurementLength?: number | null | undefined;
3684
+ measurementWidth?: number | null | undefined;
3685
+ packageSizeId?: number | null | undefined;
3686
+ photoUrls?: string[] | null | undefined;
3687
+ size?: string | null | undefined;
3688
+ sizeId?: number | null | undefined;
3689
+ statusId?: number | null | undefined;
3690
+ title?: string | null | undefined;
3691
+ isDraft?: boolean | null | undefined;
3692
+ isArchived?: boolean | null | undefined;
3693
+ availableQuantity?: number | null | undefined;
3694
+ material?: number[] | null | undefined;
3695
+ manufacturerLabelling?: string | null | undefined;
3696
+ labels?: string[] | null | undefined;
3697
+ } | null | undefined;
3698
+ targetDate?: Date | null | undefined;
3699
+ };
3160
3700
  } | null | undefined;
3161
3701
  accountId?: string | null | undefined;
3162
3702
  requestId?: string | null | undefined;
@@ -3320,6 +3860,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
3320
3860
  error?: string | null | undefined;
3321
3861
  }[] | null | undefined;
3322
3862
  };
3863
+ } | {
3864
+ type: "UPDATED";
3865
+ data: {
3866
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3867
+ };
3868
+ } | {
3869
+ type: "UPDATING";
3870
+ data: {
3871
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3872
+ post?: {
3873
+ status?: string | null | undefined;
3874
+ price?: number | null | undefined;
3875
+ currency?: string | null | undefined;
3876
+ brand?: string | null | undefined;
3877
+ catalog?: string | null | undefined;
3878
+ catalogId?: number | null | undefined;
3879
+ colors?: string[] | null | undefined;
3880
+ colorIds?: number[] | null | undefined;
3881
+ description?: string | null | undefined;
3882
+ measurementLength?: number | null | undefined;
3883
+ measurementWidth?: number | null | undefined;
3884
+ packageSizeId?: number | null | undefined;
3885
+ photoUrls?: string[] | null | undefined;
3886
+ size?: string | null | undefined;
3887
+ sizeId?: number | null | undefined;
3888
+ statusId?: number | null | undefined;
3889
+ title?: string | null | undefined;
3890
+ isDraft?: boolean | null | undefined;
3891
+ isArchived?: boolean | null | undefined;
3892
+ availableQuantity?: number | null | undefined;
3893
+ material?: number[] | null | undefined;
3894
+ manufacturerLabelling?: string | null | undefined;
3895
+ labels?: string[] | null | undefined;
3896
+ } | null | undefined;
3897
+ targetDate?: Date | null | undefined;
3898
+ };
3323
3899
  } | null | undefined;
3324
3900
  accountId?: string | null | undefined;
3325
3901
  requestId?: string | null | undefined;
@@ -3576,6 +4152,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
3576
4152
  error?: string | null | undefined;
3577
4153
  }[] | null | undefined;
3578
4154
  };
4155
+ } | {
4156
+ type: "UPDATED";
4157
+ data: {
4158
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4159
+ };
4160
+ } | {
4161
+ type: "UPDATING";
4162
+ data: {
4163
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4164
+ post?: {
4165
+ status?: string | null | undefined;
4166
+ price?: number | null | undefined;
4167
+ currency?: string | null | undefined;
4168
+ brand?: string | null | undefined;
4169
+ catalog?: string | null | undefined;
4170
+ catalogId?: number | null | undefined;
4171
+ colors?: string[] | null | undefined;
4172
+ colorIds?: number[] | null | undefined;
4173
+ description?: string | null | undefined;
4174
+ measurementLength?: number | null | undefined;
4175
+ measurementWidth?: number | null | undefined;
4176
+ packageSizeId?: number | null | undefined;
4177
+ photoUrls?: string[] | null | undefined;
4178
+ size?: string | null | undefined;
4179
+ sizeId?: number | null | undefined;
4180
+ statusId?: number | null | undefined;
4181
+ title?: string | null | undefined;
4182
+ isDraft?: boolean | null | undefined;
4183
+ isArchived?: boolean | null | undefined;
4184
+ availableQuantity?: number | null | undefined;
4185
+ material?: number[] | null | undefined;
4186
+ manufacturerLabelling?: string | null | undefined;
4187
+ labels?: string[] | null | undefined;
4188
+ } | null | undefined;
4189
+ targetDate?: Date | null | undefined;
4190
+ };
3579
4191
  } | null | undefined;
3580
4192
  accountId?: string | null | undefined;
3581
4193
  requestId?: string | null | undefined;
@@ -3770,6 +4382,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
3770
4382
  error?: string | null | undefined;
3771
4383
  }[] | null | undefined;
3772
4384
  };
4385
+ } | {
4386
+ type: "UPDATED";
4387
+ data: {
4388
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4389
+ };
4390
+ } | {
4391
+ type: "UPDATING";
4392
+ data: {
4393
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4394
+ post?: {
4395
+ status?: string | null | undefined;
4396
+ price?: number | null | undefined;
4397
+ currency?: string | null | undefined;
4398
+ brand?: string | null | undefined;
4399
+ catalog?: string | null | undefined;
4400
+ catalogId?: number | null | undefined;
4401
+ colors?: string[] | null | undefined;
4402
+ colorIds?: number[] | null | undefined;
4403
+ description?: string | null | undefined;
4404
+ measurementLength?: number | null | undefined;
4405
+ measurementWidth?: number | null | undefined;
4406
+ packageSizeId?: number | null | undefined;
4407
+ photoUrls?: string[] | null | undefined;
4408
+ size?: string | null | undefined;
4409
+ sizeId?: number | null | undefined;
4410
+ statusId?: number | null | undefined;
4411
+ title?: string | null | undefined;
4412
+ isDraft?: boolean | null | undefined;
4413
+ isArchived?: boolean | null | undefined;
4414
+ availableQuantity?: number | null | undefined;
4415
+ material?: number[] | null | undefined;
4416
+ manufacturerLabelling?: string | null | undefined;
4417
+ labels?: string[] | null | undefined;
4418
+ } | null | undefined;
4419
+ targetDate?: Date | null | undefined;
4420
+ };
3773
4421
  } | null | undefined;
3774
4422
  accountId?: string | null | undefined;
3775
4423
  requestId?: string | null | undefined;
@@ -4024,6 +4672,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
4024
4672
  error?: string | null | undefined;
4025
4673
  }[] | null | undefined;
4026
4674
  };
4675
+ } | {
4676
+ type: "UPDATED";
4677
+ data: {
4678
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4679
+ };
4680
+ } | {
4681
+ type: "UPDATING";
4682
+ data: {
4683
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4684
+ post?: {
4685
+ status?: string | null | undefined;
4686
+ price?: number | null | undefined;
4687
+ currency?: string | null | undefined;
4688
+ brand?: string | null | undefined;
4689
+ catalog?: string | null | undefined;
4690
+ catalogId?: number | null | undefined;
4691
+ colors?: string[] | null | undefined;
4692
+ colorIds?: number[] | null | undefined;
4693
+ description?: string | null | undefined;
4694
+ measurementLength?: number | null | undefined;
4695
+ measurementWidth?: number | null | undefined;
4696
+ packageSizeId?: number | null | undefined;
4697
+ photoUrls?: string[] | null | undefined;
4698
+ size?: string | null | undefined;
4699
+ sizeId?: number | null | undefined;
4700
+ statusId?: number | null | undefined;
4701
+ title?: string | null | undefined;
4702
+ isDraft?: boolean | null | undefined;
4703
+ isArchived?: boolean | null | undefined;
4704
+ availableQuantity?: number | null | undefined;
4705
+ material?: number[] | null | undefined;
4706
+ manufacturerLabelling?: string | null | undefined;
4707
+ labels?: string[] | null | undefined;
4708
+ } | null | undefined;
4709
+ targetDate?: Date | null | undefined;
4710
+ };
4027
4711
  } | null | undefined;
4028
4712
  accountId?: string | null | undefined;
4029
4713
  requestId?: string | null | undefined;
@@ -4218,6 +4902,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
4218
4902
  error?: string | null | undefined;
4219
4903
  }[] | null | undefined;
4220
4904
  };
4905
+ } | {
4906
+ type: "UPDATED";
4907
+ data: {
4908
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4909
+ };
4910
+ } | {
4911
+ type: "UPDATING";
4912
+ data: {
4913
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4914
+ post?: {
4915
+ status?: string | null | undefined;
4916
+ price?: number | null | undefined;
4917
+ currency?: string | null | undefined;
4918
+ brand?: string | null | undefined;
4919
+ catalog?: string | null | undefined;
4920
+ catalogId?: number | null | undefined;
4921
+ colors?: string[] | null | undefined;
4922
+ colorIds?: number[] | null | undefined;
4923
+ description?: string | null | undefined;
4924
+ measurementLength?: number | null | undefined;
4925
+ measurementWidth?: number | null | undefined;
4926
+ packageSizeId?: number | null | undefined;
4927
+ photoUrls?: string[] | null | undefined;
4928
+ size?: string | null | undefined;
4929
+ sizeId?: number | null | undefined;
4930
+ statusId?: number | null | undefined;
4931
+ title?: string | null | undefined;
4932
+ isDraft?: boolean | null | undefined;
4933
+ isArchived?: boolean | null | undefined;
4934
+ availableQuantity?: number | null | undefined;
4935
+ material?: number[] | null | undefined;
4936
+ manufacturerLabelling?: string | null | undefined;
4937
+ labels?: string[] | null | undefined;
4938
+ } | null | undefined;
4939
+ targetDate?: Date | null | undefined;
4940
+ };
4221
4941
  } | null | undefined;
4222
4942
  accountId?: string | null | undefined;
4223
4943
  requestId?: string | null | undefined;
@@ -4474,6 +5194,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
4474
5194
  error?: string | null | undefined;
4475
5195
  }[] | null | undefined;
4476
5196
  };
5197
+ } | {
5198
+ type: "UPDATED";
5199
+ data: {
5200
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5201
+ };
5202
+ } | {
5203
+ type: "UPDATING";
5204
+ data: {
5205
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5206
+ post?: {
5207
+ status?: string | null | undefined;
5208
+ price?: number | null | undefined;
5209
+ currency?: string | null | undefined;
5210
+ brand?: string | null | undefined;
5211
+ catalog?: string | null | undefined;
5212
+ catalogId?: number | null | undefined;
5213
+ colors?: string[] | null | undefined;
5214
+ colorIds?: number[] | null | undefined;
5215
+ description?: string | null | undefined;
5216
+ measurementLength?: number | null | undefined;
5217
+ measurementWidth?: number | null | undefined;
5218
+ packageSizeId?: number | null | undefined;
5219
+ photoUrls?: string[] | null | undefined;
5220
+ size?: string | null | undefined;
5221
+ sizeId?: number | null | undefined;
5222
+ statusId?: number | null | undefined;
5223
+ title?: string | null | undefined;
5224
+ isDraft?: boolean | null | undefined;
5225
+ isArchived?: boolean | null | undefined;
5226
+ availableQuantity?: number | null | undefined;
5227
+ material?: number[] | null | undefined;
5228
+ manufacturerLabelling?: string | null | undefined;
5229
+ labels?: string[] | null | undefined;
5230
+ } | null | undefined;
5231
+ targetDate?: Date | null | undefined;
5232
+ };
4477
5233
  } | null | undefined;
4478
5234
  accountId?: string | null | undefined;
4479
5235
  requestId?: string | null | undefined;
@@ -4668,6 +5424,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
4668
5424
  error?: string | null | undefined;
4669
5425
  }[] | null | undefined;
4670
5426
  };
5427
+ } | {
5428
+ type: "UPDATED";
5429
+ data: {
5430
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5431
+ };
5432
+ } | {
5433
+ type: "UPDATING";
5434
+ data: {
5435
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5436
+ post?: {
5437
+ status?: string | null | undefined;
5438
+ price?: number | null | undefined;
5439
+ currency?: string | null | undefined;
5440
+ brand?: string | null | undefined;
5441
+ catalog?: string | null | undefined;
5442
+ catalogId?: number | null | undefined;
5443
+ colors?: string[] | null | undefined;
5444
+ colorIds?: number[] | null | undefined;
5445
+ description?: string | null | undefined;
5446
+ measurementLength?: number | null | undefined;
5447
+ measurementWidth?: number | null | undefined;
5448
+ packageSizeId?: number | null | undefined;
5449
+ photoUrls?: string[] | null | undefined;
5450
+ size?: string | null | undefined;
5451
+ sizeId?: number | null | undefined;
5452
+ statusId?: number | null | undefined;
5453
+ title?: string | null | undefined;
5454
+ isDraft?: boolean | null | undefined;
5455
+ isArchived?: boolean | null | undefined;
5456
+ availableQuantity?: number | null | undefined;
5457
+ material?: number[] | null | undefined;
5458
+ manufacturerLabelling?: string | null | undefined;
5459
+ labels?: string[] | null | undefined;
5460
+ } | null | undefined;
5461
+ targetDate?: Date | null | undefined;
5462
+ };
4671
5463
  } | null | undefined;
4672
5464
  accountId?: string | null | undefined;
4673
5465
  requestId?: string | null | undefined;
@@ -5019,6 +5811,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
5019
5811
  error?: string | null | undefined;
5020
5812
  }[] | null | undefined;
5021
5813
  };
5814
+ } | {
5815
+ type: "UPDATED";
5816
+ data: {
5817
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5818
+ };
5819
+ } | {
5820
+ type: "UPDATING";
5821
+ data: {
5822
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5823
+ post?: {
5824
+ status?: string | null | undefined;
5825
+ price?: number | null | undefined;
5826
+ currency?: string | null | undefined;
5827
+ brand?: string | null | undefined;
5828
+ catalog?: string | null | undefined;
5829
+ catalogId?: number | null | undefined;
5830
+ colors?: string[] | null | undefined;
5831
+ colorIds?: number[] | null | undefined;
5832
+ description?: string | null | undefined;
5833
+ measurementLength?: number | null | undefined;
5834
+ measurementWidth?: number | null | undefined;
5835
+ packageSizeId?: number | null | undefined;
5836
+ photoUrls?: string[] | null | undefined;
5837
+ size?: string | null | undefined;
5838
+ sizeId?: number | null | undefined;
5839
+ statusId?: number | null | undefined;
5840
+ title?: string | null | undefined;
5841
+ isDraft?: boolean | null | undefined;
5842
+ isArchived?: boolean | null | undefined;
5843
+ availableQuantity?: number | null | undefined;
5844
+ material?: number[] | null | undefined;
5845
+ manufacturerLabelling?: string | null | undefined;
5846
+ labels?: string[] | null | undefined;
5847
+ } | null | undefined;
5848
+ targetDate?: Date | null | undefined;
5849
+ };
5022
5850
  } | null | undefined;
5023
5851
  accountId?: string | null | undefined;
5024
5852
  requestId?: string | null | undefined;
@@ -5213,6 +6041,42 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
5213
6041
  error?: string | null | undefined;
5214
6042
  }[] | null | undefined;
5215
6043
  };
6044
+ } | {
6045
+ type: "UPDATED";
6046
+ data: {
6047
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
6048
+ };
6049
+ } | {
6050
+ type: "UPDATING";
6051
+ data: {
6052
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
6053
+ post?: {
6054
+ status?: string | null | undefined;
6055
+ price?: number | null | undefined;
6056
+ currency?: string | null | undefined;
6057
+ brand?: string | null | undefined;
6058
+ catalog?: string | null | undefined;
6059
+ catalogId?: number | null | undefined;
6060
+ colors?: string[] | null | undefined;
6061
+ colorIds?: number[] | null | undefined;
6062
+ description?: string | null | undefined;
6063
+ measurementLength?: number | null | undefined;
6064
+ measurementWidth?: number | null | undefined;
6065
+ packageSizeId?: number | null | undefined;
6066
+ photoUrls?: string[] | null | undefined;
6067
+ size?: string | null | undefined;
6068
+ sizeId?: number | null | undefined;
6069
+ statusId?: number | null | undefined;
6070
+ title?: string | null | undefined;
6071
+ isDraft?: boolean | null | undefined;
6072
+ isArchived?: boolean | null | undefined;
6073
+ availableQuantity?: number | null | undefined;
6074
+ material?: number[] | null | undefined;
6075
+ manufacturerLabelling?: string | null | undefined;
6076
+ labels?: string[] | null | undefined;
6077
+ } | null | undefined;
6078
+ targetDate?: Date | null | undefined;
6079
+ };
5216
6080
  } | null | undefined;
5217
6081
  accountId?: string | null | undefined;
5218
6082
  requestId?: string | null | undefined;