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
@@ -1084,6 +1084,222 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1084
1084
  error?: string | null | undefined;
1085
1085
  }[] | null | undefined;
1086
1086
  };
1087
+ }>, z.ZodObject<{
1088
+ data: z.ZodObject<{
1089
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
1090
+ }, "strip", z.ZodTypeAny, {
1091
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1092
+ }, {
1093
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1094
+ }>;
1095
+ type: z.ZodLiteral<"UPDATED">;
1096
+ }, "strip", z.ZodTypeAny, {
1097
+ type: "UPDATED";
1098
+ data: {
1099
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1100
+ };
1101
+ }, {
1102
+ type: "UPDATED";
1103
+ data: {
1104
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1105
+ };
1106
+ }>, z.ZodObject<{
1107
+ data: z.ZodObject<{
1108
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
1109
+ post: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1110
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1111
+ catalog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1112
+ catalogId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1113
+ colors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1114
+ colorIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
1115
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1116
+ measurementLength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1117
+ measurementWidth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1118
+ packageSizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1119
+ photoUrls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1120
+ price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1121
+ currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1122
+ size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1123
+ sizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1124
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1125
+ statusId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1126
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1127
+ isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1128
+ isArchived: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1129
+ availableQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1130
+ material: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
1131
+ manufacturerLabelling: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1132
+ labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1133
+ }, "strip", z.ZodTypeAny, {
1134
+ status?: string | null | undefined;
1135
+ price?: number | null | undefined;
1136
+ currency?: string | null | undefined;
1137
+ brand?: string | null | undefined;
1138
+ catalog?: string | null | undefined;
1139
+ catalogId?: number | null | undefined;
1140
+ colors?: string[] | null | undefined;
1141
+ colorIds?: number[] | null | undefined;
1142
+ description?: string | null | undefined;
1143
+ measurementLength?: number | null | undefined;
1144
+ measurementWidth?: number | null | undefined;
1145
+ packageSizeId?: number | null | undefined;
1146
+ photoUrls?: string[] | null | undefined;
1147
+ size?: string | null | undefined;
1148
+ sizeId?: number | null | undefined;
1149
+ statusId?: number | null | undefined;
1150
+ title?: string | null | undefined;
1151
+ isDraft?: boolean | null | undefined;
1152
+ isArchived?: boolean | null | undefined;
1153
+ availableQuantity?: number | null | undefined;
1154
+ material?: number[] | null | undefined;
1155
+ manufacturerLabelling?: string | null | undefined;
1156
+ labels?: string[] | null | undefined;
1157
+ }, {
1158
+ status?: string | null | undefined;
1159
+ price?: number | null | undefined;
1160
+ currency?: string | null | undefined;
1161
+ brand?: string | null | undefined;
1162
+ catalog?: string | null | undefined;
1163
+ catalogId?: number | null | undefined;
1164
+ colors?: string[] | null | undefined;
1165
+ colorIds?: number[] | null | undefined;
1166
+ description?: string | null | undefined;
1167
+ measurementLength?: number | null | undefined;
1168
+ measurementWidth?: number | null | undefined;
1169
+ packageSizeId?: number | null | undefined;
1170
+ photoUrls?: string[] | null | undefined;
1171
+ size?: string | null | undefined;
1172
+ sizeId?: number | null | undefined;
1173
+ statusId?: number | null | undefined;
1174
+ title?: string | null | undefined;
1175
+ isDraft?: boolean | null | undefined;
1176
+ isArchived?: boolean | null | undefined;
1177
+ availableQuantity?: number | null | undefined;
1178
+ material?: number[] | null | undefined;
1179
+ manufacturerLabelling?: string | null | undefined;
1180
+ labels?: string[] | null | undefined;
1181
+ }>>>;
1182
+ targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1183
+ }, "strip", z.ZodTypeAny, {
1184
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1185
+ post?: {
1186
+ status?: string | null | undefined;
1187
+ price?: number | null | undefined;
1188
+ currency?: string | null | undefined;
1189
+ brand?: string | null | undefined;
1190
+ catalog?: string | null | undefined;
1191
+ catalogId?: number | null | undefined;
1192
+ colors?: string[] | null | undefined;
1193
+ colorIds?: number[] | null | undefined;
1194
+ description?: string | null | undefined;
1195
+ measurementLength?: number | null | undefined;
1196
+ measurementWidth?: number | null | undefined;
1197
+ packageSizeId?: number | null | undefined;
1198
+ photoUrls?: string[] | null | undefined;
1199
+ size?: string | null | undefined;
1200
+ sizeId?: number | null | undefined;
1201
+ statusId?: number | null | undefined;
1202
+ title?: string | null | undefined;
1203
+ isDraft?: boolean | null | undefined;
1204
+ isArchived?: boolean | null | undefined;
1205
+ availableQuantity?: number | null | undefined;
1206
+ material?: number[] | null | undefined;
1207
+ manufacturerLabelling?: string | null | undefined;
1208
+ labels?: string[] | null | undefined;
1209
+ } | null | undefined;
1210
+ targetDate?: Date | null | undefined;
1211
+ }, {
1212
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1213
+ post?: {
1214
+ status?: string | null | undefined;
1215
+ price?: number | null | undefined;
1216
+ currency?: string | null | undefined;
1217
+ brand?: string | null | undefined;
1218
+ catalog?: string | null | undefined;
1219
+ catalogId?: number | null | undefined;
1220
+ colors?: string[] | null | undefined;
1221
+ colorIds?: number[] | null | undefined;
1222
+ description?: string | null | undefined;
1223
+ measurementLength?: number | null | undefined;
1224
+ measurementWidth?: number | null | undefined;
1225
+ packageSizeId?: number | null | undefined;
1226
+ photoUrls?: string[] | null | undefined;
1227
+ size?: string | null | undefined;
1228
+ sizeId?: number | null | undefined;
1229
+ statusId?: number | null | undefined;
1230
+ title?: string | null | undefined;
1231
+ isDraft?: boolean | null | undefined;
1232
+ isArchived?: boolean | null | undefined;
1233
+ availableQuantity?: number | null | undefined;
1234
+ material?: number[] | null | undefined;
1235
+ manufacturerLabelling?: string | null | undefined;
1236
+ labels?: string[] | null | undefined;
1237
+ } | null | undefined;
1238
+ targetDate?: Date | null | undefined;
1239
+ }>;
1240
+ type: z.ZodLiteral<"UPDATING">;
1241
+ }, "strip", z.ZodTypeAny, {
1242
+ type: "UPDATING";
1243
+ data: {
1244
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1245
+ post?: {
1246
+ status?: string | null | undefined;
1247
+ price?: number | null | undefined;
1248
+ currency?: string | null | undefined;
1249
+ brand?: string | null | undefined;
1250
+ catalog?: string | null | undefined;
1251
+ catalogId?: number | null | undefined;
1252
+ colors?: string[] | null | undefined;
1253
+ colorIds?: number[] | null | undefined;
1254
+ description?: string | null | undefined;
1255
+ measurementLength?: number | null | undefined;
1256
+ measurementWidth?: number | null | undefined;
1257
+ packageSizeId?: number | null | undefined;
1258
+ photoUrls?: string[] | null | undefined;
1259
+ size?: string | null | undefined;
1260
+ sizeId?: number | null | undefined;
1261
+ statusId?: number | null | undefined;
1262
+ title?: string | null | undefined;
1263
+ isDraft?: boolean | null | undefined;
1264
+ isArchived?: boolean | null | undefined;
1265
+ availableQuantity?: number | null | undefined;
1266
+ material?: number[] | null | undefined;
1267
+ manufacturerLabelling?: string | null | undefined;
1268
+ labels?: string[] | null | undefined;
1269
+ } | null | undefined;
1270
+ targetDate?: Date | null | undefined;
1271
+ };
1272
+ }, {
1273
+ type: "UPDATING";
1274
+ data: {
1275
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1276
+ post?: {
1277
+ status?: string | null | undefined;
1278
+ price?: number | null | undefined;
1279
+ currency?: string | null | undefined;
1280
+ brand?: string | null | undefined;
1281
+ catalog?: string | null | undefined;
1282
+ catalogId?: number | null | undefined;
1283
+ colors?: string[] | null | undefined;
1284
+ colorIds?: number[] | null | undefined;
1285
+ description?: string | null | undefined;
1286
+ measurementLength?: number | null | undefined;
1287
+ measurementWidth?: number | null | undefined;
1288
+ packageSizeId?: number | null | undefined;
1289
+ photoUrls?: string[] | null | undefined;
1290
+ size?: string | null | undefined;
1291
+ sizeId?: number | null | undefined;
1292
+ statusId?: number | null | undefined;
1293
+ title?: string | null | undefined;
1294
+ isDraft?: boolean | null | undefined;
1295
+ isArchived?: boolean | null | undefined;
1296
+ availableQuantity?: number | null | undefined;
1297
+ material?: number[] | null | undefined;
1298
+ manufacturerLabelling?: string | null | undefined;
1299
+ labels?: string[] | null | undefined;
1300
+ } | null | undefined;
1301
+ targetDate?: Date | null | undefined;
1302
+ };
1087
1303
  }>]>>>;
