@voltade/envoy-sdk 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -129,20 +129,19 @@ export declare const ConversationAdditionalAttributesSchema: z.ZodObject<{
|
|
|
129
129
|
}>>;
|
|
130
130
|
browser_language: z.ZodOptional<z.ZodString>;
|
|
131
131
|
}, z.ZodTypeAny, "passthrough">>;
|
|
132
|
-
export declare const WebhookSenderSchema: z.ZodObject<
|
|
132
|
+
export declare const WebhookSenderSchema: z.ZodObject<{
|
|
133
133
|
id: z.ZodNumber;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
identifier: z.ZodNullable<z.ZodString
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}, "type"> & {
|
|
134
|
+
} & {
|
|
135
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
136
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
137
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
138
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
139
|
+
customer_stage_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
140
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
141
|
+
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
142
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
143
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
144
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
146
145
|
account: z.ZodOptional<z.ZodObject<{
|
|
147
146
|
id: z.ZodNumber;
|
|
148
147
|
name: z.ZodString;
|
|
@@ -156,16 +155,16 @@ export declare const WebhookSenderSchema: z.ZodObject<Omit<{
|
|
|
156
155
|
avatar: z.ZodOptional<z.ZodString>;
|
|
157
156
|
}, "strip", z.ZodTypeAny, {
|
|
158
157
|
id: number;
|
|
159
|
-
name
|
|
160
|
-
email
|
|
161
|
-
phone_number
|
|
162
|
-
thumbnail
|
|
163
|
-
identifier
|
|
164
|
-
additional_attributes
|
|
165
|
-
custom_attributes
|
|
166
|
-
blocked
|
|
167
|
-
customer_stage
|
|
168
|
-
customer_stage_explanation
|
|
158
|
+
name?: string | null | undefined;
|
|
159
|
+
email?: string | null | undefined;
|
|
160
|
+
phone_number?: string | null | undefined;
|
|
161
|
+
thumbnail?: string | undefined;
|
|
162
|
+
identifier?: string | null | undefined;
|
|
163
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
164
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
165
|
+
blocked?: boolean | undefined;
|
|
166
|
+
customer_stage?: string | null | undefined;
|
|
167
|
+
customer_stage_explanation?: string | null | undefined;
|
|
169
168
|
account?: {
|
|
170
169
|
id: number;
|
|
171
170
|
name: string;
|
|
@@ -173,16 +172,16 @@ export declare const WebhookSenderSchema: z.ZodObject<Omit<{
|
|
|
173
172
|
avatar?: string | undefined;
|
|
174
173
|
}, {
|
|
175
174
|
id: number;
|
|
176
|
-
name
|
|
177
|
-
email
|
|
178
|
-
phone_number
|
|
179
|
-
thumbnail
|
|
180
|
-
identifier
|
|
181
|
-
additional_attributes
|
|
182
|
-
custom_attributes
|
|
183
|
-
blocked
|
|
184
|
-
customer_stage
|
|
185
|
-
customer_stage_explanation
|
|
175
|
+
name?: string | null | undefined;
|
|
176
|
+
email?: string | null | undefined;
|
|
177
|
+
phone_number?: string | null | undefined;
|
|
178
|
+
thumbnail?: string | undefined;
|
|
179
|
+
identifier?: string | null | undefined;
|
|
180
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
181
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
182
|
+
blocked?: boolean | undefined;
|
|
183
|
+
customer_stage?: string | null | undefined;
|
|
184
|
+
customer_stage_explanation?: string | null | undefined;
|
|
186
185
|
account?: {
|
|
187
186
|
id: number;
|
|
188
187
|
name: string;
|
|
@@ -235,7 +234,7 @@ export declare const MessageSenderSchema: z.ZodObject<{
|
|
|
235
234
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
236
235
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
237
236
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
238
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
237
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
239
238
|
}, "strip", z.ZodTypeAny, {
|
|
240
239
|
id: number;
|
|
241
240
|
name?: string | null | undefined;
|
|
@@ -247,7 +246,7 @@ export declare const MessageSenderSchema: z.ZodObject<{
|
|
|
247
246
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
248
247
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
249
248
|
blocked?: boolean | undefined;
|
|
250
|
-
customer_stage?: string | undefined;
|
|
249
|
+
customer_stage?: string | null | undefined;
|
|
251
250
|
customer_stage_explanation?: string | null | undefined;
|
|
252
251
|
}, {
|
|
253
252
|
id: number;
|
|
@@ -260,7 +259,7 @@ export declare const MessageSenderSchema: z.ZodObject<{
|
|
|
260
259
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
261
260
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
262
261
|
blocked?: boolean | undefined;
|
|
263
|
-
customer_stage?: string | undefined;
|
|
262
|
+
customer_stage?: string | null | undefined;
|
|
264
263
|
customer_stage_explanation?: string | null | undefined;
|
|
265
264
|
}>;
|
|
266
265
|
export declare const WebhookMessageSchema: z.ZodObject<{
|
|
@@ -332,7 +331,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
332
331
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
333
332
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
334
333
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
335
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
334
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
336
335
|
}, "strip", z.ZodTypeAny, {
|
|
337
336
|
id: number;
|
|
338
337
|
name?: string | null | undefined;
|
|
@@ -344,7 +343,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
344
343
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
345
344
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
346
345
|
blocked?: boolean | undefined;
|
|
347
|
-
customer_stage?: string | undefined;
|
|
346
|
+
customer_stage?: string | null | undefined;
|
|
348
347
|
customer_stage_explanation?: string | null | undefined;
|
|
349
348
|
}, {
|
|
350
349
|
id: number;
|
|
@@ -357,7 +356,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
357
356
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
358
357
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
359
358
|
blocked?: boolean | undefined;
|
|
360
|
-
customer_stage?: string | undefined;
|
|
359
|
+
customer_stage?: string | null | undefined;
|
|
361
360
|
customer_stage_explanation?: string | null | undefined;
|
|
362
361
|
}>;
|
|
363
362
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -387,7 +386,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
387
386
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
388
387
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
389
388
|
blocked?: boolean | undefined;
|
|
390
|
-
customer_stage?: string | undefined;
|
|
389
|
+
customer_stage?: string | null | undefined;
|
|
391
390
|
customer_stage_explanation?: string | null | undefined;
|
|
392
391
|
};
|
|
393
392
|
additional_attributes: Record<string, unknown>;
|
|
@@ -437,7 +436,7 @@ export declare const WebhookMessageSchema: z.ZodObject<{
|
|
|
437
436
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
438
437
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
439
438
|
blocked?: boolean | undefined;
|
|
440
|
-
customer_stage?: string | undefined;
|
|
439
|
+
customer_stage?: string | null | undefined;
|
|
441
440
|
customer_stage_explanation?: string | null | undefined;
|
|
442
441
|
};
|
|
443
442
|
additional_attributes: Record<string, unknown>;
|
|
@@ -752,7 +751,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
752
751
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
753
752
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
754
753
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
755
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
754
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
756
755
|
}, "strip", z.ZodTypeAny, {
|
|
757
756
|
id: number;
|
|
758
757
|
name?: string | null | undefined;
|
|
@@ -764,7 +763,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
764
763
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
765
764
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
766
765
|
blocked?: boolean | undefined;
|
|
767
|
-
customer_stage?: string | undefined;
|
|
766
|
+
customer_stage?: string | null | undefined;
|
|
768
767
|
customer_stage_explanation?: string | null | undefined;
|
|
769
768
|
}, {
|
|
770
769
|
id: number;
|
|
@@ -777,7 +776,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
777
776
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
778
777
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
779
778
|
blocked?: boolean | undefined;
|
|
780
|
-
customer_stage?: string | undefined;
|
|
779
|
+
customer_stage?: string | null | undefined;
|
|
781
780
|
customer_stage_explanation?: string | null | undefined;
|
|
782
781
|
}>;
|
|
783
782
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -807,7 +806,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
807
806
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
808
807
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
809
808
|
blocked?: boolean | undefined;
|
|
810
|
-
customer_stage?: string | undefined;
|
|
809
|
+
customer_stage?: string | null | undefined;
|
|
811
810
|
customer_stage_explanation?: string | null | undefined;
|
|
812
811
|
};
|
|
813
812
|
additional_attributes: Record<string, unknown>;
|
|
@@ -857,7 +856,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
857
856
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
858
857
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
859
858
|
blocked?: boolean | undefined;
|
|
860
|
-
customer_stage?: string | undefined;
|
|
859
|
+
customer_stage?: string | null | undefined;
|
|
861
860
|
customer_stage_explanation?: string | null | undefined;
|
|
862
861
|
};
|
|
863
862
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1086,7 +1085,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
1086
1085
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1087
1086
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1088
1087
|
blocked?: boolean | undefined;
|
|
1089
|
-
customer_stage?: string | undefined;
|
|
1088
|
+
customer_stage?: string | null | undefined;
|
|
1090
1089
|
customer_stage_explanation?: string | null | undefined;
|
|
1091
1090
|
};
|
|
1092
1091
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1209,7 +1208,7 @@ export declare const WebhookConversationSchema: z.ZodObject<{
|
|
|
1209
1208
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1210
1209
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1211
1210
|
blocked?: boolean | undefined;
|
|
1212
|
-
customer_stage?: string | undefined;
|
|
1211
|
+
customer_stage?: string | null | undefined;
|
|
1213
1212
|
customer_stage_explanation?: string | null | undefined;
|
|
1214
1213
|
};
|
|
1215
1214
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1458,7 +1457,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1458
1457
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1459
1458
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1460
1459
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
1461
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
1460
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1462
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1463
1462
|
id: number;
|
|
1464
1463
|
name?: string | null | undefined;
|
|
@@ -1470,7 +1469,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1470
1469
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1471
1470
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1472
1471
|
blocked?: boolean | undefined;
|
|
1473
|
-
customer_stage?: string | undefined;
|
|
1472
|
+
customer_stage?: string | null | undefined;
|
|
1474
1473
|
customer_stage_explanation?: string | null | undefined;
|
|
1475
1474
|
}, {
|
|
1476
1475
|
id: number;
|
|
@@ -1483,7 +1482,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1483
1482
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1484
1483
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1485
1484
|
blocked?: boolean | undefined;
|
|
1486
|
-
customer_stage?: string | undefined;
|
|
1485
|
+
customer_stage?: string | null | undefined;
|
|
1487
1486
|
customer_stage_explanation?: string | null | undefined;
|
|
1488
1487
|
}>;
|
|
1489
1488
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1513,7 +1512,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1513
1512
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1514
1513
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1515
1514
|
blocked?: boolean | undefined;
|
|
1516
|
-
customer_stage?: string | undefined;
|
|
1515
|
+
customer_stage?: string | null | undefined;
|
|
1517
1516
|
customer_stage_explanation?: string | null | undefined;
|
|
1518
1517
|
};
|
|
1519
1518
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1563,7 +1562,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1563
1562
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1564
1563
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1565
1564
|
blocked?: boolean | undefined;
|
|
1566
|
-
customer_stage?: string | undefined;
|
|
1565
|
+
customer_stage?: string | null | undefined;
|
|
1567
1566
|
customer_stage_explanation?: string | null | undefined;
|
|
1568
1567
|
};
|
|
1569
1568
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1792,7 +1791,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1792
1791
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1793
1792
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1794
1793
|
blocked?: boolean | undefined;
|
|
1795
|
-
customer_stage?: string | undefined;
|
|
1794
|
+
customer_stage?: string | null | undefined;
|
|
1796
1795
|
customer_stage_explanation?: string | null | undefined;
|
|
1797
1796
|
};
|
|
1798
1797
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1915,7 +1914,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1915
1914
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
1916
1915
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
1917
1916
|
blocked?: boolean | undefined;
|
|
1918
|
-
customer_stage?: string | undefined;
|
|
1917
|
+
customer_stage?: string | null | undefined;
|
|
1919
1918
|
customer_stage_explanation?: string | null | undefined;
|
|
1920
1919
|
};
|
|
1921
1920
|
additional_attributes: Record<string, unknown>;
|
|
@@ -1968,20 +1967,19 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1968
1967
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
1969
1968
|
private: z.ZodBoolean;
|
|
1970
1969
|
status: z.ZodString;
|
|
1971
|
-
sender: z.ZodObject<
|
|
1970
|
+
sender: z.ZodObject<{
|
|
1972
1971
|
id: z.ZodNumber;
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
identifier: z.ZodNullable<z.ZodString
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
}, "type"> & {
|
|
1972
|
+
} & {
|
|
1973
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1974
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1975
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1976
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1977
|
+
customer_stage_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1978
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
1979
|
+
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1980
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1981
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
1982
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1985
1983
|
account: z.ZodOptional<z.ZodObject<{
|
|
1986
1984
|
id: z.ZodNumber;
|
|
1987
1985
|
name: z.ZodString;
|
|
@@ -1995,16 +1993,16 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
1995
1993
|
avatar: z.ZodOptional<z.ZodString>;
|
|
1996
1994
|
}, "strip", z.ZodTypeAny, {
|
|
1997
1995
|
id: number;
|
|
1998
|
-
name
|
|
1999
|
-
email
|
|
2000
|
-
phone_number
|
|
2001
|
-
thumbnail
|
|
2002
|
-
identifier
|
|
2003
|
-
additional_attributes
|
|
2004
|
-
custom_attributes
|
|
2005
|
-
blocked
|
|
2006
|
-
customer_stage
|
|
2007
|
-
customer_stage_explanation
|
|
1996
|
+
name?: string | null | undefined;
|
|
1997
|
+
email?: string | null | undefined;
|
|
1998
|
+
phone_number?: string | null | undefined;
|
|
1999
|
+
thumbnail?: string | undefined;
|
|
2000
|
+
identifier?: string | null | undefined;
|
|
2001
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
2002
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
2003
|
+
blocked?: boolean | undefined;
|
|
2004
|
+
customer_stage?: string | null | undefined;
|
|
2005
|
+
customer_stage_explanation?: string | null | undefined;
|
|
2008
2006
|
account?: {
|
|
2009
2007
|
id: number;
|
|
2010
2008
|
name: string;
|
|
@@ -2012,16 +2010,16 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2012
2010
|
avatar?: string | undefined;
|
|
2013
2011
|
}, {
|
|
2014
2012
|
id: number;
|
|
2015
|
-
name
|
|
2016
|
-
email
|
|
2017
|
-
phone_number
|
|
2018
|
-
thumbnail
|
|
2019
|
-
identifier
|
|
2020
|
-
additional_attributes
|
|
2021
|
-
custom_attributes
|
|
2022
|
-
blocked
|
|
2023
|
-
customer_stage
|
|
2024
|
-
customer_stage_explanation
|
|
2013
|
+
name?: string | null | undefined;
|
|
2014
|
+
email?: string | null | undefined;
|
|
2015
|
+
phone_number?: string | null | undefined;
|
|
2016
|
+
thumbnail?: string | undefined;
|
|
2017
|
+
identifier?: string | null | undefined;
|
|
2018
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
2019
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
2020
|
+
blocked?: boolean | undefined;
|
|
2021
|
+
customer_stage?: string | null | undefined;
|
|
2022
|
+
customer_stage_explanation?: string | null | undefined;
|
|
2025
2023
|
account?: {
|
|
2026
2024
|
id: number;
|
|
2027
2025
|
name: string;
|
|
@@ -2046,16 +2044,16 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2046
2044
|
};
|
|
2047
2045
|
sender: {
|
|
2048
2046
|
id: number;
|
|
2049
|
-
name
|
|
2050
|
-
email
|
|
2051
|
-
phone_number
|
|
2052
|
-
thumbnail
|
|
2053
|
-
identifier
|
|
2054
|
-
additional_attributes
|
|
2055
|
-
custom_attributes
|
|
2056
|
-
blocked
|
|
2057
|
-
customer_stage
|
|
2058
|
-
customer_stage_explanation
|
|
2047
|
+
name?: string | null | undefined;
|
|
2048
|
+
email?: string | null | undefined;
|
|
2049
|
+
phone_number?: string | null | undefined;
|
|
2050
|
+
thumbnail?: string | undefined;
|
|
2051
|
+
identifier?: string | null | undefined;
|
|
2052
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
2053
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
2054
|
+
blocked?: boolean | undefined;
|
|
2055
|
+
customer_stage?: string | null | undefined;
|
|
2056
|
+
customer_stage_explanation?: string | null | undefined;
|
|
2059
2057
|
account?: {
|
|
2060
2058
|
id: number;
|
|
2061
2059
|
name: string;
|
|
@@ -2154,7 +2152,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2154
2152
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2155
2153
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2156
2154
|
blocked?: boolean | undefined;
|
|
2157
|
-
customer_stage?: string | undefined;
|
|
2155
|
+
customer_stage?: string | null | undefined;
|
|
2158
2156
|
customer_stage_explanation?: string | null | undefined;
|
|
2159
2157
|
};
|
|
2160
2158
|
additional_attributes: Record<string, unknown>;
|
|
@@ -2212,16 +2210,16 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2212
2210
|
};
|
|
2213
2211
|
sender: {
|
|
2214
2212
|
id: number;
|
|
2215
|
-
name
|
|
2216
|
-
email
|
|
2217
|
-
phone_number
|
|
2218
|
-
thumbnail
|
|
2219
|
-
identifier
|
|
2220
|
-
additional_attributes
|
|
2221
|
-
custom_attributes
|
|
2222
|
-
blocked
|
|
2223
|
-
customer_stage
|
|
2224
|
-
customer_stage_explanation
|
|
2213
|
+
name?: string | null | undefined;
|
|
2214
|
+
email?: string | null | undefined;
|
|
2215
|
+
phone_number?: string | null | undefined;
|
|
2216
|
+
thumbnail?: string | undefined;
|
|
2217
|
+
identifier?: string | null | undefined;
|
|
2218
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
2219
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
2220
|
+
blocked?: boolean | undefined;
|
|
2221
|
+
customer_stage?: string | null | undefined;
|
|
2222
|
+
customer_stage_explanation?: string | null | undefined;
|
|
2225
2223
|
account?: {
|
|
2226
2224
|
id: number;
|
|
2227
2225
|
name: string;
|
|
@@ -2320,7 +2318,7 @@ export declare const MessageCreatedEventSchema: z.ZodObject<{
|
|
|
2320
2318
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2321
2319
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2322
2320
|
blocked?: boolean | undefined;
|
|
2323
|
-
customer_stage?: string | undefined;
|
|
2321
|
+
customer_stage?: string | null | undefined;
|
|
2324
2322
|
customer_stage_explanation?: string | null | undefined;
|
|
2325
2323
|
};
|
|
2326
2324
|
additional_attributes: Record<string, unknown>;
|
|
@@ -2575,7 +2573,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2575
2573
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2576
2574
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2577
2575
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
2578
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
2576
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2579
2577
|
}, "strip", z.ZodTypeAny, {
|
|
2580
2578
|
id: number;
|
|
2581
2579
|
name?: string | null | undefined;
|
|
@@ -2587,7 +2585,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2587
2585
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2588
2586
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2589
2587
|
blocked?: boolean | undefined;
|
|
2590
|
-
customer_stage?: string | undefined;
|
|
2588
|
+
customer_stage?: string | null | undefined;
|
|
2591
2589
|
customer_stage_explanation?: string | null | undefined;
|
|
2592
2590
|
}, {
|
|
2593
2591
|
id: number;
|
|
@@ -2600,7 +2598,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2600
2598
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2601
2599
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2602
2600
|
blocked?: boolean | undefined;
|
|
2603
|
-
customer_stage?: string | undefined;
|
|
2601
|
+
customer_stage?: string | null | undefined;
|
|
2604
2602
|
customer_stage_explanation?: string | null | undefined;
|
|
2605
2603
|
}>;
|
|
2606
2604
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2630,7 +2628,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2630
2628
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2631
2629
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2632
2630
|
blocked?: boolean | undefined;
|
|
2633
|
-
customer_stage?: string | undefined;
|
|
2631
|
+
customer_stage?: string | null | undefined;
|
|
2634
2632
|
customer_stage_explanation?: string | null | undefined;
|
|
2635
2633
|
};
|
|
2636
2634
|
additional_attributes: Record<string, unknown>;
|
|
@@ -2680,7 +2678,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2680
2678
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2681
2679
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2682
2680
|
blocked?: boolean | undefined;
|
|
2683
|
-
customer_stage?: string | undefined;
|
|
2681
|
+
customer_stage?: string | null | undefined;
|
|
2684
2682
|
customer_stage_explanation?: string | null | undefined;
|
|
2685
2683
|
};
|
|
2686
2684
|
additional_attributes: Record<string, unknown>;
|
|
@@ -2909,7 +2907,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
2909
2907
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
2910
2908
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
2911
2909
|
blocked?: boolean | undefined;
|
|
2912
|
-
customer_stage?: string | undefined;
|
|
2910
|
+
customer_stage?: string | null | undefined;
|
|
2913
2911
|
customer_stage_explanation?: string | null | undefined;
|
|
2914
2912
|
};
|
|
2915
2913
|
additional_attributes: Record<string, unknown>;
|
|
@@ -3032,7 +3030,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3032
3030
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3033
3031
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3034
3032
|
blocked?: boolean | undefined;
|
|
3035
|
-
customer_stage?: string | undefined;
|
|
3033
|
+
customer_stage?: string | null | undefined;
|
|
3036
3034
|
customer_stage_explanation?: string | null | undefined;
|
|
3037
3035
|
};
|
|
3038
3036
|
additional_attributes: Record<string, unknown>;
|
|
@@ -3085,20 +3083,19 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3085
3083
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
3086
3084
|
private: z.ZodBoolean;
|
|
3087
3085
|
status: z.ZodString;
|
|
3088
|
-
sender: z.ZodObject<
|
|
3086
|
+
sender: z.ZodObject<{
|
|
3089
3087
|
id: z.ZodNumber;
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
identifier: z.ZodNullable<z.ZodString
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
}, "type"> & {
|
|
3088
|
+
} & {
|
|
3089
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3090
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3091
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3092
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3093
|
+
customer_stage_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3094
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
3095
|
+
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3096
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3097
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
3098
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3102
3099
|
account: z.ZodOptional<z.ZodObject<{
|
|
3103
3100
|
id: z.ZodNumber;
|
|
3104
3101
|
name: z.ZodString;
|
|
@@ -3112,16 +3109,16 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3112
3109
|
avatar: z.ZodOptional<z.ZodString>;
|
|
3113
3110
|
}, "strip", z.ZodTypeAny, {
|
|
3114
3111
|
id: number;
|
|
3115
|
-
name
|
|
3116
|
-
email
|
|
3117
|
-
phone_number
|
|
3118
|
-
thumbnail
|
|
3119
|
-
identifier
|
|
3120
|
-
additional_attributes
|
|
3121
|
-
custom_attributes
|
|
3122
|
-
blocked
|
|
3123
|
-
customer_stage
|
|
3124
|
-
customer_stage_explanation
|
|
3112
|
+
name?: string | null | undefined;
|
|
3113
|
+
email?: string | null | undefined;
|
|
3114
|
+
phone_number?: string | null | undefined;
|
|
3115
|
+
thumbnail?: string | undefined;
|
|
3116
|
+
identifier?: string | null | undefined;
|
|
3117
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
3118
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
3119
|
+
blocked?: boolean | undefined;
|
|
3120
|
+
customer_stage?: string | null | undefined;
|
|
3121
|
+
customer_stage_explanation?: string | null | undefined;
|
|
3125
3122
|
account?: {
|
|
3126
3123
|
id: number;
|
|
3127
3124
|
name: string;
|
|
@@ -3129,16 +3126,16 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3129
3126
|
avatar?: string | undefined;
|
|
3130
3127
|
}, {
|
|
3131
3128
|
id: number;
|
|
3132
|
-
name
|
|
3133
|
-
email
|
|
3134
|
-
phone_number
|
|
3135
|
-
thumbnail
|
|
3136
|
-
identifier
|
|
3137
|
-
additional_attributes
|
|
3138
|
-
custom_attributes
|
|
3139
|
-
blocked
|
|
3140
|
-
customer_stage
|
|
3141
|
-
customer_stage_explanation
|
|
3129
|
+
name?: string | null | undefined;
|
|
3130
|
+
email?: string | null | undefined;
|
|
3131
|
+
phone_number?: string | null | undefined;
|
|
3132
|
+
thumbnail?: string | undefined;
|
|
3133
|
+
identifier?: string | null | undefined;
|
|
3134
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
3135
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
3136
|
+
blocked?: boolean | undefined;
|
|
3137
|
+
customer_stage?: string | null | undefined;
|
|
3138
|
+
customer_stage_explanation?: string | null | undefined;
|
|
3142
3139
|
account?: {
|
|
3143
3140
|
id: number;
|
|
3144
3141
|
name: string;
|
|
@@ -3163,16 +3160,16 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3163
3160
|
};
|
|
3164
3161
|
sender: {
|
|
3165
3162
|
id: number;
|
|
3166
|
-
name
|
|
3167
|
-
email
|
|
3168
|
-
phone_number
|
|
3169
|
-
thumbnail
|
|
3170
|
-
identifier
|
|
3171
|
-
additional_attributes
|
|
3172
|
-
custom_attributes
|
|
3173
|
-
blocked
|
|
3174
|
-
customer_stage
|
|
3175
|
-
customer_stage_explanation
|
|
3163
|
+
name?: string | null | undefined;
|
|
3164
|
+
email?: string | null | undefined;
|
|
3165
|
+
phone_number?: string | null | undefined;
|
|
3166
|
+
thumbnail?: string | undefined;
|
|
3167
|
+
identifier?: string | null | undefined;
|
|
3168
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
3169
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
3170
|
+
blocked?: boolean | undefined;
|
|
3171
|
+
customer_stage?: string | null | undefined;
|
|
3172
|
+
customer_stage_explanation?: string | null | undefined;
|
|
3176
3173
|
account?: {
|
|
3177
3174
|
id: number;
|
|
3178
3175
|
name: string;
|
|
@@ -3271,7 +3268,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3271
3268
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3272
3269
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3273
3270
|
blocked?: boolean | undefined;
|
|
3274
|
-
customer_stage?: string | undefined;
|
|
3271
|
+
customer_stage?: string | null | undefined;
|
|
3275
3272
|
customer_stage_explanation?: string | null | undefined;
|
|
3276
3273
|
};
|
|
3277
3274
|
additional_attributes: Record<string, unknown>;
|
|
@@ -3329,16 +3326,16 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3329
3326
|
};
|
|
3330
3327
|
sender: {
|
|
3331
3328
|
id: number;
|
|
3332
|
-
name
|
|
3333
|
-
email
|
|
3334
|
-
phone_number
|
|
3335
|
-
thumbnail
|
|
3336
|
-
identifier
|
|
3337
|
-
additional_attributes
|
|
3338
|
-
custom_attributes
|
|
3339
|
-
blocked
|
|
3340
|
-
customer_stage
|
|
3341
|
-
customer_stage_explanation
|
|
3329
|
+
name?: string | null | undefined;
|
|
3330
|
+
email?: string | null | undefined;
|
|
3331
|
+
phone_number?: string | null | undefined;
|
|
3332
|
+
thumbnail?: string | undefined;
|
|
3333
|
+
identifier?: string | null | undefined;
|
|
3334
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
3335
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
3336
|
+
blocked?: boolean | undefined;
|
|
3337
|
+
customer_stage?: string | null | undefined;
|
|
3338
|
+
customer_stage_explanation?: string | null | undefined;
|
|
3342
3339
|
account?: {
|
|
3343
3340
|
id: number;
|
|
3344
3341
|
name: string;
|
|
@@ -3437,7 +3434,7 @@ export declare const MessageUpdatedEventSchema: z.ZodObject<{
|
|
|
3437
3434
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3438
3435
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3439
3436
|
blocked?: boolean | undefined;
|
|
3440
|
-
customer_stage?: string | undefined;
|
|
3437
|
+
customer_stage?: string | null | undefined;
|
|
3441
3438
|
customer_stage_explanation?: string | null | undefined;
|
|
3442
3439
|
};
|
|
3443
3440
|
additional_attributes: Record<string, unknown>;
|
|
@@ -3692,7 +3689,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3692
3689
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3693
3690
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3694
3691
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
3695
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
3692
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3696
3693
|
}, "strip", z.ZodTypeAny, {
|
|
3697
3694
|
id: number;
|
|
3698
3695
|
name?: string | null | undefined;
|
|
@@ -3704,7 +3701,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3704
3701
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3705
3702
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3706
3703
|
blocked?: boolean | undefined;
|
|
3707
|
-
customer_stage?: string | undefined;
|
|
3704
|
+
customer_stage?: string | null | undefined;
|
|
3708
3705
|
customer_stage_explanation?: string | null | undefined;
|
|
3709
3706
|
}, {
|
|
3710
3707
|
id: number;
|
|
@@ -3717,7 +3714,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3717
3714
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3718
3715
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3719
3716
|
blocked?: boolean | undefined;
|
|
3720
|
-
customer_stage?: string | undefined;
|
|
3717
|
+
customer_stage?: string | null | undefined;
|
|
3721
3718
|
customer_stage_explanation?: string | null | undefined;
|
|
3722
3719
|
}>;
|
|
3723
3720
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3747,7 +3744,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3747
3744
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3748
3745
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3749
3746
|
blocked?: boolean | undefined;
|
|
3750
|
-
customer_stage?: string | undefined;
|
|
3747
|
+
customer_stage?: string | null | undefined;
|
|
3751
3748
|
customer_stage_explanation?: string | null | undefined;
|
|
3752
3749
|
};
|
|
3753
3750
|
additional_attributes: Record<string, unknown>;
|
|
@@ -3797,7 +3794,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
3797
3794
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
3798
3795
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
3799
3796
|
blocked?: boolean | undefined;
|
|
3800
|
-
customer_stage?: string | undefined;
|
|
3797
|
+
customer_stage?: string | null | undefined;
|
|
3801
3798
|
customer_stage_explanation?: string | null | undefined;
|
|
3802
3799
|
};
|
|
3803
3800
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4026,7 +4023,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4026
4023
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4027
4024
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4028
4025
|
blocked?: boolean | undefined;
|
|
4029
|
-
customer_stage?: string | undefined;
|
|
4026
|
+
customer_stage?: string | null | undefined;
|
|
4030
4027
|
customer_stage_explanation?: string | null | undefined;
|
|
4031
4028
|
};
|
|
4032
4029
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4149,7 +4146,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4149
4146
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4150
4147
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4151
4148
|
blocked?: boolean | undefined;
|
|
4152
|
-
customer_stage?: string | undefined;
|
|
4149
|
+
customer_stage?: string | null | undefined;
|
|
4153
4150
|
customer_stage_explanation?: string | null | undefined;
|
|
4154
4151
|
};
|
|
4155
4152
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4202,20 +4199,19 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4202
4199
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
4203
4200
|
private: z.ZodBoolean;
|
|
4204
4201
|
status: z.ZodString;
|
|
4205
|
-
sender: z.ZodObject<
|
|
4202
|
+
sender: z.ZodObject<{
|
|
4206
4203
|
id: z.ZodNumber;
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
identifier: z.ZodNullable<z.ZodString
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
}, "type"> & {
|
|
4204
|
+
} & {
|
|
4205
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4206
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4207
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4208
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4209
|
+
customer_stage_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4210
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
4211
|
+
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4212
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4213
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
4214
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4219
4215
|
account: z.ZodOptional<z.ZodObject<{
|
|
4220
4216
|
id: z.ZodNumber;
|
|
4221
4217
|
name: z.ZodString;
|
|
@@ -4229,16 +4225,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4229
4225
|
avatar: z.ZodOptional<z.ZodString>;
|
|
4230
4226
|
}, "strip", z.ZodTypeAny, {
|
|
4231
4227
|
id: number;
|
|
4232
|
-
name
|
|
4233
|
-
email
|
|
4234
|
-
phone_number
|
|
4235
|
-
thumbnail
|
|
4236
|
-
identifier
|
|
4237
|
-
additional_attributes
|
|
4238
|
-
custom_attributes
|
|
4239
|
-
blocked
|
|
4240
|
-
customer_stage
|
|
4241
|
-
customer_stage_explanation
|
|
4228
|
+
name?: string | null | undefined;
|
|
4229
|
+
email?: string | null | undefined;
|
|
4230
|
+
phone_number?: string | null | undefined;
|
|
4231
|
+
thumbnail?: string | undefined;
|
|
4232
|
+
identifier?: string | null | undefined;
|
|
4233
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
4234
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
4235
|
+
blocked?: boolean | undefined;
|
|
4236
|
+
customer_stage?: string | null | undefined;
|
|
4237
|
+
customer_stage_explanation?: string | null | undefined;
|
|
4242
4238
|
account?: {
|
|
4243
4239
|
id: number;
|
|
4244
4240
|
name: string;
|
|
@@ -4246,16 +4242,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4246
4242
|
avatar?: string | undefined;
|
|
4247
4243
|
}, {
|
|
4248
4244
|
id: number;
|
|
4249
|
-
name
|
|
4250
|
-
email
|
|
4251
|
-
phone_number
|
|
4252
|
-
thumbnail
|
|
4253
|
-
identifier
|
|
4254
|
-
additional_attributes
|
|
4255
|
-
custom_attributes
|
|
4256
|
-
blocked
|
|
4257
|
-
customer_stage
|
|
4258
|
-
customer_stage_explanation
|
|
4245
|
+
name?: string | null | undefined;
|
|
4246
|
+
email?: string | null | undefined;
|
|
4247
|
+
phone_number?: string | null | undefined;
|
|
4248
|
+
thumbnail?: string | undefined;
|
|
4249
|
+
identifier?: string | null | undefined;
|
|
4250
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
4251
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
4252
|
+
blocked?: boolean | undefined;
|
|
4253
|
+
customer_stage?: string | null | undefined;
|
|
4254
|
+
customer_stage_explanation?: string | null | undefined;
|
|
4259
4255
|
account?: {
|
|
4260
4256
|
id: number;
|
|
4261
4257
|
name: string;
|
|
@@ -4280,16 +4276,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4280
4276
|
};
|
|
4281
4277
|
sender: {
|
|
4282
4278
|
id: number;
|
|
4283
|
-
name
|
|
4284
|
-
email
|
|
4285
|
-
phone_number
|
|
4286
|
-
thumbnail
|
|
4287
|
-
identifier
|
|
4288
|
-
additional_attributes
|
|
4289
|
-
custom_attributes
|
|
4290
|
-
blocked
|
|
4291
|
-
customer_stage
|
|
4292
|
-
customer_stage_explanation
|
|
4279
|
+
name?: string | null | undefined;
|
|
4280
|
+
email?: string | null | undefined;
|
|
4281
|
+
phone_number?: string | null | undefined;
|
|
4282
|
+
thumbnail?: string | undefined;
|
|
4283
|
+
identifier?: string | null | undefined;
|
|
4284
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
4285
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
4286
|
+
blocked?: boolean | undefined;
|
|
4287
|
+
customer_stage?: string | null | undefined;
|
|
4288
|
+
customer_stage_explanation?: string | null | undefined;
|
|
4293
4289
|
account?: {
|
|
4294
4290
|
id: number;
|
|
4295
4291
|
name: string;
|
|
@@ -4388,7 +4384,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4388
4384
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4389
4385
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4390
4386
|
blocked?: boolean | undefined;
|
|
4391
|
-
customer_stage?: string | undefined;
|
|
4387
|
+
customer_stage?: string | null | undefined;
|
|
4392
4388
|
customer_stage_explanation?: string | null | undefined;
|
|
4393
4389
|
};
|
|
4394
4390
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4446,16 +4442,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4446
4442
|
};
|
|
4447
4443
|
sender: {
|
|
4448
4444
|
id: number;
|
|
4449
|
-
name
|
|
4450
|
-
email
|
|
4451
|
-
phone_number
|
|
4452
|
-
thumbnail
|
|
4453
|
-
identifier
|
|
4454
|
-
additional_attributes
|
|
4455
|
-
custom_attributes
|
|
4456
|
-
blocked
|
|
4457
|
-
customer_stage
|
|
4458
|
-
customer_stage_explanation
|
|
4445
|
+
name?: string | null | undefined;
|
|
4446
|
+
email?: string | null | undefined;
|
|
4447
|
+
phone_number?: string | null | undefined;
|
|
4448
|
+
thumbnail?: string | undefined;
|
|
4449
|
+
identifier?: string | null | undefined;
|
|
4450
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
4451
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
4452
|
+
blocked?: boolean | undefined;
|
|
4453
|
+
customer_stage?: string | null | undefined;
|
|
4454
|
+
customer_stage_explanation?: string | null | undefined;
|
|
4459
4455
|
account?: {
|
|
4460
4456
|
id: number;
|
|
4461
4457
|
name: string;
|
|
@@ -4554,7 +4550,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4554
4550
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4555
4551
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4556
4552
|
blocked?: boolean | undefined;
|
|
4557
|
-
customer_stage?: string | undefined;
|
|
4553
|
+
customer_stage?: string | null | undefined;
|
|
4558
4554
|
customer_stage_explanation?: string | null | undefined;
|
|
4559
4555
|
};
|
|
4560
4556
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4808,7 +4804,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4808
4804
|
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4809
4805
|
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4810
4806
|
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
4811
|
-
customer_stage: z.ZodOptional<z.ZodString
|
|
4807
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4812
4808
|
}, "strip", z.ZodTypeAny, {
|
|
4813
4809
|
id: number;
|
|
4814
4810
|
name?: string | null | undefined;
|
|
@@ -4820,7 +4816,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4820
4816
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4821
4817
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4822
4818
|
blocked?: boolean | undefined;
|
|
4823
|
-
customer_stage?: string | undefined;
|
|
4819
|
+
customer_stage?: string | null | undefined;
|
|
4824
4820
|
customer_stage_explanation?: string | null | undefined;
|
|
4825
4821
|
}, {
|
|
4826
4822
|
id: number;
|
|
@@ -4833,7 +4829,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4833
4829
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4834
4830
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4835
4831
|
blocked?: boolean | undefined;
|
|
4836
|
-
customer_stage?: string | undefined;
|
|
4832
|
+
customer_stage?: string | null | undefined;
|
|
4837
4833
|
customer_stage_explanation?: string | null | undefined;
|
|
4838
4834
|
}>;
|
|
4839
4835
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4863,7 +4859,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4863
4859
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4864
4860
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4865
4861
|
blocked?: boolean | undefined;
|
|
4866
|
-
customer_stage?: string | undefined;
|
|
4862
|
+
customer_stage?: string | null | undefined;
|
|
4867
4863
|
customer_stage_explanation?: string | null | undefined;
|
|
4868
4864
|
};
|
|
4869
4865
|
additional_attributes: Record<string, unknown>;
|
|
@@ -4913,7 +4909,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
4913
4909
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
4914
4910
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
4915
4911
|
blocked?: boolean | undefined;
|
|
4916
|
-
customer_stage?: string | undefined;
|
|
4912
|
+
customer_stage?: string | null | undefined;
|
|
4917
4913
|
customer_stage_explanation?: string | null | undefined;
|
|
4918
4914
|
};
|
|
4919
4915
|
additional_attributes: Record<string, unknown>;
|
|
@@ -5142,7 +5138,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5142
5138
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
5143
5139
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
5144
5140
|
blocked?: boolean | undefined;
|
|
5145
|
-
customer_stage?: string | undefined;
|
|
5141
|
+
customer_stage?: string | null | undefined;
|
|
5146
5142
|
customer_stage_explanation?: string | null | undefined;
|
|
5147
5143
|
};
|
|
5148
5144
|
additional_attributes: Record<string, unknown>;
|
|
@@ -5265,7 +5261,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5265
5261
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
5266
5262
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
5267
5263
|
blocked?: boolean | undefined;
|
|
5268
|
-
customer_stage?: string | undefined;
|
|
5264
|
+
customer_stage?: string | null | undefined;
|
|
5269
5265
|
customer_stage_explanation?: string | null | undefined;
|
|
5270
5266
|
};
|
|
5271
5267
|
additional_attributes: Record<string, unknown>;
|
|
@@ -5318,20 +5314,19 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5318
5314
|
message_type: z.ZodEnum<["incoming", "outgoing"]>;
|
|
5319
5315
|
private: z.ZodBoolean;
|
|
5320
5316
|
status: z.ZodString;
|
|
5321
|
-
sender: z.ZodObject<
|
|
5317
|
+
sender: z.ZodObject<{
|
|
5322
5318
|
id: z.ZodNumber;
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
identifier: z.ZodNullable<z.ZodString
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
}, "type"> & {
|
|
5319
|
+
} & {
|
|
5320
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5321
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5322
|
+
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5323
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5324
|
+
customer_stage_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5325
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5326
|
+
additional_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5327
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5328
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
5329
|
+
customer_stage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5335
5330
|
account: z.ZodOptional<z.ZodObject<{
|
|
5336
5331
|
id: z.ZodNumber;
|
|
5337
5332
|
name: z.ZodString;
|
|
@@ -5345,16 +5340,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5345
5340
|
avatar: z.ZodOptional<z.ZodString>;
|
|
5346
5341
|
}, "strip", z.ZodTypeAny, {
|
|
5347
5342
|
id: number;
|
|
5348
|
-
name
|
|
5349
|
-
email
|
|
5350
|
-
phone_number
|
|
5351
|
-
thumbnail
|
|
5352
|
-
identifier
|
|
5353
|
-
additional_attributes
|
|
5354
|
-
custom_attributes
|
|
5355
|
-
blocked
|
|
5356
|
-
customer_stage
|
|
5357
|
-
customer_stage_explanation
|
|
5343
|
+
name?: string | null | undefined;
|
|
5344
|
+
email?: string | null | undefined;
|
|
5345
|
+
phone_number?: string | null | undefined;
|
|
5346
|
+
thumbnail?: string | undefined;
|
|
5347
|
+
identifier?: string | null | undefined;
|
|
5348
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
5349
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
5350
|
+
blocked?: boolean | undefined;
|
|
5351
|
+
customer_stage?: string | null | undefined;
|
|
5352
|
+
customer_stage_explanation?: string | null | undefined;
|
|
5358
5353
|
account?: {
|
|
5359
5354
|
id: number;
|
|
5360
5355
|
name: string;
|
|
@@ -5362,16 +5357,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5362
5357
|
avatar?: string | undefined;
|
|
5363
5358
|
}, {
|
|
5364
5359
|
id: number;
|
|
5365
|
-
name
|
|
5366
|
-
email
|
|
5367
|
-
phone_number
|
|
5368
|
-
thumbnail
|
|
5369
|
-
identifier
|
|
5370
|
-
additional_attributes
|
|
5371
|
-
custom_attributes
|
|
5372
|
-
blocked
|
|
5373
|
-
customer_stage
|
|
5374
|
-
customer_stage_explanation
|
|
5360
|
+
name?: string | null | undefined;
|
|
5361
|
+
email?: string | null | undefined;
|
|
5362
|
+
phone_number?: string | null | undefined;
|
|
5363
|
+
thumbnail?: string | undefined;
|
|
5364
|
+
identifier?: string | null | undefined;
|
|
5365
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
5366
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
5367
|
+
blocked?: boolean | undefined;
|
|
5368
|
+
customer_stage?: string | null | undefined;
|
|
5369
|
+
customer_stage_explanation?: string | null | undefined;
|
|
5375
5370
|
account?: {
|
|
5376
5371
|
id: number;
|
|
5377
5372
|
name: string;
|
|
@@ -5396,16 +5391,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5396
5391
|
};
|
|
5397
5392
|
sender: {
|
|
5398
5393
|
id: number;
|
|
5399
|
-
name
|
|
5400
|
-
email
|
|
5401
|
-
phone_number
|
|
5402
|
-
thumbnail
|
|
5403
|
-
identifier
|
|
5404
|
-
additional_attributes
|
|
5405
|
-
custom_attributes
|
|
5406
|
-
blocked
|
|
5407
|
-
customer_stage
|
|
5408
|
-
customer_stage_explanation
|
|
5394
|
+
name?: string | null | undefined;
|
|
5395
|
+
email?: string | null | undefined;
|
|
5396
|
+
phone_number?: string | null | undefined;
|
|
5397
|
+
thumbnail?: string | undefined;
|
|
5398
|
+
identifier?: string | null | undefined;
|
|
5399
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
5400
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
5401
|
+
blocked?: boolean | undefined;
|
|
5402
|
+
customer_stage?: string | null | undefined;
|
|
5403
|
+
customer_stage_explanation?: string | null | undefined;
|
|
5409
5404
|
account?: {
|
|
5410
5405
|
id: number;
|
|
5411
5406
|
name: string;
|
|
@@ -5504,7 +5499,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5504
5499
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
5505
5500
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
5506
5501
|
blocked?: boolean | undefined;
|
|
5507
|
-
customer_stage?: string | undefined;
|
|
5502
|
+
customer_stage?: string | null | undefined;
|
|
5508
5503
|
customer_stage_explanation?: string | null | undefined;
|
|
5509
5504
|
};
|
|
5510
5505
|
additional_attributes: Record<string, unknown>;
|
|
@@ -5562,16 +5557,16 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5562
5557
|
};
|
|
5563
5558
|
sender: {
|
|
5564
5559
|
id: number;
|
|
5565
|
-
name
|
|
5566
|
-
email
|
|
5567
|
-
phone_number
|
|
5568
|
-
thumbnail
|
|
5569
|
-
identifier
|
|
5570
|
-
additional_attributes
|
|
5571
|
-
custom_attributes
|
|
5572
|
-
blocked
|
|
5573
|
-
customer_stage
|
|
5574
|
-
customer_stage_explanation
|
|
5560
|
+
name?: string | null | undefined;
|
|
5561
|
+
email?: string | null | undefined;
|
|
5562
|
+
phone_number?: string | null | undefined;
|
|
5563
|
+
thumbnail?: string | undefined;
|
|
5564
|
+
identifier?: string | null | undefined;
|
|
5565
|
+
additional_attributes?: Record<string, unknown> | undefined;
|
|
5566
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
5567
|
+
blocked?: boolean | undefined;
|
|
5568
|
+
customer_stage?: string | null | undefined;
|
|
5569
|
+
customer_stage_explanation?: string | null | undefined;
|
|
5575
5570
|
account?: {
|
|
5576
5571
|
id: number;
|
|
5577
5572
|
name: string;
|
|
@@ -5670,7 +5665,7 @@ export declare const WebhookEventSchema: z.ZodDiscriminatedUnion<"event", [z.Zod
|
|
|
5670
5665
|
additional_attributes?: Record<string, unknown> | undefined;
|
|
5671
5666
|
custom_attributes?: Record<string, unknown> | undefined;
|
|
5672
5667
|
blocked?: boolean | undefined;
|
|
5673
|
-
customer_stage?: string | undefined;
|
|
5668
|
+
customer_stage?: string | null | undefined;
|
|
5674
5669
|
customer_stage_explanation?: string | null | undefined;
|
|
5675
5670
|
};
|
|
5676
5671
|
additional_attributes: Record<string, unknown>;
|
|
@@ -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;
|
|
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;AAIjB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa9B,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;EAEpC,CAAC;AAGH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;EAK1C,CAAC;AAKH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW9B,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"}
|
|
@@ -35,7 +35,18 @@ export const ConversationAdditionalAttributesSchema = z
|
|
|
35
35
|
})
|
|
36
36
|
.passthrough();
|
|
37
37
|
// Webhook sender (extends ContactSchema with account)
|
|
38
|
+
// Make fields optional to handle cases where Envoy sends undefined instead of null
|
|
38
39
|
export const WebhookSenderSchema = ContactSchema.omit({ type: true }).extend({
|
|
40
|
+
name: z.string().nullish(),
|
|
41
|
+
email: z.string().nullish(),
|
|
42
|
+
phone_number: z.string().nullish(),
|
|
43
|
+
identifier: z.string().nullish(),
|
|
44
|
+
customer_stage_explanation: z.string().nullish(),
|
|
45
|
+
thumbnail: z.string().optional(),
|
|
46
|
+
additional_attributes: z.record(z.unknown()).optional(),
|
|
47
|
+
custom_attributes: z.record(z.unknown()).optional(),
|
|
48
|
+
blocked: z.boolean().optional(),
|
|
49
|
+
customer_stage: z.string().nullish(),
|
|
39
50
|
account: AccountRefSchema.optional(),
|
|
40
51
|
avatar: z.string().optional(),
|
|
41
52
|
});
|
|
@@ -63,7 +74,7 @@ export const MessageSenderSchema = ContactSchema.extend({
|
|
|
63
74
|
additional_attributes: z.record(z.unknown()).optional(),
|
|
64
75
|
custom_attributes: z.record(z.unknown()).optional(),
|
|
65
76
|
blocked: z.boolean().optional(),
|
|
66
|
-
customer_stage: z.string().
|
|
77
|
+
customer_stage: z.string().nullish(),
|
|
67
78
|
});
|
|
68
79
|
// Full message in webhook payload (extends beyond basic MessageSchema)
|
|
69
80
|
export const WebhookMessageSchema = z.object({
|
|
@@ -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":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,wBAAwB,EACxB,aAAa,EACb,kBAAkB,GACnB,MAAM,2BAA2B,CAAC;AAEnC;;GAEG;AAEH,2BAA2B;AAC3B,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,yBAAyB;AACzB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,wCAAwC;AACxC,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;IAC3B,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;CAC7B,CAAC,CAAC;AAEH,wDAAwD;AACxD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC;KACpD,MAAM,CAAC;IACN,OAAO,EAAE,iBAAiB,CAAC,QAAQ,EAAE;IACrC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACzC,YAAY,EAAE,CAAC;SACZ,MAAM,CAAC;QACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;KACtB,CAAC;SACD,QAAQ,EAAE;IACb,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACxC,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,sDAAsD;AACtD,mFAAmF;AACnF,MAAM,CAAC,MAAM,mBAAmB,GAAG,aAAa,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;IAC3E,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC1B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC3B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAClC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACvD,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACpC,OAAO,EAAE,gBAAgB,CAAC,QAAQ,EAAE;IACpC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,uDAAuD;AACvD,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,yCAAyC;AACzC,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,aAAa,EAAE,yBAAyB;CACzC,CAAC,CAAC;AAEH,uFAAuF;AACvF,kFAAkF;AAClF,sFAAsF;AACtF,MAAM,CAAC,MAAM,mBAAmB,GAAG,aAAa,CAAC,MAAM,CAAC;IACtD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC1B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC3B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAClC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACvD,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CACrC,CAAC,CAAC;AAEH,uEAAuE;AACvE,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;IAC3B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,yCAAyC;IACnE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,YAAY,EAAE,iBAAiB;IAC/B,kBAAkB,EAAE,CAAC;SAClB,MAAM,CAAC;QACN,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KACpC,CAAC;SACD,WAAW,EAAE;IAChB,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;IACxC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAC1C,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAC5C,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;IACtB,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE;IAC5B,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE;IACtC,YAAY,EAAE,+BAA+B;IAC7C,MAAM,EAAE,mBAAmB;CAC5B,CAAC,CAAC;AAEH,+BAA+B;AAC/B,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,aAAa;IACrB,QAAQ,EAAE,CAAC;SACR,MAAM,CAAC;QACN,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;KAClB,CAAC;SACD,QAAQ,EAAE;IACb,IAAI,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC5B,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE;CAC3B,CAAC,CAAC;AAEH,8CAA8C;AAC9C,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,qBAAqB,EAAE,sCAAsC;IAC7D,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;IACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,aAAa,EAAE,kBAAkB;IACjC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;IACvC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC3B,IAAI,EAAE,6BAA6B;IACnC,MAAM,EAAE,wBAAwB;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IACxC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE;IACxB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE;IAChC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;CACvB,CAAC,CAAC;AAEH,2DAA2D;AAC3D,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,OAAO,EAAE,gBAAgB;IACzB,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAC5C,kBAAkB,EAAE,CAAC;SAClB,MAAM,CAAC;QACN,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KACpC,CAAC;SACD,WAAW,EAAE;IAChB,YAAY,EAAE,iBAAiB;IAC/B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,YAAY,EAAE,yBAAyB;IACvC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;IACnD,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,cAAc;IACrB,YAAY,EAAE,iBAAiB;IAC/B,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,mBAAmB;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH,wBAAwB;AACxB,MAAM,CAAC,MAAM,yBAAyB,GAAG,sBAAsB,CAAC,MAAM,CAAC;IACrE,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,iBAAiB,CAAC;CACpC,CAAC,CAAC;AAEH,wBAAwB;AACxB,MAAM,CAAC,MAAM,yBAAyB,GAAG,sBAAsB,CAAC,MAAM,CAAC;IACrE,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,iBAAiB,CAAC;CACpC,CAAC,CAAC;AAEH,4CAA4C;AAC5C,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,kBAAkB,CAAC,OAAO,EAAE;IAC9D,yBAAyB;IACzB,yBAAyB;CAC1B,CAAC,CAAC"}
|
package/package.json
CHANGED