@livdot-tech/contracts 1.10.13 → 1.10.15
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/auth/index.js +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/{chunk-I7F22EOB.mjs → chunk-7ZDH67RW.mjs} +2 -2
- package/dist/{chunk-I7F22EOB.mjs.map → chunk-7ZDH67RW.mjs.map} +1 -1
- package/dist/{chunk-XKF2CDBT.js → chunk-JZ3PUGV3.js} +2 -2
- package/dist/{chunk-XKF2CDBT.js.map → chunk-JZ3PUGV3.js.map} +1 -1
- package/dist/{chunk-LGTETZTD.js → chunk-KA7KDPIS.js} +2 -2
- package/dist/{chunk-LGTETZTD.js.map → chunk-KA7KDPIS.js.map} +1 -1
- package/dist/{chunk-QH6HUP6I.mjs → chunk-OUE7F66K.mjs} +2 -2
- package/dist/{chunk-QH6HUP6I.mjs.map → chunk-OUE7F66K.mjs.map} +1 -1
- package/dist/{chunk-GPEHHE4I.js → chunk-QZ7ELWOQ.js} +2 -2
- package/dist/chunk-QZ7ELWOQ.js.map +1 -0
- package/dist/{chunk-EUROKASF.mjs → chunk-VJ66VGGZ.mjs} +2 -2
- package/dist/chunk-VJ66VGGZ.mjs.map +1 -0
- package/dist/chunk-WHDIPDUN.mjs +2 -0
- package/dist/chunk-WHDIPDUN.mjs.map +1 -0
- package/dist/chunk-YACYHCBS.js +2 -0
- package/dist/chunk-YACYHCBS.js.map +1 -0
- package/dist/dispute/index.js +1 -1
- package/dist/dispute/index.mjs +1 -1
- package/dist/event/index.d.mts +77 -0
- package/dist/event/index.d.ts +77 -0
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/host/index.d.mts +3 -0
- package/dist/host/index.d.ts +3 -0
- package/dist/host/index.js +1 -1
- package/dist/host/index.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/notification/index.js +1 -1
- package/dist/notification/index.mjs +1 -1
- package/dist/payment/index.d.mts +1 -0
- package/dist/payment/index.d.ts +1 -0
- package/dist/payment/index.js +1 -1
- package/dist/payment/index.mjs +1 -1
- package/dist/user/index.d.mts +12 -0
- package/dist/user/index.d.ts +12 -0
- package/dist/user/index.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-4JVBYB34.mjs +0 -2
- package/dist/chunk-4JVBYB34.mjs.map +0 -1
- package/dist/chunk-EUROKASF.mjs.map +0 -1
- package/dist/chunk-GPEHHE4I.js.map +0 -1
- package/dist/chunk-LVJ4FPRO.js +0 -2
- package/dist/chunk-LVJ4FPRO.js.map +0 -1
package/dist/event/index.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ declare const EventCategory: {
|
|
|
71
71
|
readonly WEDDING: "WEDDING";
|
|
72
72
|
readonly CORPORATE: "CORPORATE";
|
|
73
73
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
74
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
75
|
+
readonly PARTY: "PARTY";
|
|
74
76
|
readonly OTHER: "OTHER";
|
|
75
77
|
};
|
|
76
78
|
type EventCategory = (typeof EventCategory)[keyof typeof EventCategory];
|
|
@@ -140,6 +142,8 @@ declare const CreateEventRequestSchema: z.ZodObject<{
|
|
|
140
142
|
readonly WEDDING: "WEDDING";
|
|
141
143
|
readonly CORPORATE: "CORPORATE";
|
|
142
144
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
145
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
146
|
+
readonly PARTY: "PARTY";
|
|
143
147
|
readonly OTHER: "OTHER";
|
|
144
148
|
}>;
|
|
145
149
|
scheduledStartAt: z.ZodISODateTime;
|
|
@@ -195,6 +199,8 @@ declare const UpdateEventRequestSchema: z.ZodObject<{
|
|
|
195
199
|
readonly WEDDING: "WEDDING";
|
|
196
200
|
readonly CORPORATE: "CORPORATE";
|
|
197
201
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
202
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
203
|
+
readonly PARTY: "PARTY";
|
|
198
204
|
readonly OTHER: "OTHER";
|
|
199
205
|
}>>;
|
|
200
206
|
scheduledStartAt: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -272,6 +278,8 @@ declare const EventResponseSchema: z.ZodObject<{
|
|
|
272
278
|
readonly WEDDING: "WEDDING";
|
|
273
279
|
readonly CORPORATE: "CORPORATE";
|
|
274
280
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
281
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
282
|
+
readonly PARTY: "PARTY";
|
|
275
283
|
readonly OTHER: "OTHER";
|
|
276
284
|
}>;
|
|
277
285
|
coverImageUrl: z.ZodOptional<z.ZodURL>;
|
|
@@ -329,6 +337,7 @@ declare const EventResponseSchema: z.ZodObject<{
|
|
|
329
337
|
declare const EventCardSchema: z.ZodObject<{
|
|
330
338
|
id: z.ZodUUID;
|
|
331
339
|
title: z.ZodString;
|
|
340
|
+
timezone: z.ZodString;
|
|
332
341
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
333
342
|
category: z.ZodEnum<{
|
|
334
343
|
readonly ART: "ART";
|
|
@@ -355,6 +364,8 @@ declare const EventCardSchema: z.ZodObject<{
|
|
|
355
364
|
readonly WEDDING: "WEDDING";
|
|
356
365
|
readonly CORPORATE: "CORPORATE";
|
|
357
366
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
367
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
368
|
+
readonly PARTY: "PARTY";
|
|
358
369
|
readonly OTHER: "OTHER";
|
|
359
370
|
}>;
|
|
360
371
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -424,6 +435,7 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
424
435
|
continueWatching: z.ZodArray<z.ZodObject<{
|
|
425
436
|
id: z.ZodUUID;
|
|
426
437
|
title: z.ZodString;
|
|
438
|
+
timezone: z.ZodString;
|
|
427
439
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
428
440
|
category: z.ZodEnum<{
|
|
429
441
|
readonly ART: "ART";
|
|
@@ -450,6 +462,8 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
450
462
|
readonly WEDDING: "WEDDING";
|
|
451
463
|
readonly CORPORATE: "CORPORATE";
|
|
452
464
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
465
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
466
|
+
readonly PARTY: "PARTY";
|
|
453
467
|
readonly OTHER: "OTHER";
|
|
454
468
|
}>;
|
|
455
469
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -518,6 +532,7 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
518
532
|
liveNow: z.ZodArray<z.ZodObject<{
|
|
519
533
|
id: z.ZodUUID;
|
|
520
534
|
title: z.ZodString;
|
|
535
|
+
timezone: z.ZodString;
|
|
521
536
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
522
537
|
category: z.ZodEnum<{
|
|
523
538
|
readonly ART: "ART";
|
|
@@ -544,6 +559,8 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
544
559
|
readonly WEDDING: "WEDDING";
|
|
545
560
|
readonly CORPORATE: "CORPORATE";
|
|
546
561
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
562
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
563
|
+
readonly PARTY: "PARTY";
|
|
547
564
|
readonly OTHER: "OTHER";
|
|
548
565
|
}>;
|
|
549
566
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -612,6 +629,7 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
612
629
|
upcoming: z.ZodArray<z.ZodObject<{
|
|
613
630
|
id: z.ZodUUID;
|
|
614
631
|
title: z.ZodString;
|
|
632
|
+
timezone: z.ZodString;
|
|
615
633
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
616
634
|
category: z.ZodEnum<{
|
|
617
635
|
readonly ART: "ART";
|
|
@@ -638,6 +656,8 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
638
656
|
readonly WEDDING: "WEDDING";
|
|
639
657
|
readonly CORPORATE: "CORPORATE";
|
|
640
658
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
659
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
660
|
+
readonly PARTY: "PARTY";
|
|
641
661
|
readonly OTHER: "OTHER";
|
|
642
662
|
}>;
|
|
643
663
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -706,6 +726,7 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
706
726
|
recommended: z.ZodArray<z.ZodObject<{
|
|
707
727
|
id: z.ZodUUID;
|
|
708
728
|
title: z.ZodString;
|
|
729
|
+
timezone: z.ZodString;
|
|
709
730
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
710
731
|
category: z.ZodEnum<{
|
|
711
732
|
readonly ART: "ART";
|
|
@@ -732,6 +753,8 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
732
753
|
readonly WEDDING: "WEDDING";
|
|
733
754
|
readonly CORPORATE: "CORPORATE";
|
|
734
755
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
756
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
757
|
+
readonly PARTY: "PARTY";
|
|
735
758
|
readonly OTHER: "OTHER";
|
|
736
759
|
}>;
|
|
737
760
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -826,6 +849,8 @@ declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
|
826
849
|
readonly WEDDING: "WEDDING";
|
|
827
850
|
readonly CORPORATE: "CORPORATE";
|
|
828
851
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
852
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
853
|
+
readonly PARTY: "PARTY";
|
|
829
854
|
readonly OTHER: "OTHER";
|
|
830
855
|
}>>;
|
|
831
856
|
accessModel: z.ZodOptional<z.ZodEnum<{
|
|
@@ -845,6 +870,7 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
845
870
|
featured: z.ZodNullable<z.ZodObject<{
|
|
846
871
|
id: z.ZodUUID;
|
|
847
872
|
title: z.ZodString;
|
|
873
|
+
timezone: z.ZodString;
|
|
848
874
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
849
875
|
category: z.ZodEnum<{
|
|
850
876
|
readonly ART: "ART";
|
|
@@ -871,6 +897,8 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
871
897
|
readonly WEDDING: "WEDDING";
|
|
872
898
|
readonly CORPORATE: "CORPORATE";
|
|
873
899
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
900
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
901
|
+
readonly PARTY: "PARTY";
|
|
874
902
|
readonly OTHER: "OTHER";
|
|
875
903
|
}>;
|
|
876
904
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -939,6 +967,7 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
939
967
|
liveNow: z.ZodArray<z.ZodObject<{
|
|
940
968
|
id: z.ZodUUID;
|
|
941
969
|
title: z.ZodString;
|
|
970
|
+
timezone: z.ZodString;
|
|
942
971
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
943
972
|
category: z.ZodEnum<{
|
|
944
973
|
readonly ART: "ART";
|
|
@@ -965,6 +994,8 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
965
994
|
readonly WEDDING: "WEDDING";
|
|
966
995
|
readonly CORPORATE: "CORPORATE";
|
|
967
996
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
997
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
998
|
+
readonly PARTY: "PARTY";
|
|
968
999
|
readonly OTHER: "OTHER";
|
|
969
1000
|
}>;
|
|
970
1001
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1033,6 +1064,7 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
1033
1064
|
upcoming: z.ZodArray<z.ZodObject<{
|
|
1034
1065
|
id: z.ZodUUID;
|
|
1035
1066
|
title: z.ZodString;
|
|
1067
|
+
timezone: z.ZodString;
|
|
1036
1068
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1037
1069
|
category: z.ZodEnum<{
|
|
1038
1070
|
readonly ART: "ART";
|
|
@@ -1059,6 +1091,8 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
1059
1091
|
readonly WEDDING: "WEDDING";
|
|
1060
1092
|
readonly CORPORATE: "CORPORATE";
|
|
1061
1093
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1094
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1095
|
+
readonly PARTY: "PARTY";
|
|
1062
1096
|
readonly OTHER: "OTHER";
|
|
1063
1097
|
}>;
|
|
1064
1098
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1127,6 +1161,7 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
1127
1161
|
recommended: z.ZodArray<z.ZodObject<{
|
|
1128
1162
|
id: z.ZodUUID;
|
|
1129
1163
|
title: z.ZodString;
|
|
1164
|
+
timezone: z.ZodString;
|
|
1130
1165
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1131
1166
|
category: z.ZodEnum<{
|
|
1132
1167
|
readonly ART: "ART";
|
|
@@ -1153,6 +1188,8 @@ declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
|
1153
1188
|
readonly WEDDING: "WEDDING";
|
|
1154
1189
|
readonly CORPORATE: "CORPORATE";
|
|
1155
1190
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1191
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1192
|
+
readonly PARTY: "PARTY";
|
|
1156
1193
|
readonly OTHER: "OTHER";
|
|
1157
1194
|
}>;
|
|
1158
1195
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1235,6 +1272,7 @@ declare const DiscoverSectionResponseSchema: z.ZodObject<{
|
|
|
1235
1272
|
items: z.ZodArray<z.ZodObject<{
|
|
1236
1273
|
id: z.ZodUUID;
|
|
1237
1274
|
title: z.ZodString;
|
|
1275
|
+
timezone: z.ZodString;
|
|
1238
1276
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1239
1277
|
category: z.ZodEnum<{
|
|
1240
1278
|
readonly ART: "ART";
|
|
@@ -1261,6 +1299,8 @@ declare const DiscoverSectionResponseSchema: z.ZodObject<{
|
|
|
1261
1299
|
readonly WEDDING: "WEDDING";
|
|
1262
1300
|
readonly CORPORATE: "CORPORATE";
|
|
1263
1301
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1302
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1303
|
+
readonly PARTY: "PARTY";
|
|
1264
1304
|
readonly OTHER: "OTHER";
|
|
1265
1305
|
}>;
|
|
1266
1306
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1332,6 +1372,7 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1332
1372
|
featured: z.ZodNullable<z.ZodObject<{
|
|
1333
1373
|
id: z.ZodUUID;
|
|
1334
1374
|
title: z.ZodString;
|
|
1375
|
+
timezone: z.ZodString;
|
|
1335
1376
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1336
1377
|
category: z.ZodEnum<{
|
|
1337
1378
|
readonly ART: "ART";
|
|
@@ -1358,6 +1399,8 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1358
1399
|
readonly WEDDING: "WEDDING";
|
|
1359
1400
|
readonly CORPORATE: "CORPORATE";
|
|
1360
1401
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1402
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1403
|
+
readonly PARTY: "PARTY";
|
|
1361
1404
|
readonly OTHER: "OTHER";
|
|
1362
1405
|
}>;
|
|
1363
1406
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1426,6 +1469,7 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1426
1469
|
liveNow: z.ZodArray<z.ZodObject<{
|
|
1427
1470
|
id: z.ZodUUID;
|
|
1428
1471
|
title: z.ZodString;
|
|
1472
|
+
timezone: z.ZodString;
|
|
1429
1473
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1430
1474
|
category: z.ZodEnum<{
|
|
1431
1475
|
readonly ART: "ART";
|
|
@@ -1452,6 +1496,8 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1452
1496
|
readonly WEDDING: "WEDDING";
|
|
1453
1497
|
readonly CORPORATE: "CORPORATE";
|
|
1454
1498
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1499
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1500
|
+
readonly PARTY: "PARTY";
|
|
1455
1501
|
readonly OTHER: "OTHER";
|
|
1456
1502
|
}>;
|
|
1457
1503
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1520,6 +1566,7 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1520
1566
|
upcoming: z.ZodArray<z.ZodObject<{
|
|
1521
1567
|
id: z.ZodUUID;
|
|
1522
1568
|
title: z.ZodString;
|
|
1569
|
+
timezone: z.ZodString;
|
|
1523
1570
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1524
1571
|
category: z.ZodEnum<{
|
|
1525
1572
|
readonly ART: "ART";
|
|
@@ -1546,6 +1593,8 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1546
1593
|
readonly WEDDING: "WEDDING";
|
|
1547
1594
|
readonly CORPORATE: "CORPORATE";
|
|
1548
1595
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1596
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1597
|
+
readonly PARTY: "PARTY";
|
|
1549
1598
|
readonly OTHER: "OTHER";
|
|
1550
1599
|
}>;
|
|
1551
1600
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1614,6 +1663,7 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1614
1663
|
recommended: z.ZodArray<z.ZodObject<{
|
|
1615
1664
|
id: z.ZodUUID;
|
|
1616
1665
|
title: z.ZodString;
|
|
1666
|
+
timezone: z.ZodString;
|
|
1617
1667
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1618
1668
|
category: z.ZodEnum<{
|
|
1619
1669
|
readonly ART: "ART";
|
|
@@ -1640,6 +1690,8 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1640
1690
|
readonly WEDDING: "WEDDING";
|
|
1641
1691
|
readonly CORPORATE: "CORPORATE";
|
|
1642
1692
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1693
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1694
|
+
readonly PARTY: "PARTY";
|
|
1643
1695
|
readonly OTHER: "OTHER";
|
|
1644
1696
|
}>;
|
|
1645
1697
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1721,6 +1773,7 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1721
1773
|
items: z.ZodArray<z.ZodObject<{
|
|
1722
1774
|
id: z.ZodUUID;
|
|
1723
1775
|
title: z.ZodString;
|
|
1776
|
+
timezone: z.ZodString;
|
|
1724
1777
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1725
1778
|
category: z.ZodEnum<{
|
|
1726
1779
|
readonly ART: "ART";
|
|
@@ -1747,6 +1800,8 @@ declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1747
1800
|
readonly WEDDING: "WEDDING";
|
|
1748
1801
|
readonly CORPORATE: "CORPORATE";
|
|
1749
1802
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1803
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1804
|
+
readonly PARTY: "PARTY";
|
|
1750
1805
|
readonly OTHER: "OTHER";
|
|
1751
1806
|
}>;
|
|
1752
1807
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1823,6 +1878,7 @@ declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
|
1823
1878
|
items: z.ZodArray<z.ZodObject<{
|
|
1824
1879
|
id: z.ZodUUID;
|
|
1825
1880
|
title: z.ZodString;
|
|
1881
|
+
timezone: z.ZodString;
|
|
1826
1882
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1827
1883
|
category: z.ZodEnum<{
|
|
1828
1884
|
readonly ART: "ART";
|
|
@@ -1849,6 +1905,8 @@ declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
|
1849
1905
|
readonly WEDDING: "WEDDING";
|
|
1850
1906
|
readonly CORPORATE: "CORPORATE";
|
|
1851
1907
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
1908
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
1909
|
+
readonly PARTY: "PARTY";
|
|
1852
1910
|
readonly OTHER: "OTHER";
|
|
1853
1911
|
}>;
|
|
1854
1912
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -1973,6 +2031,7 @@ declare const PlaybackResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1973
2031
|
declare const MyEventCardSchema: z.ZodObject<{
|
|
1974
2032
|
id: z.ZodUUID;
|
|
1975
2033
|
title: z.ZodString;
|
|
2034
|
+
timezone: z.ZodString;
|
|
1976
2035
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1977
2036
|
category: z.ZodEnum<{
|
|
1978
2037
|
readonly ART: "ART";
|
|
@@ -1999,6 +2058,8 @@ declare const MyEventCardSchema: z.ZodObject<{
|
|
|
1999
2058
|
readonly WEDDING: "WEDDING";
|
|
2000
2059
|
readonly CORPORATE: "CORPORATE";
|
|
2001
2060
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2061
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2062
|
+
readonly PARTY: "PARTY";
|
|
2002
2063
|
readonly OTHER: "OTHER";
|
|
2003
2064
|
}>;
|
|
2004
2065
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -2086,6 +2147,7 @@ declare const MyEventsResponseSchema: z.ZodObject<{
|
|
|
2086
2147
|
items: z.ZodArray<z.ZodObject<{
|
|
2087
2148
|
id: z.ZodUUID;
|
|
2088
2149
|
title: z.ZodString;
|
|
2150
|
+
timezone: z.ZodString;
|
|
2089
2151
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2090
2152
|
category: z.ZodEnum<{
|
|
2091
2153
|
readonly ART: "ART";
|
|
@@ -2112,6 +2174,8 @@ declare const MyEventsResponseSchema: z.ZodObject<{
|
|
|
2112
2174
|
readonly WEDDING: "WEDDING";
|
|
2113
2175
|
readonly CORPORATE: "CORPORATE";
|
|
2114
2176
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2177
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2178
|
+
readonly PARTY: "PARTY";
|
|
2115
2179
|
readonly OTHER: "OTHER";
|
|
2116
2180
|
}>;
|
|
2117
2181
|
scheduledStart: z.ZodISODateTime;
|
|
@@ -2245,6 +2309,8 @@ declare const CategorySchema: z.ZodEnum<{
|
|
|
2245
2309
|
readonly WEDDING: "WEDDING";
|
|
2246
2310
|
readonly CORPORATE: "CORPORATE";
|
|
2247
2311
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2312
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2313
|
+
readonly PARTY: "PARTY";
|
|
2248
2314
|
readonly OTHER: "OTHER";
|
|
2249
2315
|
}>;
|
|
2250
2316
|
declare const VisibilitySchema: z.ZodEnum<{
|
|
@@ -2287,11 +2353,14 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2287
2353
|
readonly WEDDING: "WEDDING";
|
|
2288
2354
|
readonly CORPORATE: "CORPORATE";
|
|
2289
2355
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2356
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2357
|
+
readonly PARTY: "PARTY";
|
|
2290
2358
|
readonly OTHER: "OTHER";
|
|
2291
2359
|
}>;
|
|
2292
2360
|
scheduledStart: z.ZodISODateTime;
|
|
2293
2361
|
durationMinutes: z.ZodNumber;
|
|
2294
2362
|
coverImageUrl: z.ZodOptional<z.ZodAny>;
|
|
2363
|
+
timezone: z.ZodString;
|
|
2295
2364
|
previewClipUrl: z.ZodOptional<z.ZodAny>;
|
|
2296
2365
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2297
2366
|
location: z.ZodOptional<z.ZodString>;
|
|
@@ -2650,6 +2719,7 @@ declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
|
2650
2719
|
declare const PublicEventCardSchema: z.ZodObject<{
|
|
2651
2720
|
id: z.ZodUUID;
|
|
2652
2721
|
title: z.ZodString;
|
|
2722
|
+
timezone: z.ZodString;
|
|
2653
2723
|
description: z.ZodNullable<z.ZodString>;
|
|
2654
2724
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2655
2725
|
category: z.ZodEnum<{
|
|
@@ -2677,6 +2747,8 @@ declare const PublicEventCardSchema: z.ZodObject<{
|
|
|
2677
2747
|
readonly WEDDING: "WEDDING";
|
|
2678
2748
|
readonly CORPORATE: "CORPORATE";
|
|
2679
2749
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2750
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2751
|
+
readonly PARTY: "PARTY";
|
|
2680
2752
|
readonly OTHER: "OTHER";
|
|
2681
2753
|
}>;
|
|
2682
2754
|
accessModel: z.ZodEnum<{
|
|
@@ -2731,6 +2803,8 @@ declare const PublicEventsQuerySchema: z.ZodObject<{
|
|
|
2731
2803
|
readonly WEDDING: "WEDDING";
|
|
2732
2804
|
readonly CORPORATE: "CORPORATE";
|
|
2733
2805
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2806
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2807
|
+
readonly PARTY: "PARTY";
|
|
2734
2808
|
readonly OTHER: "OTHER";
|
|
2735
2809
|
}>>;
|
|
2736
2810
|
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
@@ -2745,6 +2819,7 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
|
2745
2819
|
items: z.ZodArray<z.ZodObject<{
|
|
2746
2820
|
id: z.ZodUUID;
|
|
2747
2821
|
title: z.ZodString;
|
|
2822
|
+
timezone: z.ZodString;
|
|
2748
2823
|
description: z.ZodNullable<z.ZodString>;
|
|
2749
2824
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2750
2825
|
category: z.ZodEnum<{
|
|
@@ -2772,6 +2847,8 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
|
2772
2847
|
readonly WEDDING: "WEDDING";
|
|
2773
2848
|
readonly CORPORATE: "CORPORATE";
|
|
2774
2849
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
2850
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
2851
|
+
readonly PARTY: "PARTY";
|
|
2775
2852
|
readonly OTHER: "OTHER";
|
|
2776
2853
|
}>;
|
|
2777
2854
|
accessModel: z.ZodEnum<{
|
package/dist/event/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkYACYHCBS_js=require('../chunk-YACYHCBS.js');require('../chunk-MTB7722H.js');Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.wa}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Z}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.va}});Object.defineProperty(exports,"DiscoverAggregateResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ea}});Object.defineProperty(exports,"DiscoverEvents",{enumerable:true,get:function(){return chunkYACYHCBS_js.k}});Object.defineProperty(exports,"DiscoverResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ga}});Object.defineProperty(exports,"DiscoverSectionResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.fa}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ta}});Object.defineProperty(exports,"EntitlementKind",{enumerable:true,get:function(){return chunkYACYHCBS_js.m}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkYACYHCBS_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkYACYHCBS_js.e}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.$}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ba}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkYACYHCBS_js.g}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkYACYHCBS_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkYACYHCBS_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.aa}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkYACYHCBS_js.f}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkYACYHCBS_js.b}});Object.defineProperty(exports,"HostAudienceActivityFeedResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Za}});Object.defineProperty(exports,"HostAudienceDevicesResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.$a}});Object.defineProperty(exports,"HostAudienceEngagementQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Va}});Object.defineProperty(exports,"HostAudienceEngagementResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Wa}});Object.defineProperty(exports,"HostAudienceGeoResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js._a}});Object.defineProperty(exports,"HostAudienceQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ta}});Object.defineProperty(exports,"HostAudienceSummaryResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ua}});Object.defineProperty(exports,"HostAudienceTopViewersQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Xa}});Object.defineProperty(exports,"HostAudienceTopViewersResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ya}});Object.defineProperty(exports,"HostAudienceViewerActivityQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.bb}});Object.defineProperty(exports,"HostAudienceViewerActivityResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ab}});Object.defineProperty(exports,"HostEarningsBreakdownItemSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Fa}});Object.defineProperty(exports,"HostEarningsBreakdownQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ca}});Object.defineProperty(exports,"HostEarningsBreakdownResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ga}});Object.defineProperty(exports,"HostEarningsSummaryQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ba}});Object.defineProperty(exports,"HostEarningsSummaryResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ea}});Object.defineProperty(exports,"HostEarningsTimeseriesPointSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ha}});Object.defineProperty(exports,"HostEarningsTimeseriesQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Da}});Object.defineProperty(exports,"HostEarningsTimeseriesResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ia}});Object.defineProperty(exports,"HostEventTicketSalesTimelinePointSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ra}});Object.defineProperty(exports,"HostEventTicketSalesTimelineQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Qa}});Object.defineProperty(exports,"HostEventTicketSalesTimelineResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Sa}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Aa}});Object.defineProperty(exports,"HostLivePreviewSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Na}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.la}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.oa}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.qa}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.pa}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.l}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ha}});Object.defineProperty(exports,"PatchReplayPeriodRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Oa}});Object.defineProperty(exports,"PatchReplayPeriodResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Pa}});Object.defineProperty(exports,"PatchStreamControlRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.za}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.na}});Object.defineProperty(exports,"PublicEventCardSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ka}});Object.defineProperty(exports,"PublicEventStatusSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ja}});Object.defineProperty(exports,"PublicEventsQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.La}});Object.defineProperty(exports,"PublicEventsResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.Ma}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ia}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ja}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkYACYHCBS_js.i}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkYACYHCBS_js.h}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ma}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ua}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.da}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ya}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ra}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js._}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ka}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.ca}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkYACYHCBS_js.j}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.sa}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkYACYHCBS_js.xa}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/event/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{wa as CategorySchema,Z as CreateEventRequestSchema,va as CurrencySchema,ea as DiscoverAggregateResponseSchema,k as DiscoverEvents,ga as DiscoverResponseSchema,fa as DiscoverSectionResponseSchema,ta as EndViewingSessionResponseSchema,m as EntitlementKind,c as EventAccessModel,e as EventAllowListType,$ as EventCardCtaSchema,ba as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,aa as EventResponseSchema,f as EventState,b as EventVisibility,Za as HostAudienceActivityFeedResponseSchema,$a as HostAudienceDevicesResponseSchema,Va as HostAudienceEngagementQuerySchema,Wa as HostAudienceEngagementResponseSchema,_a as HostAudienceGeoResponseSchema,Ta as HostAudienceQuerySchema,Ua as HostAudienceSummaryResponseSchema,Xa as HostAudienceTopViewersQuerySchema,Ya as HostAudienceTopViewersResponseSchema,bb as HostAudienceViewerActivityQuerySchema,ab as HostAudienceViewerActivityResponseSchema,Fa as HostEarningsBreakdownItemSchema,Ca as HostEarningsBreakdownQuerySchema,Ga as HostEarningsBreakdownResponseSchema,Ba as HostEarningsSummaryQuerySchema,Ea as HostEarningsSummaryResponseSchema,Ha as HostEarningsTimeseriesPointSchema,Da as HostEarningsTimeseriesQuerySchema,Ia as HostEarningsTimeseriesResponseSchema,Ra as HostEventTicketSalesTimelinePointSchema,Qa as HostEventTicketSalesTimelineQuerySchema,Sa as HostEventTicketSalesTimelineResponseSchema,Aa as HostEventWizardPatchSchema,Na as HostLivePreviewSchema,la as LivePlaybackSchema,oa as MyEventCardSchema,qa as MyEventsQuerySchema,pa as MyEventsResponseSchema,l as MyEventsTabSchema,ha as PagedEventsResponseSchema,Oa as PatchReplayPeriodRequestSchema,Pa as PatchReplayPeriodResponseSchema,za as PatchStreamControlRequestSchema,na as PlaybackResponseSchema,Ka as PublicEventCardSchema,Ja as PublicEventStatusSchema,La as PublicEventsQuerySchema,Ma as PublicEventsResponseSchema,ia as RegisterForEventRequestSchema,ja as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,ma as ReplayPlaybackSchema,ua as ReplaySchema,da as SearchEventsQuerySchema,ya as StartViewingSessionRequestSchema,ra as StartViewingSessionResponseSchema,_ as UpdateEventRequestSchema,ka as UpdateWatchProgressRequestSchema,ca as ViewerHomeResponseSchema,j as ViewerRegistrationView,sa as ViewingSessionHeartbeatResponseSchema,xa as VisibilitySchema}from'../chunk-
|
|
1
|
+
export{wa as CategorySchema,Z as CreateEventRequestSchema,va as CurrencySchema,ea as DiscoverAggregateResponseSchema,k as DiscoverEvents,ga as DiscoverResponseSchema,fa as DiscoverSectionResponseSchema,ta as EndViewingSessionResponseSchema,m as EntitlementKind,c as EventAccessModel,e as EventAllowListType,$ as EventCardCtaSchema,ba as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,aa as EventResponseSchema,f as EventState,b as EventVisibility,Za as HostAudienceActivityFeedResponseSchema,$a as HostAudienceDevicesResponseSchema,Va as HostAudienceEngagementQuerySchema,Wa as HostAudienceEngagementResponseSchema,_a as HostAudienceGeoResponseSchema,Ta as HostAudienceQuerySchema,Ua as HostAudienceSummaryResponseSchema,Xa as HostAudienceTopViewersQuerySchema,Ya as HostAudienceTopViewersResponseSchema,bb as HostAudienceViewerActivityQuerySchema,ab as HostAudienceViewerActivityResponseSchema,Fa as HostEarningsBreakdownItemSchema,Ca as HostEarningsBreakdownQuerySchema,Ga as HostEarningsBreakdownResponseSchema,Ba as HostEarningsSummaryQuerySchema,Ea as HostEarningsSummaryResponseSchema,Ha as HostEarningsTimeseriesPointSchema,Da as HostEarningsTimeseriesQuerySchema,Ia as HostEarningsTimeseriesResponseSchema,Ra as HostEventTicketSalesTimelinePointSchema,Qa as HostEventTicketSalesTimelineQuerySchema,Sa as HostEventTicketSalesTimelineResponseSchema,Aa as HostEventWizardPatchSchema,Na as HostLivePreviewSchema,la as LivePlaybackSchema,oa as MyEventCardSchema,qa as MyEventsQuerySchema,pa as MyEventsResponseSchema,l as MyEventsTabSchema,ha as PagedEventsResponseSchema,Oa as PatchReplayPeriodRequestSchema,Pa as PatchReplayPeriodResponseSchema,za as PatchStreamControlRequestSchema,na as PlaybackResponseSchema,Ka as PublicEventCardSchema,Ja as PublicEventStatusSchema,La as PublicEventsQuerySchema,Ma as PublicEventsResponseSchema,ia as RegisterForEventRequestSchema,ja as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,ma as ReplayPlaybackSchema,ua as ReplaySchema,da as SearchEventsQuerySchema,ya as StartViewingSessionRequestSchema,ra as StartViewingSessionResponseSchema,_ as UpdateEventRequestSchema,ka as UpdateWatchProgressRequestSchema,ca as ViewerHomeResponseSchema,j as ViewerRegistrationView,sa as ViewingSessionHeartbeatResponseSchema,xa as VisibilitySchema}from'../chunk-WHDIPDUN.mjs';import'../chunk-2EWNFPTC.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/host/index.d.mts
CHANGED
|
@@ -53,6 +53,8 @@ declare const HostEventPatchSchema: z.ZodObject<{
|
|
|
53
53
|
readonly WEDDING: "WEDDING";
|
|
54
54
|
readonly CORPORATE: "CORPORATE";
|
|
55
55
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
56
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
57
|
+
readonly PARTY: "PARTY";
|
|
56
58
|
readonly OTHER: "OTHER";
|
|
57
59
|
}>>;
|
|
58
60
|
scheduledStart: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -863,6 +865,7 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
863
865
|
}, z.core.$strip>;
|
|
864
866
|
audience: z.ZodObject<{
|
|
865
867
|
registered: z.ZodNumber;
|
|
868
|
+
watchingNow: z.ZodNumber;
|
|
866
869
|
byCountry: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
867
870
|
byTrafficSource: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
868
871
|
}, z.core.$strip>;
|
package/dist/host/index.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ declare const HostEventPatchSchema: z.ZodObject<{
|
|
|
53
53
|
readonly WEDDING: "WEDDING";
|
|
54
54
|
readonly CORPORATE: "CORPORATE";
|
|
55
55
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
56
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
57
|
+
readonly PARTY: "PARTY";
|
|
56
58
|
readonly OTHER: "OTHER";
|
|
57
59
|
}>>;
|
|
58
60
|
scheduledStart: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -863,6 +865,7 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
863
865
|
}, z.core.$strip>;
|
|
864
866
|
audience: z.ZodObject<{
|
|
865
867
|
registered: z.ZodNumber;
|
|
868
|
+
watchingNow: z.ZodNumber;
|
|
866
869
|
byCountry: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
867
870
|
byTrafficSource: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
868
871
|
}, z.core.$strip>;
|
package/dist/host/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkQZ7ELWOQ_js=require('../chunk-QZ7ELWOQ.js');require('../chunk-N72ONAXT.js'),require('../chunk-LA63VYRR.js'),require('../chunk-YACYHCBS.js'),require('../chunk-MTB7722H.js');Object.defineProperty(exports,"EndedReasonSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.T}});Object.defineProperty(exports,"EndedReplayStateSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.R}});Object.defineProperty(exports,"EventStreamAlertKindSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.U}});Object.defineProperty(exports,"EventStreamAlertSeveritySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.V}});Object.defineProperty(exports,"HOST_DATE_RANGE_PRESETS",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.a}});Object.defineProperty(exports,"HostActivityListPageSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.q}});Object.defineProperty(exports,"HostEventAudienceResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.J}});Object.defineProperty(exports,"HostEventCancelResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.o}});Object.defineProperty(exports,"HostEventCrewMemberSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.F}});Object.defineProperty(exports,"HostEventDashboardPostEventBlockSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.L}});Object.defineProperty(exports,"HostEventDashboardResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.N}});Object.defineProperty(exports,"HostEventEngagementTimelineBucketSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.ea}});Object.defineProperty(exports,"HostEventEngagementTimelineQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.da}});Object.defineProperty(exports,"HostEventEngagementTimelineResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.fa}});Object.defineProperty(exports,"HostEventFullResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.v}});Object.defineProperty(exports,"HostEventPatchSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.e}});Object.defineProperty(exports,"HostEventReadinessBlockSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.D}});Object.defineProperty(exports,"HostEventReadinessResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.O}});Object.defineProperty(exports,"HostEventReplayPerformanceResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.K}});Object.defineProperty(exports,"HostEventRowResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.g}});Object.defineProperty(exports,"HostEventShareResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.P}});Object.defineProperty(exports,"HostEventWizardCurrentResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.w}});Object.defineProperty(exports,"HostEventWizardPublishResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.n}});Object.defineProperty(exports,"HostEventWizardStartResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.l}});Object.defineProperty(exports,"HostEventWizardStartSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.j}});Object.defineProperty(exports,"HostEventWizardStepResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.m}});Object.defineProperty(exports,"HostEventsListPagedQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.k}});Object.defineProperty(exports,"HostEventsListQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.f}});Object.defineProperty(exports,"HostEventsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.i}});Object.defineProperty(exports,"HostEventsTabResponseClassSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.u}});Object.defineProperty(exports,"HostEventsTabResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.h}});Object.defineProperty(exports,"HostEventsTabSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.c}});Object.defineProperty(exports,"HostLiveConsoleAlertSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.$}});Object.defineProperty(exports,"HostLiveConsoleChatSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.aa}});Object.defineProperty(exports,"HostLiveConsoleControlsSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.X}});Object.defineProperty(exports,"HostLiveConsoleCrewMemberSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js._}});Object.defineProperty(exports,"HostLiveConsoleEndedSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.ba}});Object.defineProperty(exports,"HostLiveConsoleEventSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.W}});Object.defineProperty(exports,"HostLiveConsoleMetricsSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.Y}});Object.defineProperty(exports,"HostLiveConsolePayloadSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.ca}});Object.defineProperty(exports,"HostLiveConsoleTelemetrySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.Z}});Object.defineProperty(exports,"HostNotificationsUnreadCountSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.t}});Object.defineProperty(exports,"HostOverviewQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.b}});Object.defineProperty(exports,"HostOverviewResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.p}});Object.defineProperty(exports,"HostProductionCrewItemSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.I}});Object.defineProperty(exports,"HostProductionCrewPhaseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.G}});Object.defineProperty(exports,"HostSearchHitSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.r}});Object.defineProperty(exports,"HostSearchQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.d}});Object.defineProperty(exports,"HostSearchResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.s}});Object.defineProperty(exports,"ListHostEventDashboardQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.E}});Object.defineProperty(exports,"ListHostProductionCrewQuerySchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.H}});Object.defineProperty(exports,"LiveConsoleSliceSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.Q}});Object.defineProperty(exports,"LiveIngestHealthSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.S}});Object.defineProperty(exports,"PagedHostProductionCrewResponseSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.M}});Object.defineProperty(exports,"ProductionModeSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.B}});Object.defineProperty(exports,"ReadinessBlockReasonSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.z}});Object.defineProperty(exports,"ReadinessItemIdSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.x}});Object.defineProperty(exports,"ReadinessItemSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.C}});Object.defineProperty(exports,"ReadinessItemStateSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.y}});Object.defineProperty(exports,"StreamingStatusSchema",{enumerable:true,get:function(){return chunkQZ7ELWOQ_js.A}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/host/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{T as EndedReasonSchema,R as EndedReplayStateSchema,U as EventStreamAlertKindSchema,V as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,J as HostEventAudienceResponseSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,L as HostEventDashboardPostEventBlockSchema,N as HostEventDashboardResponseSchema,ea as HostEventEngagementTimelineBucketSchema,da as HostEventEngagementTimelineQuerySchema,fa as HostEventEngagementTimelineResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,O as HostEventReadinessResponseSchema,K as HostEventReplayPerformanceResponseSchema,g as HostEventRowResponseSchema,P as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,$ as HostLiveConsoleAlertSchema,aa as HostLiveConsoleChatSchema,X as HostLiveConsoleControlsSchema,_ as HostLiveConsoleCrewMemberSchema,ba as HostLiveConsoleEndedSchema,W as HostLiveConsoleEventSchema,Y as HostLiveConsoleMetricsSchema,ca as HostLiveConsolePayloadSchema,Z as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,Q as LiveConsoleSliceSchema,S as LiveIngestHealthSchema,M as PagedHostProductionCrewResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-
|
|
1
|
+
export{T as EndedReasonSchema,R as EndedReplayStateSchema,U as EventStreamAlertKindSchema,V as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,J as HostEventAudienceResponseSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,L as HostEventDashboardPostEventBlockSchema,N as HostEventDashboardResponseSchema,ea as HostEventEngagementTimelineBucketSchema,da as HostEventEngagementTimelineQuerySchema,fa as HostEventEngagementTimelineResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,O as HostEventReadinessResponseSchema,K as HostEventReplayPerformanceResponseSchema,g as HostEventRowResponseSchema,P as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,$ as HostLiveConsoleAlertSchema,aa as HostLiveConsoleChatSchema,X as HostLiveConsoleControlsSchema,_ as HostLiveConsoleCrewMemberSchema,ba as HostLiveConsoleEndedSchema,W as HostLiveConsoleEventSchema,Y as HostLiveConsoleMetricsSchema,ca as HostLiveConsolePayloadSchema,Z as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,Q as LiveConsoleSliceSchema,S as LiveIngestHealthSchema,M as PagedHostProductionCrewResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-VJ66VGGZ.mjs';import'../chunk-NISKHDVO.mjs';import'../chunk-JWVW5AP2.mjs';import'../chunk-WHDIPDUN.mjs';import'../chunk-2EWNFPTC.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|