1088
1304
  createdAt: z.ZodDate;
1089
1305
  targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -1248,6 +1464,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1248
1464
  error?: string | null | undefined;
1249
1465
  }[] | null | undefined;
1250
1466
  };
1467
+ } | {
1468
+ type: "UPDATED";
1469
+ data: {
1470
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1471
+ };
1472
+ } | {
1473
+ type: "UPDATING";
1474
+ data: {
1475
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1476
+ post?: {
1477
+ status?: string | null | undefined;
1478
+ price?: number | null | undefined;
1479
+ currency?: string | null | undefined;
1480
+ brand?: string | null | undefined;
1481
+ catalog?: string | null | undefined;
1482
+ catalogId?: number | null | undefined;
1483
+ colors?: string[] | null | undefined;
1484
+ colorIds?: number[] | null | undefined;
1485
+ description?: string | null | undefined;
1486
+ measurementLength?: number | null | undefined;
1487
+ measurementWidth?: number | null | undefined;
1488
+ packageSizeId?: number | null | undefined;
1489
+ photoUrls?: string[] | null | undefined;
1490
+ size?: string | null | undefined;
1491
+ sizeId?: number | null | undefined;
1492
+ statusId?: number | null | undefined;
1493
+ title?: string | null | undefined;
1494
+ isDraft?: boolean | null | undefined;
1495
+ isArchived?: boolean | null | undefined;
1496
+ availableQuantity?: number | null | undefined;
1497
+ material?: number[] | null | undefined;
1498
+ manufacturerLabelling?: string | null | undefined;
1499
+ labels?: string[] | null | undefined;
1500
+ } | null | undefined;
1501
+ targetDate?: Date | null | undefined;
1502
+ };
1251
1503
  } | null | undefined;
