@voltade/envoy-sdk 1.2.3 → 1.2.4

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.
@@ -227,40 +227,41 @@ export declare const MessageSenderSchema: z.ZodObject<{
227
227
  name: z.ZodNullable<z.ZodString>;
228
228
  email: z.ZodNullable<z.ZodString>;
229
229
  phone_number: z.ZodNullable<z.ZodString>;
230
- thumbnail: z.ZodString;
231
230
  identifier: z.ZodNullable<z.ZodString>;
232
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
233
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
234
- blocked: z.ZodBoolean;
235
- customer_stage: z.ZodString;
236
231
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
237
232
  type: z.ZodOptional<z.ZodString>;
233
+ } & {
234
+ thumbnail: z.ZodOptional<z.ZodString>;
235
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
236
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
237
+ blocked: z.ZodOptional<z.ZodBoolean>;
238
+ customer_stage: z.ZodOptional<z.ZodString>;
238
239
  }, "strip", z.ZodTypeAny, {
239
240
  id: number;
240
241
  name: string | null;
241
242
  email: string | null;
242
243
  phone_number: string | null;
243
- thumbnail: string;
244
244
  identifier: string | null;
245
- additional_attributes: Record<string, unknown>;
246
- custom_attributes: Record<string, unknown>;
247
- blocked: boolean;
248
- customer_stage: string;
249
245
  customer_stage_explanation: string | null;
250
246
  type?: string | undefined;
247
+ thumbnail?: string | undefined;
248
+ additional_attributes?: Record<string, unknown> | undefined;
249
+ custom_attributes?: Record<string, unknown> | undefined;
250
+ blocked?: boolean | undefined;
251
+ customer_stage?: string | undefined;
251
252
  }, {
252
253
  id: number;
253
254
  name: string | null;
254
255
  email: string | null;
255
256
  phone_number: string | null;
256
- thumbnail: string;
257
257
  identifier: string | null;
258
- additional_attributes: Record<string, unknown>;
259
- custom_attributes: Record<string, unknown>;
260
- blocked: boolean;
261
- customer_stage: string;
262
258
  customer_stage_explanation: string | null;
263
259
  type?: string | undefined;
260
+ thumbnail?: string | undefined;
261
+ additional_attributes?: Record<string, unknown> | undefined;
262
+ custom_attributes?: Record<string, unknown> | undefined;
263
+ blocked?: boolean | undefined;
264
+ customer_stage?: string | undefined;
264
265
  }>;
