controlresell 2.17.2 → 2.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/com/controlresell/api/responses/items/ItemsWithFilters.d.ts +11 -11
- package/src/com/controlresell/api/responses/items/ListedItem.d.ts +9 -9
- package/src/com/controlresell/models/items/CreatedItems.d.ts +22 -22
- package/src/com/controlresell/models/items/Item.d.ts +18 -18
- package/src/com/controlresell/models/items/ItemUpdate.d.ts +11 -11
- package/src/com/controlresell/models/items/UpdatedItem.d.ts +22 -22
- package/src/com/controlresell/models/items/history/CreateItemHistoryPayload.d.ts +7 -7
- package/src/com/controlresell/models/items/history/ItemHistory.d.ts +7 -7
- package/src/com/controlresell/models/items/history/ItemHistoryDecodedPayload.d.ts +10 -10
- package/src/com/controlresell/models/items/history/data/ItemHistoryDeletedPayload.d.ts +3 -3
- package/src/com/controlresell/models/items/history/data/ItemHistoryDeletedPayload.js +1 -1
- package/src/com/controlresell/models/items/history/data/ItemHistoryDeletedPayload.js.map +1 -1
- package/src/com/controlresell/models/items/history/data/ItemHistoryDeletedPayload.ts +1 -1
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +13 -13
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +11 -11
- package/src/com/controlresell/models/transactions/items/TransactionWithItems.d.ts +11 -11
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +22 -22
package/package.json
CHANGED
|
@@ -237,22 +237,22 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
237
237
|
};
|
|
238
238
|
}>, z.ZodObject<{
|
|
239
239
|
data: z.ZodObject<{
|
|
240
|
-
sourceConversationId: z.ZodString
|
|
240
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
|
-
sourceConversationId
|
|
242
|
+
sourceConversationId?: string | null | undefined;
|
|
243
243
|
}, {
|
|
244
|
-
sourceConversationId
|
|
244
|
+
sourceConversationId?: string | null | undefined;
|
|
245
245
|
}>;
|
|
246
246
|
type: z.ZodLiteral<"DELETED">;
|
|
247
247
|
}, "strip", z.ZodTypeAny, {
|
|
248
248
|
type: "DELETED";
|
|
249
249
|
data: {
|
|
250
|
-
sourceConversationId
|
|
250
|
+
sourceConversationId?: string | null | undefined;
|
|
251
251
|
};
|
|
252
252
|
}, {
|
|
253
253
|
type: "DELETED";
|
|
254
254
|
data: {
|
|
255
|
-
sourceConversationId
|
|
255
|
+
sourceConversationId?: string | null | undefined;
|
|
256
256
|
};
|
|
257
257
|
}>, z.ZodObject<{
|
|
258
258
|
data: z.ZodObject<{
|
|
@@ -1387,7 +1387,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
1387
1387
|
} | {
|
|
1388
1388
|
type: "DELETED";
|
|
1389
1389
|
data: {
|
|
1390
|
-
sourceConversationId
|
|
1390
|
+
sourceConversationId?: string | null | undefined;
|
|
1391
1391
|
};
|
|
1392
1392
|
} | {
|
|
1393
1393
|
type: "DELIVERED";
|
|
@@ -1605,7 +1605,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
1605
1605
|
} | {
|
|
1606
1606
|
type: "DELETED";
|
|
1607
1607
|
data: {
|
|
1608
|
-
sourceConversationId
|
|
1608
|
+
sourceConversationId?: string | null | undefined;
|
|
1609
1609
|
};
|
|
1610
1610
|
} | {
|
|
1611
1611
|
type: "DELIVERED";
|
|
@@ -2119,7 +2119,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2119
2119
|
} | {
|
|
2120
2120
|
type: "DELETED";
|
|
2121
2121
|
data: {
|
|
2122
|
-
sourceConversationId
|
|
2122
|
+
sourceConversationId?: string | null | undefined;
|
|
2123
2123
|
};
|
|
2124
2124
|
} | {
|
|
2125
2125
|
type: "DELIVERED";
|
|
@@ -2450,7 +2450,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2450
2450
|
} | {
|
|
2451
2451
|
type: "DELETED";
|
|
2452
2452
|
data: {
|
|
2453
|
-
sourceConversationId
|
|
2453
|
+
sourceConversationId?: string | null | undefined;
|
|
2454
2454
|
};
|
|
2455
2455
|
} | {
|
|
2456
2456
|
type: "DELIVERED";
|
|
@@ -2786,7 +2786,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2786
2786
|
} | {
|
|
2787
2787
|
type: "DELETED";
|
|
2788
2788
|
data: {
|
|
2789
|
-
sourceConversationId
|
|
2789
|
+
sourceConversationId?: string | null | undefined;
|
|
2790
2790
|
};
|
|
2791
2791
|
} | {
|
|
2792
2792
|
type: "DELIVERED";
|
|
@@ -3123,7 +3123,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
3123
3123
|
} | {
|
|
3124
3124
|
type: "DELETED";
|
|
3125
3125
|
data: {
|
|
3126
|
-
sourceConversationId
|
|
3126
|
+
sourceConversationId?: string | null | undefined;
|
|
3127
3127
|
};
|
|
3128
3128
|
} | {
|
|
3129
3129
|
type: "DELIVERED";
|
|
@@ -234,22 +234,22 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
234
234
|
};
|
|
235
235
|
}>, z.ZodObject<{
|
|
236
236
|
data: z.ZodObject<{
|
|
237
|
-
sourceConversationId: z.ZodString
|
|
237
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
238
238
|
}, "strip", z.ZodTypeAny, {
|
|
239
|
-
sourceConversationId
|
|
239
|
+
sourceConversationId?: string | null | undefined;
|
|
240
240
|
}, {
|
|
241
|
-
sourceConversationId
|
|
241
|
+
sourceConversationId?: string | null | undefined;
|
|
242
242
|
}>;
|
|
243
243
|
type: z.ZodLiteral<"DELETED">;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
245
|
type: "DELETED";
|
|
246
246
|
data: {
|
|
247
|
-
sourceConversationId
|
|
247
|
+
sourceConversationId?: string | null | undefined;
|
|
248
248
|
};
|
|
249
249
|
}, {
|
|
250
250
|
type: "DELETED";
|
|
251
251
|
data: {
|
|
252
|
-
sourceConversationId
|
|
252
|
+
sourceConversationId?: string | null | undefined;
|
|
253
253
|
};
|
|
254
254
|
}>, z.ZodObject<{
|
|
255
255
|
data: z.ZodObject<{
|
|
@@ -1384,7 +1384,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
1384
1384
|
} | {
|
|
1385
1385
|
type: "DELETED";
|
|
1386
1386
|
data: {
|
|
1387
|
-
sourceConversationId
|
|
1387
|
+
sourceConversationId?: string | null | undefined;
|
|
1388
1388
|
};
|
|
1389
1389
|
} | {
|
|
1390
1390
|
type: "DELIVERED";
|
|
@@ -1602,7 +1602,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
1602
1602
|
} | {
|
|
1603
1603
|
type: "DELETED";
|
|
1604
1604
|
data: {
|
|
1605
|
-
sourceConversationId
|
|
1605
|
+
sourceConversationId?: string | null | undefined;
|
|
1606
1606
|
};
|
|
1607
1607
|
} | {
|
|
1608
1608
|
type: "DELIVERED";
|
|
@@ -2116,7 +2116,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2116
2116
|
} | {
|
|
2117
2117
|
type: "DELETED";
|
|
2118
2118
|
data: {
|
|
2119
|
-
sourceConversationId
|
|
2119
|
+
sourceConversationId?: string | null | undefined;
|
|
2120
2120
|
};
|
|
2121
2121
|
} | {
|
|
2122
2122
|
type: "DELIVERED";
|
|
@@ -2447,7 +2447,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2447
2447
|
} | {
|
|
2448
2448
|
type: "DELETED";
|
|
2449
2449
|
data: {
|
|
2450
|
-
sourceConversationId
|
|
2450
|
+
sourceConversationId?: string | null | undefined;
|
|
2451
2451
|
};
|
|
2452
2452
|
} | {
|
|
2453
2453
|
type: "DELIVERED";
|
|
@@ -260,22 +260,22 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
260
260
|
};
|
|
261
261
|
}>, z.ZodObject<{
|
|
262
262
|
data: z.ZodObject<{
|
|
263
|
-
sourceConversationId: z.ZodString
|
|
263
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
|
265
|
-
sourceConversationId
|
|
265
|
+
sourceConversationId?: string | null | undefined;
|
|
266
266
|
}, {
|
|
267
|
-
sourceConversationId
|
|
267
|
+
sourceConversationId?: string | null | undefined;
|
|
268
268
|
}>;
|
|
269
269
|
type: z.ZodLiteral<"DELETED">;
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
271
|
type: "DELETED";
|
|
272
272
|
data: {
|
|
273
|
-
sourceConversationId
|
|
273
|
+
sourceConversationId?: string | null | undefined;
|
|
274
274
|
};
|
|
275
275
|
}, {
|
|
276
276
|
type: "DELETED";
|
|
277
277
|
data: {
|
|
278
|
-
sourceConversationId
|
|
278
|
+
sourceConversationId?: string | null | undefined;
|
|
279
279
|
};
|
|
280
280
|
}>, z.ZodObject<{
|
|
281
281
|
data: z.ZodObject<{
|
|
@@ -1410,7 +1410,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
1410
1410
|
} | {
|
|
1411
1411
|
type: "DELETED";
|
|
1412
1412
|
data: {
|
|
1413
|
-
sourceConversationId
|
|
1413
|
+
sourceConversationId?: string | null | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
} | {
|
|
1416
1416
|
type: "DELIVERED";
|
|
@@ -1628,7 +1628,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
1628
1628
|
} | {
|
|
1629
1629
|
type: "DELETED";
|
|
1630
1630
|
data: {
|
|
1631
|
-
sourceConversationId
|
|
1631
|
+
sourceConversationId?: string | null | undefined;
|
|
1632
1632
|
};
|
|
1633
1633
|
} | {
|
|
1634
1634
|
type: "DELIVERED";
|
|
@@ -2055,22 +2055,22 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
2055
2055
|
};
|
|
2056
2056
|
}>, z.ZodObject<{
|
|
2057
2057
|
data: z.ZodObject<{
|
|
2058
|
-
sourceConversationId: z.ZodString
|
|
2058
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2059
2059
|
}, "strip", z.ZodTypeAny, {
|
|
2060
|
-
sourceConversationId
|
|
2060
|
+
sourceConversationId?: string | null | undefined;
|
|
2061
2061
|
}, {
|
|
2062
|
-
sourceConversationId
|
|
2062
|
+
sourceConversationId?: string | null | undefined;
|
|
2063
2063
|
}>;
|
|
2064
2064
|
type: z.ZodLiteral<"DELETED">;
|
|
2065
2065
|
}, "strip", z.ZodTypeAny, {
|
|
2066
2066
|
type: "DELETED";
|
|
2067
2067
|
data: {
|
|
2068
|
-
sourceConversationId
|
|
2068
|
+
sourceConversationId?: string | null | undefined;
|
|
2069
2069
|
};
|
|
2070
2070
|
}, {
|
|
2071
2071
|
type: "DELETED";
|
|
2072
2072
|
data: {
|
|
2073
|
-
sourceConversationId
|
|
2073
|
+
sourceConversationId?: string | null | undefined;
|
|
2074
2074
|
};
|
|
2075
2075
|
}>, z.ZodObject<{
|
|
2076
2076
|
data: z.ZodObject<{
|
|
@@ -3205,7 +3205,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
3205
3205
|
} | {
|
|
3206
3206
|
type: "DELETED";
|
|
3207
3207
|
data: {
|
|
3208
|
-
sourceConversationId
|
|
3208
|
+
sourceConversationId?: string | null | undefined;
|
|
3209
3209
|
};
|
|
3210
3210
|
} | {
|
|
3211
3211
|
type: "DELIVERED";
|
|
@@ -3423,7 +3423,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
3423
3423
|
} | {
|
|
3424
3424
|
type: "DELETED";
|
|
3425
3425
|
data: {
|
|
3426
|
-
sourceConversationId
|
|
3426
|
+
sourceConversationId?: string | null | undefined;
|
|
3427
3427
|
};
|
|
3428
3428
|
} | {
|
|
3429
3429
|
type: "DELIVERED";
|
|
@@ -3755,7 +3755,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
3755
3755
|
} | {
|
|
3756
3756
|
type: "DELETED";
|
|
3757
3757
|
data: {
|
|
3758
|
-
sourceConversationId
|
|
3758
|
+
sourceConversationId?: string | null | undefined;
|
|
3759
3759
|
};
|
|
3760
3760
|
} | {
|
|
3761
3761
|
type: "DELIVERED";
|
|
@@ -3983,7 +3983,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
3983
3983
|
} | {
|
|
3984
3984
|
type: "DELETED";
|
|
3985
3985
|
data: {
|
|
3986
|
-
sourceConversationId
|
|
3986
|
+
sourceConversationId?: string | null | undefined;
|
|
3987
3987
|
};
|
|
3988
3988
|
} | {
|
|
3989
3989
|
type: "DELIVERED";
|
|
@@ -4313,7 +4313,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
4313
4313
|
} | {
|
|
4314
4314
|
type: "DELETED";
|
|
4315
4315
|
data: {
|
|
4316
|
-
sourceConversationId
|
|
4316
|
+
sourceConversationId?: string | null | undefined;
|
|
4317
4317
|
};
|
|
4318
4318
|
} | {
|
|
4319
4319
|
type: "DELIVERED";
|
|
@@ -4541,7 +4541,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
4541
4541
|
} | {
|
|
4542
4542
|
type: "DELETED";
|
|
4543
4543
|
data: {
|
|
4544
|
-
sourceConversationId
|
|
4544
|
+
sourceConversationId?: string | null | undefined;
|
|
4545
4545
|
};
|
|
4546
4546
|
} | {
|
|
4547
4547
|
type: "DELIVERED";
|
|
@@ -4898,7 +4898,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
4898
4898
|
} | {
|
|
4899
4899
|
type: "DELETED";
|
|
4900
4900
|
data: {
|
|
4901
|
-
sourceConversationId
|
|
4901
|
+
sourceConversationId?: string | null | undefined;
|
|
4902
4902
|
};
|
|
4903
4903
|
} | {
|
|
4904
4904
|
type: "DELIVERED";
|
|
@@ -5126,7 +5126,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
5126
5126
|
} | {
|
|
5127
5127
|
type: "DELETED";
|
|
5128
5128
|
data: {
|
|
5129
|
-
sourceConversationId
|
|
5129
|
+
sourceConversationId?: string | null | undefined;
|
|
5130
5130
|
};
|
|
5131
5131
|
} | {
|
|
5132
5132
|
type: "DELIVERED";
|
|
@@ -5467,7 +5467,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
5467
5467
|
} | {
|
|
5468
5468
|
type: "DELETED";
|
|
5469
5469
|
data: {
|
|
5470
|
-
sourceConversationId
|
|
5470
|
+
sourceConversationId?: string | null | undefined;
|
|
5471
5471
|
};
|
|
5472
5472
|
} | {
|
|
5473
5473
|
type: "DELIVERED";
|
|
@@ -5695,7 +5695,7 @@ export declare const CreatedItemsSchema: z.ZodObject<{
|
|
|
5695
5695
|
} | {
|
|
5696
5696
|
type: "DELETED";
|
|
5697
5697
|
data: {
|
|
5698
|
-
sourceConversationId
|
|
5698
|
+
sourceConversationId?: string | null | undefined;
|
|
5699
5699
|
};
|
|
5700
5700
|
} | {
|
|
5701
5701
|
type: "DELIVERED";
|
|
@@ -259,22 +259,22 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
259
259
|
};
|
|
260
260
|
}>, z.ZodObject<{
|
|
261
261
|
data: z.ZodObject<{
|
|
262
|
-
sourceConversationId: z.ZodString
|
|
262
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
sourceConversationId
|
|
264
|
+
sourceConversationId?: string | null | undefined;
|
|
265
265
|
}, {
|
|
266
|
-
sourceConversationId
|
|
266
|
+
sourceConversationId?: string | null | undefined;
|
|
267
267
|
}>;
|
|
268
268
|
type: z.ZodLiteral<"DELETED">;
|
|
269
269
|
}, "strip", z.ZodTypeAny, {
|
|
270
270
|
type: "DELETED";
|
|
271
271
|
data: {
|
|
272
|
-
sourceConversationId
|
|
272
|
+
sourceConversationId?: string | null | undefined;
|
|
273
273
|
};
|
|
274
274
|
}, {
|
|
275
275
|
type: "DELETED";
|
|
276
276
|
data: {
|
|
277
|
-
sourceConversationId
|
|
277
|
+
sourceConversationId?: string | null | undefined;
|
|
278
278
|
};
|
|
279
279
|
}>, z.ZodObject<{
|
|
280
280
|
data: z.ZodObject<{
|
|
@@ -1409,7 +1409,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
1409
1409
|
} | {
|
|
1410
1410
|
type: "DELETED";
|
|
1411
1411
|
data: {
|
|
1412
|
-
sourceConversationId
|
|
1412
|
+
sourceConversationId?: string | null | undefined;
|
|
1413
1413
|
};
|
|
1414
1414
|
} | {
|
|
1415
1415
|
type: "DELIVERED";
|
|
@@ -1627,7 +1627,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
1627
1627
|
} | {
|
|
1628
1628
|
type: "DELETED";
|
|
1629
1629
|
data: {
|
|
1630
|
-
sourceConversationId
|
|
1630
|
+
sourceConversationId?: string | null | undefined;
|
|
1631
1631
|
};
|
|
1632
1632
|
} | {
|
|
1633
1633
|
type: "DELIVERED";
|
|
@@ -2054,22 +2054,22 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
2054
2054
|
};
|
|
2055
2055
|
}>, z.ZodObject<{
|
|
2056
2056
|
data: z.ZodObject<{
|
|
2057
|
-
sourceConversationId: z.ZodString
|
|
2057
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2058
2058
|
}, "strip", z.ZodTypeAny, {
|
|
2059
|
-
sourceConversationId
|
|
2059
|
+
sourceConversationId?: string | null | undefined;
|
|
2060
2060
|
}, {
|
|
2061
|
-
sourceConversationId
|
|
2061
|
+
sourceConversationId?: string | null | undefined;
|
|
2062
2062
|
}>;
|
|
2063
2063
|
type: z.ZodLiteral<"DELETED">;
|
|
2064
2064
|
}, "strip", z.ZodTypeAny, {
|
|
2065
2065
|
type: "DELETED";
|
|
2066
2066
|
data: {
|
|
2067
|
-
sourceConversationId
|
|
2067
|
+
sourceConversationId?: string | null | undefined;
|
|
2068
2068
|
};
|
|
2069
2069
|
}, {
|
|
2070
2070
|
type: "DELETED";
|
|
2071
2071
|
data: {
|
|
2072
|
-
sourceConversationId
|
|
2072
|
+
sourceConversationId?: string | null | undefined;
|
|
2073
2073
|
};
|
|
2074
2074
|
}>, z.ZodObject<{
|
|
2075
2075
|
data: z.ZodObject<{
|
|
@@ -3204,7 +3204,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
3204
3204
|
} | {
|
|
3205
3205
|
type: "DELETED";
|
|
3206
3206
|
data: {
|
|
3207
|
-
sourceConversationId
|
|
3207
|
+
sourceConversationId?: string | null | undefined;
|
|
3208
3208
|
};
|
|
3209
3209
|
} | {
|
|
3210
3210
|
type: "DELIVERED";
|
|
@@ -3422,7 +3422,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
3422
3422
|
} | {
|
|
3423
3423
|
type: "DELETED";
|
|
3424
3424
|
data: {
|
|
3425
|
-
sourceConversationId
|
|
3425
|
+
sourceConversationId?: string | null | undefined;
|
|
3426
3426
|
};
|
|
3427
3427
|
} | {
|
|
3428
3428
|
type: "DELIVERED";
|
|
@@ -3754,7 +3754,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
3754
3754
|
} | {
|
|
3755
3755
|
type: "DELETED";
|
|
3756
3756
|
data: {
|
|
3757
|
-
sourceConversationId
|
|
3757
|
+
sourceConversationId?: string | null | undefined;
|
|
3758
3758
|
};
|
|
3759
3759
|
} | {
|
|
3760
3760
|
type: "DELIVERED";
|
|
@@ -3982,7 +3982,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
3982
3982
|
} | {
|
|
3983
3983
|
type: "DELETED";
|
|
3984
3984
|
data: {
|
|
3985
|
-
sourceConversationId
|
|
3985
|
+
sourceConversationId?: string | null | undefined;
|
|
3986
3986
|
};
|
|
3987
3987
|
} | {
|
|
3988
3988
|
type: "DELIVERED";
|
|
@@ -4312,7 +4312,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
4312
4312
|
} | {
|
|
4313
4313
|
type: "DELETED";
|
|
4314
4314
|
data: {
|
|
4315
|
-
sourceConversationId
|
|
4315
|
+
sourceConversationId?: string | null | undefined;
|
|
4316
4316
|
};
|
|
4317
4317
|
} | {
|
|
4318
4318
|
type: "DELIVERED";
|
|
@@ -4540,7 +4540,7 @@ export declare const ItemSchema: z.ZodObject<{
|
|
|
4540
4540
|
} | {
|
|
4541
4541
|
type: "DELETED";
|
|
4542
4542
|
data: {
|
|
4543
|
-
sourceConversationId
|
|
4543
|
+
sourceConversationId?: string | null | undefined;
|
|
4544
4544
|
};
|
|
4545
4545
|
} | {
|
|
4546
4546
|
type: "DELIVERED";
|
|
@@ -236,22 +236,22 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
236
236
|
};
|
|
237
237
|
}>, z.ZodObject<{
|
|
238
238
|
data: z.ZodObject<{
|
|
239
|
-
sourceConversationId: z.ZodString
|
|
239
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
240
240
|
}, "strip", z.ZodTypeAny, {
|
|
241
|
-
sourceConversationId
|
|
241
|
+
sourceConversationId?: string | null | undefined;
|
|
242
242
|
}, {
|
|
243
|
-
sourceConversationId
|
|
243
|
+
sourceConversationId?: string | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
type: z.ZodLiteral<"DELETED">;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
247
|
type: "DELETED";
|
|
248
248
|
data: {
|
|
249
|
-
sourceConversationId
|
|
249
|
+
sourceConversationId?: string | null | undefined;
|
|
250
250
|
};
|
|
251
251
|
}, {
|
|
252
252
|
type: "DELETED";
|
|
253
253
|
data: {
|
|
254
|
-
sourceConversationId
|
|
254
|
+
sourceConversationId?: string | null | undefined;
|
|
255
255
|
};
|
|
256
256
|
}>, z.ZodObject<{
|
|
257
257
|
data: z.ZodObject<{
|
|
@@ -1386,7 +1386,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
1386
1386
|
} | {
|
|
1387
1387
|
type: "DELETED";
|
|
1388
1388
|
data: {
|
|
1389
|
-
sourceConversationId
|
|
1389
|
+
sourceConversationId?: string | null | undefined;
|
|
1390
1390
|
};
|
|
1391
1391
|
} | {
|
|
1392
1392
|
type: "DELIVERED";
|
|
@@ -1604,7 +1604,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
1604
1604
|
} | {
|
|
1605
1605
|
type: "DELETED";
|
|
1606
1606
|
data: {
|
|
1607
|
-
sourceConversationId
|
|
1607
|
+
sourceConversationId?: string | null | undefined;
|
|
1608
1608
|
};
|
|
1609
1609
|
} | {
|
|
1610
1610
|
type: "DELIVERED";
|
|
@@ -2118,7 +2118,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
2118
2118
|
} | {
|
|
2119
2119
|
type: "DELETED";
|
|
2120
2120
|
data: {
|
|
2121
|
-
sourceConversationId
|
|
2121
|
+
sourceConversationId?: string | null | undefined;
|
|
2122
2122
|
};
|
|
2123
2123
|
} | {
|
|
2124
2124
|
type: "DELIVERED";
|
|
@@ -2449,7 +2449,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
2449
2449
|
} | {
|
|
2450
2450
|
type: "DELETED";
|
|
2451
2451
|
data: {
|
|
2452
|
-
sourceConversationId
|
|
2452
|
+
sourceConversationId?: string | null | undefined;
|
|
2453
2453
|
};
|
|
2454
2454
|
} | {
|
|
2455
2455
|
type: "DELIVERED";
|
|
@@ -2784,7 +2784,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
2784
2784
|
} | {
|
|
2785
2785
|
type: "DELETED";
|
|
2786
2786
|
data: {
|
|
2787
|
-
sourceConversationId
|
|
2787
|
+
sourceConversationId?: string | null | undefined;
|
|
2788
2788
|
};
|
|
2789
2789
|
} | {
|
|
2790
2790
|
type: "DELIVERED";
|
|
@@ -3119,7 +3119,7 @@ export declare const ItemUpdateSchema: z.ZodObject<{
|
|
|
3119
3119
|
} | {
|
|
3120
3120
|
type: "DELETED";
|
|
3121
3121
|
data: {
|
|
3122
|
-
sourceConversationId
|
|
3122
|
+
sourceConversationId?: string | null | undefined;
|
|
3123
3123
|
};
|
|
3124
3124
|
} | {
|
|
3125
3125
|
type: "DELIVERED";
|
|
@@ -260,22 +260,22 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
260
260
|
};
|
|
261
261
|
}>, z.ZodObject<{
|
|
262
262
|
data: z.ZodObject<{
|
|
263
|
-
sourceConversationId: z.ZodString
|
|
263
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
|
265
|
-
sourceConversationId
|
|
265
|
+
sourceConversationId?: string | null | undefined;
|
|
266
266
|
}, {
|
|
267
|
-
sourceConversationId
|
|
267
|
+
sourceConversationId?: string | null | undefined;
|
|
268
268
|
}>;
|
|
269
269
|
type: z.ZodLiteral<"DELETED">;
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
271
|
type: "DELETED";
|
|
272
272
|
data: {
|
|
273
|
-
sourceConversationId
|
|
273
|
+
sourceConversationId?: string | null | undefined;
|
|
274
274
|
};
|
|
275
275
|
}, {
|
|
276
276
|
type: "DELETED";
|
|
277
277
|
data: {
|
|
278
|
-
sourceConversationId
|
|
278
|
+
sourceConversationId?: string | null | undefined;
|
|
279
279
|
};
|
|
280
280
|
}>, z.ZodObject<{
|
|
281
281
|
data: z.ZodObject<{
|
|
@@ -1410,7 +1410,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
1410
1410
|
} | {
|
|
1411
1411
|
type: "DELETED";
|
|
1412
1412
|
data: {
|
|
1413
|
-
sourceConversationId
|
|
1413
|
+
sourceConversationId?: string | null | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
} | {
|
|
1416
1416
|
type: "DELIVERED";
|
|
@@ -1628,7 +1628,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
1628
1628
|
} | {
|
|
1629
1629
|
type: "DELETED";
|
|
1630
1630
|
data: {
|
|
1631
|
-
sourceConversationId
|
|
1631
|
+
sourceConversationId?: string | null | undefined;
|
|
1632
1632
|
};
|
|
1633
1633
|
} | {
|
|
1634
1634
|
type: "DELIVERED";
|
|
@@ -2055,22 +2055,22 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
2055
2055
|
};
|
|
2056
2056
|
}>, z.ZodObject<{
|
|
2057
2057
|
data: z.ZodObject<{
|
|
2058
|
-
sourceConversationId: z.ZodString
|
|
2058
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2059
2059
|
}, "strip", z.ZodTypeAny, {
|
|
2060
|
-
sourceConversationId
|
|
2060
|
+
sourceConversationId?: string | null | undefined;
|
|
2061
2061
|
}, {
|
|
2062
|
-
sourceConversationId
|
|
2062
|
+
sourceConversationId?: string | null | undefined;
|
|
2063
2063
|
}>;
|
|
2064
2064
|
type: z.ZodLiteral<"DELETED">;
|
|
2065
2065
|
}, "strip", z.ZodTypeAny, {
|
|
2066
2066
|
type: "DELETED";
|
|
2067
2067
|
data: {
|
|
2068
|
-
sourceConversationId
|
|
2068
|
+
sourceConversationId?: string | null | undefined;
|
|
2069
2069
|
};
|
|
2070
2070
|
}, {
|
|
2071
2071
|
type: "DELETED";
|
|
2072
2072
|
data: {
|
|
2073
|
-
sourceConversationId
|
|
2073
|
+
sourceConversationId?: string | null | undefined;
|
|
2074
2074
|
};
|
|
2075
2075
|
}>, z.ZodObject<{
|
|
2076
2076
|
data: z.ZodObject<{
|
|
@@ -3205,7 +3205,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
3205
3205
|
} | {
|
|
3206
3206
|
type: "DELETED";
|
|
3207
3207
|
data: {
|
|
3208
|
-
sourceConversationId
|
|
3208
|
+
sourceConversationId?: string | null | undefined;
|
|
3209
3209
|
};
|
|
3210
3210
|
} | {
|
|
3211
3211
|
type: "DELIVERED";
|
|
@@ -3423,7 +3423,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
3423
3423
|
} | {
|
|
3424
3424
|
type: "DELETED";
|
|
3425
3425
|
data: {
|
|
3426
|
-
sourceConversationId
|
|
3426
|
+
sourceConversationId?: string | null | undefined;
|
|
3427
3427
|
};
|
|
3428
3428
|
} | {
|
|
3429
3429
|
type: "DELIVERED";
|
|
@@ -3755,7 +3755,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
3755
3755
|
} | {
|
|
3756
3756
|
type: "DELETED";
|
|
3757
3757
|
data: {
|
|
3758
|
-
sourceConversationId
|
|
3758
|
+
sourceConversationId?: string | null | undefined;
|
|
3759
3759
|
};
|
|
3760
3760
|
} | {
|
|
3761
3761
|
type: "DELIVERED";
|
|
@@ -3983,7 +3983,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
3983
3983
|
} | {
|
|
3984
3984
|
type: "DELETED";
|
|
3985
3985
|
data: {
|
|
3986
|
-
sourceConversationId
|
|
3986
|
+
sourceConversationId?: string | null | undefined;
|
|
3987
3987
|
};
|
|
3988
3988
|
} | {
|
|
3989
3989
|
type: "DELIVERED";
|
|
@@ -4313,7 +4313,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
4313
4313
|
} | {
|
|
4314
4314
|
type: "DELETED";
|
|
4315
4315
|
data: {
|
|
4316
|
-
sourceConversationId
|
|
4316
|
+
sourceConversationId?: string | null | undefined;
|
|
4317
4317
|
};
|
|
4318
4318
|
} | {
|
|
4319
4319
|
type: "DELIVERED";
|
|
@@ -4541,7 +4541,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
4541
4541
|
} | {
|
|
4542
4542
|
type: "DELETED";
|
|
4543
4543
|
data: {
|
|
4544
|
-
sourceConversationId
|
|
4544
|
+
sourceConversationId?: string | null | undefined;
|
|
4545
4545
|
};
|
|
4546
4546
|
} | {
|
|
4547
4547
|
type: "DELIVERED";
|
|
@@ -4898,7 +4898,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
4898
4898
|
} | {
|
|
4899
4899
|
type: "DELETED";
|
|
4900
4900
|
data: {
|
|
4901
|
-
sourceConversationId
|
|
4901
|
+
sourceConversationId?: string | null | undefined;
|
|
4902
4902
|
};
|
|
4903
4903
|
} | {
|
|
4904
4904
|
type: "DELIVERED";
|
|
@@ -5126,7 +5126,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
5126
5126
|
} | {
|
|
5127
5127
|
type: "DELETED";
|
|
5128
5128
|
data: {
|
|
5129
|
-
sourceConversationId
|
|
5129
|
+
sourceConversationId?: string | null | undefined;
|
|
5130
5130
|
};
|
|
5131
5131
|
} | {
|
|
5132
5132
|
type: "DELIVERED";
|
|
@@ -5467,7 +5467,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
5467
5467
|
} | {
|
|
5468
5468
|
type: "DELETED";
|
|
5469
5469
|
data: {
|
|
5470
|
-
sourceConversationId
|
|
5470
|
+
sourceConversationId?: string | null | undefined;
|
|
5471
5471
|
};
|
|
5472
5472
|
} | {
|
|
5473
5473
|
type: "DELIVERED";
|
|
@@ -5695,7 +5695,7 @@ export declare const UpdatedItemSchema: z.ZodObject<{
|
|
|
5695
5695
|
} | {
|
|
5696
5696
|
type: "DELETED";
|
|
5697
5697
|
data: {
|
|
5698
|
-
sourceConversationId
|
|
5698
|
+
sourceConversationId?: string | null | undefined;
|
|
5699
5699
|
};
|
|
5700
5700
|
} | {
|
|
5701
5701
|
type: "DELIVERED";
|
|
@@ -51,22 +51,22 @@ export declare const CreateItemHistoryPayloadSchema: z.ZodObject<{
|
|
|
51
51
|
};
|
|
52
52
|
}>, z.ZodObject<{
|
|
53
53
|
data: z.ZodObject<{
|
|
54
|
-
sourceConversationId: z.ZodString
|
|
54
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
sourceConversationId
|
|
56
|
+
sourceConversationId?: string | null | undefined;
|
|
57
57
|
}, {
|
|
58
|
-
sourceConversationId
|
|
58
|
+
sourceConversationId?: string | null | undefined;
|
|
59
59
|
}>;
|
|
60
60
|
type: z.ZodLiteral<"DELETED">;
|
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
|
62
62
|
type: "DELETED";
|
|
63
63
|
data: {
|
|
64
|
-
sourceConversationId
|
|
64
|
+
sourceConversationId?: string | null | undefined;
|
|
65
65
|
};
|
|
66
66
|
}, {
|
|
67
67
|
type: "DELETED";
|
|
68
68
|
data: {
|
|
69
|
-
sourceConversationId
|
|
69
|
+
sourceConversationId?: string | null | undefined;
|
|
70
70
|
};
|
|
71
71
|
}>, z.ZodObject<{
|
|
72
72
|
data: z.ZodObject<{
|
|
@@ -1196,7 +1196,7 @@ export declare const CreateItemHistoryPayloadSchema: z.ZodObject<{
|
|
|
1196
1196
|
} | {
|
|
1197
1197
|
type: "DELETED";
|
|
1198
1198
|
data: {
|
|
1199
|
-
sourceConversationId
|
|
1199
|
+
sourceConversationId?: string | null | undefined;
|
|
1200
1200
|
};
|
|
1201
1201
|
} | {
|
|
1202
1202
|
type: "DELIVERED";
|
|
@@ -1410,7 +1410,7 @@ export declare const CreateItemHistoryPayloadSchema: z.ZodObject<{
|
|
|
1410
1410
|
} | {
|
|
1411
1411
|
type: "DELETED";
|
|
1412
1412
|
data: {
|
|
1413
|
-
sourceConversationId
|
|
1413
|
+
sourceConversationId?: string | null | undefined;
|
|
1414
1414
|
};
|
|
1415
1415
|
} | {
|
|
1416
1416
|
type: "DELIVERED";
|
|
@@ -53,22 +53,22 @@ export declare const ItemHistorySchema: z.ZodObject<{
|
|
|
53
53
|
};
|
|
54
54
|
}>, z.ZodObject<{
|
|
55
55
|
data: z.ZodObject<{
|
|
56
|
-
sourceConversationId: z.ZodString
|
|
56
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
sourceConversationId
|
|
58
|
+
sourceConversationId?: string | null | undefined;
|
|
59
59
|
}, {
|
|
60
|
-
sourceConversationId
|
|
60
|
+
sourceConversationId?: string | null | undefined;
|
|
61
61
|
}>;
|
|
62
62
|
type: z.ZodLiteral<"DELETED">;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
type: "DELETED";
|
|
65
65
|
data: {
|
|
66
|
-
sourceConversationId
|
|
66
|
+
sourceConversationId?: string | null | undefined;
|
|
67
67
|
};
|
|
68
68
|
}, {
|
|
69
69
|
type: "DELETED";
|
|
70
70
|
data: {
|
|
71
|
-
sourceConversationId
|
|
71
|
+
sourceConversationId?: string | null | undefined;
|
|
72
72
|
};
|
|
73
73
|
}>, z.ZodObject<{
|
|
74
74
|
data: z.ZodObject<{
|
|
@@ -1203,7 +1203,7 @@ export declare const ItemHistorySchema: z.ZodObject<{
|
|
|
1203
1203
|
} | {
|
|
1204
1204
|
type: "DELETED";
|
|
1205
1205
|
data: {
|
|
1206
|
-
sourceConversationId
|
|
1206
|
+
sourceConversationId?: string | null | undefined;
|
|
1207
1207
|
};
|
|
1208
1208
|
} | {
|
|
1209
1209
|
type: "DELIVERED";
|
|
@@ -1421,7 +1421,7 @@ export declare const ItemHistorySchema: z.ZodObject<{
|
|
|
1421
1421
|
} | {
|
|
1422
1422
|
type: "DELETED";
|
|
1423
1423
|
data: {
|
|
1424
|
-
sourceConversationId
|
|
1424
|
+
sourceConversationId?: string | null | undefined;
|
|
1425
1425
|
};
|
|
1426
1426
|
} | {
|
|
1427
1427
|
type: "DELIVERED";
|
|
@@ -53,22 +53,22 @@ export declare const ItemHistoryDecodedPayloadBuyerPaidSchema: z.ZodObject<{
|
|
|
53
53
|
export type ItemHistoryDecodedPayloadBuyerPaid = z.infer<typeof ItemHistoryDecodedPayloadBuyerPaidSchema>;
|
|
54
54
|
export declare const ItemHistoryDecodedPayloadDeletedSchema: z.ZodObject<{
|
|
55
55
|
data: z.ZodObject<{
|
|
56
|
-
sourceConversationId: z.ZodString
|
|
56
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
sourceConversationId
|
|
58
|
+
sourceConversationId?: string | null | undefined;
|
|
59
59
|
}, {
|
|
60
|
-
sourceConversationId
|
|
60
|
+
sourceConversationId?: string | null | undefined;
|
|
61
61
|
}>;
|
|
62
62
|
type: z.ZodLiteral<"DELETED">;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
type: "DELETED";
|
|
65
65
|
data: {
|
|
66
|
-
sourceConversationId
|
|
66
|
+
sourceConversationId?: string | null | undefined;
|
|
67
67
|
};
|
|
68
68
|
}, {
|
|
69
69
|
type: "DELETED";
|
|
70
70
|
data: {
|
|
71
|
-
sourceConversationId
|
|
71
|
+
sourceConversationId?: string | null | undefined;
|
|
72
72
|
};
|
|
73
73
|
}>;
|
|
74
74
|
export type ItemHistoryDecodedPayloadDeleted = z.infer<typeof ItemHistoryDecodedPayloadDeletedSchema>;
|
|
@@ -1257,22 +1257,22 @@ export declare const ItemHistoryDecodedPayloadSchema: z.ZodDiscriminatedUnion<"t
|
|
|
1257
1257
|
};
|
|
1258
1258
|
}>, z.ZodObject<{
|
|
1259
1259
|
data: z.ZodObject<{
|
|
1260
|
-
sourceConversationId: z.ZodString
|
|
1260
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
|
-
sourceConversationId
|
|
1262
|
+
sourceConversationId?: string | null | undefined;
|
|
1263
1263
|
}, {
|
|
1264
|
-
sourceConversationId
|
|
1264
|
+
sourceConversationId?: string | null | undefined;
|
|
1265
1265
|
}>;
|
|
1266
1266
|
type: z.ZodLiteral<"DELETED">;
|
|
1267
1267
|
}, "strip", z.ZodTypeAny, {
|
|
1268
1268
|
type: "DELETED";
|
|
1269
1269
|
data: {
|
|
1270
|
-
sourceConversationId
|
|
1270
|
+
sourceConversationId?: string | null | undefined;
|
|
1271
1271
|
};
|
|
1272
1272
|
}, {
|
|
1273
1273
|
type: "DELETED";
|
|
1274
1274
|
data: {
|
|
1275
|
-
sourceConversationId
|
|
1275
|
+
sourceConversationId?: string | null | undefined;
|
|
1276
1276
|
};
|
|
1277
1277
|
}>, z.ZodObject<{
|
|
1278
1278
|
data: z.ZodObject<{
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const ItemHistoryDeletedPayloadSchema: z.ZodObject<{
|
|
3
|
-
sourceConversationId: z.ZodString
|
|
3
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
sourceConversationId
|
|
5
|
+
sourceConversationId?: string | null | undefined;
|
|
6
6
|
}, {
|
|
7
|
-
sourceConversationId
|
|
7
|
+
sourceConversationId?: string | null | undefined;
|
|
8
8
|
}>;
|
|
9
9
|
export type ItemHistoryDeletedPayload = z.infer<typeof ItemHistoryDeletedPayloadSchema>;
|
|
10
10
|
//# sourceMappingURL=ItemHistoryDeletedPayload.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemHistoryDeletedPayload.js","sourceRoot":"","sources":["ItemHistoryDeletedPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;
|
|
1
|
+
{"version":3,"file":"ItemHistoryDeletedPayload.js","sourceRoot":"","sources":["ItemHistoryDeletedPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,OAAO,EAAE;CACpD,CAAC,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {z} from "zod"
|
|
2
2
|
|
|
3
3
|
export const ItemHistoryDeletedPayloadSchema = z.object({
|
|
4
|
-
sourceConversationId: z.string().uuid()
|
|
4
|
+
sourceConversationId: z.string().uuid().nullish()
|
|
5
5
|
})
|
|
6
6
|
export type ItemHistoryDeletedPayload = z.infer<typeof ItemHistoryDeletedPayloadSchema>
|
|
@@ -1428,22 +1428,22 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1428
1428
|
};
|
|
1429
1429
|
}>, z.ZodObject<{
|
|
1430
1430
|
data: z.ZodObject<{
|
|
1431
|
-
sourceConversationId: z.ZodString
|
|
1431
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1432
1432
|
}, "strip", z.ZodTypeAny, {
|
|
1433
|
-
sourceConversationId
|
|
1433
|
+
sourceConversationId?: string | null | undefined;
|
|
1434
1434
|
}, {
|
|
1435
|
-
sourceConversationId
|
|
1435
|
+
sourceConversationId?: string | null | undefined;
|
|
1436
1436
|
}>;
|
|
1437
1437
|
type: z.ZodLiteral<"DELETED">;
|
|
1438
1438
|
}, "strip", z.ZodTypeAny, {
|
|
1439
1439
|
type: "DELETED";
|
|
1440
1440
|
data: {
|
|
1441
|
-
sourceConversationId
|
|
1441
|
+
sourceConversationId?: string | null | undefined;
|
|
1442
1442
|
};
|
|
1443
1443
|
}, {
|
|
1444
1444
|
type: "DELETED";
|
|
1445
1445
|
data: {
|
|
1446
|
-
sourceConversationId
|
|
1446
|
+
sourceConversationId?: string | null | undefined;
|
|
1447
1447
|
};
|
|
1448
1448
|
}>, z.ZodObject<{
|
|
1449
1449
|
data: z.ZodObject<{
|
|
@@ -2578,7 +2578,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2578
2578
|
} | {
|
|
2579
2579
|
type: "DELETED";
|
|
2580
2580
|
data: {
|
|
2581
|
-
sourceConversationId
|
|
2581
|
+
sourceConversationId?: string | null | undefined;
|
|
2582
2582
|
};
|
|
2583
2583
|
} | {
|
|
2584
2584
|
type: "DELIVERED";
|
|
@@ -2796,7 +2796,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2796
2796
|
} | {
|
|
2797
2797
|
type: "DELETED";
|
|
2798
2798
|
data: {
|
|
2799
|
-
sourceConversationId
|
|
2799
|
+
sourceConversationId?: string | null | undefined;
|
|
2800
2800
|
};
|
|
2801
2801
|
} | {
|
|
2802
2802
|
type: "DELIVERED";
|
|
@@ -3310,7 +3310,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
3310
3310
|
} | {
|
|
3311
3311
|
type: "DELETED";
|
|
3312
3312
|
data: {
|
|
3313
|
-
sourceConversationId
|
|
3313
|
+
sourceConversationId?: string | null | undefined;
|
|
3314
3314
|
};
|
|
3315
3315
|
} | {
|
|
3316
3316
|
type: "DELIVERED";
|
|
@@ -3641,7 +3641,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
3641
3641
|
} | {
|
|
3642
3642
|
type: "DELETED";
|
|
3643
3643
|
data: {
|
|
3644
|
-
sourceConversationId
|
|
3644
|
+
sourceConversationId?: string | null | undefined;
|
|
3645
3645
|
};
|
|
3646
3646
|
} | {
|
|
3647
3647
|
type: "DELIVERED";
|
|
@@ -3974,7 +3974,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
3974
3974
|
} | {
|
|
3975
3975
|
type: "DELETED";
|
|
3976
3976
|
data: {
|
|
3977
|
-
sourceConversationId
|
|
3977
|
+
sourceConversationId?: string | null | undefined;
|
|
3978
3978
|
};
|
|
3979
3979
|
} | {
|
|
3980
3980
|
type: "DELIVERED";
|
|
@@ -4489,7 +4489,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
4489
4489
|
} | {
|
|
4490
4490
|
type: "DELETED";
|
|
4491
4491
|
data: {
|
|
4492
|
-
sourceConversationId
|
|
4492
|
+
sourceConversationId?: string | null | undefined;
|
|
4493
4493
|
};
|
|
4494
4494
|
} | {
|
|
4495
4495
|
type: "DELIVERED";
|
|
@@ -5010,7 +5010,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
5010
5010
|
} | {
|
|
5011
5011
|
type: "DELETED";
|
|
5012
5012
|
data: {
|
|
5013
|
-
sourceConversationId
|
|
5013
|
+
sourceConversationId?: string | null | undefined;
|
|
5014
5014
|
};
|
|
5015
5015
|
} | {
|
|
5016
5016
|
type: "DELIVERED";
|
|
@@ -5531,7 +5531,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
5531
5531
|
} | {
|
|
5532
5532
|
type: "DELETED";
|
|
5533
5533
|
data: {
|
|
5534
|
-
sourceConversationId
|
|
5534
|
+
sourceConversationId?: string | null | undefined;
|
|
5535
5535
|
};
|
|
5536
5536
|
} | {
|
|
5537
5537
|
type: "DELIVERED";
|
|
@@ -1425,22 +1425,22 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1425
1425
|
};
|
|
1426
1426
|
}>, z.ZodObject<{
|
|
1427
1427
|
data: z.ZodObject<{
|
|
1428
|
-
sourceConversationId: z.ZodString
|
|
1428
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1429
1429
|
}, "strip", z.ZodTypeAny, {
|
|
1430
|
-
sourceConversationId
|
|
1430
|
+
sourceConversationId?: string | null | undefined;
|
|
1431
1431
|
}, {
|
|
1432
|
-
sourceConversationId
|
|
1432
|
+
sourceConversationId?: string | null | undefined;
|
|
1433
1433
|
}>;
|
|
1434
1434
|
type: z.ZodLiteral<"DELETED">;
|
|
1435
1435
|
}, "strip", z.ZodTypeAny, {
|
|
1436
1436
|
type: "DELETED";
|
|
1437
1437
|
data: {
|
|
1438
|
-
sourceConversationId
|
|
1438
|
+
sourceConversationId?: string | null | undefined;
|
|
1439
1439
|
};
|
|
1440
1440
|
}, {
|
|
1441
1441
|
type: "DELETED";
|
|
1442
1442
|
data: {
|
|
1443
|
-
sourceConversationId
|
|
1443
|
+
sourceConversationId?: string | null | undefined;
|
|
1444
1444
|
};
|
|
1445
1445
|
}>, z.ZodObject<{
|
|
1446
1446
|
data: z.ZodObject<{
|
|
@@ -2575,7 +2575,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2575
2575
|
} | {
|
|
2576
2576
|
type: "DELETED";
|
|
2577
2577
|
data: {
|
|
2578
|
-
sourceConversationId
|
|
2578
|
+
sourceConversationId?: string | null | undefined;
|
|
2579
2579
|
};
|
|
2580
2580
|
} | {
|
|
2581
2581
|
type: "DELIVERED";
|
|
@@ -2793,7 +2793,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2793
2793
|
} | {
|
|
2794
2794
|
type: "DELETED";
|
|
2795
2795
|
data: {
|
|
2796
|
-
sourceConversationId
|
|
2796
|
+
sourceConversationId?: string | null | undefined;
|
|
2797
2797
|
};
|
|
2798
2798
|
} | {
|
|
2799
2799
|
type: "DELIVERED";
|
|
@@ -3307,7 +3307,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3307
3307
|
} | {
|
|
3308
3308
|
type: "DELETED";
|
|
3309
3309
|
data: {
|
|
3310
|
-
sourceConversationId
|
|
3310
|
+
sourceConversationId?: string | null | undefined;
|
|
3311
3311
|
};
|
|
3312
3312
|
} | {
|
|
3313
3313
|
type: "DELIVERED";
|
|
@@ -3638,7 +3638,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3638
3638
|
} | {
|
|
3639
3639
|
type: "DELETED";
|
|
3640
3640
|
data: {
|
|
3641
|
-
sourceConversationId
|
|
3641
|
+
sourceConversationId?: string | null | undefined;
|
|
3642
3642
|
};
|
|
3643
3643
|
} | {
|
|
3644
3644
|
type: "DELIVERED";
|
|
@@ -3971,7 +3971,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3971
3971
|
} | {
|
|
3972
3972
|
type: "DELETED";
|
|
3973
3973
|
data: {
|
|
3974
|
-
sourceConversationId
|
|
3974
|
+
sourceConversationId?: string | null | undefined;
|
|
3975
3975
|
};
|
|
3976
3976
|
} | {
|
|
3977
3977
|
type: "DELIVERED";
|
|
@@ -4486,7 +4486,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
4486
4486
|
} | {
|
|
4487
4487
|
type: "DELETED";
|
|
4488
4488
|
data: {
|
|
4489
|
-
sourceConversationId
|
|
4489
|
+
sourceConversationId?: string | null | undefined;
|
|
4490
4490
|
};
|
|
4491
4491
|
} | {
|
|
4492
4492
|
type: "DELIVERED";
|
|
@@ -604,22 +604,22 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
604
604
|
};
|
|
605
605
|
}>, z.ZodObject<{
|
|
606
606
|
data: z.ZodObject<{
|
|
607
|
-
sourceConversationId: z.ZodString
|
|
607
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
608
608
|
}, "strip", z.ZodTypeAny, {
|
|
609
|
-
sourceConversationId
|
|
609
|
+
sourceConversationId?: string | null | undefined;
|
|
610
610
|
}, {
|
|
611
|
-
sourceConversationId
|
|
611
|
+
sourceConversationId?: string | null | undefined;
|
|
612
612
|
}>;
|
|
613
613
|
type: z.ZodLiteral<"DELETED">;
|
|
614
614
|
}, "strip", z.ZodTypeAny, {
|
|
615
615
|
type: "DELETED";
|
|
616
616
|
data: {
|
|
617
|
-
sourceConversationId
|
|
617
|
+
sourceConversationId?: string | null | undefined;
|
|
618
618
|
};
|
|
619
619
|
}, {
|
|
620
620
|
type: "DELETED";
|
|
621
621
|
data: {
|
|
622
|
-
sourceConversationId
|
|
622
|
+
sourceConversationId?: string | null | undefined;
|
|
623
623
|
};
|
|
624
624
|
}>, z.ZodObject<{
|
|
625
625
|
data: z.ZodObject<{
|
|
@@ -1754,7 +1754,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
1754
1754
|
} | {
|
|
1755
1755
|
type: "DELETED";
|
|
1756
1756
|
data: {
|
|
1757
|
-
sourceConversationId
|
|
1757
|
+
sourceConversationId?: string | null | undefined;
|
|
1758
1758
|
};
|
|
1759
1759
|
} | {
|
|
1760
1760
|
type: "DELIVERED";
|
|
@@ -1972,7 +1972,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
1972
1972
|
} | {
|
|
1973
1973
|
type: "DELETED";
|
|
1974
1974
|
data: {
|
|
1975
|
-
sourceConversationId
|
|
1975
|
+
sourceConversationId?: string | null | undefined;
|
|
1976
1976
|
};
|
|
1977
1977
|
} | {
|
|
1978
1978
|
type: "DELIVERED";
|
|
@@ -2486,7 +2486,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
2486
2486
|
} | {
|
|
2487
2487
|
type: "DELETED";
|
|
2488
2488
|
data: {
|
|
2489
|
-
sourceConversationId
|
|
2489
|
+
sourceConversationId?: string | null | undefined;
|
|
2490
2490
|
};
|
|
2491
2491
|
} | {
|
|
2492
2492
|
type: "DELIVERED";
|
|
@@ -2817,7 +2817,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
2817
2817
|
} | {
|
|
2818
2818
|
type: "DELETED";
|
|
2819
2819
|
data: {
|
|
2820
|
-
sourceConversationId
|
|
2820
|
+
sourceConversationId?: string | null | undefined;
|
|
2821
2821
|
};
|
|
2822
2822
|
} | {
|
|
2823
2823
|
type: "DELIVERED";
|
|
@@ -3150,7 +3150,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
3150
3150
|
} | {
|
|
3151
3151
|
type: "DELETED";
|
|
3152
3152
|
data: {
|
|
3153
|
-
sourceConversationId
|
|
3153
|
+
sourceConversationId?: string | null | undefined;
|
|
3154
3154
|
};
|
|
3155
3155
|
} | {
|
|
3156
3156
|
type: "DELIVERED";
|
|
@@ -3534,7 +3534,7 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
3534
3534
|
} | {
|
|
3535
3535
|
type: "DELETED";
|
|
3536
3536
|
data: {
|
|
3537
|
-
sourceConversationId
|
|
3537
|
+
sourceConversationId?: string | null | undefined;
|
|
3538
3538
|
};
|
|
3539
3539
|
} | {
|
|
3540
3540
|
type: "DELIVERED";
|
|
@@ -1311,22 +1311,22 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
1311
1311
|
};
|
|
1312
1312
|
}>, z.ZodObject<{
|
|
1313
1313
|
data: z.ZodObject<{
|
|
1314
|
-
sourceConversationId: z.ZodString
|
|
1314
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1315
1315
|
}, "strip", z.ZodTypeAny, {
|
|
1316
|
-
sourceConversationId
|
|
1316
|
+
sourceConversationId?: string | null | undefined;
|
|
1317
1317
|
}, {
|
|
1318
|
-
sourceConversationId
|
|
1318
|
+
sourceConversationId?: string | null | undefined;
|
|
1319
1319
|
}>;
|
|
1320
1320
|
type: z.ZodLiteral<"DELETED">;
|
|
1321
1321
|
}, "strip", z.ZodTypeAny, {
|
|
1322
1322
|
type: "DELETED";
|
|
1323
1323
|
data: {
|
|
1324
|
-
sourceConversationId
|
|
1324
|
+
sourceConversationId?: string | null | undefined;
|
|
1325
1325
|
};
|
|
1326
1326
|
}, {
|
|
1327
1327
|
type: "DELETED";
|
|
1328
1328
|
data: {
|
|
1329
|
-
sourceConversationId
|
|
1329
|
+
sourceConversationId?: string | null | undefined;
|
|
1330
1330
|
};
|
|
1331
1331
|
}>, z.ZodObject<{
|
|
1332
1332
|
data: z.ZodObject<{
|
|
@@ -2461,7 +2461,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
2461
2461
|
} | {
|
|
2462
2462
|
type: "DELETED";
|
|
2463
2463
|
data: {
|
|
2464
|
-
sourceConversationId
|
|
2464
|
+
sourceConversationId?: string | null | undefined;
|
|
2465
2465
|
};
|
|
2466
2466
|
} | {
|
|
2467
2467
|
type: "DELIVERED";
|
|
@@ -2679,7 +2679,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
2679
2679
|
} | {
|
|
2680
2680
|
type: "DELETED";
|
|
2681
2681
|
data: {
|
|
2682
|
-
sourceConversationId
|
|
2682
|
+
sourceConversationId?: string | null | undefined;
|
|
2683
2683
|
};
|
|
2684
2684
|
} | {
|
|
2685
2685
|
type: "DELIVERED";
|
|
@@ -3193,7 +3193,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
3193
3193
|
} | {
|
|
3194
3194
|
type: "DELETED";
|
|
3195
3195
|
data: {
|
|
3196
|
-
sourceConversationId
|
|
3196
|
+
sourceConversationId?: string | null | undefined;
|
|
3197
3197
|
};
|
|
3198
3198
|
} | {
|
|
3199
3199
|
type: "DELIVERED";
|
|
@@ -3524,7 +3524,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
3524
3524
|
} | {
|
|
3525
3525
|
type: "DELETED";
|
|
3526
3526
|
data: {
|
|
3527
|
-
sourceConversationId
|
|
3527
|
+
sourceConversationId?: string | null | undefined;
|
|
3528
3528
|
};
|
|
3529
3529
|
} | {
|
|
3530
3530
|
type: "DELIVERED";
|
|
@@ -3860,7 +3860,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
3860
3860
|
} | {
|
|
3861
3861
|
type: "DELETED";
|
|
3862
3862
|
data: {
|
|
3863
|
-
sourceConversationId
|
|
3863
|
+
sourceConversationId?: string | null | undefined;
|
|
3864
3864
|
};
|
|
3865
3865
|
} | {
|
|
3866
3866
|
type: "DELIVERED";
|
|
@@ -4195,7 +4195,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
4195
4195
|
} | {
|
|
4196
4196
|
type: "DELETED";
|
|
4197
4197
|
data: {
|
|
4198
|
-
sourceConversationId
|
|
4198
|
+
sourceConversationId?: string | null | undefined;
|
|
4199
4199
|
};
|
|
4200
4200
|
} | {
|
|
4201
4201
|
type: "DELIVERED";
|
|
@@ -6986,22 +6986,22 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
6986
6986
|
};
|
|
6987
6987
|
}>, z.ZodObject<{
|
|
6988
6988
|
data: z.ZodObject<{
|
|
6989
|
-
sourceConversationId: z.ZodString
|
|
6989
|
+
sourceConversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6990
6990
|
}, "strip", z.ZodTypeAny, {
|
|
6991
|
-
sourceConversationId
|
|
6991
|
+
sourceConversationId?: string | null | undefined;
|
|
6992
6992
|
}, {
|
|
6993
|
-
sourceConversationId
|
|
6993
|
+
sourceConversationId?: string | null | undefined;
|
|
6994
6994
|
}>;
|
|
6995
6995
|
type: z.ZodLiteral<"DELETED">;
|
|
6996
6996
|
}, "strip", z.ZodTypeAny, {
|
|
6997
6997
|
type: "DELETED";
|
|
6998
6998
|
data: {
|
|
6999
|
-
sourceConversationId
|
|
6999
|
+
sourceConversationId?: string | null | undefined;
|
|
7000
7000
|
};
|
|
7001
7001
|
}, {
|
|
7002
7002
|
type: "DELETED";
|
|
7003
7003
|
data: {
|
|
7004
|
-
sourceConversationId
|
|
7004
|
+
sourceConversationId?: string | null | undefined;
|
|
7005
7005
|
};
|
|
7006
7006
|
}>, z.ZodObject<{
|
|
7007
7007
|
data: z.ZodObject<{
|
|
@@ -8136,7 +8136,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
8136
8136
|
} | {
|
|
8137
8137
|
type: "DELETED";
|
|
8138
8138
|
data: {
|
|
8139
|
-
sourceConversationId
|
|
8139
|
+
sourceConversationId?: string | null | undefined;
|
|
8140
8140
|
};
|
|
8141
8141
|
} | {
|
|
8142
8142
|
type: "DELIVERED";
|
|
@@ -8354,7 +8354,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
8354
8354
|
} | {
|
|
8355
8355
|
type: "DELETED";
|
|
8356
8356
|
data: {
|
|
8357
|
-
sourceConversationId
|
|
8357
|
+
sourceConversationId?: string | null | undefined;
|
|
8358
8358
|
};
|
|
8359
8359
|
} | {
|
|
8360
8360
|
type: "DELIVERED";
|
|
@@ -8868,7 +8868,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
8868
8868
|
} | {
|
|
8869
8869
|
type: "DELETED";
|
|
8870
8870
|
data: {
|
|
8871
|
-
sourceConversationId
|
|
8871
|
+
sourceConversationId?: string | null | undefined;
|
|
8872
8872
|
};
|
|
8873
8873
|
} | {
|
|
8874
8874
|
type: "DELIVERED";
|
|
@@ -9199,7 +9199,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
9199
9199
|
} | {
|
|
9200
9200
|
type: "DELETED";
|
|
9201
9201
|
data: {
|
|
9202
|
-
sourceConversationId
|
|
9202
|
+
sourceConversationId?: string | null | undefined;
|
|
9203
9203
|
};
|
|
9204
9204
|
} | {
|
|
9205
9205
|
type: "DELIVERED";
|
|
@@ -9535,7 +9535,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
9535
9535
|
} | {
|
|
9536
9536
|
type: "DELETED";
|
|
9537
9537
|
data: {
|
|
9538
|
-
sourceConversationId
|
|
9538
|
+
sourceConversationId?: string | null | undefined;
|
|
9539
9539
|
};
|
|
9540
9540
|
} | {
|
|
9541
9541
|
type: "DELIVERED";
|
|
@@ -9870,7 +9870,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
9870
9870
|
} | {
|
|
9871
9871
|
type: "DELETED";
|
|
9872
9872
|
data: {
|
|
9873
|
-
sourceConversationId
|
|
9873
|
+
sourceConversationId?: string | null | undefined;
|
|
9874
9874
|
};
|
|
9875
9875
|
} | {
|
|
9876
9876
|
type: "DELIVERED";
|