1252
1504
  accountId?: string | null | undefined;
1253
1505
  requestId?: string | null | undefined;
@@ -1411,6 +1663,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1411
1663
  error?: string | null | undefined;
1412
1664
  }[] | null | undefined;
1413
1665
  };
1666
+ } | {
1667
+ type: "UPDATED";
1668
+ data: {
1669
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1670
+ };
1671
+ } | {
1672
+ type: "UPDATING";
1673
+ data: {
1674
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
1675
+ post?: {
1676
+ status?: string | null | undefined;
1677
+ price?: number | null | undefined;
1678
+ currency?: string | null | undefined;
1679
+ brand?: string | null | undefined;
1680
+ catalog?: string | null | undefined;
1681
+ catalogId?: number | null | undefined;
1682
+ colors?: string[] | null | undefined;
1683
+ colorIds?: number[] | null | undefined;
1684
+ description?: string | null | undefined;
1685
+ measurementLength?: number | null | undefined;
1686
+ measurementWidth?: number | null | undefined;
1687
+ packageSizeId?: number | null | undefined;
1688
+ photoUrls?: string[] | null | undefined;
1689
+ size?: string | null | undefined;
1690
+ sizeId?: number | null | undefined;
1691
+ statusId?: number | null | undefined;
1692
+ title?: string | null | undefined;
1693
+ isDraft?: boolean | null | undefined;
1694
+ isArchived?: boolean | null | undefined;
1695
+ availableQuantity?: number | null | undefined;
1696
+ material?: number[] | null | undefined;
1697
+ manufacturerLabelling?: string | null | undefined;
1698
+ labels?: string[] | null | undefined;
1699
+ } | null | undefined;
1700
+ targetDate?: Date | null | undefined;
1701
+ };
1414
1702
  } | null | undefined;
1415
1703
  accountId?: string | null | undefined;
1416
1704
  requestId?: string | null | undefined;
@@ -2398,6 +2686,222 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2398
2686
  error?: string | null | undefined;
2399
2687
  }[] | null | undefined;
2400
2688
  };