265
266
  export declare const WebhookMessageSchema: z.ZodObject<{
266
267
  id: z.ZodNumber;
@@ -323,40 +324,41 @@ export declare const WebhookMessageSchema: z.ZodObject<{
323
324
  name: z.ZodNullable<z.ZodString>;
324
325
  email: z.ZodNullable<z.ZodString>;
325
326
  phone_number: z.ZodNullable<z.ZodString>;
326
- thumbnail: z.ZodString;
327
327
  identifier: z.ZodNullable<z.ZodString>;
328
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
329
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
330
- blocked: z.ZodBoolean;
331
- customer_stage: z.ZodString;
332
328
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
333
329
  type: z.ZodOptional<z.ZodString>;
330
+ } & {
331
+ thumbnail: z.ZodOptional<z.ZodString>;
332
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
333
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
334
+ blocked: z.ZodOptional<z.ZodBoolean>;
335
+ customer_stage: z.ZodOptional<z.ZodString>;
334
336
  }, "strip", z.ZodTypeAny, {
335
337
  id: number;
336
338
  name: string | null;
337
339
  email: string | null;
338
340
  phone_number: string | null;
339
- thumbnail: string;
340
341
  identifier: string | null;
341
- additional_attributes: Record<string, unknown>;
342
- custom_attributes: Record<string, unknown>;
343
- blocked: boolean;
344
- customer_stage: string;
345
342
  customer_stage_explanation: string | null;
346
343
  type?: string | undefined;
344
+ thumbnail?: string | undefined;
345
+ additional_attributes?: Record<string, unknown> | undefined;
346
+ custom_attributes?: Record<string, unknown> | undefined;
347
+ blocked?: boolean | undefined;
348
+ customer_stage?: string | undefined;
347
349
  }, {
348
350
  id: number;
349
351
  name: string | null;
350
352
  email: string | null;
351
353
  phone_number: string | null;
352
- thumbnail: string;
353
354
  identifier: string | null;
354
- additional_attributes: Record<string, unknown>;
355
- custom_attributes: Record<string, unknown>;
356
- blocked: boolean;
357
- customer_stage: string;
358
355
  customer_stage_explanation: string | null;
359
356
  type?: string | undefined;
357
+ thumbnail?: string | undefined;
358
+ additional_attributes?: Record<string, unknown> | undefined;
359
+ custom_attributes?: Record<string, unknown> | undefined;
360
+ blocked?: boolean | undefined;
361
+ customer_stage?: string | undefined;
360
362
  }>;
361
363
  }, "strip", z.ZodTypeAny, {
362
364
  id: number;
@@ -379,14 +381,14 @@ export declare const WebhookMessageSchema: z.ZodObject<{
379
381
  name: string | null;
380
382
  email: string | null;
381
383
  phone_number: string | null;
382
- thumbnail: string;
383
384
  identifier: string | null;
384
- additional_attributes: Record<string, unknown>;
385
- custom_attributes: Record<string, unknown>;
386
- blocked: boolean;
387
- customer_stage: string;
388
385
  customer_stage_explanation: string | null;
389
386
  type?: string | undefined;
387
+ thumbnail?: string | undefined;
388
+ additional_attributes?: Record<string, unknown> | undefined;
389
+ custom_attributes?: Record<string, unknown> | undefined;
390
+ blocked?: boolean | undefined;
391
+ customer_stage?: string | undefined;
390
392
  };
391
393
  additional_attributes: Record<string, unknown>;
392
394
  inbox_id: number;
@@ -429,14 +431,14 @@ export declare const WebhookMessageSchema: z.ZodObject<{
429
431
  name: string | null;
430
432
  email: string | null;
431
433
  phone_number: string | null;
432
- thumbnail: string;
433
434
  identifier: string | null;
434
- additional_attributes: Record<string, unknown>;
435
- custom_attributes: Record<string, unknown>;
436
- blocked: boolean;
437
- customer_stage: string;
438
435
  customer_stage_explanation: string | null;
439
436
  type?: string | undefined;
437
+ thumbnail?: string | undefined;
438
+ additional_attributes?: Record<string, unknown> | undefined;
439
+ custom_attributes?: Record<string, unknown> | undefined;
440
+ blocked?: boolean | undefined;
441
+ customer_stage?: string | undefined;
440
442
  };
441
443
  additional_attributes: Record<string, unknown>;
442
444
  inbox_id: number;
@@ -742,40 +744,41 @@ export declare const WebhookConversationSchema: z.ZodObject<{
742
744
  name: z.ZodNullable<z.ZodString>;
743
745
  email: z.ZodNullable<z.ZodString>;
744
746
  phone_number: z.ZodNullable<z.ZodString>;
745
- thumbnail: z.ZodString;
746
747
  identifier: z.ZodNullable<z.ZodString>;
747
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
748
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
749
- blocked: z.ZodBoolean;
750
- customer_stage: z.ZodString;
751
748
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
752
749
  type: z.ZodOptional<z.ZodString>;
750
+ } & {
751
+ thumbnail: z.ZodOptional<z.ZodString>;
752
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
753
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
754
+ blocked: z.ZodOptional<z.ZodBoolean>;
755
+ customer_stage: z.ZodOptional<z.ZodString>;
753
756
  }, "strip", z.ZodTypeAny, {
754
757
  id: number;
755
758
  name: string | null;
756
759
  email: string | null;
757
760
  phone_number: string | null;
758
- thumbnail: string;
759
761
  identifier: string | null;
760
- additional_attributes: Record<string, unknown>;
761
- custom_attributes: Record<string, unknown>;
762
- blocked: boolean;
763
- customer_stage: string;
764
762
  customer_stage_explanation: string | null;
765
763
  type?: string | undefined;
764
+ thumbnail?: string | undefined;
765
+ additional_attributes?: Record<string, unknown> | undefined;
766
+ custom_attributes?: Record<string, unknown> | undefined;
767
+ blocked?: boolean | undefined;
768
+ customer_stage?: string | undefined;
766
769
  }, {
767
770
  id: number;
768
771
  name: string | null;
769
772
  email: string | null;
770
773
  phone_number: string | null;
771
- thumbnail: string;
772
774
  identifier: string | null;
773
- additional_attributes: Record<string, unknown>;
774
- custom_attributes: Record<string, unknown>;
775
- blocked: boolean;
776
- customer_stage: string;
777
775
  customer_stage_explanation: string | null;
778
776
  type?: string | undefined;
777
+ thumbnail?: string | undefined;
778
+ additional_attributes?: Record<string, unknown> | undefined;
779
+ custom_attributes?: Record<string, unknown> | undefined;
780
+ blocked?: boolean | undefined;
781
+ customer_stage?: string | undefined;
779
782
  }>;
780
783
  }, "strip", z.ZodTypeAny, {
781
784
  id: number;
@@ -798,14 +801,14 @@ export declare const WebhookConversationSchema: z.ZodObject<{
798
801
  name: string | null;
799
802
  email: string | null;
800
803
  phone_number: string | null;
801
- thumbnail: string;
802
804
  identifier: string | null;
803
- additional_attributes: Record<string, unknown>;
804
- custom_attributes: Record<string, unknown>;
805
- blocked: boolean;
806
- customer_stage: string;
807
805
  customer_stage_explanation: string | null;
808
806
  type?: string | undefined;
807
+ thumbnail?: string | undefined;
808
+ additional_attributes?: Record<string, unknown> | undefined;
809
+ custom_attributes?: Record<string, unknown> | undefined;
810
+ blocked?: boolean | undefined;
811
+ customer_stage?: string | undefined;
809
812
  };
810
813
  additional_attributes: Record<string, unknown>;
811
814
  inbox_id: number;
@@ -848,14 +851,14 @@ export declare const WebhookConversationSchema: z.ZodObject<{
848
851
  name: string | null;
849
852
  email: string | null;
850
853
  phone_number: string | null;
851
- thumbnail: string;
852
854
  identifier: string | null;
853
- additional_attributes: Record<string, unknown>;
854
- custom_attributes: Record<string, unknown>;
855
- blocked: boolean;
856
- customer_stage: string;
857
855
  customer_stage_explanation: string | null;
858
856
  type?: string | undefined;
857
+ thumbnail?: string | undefined;
858
+ additional_attributes?: Record<string, unknown> | undefined;
859
+ custom_attributes?: Record<string, unknown> | undefined;
860
+ blocked?: boolean | undefined;
861
+ customer_stage?: string | undefined;
859
862
  };
860
863
  additional_attributes: Record<string, unknown>;
861
864
  inbox_id: number;
@@ -1077,14 +1080,14 @@ export declare const WebhookConversationSchema: z.ZodObject<{
1077
1080
  name: string | null;
1078
1081
  email: string | null;
1079
1082
  phone_number: string | null;
1080
- thumbnail: string;
1081
1083
  identifier: string | null;
1082
- additional_attributes: Record<string, unknown>;
1083
- custom_attributes: Record<string, unknown>;
1084
- blocked: boolean;
1085
- customer_stage: string;
1086
1084
  customer_stage_explanation: string | null;
1087
1085
  type?: string | undefined;
1086
+ thumbnail?: string | undefined;
1087
+ additional_attributes?: Record<string, unknown> | undefined;
1088
+ custom_attributes?: Record<string, unknown> | undefined;
1089
+ blocked?: boolean | undefined;
1090
+ customer_stage?: string | undefined;
1088
1091
  };
1089
1092
  additional_attributes: Record<string, unknown>;
1090
1093
  inbox_id: number;
@@ -1200,14 +1203,14 @@ export declare const WebhookConversationSchema: z.ZodObject<{
1200
1203
  name: string | null;
1201
1204
  email: string | null;
1202
1205
  phone_number: string | null;
1203
- thumbnail: string;
1204
1206
  identifier: string | null;
1205
- additional_attributes: Record<string, unknown>;
1206
- custom_attributes: Record<string, unknown>;
1207
- blocked: boolean;
1208
- customer_stage: string;
1209
1207
  customer_stage_explanation: string | null;
1210
1208
  type?: string | undefined;
1209
+ thumbnail?: string | undefined;
1210
+ additional_attributes?: Record<string, unknown> | undefined;
1211
+ custom_attributes?: Record<string, unknown> | undefined;
1212
+ blocked?: boolean | undefined;
1213
+ customer_stage?: string | undefined;
1211
1214
  };
1212
1215
  additional_attributes: Record<string, unknown>;
1213
1216
  inbox_id: number;
@@ -1447,40 +1450,41 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
1447
1450
  name: z.ZodNullable<z.ZodString>;
1448
1451
  email: z.ZodNullable<z.ZodString>;
1449
1452
  phone_number: z.ZodNullable<z.ZodString>;
1450
- thumbnail: z.ZodString;
1451
1453
  identifier: z.ZodNullable<z.ZodString>;
1452
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1453
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1454
- blocked: z.ZodBoolean;
1455
- customer_stage: z.ZodString;
1456
1454
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
1457
1455
  type: z.ZodOptional<z.ZodString>;
1456
+ } & {
1457
+ thumbnail: z.ZodOptional<z.ZodString>;
1458
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1459
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1460
+ blocked: z.ZodOptional<z.ZodBoolean>;
1461
+ customer_stage: z.ZodOptional<z.ZodString>;
1458
1462
  }, "strip", z.ZodTypeAny, {
1459
1463
  id: number;
1460
1464
  name: string | null;
1461
1465
  email: string | null;
1462
1466
  phone_number: string | null;
1463
- thumbnail: string;
1464
1467
  identifier: string | null;
1465
- additional_attributes: Record<string, unknown>;
1466
- custom_attributes: Record<string, unknown>;
1467
- blocked: boolean;
1468
- customer_stage: string;
1469
1468
  customer_stage_explanation: string | null;
1470
1469
  type?: string | undefined;
1470
+ thumbnail?: string | undefined;
1471
+ additional_attributes?: Record<string, unknown> | undefined;
1472
+ custom_attributes?: Record<string, unknown> | undefined;
1473
+ blocked?: boolean | undefined;
1474
+ customer_stage?: string | undefined;
1471
1475
  }, {
1472
1476
  id: number;
1473
1477
  name: string | null;
1474
1478
  email: string | null;
1475
1479
  phone_number: string | null;
1476
- thumbnail: string;
1477
1480
  identifier: string | null;
1478
- additional_attributes: Record<string, unknown>;
1479
- custom_attributes: Record<string, unknown>;
1480
- blocked: boolean;
1481
- customer_stage: string;
1482
1481
  customer_stage_explanation: string | null;
1483
1482
  type?: string | undefined;
1483
+ thumbnail?: string | undefined;
1484
+ additional_attributes?: Record<string, unknown> | undefined;
1485
+ custom_attributes?: Record<string, unknown> | undefined;
1486
+ blocked?: boolean | undefined;
1487
+ customer_stage?: string | undefined;
1484
1488
  }>;
