@voltade/envoy-sdk 1.6.1 → 1.6.2
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.
|
@@ -58,16 +58,28 @@ export declare const TemplateParamsSchema: z.ZodObject<{
|
|
|
58
58
|
}>;
|
|
59
59
|
export declare const AttachmentFileTypeSchema: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
60
60
|
export declare const AttachmentSchema: z.ZodObject<{
|
|
61
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
61
62
|
file_type: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
62
|
-
|
|
63
|
+
data_url: z.ZodOptional<z.ZodString>;
|
|
64
|
+
thumb_url: z.ZodOptional<z.ZodString>;
|
|
65
|
+
download_url: z.ZodOptional<z.ZodString>;
|
|
66
|
+
file_size: z.ZodOptional<z.ZodNumber>;
|
|
63
67
|
filename: z.ZodOptional<z.ZodString>;
|
|
64
68
|
}, "strip", z.ZodTypeAny, {
|
|
65
69
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
66
|
-
|
|
70
|
+
id?: number | undefined;
|
|
71
|
+
data_url?: string | undefined;
|
|
72
|
+
thumb_url?: string | undefined;
|
|
73
|
+
download_url?: string | undefined;
|
|
74
|
+
file_size?: number | undefined;
|
|
67
75
|
filename?: string | undefined;
|
|
68
76
|
}, {
|
|
69
77
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
70
|
-
|
|
78
|
+
id?: number | undefined;
|
|
79
|
+
data_url?: string | undefined;
|
|
80
|
+
thumb_url?: string | undefined;
|
|
81
|
+
download_url?: string | undefined;
|
|
82
|
+
file_size?: number | undefined;
|
|
71
83
|
filename?: string | undefined;
|
|
72
84
|
}>;
|
|
73
85
|
export declare const FileAttachmentInputSchema: z.ZodType<File | Blob, z.ZodTypeDef, File | Blob>;
|
|
@@ -453,16 +465,28 @@ export declare const CreateMessageParamsSchema: z.ZodObject<{
|
|
|
453
465
|
}>>;
|
|
454
466
|
/** Existing attachment references (URLs) */
|
|
455
467
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
468
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
456
469
|
file_type: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
457
|
-
|
|
470
|
+
data_url: z.ZodOptional<z.ZodString>;
|
|
471
|
+
thumb_url: z.ZodOptional<z.ZodString>;
|
|
472
|
+
download_url: z.ZodOptional<z.ZodString>;
|
|
473
|
+
file_size: z.ZodOptional<z.ZodNumber>;
|
|
458
474
|
filename: z.ZodOptional<z.ZodString>;
|
|
459
475
|
}, "strip", z.ZodTypeAny, {
|
|
460
476
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
461
|
-
|
|
477
|
+
id?: number | undefined;
|
|
478
|
+
data_url?: string | undefined;
|
|
479
|
+
thumb_url?: string | undefined;
|
|
480
|
+
download_url?: string | undefined;
|
|
481
|
+
file_size?: number | undefined;
|
|
462
482
|
filename?: string | undefined;
|
|
463
483
|
}, {
|
|
464
484
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
465
|
-
|
|
485
|
+
id?: number | undefined;
|
|
486
|
+
data_url?: string | undefined;
|
|
487
|
+
thumb_url?: string | undefined;
|
|
488
|
+
download_url?: string | undefined;
|
|
489
|
+
file_size?: number | undefined;
|
|
466
490
|
filename?: string | undefined;
|
|
467
491
|
}>, "many">>;
|
|
468
492
|
/** File attachments to upload (File or Blob objects) */
|
|
@@ -537,7 +561,11 @@ export declare const CreateMessageParamsSchema: z.ZodObject<{
|
|
|
537
561
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
538
562
|
attachments?: {
|
|
539
563
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
540
|
-
|
|
564
|
+
id?: number | undefined;
|
|
565
|
+
data_url?: string | undefined;
|
|
566
|
+
thumb_url?: string | undefined;
|
|
567
|
+
download_url?: string | undefined;
|
|
568
|
+
file_size?: number | undefined;
|
|
541
569
|
filename?: string | undefined;
|
|
542
570
|
}[] | undefined;
|
|
543
571
|
file_attachments?: (File | Blob)[] | undefined;
|
|
@@ -611,7 +639,11 @@ export declare const CreateMessageParamsSchema: z.ZodObject<{
|
|
|
611
639
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
612
640
|
attachments?: {
|
|
613
641
|
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
614
|
-
|
|
642
|
+
id?: number | undefined;
|
|
643
|
+
data_url?: string | undefined;
|
|
644
|
+
thumb_url?: string | undefined;
|
|
645
|
+
download_url?: string | undefined;
|
|
646
|
+
file_size?: number | undefined;
|
|
615
647
|
filename?: string | undefined;
|
|
616
648
|
}[] | undefined;
|
|
617
649
|
file_attachments?: (File | Blob)[] | undefined;
|
|
@@ -628,6 +660,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
628
660
|
created_at: z.ZodNumber;
|
|
629
661
|
private: z.ZodBoolean;
|
|
630
662
|
conversation_id: z.ZodNumber;
|
|
663
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
664
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
665
|
+
file_type: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
666
|
+
data_url: z.ZodOptional<z.ZodString>;
|
|
667
|
+
thumb_url: z.ZodOptional<z.ZodString>;
|
|
668
|
+
download_url: z.ZodOptional<z.ZodString>;
|
|
669
|
+
file_size: z.ZodOptional<z.ZodNumber>;
|
|
670
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
671
|
+
}, "strip", z.ZodTypeAny, {
|
|
672
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
673
|
+
id?: number | undefined;
|
|
674
|
+
data_url?: string | undefined;
|
|
675
|
+
thumb_url?: string | undefined;
|
|
676
|
+
download_url?: string | undefined;
|
|
677
|
+
file_size?: number | undefined;
|
|
678
|
+
filename?: string | undefined;
|
|
679
|
+
}, {
|
|
680
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
681
|
+
id?: number | undefined;
|
|
682
|
+
data_url?: string | undefined;
|
|
683
|
+
thumb_url?: string | undefined;
|
|
684
|
+
download_url?: string | undefined;
|
|
685
|
+
file_size?: number | undefined;
|
|
686
|
+
filename?: string | undefined;
|
|
687
|
+
}>, "many">>;
|
|
631
688
|
sender: z.ZodOptional<z.ZodObject<{
|
|
632
689
|
id: z.ZodNumber;
|
|
633
690
|
name: z.ZodString;
|
|
@@ -845,6 +902,15 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
845
902
|
article_sources?: unknown[] | undefined;
|
|
846
903
|
}>, "many">>;
|
|
847
904
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
905
|
+
attachments?: {
|
|
906
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
907
|
+
id?: number | undefined;
|
|
908
|
+
data_url?: string | undefined;
|
|
909
|
+
thumb_url?: string | undefined;
|
|
910
|
+
download_url?: string | undefined;
|
|
911
|
+
file_size?: number | undefined;
|
|
912
|
+
filename?: string | undefined;
|
|
913
|
+
}[] | undefined;
|
|
848
914
|
}, {
|
|
849
915
|
id: number;
|
|
850
916
|
created_at: number;
|
|
@@ -907,6 +973,15 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
907
973
|
article_sources?: unknown[] | undefined;
|
|
908
974
|
}>, "many">>;
|
|
909
975
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
976
|
+
attachments?: {
|
|
977
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
978
|
+
id?: number | undefined;
|
|
979
|
+
data_url?: string | undefined;
|
|
980
|
+
thumb_url?: string | undefined;
|
|
981
|
+
download_url?: string | undefined;
|
|
982
|
+
file_size?: number | undefined;
|
|
983
|
+
filename?: string | undefined;
|
|
984
|
+
}[] | undefined;
|
|
910
985
|
}>;
|
|
911
986
|
export declare const EscalationTypeSchema: z.ZodEnum<["agent", "team"]>;
|
|
912
987
|
export declare const PrioritySchema: z.ZodEnum<["low", "medium", "high", "urgent"]>;
|
|
@@ -1249,6 +1324,31 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
1249
1324
|
created_at: z.ZodNumber;
|
|
1250
1325
|
private: z.ZodBoolean;
|
|
1251
1326
|
conversation_id: z.ZodNumber;
|
|
1327
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1328
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
1329
|
+
file_type: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
1330
|
+
data_url: z.ZodOptional<z.ZodString>;
|
|
1331
|
+
thumb_url: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
download_url: z.ZodOptional<z.ZodString>;
|
|
1333
|
+
file_size: z.ZodOptional<z.ZodNumber>;
|
|
1334
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
}, "strip", z.ZodTypeAny, {
|
|
1336
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1337
|
+
id?: number | undefined;
|
|
1338
|
+
data_url?: string | undefined;
|
|
1339
|
+
thumb_url?: string | undefined;
|
|
1340
|
+
download_url?: string | undefined;
|
|
1341
|
+
file_size?: number | undefined;
|
|
1342
|
+
filename?: string | undefined;
|
|
1343
|
+
}, {
|
|
1344
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1345
|
+
id?: number | undefined;
|
|
1346
|
+
data_url?: string | undefined;
|
|
1347
|
+
thumb_url?: string | undefined;
|
|
1348
|
+
download_url?: string | undefined;
|
|
1349
|
+
file_size?: number | undefined;
|
|
1350
|
+
filename?: string | undefined;
|
|
1351
|
+
}>, "many">>;
|
|
1252
1352
|
sender: z.ZodOptional<z.ZodObject<{
|
|
1253
1353
|
id: z.ZodNumber;
|
|
1254
1354
|
name: z.ZodString;
|
|
@@ -1466,6 +1566,15 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
1466
1566
|
article_sources?: unknown[] | undefined;
|
|
1467
1567
|
}>, "many">>;
|
|
1468
1568
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
1569
|
+
attachments?: {
|
|
1570
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1571
|
+
id?: number | undefined;
|
|
1572
|
+
data_url?: string | undefined;
|
|
1573
|
+
thumb_url?: string | undefined;
|
|
1574
|
+
download_url?: string | undefined;
|
|
1575
|
+
file_size?: number | undefined;
|
|
1576
|
+
filename?: string | undefined;
|
|
1577
|
+
}[] | undefined;
|
|
1469
1578
|
}, {
|
|
1470
1579
|
id: number;
|
|
1471
1580
|
created_at: number;
|
|
@@ -1528,6 +1637,15 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
1528
1637
|
article_sources?: unknown[] | undefined;
|
|
1529
1638
|
}>, "many">>;
|
|
1530
1639
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
1640
|
+
attachments?: {
|
|
1641
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1642
|
+
id?: number | undefined;
|
|
1643
|
+
data_url?: string | undefined;
|
|
1644
|
+
thumb_url?: string | undefined;
|
|
1645
|
+
download_url?: string | undefined;
|
|
1646
|
+
file_size?: number | undefined;
|
|
1647
|
+
filename?: string | undefined;
|
|
1648
|
+
}[] | undefined;
|
|
1531
1649
|
}>, "many">>;
|
|
1532
1650
|
meta: z.ZodOptional<z.ZodObject<{
|
|
1533
1651
|
sender: z.ZodObject<{
|
|
@@ -1732,6 +1850,15 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
1732
1850
|
article_sources?: unknown[] | undefined;
|
|
1733
1851
|
}>, "many">>;
|
|
1734
1852
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
1853
|
+
attachments?: {
|
|
1854
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1855
|
+
id?: number | undefined;
|
|
1856
|
+
data_url?: string | undefined;
|
|
1857
|
+
thumb_url?: string | undefined;
|
|
1858
|
+
download_url?: string | undefined;
|
|
1859
|
+
file_size?: number | undefined;
|
|
1860
|
+
filename?: string | undefined;
|
|
1861
|
+
}[] | undefined;
|
|
1735
1862
|
}[] | undefined;
|
|
1736
1863
|
meta?: {
|
|
1737
1864
|
sender: {
|
|
@@ -1853,6 +1980,15 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
1853
1980
|
article_sources?: unknown[] | undefined;
|
|
1854
1981
|
}>, "many">>;
|
|
1855
1982
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
1983
|
+
attachments?: {
|
|
1984
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
1985
|
+
id?: number | undefined;
|
|
1986
|
+
data_url?: string | undefined;
|
|
1987
|
+
thumb_url?: string | undefined;
|
|
1988
|
+
download_url?: string | undefined;
|
|
1989
|
+
file_size?: number | undefined;
|
|
1990
|
+
filename?: string | undefined;
|
|
1991
|
+
}[] | undefined;
|
|
1856
1992
|
}[] | undefined;
|
|
1857
1993
|
meta?: {
|
|
1858
1994
|
sender: {
|
|
@@ -1985,6 +2121,31 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
1985
2121
|
created_at: z.ZodNumber;
|
|
1986
2122
|
private: z.ZodBoolean;
|
|
1987
2123
|
conversation_id: z.ZodNumber;
|
|
2124
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2125
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
2126
|
+
file_type: z.ZodEnum<["image", "audio", "video", "document", "sticker"]>;
|
|
2127
|
+
data_url: z.ZodOptional<z.ZodString>;
|
|
2128
|
+
thumb_url: z.ZodOptional<z.ZodString>;
|
|
2129
|
+
download_url: z.ZodOptional<z.ZodString>;
|
|
2130
|
+
file_size: z.ZodOptional<z.ZodNumber>;
|
|
2131
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
}, "strip", z.ZodTypeAny, {
|
|
2133
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2134
|
+
id?: number | undefined;
|
|
2135
|
+
data_url?: string | undefined;
|
|
2136
|
+
thumb_url?: string | undefined;
|
|
2137
|
+
download_url?: string | undefined;
|
|
2138
|
+
file_size?: number | undefined;
|
|
2139
|
+
filename?: string | undefined;
|
|
2140
|
+
}, {
|
|
2141
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2142
|
+
id?: number | undefined;
|
|
2143
|
+
data_url?: string | undefined;
|
|
2144
|
+
thumb_url?: string | undefined;
|
|
2145
|
+
download_url?: string | undefined;
|
|
2146
|
+
file_size?: number | undefined;
|
|
2147
|
+
filename?: string | undefined;
|
|
2148
|
+
}>, "many">>;
|
|
1988
2149
|
sender: z.ZodOptional<z.ZodObject<{
|
|
1989
2150
|
id: z.ZodNumber;
|
|
1990
2151
|
name: z.ZodString;
|
|
@@ -2202,6 +2363,15 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
2202
2363
|
article_sources?: unknown[] | undefined;
|
|
2203
2364
|
}>, "many">>;
|
|
2204
2365
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
2366
|
+
attachments?: {
|
|
2367
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2368
|
+
id?: number | undefined;
|
|
2369
|
+
data_url?: string | undefined;
|
|
2370
|
+
thumb_url?: string | undefined;
|
|
2371
|
+
download_url?: string | undefined;
|
|
2372
|
+
file_size?: number | undefined;
|
|
2373
|
+
filename?: string | undefined;
|
|
2374
|
+
}[] | undefined;
|
|
2205
2375
|
}, {
|
|
2206
2376
|
id: number;
|
|
2207
2377
|
created_at: number;
|
|
@@ -2264,6 +2434,15 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
2264
2434
|
article_sources?: unknown[] | undefined;
|
|
2265
2435
|
}>, "many">>;
|
|
2266
2436
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
2437
|
+
attachments?: {
|
|
2438
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2439
|
+
id?: number | undefined;
|
|
2440
|
+
data_url?: string | undefined;
|
|
2441
|
+
thumb_url?: string | undefined;
|
|
2442
|
+
download_url?: string | undefined;
|
|
2443
|
+
file_size?: number | undefined;
|
|
2444
|
+
filename?: string | undefined;
|
|
2445
|
+
}[] | undefined;
|
|
2267
2446
|
}>, "many">;
|
|
2268
2447
|
}, "strip", z.ZodTypeAny, {
|
|
2269
2448
|
meta: {
|
|
@@ -2340,6 +2519,15 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
2340
2519
|
article_sources?: unknown[] | undefined;
|
|
2341
2520
|
}>, "many">>;
|
|
2342
2521
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
2522
|
+
attachments?: {
|
|
2523
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2524
|
+
id?: number | undefined;
|
|
2525
|
+
data_url?: string | undefined;
|
|
2526
|
+
thumb_url?: string | undefined;
|
|
2527
|
+
download_url?: string | undefined;
|
|
2528
|
+
file_size?: number | undefined;
|
|
2529
|
+
filename?: string | undefined;
|
|
2530
|
+
}[] | undefined;
|
|
2343
2531
|
}[];
|
|
2344
2532
|
}, {
|
|
2345
2533
|
meta: {
|
|
@@ -2416,6 +2604,15 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
2416
2604
|
article_sources?: unknown[] | undefined;
|
|
2417
2605
|
}>, "many">>;
|
|
2418
2606
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
2607
|
+
attachments?: {
|
|
2608
|
+
file_type: "image" | "audio" | "video" | "document" | "sticker";
|
|
2609
|
+
id?: number | undefined;
|
|
2610
|
+
data_url?: string | undefined;
|
|
2611
|
+
thumb_url?: string | undefined;
|
|
2612
|
+
download_url?: string | undefined;
|
|
2613
|
+
file_size?: number | undefined;
|
|
2614
|
+
filename?: string | undefined;
|
|
2615
|
+
}[] | undefined;
|
|
2419
2616
|
}[];
|
|
2420
2617
|
}>;
|
|
2421
2618
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AAGH,eAAO,MAAM,iBAAiB,qCAAmC,CAAC;AAGlE,eAAO,MAAM,iBAAiB,mFAO5B,CAAC;AAGH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe/B,CAAC;AAGH,eAAO,MAAM,wBAAwB,+DAMnC,CAAC;AAGH,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -38,10 +38,14 @@ export const AttachmentFileTypeSchema = z.enum([
|
|
|
38
38
|
"document",
|
|
39
39
|
"sticker",
|
|
40
40
|
]);
|
|
41
|
-
// Attachment schema for
|
|
41
|
+
// Attachment schema for message responses
|
|
42
42
|
export const AttachmentSchema = z.object({
|
|
43
|
+
id: z.number().optional(),
|
|
43
44
|
file_type: AttachmentFileTypeSchema,
|
|
44
|
-
|
|
45
|
+
data_url: z.string().optional(),
|
|
46
|
+
thumb_url: z.string().optional(),
|
|
47
|
+
download_url: z.string().optional(),
|
|
48
|
+
file_size: z.number().optional(),
|
|
45
49
|
filename: z.string().optional(),
|
|
46
50
|
});
|
|
47
51
|
// File attachment input schema (for uploading files)
|
|
@@ -106,6 +110,7 @@ export const MessageSchema = z.object({
|
|
|
106
110
|
created_at: z.number(),
|
|
107
111
|
private: z.boolean(),
|
|
108
112
|
conversation_id: z.number(),
|
|
113
|
+
attachments: z.array(AttachmentSchema).optional(),
|
|
109
114
|
sender: SenderSchema.optional(),
|
|
110
115
|
additional_attributes: MessageAdditionalAttributesSchema.optional(),
|
|
111
116
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AAEH,uBAAuB;AACvB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC,CAAC;AAElE,uBAAuB;AACvB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC;IACtC,MAAM;IACN,cAAc;IACd,OAAO;IACP,MAAM;IACN,SAAS;IACT,gBAAgB;CACjB,CAAC,CAAC;AAEH,+CAA+C;AAC/C,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,gBAAgB,EAAE,CAAC;SAChB,MAAM,CAAC;QACN,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;QACrC,MAAM,EAAE,CAAC;aACN,MAAM,CAAC;YACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SAClC,CAAC;aACD,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAC;AAEH,8BAA8B;AAC9B,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,OAAO;IACP,OAAO;IACP,OAAO;IACP,UAAU;IACV,SAAS;CACV,CAAC,CAAC;AAEH,
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED