@voltade/envoy-sdk 1.2.7 → 1.2.8
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.
|
@@ -3,31 +3,31 @@ import { z } from 'zod';
|
|
|
3
3
|
* Zod Schemas for Conversations
|
|
4
4
|
*/
|
|
5
5
|
export declare const MessageTypeSchema: z.ZodEnum<["incoming", "outgoing"]>;
|
|
6
|
-
export declare const ContentTypeSchema: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
6
|
+
export declare const ContentTypeSchema: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
7
7
|
export declare const CreateMessageParamsSchema: z.ZodObject<{
|
|
8
8
|
content: z.ZodString;
|
|
9
9
|
message_type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["incoming", "outgoing"]>>>;
|
|
10
10
|
private: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11
|
-
content_type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["text", "input_select", "cards", "form", "article"]>>>;
|
|
11
|
+
content_type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>>>;
|
|
12
12
|
content_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
content: string;
|
|
15
15
|
message_type: "incoming" | "outgoing";
|
|
16
16
|
private: boolean;
|
|
17
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
17
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
18
18
|
content_attributes?: Record<string, unknown> | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
content: string;
|
|
21
21
|
message_type?: "incoming" | "outgoing" | undefined;
|
|
22
22
|
private?: boolean | undefined;
|
|
23
|
-
content_type?: "text" | "input_select" | "cards" | "form" | "article" | undefined;
|
|
23
|
+
content_type?: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email" | undefined;
|
|
24
24
|
content_attributes?: Record<string, unknown> | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
export declare const MessageSchema: z.ZodObject<{
|
|
27
27
|
id: z.ZodNumber;
|
|
28
28
|
content: z.ZodString;
|
|
29
29
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
30
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
30
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
31
31
|
content_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32
32
|
created_at: z.ZodNumber;
|
|
33
33
|
private: z.ZodBoolean;
|
|
@@ -54,7 +54,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
54
54
|
content: string;
|
|
55
55
|
message_type: "incoming" | "outgoing";
|
|
56
56
|
private: boolean;
|
|
57
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
57
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
58
58
|
content_attributes: Record<string, unknown>;
|
|
59
59
|
conversation_id: number;
|
|
60
60
|
sender?: {
|
|
@@ -69,7 +69,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
69
69
|
content: string;
|
|
70
70
|
message_type: "incoming" | "outgoing";
|
|
71
71
|
private: boolean;
|
|
72
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
72
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
73
73
|
content_attributes: Record<string, unknown>;
|
|
74
74
|
conversation_id: number;
|
|
75
75
|
sender?: {
|
|
@@ -415,7 +415,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
415
415
|
id: z.ZodNumber;
|
|
416
416
|
content: z.ZodString;
|
|
417
417
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
418
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
418
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
419
419
|
content_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
420
420
|
created_at: z.ZodNumber;
|
|
421
421
|
private: z.ZodBoolean;
|
|
@@ -442,7 +442,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
442
442
|
content: string;
|
|
443
443
|
message_type: "incoming" | "outgoing";
|
|
444
444
|
private: boolean;
|
|
445
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
445
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
446
446
|
content_attributes: Record<string, unknown>;
|
|
447
447
|
conversation_id: number;
|
|
448
448
|
sender?: {
|
|
@@ -457,7 +457,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
457
457
|
content: string;
|
|
458
458
|
message_type: "incoming" | "outgoing";
|
|
459
459
|
private: boolean;
|
|
460
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
460
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
461
461
|
content_attributes: Record<string, unknown>;
|
|
462
462
|
conversation_id: number;
|
|
463
463
|
sender?: {
|
|
@@ -637,7 +637,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
637
637
|
content: string;
|
|
638
638
|
message_type: "incoming" | "outgoing";
|
|
639
639
|
private: boolean;
|
|
640
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
640
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
641
641
|
content_attributes: Record<string, unknown>;
|
|
642
642
|
conversation_id: number;
|
|
643
643
|
sender?: {
|
|
@@ -711,7 +711,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
711
711
|
content: string;
|
|
712
712
|
message_type: "incoming" | "outgoing";
|
|
713
713
|
private: boolean;
|
|
714
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
714
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
715
715
|
content_attributes: Record<string, unknown>;
|
|
716
716
|
conversation_id: number;
|
|
717
717
|
sender?: {
|
|
@@ -824,7 +824,7 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
824
824
|
id: z.ZodNumber;
|
|
825
825
|
content: z.ZodString;
|
|
826
826
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
827
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
827
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
828
828
|
content_attributes: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
829
829
|
created_at: z.ZodNumber;
|
|
830
830
|
private: z.ZodBoolean;
|
|
@@ -851,7 +851,7 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
851
851
|
content: string;
|
|
852
852
|
message_type: "incoming" | "outgoing";
|
|
853
853
|
private: boolean;
|
|
854
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
854
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
855
855
|
content_attributes: Record<string, unknown>;
|
|
856
856
|
conversation_id: number;
|
|
857
857
|
sender?: {
|
|
@@ -866,7 +866,7 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
866
866
|
content: string;
|
|
867
867
|
message_type: "incoming" | "outgoing";
|
|
868
868
|
private: boolean;
|
|
869
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
869
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
870
870
|
content_attributes: Record<string, unknown>;
|
|
871
871
|
conversation_id: number;
|
|
872
872
|
sender?: {
|
|
@@ -895,7 +895,7 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
895
895
|
content: string;
|
|
896
896
|
message_type: "incoming" | "outgoing";
|
|
897
897
|
private: boolean;
|
|
898
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
898
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
899
899
|
content_attributes: Record<string, unknown>;
|
|
900
900
|
conversation_id: number;
|
|
901
901
|
sender?: {
|
|
@@ -924,7 +924,7 @@ export declare const MessagesResponseSchema: z.ZodObject<{
|
|
|
924
924
|
content: string;
|
|
925
925
|
message_type: "incoming" | "outgoing";
|
|
926
926
|
private: boolean;
|
|
927
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
927
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
928
928
|
content_attributes: Record<string, unknown>;
|
|
929
929
|
conversation_id: number;
|
|
930
930
|
sender?: {
|
|
@@ -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,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -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;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../resources/conversations/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -274,7 +274,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
274
274
|
private: z.ZodBoolean;
|
|
275
275
|
status: z.ZodString;
|
|
276
276
|
source_id: z.ZodNullable<z.ZodString>;
|
|
277
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
277
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
278
278
|
content_attributes: z.ZodObject<{
|
|
279
279
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
280
280
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -368,7 +368,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
368
368
|
content: string | null;
|
|
369
369
|
message_type: number;
|
|
370
370
|
private: boolean;
|
|
371
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
371
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
372
372
|
content_attributes: {
|
|
373
373
|
in_reply_to?: unknown;
|
|
374
374
|
} & {
|
|
@@ -418,7 +418,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
418
418
|
content: string | null;
|
|
419
419
|
message_type: number;
|
|
420
420
|
private: boolean;
|
|
421
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
421
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
422
422
|
content_attributes: {
|
|
423
423
|
in_reply_to?: unknown;
|
|
424
424
|
} & {
|
|
@@ -694,7 +694,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
694
694
|
private: z.ZodBoolean;
|
|
695
695
|
status: z.ZodString;
|
|
696
696
|
source_id: z.ZodNullable<z.ZodString>;
|
|
697
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
697
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
698
698
|
content_attributes: z.ZodObject<{
|
|
699
699
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
700
700
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -788,7 +788,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
788
788
|
content: string | null;
|
|
789
789
|
message_type: number;
|
|
790
790
|
private: boolean;
|
|
791
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
791
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
792
792
|
content_attributes: {
|
|
793
793
|
in_reply_to?: unknown;
|
|
794
794
|
} & {
|
|
@@ -838,7 +838,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
838
838
|
content: string | null;
|
|
839
839
|
message_type: number;
|
|
840
840
|
private: boolean;
|
|
841
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
841
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
842
842
|
content_attributes: {
|
|
843
843
|
in_reply_to?: unknown;
|
|
844
844
|
} & {
|
|
@@ -1067,7 +1067,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
1067
1067
|
content: string | null;
|
|
1068
1068
|
message_type: number;
|
|
1069
1069
|
private: boolean;
|
|
1070
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1070
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1071
1071
|
content_attributes: {
|
|
1072
1072
|
in_reply_to?: unknown;
|
|
1073
1073
|
} & {
|
|
@@ -1190,7 +1190,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
1190
1190
|
content: string | null;
|
|
1191
1191
|
message_type: number;
|
|
1192
1192
|
private: boolean;
|
|
1193
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1193
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1194
1194
|
content_attributes: {
|
|
1195
1195
|
in_reply_to?: unknown;
|
|
1196
1196
|
} & {
|
|
@@ -1265,7 +1265,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1265
1265
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1266
1266
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
1267
1267
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1268
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
1268
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
1269
1269
|
content: z.ZodNullable<z.ZodString>;
|
|
1270
1270
|
conversation: z.ZodObject<{
|
|
1271
1271
|
additional_attributes: z.ZodObject<{
|
|
@@ -1400,7 +1400,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1400
1400
|
private: z.ZodBoolean;
|
|
1401
1401
|
status: z.ZodString;
|
|
1402
1402
|
source_id: z.ZodNullable<z.ZodString>;
|
|
1403
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
1403
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
1404
1404
|
content_attributes: z.ZodObject<{
|
|
1405
1405
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
1406
1406
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -1494,7 +1494,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1494
1494
|
content: string | null;
|
|
1495
1495
|
message_type: number;
|
|
1496
1496
|
private: boolean;
|
|
1497
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1497
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1498
1498
|
content_attributes: {
|
|
1499
1499
|
in_reply_to?: unknown;
|
|
1500
1500
|
} & {
|
|
@@ -1544,7 +1544,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1544
1544
|
content: string | null;
|
|
1545
1545
|
message_type: number;
|
|
1546
1546
|
private: boolean;
|
|
1547
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1547
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1548
1548
|
content_attributes: {
|
|
1549
1549
|
in_reply_to?: unknown;
|
|
1550
1550
|
} & {
|
|
@@ -1773,7 +1773,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1773
1773
|
content: string | null;
|
|
1774
1774
|
message_type: number;
|
|
1775
1775
|
private: boolean;
|
|
1776
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1776
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1777
1777
|
content_attributes: {
|
|
1778
1778
|
in_reply_to?: unknown;
|
|
1779
1779
|
} & {
|
|
@@ -1896,7 +1896,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1896
1896
|
content: string | null;
|
|
1897
1897
|
message_type: number;
|
|
1898
1898
|
private: boolean;
|
|
1899
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
1899
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
1900
1900
|
content_attributes: {
|
|
1901
1901
|
in_reply_to?: unknown;
|
|
1902
1902
|
} & {
|
|
@@ -2036,7 +2036,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2036
2036
|
content: string | null;
|
|
2037
2037
|
message_type: "incoming" | "outgoing";
|
|
2038
2038
|
private: boolean;
|
|
2039
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2039
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2040
2040
|
content_attributes: {
|
|
2041
2041
|
in_reply_to?: unknown;
|
|
2042
2042
|
} & {
|
|
@@ -2134,7 +2134,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2134
2134
|
content: string | null;
|
|
2135
2135
|
message_type: number;
|
|
2136
2136
|
private: boolean;
|
|
2137
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2137
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2138
2138
|
content_attributes: {
|
|
2139
2139
|
in_reply_to?: unknown;
|
|
2140
2140
|
} & {
|
|
@@ -2202,7 +2202,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2202
2202
|
content: string | null;
|
|
2203
2203
|
message_type: "incoming" | "outgoing";
|
|
2204
2204
|
private: boolean;
|
|
2205
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2205
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2206
2206
|
content_attributes: {
|
|
2207
2207
|
in_reply_to?: unknown;
|
|
2208
2208
|
} & {
|
|
@@ -2300,7 +2300,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2300
2300
|
content: string | null;
|
|
2301
2301
|
message_type: number;
|
|
2302
2302
|
private: boolean;
|
|
2303
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2303
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2304
2304
|
content_attributes: {
|
|
2305
2305
|
in_reply_to?: unknown;
|
|
2306
2306
|
} & {
|
|
@@ -2381,7 +2381,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2381
2381
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2382
2382
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
2383
2383
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2384
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
2384
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
2385
2385
|
content: z.ZodNullable<z.ZodString>;
|
|
2386
2386
|
conversation: z.ZodObject<{
|
|
2387
2387
|
additional_attributes: z.ZodObject<{
|
|
@@ -2516,7 +2516,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2516
2516
|
private: z.ZodBoolean;
|
|
2517
2517
|
status: z.ZodString;
|
|
2518
2518
|
source_id: z.ZodNullable<z.ZodString>;
|
|
2519
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
2519
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
2520
2520
|
content_attributes: z.ZodObject<{
|
|
2521
2521
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
2522
2522
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -2610,7 +2610,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2610
2610
|
content: string | null;
|
|
2611
2611
|
message_type: number;
|
|
2612
2612
|
private: boolean;
|
|
2613
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2613
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2614
2614
|
content_attributes: {
|
|
2615
2615
|
in_reply_to?: unknown;
|
|
2616
2616
|
} & {
|
|
@@ -2660,7 +2660,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2660
2660
|
content: string | null;
|
|
2661
2661
|
message_type: number;
|
|
2662
2662
|
private: boolean;
|
|
2663
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2663
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2664
2664
|
content_attributes: {
|
|
2665
2665
|
in_reply_to?: unknown;
|
|
2666
2666
|
} & {
|
|
@@ -2889,7 +2889,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2889
2889
|
content: string | null;
|
|
2890
2890
|
message_type: number;
|
|
2891
2891
|
private: boolean;
|
|
2892
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
2892
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
2893
2893
|
content_attributes: {
|
|
2894
2894
|
in_reply_to?: unknown;
|
|
2895
2895
|
} & {
|
|
@@ -3012,7 +3012,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3012
3012
|
content: string | null;
|
|
3013
3013
|
message_type: number;
|
|
3014
3014
|
private: boolean;
|
|
3015
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3015
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3016
3016
|
content_attributes: {
|
|
3017
3017
|
in_reply_to?: unknown;
|
|
3018
3018
|
} & {
|
|
@@ -3152,7 +3152,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3152
3152
|
content: string | null;
|
|
3153
3153
|
message_type: "incoming" | "outgoing";
|
|
3154
3154
|
private: boolean;
|
|
3155
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3155
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3156
3156
|
content_attributes: {
|
|
3157
3157
|
in_reply_to?: unknown;
|
|
3158
3158
|
} & {
|
|
@@ -3250,7 +3250,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3250
3250
|
content: string | null;
|
|
3251
3251
|
message_type: number;
|
|
3252
3252
|
private: boolean;
|
|
3253
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3253
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3254
3254
|
content_attributes: {
|
|
3255
3255
|
in_reply_to?: unknown;
|
|
3256
3256
|
} & {
|
|
@@ -3318,7 +3318,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3318
3318
|
content: string | null;
|
|
3319
3319
|
message_type: "incoming" | "outgoing";
|
|
3320
3320
|
private: boolean;
|
|
3321
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3321
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3322
3322
|
content_attributes: {
|
|
3323
3323
|
in_reply_to?: unknown;
|
|
3324
3324
|
} & {
|
|
@@ -3416,7 +3416,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3416
3416
|
content: string | null;
|
|
3417
3417
|
message_type: number;
|
|
3418
3418
|
private: boolean;
|
|
3419
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3419
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3420
3420
|
content_attributes: {
|
|
3421
3421
|
in_reply_to?: unknown;
|
|
3422
3422
|
} & {
|
|
@@ -3497,7 +3497,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3497
3497
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3498
3498
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
3499
3499
|
}, z.ZodTypeAny, "passthrough">>;
|
|
3500
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
3500
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
3501
3501
|
content: z.ZodNullable<z.ZodString>;
|
|
3502
3502
|
conversation: z.ZodObject<{
|
|
3503
3503
|
additional_attributes: z.ZodObject<{
|
|
@@ -3632,7 +3632,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3632
3632
|
private: z.ZodBoolean;
|
|
3633
3633
|
status: z.ZodString;
|
|
3634
3634
|
source_id: z.ZodNullable<z.ZodString>;
|
|
3635
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
3635
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
3636
3636
|
content_attributes: z.ZodObject<{
|
|
3637
3637
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
3638
3638
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -3726,7 +3726,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3726
3726
|
content: string | null;
|
|
3727
3727
|
message_type: number;
|
|
3728
3728
|
private: boolean;
|
|
3729
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3729
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3730
3730
|
content_attributes: {
|
|
3731
3731
|
in_reply_to?: unknown;
|
|
3732
3732
|
} & {
|
|
@@ -3776,7 +3776,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3776
3776
|
content: string | null;
|
|
3777
3777
|
message_type: number;
|
|
3778
3778
|
private: boolean;
|
|
3779
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
3779
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
3780
3780
|
content_attributes: {
|
|
3781
3781
|
in_reply_to?: unknown;
|
|
3782
3782
|
} & {
|
|
@@ -4005,7 +4005,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4005
4005
|
content: string | null;
|
|
4006
4006
|
message_type: number;
|
|
4007
4007
|
private: boolean;
|
|
4008
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4008
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4009
4009
|
content_attributes: {
|
|
4010
4010
|
in_reply_to?: unknown;
|
|
4011
4011
|
} & {
|
|
@@ -4128,7 +4128,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4128
4128
|
content: string | null;
|
|
4129
4129
|
message_type: number;
|
|
4130
4130
|
private: boolean;
|
|
4131
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4131
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4132
4132
|
content_attributes: {
|
|
4133
4133
|
in_reply_to?: unknown;
|
|
4134
4134
|
} & {
|
|
@@ -4268,7 +4268,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4268
4268
|
content: string | null;
|
|
4269
4269
|
message_type: "incoming" | "outgoing";
|
|
4270
4270
|
private: boolean;
|
|
4271
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4271
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4272
4272
|
content_attributes: {
|
|
4273
4273
|
in_reply_to?: unknown;
|
|
4274
4274
|
} & {
|
|
@@ -4366,7 +4366,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4366
4366
|
content: string | null;
|
|
4367
4367
|
message_type: number;
|
|
4368
4368
|
private: boolean;
|
|
4369
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4369
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4370
4370
|
content_attributes: {
|
|
4371
4371
|
in_reply_to?: unknown;
|
|
4372
4372
|
} & {
|
|
@@ -4434,7 +4434,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4434
4434
|
content: string | null;
|
|
4435
4435
|
message_type: "incoming" | "outgoing";
|
|
4436
4436
|
private: boolean;
|
|
4437
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4437
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4438
4438
|
content_attributes: {
|
|
4439
4439
|
in_reply_to?: unknown;
|
|
4440
4440
|
} & {
|
|
@@ -4532,7 +4532,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4532
4532
|
content: string | null;
|
|
4533
4533
|
message_type: number;
|
|
4534
4534
|
private: boolean;
|
|
4535
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4535
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4536
4536
|
content_attributes: {
|
|
4537
4537
|
in_reply_to?: unknown;
|
|
4538
4538
|
} & {
|
|
@@ -4612,7 +4612,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4612
4612
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4613
4613
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
4614
4614
|
}, z.ZodTypeAny, "passthrough">>;
|
|
4615
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
4615
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
4616
4616
|
content: z.ZodNullable<z.ZodString>;
|
|
4617
4617
|
conversation: z.ZodObject<{
|
|
4618
4618
|
additional_attributes: z.ZodObject<{
|
|
@@ -4747,7 +4747,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4747
4747
|
private: z.ZodBoolean;
|
|
4748
4748
|
status: z.ZodString;
|
|
4749
4749
|
source_id: z.ZodNullable<z.ZodString>;
|
|
4750
|
-
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article"]>;
|
|
4750
|
+
content_type: z.ZodEnum<["text", "input_select", "cards", "form", "article", "incoming_email"]>;
|
|
4751
4751
|
content_attributes: z.ZodObject<{
|
|
4752
4752
|
in_reply_to: z.ZodNullable<z.ZodUnknown>;
|
|
4753
4753
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -4841,7 +4841,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4841
4841
|
content: string | null;
|
|
4842
4842
|
message_type: number;
|
|
4843
4843
|
private: boolean;
|
|
4844
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4844
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4845
4845
|
content_attributes: {
|
|
4846
4846
|
in_reply_to?: unknown;
|
|
4847
4847
|
} & {
|
|
@@ -4891,7 +4891,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4891
4891
|
content: string | null;
|
|
4892
4892
|
message_type: number;
|
|
4893
4893
|
private: boolean;
|
|
4894
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
4894
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
4895
4895
|
content_attributes: {
|
|
4896
4896
|
in_reply_to?: unknown;
|
|
4897
4897
|
} & {
|
|
@@ -5120,7 +5120,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5120
5120
|
content: string | null;
|
|
5121
5121
|
message_type: number;
|
|
5122
5122
|
private: boolean;
|
|
5123
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5123
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5124
5124
|
content_attributes: {
|
|
5125
5125
|
in_reply_to?: unknown;
|
|
5126
5126
|
} & {
|
|
@@ -5243,7 +5243,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5243
5243
|
content: string | null;
|
|
5244
5244
|
message_type: number;
|
|
5245
5245
|
private: boolean;
|
|
5246
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5246
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5247
5247
|
content_attributes: {
|
|
5248
5248
|
in_reply_to?: unknown;
|
|
5249
5249
|
} & {
|
|
@@ -5383,7 +5383,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5383
5383
|
content: string | null;
|
|
5384
5384
|
message_type: "incoming" | "outgoing";
|
|
5385
5385
|
private: boolean;
|
|
5386
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5386
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5387
5387
|
content_attributes: {
|
|
5388
5388
|
in_reply_to?: unknown;
|
|
5389
5389
|
} & {
|
|
@@ -5481,7 +5481,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5481
5481
|
content: string | null;
|
|
5482
5482
|
message_type: number;
|
|
5483
5483
|
private: boolean;
|
|
5484
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5484
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5485
5485
|
content_attributes: {
|
|
5486
5486
|
in_reply_to?: unknown;
|
|
5487
5487
|
} & {
|
|
@@ -5549,7 +5549,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5549
5549
|
content: string | null;
|
|
5550
5550
|
message_type: "incoming" | "outgoing";
|
|
5551
5551
|
private: boolean;
|
|
5552
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5552
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5553
5553
|
content_attributes: {
|
|
5554
5554
|
in_reply_to?: unknown;
|
|
5555
5555
|
} & {
|
|
@@ -5647,7 +5647,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5647
5647
|
content: string | null;
|
|
5648
5648
|
message_type: number;
|
|
5649
5649
|
private: boolean;
|
|
5650
|
-
content_type: "text" | "input_select" | "cards" | "form" | "article";
|
|
5650
|
+
content_type: "text" | "input_select" | "cards" | "form" | "article" | "incoming_email";
|
|
5651
5651
|
content_attributes: {
|
|
5652
5652
|
in_reply_to?: unknown;
|
|
5653
5653
|
} & {
|
package/package.json
CHANGED