1485
1489
  }, "strip", z.ZodTypeAny, {
1486
1490
  id: number;
@@ -1503,14 +1507,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
1503
1507
  name: string | null;
1504
1508
  email: string | null;
1505
1509
  phone_number: string | null;
1506
- thumbnail: string;
1507
1510
  identifier: string | null;
1508
- additional_attributes: Record<string, unknown>;
1509
- custom_attributes: Record<string, unknown>;
1510
- blocked: boolean;
1511
- customer_stage: string;
1512
1511
  customer_stage_explanation: string | null;
1513
1512
  type?: string | undefined;
1513
+ thumbnail?: string | undefined;
1514
+ additional_attributes?: Record<string, unknown> | undefined;
1515
+ custom_attributes?: Record<string, unknown> | undefined;
1516
+ blocked?: boolean | undefined;
1517
+ customer_stage?: string | undefined;
1514
1518
  };
1515
1519
  additional_attributes: Record<string, unknown>;
1516
1520
  inbox_id: number;
@@ -1553,14 +1557,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
1553
1557
  name: string | null;
1554
1558
  email: string | null;
1555
1559
  phone_number: string | null;
1556
- thumbnail: string;
1557
1560
  identifier: string | null;
1558
- additional_attributes: Record<string, unknown>;
1559
- custom_attributes: Record<string, unknown>;
1560
- blocked: boolean;
1561
- customer_stage: string;
1562
1561
  customer_stage_explanation: string | null;
1563
1562
  type?: string | undefined;
1563
+ thumbnail?: string | undefined;
1564
+ additional_attributes?: Record<string, unknown> | undefined;
1565
+ custom_attributes?: Record<string, unknown> | undefined;
1566
+ blocked?: boolean | undefined;
1567
+ customer_stage?: string | undefined;
1564
1568
  };
1565
1569
  additional_attributes: Record<string, unknown>;
1566
1570
  inbox_id: number;
@@ -1782,14 +1786,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
1782
1786
  name: string | null;
1783
1787
  email: string | null;
1784
1788
  phone_number: string | null;
1785
- thumbnail: string;
1786
1789
  identifier: string | null;