2689
+ }>, z.ZodObject<{
2690
+ data: z.ZodObject<{
2691
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
2692
+ }, "strip", z.ZodTypeAny, {
2693
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2694
+ }, {
2695
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2696
+ }>;
2697
+ type: z.ZodLiteral<"UPDATED">;
2698
+ }, "strip", z.ZodTypeAny, {
2699
+ type: "UPDATED";
2700
+ data: {
2701
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2702
+ };
2703
+ }, {
2704
+ type: "UPDATED";
2705
+ data: {
2706
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2707
+ };
2708
+ }>, z.ZodObject<{
2709
+ data: z.ZodObject<{
2710
+ platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
2711
+ post: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2712
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2713
+ catalog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2714
+ catalogId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2715
+ colors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2716
+ colorIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
2717
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2718
+ measurementLength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2719
+ measurementWidth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2720
+ packageSizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2721
+ photoUrls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2722
+ price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2723
+ currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2724
+ size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2725
+ sizeId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2726
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2727
+ statusId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2728
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2729
+ isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2730
+ isArchived: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2731
+ availableQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2732
+ material: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
2733
+ manufacturerLabelling: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2734
+ labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2735
+ }, "strip", z.ZodTypeAny, {
2736
+ status?: string | null | undefined;
2737
+ price?: number | null | undefined;
2738
+ currency?: string | null | undefined;
2739
+ brand?: string | null | undefined;
2740
+ catalog?: string | null | undefined;
2741
+ catalogId?: number | null | undefined;
2742
+ colors?: string[] | null | undefined;
2743
+ colorIds?: number[] | null | undefined;
2744
+ description?: string | null | undefined;
2745
+ measurementLength?: number | null | undefined;
2746
+ measurementWidth?: number | null | undefined;
2747
+ packageSizeId?: number | null | undefined;
2748
+ photoUrls?: string[] | null | undefined;
2749
+ size?: string | null | undefined;
2750
+ sizeId?: number | null | undefined;
2751
+ statusId?: number | null | undefined;
2752
+ title?: string | null | undefined;
2753
+ isDraft?: boolean | null | undefined;
2754
+ isArchived?: boolean | null | undefined;
2755
+ availableQuantity?: number | null | undefined;
2756
+ material?: number[] | null | undefined;
2757
+ manufacturerLabelling?: string | null | undefined;
2758
+ labels?: string[] | null | undefined;
2759
+ }, {
2760
+ status?: string | null | undefined;
2761
+ price?: number | null | undefined;
2762
+ currency?: string | null | undefined;
2763
+ brand?: string | null | undefined;
2764
+ catalog?: string | null | undefined;
2765
+ catalogId?: number | null | undefined;
2766
+ colors?: string[] | null | undefined;
2767
+ colorIds?: number[] | null | undefined;
2768
+ description?: string | null | undefined;
2769
+ measurementLength?: number | null | undefined;
2770
+ measurementWidth?: number | null | undefined;
2771
+ packageSizeId?: number | null | undefined;
2772
+ photoUrls?: string[] | null | undefined;
2773
+ size?: string | null | undefined;
2774
+ sizeId?: number | null | undefined;
2775
+ statusId?: number | null | undefined;
2776
+ title?: string | null | undefined;
2777
+ isDraft?: boolean | null | undefined;
2778
+ isArchived?: boolean | null | undefined;
2779
+ availableQuantity?: number | null | undefined;
2780
+ material?: number[] | null | undefined;
2781
+ manufacturerLabelling?: string | null | undefined;
2782
+ labels?: string[] | null | undefined;
2783
+ }>>>;
2784
+ targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2785
+ }, "strip", z.ZodTypeAny, {
2786
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2787
+ post?: {
2788
+ status?: string | null | undefined;
2789
+ price?: number | null | undefined;
2790
+ currency?: string | null | undefined;
2791
+ brand?: string | null | undefined;
2792
+ catalog?: string | null | undefined;
2793
+ catalogId?: number | null | undefined;
2794
+ colors?: string[] | null | undefined;
2795
+ colorIds?: number[] | null | undefined;
2796
+ description?: string | null | undefined;
2797
+ measurementLength?: number | null | undefined;
2798
+ measurementWidth?: number | null | undefined;
2799
+ packageSizeId?: number | null | undefined;
2800
+ photoUrls?: string[] | null | undefined;
2801
+ size?: string | null | undefined;
2802
+ sizeId?: number | null | undefined;
2803
+ statusId?: number | null | undefined;
2804
+ title?: string | null | undefined;
2805
+ isDraft?: boolean | null | undefined;
2806
+ isArchived?: boolean | null | undefined;
2807
+ availableQuantity?: number | null | undefined;
2808
+ material?: number[] | null | undefined;
2809
+ manufacturerLabelling?: string | null | undefined;
2810
+ labels?: string[] | null | undefined;
2811
+ } | null | undefined;
2812
+ targetDate?: Date | null | undefined;
2813
+ }, {
2814
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2815
+ post?: {
2816
+ status?: string | null | undefined;
2817
+ price?: number | null | undefined;
2818
+ currency?: string | null | undefined;
2819
+ brand?: string | null | undefined;
2820
+ catalog?: string | null | undefined;
2821
+ catalogId?: number | null | undefined;
2822
+ colors?: string[] | null | undefined;
2823
+ colorIds?: number[] | null | undefined;
2824
+ description?: string | null | undefined;
2825
+ measurementLength?: number | null | undefined;
2826
+ measurementWidth?: number | null | undefined;
2827
+ packageSizeId?: number | null | undefined;
2828
+ photoUrls?: string[] | null | undefined;
2829
+ size?: string | null | undefined;
2830
+ sizeId?: number | null | undefined;
2831
+ statusId?: number | null | undefined;
2832
+ title?: string | null | undefined;
2833
+ isDraft?: boolean | null | undefined;
2834
+ isArchived?: boolean | null | undefined;
2835
+ availableQuantity?: number | null | undefined;
2836
+ material?: number[] | null | undefined;
2837
+ manufacturerLabelling?: string | null | undefined;
2838
+ labels?: string[] | null | undefined;
2839
+ } | null | undefined;
2840
+ targetDate?: Date | null | undefined;
2841
+ }>;
2842
+ type: z.ZodLiteral<"UPDATING">;
2843
+ }, "strip", z.ZodTypeAny, {
2844
+ type: "UPDATING";
2845
+ data: {
2846
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2847
+ post?: {
2848
+ status?: string | null | undefined;
2849
+ price?: number | null | undefined;
2850
+ currency?: string | null | undefined;
2851
+ brand?: string | null | undefined;
2852
+ catalog?: string | null | undefined;
2853
+ catalogId?: number | null | undefined;
2854
+ colors?: string[] | null | undefined;
2855
+ colorIds?: number[] | null | undefined;
2856
+ description?: string | null | undefined;
2857
+ measurementLength?: number | null | undefined;
2858
+ measurementWidth?: number | null | undefined;
2859
+ packageSizeId?: number | null | undefined;
2860
+ photoUrls?: string[] | null | undefined;
2861
+ size?: string | null | undefined;
2862
+ sizeId?: number | null | undefined;
2863
+ statusId?: number | null | undefined;
2864
+ title?: string | null | undefined;
2865
+ isDraft?: boolean | null | undefined;
2866
+ isArchived?: boolean | null | undefined;
2867
+ availableQuantity?: number | null | undefined;
2868
+ material?: number[] | null | undefined;
2869
+ manufacturerLabelling?: string | null | undefined;
2870
+ labels?: string[] | null | undefined;
2871
+ } | null | undefined;
2872
+ targetDate?: Date | null | undefined;
2873
+ };
2874
+ }, {
2875
+ type: "UPDATING";
2876
+ data: {
2877
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
2878
+ post?: {
2879
+ status?: string | null | undefined;
2880
+ price?: number | null | undefined;
2881
+ currency?: string | null | undefined;
2882
+ brand?: string | null | undefined;
2883
+ catalog?: string | null | undefined;
2884
+ catalogId?: number | null | undefined;
2885
+ colors?: string[] | null | undefined;
2886
+ colorIds?: number[] | null | undefined;
2887
+ description?: string | null | undefined;
2888
+ measurementLength?: number | null | undefined;
2889
+ measurementWidth?: number | null | undefined;
2890
+ packageSizeId?: number | null | undefined;
2891
+ photoUrls?: string[] | null | undefined;
2892
+ size?: string | null | undefined;
2893
+ sizeId?: number | null | undefined;
2894
+ statusId?: number | null | undefined;
2895
+ title?: string | null | undefined;
2896
+ isDraft?: boolean | null | undefined;
2897
+ isArchived?: boolean | null | undefined;
2898
+ availableQuantity?: number | null | undefined;
2899
+ material?: number[] | null | undefined;
2900
+ manufacturerLabelling?: string | null | undefined;
2901
+ labels?: string[] | null | undefined;
2902
+ } | null | undefined;
2903
+ targetDate?: Date | null | undefined;
2904
+ };
2401
2905
  }>]>>>;
