chatbot-lex-design-builder 1.0.18 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/types/graph/graph.d.ts +339 -0
- package/dist/cjs/types/nodes/closing-response-node.d.ts +33 -0
- package/dist/cjs/types/nodes/codehook-node.d.ts +99 -0
- package/dist/cjs/types/nodes/condition-node.d.ts +87 -0
- package/dist/cjs/types/nodes/confirmation-node.d.ts +132 -0
- package/dist/cjs/types/nodes/fullfillment-node.d.ts +99 -0
- package/dist/cjs/types/nodes/intent-node.js +1 -1
- package/dist/cjs/types/nodes/intent-node.js.map +1 -1
- package/dist/cjs/types/nodes/node.d.ts +291 -0
- package/dist/cjs/types/nodes/slot-node.d.ts +99 -0
- package/dist/cjs/types/nodes/slot-node.js +1 -1
- package/dist/cjs/types/nodes/slot-node.js.map +1 -1
- package/dist/cjs/types/others/bot-flow.d.ts +822 -0
- package/dist/cjs/types/responses/index.d.ts +1 -0
- package/dist/cjs/types/responses/index.js +1 -0
- package/dist/cjs/types/responses/index.js.map +1 -1
- package/dist/cjs/types/responses/leadGeneration.d.ts +13 -0
- package/dist/cjs/types/responses/leadGeneration.js +13 -0
- package/dist/cjs/types/responses/leadGeneration.js.map +1 -0
- package/dist/cjs/types/responses/message-type.d.ts +2 -1
- package/dist/cjs/types/responses/message-type.js +1 -0
- package/dist/cjs/types/responses/message-type.js.map +1 -1
- package/dist/cjs/types/responses/message.d.ts +21 -0
- package/dist/cjs/types/responses/message.js +2 -0
- package/dist/cjs/types/responses/message.js.map +1 -1
- package/dist/cjs/utils/find-first-fullfillment-node.d.ts +9 -0
- package/dist/cjs/utils/get-bfs-order.d.ts +48 -0
- package/dist/cjs/utils/get-first-closing-response-node.d.ts +3 -0
- package/dist/cjs/utils/get-first-confirmation-node.d.ts +12 -0
- package/dist/cjs/utils/get-slot-nodes.d.ts +9 -0
- package/dist/cjs/utils/validate-graph.d.ts +48 -0
- package/dist/esm/types/graph/graph.d.ts +339 -0
- package/dist/esm/types/nodes/closing-response-node.d.ts +33 -0
- package/dist/esm/types/nodes/codehook-node.d.ts +99 -0
- package/dist/esm/types/nodes/condition-node.d.ts +87 -0
- package/dist/esm/types/nodes/confirmation-node.d.ts +132 -0
- package/dist/esm/types/nodes/fullfillment-node.d.ts +99 -0
- package/dist/esm/types/nodes/intent-node.js +1 -1
- package/dist/esm/types/nodes/intent-node.js.map +1 -1
- package/dist/esm/types/nodes/node.d.ts +291 -0
- package/dist/esm/types/nodes/slot-node.d.ts +99 -0
- package/dist/esm/types/nodes/slot-node.js +1 -1
- package/dist/esm/types/nodes/slot-node.js.map +1 -1
- package/dist/esm/types/others/bot-flow.d.ts +822 -0
- package/dist/esm/types/responses/index.d.ts +1 -0
- package/dist/esm/types/responses/index.js +1 -0
- package/dist/esm/types/responses/index.js.map +1 -1
- package/dist/esm/types/responses/leadGeneration.d.ts +13 -0
- package/dist/esm/types/responses/leadGeneration.js +7 -0
- package/dist/esm/types/responses/leadGeneration.js.map +1 -0
- package/dist/esm/types/responses/message-type.d.ts +2 -1
- package/dist/esm/types/responses/message-type.js +1 -0
- package/dist/esm/types/responses/message-type.js.map +1 -1
- package/dist/esm/types/responses/message.d.ts +21 -0
- package/dist/esm/types/responses/message.js +2 -0
- package/dist/esm/types/responses/message.js.map +1 -1
- package/dist/esm/utils/find-first-fullfillment-node.d.ts +9 -0
- package/dist/esm/utils/get-bfs-order.d.ts +48 -0
- package/dist/esm/utils/get-first-closing-response-node.d.ts +3 -0
- package/dist/esm/utils/get-first-confirmation-node.d.ts +12 -0
- package/dist/esm/utils/get-slot-nodes.d.ts +9 -0
- package/dist/esm/utils/validate-graph.d.ts +48 -0
- package/package.json +1 -1
|
@@ -357,6 +357,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
357
357
|
submitButton: {
|
|
358
358
|
label?: unknown;
|
|
359
359
|
};
|
|
360
|
+
}>, z.ZodObject<{
|
|
361
|
+
id: z.ZodString;
|
|
362
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
363
|
+
}, "strip", z.ZodTypeAny, {
|
|
364
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
365
|
+
id: string;
|
|
366
|
+
}, {
|
|
367
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
368
|
+
id: string;
|
|
360
369
|
}>]>, "many">>;
|
|
361
370
|
}, "strip", z.ZodTypeAny, {
|
|
362
371
|
languageCode: string;
|
|
@@ -404,6 +413,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
404
413
|
submitButton: {
|
|
405
414
|
label: string;
|
|
406
415
|
};
|
|
416
|
+
} | {
|
|
417
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
418
|
+
id: string;
|
|
407
419
|
} | {
|
|
408
420
|
type: import("../responses").MessageType.text;
|
|
409
421
|
id: string;
|
|
@@ -487,6 +499,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
487
499
|
submitButton: {
|
|
488
500
|
label: string;
|
|
489
501
|
};
|
|
502
|
+
} | {
|
|
503
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
504
|
+
id: string;
|
|
490
505
|
} | {
|
|
491
506
|
type: import("../responses").MessageType.text;
|
|
492
507
|
id: string;
|
|
@@ -575,6 +590,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
575
590
|
submitButton: {
|
|
576
591
|
label: string;
|
|
577
592
|
};
|
|
593
|
+
} | {
|
|
594
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
595
|
+
id: string;
|
|
578
596
|
} | {
|
|
579
597
|
type: import("../responses").MessageType.text;
|
|
580
598
|
id: string;
|
|
@@ -978,6 +996,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
978
996
|
submitButton: {
|
|
979
997
|
label?: unknown;
|
|
980
998
|
};
|
|
999
|
+
}>, z.ZodObject<{
|
|
1000
|
+
id: z.ZodString;
|
|
1001
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
1002
|
+
}, "strip", z.ZodTypeAny, {
|
|
1003
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1004
|
+
id: string;
|
|
1005
|
+
}, {
|
|
1006
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1007
|
+
id: string;
|
|
981
1008
|
}>]>, "many">>;
|
|
982
1009
|
}, "strip", z.ZodTypeAny, {
|
|
983
1010
|
languageCode: string;
|
|
@@ -1025,6 +1052,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1025
1052
|
submitButton: {
|
|
1026
1053
|
label: string;
|
|
1027
1054
|
};
|
|
1055
|
+
} | {
|
|
1056
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1057
|
+
id: string;
|
|
1028
1058
|
} | {
|
|
1029
1059
|
type: import("../responses").MessageType.text;
|
|
1030
1060
|
id: string;
|
|
@@ -1412,6 +1442,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1412
1442
|
submitButton: {
|
|
1413
1443
|
label?: unknown;
|
|
1414
1444
|
};
|
|
1445
|
+
}>, z.ZodObject<{
|
|
1446
|
+
id: z.ZodString;
|
|
1447
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
1448
|
+
}, "strip", z.ZodTypeAny, {
|
|
1449
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1450
|
+
id: string;
|
|
1451
|
+
}, {
|
|
1452
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1453
|
+
id: string;
|
|
1415
1454
|
}>]>, "many">>;
|
|
1416
1455
|
}, "strip", z.ZodTypeAny, {
|
|
1417
1456
|
languageCode: string;
|
|
@@ -1459,6 +1498,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1459
1498
|
submitButton: {
|
|
1460
1499
|
label: string;
|
|
1461
1500
|
};
|
|
1501
|
+
} | {
|
|
1502
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1503
|
+
id: string;
|
|
1462
1504
|
} | {
|
|
1463
1505
|
type: import("../responses").MessageType.text;
|
|
1464
1506
|
id: string;
|
|
@@ -1846,6 +1888,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1846
1888
|
submitButton: {
|
|
1847
1889
|
label?: unknown;
|
|
1848
1890
|
};
|
|
1891
|
+
}>, z.ZodObject<{
|
|
1892
|
+
id: z.ZodString;
|
|
1893
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
1894
|
+
}, "strip", z.ZodTypeAny, {
|
|
1895
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1896
|
+
id: string;
|
|
1897
|
+
}, {
|
|
1898
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1899
|
+
id: string;
|
|
1849
1900
|
}>]>, "many">>;
|
|
1850
1901
|
}, "strip", z.ZodTypeAny, {
|
|
1851
1902
|
languageCode: string;
|
|
@@ -1893,6 +1944,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1893
1944
|
submitButton: {
|
|
1894
1945
|
label: string;
|
|
1895
1946
|
};
|
|
1947
|
+
} | {
|
|
1948
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
1949
|
+
id: string;
|
|
1896
1950
|
} | {
|
|
1897
1951
|
type: import("../responses").MessageType.text;
|
|
1898
1952
|
id: string;
|
|
@@ -1980,6 +2034,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
1980
2034
|
submitButton: {
|
|
1981
2035
|
label: string;
|
|
1982
2036
|
};
|
|
2037
|
+
} | {
|
|
2038
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2039
|
+
id: string;
|
|
1983
2040
|
} | {
|
|
1984
2041
|
type: import("../responses").MessageType.text;
|
|
1985
2042
|
id: string;
|
|
@@ -2058,6 +2115,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2058
2115
|
submitButton: {
|
|
2059
2116
|
label: string;
|
|
2060
2117
|
};
|
|
2118
|
+
} | {
|
|
2119
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2120
|
+
id: string;
|
|
2061
2121
|
} | {
|
|
2062
2122
|
type: import("../responses").MessageType.text;
|
|
2063
2123
|
id: string;
|
|
@@ -2138,6 +2198,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2138
2198
|
submitButton: {
|
|
2139
2199
|
label: string;
|
|
2140
2200
|
};
|
|
2201
|
+
} | {
|
|
2202
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2203
|
+
id: string;
|
|
2141
2204
|
} | {
|
|
2142
2205
|
type: import("../responses").MessageType.text;
|
|
2143
2206
|
id: string;
|
|
@@ -2234,6 +2297,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2234
2297
|
submitButton: {
|
|
2235
2298
|
label: string;
|
|
2236
2299
|
};
|
|
2300
|
+
} | {
|
|
2301
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2302
|
+
id: string;
|
|
2237
2303
|
} | {
|
|
2238
2304
|
type: import("../responses").MessageType.text;
|
|
2239
2305
|
id: string;
|
|
@@ -2312,6 +2378,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2312
2378
|
submitButton: {
|
|
2313
2379
|
label: string;
|
|
2314
2380
|
};
|
|
2381
|
+
} | {
|
|
2382
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2383
|
+
id: string;
|
|
2315
2384
|
} | {
|
|
2316
2385
|
type: import("../responses").MessageType.text;
|
|
2317
2386
|
id: string;
|
|
@@ -2392,6 +2461,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2392
2461
|
submitButton: {
|
|
2393
2462
|
label: string;
|
|
2394
2463
|
};
|
|
2464
|
+
} | {
|
|
2465
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2466
|
+
id: string;
|
|
2395
2467
|
} | {
|
|
2396
2468
|
type: import("../responses").MessageType.text;
|
|
2397
2469
|
id: string;
|
|
@@ -2798,6 +2870,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2798
2870
|
submitButton: {
|
|
2799
2871
|
label?: unknown;
|
|
2800
2872
|
};
|
|
2873
|
+
}>, z.ZodObject<{
|
|
2874
|
+
id: z.ZodString;
|
|
2875
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
2876
|
+
}, "strip", z.ZodTypeAny, {
|
|
2877
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2878
|
+
id: string;
|
|
2879
|
+
}, {
|
|
2880
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2881
|
+
id: string;
|
|
2801
2882
|
}>]>, "many">>;
|
|
2802
2883
|
}, "strip", z.ZodTypeAny, {
|
|
2803
2884
|
languageCode: string;
|
|
@@ -2845,6 +2926,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
2845
2926
|
submitButton: {
|
|
2846
2927
|
label: string;
|
|
2847
2928
|
};
|
|
2929
|
+
} | {
|
|
2930
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
2931
|
+
id: string;
|
|
2848
2932
|
} | {
|
|
2849
2933
|
type: import("../responses").MessageType.text;
|
|
2850
2934
|
id: string;
|
|
@@ -3236,6 +3320,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3236
3320
|
submitButton: {
|
|
3237
3321
|
label?: unknown;
|
|
3238
3322
|
};
|
|
3323
|
+
}>, z.ZodObject<{
|
|
3324
|
+
id: z.ZodString;
|
|
3325
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
3326
|
+
}, "strip", z.ZodTypeAny, {
|
|
3327
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3328
|
+
id: string;
|
|
3329
|
+
}, {
|
|
3330
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3331
|
+
id: string;
|
|
3239
3332
|
}>]>, "many">>;
|
|
3240
3333
|
}, "strip", z.ZodTypeAny, {
|
|
3241
3334
|
languageCode: string;
|
|
@@ -3283,6 +3376,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3283
3376
|
submitButton: {
|
|
3284
3377
|
label: string;
|
|
3285
3378
|
};
|
|
3379
|
+
} | {
|
|
3380
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3381
|
+
id: string;
|
|
3286
3382
|
} | {
|
|
3287
3383
|
type: import("../responses").MessageType.text;
|
|
3288
3384
|
id: string;
|
|
@@ -3367,6 +3463,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3367
3463
|
submitButton: {
|
|
3368
3464
|
label: string;
|
|
3369
3465
|
};
|
|
3466
|
+
} | {
|
|
3467
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3468
|
+
id: string;
|
|
3370
3469
|
} | {
|
|
3371
3470
|
type: import("../responses").MessageType.text;
|
|
3372
3471
|
id: string;
|
|
@@ -3454,6 +3553,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3454
3553
|
submitButton: {
|
|
3455
3554
|
label: string;
|
|
3456
3555
|
};
|
|
3556
|
+
} | {
|
|
3557
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3558
|
+
id: string;
|
|
3457
3559
|
} | {
|
|
3458
3560
|
type: import("../responses").MessageType.text;
|
|
3459
3561
|
id: string;
|
|
@@ -3536,6 +3638,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3536
3638
|
submitButton: {
|
|
3537
3639
|
label: string;
|
|
3538
3640
|
};
|
|
3641
|
+
} | {
|
|
3642
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3643
|
+
id: string;
|
|
3539
3644
|
} | {
|
|
3540
3645
|
type: import("../responses").MessageType.text;
|
|
3541
3646
|
id: string;
|
|
@@ -3629,6 +3734,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3629
3734
|
submitButton: {
|
|
3630
3735
|
label: string;
|
|
3631
3736
|
};
|
|
3737
|
+
} | {
|
|
3738
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3739
|
+
id: string;
|
|
3632
3740
|
} | {
|
|
3633
3741
|
type: import("../responses").MessageType.text;
|
|
3634
3742
|
id: string;
|
|
@@ -3711,6 +3819,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
3711
3819
|
submitButton: {
|
|
3712
3820
|
label: string;
|
|
3713
3821
|
};
|
|
3822
|
+
} | {
|
|
3823
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
3824
|
+
id: string;
|
|
3714
3825
|
} | {
|
|
3715
3826
|
type: import("../responses").MessageType.text;
|
|
3716
3827
|
id: string;
|
|
@@ -4117,6 +4228,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
4117
4228
|
submitButton: {
|
|
4118
4229
|
label?: unknown;
|
|
4119
4230
|
};
|
|
4231
|
+
}>, z.ZodObject<{
|
|
4232
|
+
id: z.ZodString;
|
|
4233
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
4234
|
+
}, "strip", z.ZodTypeAny, {
|
|
4235
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4236
|
+
id: string;
|
|
4237
|
+
}, {
|
|
4238
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4239
|
+
id: string;
|
|
4120
4240
|
}>]>, "many">>;
|
|
4121
4241
|
}, "strip", z.ZodTypeAny, {
|
|
4122
4242
|
languageCode: string;
|
|
@@ -4164,6 +4284,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
4164
4284
|
submitButton: {
|
|
4165
4285
|
label: string;
|
|
4166
4286
|
};
|
|
4287
|
+
} | {
|
|
4288
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4289
|
+
id: string;
|
|
4167
4290
|
} | {
|
|
4168
4291
|
type: import("../responses").MessageType.text;
|
|
4169
4292
|
id: string;
|
|
@@ -4551,6 +4674,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
4551
4674
|
submitButton: {
|
|
4552
4675
|
label?: unknown;
|
|
4553
4676
|
};
|
|
4677
|
+
}>, z.ZodObject<{
|
|
4678
|
+
id: z.ZodString;
|
|
4679
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
4680
|
+
}, "strip", z.ZodTypeAny, {
|
|
4681
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4682
|
+
id: string;
|
|
4683
|
+
}, {
|
|
4684
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4685
|
+
id: string;
|
|
4554
4686
|
}>]>, "many">>;
|
|
4555
4687
|
}, "strip", z.ZodTypeAny, {
|
|
4556
4688
|
languageCode: string;
|
|
@@ -4598,6 +4730,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
4598
4730
|
submitButton: {
|
|
4599
4731
|
label: string;
|
|
4600
4732
|
};
|
|
4733
|
+
} | {
|
|
4734
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
4735
|
+
id: string;
|
|
4601
4736
|
} | {
|
|
4602
4737
|
type: import("../responses").MessageType.text;
|
|
4603
4738
|
id: string;
|
|
@@ -4985,6 +5120,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
4985
5120
|
submitButton: {
|
|
4986
5121
|
label?: unknown;
|
|
4987
5122
|
};
|
|
5123
|
+
}>, z.ZodObject<{
|
|
5124
|
+
id: z.ZodString;
|
|
5125
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
5126
|
+
}, "strip", z.ZodTypeAny, {
|
|
5127
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5128
|
+
id: string;
|
|
5129
|
+
}, {
|
|
5130
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5131
|
+
id: string;
|
|
4988
5132
|
}>]>, "many">>;
|
|
4989
5133
|
}, "strip", z.ZodTypeAny, {
|
|
4990
5134
|
languageCode: string;
|
|
@@ -5032,6 +5176,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5032
5176
|
submitButton: {
|
|
5033
5177
|
label: string;
|
|
5034
5178
|
};
|
|
5179
|
+
} | {
|
|
5180
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5181
|
+
id: string;
|
|
5035
5182
|
} | {
|
|
5036
5183
|
type: import("../responses").MessageType.text;
|
|
5037
5184
|
id: string;
|
|
@@ -5419,6 +5566,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5419
5566
|
submitButton: {
|
|
5420
5567
|
label?: unknown;
|
|
5421
5568
|
};
|
|
5569
|
+
}>, z.ZodObject<{
|
|
5570
|
+
id: z.ZodString;
|
|
5571
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
5572
|
+
}, "strip", z.ZodTypeAny, {
|
|
5573
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5574
|
+
id: string;
|
|
5575
|
+
}, {
|
|
5576
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5577
|
+
id: string;
|
|
5422
5578
|
}>]>, "many">>;
|
|
5423
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5424
5580
|
languageCode: string;
|
|
@@ -5466,6 +5622,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5466
5622
|
submitButton: {
|
|
5467
5623
|
label: string;
|
|
5468
5624
|
};
|
|
5625
|
+
} | {
|
|
5626
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5627
|
+
id: string;
|
|
5469
5628
|
} | {
|
|
5470
5629
|
type: import("../responses").MessageType.text;
|
|
5471
5630
|
id: string;
|
|
@@ -5550,6 +5709,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5550
5709
|
submitButton: {
|
|
5551
5710
|
label: string;
|
|
5552
5711
|
};
|
|
5712
|
+
} | {
|
|
5713
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5714
|
+
id: string;
|
|
5553
5715
|
} | {
|
|
5554
5716
|
type: import("../responses").MessageType.text;
|
|
5555
5717
|
id: string;
|
|
@@ -5628,6 +5790,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5628
5790
|
submitButton: {
|
|
5629
5791
|
label: string;
|
|
5630
5792
|
};
|
|
5793
|
+
} | {
|
|
5794
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5795
|
+
id: string;
|
|
5631
5796
|
} | {
|
|
5632
5797
|
type: import("../responses").MessageType.text;
|
|
5633
5798
|
id: string;
|
|
@@ -5707,6 +5872,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5707
5872
|
submitButton: {
|
|
5708
5873
|
label: string;
|
|
5709
5874
|
};
|
|
5875
|
+
} | {
|
|
5876
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5877
|
+
id: string;
|
|
5710
5878
|
} | {
|
|
5711
5879
|
type: import("../responses").MessageType.text;
|
|
5712
5880
|
id: string;
|
|
@@ -5785,6 +5953,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5785
5953
|
submitButton: {
|
|
5786
5954
|
label: string;
|
|
5787
5955
|
};
|
|
5956
|
+
} | {
|
|
5957
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
5958
|
+
id: string;
|
|
5788
5959
|
} | {
|
|
5789
5960
|
type: import("../responses").MessageType.text;
|
|
5790
5961
|
id: string;
|
|
@@ -5878,6 +6049,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5878
6049
|
submitButton: {
|
|
5879
6050
|
label: string;
|
|
5880
6051
|
};
|
|
6052
|
+
} | {
|
|
6053
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6054
|
+
id: string;
|
|
5881
6055
|
} | {
|
|
5882
6056
|
type: import("../responses").MessageType.text;
|
|
5883
6057
|
id: string;
|
|
@@ -5956,6 +6130,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
5956
6130
|
submitButton: {
|
|
5957
6131
|
label: string;
|
|
5958
6132
|
};
|
|
6133
|
+
} | {
|
|
6134
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6135
|
+
id: string;
|
|
5959
6136
|
} | {
|
|
5960
6137
|
type: import("../responses").MessageType.text;
|
|
5961
6138
|
id: string;
|
|
@@ -6035,6 +6212,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
6035
6212
|
submitButton: {
|
|
6036
6213
|
label: string;
|
|
6037
6214
|
};
|
|
6215
|
+
} | {
|
|
6216
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6217
|
+
id: string;
|
|
6038
6218
|
} | {
|
|
6039
6219
|
type: import("../responses").MessageType.text;
|
|
6040
6220
|
id: string;
|
|
@@ -6113,6 +6293,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
6113
6293
|
submitButton: {
|
|
6114
6294
|
label: string;
|
|
6115
6295
|
};
|
|
6296
|
+
} | {
|
|
6297
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6298
|
+
id: string;
|
|
6116
6299
|
} | {
|
|
6117
6300
|
type: import("../responses").MessageType.text;
|
|
6118
6301
|
id: string;
|
|
@@ -6542,6 +6725,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
6542
6725
|
submitButton: {
|
|
6543
6726
|
label?: unknown;
|
|
6544
6727
|
};
|
|
6728
|
+
}>, z.ZodObject<{
|
|
6729
|
+
id: z.ZodString;
|
|
6730
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
6731
|
+
}, "strip", z.ZodTypeAny, {
|
|
6732
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6733
|
+
id: string;
|
|
6734
|
+
}, {
|
|
6735
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6736
|
+
id: string;
|
|
6545
6737
|
}>]>, "many">>;
|
|
6546
6738
|
}, "strip", z.ZodTypeAny, {
|
|
6547
6739
|
languageCode: string;
|
|
@@ -6589,6 +6781,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
6589
6781
|
submitButton: {
|
|
6590
6782
|
label: string;
|
|
6591
6783
|
};
|
|
6784
|
+
} | {
|
|
6785
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
6786
|
+
id: string;
|
|
6592
6787
|
} | {
|
|
6593
6788
|
type: import("../responses").MessageType.text;
|
|
6594
6789
|
id: string;
|
|
@@ -6976,6 +7171,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
6976
7171
|
submitButton: {
|
|
6977
7172
|
label?: unknown;
|
|
6978
7173
|
};
|
|
7174
|
+
}>, z.ZodObject<{
|
|
7175
|
+
id: z.ZodString;
|
|
7176
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
7177
|
+
}, "strip", z.ZodTypeAny, {
|
|
7178
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7179
|
+
id: string;
|
|
7180
|
+
}, {
|
|
7181
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7182
|
+
id: string;
|
|
6979
7183
|
}>]>, "many">>;
|
|
6980
7184
|
}, "strip", z.ZodTypeAny, {
|
|
6981
7185
|
languageCode: string;
|
|
@@ -7023,6 +7227,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7023
7227
|
submitButton: {
|
|
7024
7228
|
label: string;
|
|
7025
7229
|
};
|
|
7230
|
+
} | {
|
|
7231
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7232
|
+
id: string;
|
|
7026
7233
|
} | {
|
|
7027
7234
|
type: import("../responses").MessageType.text;
|
|
7028
7235
|
id: string;
|
|
@@ -7410,6 +7617,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7410
7617
|
submitButton: {
|
|
7411
7618
|
label?: unknown;
|
|
7412
7619
|
};
|
|
7620
|
+
}>, z.ZodObject<{
|
|
7621
|
+
id: z.ZodString;
|
|
7622
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
7623
|
+
}, "strip", z.ZodTypeAny, {
|
|
7624
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7625
|
+
id: string;
|
|
7626
|
+
}, {
|
|
7627
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7628
|
+
id: string;
|
|
7413
7629
|
}>]>, "many">>;
|
|
7414
7630
|
}, "strip", z.ZodTypeAny, {
|
|
7415
7631
|
languageCode: string;
|
|
@@ -7457,6 +7673,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7457
7673
|
submitButton: {
|
|
7458
7674
|
label: string;
|
|
7459
7675
|
};
|
|
7676
|
+
} | {
|
|
7677
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7678
|
+
id: string;
|
|
7460
7679
|
} | {
|
|
7461
7680
|
type: import("../responses").MessageType.text;
|
|
7462
7681
|
id: string;
|
|
@@ -7544,6 +7763,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7544
7763
|
submitButton: {
|
|
7545
7764
|
label: string;
|
|
7546
7765
|
};
|
|
7766
|
+
} | {
|
|
7767
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7768
|
+
id: string;
|
|
7547
7769
|
} | {
|
|
7548
7770
|
type: import("../responses").MessageType.text;
|
|
7549
7771
|
id: string;
|
|
@@ -7622,6 +7844,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7622
7844
|
submitButton: {
|
|
7623
7845
|
label: string;
|
|
7624
7846
|
};
|
|
7847
|
+
} | {
|
|
7848
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7849
|
+
id: string;
|
|
7625
7850
|
} | {
|
|
7626
7851
|
type: import("../responses").MessageType.text;
|
|
7627
7852
|
id: string;
|
|
@@ -7702,6 +7927,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7702
7927
|
submitButton: {
|
|
7703
7928
|
label: string;
|
|
7704
7929
|
};
|
|
7930
|
+
} | {
|
|
7931
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
7932
|
+
id: string;
|
|
7705
7933
|
} | {
|
|
7706
7934
|
type: import("../responses").MessageType.text;
|
|
7707
7935
|
id: string;
|
|
@@ -7798,6 +8026,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7798
8026
|
submitButton: {
|
|
7799
8027
|
label: string;
|
|
7800
8028
|
};
|
|
8029
|
+
} | {
|
|
8030
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8031
|
+
id: string;
|
|
7801
8032
|
} | {
|
|
7802
8033
|
type: import("../responses").MessageType.text;
|
|
7803
8034
|
id: string;
|
|
@@ -7876,6 +8107,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7876
8107
|
submitButton: {
|
|
7877
8108
|
label: string;
|
|
7878
8109
|
};
|
|
8110
|
+
} | {
|
|
8111
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8112
|
+
id: string;
|
|
7879
8113
|
} | {
|
|
7880
8114
|
type: import("../responses").MessageType.text;
|
|
7881
8115
|
id: string;
|
|
@@ -7956,6 +8190,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
7956
8190
|
submitButton: {
|
|
7957
8191
|
label: string;
|
|
7958
8192
|
};
|
|
8193
|
+
} | {
|
|
8194
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8195
|
+
id: string;
|
|
7959
8196
|
} | {
|
|
7960
8197
|
type: import("../responses").MessageType.text;
|
|
7961
8198
|
id: string;
|
|
@@ -8466,6 +8703,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
8466
8703
|
submitButton: {
|
|
8467
8704
|
label?: unknown;
|
|
8468
8705
|
};
|
|
8706
|
+
}>, z.ZodObject<{
|
|
8707
|
+
id: z.ZodString;
|
|
8708
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
8709
|
+
}, "strip", z.ZodTypeAny, {
|
|
8710
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8711
|
+
id: string;
|
|
8712
|
+
}, {
|
|
8713
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8714
|
+
id: string;
|
|
8469
8715
|
}>]>, "many">>;
|
|
8470
8716
|
}, "strip", z.ZodTypeAny, {
|
|
8471
8717
|
languageCode: string;
|
|
@@ -8513,6 +8759,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
8513
8759
|
submitButton: {
|
|
8514
8760
|
label: string;
|
|
8515
8761
|
};
|
|
8762
|
+
} | {
|
|
8763
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
8764
|
+
id: string;
|
|
8516
8765
|
} | {
|
|
8517
8766
|
type: import("../responses").MessageType.text;
|
|
8518
8767
|
id: string;
|
|
@@ -8900,6 +9149,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
8900
9149
|
submitButton: {
|
|
8901
9150
|
label?: unknown;
|
|
8902
9151
|
};
|
|
9152
|
+
}>, z.ZodObject<{
|
|
9153
|
+
id: z.ZodString;
|
|
9154
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
9155
|
+
}, "strip", z.ZodTypeAny, {
|
|
9156
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9157
|
+
id: string;
|
|
9158
|
+
}, {
|
|
9159
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9160
|
+
id: string;
|
|
8903
9161
|
}>]>, "many">>;
|
|
8904
9162
|
}, "strip", z.ZodTypeAny, {
|
|
8905
9163
|
languageCode: string;
|
|
@@ -8947,6 +9205,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
8947
9205
|
submitButton: {
|
|
8948
9206
|
label: string;
|
|
8949
9207
|
};
|
|
9208
|
+
} | {
|
|
9209
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9210
|
+
id: string;
|
|
8950
9211
|
} | {
|
|
8951
9212
|
type: import("../responses").MessageType.text;
|
|
8952
9213
|
id: string;
|
|
@@ -9334,6 +9595,15 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9334
9595
|
submitButton: {
|
|
9335
9596
|
label?: unknown;
|
|
9336
9597
|
};
|
|
9598
|
+
}>, z.ZodObject<{
|
|
9599
|
+
id: z.ZodString;
|
|
9600
|
+
type: z.ZodLiteral<import("../responses").MessageType.leadGeneration>;
|
|
9601
|
+
}, "strip", z.ZodTypeAny, {
|
|
9602
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9603
|
+
id: string;
|
|
9604
|
+
}, {
|
|
9605
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9606
|
+
id: string;
|
|
9337
9607
|
}>]>, "many">>;
|
|
9338
9608
|
}, "strip", z.ZodTypeAny, {
|
|
9339
9609
|
languageCode: string;
|
|
@@ -9381,6 +9651,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9381
9651
|
submitButton: {
|
|
9382
9652
|
label: string;
|
|
9383
9653
|
};
|
|
9654
|
+
} | {
|
|
9655
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9656
|
+
id: string;
|
|
9384
9657
|
} | {
|
|
9385
9658
|
type: import("../responses").MessageType.text;
|
|
9386
9659
|
id: string;
|
|
@@ -9469,6 +9742,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9469
9742
|
submitButton: {
|
|
9470
9743
|
label: string;
|
|
9471
9744
|
};
|
|
9745
|
+
} | {
|
|
9746
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9747
|
+
id: string;
|
|
9472
9748
|
} | {
|
|
9473
9749
|
type: import("../responses").MessageType.text;
|
|
9474
9750
|
id: string;
|
|
@@ -9547,6 +9823,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9547
9823
|
submitButton: {
|
|
9548
9824
|
label: string;
|
|
9549
9825
|
};
|
|
9826
|
+
} | {
|
|
9827
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9828
|
+
id: string;
|
|
9550
9829
|
} | {
|
|
9551
9830
|
type: import("../responses").MessageType.text;
|
|
9552
9831
|
id: string;
|
|
@@ -9627,6 +9906,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9627
9906
|
submitButton: {
|
|
9628
9907
|
label: string;
|
|
9629
9908
|
};
|
|
9909
|
+
} | {
|
|
9910
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
9911
|
+
id: string;
|
|
9630
9912
|
} | {
|
|
9631
9913
|
type: import("../responses").MessageType.text;
|
|
9632
9914
|
id: string;
|
|
@@ -9734,6 +10016,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9734
10016
|
submitButton: {
|
|
9735
10017
|
label: string;
|
|
9736
10018
|
};
|
|
10019
|
+
} | {
|
|
10020
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10021
|
+
id: string;
|
|
9737
10022
|
} | {
|
|
9738
10023
|
type: import("../responses").MessageType.text;
|
|
9739
10024
|
id: string;
|
|
@@ -9812,6 +10097,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9812
10097
|
submitButton: {
|
|
9813
10098
|
label: string;
|
|
9814
10099
|
};
|
|
10100
|
+
} | {
|
|
10101
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10102
|
+
id: string;
|
|
9815
10103
|
} | {
|
|
9816
10104
|
type: import("../responses").MessageType.text;
|
|
9817
10105
|
id: string;
|
|
@@ -9892,6 +10180,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
9892
10180
|
submitButton: {
|
|
9893
10181
|
label: string;
|
|
9894
10182
|
};
|
|
10183
|
+
} | {
|
|
10184
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10185
|
+
id: string;
|
|
9895
10186
|
} | {
|
|
9896
10187
|
type: import("../responses").MessageType.text;
|
|
9897
10188
|
id: string;
|
|
@@ -10021,6 +10312,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10021
10312
|
submitButton: {
|
|
10022
10313
|
label: string;
|
|
10023
10314
|
};
|
|
10315
|
+
} | {
|
|
10316
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10317
|
+
id: string;
|
|
10024
10318
|
} | {
|
|
10025
10319
|
type: import("../responses").MessageType.text;
|
|
10026
10320
|
id: string;
|
|
@@ -10108,6 +10402,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10108
10402
|
submitButton: {
|
|
10109
10403
|
label: string;
|
|
10110
10404
|
};
|
|
10405
|
+
} | {
|
|
10406
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10407
|
+
id: string;
|
|
10111
10408
|
} | {
|
|
10112
10409
|
type: import("../responses").MessageType.text;
|
|
10113
10410
|
id: string;
|
|
@@ -10186,6 +10483,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10186
10483
|
submitButton: {
|
|
10187
10484
|
label: string;
|
|
10188
10485
|
};
|
|
10486
|
+
} | {
|
|
10487
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10488
|
+
id: string;
|
|
10189
10489
|
} | {
|
|
10190
10490
|
type: import("../responses").MessageType.text;
|
|
10191
10491
|
id: string;
|
|
@@ -10266,6 +10566,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10266
10566
|
submitButton: {
|
|
10267
10567
|
label: string;
|
|
10268
10568
|
};
|
|
10569
|
+
} | {
|
|
10570
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10571
|
+
id: string;
|
|
10269
10572
|
} | {
|
|
10270
10573
|
type: import("../responses").MessageType.text;
|
|
10271
10574
|
id: string;
|
|
@@ -10351,6 +10654,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10351
10654
|
submitButton: {
|
|
10352
10655
|
label: string;
|
|
10353
10656
|
};
|
|
10657
|
+
} | {
|
|
10658
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10659
|
+
id: string;
|
|
10354
10660
|
} | {
|
|
10355
10661
|
type: import("../responses").MessageType.text;
|
|
10356
10662
|
id: string;
|
|
@@ -10433,6 +10739,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10433
10739
|
submitButton: {
|
|
10434
10740
|
label: string;
|
|
10435
10741
|
};
|
|
10742
|
+
} | {
|
|
10743
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10744
|
+
id: string;
|
|
10436
10745
|
} | {
|
|
10437
10746
|
type: import("../responses").MessageType.text;
|
|
10438
10747
|
id: string;
|
|
@@ -10519,6 +10828,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10519
10828
|
submitButton: {
|
|
10520
10829
|
label: string;
|
|
10521
10830
|
};
|
|
10831
|
+
} | {
|
|
10832
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10833
|
+
id: string;
|
|
10522
10834
|
} | {
|
|
10523
10835
|
type: import("../responses").MessageType.text;
|
|
10524
10836
|
id: string;
|
|
@@ -10597,6 +10909,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10597
10909
|
submitButton: {
|
|
10598
10910
|
label: string;
|
|
10599
10911
|
};
|
|
10912
|
+
} | {
|
|
10913
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10914
|
+
id: string;
|
|
10600
10915
|
} | {
|
|
10601
10916
|
type: import("../responses").MessageType.text;
|
|
10602
10917
|
id: string;
|
|
@@ -10676,6 +10991,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10676
10991
|
submitButton: {
|
|
10677
10992
|
label: string;
|
|
10678
10993
|
};
|
|
10994
|
+
} | {
|
|
10995
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
10996
|
+
id: string;
|
|
10679
10997
|
} | {
|
|
10680
10998
|
type: import("../responses").MessageType.text;
|
|
10681
10999
|
id: string;
|
|
@@ -10754,6 +11072,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10754
11072
|
submitButton: {
|
|
10755
11073
|
label: string;
|
|
10756
11074
|
};
|
|
11075
|
+
} | {
|
|
11076
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11077
|
+
id: string;
|
|
10757
11078
|
} | {
|
|
10758
11079
|
type: import("../responses").MessageType.text;
|
|
10759
11080
|
id: string;
|
|
@@ -10845,6 +11166,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10845
11166
|
submitButton: {
|
|
10846
11167
|
label: string;
|
|
10847
11168
|
};
|
|
11169
|
+
} | {
|
|
11170
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11171
|
+
id: string;
|
|
10848
11172
|
} | {
|
|
10849
11173
|
type: import("../responses").MessageType.text;
|
|
10850
11174
|
id: string;
|
|
@@ -10923,6 +11247,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
10923
11247
|
submitButton: {
|
|
10924
11248
|
label: string;
|
|
10925
11249
|
};
|
|
11250
|
+
} | {
|
|
11251
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11252
|
+
id: string;
|
|
10926
11253
|
} | {
|
|
10927
11254
|
type: import("../responses").MessageType.text;
|
|
10928
11255
|
id: string;
|
|
@@ -11003,6 +11330,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
11003
11330
|
submitButton: {
|
|
11004
11331
|
label: string;
|
|
11005
11332
|
};
|
|
11333
|
+
} | {
|
|
11334
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11335
|
+
id: string;
|
|
11006
11336
|
} | {
|
|
11007
11337
|
type: import("../responses").MessageType.text;
|
|
11008
11338
|
id: string;
|
|
@@ -11112,6 +11442,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
11112
11442
|
submitButton: {
|
|
11113
11443
|
label: string;
|
|
11114
11444
|
};
|
|
11445
|
+
} | {
|
|
11446
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11447
|
+
id: string;
|
|
11115
11448
|
} | {
|
|
11116
11449
|
type: import("../responses").MessageType.text;
|
|
11117
11450
|
id: string;
|
|
@@ -11190,6 +11523,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
11190
11523
|
submitButton: {
|
|
11191
11524
|
label: string;
|
|
11192
11525
|
};
|
|
11526
|
+
} | {
|
|
11527
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11528
|
+
id: string;
|
|
11193
11529
|
} | {
|
|
11194
11530
|
type: import("../responses").MessageType.text;
|
|
11195
11531
|
id: string;
|
|
@@ -11270,6 +11606,9 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
11270
11606
|
submitButton: {
|
|
11271
11607
|
label: string;
|
|
11272
11608
|
};
|
|
11609
|
+
} | {
|
|
11610
|
+
type: import("../responses").MessageType.leadGeneration;
|
|
11611
|
+
id: string;
|
|
11273
11612
|
} | {
|
|
11274
11613
|
type: import("../responses").MessageType.text;
|
|
11275
11614
|
id: string;
|