1787
- additional_attributes: Record<string, unknown>;
1788
- custom_attributes: Record<string, unknown>;
1789
- blocked: boolean;
1790
- customer_stage: string;
1791
1790
  customer_stage_explanation: string | null;
1792
1791
  type?: string | undefined;
1792
+ thumbnail?: string | undefined;
1793
+ additional_attributes?: Record<string, unknown> | undefined;
1794
+ custom_attributes?: Record<string, unknown> | undefined;
1795
+ blocked?: boolean | undefined;
1796
+ customer_stage?: string | undefined;
1793
1797
  };
1794
1798
  additional_attributes: Record<string, unknown>;
1795
1799
  inbox_id: number;
@@ -1905,14 +1909,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
1905
1909
  name: string | null;
1906
1910
  email: string | null;
1907
1911
  phone_number: string | null;
1908
- thumbnail: string;
1909
1912
  identifier: string | null;
1910
- additional_attributes: Record<string, unknown>;
1911
- custom_attributes: Record<string, unknown>;
1912
- blocked: boolean;
1913
- customer_stage: string;
1914
1913
  customer_stage_explanation: string | null;
1915
1914
  type?: string | undefined;
1915
+ thumbnail?: string | undefined;
1916
+ additional_attributes?: Record<string, unknown> | undefined;
1917
+ custom_attributes?: Record<string, unknown> | undefined;
1918
+ blocked?: boolean | undefined;
1919
+ customer_stage?: string | undefined;
1916
1920
  };
1917
1921
  additional_attributes: Record<string, unknown>;
1918
1922
  inbox_id: number;
@@ -2144,14 +2148,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
2144
2148
  name: string | null;
2145
2149
  email: string | null;
2146
2150
  phone_number: string | null;
2147
- thumbnail: string;
2148
2151
  identifier: string | null;
2149
- additional_attributes: Record<string, unknown>;
2150
- custom_attributes: Record<string, unknown>;
2151
- blocked: boolean;
2152
- customer_stage: string;
2153
2152
  customer_stage_explanation: string | null;
2154
2153
  type?: string | undefined;
2154
+ thumbnail?: string | undefined;
2155
+ additional_attributes?: Record<string, unknown> | undefined;
2156
+ custom_attributes?: Record<string, unknown> | undefined;
2157
+ blocked?: boolean | undefined;
2158
+ customer_stage?: string | undefined;
2155
2159
  };
2156
2160
  additional_attributes: Record<string, unknown>;
2157
2161
  inbox_id: number;
@@ -2310,14 +2314,14 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
2310
2314
  name: string | null;
2311
2315
  email: string | null;
2312
2316
  phone_number: string | null;
2313
- thumbnail: string;
2314
2317
  identifier: string | null;
2315
- additional_attributes: Record<string, unknown>;
2316
- custom_attributes: Record<string, unknown>;
2317
- blocked: boolean;
2318
- customer_stage: string;
2319
2318
  customer_stage_explanation: string | null;
2320
2319
  type?: string | undefined;
2320
+ thumbnail?: string | undefined;
2321
+ additional_attributes?: Record<string, unknown> | undefined;
2322
+ custom_attributes?: Record<string, unknown> | undefined;
2323
+ blocked?: boolean | undefined;
2324
+ customer_stage?: string | undefined;
2321
2325
  };
2322
2326
  additional_attributes: Record<string, unknown>;
2323
2327
  inbox_id: number;
@@ -2563,40 +2567,41 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
2563
2567
  name: z.ZodNullable<z.ZodString>;
2564
2568
  email: z.ZodNullable<z.ZodString>;
2565
2569
  phone_number: z.ZodNullable<z.ZodString>;
2566
- thumbnail: z.ZodString;
2567
2570
  identifier: z.ZodNullable<z.ZodString>;
2568
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2569
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2570
- blocked: z.ZodBoolean;
2571
- customer_stage: z.ZodString;
2572
2571
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
2573
2572
  type: z.ZodOptional<z.ZodString>;
2573
+ } & {
2574
+ thumbnail: z.ZodOptional<z.ZodString>;
2575
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2576
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2577
+ blocked: z.ZodOptional<z.ZodBoolean>;
2578
+ customer_stage: z.ZodOptional<z.ZodString>;
2574
2579
  }, "strip", z.ZodTypeAny, {
2575
2580
  id: number;
2576
2581
  name: string | null;
2577
2582
  email: string | null;
2578
2583
  phone_number: string | null;
2579
- thumbnail: string;
2580
2584
  identifier: string | null;
2581
- additional_attributes: Record<string, unknown>;
2582
- custom_attributes: Record<string, unknown>;
2583
- blocked: boolean;
2584
- customer_stage: string;
2585
2585
  customer_stage_explanation: string | null;
2586
2586
  type?: string | undefined;
2587
+ thumbnail?: string | undefined;
2588
+ additional_attributes?: Record<string, unknown> | undefined;
2589
+ custom_attributes?: Record<string, unknown> | undefined;
2590
+ blocked?: boolean | undefined;
2591
+ customer_stage?: string | undefined;
2587
2592
  }, {
2588
2593
  id: number;
2589
2594
  name: string | null;
2590
2595
  email: string | null;
2591
2596
  phone_number: string | null;
2592
- thumbnail: string;
2593
2597
  identifier: string | null;
2594
- additional_attributes: Record<string, unknown>;
2595
- custom_attributes: Record<string, unknown>;
2596
- blocked: boolean;
2597
- customer_stage: string;
2598
2598
  customer_stage_explanation: string | null;
2599
2599
  type?: string | undefined;
2600
+ thumbnail?: string | undefined;
2601
+ additional_attributes?: Record<string, unknown> | undefined;
2602
+ custom_attributes?: Record<string, unknown> | undefined;
2603
+ blocked?: boolean | undefined;
2604
+ customer_stage?: string | undefined;
2600
2605
  }>;