2402
2906
  createdAt: z.ZodDate;
2403
2907
  targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -2562,6 +3066,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2562
3066
  error?: string | null | undefined;
2563
3067
  }[] | null | undefined;
2564
3068
  };
3069
+ } | {
3070
+ type: "UPDATED";
3071
+ data: {
3072
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3073
+ };
3074
+ } | {
3075
+ type: "UPDATING";
3076
+ data: {
3077
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3078
+ post?: {
3079
+ status?: string | null | undefined;
3080
+ price?: number | null | undefined;
3081
+ currency?: string | null | undefined;
3082
+ brand?: string | null | undefined;
3083
+ catalog?: string | null | undefined;
3084
+ catalogId?: number | null | undefined;
3085
+ colors?: string[] | null | undefined;
3086
+ colorIds?: number[] | null | undefined;
3087
+ description?: string | null | undefined;
3088
+ measurementLength?: number | null | undefined;
3089
+ measurementWidth?: number | null | undefined;
3090
+ packageSizeId?: number | null | undefined;
3091
+ photoUrls?: string[] | null | undefined;
3092
+ size?: string | null | undefined;
3093
+ sizeId?: number | null | undefined;
3094
+ statusId?: number | null | undefined;
3095
+ title?: string | null | undefined;
3096
+ isDraft?: boolean | null | undefined;
3097
+ isArchived?: boolean | null | undefined;
3098
+ availableQuantity?: number | null | undefined;
3099
+ material?: number[] | null | undefined;
3100
+ manufacturerLabelling?: string | null | undefined;
3101
+ labels?: string[] | null | undefined;
3102
+ } | null | undefined;
3103
+ targetDate?: Date | null | undefined;
3104
+ };
2565
3105
  } | null | undefined;
2566
3106
  accountId?: string | null | undefined;
2567
3107
  requestId?: string | null | undefined;
@@ -2725,6 +3265,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2725
3265
  error?: string | null | undefined;
2726
3266
  }[] | null | undefined;
2727
3267
  };
3268
+ } | {
3269
+ type: "UPDATED";
3270
+ data: {
3271
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3272
+ };
3273
+ } | {
3274
+ type: "UPDATING";
3275
+ data: {
3276
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3277
+ post?: {
3278
+ status?: string | null | undefined;
3279
+ price?: number | null | undefined;
3280
+ currency?: string | null | undefined;
3281
+ brand?: string | null | undefined;
3282
+ catalog?: string | null | undefined;
3283
+ catalogId?: number | null | undefined;
3284
+ colors?: string[] | null | undefined;
3285
+ colorIds?: number[] | null | undefined;
3286
+ description?: string | null | undefined;
3287
+ measurementLength?: number | null | undefined;
3288
+ measurementWidth?: number | null | undefined;
3289
+ packageSizeId?: number | null | undefined;
3290
+ photoUrls?: string[] | null | undefined;
3291
+ size?: string | null | undefined;
3292
+ sizeId?: number | null | undefined;
3293
+ statusId?: number | null | undefined;
3294
+ title?: string | null | undefined;
3295
+ isDraft?: boolean | null | undefined;
3296
+ isArchived?: boolean | null | undefined;
3297
+ availableQuantity?: number | null | undefined;
3298
+ material?: number[] | null | undefined;
3299
+ manufacturerLabelling?: string | null | undefined;
3300
+ labels?: string[] | null | undefined;
3301
+ } | null | undefined;
3302
+ targetDate?: Date | null | undefined;
3303
+ };
2728
3304
  } | null | undefined;
