@onlive.ai/flow-client 0.1.238 → 0.1.271
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/client/client.service.cjs +2 -2
- package/client/client.service.d.cts +7 -0
- package/client/client.service.d.ts +7 -0
- package/client/client.service.js +2 -2
- package/client/client.service.spec.cjs +2 -2
- package/client/client.types.cjs +2 -2
- package/client/client.types.d.cts +734 -153
- package/client/client.types.d.ts +734 -153
- package/client/client.types.js +2 -2
- package/flow.types.cjs +1 -1
- package/flow.types.js +1 -1
- package/index.cjs +2 -2
- package/index.d.cts +1 -1
- package/index.d.ts +1 -1
- package/index.iife.js +2 -0
- package/index.js +2 -2
- package/package.json +8 -7
- package/schema-generator.cjs +1 -1
- package/schema-generator.js +1 -1
- package/tracking/tracking.service.cjs +2 -2
- package/tracking/tracking.service.d.cts +9 -0
- package/tracking/tracking.service.d.ts +9 -0
- package/tracking/tracking.service.js +2 -2
- package/tracking/tracking.types.cjs +1 -1
- package/tracking/tracking.types.d.cts +64 -0
- package/tracking/tracking.types.d.ts +64 -0
- package/tracking/tracking.types.js +1 -1
|
@@ -68,6 +68,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
68
68
|
agent_id?: string | undefined;
|
|
69
69
|
agent_nature?: "real" | "ai" | undefined;
|
|
70
70
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
71
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
72
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
71
73
|
agent_email?: string | undefined;
|
|
72
74
|
agent_phone?: string | undefined;
|
|
73
75
|
agent_name?: string | undefined;
|
|
@@ -133,6 +135,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
133
135
|
agent_id?: string | undefined;
|
|
134
136
|
agent_nature?: "real" | "ai" | undefined;
|
|
135
137
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
138
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
139
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
136
140
|
agent_email?: string | undefined;
|
|
137
141
|
agent_phone?: string | undefined;
|
|
138
142
|
agent_name?: string | undefined;
|
|
@@ -196,6 +200,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
196
200
|
agent_id?: string | undefined;
|
|
197
201
|
agent_nature?: "real" | "ai" | undefined;
|
|
198
202
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
203
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
204
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
199
205
|
agent_email?: string | undefined;
|
|
200
206
|
agent_phone?: string | undefined;
|
|
201
207
|
agent_name?: string | undefined;
|
|
@@ -257,6 +263,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
257
263
|
agent_id?: string | undefined;
|
|
258
264
|
agent_nature?: "real" | "ai" | undefined;
|
|
259
265
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
266
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
267
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
260
268
|
agent_email?: string | undefined;
|
|
261
269
|
agent_phone?: string | undefined;
|
|
262
270
|
agent_name?: string | undefined;
|
|
@@ -317,6 +325,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
317
325
|
agent_id?: string | undefined;
|
|
318
326
|
agent_nature?: "real" | "ai" | undefined;
|
|
319
327
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
328
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
329
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
320
330
|
agent_email?: string | undefined;
|
|
321
331
|
agent_phone?: string | undefined;
|
|
322
332
|
agent_name?: string | undefined;
|
|
@@ -377,6 +387,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
377
387
|
agent_id?: string | undefined;
|
|
378
388
|
agent_nature?: "real" | "ai" | undefined;
|
|
379
389
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
390
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
391
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
380
392
|
agent_email?: string | undefined;
|
|
381
393
|
agent_phone?: string | undefined;
|
|
382
394
|
agent_name?: string | undefined;
|
|
@@ -435,6 +447,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
435
447
|
agent_id?: string | undefined;
|
|
436
448
|
agent_nature?: "real" | "ai" | undefined;
|
|
437
449
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
450
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
451
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
438
452
|
agent_email?: string | undefined;
|
|
439
453
|
agent_phone?: string | undefined;
|
|
440
454
|
agent_name?: string | undefined;
|
|
@@ -499,6 +513,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
499
513
|
agent_id?: string | undefined;
|
|
500
514
|
agent_nature?: "real" | "ai" | undefined;
|
|
501
515
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
516
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
517
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
502
518
|
agent_email?: string | undefined;
|
|
503
519
|
agent_phone?: string | undefined;
|
|
504
520
|
agent_name?: string | undefined;
|
|
@@ -559,6 +575,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
559
575
|
agent_id?: string | undefined;
|
|
560
576
|
agent_nature?: "real" | "ai" | undefined;
|
|
561
577
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
578
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
579
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
562
580
|
agent_email?: string | undefined;
|
|
563
581
|
agent_phone?: string | undefined;
|
|
564
582
|
agent_name?: string | undefined;
|
|
@@ -624,6 +642,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
624
642
|
agent_id?: string | undefined;
|
|
625
643
|
agent_nature?: "real" | "ai" | undefined;
|
|
626
644
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
645
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
646
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
627
647
|
agent_email?: string | undefined;
|
|
628
648
|
agent_phone?: string | undefined;
|
|
629
649
|
agent_name?: string | undefined;
|
|
@@ -687,6 +707,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
687
707
|
agent_id?: string | undefined;
|
|
688
708
|
agent_nature?: "real" | "ai" | undefined;
|
|
689
709
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
710
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
711
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
690
712
|
agent_email?: string | undefined;
|
|
691
713
|
agent_phone?: string | undefined;
|
|
692
714
|
agent_name?: string | undefined;
|
|
@@ -748,6 +770,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
748
770
|
agent_id?: string | undefined;
|
|
749
771
|
agent_nature?: "real" | "ai" | undefined;
|
|
750
772
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
773
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
774
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
751
775
|
agent_email?: string | undefined;
|
|
752
776
|
agent_phone?: string | undefined;
|
|
753
777
|
agent_name?: string | undefined;
|
|
@@ -808,6 +832,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
808
832
|
agent_id?: string | undefined;
|
|
809
833
|
agent_nature?: "real" | "ai" | undefined;
|
|
810
834
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
835
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
836
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
811
837
|
agent_email?: string | undefined;
|
|
812
838
|
agent_phone?: string | undefined;
|
|
813
839
|
agent_name?: string | undefined;
|
|
@@ -868,6 +894,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
868
894
|
agent_id?: string | undefined;
|
|
869
895
|
agent_nature?: "real" | "ai" | undefined;
|
|
870
896
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
897
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
898
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
871
899
|
agent_email?: string | undefined;
|
|
872
900
|
agent_phone?: string | undefined;
|
|
873
901
|
agent_name?: string | undefined;
|
|
@@ -926,6 +954,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
926
954
|
agent_id?: string | undefined;
|
|
927
955
|
agent_nature?: "real" | "ai" | undefined;
|
|
928
956
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
957
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
958
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
929
959
|
agent_email?: string | undefined;
|
|
930
960
|
agent_phone?: string | undefined;
|
|
931
961
|
agent_name?: string | undefined;
|
|
@@ -990,6 +1020,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
990
1020
|
agent_id?: string | undefined;
|
|
991
1021
|
agent_nature?: "real" | "ai" | undefined;
|
|
992
1022
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1023
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1024
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
993
1025
|
agent_email?: string | undefined;
|
|
994
1026
|
agent_phone?: string | undefined;
|
|
995
1027
|
agent_name?: string | undefined;
|
|
@@ -1071,6 +1103,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1071
1103
|
agent_id?: string | undefined;
|
|
1072
1104
|
agent_nature?: "real" | "ai" | undefined;
|
|
1073
1105
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1106
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1107
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1074
1108
|
agent_email?: string | undefined;
|
|
1075
1109
|
agent_phone?: string | undefined;
|
|
1076
1110
|
agent_name?: string | undefined;
|
|
@@ -1136,6 +1170,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1136
1170
|
agent_id?: string | undefined;
|
|
1137
1171
|
agent_nature?: "real" | "ai" | undefined;
|
|
1138
1172
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1173
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1174
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1139
1175
|
agent_email?: string | undefined;
|
|
1140
1176
|
agent_phone?: string | undefined;
|
|
1141
1177
|
agent_name?: string | undefined;
|
|
@@ -1199,6 +1235,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1199
1235
|
agent_id?: string | undefined;
|
|
1200
1236
|
agent_nature?: "real" | "ai" | undefined;
|
|
1201
1237
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1238
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1239
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1202
1240
|
agent_email?: string | undefined;
|
|
1203
1241
|
agent_phone?: string | undefined;
|
|
1204
1242
|
agent_name?: string | undefined;
|
|
@@ -1260,6 +1298,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1260
1298
|
agent_id?: string | undefined;
|
|
1261
1299
|
agent_nature?: "real" | "ai" | undefined;
|
|
1262
1300
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1301
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1302
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1263
1303
|
agent_email?: string | undefined;
|
|
1264
1304
|
agent_phone?: string | undefined;
|
|
1265
1305
|
agent_name?: string | undefined;
|
|
@@ -1320,6 +1360,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1320
1360
|
agent_id?: string | undefined;
|
|
1321
1361
|
agent_nature?: "real" | "ai" | undefined;
|
|
1322
1362
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1363
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1364
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1323
1365
|
agent_email?: string | undefined;
|
|
1324
1366
|
agent_phone?: string | undefined;
|
|
1325
1367
|
agent_name?: string | undefined;
|
|
@@ -1380,6 +1422,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1380
1422
|
agent_id?: string | undefined;
|
|
1381
1423
|
agent_nature?: "real" | "ai" | undefined;
|
|
1382
1424
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1425
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1426
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1383
1427
|
agent_email?: string | undefined;
|
|
1384
1428
|
agent_phone?: string | undefined;
|
|
1385
1429
|
agent_name?: string | undefined;
|
|
@@ -1438,6 +1482,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1438
1482
|
agent_id?: string | undefined;
|
|
1439
1483
|
agent_nature?: "real" | "ai" | undefined;
|
|
1440
1484
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1485
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1486
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1441
1487
|
agent_email?: string | undefined;
|
|
1442
1488
|
agent_phone?: string | undefined;
|
|
1443
1489
|
agent_name?: string | undefined;
|
|
@@ -1502,6 +1548,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1502
1548
|
agent_id?: string | undefined;
|
|
1503
1549
|
agent_nature?: "real" | "ai" | undefined;
|
|
1504
1550
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1551
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1552
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1505
1553
|
agent_email?: string | undefined;
|
|
1506
1554
|
agent_phone?: string | undefined;
|
|
1507
1555
|
agent_name?: string | undefined;
|
|
@@ -1575,6 +1623,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1575
1623
|
agent_id?: string | undefined;
|
|
1576
1624
|
agent_nature?: "real" | "ai" | undefined;
|
|
1577
1625
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1626
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1627
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1578
1628
|
agent_email?: string | undefined;
|
|
1579
1629
|
agent_phone?: string | undefined;
|
|
1580
1630
|
agent_name?: string | undefined;
|
|
@@ -1640,6 +1690,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1640
1690
|
agent_id?: string | undefined;
|
|
1641
1691
|
agent_nature?: "real" | "ai" | undefined;
|
|
1642
1692
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1693
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1694
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1643
1695
|
agent_email?: string | undefined;
|
|
1644
1696
|
agent_phone?: string | undefined;
|
|
1645
1697
|
agent_name?: string | undefined;
|
|
@@ -1703,6 +1755,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1703
1755
|
agent_id?: string | undefined;
|
|
1704
1756
|
agent_nature?: "real" | "ai" | undefined;
|
|
1705
1757
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1758
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1759
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1706
1760
|
agent_email?: string | undefined;
|
|
1707
1761
|
agent_phone?: string | undefined;
|
|
1708
1762
|
agent_name?: string | undefined;
|
|
@@ -1764,6 +1818,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1764
1818
|
agent_id?: string | undefined;
|
|
1765
1819
|
agent_nature?: "real" | "ai" | undefined;
|
|
1766
1820
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1821
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1822
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1767
1823
|
agent_email?: string | undefined;
|
|
1768
1824
|
agent_phone?: string | undefined;
|
|
1769
1825
|
agent_name?: string | undefined;
|
|
@@ -1824,6 +1880,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1824
1880
|
agent_id?: string | undefined;
|
|
1825
1881
|
agent_nature?: "real" | "ai" | undefined;
|
|
1826
1882
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1883
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1884
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1827
1885
|
agent_email?: string | undefined;
|
|
1828
1886
|
agent_phone?: string | undefined;
|
|
1829
1887
|
agent_name?: string | undefined;
|
|
@@ -1884,6 +1942,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1884
1942
|
agent_id?: string | undefined;
|
|
1885
1943
|
agent_nature?: "real" | "ai" | undefined;
|
|
1886
1944
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1945
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1946
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1887
1947
|
agent_email?: string | undefined;
|
|
1888
1948
|
agent_phone?: string | undefined;
|
|
1889
1949
|
agent_name?: string | undefined;
|
|
@@ -1942,6 +2002,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
1942
2002
|
agent_id?: string | undefined;
|
|
1943
2003
|
agent_nature?: "real" | "ai" | undefined;
|
|
1944
2004
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
2005
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
2006
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
1945
2007
|
agent_email?: string | undefined;
|
|
1946
2008
|
agent_phone?: string | undefined;
|
|
1947
2009
|
agent_name?: string | undefined;
|
|
@@ -2006,6 +2068,8 @@ declare const TrackingOptionsSchema: z.ZodObject<{
|
|
|
2006
2068
|
agent_id?: string | undefined;
|
|
2007
2069
|
agent_nature?: "real" | "ai" | undefined;
|
|
2008
2070
|
agent_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
2071
|
+
agent_initial_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
2072
|
+
agent_active_modalities?: ("video" | "text" | "voice")[] | undefined;
|
|
2009
2073
|
agent_email?: string | undefined;
|
|
2010
2074
|
agent_phone?: string | undefined;
|
|
2011
2075
|
agent_name?: string | undefined;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! @onlive.ai/flow-client v0.1.
|
|
1
|
+
/*! @onlive.ai/flow-client v0.1.271 | © 2026 Onlive.ai */
|
|
2
2
|
import{z as o}from"zod";var a="flow_form",e="onlive-analytics-event",n=o.object({enabled:o.boolean().default(!1).optional(),conditions:o.custom().optional(),data:o.custom().optional(),removeExtraneousValues:o.boolean().default(!0).optional(),allowBotTraffic:o.boolean().default(!1).optional(),adapters:o.array(o.string()).default([]).optional(),apiUrl:o.string().url().optional(),emitters:o.object({windowEvent:o.boolean().optional(),dataLayer:o.boolean().optional(),windowPostMessage:o.boolean().optional()}).optional()});export{e as ONLIVE_ANALYTICS_EVENT,a as ONLIVE_FLOW_FORM_NAME,n as TrackingOptionsSchema};
|