2601
2606
  }, "strip", z.ZodTypeAny, {
2602
2607
  id: number;
@@ -2619,14 +2624,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
2619
2624
  name: string | null;
2620
2625
  email: string | null;
2621
2626
  phone_number: string | null;
2622
- thumbnail: string;
2623
2627
  identifier: string | null;
2624
- additional_attributes: Record<string, unknown>;
2625
- custom_attributes: Record<string, unknown>;
2626
- blocked: boolean;
2627
- customer_stage: string;
2628
2628
  customer_stage_explanation: string | null;
2629
2629
  type?: string | undefined;
2630
+ thumbnail?: string | undefined;
2631
+ additional_attributes?: Record<string, unknown> | undefined;
2632
+ custom_attributes?: Record<string, unknown> | undefined;
2633
+ blocked?: boolean | undefined;
2634
+ customer_stage?: string | undefined;
2630
2635
  };
2631
2636
  additional_attributes: Record<string, unknown>;
2632
2637
  inbox_id: number;
@@ -2669,14 +2674,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
2669
2674
  name: string | null;
2670
2675
  email: string | null;
2671
2676
  phone_number: string | null;
2672
- thumbnail: string;
2673
2677
  identifier: string | null;
2674
- additional_attributes: Record<string, unknown>;
2675
- custom_attributes: Record<string, unknown>;
2676
- blocked: boolean;
2677
- customer_stage: string;
2678
2678
  customer_stage_explanation: string | null;
2679
2679
  type?: string | undefined;
2680
+ thumbnail?: string | undefined;
2681
+ additional_attributes?: Record<string, unknown> | undefined;
2682
+ custom_attributes?: Record<string, unknown> | undefined;
2683
+ blocked?: boolean | undefined;
2684
+ customer_stage?: string | undefined;
2680
2685
  };
2681
2686
  additional_attributes: Record<string, unknown>;
2682
2687
  inbox_id: number;
@@ -2898,14 +2903,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
2898
2903
  name: string | null;
2899
2904
  email: string | null;
2900
2905
  phone_number: string | null;
2901
- thumbnail: string;
2902
2906
  identifier: string | null;
2903
- additional_attributes: Record<string, unknown>;
2904
- custom_attributes: Record<string, unknown>;
2905
- blocked: boolean;
2906
- customer_stage: string;
2907
2907
  customer_stage_explanation: string | null;
2908
2908
  type?: string | undefined;
2909
+ thumbnail?: string | undefined;
2910
+ additional_attributes?: Record<string, unknown> | undefined;
2911
+ custom_attributes?: Record<string, unknown> | undefined;
2912
+ blocked?: boolean | undefined;
2913
+ customer_stage?: string | undefined;
2909
2914
  };
2910
2915
  additional_attributes: Record<string, unknown>;
2911
2916
  inbox_id: number;
@@ -3021,14 +3026,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
3021
3026
  name: string | null;
3022
3027
  email: string | null;
3023
3028
  phone_number: string | null;
3024
- thumbnail: string;
3025
3029
  identifier: string | null;
3026
- additional_attributes: Record<string, unknown>;
3027
- custom_attributes: Record<string, unknown>;
3028
- blocked: boolean;
3029
- customer_stage: string;
3030
3030
  customer_stage_explanation: string | null;
3031
3031
  type?: string | undefined;
3032
+ thumbnail?: string | undefined;
3033
+ additional_attributes?: Record<string, unknown> | undefined;
3034
+ custom_attributes?: Record<string, unknown> | undefined;
3035
+ blocked?: boolean | undefined;
3036
+ customer_stage?: string | undefined;
3032
3037
  };
3033
3038
  additional_attributes: Record<string, unknown>;
3034
3039
  inbox_id: number;
@@ -3260,14 +3265,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
3260
3265
  name: string | null;
3261
3266
  email: string | null;
3262
3267
  phone_number: string | null;
3263
- thumbnail: string;
3264
3268
  identifier: string | null;
3265
- additional_attributes: Record<string, unknown>;
3266
- custom_attributes: Record<string, unknown>;
3267
- blocked: boolean;
3268
- customer_stage: string;
3269
3269
  customer_stage_explanation: string | null;
3270
3270
  type?: string | undefined;
3271
+ thumbnail?: string | undefined;
3272
+ additional_attributes?: Record<string, unknown> | undefined;
3273
+ custom_attributes?: Record<string, unknown> | undefined;
3274
+ blocked?: boolean | undefined;
3275
+ customer_stage?: string | undefined;
3271
3276
  };
3272
3277
  additional_attributes: Record<string, unknown>;
3273
3278
  inbox_id: number;
@@ -3426,14 +3431,14 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
3426
3431
  name: string | null;
3427
3432
  email: string | null;
3428
3433
  phone_number: string | null;
3429
- thumbnail: string;
3430
3434
  identifier: string | null;
3431
- additional_attributes: Record<string, unknown>;
3432
- custom_attributes: Record<string, unknown>;
3433
- blocked: boolean;
3434
- customer_stage: string;
3435
3435
  customer_stage_explanation: string | null;
3436
3436
  type?: string | undefined;
3437
+ thumbnail?: string | undefined;
3438
+ additional_attributes?: Record<string, unknown> | undefined;
3439
+ custom_attributes?: Record<string, unknown> | undefined;
3440
+ blocked?: boolean | undefined;
3441
+ customer_stage?: string | undefined;
3437
3442
  };
3438
3443
  additional_attributes: Record<string, unknown>;
3439
3444
  inbox_id: number;
@@ -3679,40 +3684,41 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
3679
3684
  name: z.ZodNullable<z.ZodString>;
3680
3685
  email: z.ZodNullable<z.ZodString>;
3681
3686
  phone_number: z.ZodNullable<z.ZodString>;
3682
- thumbnail: z.ZodString;
3683
3687
  identifier: z.ZodNullable<z.ZodString>;
3684
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3685
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3686
- blocked: z.ZodBoolean;
3687
- customer_stage: z.ZodString;
3688
3688
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
3689
3689
  type: z.ZodOptional<z.ZodString>;