2729
3305
  accountId?: string | null | undefined;
2730
3306
  requestId?: string | null | undefined;
@@ -2981,6 +3557,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2981
3557
  error?: string | null | undefined;
2982
3558
  }[] | null | undefined;
2983
3559
  };
3560
+ } | {
3561
+ type: "UPDATED";
3562
+ data: {
3563
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3564
+ };
3565
+ } | {
3566
+ type: "UPDATING";
3567
+ data: {
3568
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3569
+ post?: {
3570
+ status?: string | null | undefined;
3571
+ price?: number | null | undefined;
3572
+ currency?: string | null | undefined;
3573
+ brand?: string | null | undefined;
3574
+ catalog?: string | null | undefined;
3575
+ catalogId?: number | null | undefined;
3576
+ colors?: string[] | null | undefined;
3577
+ colorIds?: number[] | null | undefined;
3578
+ description?: string | null | undefined;
3579
+ measurementLength?: number | null | undefined;
3580
+ measurementWidth?: number | null | undefined;
3581
+ packageSizeId?: number | null | undefined;
3582
+ photoUrls?: string[] | null | undefined;
3583
+ size?: string | null | undefined;
3584
+ sizeId?: number | null | undefined;
3585
+ statusId?: number | null | undefined;
3586
+ title?: string | null | undefined;
3587
+ isDraft?: boolean | null | undefined;
3588
+ isArchived?: boolean | null | undefined;
3589
+ availableQuantity?: number | null | undefined;
3590
+ material?: number[] | null | undefined;
3591
+ manufacturerLabelling?: string | null | undefined;
3592
+ labels?: string[] | null | undefined;
3593
+ } | null | undefined;
3594
+ targetDate?: Date | null | undefined;
3595
+ };
2984
3596
  } | null | undefined;
2985
3597
  accountId?: string | null | undefined;
2986
3598
  requestId?: string | null | undefined;
@@ -3175,6 +3787,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
3175
3787
  error?: string | null | undefined;
3176
3788
  }[] | null | undefined;
3177
3789
  };
3790
+ } | {
3791
+ type: "UPDATED";
3792
+ data: {
3793
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3794
+ };
3795
+ } | {
3796
+ type: "UPDATING";
3797
+ data: {
3798
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
3799
+ post?: {
3800
+ status?: string | null | undefined;
3801
+ price?: number | null | undefined;
3802
+ currency?: string | null | undefined;
3803
+ brand?: string | null | undefined;
3804
+ catalog?: string | null | undefined;
3805
+ catalogId?: number | null | undefined;
3806
+ colors?: string[] | null | undefined;
3807
+ colorIds?: number[] | null | undefined;
3808
+ description?: string | null | undefined;
3809
+ measurementLength?: number | null | undefined;
3810
+ measurementWidth?: number | null | undefined;
3811
+ packageSizeId?: number | null | undefined;
3812
+ photoUrls?: string[] | null | undefined;
3813
+ size?: string | null | undefined;
3814
+ sizeId?: number | null | undefined;
3815
+ statusId?: number | null | undefined;
3816
+ title?: string | null | undefined;
3817
+ isDraft?: boolean | null | undefined;
3818
+ isArchived?: boolean | null | undefined;
3819
+ availableQuantity?: number | null | undefined;
3820
+ material?: number[] | null | undefined;
3821
+ manufacturerLabelling?: string | null | undefined;
3822
+ labels?: string[] | null | undefined;
3823
+ } | null | undefined;
3824
+ targetDate?: Date | null | undefined;
3825
+ };
3178
3826
  } | null | undefined;
3179
3827
  accountId?: string | null | undefined;
3180
3828
  requestId?: string | null | undefined;
@@ -3429,6 +4077,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
3429
4077
  error?: string | null | undefined;
3430
4078
  }[] | null | undefined;
3431
4079
  };
4080
+ } | {
4081
+ type: "UPDATED";
4082
+ data: {
4083
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4084
+ };
4085
+ } | {
4086
+ type: "UPDATING";
4087
+ data: {
4088
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4089
+ post?: {
4090
+ status?: string | null | undefined;
4091
+ price?: number | null | undefined;
4092
+ currency?: string | null | undefined;
4093
+ brand?: string | null | undefined;
4094
+ catalog?: string | null | undefined;
4095
+ catalogId?: number | null | undefined;
4096
+ colors?: string[] | null | undefined;
4097
+ colorIds?: number[] | null | undefined;
4098
+ description?: string | null | undefined;
4099
+ measurementLength?: number | null | undefined;
4100
+ measurementWidth?: number | null | undefined;
4101
+ packageSizeId?: number | null | undefined;
4102
+ photoUrls?: string[] | null | undefined;
4103
+ size?: string | null | undefined;
4104
+ sizeId?: number | null | undefined;
4105
+ statusId?: number | null | undefined;
4106
+ title?: string | null | undefined;
4107
+ isDraft?: boolean | null | undefined;
4108
+ isArchived?: boolean | null | undefined;
4109
+ availableQuantity?: number | null | undefined;
4110
+ material?: number[] | null | undefined;
4111
+ manufacturerLabelling?: string | null | undefined;
4112
+ labels?: string[] | null | undefined;
4113
+ } | null | undefined;
4114
+ targetDate?: Date | null | undefined;
4115
+ };
3432
4116
  } | null | undefined;
3433
4117
  accountId?: string | null | undefined;
3434
4118
  requestId?: string | null | undefined;
@@ -3623,6 +4307,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
3623
4307
  error?: string | null | undefined;
3624
4308
  }[] | null | undefined;
3625
4309
  };
4310
+ } | {
4311
+ type: "UPDATED";
4312
+ data: {
4313
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4314
+ };
4315
+ } | {
4316
+ type: "UPDATING";
4317
+ data: {
4318
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4319
+ post?: {
4320
+ status?: string | null | undefined;
4321
+ price?: number | null | undefined;
4322
+ currency?: string | null | undefined;
4323
+ brand?: string | null | undefined;
4324
+ catalog?: string | null | undefined;
4325
+ catalogId?: number | null | undefined;
4326
+ colors?: string[] | null | undefined;
4327
+ colorIds?: number[] | null | undefined;
4328
+ description?: string | null | undefined;
4329
+ measurementLength?: number | null | undefined;
4330
+ measurementWidth?: number | null | undefined;
4331
+ packageSizeId?: number | null | undefined;
4332
+ photoUrls?: string[] | null | undefined;
4333
+ size?: string | null | undefined;
4334
+ sizeId?: number | null | undefined;
4335
+ statusId?: number | null | undefined;
4336
+ title?: string | null | undefined;
4337
+ isDraft?: boolean | null | undefined;
4338
+ isArchived?: boolean | null | undefined;
4339
+ availableQuantity?: number | null | undefined;
4340
+ material?: number[] | null | undefined;
4341
+ manufacturerLabelling?: string | null | undefined;
4342
+ labels?: string[] | null | undefined;
4343
+ } | null | undefined;
4344
+ targetDate?: Date | null | undefined;
4345
+ };
3626
4346
  } | null | undefined;
3627
4347
  accountId?: string | null | undefined;
3628
4348
  requestId?: string | null | undefined;
@@ -3904,6 +4624,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
3904
4624
  error?: string | null | undefined;
3905
4625
  }[] | null | undefined;
3906
4626
  };
4627
+ } | {
4628
+ type: "UPDATED";
4629
+ data: {
4630
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4631
+ };
4632
+ } | {
4633
+ type: "UPDATING";
4634
+ data: {
4635
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4636
+ post?: {
4637
+ status?: string | null | undefined;
4638
+ price?: number | null | undefined;
4639
+ currency?: string | null | undefined;
4640
+ brand?: string | null | undefined;
4641
+ catalog?: string | null | undefined;
4642
+ catalogId?: number | null | undefined;
4643
+ colors?: string[] | null | undefined;
4644
+ colorIds?: number[] | null | undefined;
4645
+ description?: string | null | undefined;
4646
+ measurementLength?: number | null | undefined;
4647
+ measurementWidth?: number | null | undefined;
4648
+ packageSizeId?: number | null | undefined;
4649
+ photoUrls?: string[] | null | undefined;
4650
+ size?: string | null | undefined;
4651
+ sizeId?: number | null | undefined;
4652
+ statusId?: number | null | undefined;
4653
+ title?: string | null | undefined;
4654
+ isDraft?: boolean | null | undefined;
4655
+ isArchived?: boolean | null | undefined;
4656
+ availableQuantity?: number | null | undefined;
4657
+ material?: number[] | null | undefined;
4658
+ manufacturerLabelling?: string | null | undefined;
4659
+ labels?: string[] | null | undefined;
4660
+ } | null | undefined;
4661
+ targetDate?: Date | null | undefined;
4662
+ };
3907
4663
  } | null | undefined;
3908
4664
  accountId?: string | null | undefined;
3909
4665
  requestId?: string | null | undefined;
@@ -4098,6 +4854,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
4098
4854
  error?: string | null | undefined;
4099
4855
  }[] | null | undefined;
4100
4856
  };