3690
+ } & {
3691
+ thumbnail: z.ZodOptional<z.ZodString>;
3692
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3693
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3694
+ blocked: z.ZodOptional<z.ZodBoolean>;
3695
+ customer_stage: z.ZodOptional<z.ZodString>;
3690
3696
  }, "strip", z.ZodTypeAny, {
3691
3697
  id: number;
3692
3698
  name: string | null;
3693
3699
  email: string | null;
3694
3700
  phone_number: string | null;
3695
- thumbnail: string;
3696
3701
  identifier: string | null;
3697
- additional_attributes: Record<string, unknown>;
3698
- custom_attributes: Record<string, unknown>;
3699
- blocked: boolean;
3700
- customer_stage: string;
3701
3702
  customer_stage_explanation: string | null;
3702
3703
  type?: string | undefined;
3704
+ thumbnail?: string | undefined;
3705
+ additional_attributes?: Record<string, unknown> | undefined;
3706
+ custom_attributes?: Record<string, unknown> | undefined;
3707
+ blocked?: boolean | undefined;
3708
+ customer_stage?: string | undefined;
3703
3709
  }, {
3704
3710
  id: number;
3705
3711
  name: string | null;
3706
3712
  email: string | null;
3707
3713
  phone_number: string | null;
3708
- thumbnail: string;
3709
3714
  identifier: string | null;
3710
- additional_attributes: Record<string, unknown>;
3711
- custom_attributes: Record<string, unknown>;
3712
- blocked: boolean;
3713
- customer_stage: string;
3714
3715
  customer_stage_explanation: string | null;
3715
3716
  type?: string | undefined;
3717
+ thumbnail?: string | undefined;
3718
+ additional_attributes?: Record<string, unknown> | undefined;
3719
+ custom_attributes?: Record<string, unknown> | undefined;
3720
+ blocked?: boolean | undefined;
3721
+ customer_stage?: string | undefined;
3716
3722
  }>;
3717
3723
  }, "strip", z.ZodTypeAny, {
3718
3724
  id: number;
@@ -3735,14 +3741,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
3735
3741
  name: string | null;
3736
3742
  email: string | null;
3737
3743
  phone_number: string | null;
3738
- thumbnail: string;
3739
3744
  identifier: string | null;
3740
- additional_attributes: Record<string, unknown>;
3741
- custom_attributes: Record<string, unknown>;
3742
- blocked: boolean;
3743
- customer_stage: string;
3744
3745
  customer_stage_explanation: string | null;
3745
3746
  type?: string | undefined;
3747
+ thumbnail?: string | undefined;
3748
+ additional_attributes?: Record<string, unknown> | undefined;
3749
+ custom_attributes?: Record<string, unknown> | undefined;
3750
+ blocked?: boolean | undefined;
3751
+ customer_stage?: string | undefined;
3746
3752
  };
3747
3753
  additional_attributes: Record<string, unknown>;
3748
3754
  inbox_id: number;
@@ -3785,14 +3791,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
3785
3791
  name: string | null;
3786
3792
  email: string | null;
3787
3793
  phone_number: string | null;
3788
- thumbnail: string;
3789
3794
  identifier: string | null;
3790
- additional_attributes: Record<string, unknown>;
3791
- custom_attributes: Record<string, unknown>;
3792
- blocked: boolean;
3793
- customer_stage: string;
3794
3795
  customer_stage_explanation: string | null;
3795
3796
  type?: string | undefined;
3797
+ thumbnail?: string | undefined;
3798
+ additional_attributes?: Record<string, unknown> | undefined;
3799
+ custom_attributes?: Record<string, unknown> | undefined;
3800
+ blocked?: boolean | undefined;
3801
+ customer_stage?: string | undefined;
3796
3802
  };
3797
3803
  additional_attributes: Record<string, unknown>;
3798
3804
  inbox_id: number;
@@ -4014,14 +4020,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4014
4020
  name: string | null;
4015
4021
  email: string | null;
4016
4022
  phone_number: string | null;
4017
- thumbnail: string;
4018
4023
  identifier: string | null;
4019
- additional_attributes: Record<string, unknown>;
4020
- custom_attributes: Record<string, unknown>;
4021
- blocked: boolean;
4022
- customer_stage: string;
4023
4024
  customer_stage_explanation: string | null;
4024
4025
  type?: string | undefined;
4026
+ thumbnail?: string | undefined;
4027
+ additional_attributes?: Record<string, unknown> | undefined;
4028
+ custom_attributes?: Record<string, unknown> | undefined;
4029
+ blocked?: boolean | undefined;
4030
+ customer_stage?: string | undefined;
4025
4031
  };
4026
4032
  additional_attributes: Record<string, unknown>;
4027
4033
  inbox_id: number;
@@ -4137,14 +4143,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4137
4143
  name: string | null;
4138
4144
  email: string | null;
4139
4145
  phone_number: string | null;
4140
- thumbnail: string;
4141
4146
  identifier: string | null;
4142
- additional_attributes: Record<string, unknown>;
4143
- custom_attributes: Record<string, unknown>;
4144
- blocked: boolean;
4145
- customer_stage: string;
4146
4147
  customer_stage_explanation: string | null;
4147
4148
  type?: string | undefined;
4149
+ thumbnail?: string | undefined;
4150
+ additional_attributes?: Record<string, unknown> | undefined;
4151
+ custom_attributes?: Record<string, unknown> | undefined;
4152
+ blocked?: boolean | undefined;
4153
+ customer_stage?: string | undefined;
4148
4154
  };
4149
4155
  additional_attributes: Record<string, unknown>;
4150
4156
  inbox_id: number;
@@ -4376,14 +4382,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4376
4382
  name: string | null;
4377
4383
  email: string | null;
4378
4384
  phone_number: string | null;
4379
- thumbnail: string;
4380
4385
  identifier: string | null;
4381
- additional_attributes: Record<string, unknown>;
4382
- custom_attributes: Record<string, unknown>;
4383
- blocked: boolean;
4384
- customer_stage: string;
4385
4386
  customer_stage_explanation: string | null;
4386
4387
  type?: string | undefined;
4388
+ thumbnail?: string | undefined;
4389
+ additional_attributes?: Record<string, unknown> | undefined;
4390
+ custom_attributes?: Record<string, unknown> | undefined;
4391
+ blocked?: boolean | undefined;
4392
+ customer_stage?: string | undefined;
4387
4393
  };
4388
4394
  additional_attributes: Record<string, unknown>;
4389
4395
  inbox_id: number;
@@ -4542,14 +4548,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4542
4548
  name: string | null;
4543
4549
  email: string | null;
4544
4550
  phone_number: string | null;
4545
- thumbnail: string;
4546
4551
  identifier: string | null;
4547
- additional_attributes: Record<string, unknown>;
4548
- custom_attributes: Record<string, unknown>;
4549
- blocked: boolean;
4550
- customer_stage: string;
4551
4552
  customer_stage_explanation: string | null;
4552
4553
  type?: string | undefined;
4554
+ thumbnail?: string | undefined;
4555
+ additional_attributes?: Record<string, unknown> | undefined;
4556
+ custom_attributes?: Record<string, unknown> | undefined;
4557
+ blocked?: boolean | undefined;
4558
+ customer_stage?: string | undefined;
4553
4559
  };
4554
4560
  additional_attributes: Record<string, unknown>;
4555
4561
  inbox_id: number;
@@ -4794,40 +4800,41 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4794
4800
  name: z.ZodNullable<z.ZodString>;
4795
4801
  email: z.ZodNullable<z.ZodString>;
4796
4802
  phone_number: z.ZodNullable<z.ZodString>;
4797
- thumbnail: z.ZodString;
4798
4803
  identifier: z.ZodNullable<z.ZodString>;
4799
- additional_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4800
- custom_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4801
- blocked: z.ZodBoolean;
4802
- customer_stage: z.ZodString;
4803
4804
  customer_stage_explanation: z.ZodNullable<z.ZodString>;
4804
4805
  type: z.ZodOptional<z.ZodString>;
4806
+ } & {
4807
+ thumbnail: z.ZodOptional<z.ZodString>;
4808
+ additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4809
+ custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4810
+ blocked: z.ZodOptional<z.ZodBoolean>;
4811
+ customer_stage: z.ZodOptional<z.ZodString>;
4805
4812
  }, "strip", z.ZodTypeAny, {
4806
4813
  id: number;
4807
4814
  name: string | null;
4808
4815
  email: string | null;
4809
4816
  phone_number: string | null;
4810
- thumbnail: string;
4811
4817
  identifier: string | null;
4812
- additional_attributes: Record<string, unknown>;
4813
- custom_attributes: Record<string, unknown>;
4814
- blocked: boolean;
4815
- customer_stage: string;
4816
4818
  customer_stage_explanation: string | null;
4817
4819
  type?: string | undefined;
4820
+ thumbnail?: string | undefined;
4821
+ additional_attributes?: Record<string, unknown> | undefined;
4822
+ custom_attributes?: Record<string, unknown> | undefined;
4823
+ blocked?: boolean | undefined;
4824
+ customer_stage?: string | undefined;
4818
4825
  }, {
4819
4826
  id: number;
4820
4827
  name: string | null;
4821
4828
  email: string | null;
4822
4829
  phone_number: string | null;
4823
- thumbnail: string;
4824
4830
  identifier: string | null;
4825
- additional_attributes: Record<string, unknown>;
4826
- custom_attributes: Record<string, unknown>;
4827
- blocked: boolean;
4828
- customer_stage: string;
4829
4831
  customer_stage_explanation: string | null;
4830
4832
  type?: string | undefined;
4833
+ thumbnail?: string | undefined;
4834
+ additional_attributes?: Record<string, unknown> | undefined;
4835
+ custom_attributes?: Record<string, unknown> | undefined;
4836
+ blocked?: boolean | undefined;
4837
+ customer_stage?: string | undefined;
4831
4838
  }>;
4832
4839
  }, "strip", z.ZodTypeAny, {
4833
4840
  id: number;
@@ -4850,14 +4857,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4850
4857
  name: string | null;
4851
4858
  email: string | null;
4852
4859
  phone_number: string | null;
4853
- thumbnail: string;
4854
4860
  identifier: string | null;
4855
- additional_attributes: Record<string, unknown>;
4856
- custom_attributes: Record<string, unknown>;
4857
- blocked: boolean;
4858
- customer_stage: string;
4859
4861
  customer_stage_explanation: string | null;
4860
4862
  type?: string | undefined;
4863
+ thumbnail?: string | undefined;
4864
+ additional_attributes?: Record<string, unknown> | undefined;
4865
+ custom_attributes?: Record<string, unknown> | undefined;
4866
+ blocked?: boolean | undefined;
4867
+ customer_stage?: string | undefined;
4861
4868
  };
4862
4869
  additional_attributes: Record<string, unknown>;
4863
4870
  inbox_id: number;
@@ -4900,14 +4907,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
4900
4907
  name: string | null;
4901
4908
  email: string | null;
4902
4909
  phone_number: string | null;
4903
- thumbnail: string;
4904
4910
  identifier: string | null;
4905
- additional_attributes: Record<string, unknown>;
4906
- custom_attributes: Record<string, unknown>;
4907
- blocked: boolean;
4908
- customer_stage: string;
4909
4911
  customer_stage_explanation: string | null;
4910
4912
  type?: string | undefined;
4913
+ thumbnail?: string | undefined;
4914
+ additional_attributes?: Record<string, unknown> | undefined;
4915
+ custom_attributes?: Record<string, unknown> | undefined;
4916
+ blocked?: boolean | undefined;
4917
+ customer_stage?: string | undefined;
4911
4918
  };