4857
+ } | {
4858
+ type: "UPDATED";
4859
+ data: {
4860
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4861
+ };
4862
+ } | {
4863
+ type: "UPDATING";
4864
+ data: {
4865
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
4866
+ post?: {
4867
+ status?: string | null | undefined;
4868
+ price?: number | null | undefined;
4869
+ currency?: string | null | undefined;
4870
+ brand?: string | null | undefined;
4871
+ catalog?: string | null | undefined;
4872
+ catalogId?: number | null | undefined;
4873
+ colors?: string[] | null | undefined;
4874
+ colorIds?: number[] | null | undefined;
4875
+ description?: string | null | undefined;
4876
+ measurementLength?: number | null | undefined;
4877
+ measurementWidth?: number | null | undefined;
4878
+ packageSizeId?: number | null | undefined;
4879
+ photoUrls?: string[] | null | undefined;
4880
+ size?: string | null | undefined;
4881
+ sizeId?: number | null | undefined;
4882
+ statusId?: number | null | undefined;
4883
+ title?: string | null | undefined;
4884
+ isDraft?: boolean | null | undefined;
4885
+ isArchived?: boolean | null | undefined;
4886
+ availableQuantity?: number | null | undefined;
4887
+ material?: number[] | null | undefined;
4888
+ manufacturerLabelling?: string | null | undefined;
4889
+ labels?: string[] | null | undefined;
4890
+ } | null | undefined;
4891
+ targetDate?: Date | null | undefined;
4892
+ };
4101
4893
  } | null | undefined;
4102
4894
  accountId?: string | null | undefined;
4103
4895
  requestId?: string | null | undefined;
@@ -4363,6 +5155,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
4363
5155
  error?: string | null | undefined;
4364
5156
  }[] | null | undefined;
4365
5157
  };
5158
+ } | {
5159
+ type: "UPDATED";
5160
+ data: {
5161
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5162
+ };
5163
+ } | {
5164
+ type: "UPDATING";
5165
+ data: {
5166
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5167
+ post?: {
5168
+ status?: string | null | undefined;
5169
+ price?: number | null | undefined;
5170
+ currency?: string | null | undefined;
5171
+ brand?: string | null | undefined;
5172
+ catalog?: string | null | undefined;
5173
+ catalogId?: number | null | undefined;
5174
+ colors?: string[] | null | undefined;
5175
+ colorIds?: number[] | null | undefined;
5176
+ description?: string | null | undefined;
5177
+ measurementLength?: number | null | undefined;
5178
+ measurementWidth?: number | null | undefined;
5179
+ packageSizeId?: number | null | undefined;
5180
+ photoUrls?: string[] | null | undefined;
5181
+ size?: string | null | undefined;
5182
+ sizeId?: number | null | undefined;
5183
+ statusId?: number | null | undefined;
5184
+ title?: string | null | undefined;
5185
+ isDraft?: boolean | null | undefined;
5186
+ isArchived?: boolean | null | undefined;
5187
+ availableQuantity?: number | null | undefined;
5188
+ material?: number[] | null | undefined;
5189
+ manufacturerLabelling?: string | null | undefined;
5190
+ labels?: string[] | null | undefined;
5191
+ } | null | undefined;
5192
+ targetDate?: Date | null | undefined;
5193
+ };
4366
5194
  } | null | undefined;
4367
5195
  accountId?: string | null | undefined;
4368
5196
  requestId?: string | null | undefined;
@@ -4557,6 +5385,42 @@ export declare const CreatedItemsSchema: z.ZodObject<{
4557
5385
  error?: string | null | undefined;
4558
5386
  }[] | null | undefined;
4559
5387
  };
5388
+ } | {
5389
+ type: "UPDATED";
5390
+ data: {
5391
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5392
+ };
5393
+ } | {
5394
+ type: "UPDATING";
5395
+ data: {
5396
+ platform: "ETSY" | "SHOPIFY" | "VINTED";
5397
+ post?: {
5398
+ status?: string | null | undefined;
5399
+ price?: number | null | undefined;
5400
+ currency?: string | null | undefined;
5401
+ brand?: string | null | undefined;
5402
+ catalog?: string | null | undefined;
5403
+ catalogId?: number | null | undefined;
5404
+ colors?: string[] | null | undefined;
5405
+ colorIds?: number[] | null | undefined;
5406
+ description?: string | null | undefined;
5407
+ measurementLength?: number | null | undefined;
5408
+ measurementWidth?: number | null | undefined;
5409
+ packageSizeId?: number | null | undefined;
5410
+ photoUrls?: string[] | null | undefined;
5411
+ size?: string | null | undefined;
5412
+ sizeId?: number | null | undefined;
5413
+ statusId?: number | null | undefined;
5414
+ title?: string | null | undefined;
5415
+ isDraft?: boolean | null | undefined;
5416
+ isArchived?: boolean | null | undefined;
5417
+ availableQuantity?: number | null | undefined;
5418
+ material?: number[] | null | undefined;
5419
+ manufacturerLabelling?: string | null | undefined;
5420
+ labels?: string[] | null | undefined;
5421
+ } | null | undefined;
5422
+ targetDate?: Date | null | undefined;
5423
+ };
4560
5424
  } | null | undefined;
4561
5425
  accountId?: string | null | undefined;
4562
5426
  requestId?: string | null | undefined;