4912
4919
  additional_attributes: Record<string, unknown>;
4913
4920
  inbox_id: number;
@@ -5129,14 +5136,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
5129
5136
  name: string | null;
5130
5137
  email: string | null;
5131
5138
  phone_number: string | null;
5132
- thumbnail: string;
5133
5139
  identifier: string | null;
5134
- additional_attributes: Record<string, unknown>;
5135
- custom_attributes: Record<string, unknown>;
5136
- blocked: boolean;
5137
- customer_stage: string;
5138
5140
  customer_stage_explanation: string | null;
5139
5141
  type?: string | undefined;
5142
+ thumbnail?: string | undefined;
5143
+ additional_attributes?: Record<string, unknown> | undefined;
5144
+ custom_attributes?: Record<string, unknown> | undefined;
5145
+ blocked?: boolean | undefined;
5146
+ customer_stage?: string | undefined;
5140
5147
  };
5141
5148
  additional_attributes: Record<string, unknown>;
5142
5149
  inbox_id: number;
@@ -5252,14 +5259,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
5252
5259
  name: string | null;
5253
5260
  email: string | null;
5254
5261
  phone_number: string | null;
5255
- thumbnail: string;
5256
5262
  identifier: string | null;
5257
- additional_attributes: Record<string, unknown>;
5258
- custom_attributes: Record<string, unknown>;
5259
- blocked: boolean;
5260
- customer_stage: string;
5261
5263
  customer_stage_explanation: string | null;
5262
5264
  type?: string | undefined;
5265
+ thumbnail?: string | undefined;
5266
+ additional_attributes?: Record<string, unknown> | undefined;
5267
+ custom_attributes?: Record<string, unknown> | undefined;
5268
+ blocked?: boolean | undefined;
5269
+ customer_stage?: string | undefined;
5263
5270
  };
5264
5271
  additional_attributes: Record<string, unknown>;
5265
5272
  inbox_id: number;
@@ -5491,14 +5498,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
5491
5498
  name: string | null;
5492
5499
  email: string | null;
5493
5500
  phone_number: string | null;
5494
- thumbnail: string;
5495
5501
  identifier: string | null;
5496
- additional_attributes: Record<string, unknown>;
5497
- custom_attributes: Record<string, unknown>;
5498
- blocked: boolean;
5499
- customer_stage: string;
5500
5502
  customer_stage_explanation: string | null;
5501
5503
  type?: string | undefined;
5504
+ thumbnail?: string | undefined;
5505
+ additional_attributes?: Record<string, unknown> | undefined;
5506
+ custom_attributes?: Record<string, unknown> | undefined;
5507
+ blocked?: boolean | undefined;
5508
+ customer_stage?: string | undefined;
5502
5509
  };
5503
5510
  additional_attributes: Record<string, unknown>;
5504
5511
  inbox_id: number;
@@ -5657,14 +5664,14 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
5657
5664
  name: string | null;
5658
5665
  email: string | null;
5659
5666
  phone_number: string | null;
5660
- thumbnail: string;
5661
5667
  identifier: string | null;
5662
- additional_attributes: Record<string, unknown>;
5663
- custom_attributes: Record<string, unknown>;
5664
- blocked: boolean;
5665
- customer_stage: string;
5666
5668
  customer_stage_explanation: string | null;
5667
5669
  type?: string | undefined;
5670
+ thumbnail?: string | undefined;
5671
+ additional_attributes?: Record<string, unknown> | undefined;
5672
+ custom_attributes?: Record<string, unknown> | undefined;
5673
+ blocked?: boolean | undefined;
5674
+ customer_stage?: string | undefined;
5668
5675
  };
5669
5676
  additional_attributes: Record<string, unknown>;
5670
5677
  inbox_id: number;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/webhooks/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB;;GAEG;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;;;;EAGzB,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAGH,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAWnC,CAAC;AAGjB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;EAK1C,CAAC;AAGH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAgB,CAAC;AAGjD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8B/B,CAAC;AAGH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BpC,CAAC;AAyBH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG7B,CAAC;AAEH;;GAEG;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,sCAAsC,CAC9C,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,+BAA+B,CACvC,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,6BAA6B,CACrC,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/webhooks/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB;;GAEG;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;;;;EAGzB,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAGH,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAWnC,CAAC;AAGjB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;EAK1C,CAAC;AAIH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM9B,CAAC;AAGH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8B/B,CAAC;AAGH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BpC,CAAC;AAyBH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG7B,CAAC;AAEH;;GAEG;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,sCAAsC,CAC9C,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,+BAA+B,CACvC,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,6BAA6B,CACrC,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
@@ -50,8 +50,15 @@ export const NestedMessageConversationSchema = z.object({
50
50
  last_activity_at: z.number(),
51
51
  contact_inbox: MinimalContactInboxSchema,
52
52
  });
53
- // Message sender in webhook (same as ContactSchema but with type required)
54
- export const MessageSenderSchema = ContactSchema;
53
+ // Message sender in webhook (relaxed version of ContactSchema for historical messages)
54
+ // Historical messages may have incomplete sender data, so we make fields optional
55
+ export const MessageSenderSchema = ContactSchema.extend({
56
+ thumbnail: z.string().optional(),
57
+ additional_attributes: z.record(z.unknown()).optional(),
58
+ custom_attributes: z.record(z.unknown()).optional(),
59
+ blocked: z.boolean().optional(),
60
+ customer_stage: z.string().optional(),
61
+ });
55
62
  // Full message in webhook payload (extends beyond basic MessageSchema)
56
63
  export const WebhookMessageSchema = z.object({
57
64
  id: z.number(),
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/webhooks/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/webhooks/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltade/envoy-sdk",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "type": "module",
5
5
  "description": "A comprehensive TypeScript SDK for the Envoy API with built-in error handling and resource-based architecture",
6
6
  "main": "./dist/index.js",