@livdot-tech/contracts 1.7.2 → 1.7.4
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-Z3TBOK7O.js → chunk-EEDJXTEY.js} +2 -2
- package/dist/{chunk-Z3TBOK7O.js.map → chunk-EEDJXTEY.js.map} +1 -1
- package/dist/chunk-LCQCSVAX.mjs +2 -0
- package/dist/chunk-LCQCSVAX.mjs.map +1 -0
- package/dist/{chunk-SLE2EJF3.mjs → chunk-P7MUKFIU.mjs} +2 -2
- package/dist/{chunk-SLE2EJF3.mjs.map → chunk-P7MUKFIU.mjs.map} +1 -1
- package/dist/chunk-VGRYDR45.js +2 -0
- package/dist/chunk-VGRYDR45.js.map +1 -0
- package/dist/event/index.d.mts +1171 -149
- package/dist/event/index.d.ts +1171 -149
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/index.d.mts +11 -3
- package/dist/index.d.ts +11 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/payment/index.d.mts +8 -1
- package/dist/payment/index.d.ts +8 -1
- package/dist/payment/index.js +1 -1
- package/dist/payment/index.mjs +1 -1
- package/dist/user/index.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-4ZMC5TR7.js +0 -2
- package/dist/chunk-4ZMC5TR7.js.map +0 -1
- package/dist/chunk-5QNDBNWF.js +0 -2
- package/dist/chunk-5QNDBNWF.js.map +0 -1
- package/dist/chunk-7QDEDFGR.mjs +0 -2
- package/dist/chunk-7QDEDFGR.mjs.map +0 -1
- package/dist/chunk-KMI2NY6Q.mjs +0 -2
- package/dist/chunk-KMI2NY6Q.mjs.map +0 -1
package/dist/event/index.d.ts
CHANGED
|
@@ -93,6 +93,12 @@ declare const ViewerRegistrationView: {
|
|
|
93
93
|
NONE: string;
|
|
94
94
|
};
|
|
95
95
|
type ViewerRegistrationView = (typeof ViewerRegistrationView)[keyof typeof ViewerRegistrationView];
|
|
96
|
+
declare const DiscoverEvents: {
|
|
97
|
+
UPCOMING: string;
|
|
98
|
+
LIVE: string;
|
|
99
|
+
RECOMMENDED: string;
|
|
100
|
+
};
|
|
101
|
+
type DiscoverEvents = (typeof DiscoverEvents)[keyof typeof DiscoverEvents];
|
|
96
102
|
declare const MyEventsTabSchema: {
|
|
97
103
|
UPCOMING: string;
|
|
98
104
|
LIVE: string;
|
|
@@ -217,6 +223,22 @@ declare const UpdateEventRequestSchema: z.ZodObject<{
|
|
|
217
223
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
218
224
|
geoRestrictions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
219
225
|
}, z.core.$strip>;
|
|
226
|
+
declare const EventCardCtaSchema: z.ZodObject<{
|
|
227
|
+
kind: z.ZodEnum<{
|
|
228
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
229
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
230
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
231
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
232
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
233
|
+
readonly WAITLIST: "WAITLIST";
|
|
234
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
235
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
236
|
+
}>;
|
|
237
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
238
|
+
amount: z.ZodString;
|
|
239
|
+
currency: z.ZodString;
|
|
240
|
+
}, z.core.$strip>>;
|
|
241
|
+
}, z.core.$strip>;
|
|
220
242
|
declare const EventResponseSchema: z.ZodObject<{
|
|
221
243
|
id: z.ZodUUID;
|
|
222
244
|
title: z.ZodString;
|
|
@@ -346,6 +368,23 @@ declare const EventCardSchema: z.ZodObject<{
|
|
|
346
368
|
isFeatured: z.ZodBoolean;
|
|
347
369
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
348
370
|
viewerCount: z.ZodNumber;
|
|
371
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
372
|
+
kind: z.ZodEnum<{
|
|
373
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
374
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
375
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
376
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
377
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
378
|
+
readonly WAITLIST: "WAITLIST";
|
|
379
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
380
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
381
|
+
}>;
|
|
382
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
383
|
+
amount: z.ZodString;
|
|
384
|
+
currency: z.ZodString;
|
|
385
|
+
}, z.core.$strip>>;
|
|
386
|
+
}, z.core.$strip>>;
|
|
387
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
349
388
|
viewer: z.ZodObject<{
|
|
350
389
|
registration: z.ZodEnum<{
|
|
351
390
|
ACTIVE: string;
|
|
@@ -411,6 +450,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
411
450
|
isFeatured: z.ZodBoolean;
|
|
412
451
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
413
452
|
viewerCount: z.ZodNumber;
|
|
453
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
454
|
+
kind: z.ZodEnum<{
|
|
455
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
456
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
457
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
458
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
459
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
460
|
+
readonly WAITLIST: "WAITLIST";
|
|
461
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
462
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
463
|
+
}>;
|
|
464
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
465
|
+
amount: z.ZodString;
|
|
466
|
+
currency: z.ZodString;
|
|
467
|
+
}, z.core.$strip>>;
|
|
468
|
+
}, z.core.$strip>>;
|
|
469
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
414
470
|
viewer: z.ZodObject<{
|
|
415
471
|
registration: z.ZodEnum<{
|
|
416
472
|
ACTIVE: string;
|
|
@@ -475,6 +531,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
475
531
|
isFeatured: z.ZodBoolean;
|
|
476
532
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
477
533
|
viewerCount: z.ZodNumber;
|
|
534
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
535
|
+
kind: z.ZodEnum<{
|
|
536
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
537
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
538
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
539
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
540
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
541
|
+
readonly WAITLIST: "WAITLIST";
|
|
542
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
543
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
544
|
+
}>;
|
|
545
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
546
|
+
amount: z.ZodString;
|
|
547
|
+
currency: z.ZodString;
|
|
548
|
+
}, z.core.$strip>>;
|
|
549
|
+
}, z.core.$strip>>;
|
|
550
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
478
551
|
viewer: z.ZodObject<{
|
|
479
552
|
registration: z.ZodEnum<{
|
|
480
553
|
ACTIVE: string;
|
|
@@ -539,6 +612,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
539
612
|
isFeatured: z.ZodBoolean;
|
|
540
613
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
541
614
|
viewerCount: z.ZodNumber;
|
|
615
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
616
|
+
kind: z.ZodEnum<{
|
|
617
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
618
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
619
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
620
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
621
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
622
|
+
readonly WAITLIST: "WAITLIST";
|
|
623
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
624
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
625
|
+
}>;
|
|
626
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
627
|
+
amount: z.ZodString;
|
|
628
|
+
currency: z.ZodString;
|
|
629
|
+
}, z.core.$strip>>;
|
|
630
|
+
}, z.core.$strip>>;
|
|
631
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
542
632
|
viewer: z.ZodObject<{
|
|
543
633
|
registration: z.ZodEnum<{
|
|
544
634
|
ACTIVE: string;
|
|
@@ -603,6 +693,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
603
693
|
isFeatured: z.ZodBoolean;
|
|
604
694
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
605
695
|
viewerCount: z.ZodNumber;
|
|
696
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
697
|
+
kind: z.ZodEnum<{
|
|
698
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
699
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
700
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
701
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
702
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
703
|
+
readonly WAITLIST: "WAITLIST";
|
|
704
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
705
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
706
|
+
}>;
|
|
707
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
708
|
+
amount: z.ZodString;
|
|
709
|
+
currency: z.ZodString;
|
|
710
|
+
}, z.core.$strip>>;
|
|
711
|
+
}, z.core.$strip>>;
|
|
712
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
606
713
|
viewer: z.ZodObject<{
|
|
607
714
|
registration: z.ZodEnum<{
|
|
608
715
|
ACTIVE: string;
|
|
@@ -667,6 +774,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
667
774
|
isFeatured: z.ZodBoolean;
|
|
668
775
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
669
776
|
viewerCount: z.ZodNumber;
|
|
777
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
778
|
+
kind: z.ZodEnum<{
|
|
779
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
780
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
781
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
782
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
783
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
784
|
+
readonly WAITLIST: "WAITLIST";
|
|
785
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
786
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
787
|
+
}>;
|
|
788
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
789
|
+
amount: z.ZodString;
|
|
790
|
+
currency: z.ZodString;
|
|
791
|
+
}, z.core.$strip>>;
|
|
792
|
+
}, z.core.$strip>>;
|
|
793
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
670
794
|
viewer: z.ZodObject<{
|
|
671
795
|
registration: z.ZodEnum<{
|
|
672
796
|
ACTIVE: string;
|
|
@@ -681,7 +805,6 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
681
805
|
declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
682
806
|
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
683
807
|
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
684
|
-
q: z.ZodOptional<z.ZodString>;
|
|
685
808
|
category: z.ZodOptional<z.ZodEnum<{
|
|
686
809
|
readonly ART: "ART";
|
|
687
810
|
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
@@ -709,26 +832,21 @@ declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
|
709
832
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
710
833
|
readonly OTHER: "OTHER";
|
|
711
834
|
}>>;
|
|
712
|
-
|
|
713
|
-
readonly
|
|
714
|
-
readonly
|
|
715
|
-
readonly
|
|
716
|
-
readonly LIVE: "LIVE";
|
|
717
|
-
readonly ENDED: "ENDED";
|
|
718
|
-
readonly REPLAY_READY: "REPLAY_READY";
|
|
719
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
720
|
-
readonly CANCELLED: "CANCELLED";
|
|
721
|
-
readonly FAILED: "FAILED";
|
|
835
|
+
accessModel: z.ZodOptional<z.ZodEnum<{
|
|
836
|
+
readonly FREE: "FREE";
|
|
837
|
+
readonly PAID: "PAID";
|
|
838
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
722
839
|
}>>;
|
|
840
|
+
section: z.ZodOptional<z.ZodEnum<{
|
|
841
|
+
UPCOMING: string;
|
|
842
|
+
LIVE: string;
|
|
843
|
+
RECOMMENDED: string;
|
|
844
|
+
}>>;
|
|
845
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
723
846
|
}, z.core.$strip>;
|
|
724
|
-
declare const
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
pageSize: z.ZodNumber;
|
|
728
|
-
totalPages: z.ZodNumber;
|
|
729
|
-
hasPreviousPage: z.ZodBoolean;
|
|
730
|
-
hasNextPage: z.ZodBoolean;
|
|
731
|
-
items: z.ZodArray<z.ZodObject<{
|
|
847
|
+
declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
848
|
+
mode: z.ZodLiteral<"AGGREGATE">;
|
|
849
|
+
featured: z.ZodNullable<z.ZodObject<{
|
|
732
850
|
id: z.ZodUUID;
|
|
733
851
|
title: z.ZodString;
|
|
734
852
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
@@ -782,6 +900,23 @@ declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
|
782
900
|
isFeatured: z.ZodBoolean;
|
|
783
901
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
784
902
|
viewerCount: z.ZodNumber;
|
|
903
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
904
|
+
kind: z.ZodEnum<{
|
|
905
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
906
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
907
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
908
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
909
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
910
|
+
readonly WAITLIST: "WAITLIST";
|
|
911
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
912
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
913
|
+
}>;
|
|
914
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
915
|
+
amount: z.ZodString;
|
|
916
|
+
currency: z.ZodString;
|
|
917
|
+
}, z.core.$strip>>;
|
|
918
|
+
}, z.core.$strip>>;
|
|
919
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
785
920
|
viewer: z.ZodObject<{
|
|
786
921
|
registration: z.ZodEnum<{
|
|
787
922
|
ACTIVE: string;
|
|
@@ -792,139 +927,88 @@ declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
|
792
927
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
793
928
|
}, z.core.$strip>;
|
|
794
929
|
}, z.core.$strip>>;
|
|
795
|
-
|
|
796
|
-
declare const RegisterForEventRequestSchema: z.ZodObject<{
|
|
797
|
-
callbackUrl: z.ZodOptional<z.ZodURL>;
|
|
798
|
-
}, z.core.$strip>;
|
|
799
|
-
declare const RegisterForEventResponseSchema: z.ZodObject<{
|
|
800
|
-
registration: z.ZodObject<{
|
|
930
|
+
liveNow: z.ZodArray<z.ZodObject<{
|
|
801
931
|
id: z.ZodUUID;
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
932
|
+
title: z.ZodString;
|
|
933
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
934
|
+
category: z.ZodEnum<{
|
|
935
|
+
readonly ART: "ART";
|
|
936
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
937
|
+
readonly SCIENCE: "SCIENCE";
|
|
938
|
+
readonly TRAVEL: "TRAVEL";
|
|
939
|
+
readonly HISTORY: "HISTORY";
|
|
940
|
+
readonly LITERATURE: "LITERATURE";
|
|
941
|
+
readonly COOKING: "COOKING";
|
|
942
|
+
readonly FITNESS: "FITNESS";
|
|
943
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
944
|
+
readonly GARDENING: "GARDENING";
|
|
945
|
+
readonly EDUCATION: "EDUCATION";
|
|
946
|
+
readonly FASHION: "FASHION";
|
|
947
|
+
readonly MOVIES: "MOVIES";
|
|
948
|
+
readonly SPORTS: "SPORTS";
|
|
949
|
+
readonly POLITICS: "POLITICS";
|
|
950
|
+
readonly HEALTH: "HEALTH";
|
|
951
|
+
readonly GAMING: "GAMING";
|
|
952
|
+
readonly FINANCE: "FINANCE";
|
|
953
|
+
readonly NATURE: "NATURE";
|
|
954
|
+
readonly CONCERT: "CONCERT";
|
|
955
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
956
|
+
readonly WEDDING: "WEDDING";
|
|
957
|
+
readonly CORPORATE: "CORPORATE";
|
|
958
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
959
|
+
readonly OTHER: "OTHER";
|
|
809
960
|
}>;
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
961
|
+
scheduledStart: z.ZodISODateTime;
|
|
962
|
+
scheduledEnd: z.ZodISODateTime;
|
|
963
|
+
state: z.ZodEnum<{
|
|
964
|
+
readonly DRAFT: "DRAFT";
|
|
965
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
966
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
967
|
+
readonly LIVE: "LIVE";
|
|
968
|
+
readonly ENDED: "ENDED";
|
|
969
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
970
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
971
|
+
readonly CANCELLED: "CANCELLED";
|
|
972
|
+
readonly FAILED: "FAILED";
|
|
973
|
+
}>;
|
|
974
|
+
accessModel: z.ZodEnum<{
|
|
975
|
+
readonly FREE: "FREE";
|
|
976
|
+
readonly PAID: "PAID";
|
|
977
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
978
|
+
}>;
|
|
979
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
815
980
|
currency: z.ZodString;
|
|
816
|
-
|
|
981
|
+
isFeatured: z.ZodBoolean;
|
|
982
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
983
|
+
viewerCount: z.ZodNumber;
|
|
984
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
985
|
+
kind: z.ZodEnum<{
|
|
986
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
987
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
988
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
989
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
990
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
991
|
+
readonly WAITLIST: "WAITLIST";
|
|
992
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
993
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
994
|
+
}>;
|
|
995
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
996
|
+
amount: z.ZodString;
|
|
997
|
+
currency: z.ZodString;
|
|
998
|
+
}, z.core.$strip>>;
|
|
999
|
+
}, z.core.$strip>>;
|
|
1000
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1001
|
+
viewer: z.ZodObject<{
|
|
1002
|
+
registration: z.ZodEnum<{
|
|
1003
|
+
ACTIVE: string;
|
|
1004
|
+
PENDING: string;
|
|
1005
|
+
NONE: string;
|
|
1006
|
+
}>;
|
|
1007
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1008
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1009
|
+
}, z.core.$strip>;
|
|
817
1010
|
}, z.core.$strip>>;
|
|
818
|
-
|
|
819
|
-
declare const UpdateWatchProgressRequestSchema: z.ZodObject<{
|
|
820
|
-
positionSec: z.ZodNumber;
|
|
821
|
-
durationSec: z.ZodOptional<z.ZodNumber>;
|
|
822
|
-
}, z.core.$strip>;
|
|
823
|
-
declare const LivePlaybackSchema: z.ZodObject<{
|
|
824
|
-
kind: z.ZodLiteral<"LIVE">;
|
|
825
|
-
playbackUrl: z.ZodURL;
|
|
826
|
-
token: z.ZodString;
|
|
827
|
-
expiresAt: z.ZodISODateTime;
|
|
828
|
-
}, z.core.$strip>;
|
|
829
|
-
declare const ReplayPlaybackSchema: z.ZodObject<{
|
|
830
|
-
kind: z.ZodLiteral<"REPLAY">;
|
|
831
|
-
playbackUrl: z.ZodURL;
|
|
832
|
-
expiresAt: z.ZodISODateTime;
|
|
833
|
-
}, z.core.$strip>;
|
|
834
|
-
declare const PlaybackResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
835
|
-
kind: z.ZodLiteral<"LIVE">;
|
|
836
|
-
playbackUrl: z.ZodURL;
|
|
837
|
-
token: z.ZodString;
|
|
838
|
-
expiresAt: z.ZodISODateTime;
|
|
839
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
840
|
-
kind: z.ZodLiteral<"REPLAY">;
|
|
841
|
-
playbackUrl: z.ZodURL;
|
|
842
|
-
expiresAt: z.ZodISODateTime;
|
|
843
|
-
}, z.core.$strip>], "kind">;
|
|
844
|
-
declare const MyEventCardSchema: z.ZodObject<{
|
|
845
|
-
id: z.ZodUUID;
|
|
846
|
-
title: z.ZodString;
|
|
847
|
-
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
848
|
-
category: z.ZodEnum<{
|
|
849
|
-
readonly ART: "ART";
|
|
850
|
-
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
851
|
-
readonly SCIENCE: "SCIENCE";
|
|
852
|
-
readonly TRAVEL: "TRAVEL";
|
|
853
|
-
readonly HISTORY: "HISTORY";
|
|
854
|
-
readonly LITERATURE: "LITERATURE";
|
|
855
|
-
readonly COOKING: "COOKING";
|
|
856
|
-
readonly FITNESS: "FITNESS";
|
|
857
|
-
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
858
|
-
readonly GARDENING: "GARDENING";
|
|
859
|
-
readonly EDUCATION: "EDUCATION";
|
|
860
|
-
readonly FASHION: "FASHION";
|
|
861
|
-
readonly MOVIES: "MOVIES";
|
|
862
|
-
readonly SPORTS: "SPORTS";
|
|
863
|
-
readonly POLITICS: "POLITICS";
|
|
864
|
-
readonly HEALTH: "HEALTH";
|
|
865
|
-
readonly GAMING: "GAMING";
|
|
866
|
-
readonly FINANCE: "FINANCE";
|
|
867
|
-
readonly NATURE: "NATURE";
|
|
868
|
-
readonly CONCERT: "CONCERT";
|
|
869
|
-
readonly FESTIVAL: "FESTIVAL";
|
|
870
|
-
readonly WEDDING: "WEDDING";
|
|
871
|
-
readonly CORPORATE: "CORPORATE";
|
|
872
|
-
readonly RELIGIOUS: "RELIGIOUS";
|
|
873
|
-
readonly OTHER: "OTHER";
|
|
874
|
-
}>;
|
|
875
|
-
scheduledStart: z.ZodISODateTime;
|
|
876
|
-
scheduledEnd: z.ZodISODateTime;
|
|
877
|
-
state: z.ZodEnum<{
|
|
878
|
-
readonly DRAFT: "DRAFT";
|
|
879
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
880
|
-
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
881
|
-
readonly LIVE: "LIVE";
|
|
882
|
-
readonly ENDED: "ENDED";
|
|
883
|
-
readonly REPLAY_READY: "REPLAY_READY";
|
|
884
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
885
|
-
readonly CANCELLED: "CANCELLED";
|
|
886
|
-
readonly FAILED: "FAILED";
|
|
887
|
-
}>;
|
|
888
|
-
accessModel: z.ZodEnum<{
|
|
889
|
-
readonly FREE: "FREE";
|
|
890
|
-
readonly PAID: "PAID";
|
|
891
|
-
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
892
|
-
}>;
|
|
893
|
-
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
894
|
-
currency: z.ZodString;
|
|
895
|
-
isFeatured: z.ZodBoolean;
|
|
896
|
-
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
897
|
-
viewerCount: z.ZodNumber;
|
|
898
|
-
viewer: z.ZodObject<{
|
|
899
|
-
registration: z.ZodEnum<{
|
|
900
|
-
ACTIVE: string;
|
|
901
|
-
PENDING: string;
|
|
902
|
-
NONE: string;
|
|
903
|
-
}>;
|
|
904
|
-
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
905
|
-
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
906
|
-
}, z.core.$strip>;
|
|
907
|
-
startsInSec: z.ZodOptional<z.ZodNumber>;
|
|
908
|
-
liveViewerCount: z.ZodOptional<z.ZodNumber>;
|
|
909
|
-
liveStartedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
910
|
-
replayAvailableUntil: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
911
|
-
replayDurationSec: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
912
|
-
watchedPct: z.ZodOptional<z.ZodNumber>;
|
|
913
|
-
hasWatched: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
-
}, z.core.$strip>;
|
|
915
|
-
declare const MyEventsResponseSchema: z.ZodObject<{
|
|
916
|
-
totalCount: z.ZodNumber;
|
|
917
|
-
pageNumber: z.ZodNumber;
|
|
918
|
-
pageSize: z.ZodNumber;
|
|
919
|
-
totalPages: z.ZodNumber;
|
|
920
|
-
hasPreviousPage: z.ZodBoolean;
|
|
921
|
-
hasNextPage: z.ZodBoolean;
|
|
922
|
-
tab: z.ZodEnum<{
|
|
923
|
-
UPCOMING: string;
|
|
924
|
-
LIVE: string;
|
|
925
|
-
PAST: string;
|
|
926
|
-
}>;
|
|
927
|
-
items: z.ZodArray<z.ZodObject<{
|
|
1011
|
+
upcoming: z.ZodArray<z.ZodObject<{
|
|
928
1012
|
id: z.ZodUUID;
|
|
929
1013
|
title: z.ZodString;
|
|
930
1014
|
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
@@ -978,6 +1062,939 @@ declare const MyEventsResponseSchema: z.ZodObject<{
|
|
|
978
1062
|
isFeatured: z.ZodBoolean;
|
|
979
1063
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
980
1064
|
viewerCount: z.ZodNumber;
|
|
1065
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1066
|
+
kind: z.ZodEnum<{
|
|
1067
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1068
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1069
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1070
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1071
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1072
|
+
readonly WAITLIST: "WAITLIST";
|
|
1073
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1074
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1075
|
+
}>;
|
|
1076
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1077
|
+
amount: z.ZodString;
|
|
1078
|
+
currency: z.ZodString;
|
|
1079
|
+
}, z.core.$strip>>;
|
|
1080
|
+
}, z.core.$strip>>;
|
|
1081
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1082
|
+
viewer: z.ZodObject<{
|
|
1083
|
+
registration: z.ZodEnum<{
|
|
1084
|
+
ACTIVE: string;
|
|
1085
|
+
PENDING: string;
|
|
1086
|
+
NONE: string;
|
|
1087
|
+
}>;
|
|
1088
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1089
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1090
|
+
}, z.core.$strip>;
|
|
1091
|
+
}, z.core.$strip>>;
|
|
1092
|
+
recommended: z.ZodArray<z.ZodObject<{
|
|
1093
|
+
id: z.ZodUUID;
|
|
1094
|
+
title: z.ZodString;
|
|
1095
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1096
|
+
category: z.ZodEnum<{
|
|
1097
|
+
readonly ART: "ART";
|
|
1098
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1099
|
+
readonly SCIENCE: "SCIENCE";
|
|
1100
|
+
readonly TRAVEL: "TRAVEL";
|
|
1101
|
+
readonly HISTORY: "HISTORY";
|
|
1102
|
+
readonly LITERATURE: "LITERATURE";
|
|
1103
|
+
readonly COOKING: "COOKING";
|
|
1104
|
+
readonly FITNESS: "FITNESS";
|
|
1105
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1106
|
+
readonly GARDENING: "GARDENING";
|
|
1107
|
+
readonly EDUCATION: "EDUCATION";
|
|
1108
|
+
readonly FASHION: "FASHION";
|
|
1109
|
+
readonly MOVIES: "MOVIES";
|
|
1110
|
+
readonly SPORTS: "SPORTS";
|
|
1111
|
+
readonly POLITICS: "POLITICS";
|
|
1112
|
+
readonly HEALTH: "HEALTH";
|
|
1113
|
+
readonly GAMING: "GAMING";
|
|
1114
|
+
readonly FINANCE: "FINANCE";
|
|
1115
|
+
readonly NATURE: "NATURE";
|
|
1116
|
+
readonly CONCERT: "CONCERT";
|
|
1117
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1118
|
+
readonly WEDDING: "WEDDING";
|
|
1119
|
+
readonly CORPORATE: "CORPORATE";
|
|
1120
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1121
|
+
readonly OTHER: "OTHER";
|
|
1122
|
+
}>;
|
|
1123
|
+
scheduledStart: z.ZodISODateTime;
|
|
1124
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1125
|
+
state: z.ZodEnum<{
|
|
1126
|
+
readonly DRAFT: "DRAFT";
|
|
1127
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1128
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1129
|
+
readonly LIVE: "LIVE";
|
|
1130
|
+
readonly ENDED: "ENDED";
|
|
1131
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1132
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1133
|
+
readonly CANCELLED: "CANCELLED";
|
|
1134
|
+
readonly FAILED: "FAILED";
|
|
1135
|
+
}>;
|
|
1136
|
+
accessModel: z.ZodEnum<{
|
|
1137
|
+
readonly FREE: "FREE";
|
|
1138
|
+
readonly PAID: "PAID";
|
|
1139
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1140
|
+
}>;
|
|
1141
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1142
|
+
currency: z.ZodString;
|
|
1143
|
+
isFeatured: z.ZodBoolean;
|
|
1144
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1145
|
+
viewerCount: z.ZodNumber;
|
|
1146
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
kind: z.ZodEnum<{
|
|
1148
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1149
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1150
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1151
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1152
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1153
|
+
readonly WAITLIST: "WAITLIST";
|
|
1154
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1155
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1156
|
+
}>;
|
|
1157
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1158
|
+
amount: z.ZodString;
|
|
1159
|
+
currency: z.ZodString;
|
|
1160
|
+
}, z.core.$strip>>;
|
|
1161
|
+
}, z.core.$strip>>;
|
|
1162
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1163
|
+
viewer: z.ZodObject<{
|
|
1164
|
+
registration: z.ZodEnum<{
|
|
1165
|
+
ACTIVE: string;
|
|
1166
|
+
PENDING: string;
|
|
1167
|
+
NONE: string;
|
|
1168
|
+
}>;
|
|
1169
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1170
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1171
|
+
}, z.core.$strip>;
|
|
1172
|
+
}, z.core.$strip>>;
|
|
1173
|
+
}, z.core.$strip>;
|
|
1174
|
+
declare const DiscoverSectionResponseSchema: z.ZodObject<{
|
|
1175
|
+
totalCount: z.ZodNumber;
|
|
1176
|
+
pageNumber: z.ZodNumber;
|
|
1177
|
+
pageSize: z.ZodNumber;
|
|
1178
|
+
totalPages: z.ZodNumber;
|
|
1179
|
+
hasPreviousPage: z.ZodBoolean;
|
|
1180
|
+
hasNextPage: z.ZodBoolean;
|
|
1181
|
+
mode: z.ZodLiteral<"SECTION">;
|
|
1182
|
+
section: z.ZodEnum<{
|
|
1183
|
+
UPCOMING: string;
|
|
1184
|
+
LIVE: string;
|
|
1185
|
+
RECOMMENDED: string;
|
|
1186
|
+
}>;
|
|
1187
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1188
|
+
id: z.ZodUUID;
|
|
1189
|
+
title: z.ZodString;
|
|
1190
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1191
|
+
category: z.ZodEnum<{
|
|
1192
|
+
readonly ART: "ART";
|
|
1193
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1194
|
+
readonly SCIENCE: "SCIENCE";
|
|
1195
|
+
readonly TRAVEL: "TRAVEL";
|
|
1196
|
+
readonly HISTORY: "HISTORY";
|
|
1197
|
+
readonly LITERATURE: "LITERATURE";
|
|
1198
|
+
readonly COOKING: "COOKING";
|
|
1199
|
+
readonly FITNESS: "FITNESS";
|
|
1200
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1201
|
+
readonly GARDENING: "GARDENING";
|
|
1202
|
+
readonly EDUCATION: "EDUCATION";
|
|
1203
|
+
readonly FASHION: "FASHION";
|
|
1204
|
+
readonly MOVIES: "MOVIES";
|
|
1205
|
+
readonly SPORTS: "SPORTS";
|
|
1206
|
+
readonly POLITICS: "POLITICS";
|
|
1207
|
+
readonly HEALTH: "HEALTH";
|
|
1208
|
+
readonly GAMING: "GAMING";
|
|
1209
|
+
readonly FINANCE: "FINANCE";
|
|
1210
|
+
readonly NATURE: "NATURE";
|
|
1211
|
+
readonly CONCERT: "CONCERT";
|
|
1212
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1213
|
+
readonly WEDDING: "WEDDING";
|
|
1214
|
+
readonly CORPORATE: "CORPORATE";
|
|
1215
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1216
|
+
readonly OTHER: "OTHER";
|
|
1217
|
+
}>;
|
|
1218
|
+
scheduledStart: z.ZodISODateTime;
|
|
1219
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1220
|
+
state: z.ZodEnum<{
|
|
1221
|
+
readonly DRAFT: "DRAFT";
|
|
1222
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1223
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1224
|
+
readonly LIVE: "LIVE";
|
|
1225
|
+
readonly ENDED: "ENDED";
|
|
1226
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1227
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1228
|
+
readonly CANCELLED: "CANCELLED";
|
|
1229
|
+
readonly FAILED: "FAILED";
|
|
1230
|
+
}>;
|
|
1231
|
+
accessModel: z.ZodEnum<{
|
|
1232
|
+
readonly FREE: "FREE";
|
|
1233
|
+
readonly PAID: "PAID";
|
|
1234
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1235
|
+
}>;
|
|
1236
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1237
|
+
currency: z.ZodString;
|
|
1238
|
+
isFeatured: z.ZodBoolean;
|
|
1239
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1240
|
+
viewerCount: z.ZodNumber;
|
|
1241
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1242
|
+
kind: z.ZodEnum<{
|
|
1243
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1244
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1245
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1246
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1247
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1248
|
+
readonly WAITLIST: "WAITLIST";
|
|
1249
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1250
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1251
|
+
}>;
|
|
1252
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1253
|
+
amount: z.ZodString;
|
|
1254
|
+
currency: z.ZodString;
|
|
1255
|
+
}, z.core.$strip>>;
|
|
1256
|
+
}, z.core.$strip>>;
|
|
1257
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1258
|
+
viewer: z.ZodObject<{
|
|
1259
|
+
registration: z.ZodEnum<{
|
|
1260
|
+
ACTIVE: string;
|
|
1261
|
+
PENDING: string;
|
|
1262
|
+
NONE: string;
|
|
1263
|
+
}>;
|
|
1264
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1265
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1266
|
+
}, z.core.$strip>;
|
|
1267
|
+
}, z.core.$strip>>;
|
|
1268
|
+
}, z.core.$strip>;
|
|
1269
|
+
declare const DiscoverResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1270
|
+
mode: z.ZodLiteral<"AGGREGATE">;
|
|
1271
|
+
featured: z.ZodNullable<z.ZodObject<{
|
|
1272
|
+
id: z.ZodUUID;
|
|
1273
|
+
title: z.ZodString;
|
|
1274
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1275
|
+
category: z.ZodEnum<{
|
|
1276
|
+
readonly ART: "ART";
|
|
1277
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1278
|
+
readonly SCIENCE: "SCIENCE";
|
|
1279
|
+
readonly TRAVEL: "TRAVEL";
|
|
1280
|
+
readonly HISTORY: "HISTORY";
|
|
1281
|
+
readonly LITERATURE: "LITERATURE";
|
|
1282
|
+
readonly COOKING: "COOKING";
|
|
1283
|
+
readonly FITNESS: "FITNESS";
|
|
1284
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1285
|
+
readonly GARDENING: "GARDENING";
|
|
1286
|
+
readonly EDUCATION: "EDUCATION";
|
|
1287
|
+
readonly FASHION: "FASHION";
|
|
1288
|
+
readonly MOVIES: "MOVIES";
|
|
1289
|
+
readonly SPORTS: "SPORTS";
|
|
1290
|
+
readonly POLITICS: "POLITICS";
|
|
1291
|
+
readonly HEALTH: "HEALTH";
|
|
1292
|
+
readonly GAMING: "GAMING";
|
|
1293
|
+
readonly FINANCE: "FINANCE";
|
|
1294
|
+
readonly NATURE: "NATURE";
|
|
1295
|
+
readonly CONCERT: "CONCERT";
|
|
1296
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1297
|
+
readonly WEDDING: "WEDDING";
|
|
1298
|
+
readonly CORPORATE: "CORPORATE";
|
|
1299
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1300
|
+
readonly OTHER: "OTHER";
|
|
1301
|
+
}>;
|
|
1302
|
+
scheduledStart: z.ZodISODateTime;
|
|
1303
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1304
|
+
state: z.ZodEnum<{
|
|
1305
|
+
readonly DRAFT: "DRAFT";
|
|
1306
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1307
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1308
|
+
readonly LIVE: "LIVE";
|
|
1309
|
+
readonly ENDED: "ENDED";
|
|
1310
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1311
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1312
|
+
readonly CANCELLED: "CANCELLED";
|
|
1313
|
+
readonly FAILED: "FAILED";
|
|
1314
|
+
}>;
|
|
1315
|
+
accessModel: z.ZodEnum<{
|
|
1316
|
+
readonly FREE: "FREE";
|
|
1317
|
+
readonly PAID: "PAID";
|
|
1318
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1319
|
+
}>;
|
|
1320
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1321
|
+
currency: z.ZodString;
|
|
1322
|
+
isFeatured: z.ZodBoolean;
|
|
1323
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1324
|
+
viewerCount: z.ZodNumber;
|
|
1325
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1326
|
+
kind: z.ZodEnum<{
|
|
1327
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1328
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1329
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1330
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1331
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1332
|
+
readonly WAITLIST: "WAITLIST";
|
|
1333
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1334
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1335
|
+
}>;
|
|
1336
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1337
|
+
amount: z.ZodString;
|
|
1338
|
+
currency: z.ZodString;
|
|
1339
|
+
}, z.core.$strip>>;
|
|
1340
|
+
}, z.core.$strip>>;
|
|
1341
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1342
|
+
viewer: z.ZodObject<{
|
|
1343
|
+
registration: z.ZodEnum<{
|
|
1344
|
+
ACTIVE: string;
|
|
1345
|
+
PENDING: string;
|
|
1346
|
+
NONE: string;
|
|
1347
|
+
}>;
|
|
1348
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1349
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1350
|
+
}, z.core.$strip>;
|
|
1351
|
+
}, z.core.$strip>>;
|
|
1352
|
+
liveNow: z.ZodArray<z.ZodObject<{
|
|
1353
|
+
id: z.ZodUUID;
|
|
1354
|
+
title: z.ZodString;
|
|
1355
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1356
|
+
category: z.ZodEnum<{
|
|
1357
|
+
readonly ART: "ART";
|
|
1358
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1359
|
+
readonly SCIENCE: "SCIENCE";
|
|
1360
|
+
readonly TRAVEL: "TRAVEL";
|
|
1361
|
+
readonly HISTORY: "HISTORY";
|
|
1362
|
+
readonly LITERATURE: "LITERATURE";
|
|
1363
|
+
readonly COOKING: "COOKING";
|
|
1364
|
+
readonly FITNESS: "FITNESS";
|
|
1365
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1366
|
+
readonly GARDENING: "GARDENING";
|
|
1367
|
+
readonly EDUCATION: "EDUCATION";
|
|
1368
|
+
readonly FASHION: "FASHION";
|
|
1369
|
+
readonly MOVIES: "MOVIES";
|
|
1370
|
+
readonly SPORTS: "SPORTS";
|
|
1371
|
+
readonly POLITICS: "POLITICS";
|
|
1372
|
+
readonly HEALTH: "HEALTH";
|
|
1373
|
+
readonly GAMING: "GAMING";
|
|
1374
|
+
readonly FINANCE: "FINANCE";
|
|
1375
|
+
readonly NATURE: "NATURE";
|
|
1376
|
+
readonly CONCERT: "CONCERT";
|
|
1377
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1378
|
+
readonly WEDDING: "WEDDING";
|
|
1379
|
+
readonly CORPORATE: "CORPORATE";
|
|
1380
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1381
|
+
readonly OTHER: "OTHER";
|
|
1382
|
+
}>;
|
|
1383
|
+
scheduledStart: z.ZodISODateTime;
|
|
1384
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1385
|
+
state: z.ZodEnum<{
|
|
1386
|
+
readonly DRAFT: "DRAFT";
|
|
1387
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1388
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1389
|
+
readonly LIVE: "LIVE";
|
|
1390
|
+
readonly ENDED: "ENDED";
|
|
1391
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1392
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1393
|
+
readonly CANCELLED: "CANCELLED";
|
|
1394
|
+
readonly FAILED: "FAILED";
|
|
1395
|
+
}>;
|
|
1396
|
+
accessModel: z.ZodEnum<{
|
|
1397
|
+
readonly FREE: "FREE";
|
|
1398
|
+
readonly PAID: "PAID";
|
|
1399
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1400
|
+
}>;
|
|
1401
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1402
|
+
currency: z.ZodString;
|
|
1403
|
+
isFeatured: z.ZodBoolean;
|
|
1404
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1405
|
+
viewerCount: z.ZodNumber;
|
|
1406
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1407
|
+
kind: z.ZodEnum<{
|
|
1408
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1409
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1410
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1411
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1412
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1413
|
+
readonly WAITLIST: "WAITLIST";
|
|
1414
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1415
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1416
|
+
}>;
|
|
1417
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1418
|
+
amount: z.ZodString;
|
|
1419
|
+
currency: z.ZodString;
|
|
1420
|
+
}, z.core.$strip>>;
|
|
1421
|
+
}, z.core.$strip>>;
|
|
1422
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1423
|
+
viewer: z.ZodObject<{
|
|
1424
|
+
registration: z.ZodEnum<{
|
|
1425
|
+
ACTIVE: string;
|
|
1426
|
+
PENDING: string;
|
|
1427
|
+
NONE: string;
|
|
1428
|
+
}>;
|
|
1429
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1430
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1431
|
+
}, z.core.$strip>;
|
|
1432
|
+
}, z.core.$strip>>;
|
|
1433
|
+
upcoming: z.ZodArray<z.ZodObject<{
|
|
1434
|
+
id: z.ZodUUID;
|
|
1435
|
+
title: z.ZodString;
|
|
1436
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1437
|
+
category: z.ZodEnum<{
|
|
1438
|
+
readonly ART: "ART";
|
|
1439
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1440
|
+
readonly SCIENCE: "SCIENCE";
|
|
1441
|
+
readonly TRAVEL: "TRAVEL";
|
|
1442
|
+
readonly HISTORY: "HISTORY";
|
|
1443
|
+
readonly LITERATURE: "LITERATURE";
|
|
1444
|
+
readonly COOKING: "COOKING";
|
|
1445
|
+
readonly FITNESS: "FITNESS";
|
|
1446
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1447
|
+
readonly GARDENING: "GARDENING";
|
|
1448
|
+
readonly EDUCATION: "EDUCATION";
|
|
1449
|
+
readonly FASHION: "FASHION";
|
|
1450
|
+
readonly MOVIES: "MOVIES";
|
|
1451
|
+
readonly SPORTS: "SPORTS";
|
|
1452
|
+
readonly POLITICS: "POLITICS";
|
|
1453
|
+
readonly HEALTH: "HEALTH";
|
|
1454
|
+
readonly GAMING: "GAMING";
|
|
1455
|
+
readonly FINANCE: "FINANCE";
|
|
1456
|
+
readonly NATURE: "NATURE";
|
|
1457
|
+
readonly CONCERT: "CONCERT";
|
|
1458
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1459
|
+
readonly WEDDING: "WEDDING";
|
|
1460
|
+
readonly CORPORATE: "CORPORATE";
|
|
1461
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1462
|
+
readonly OTHER: "OTHER";
|
|
1463
|
+
}>;
|
|
1464
|
+
scheduledStart: z.ZodISODateTime;
|
|
1465
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1466
|
+
state: z.ZodEnum<{
|
|
1467
|
+
readonly DRAFT: "DRAFT";
|
|
1468
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1469
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1470
|
+
readonly LIVE: "LIVE";
|
|
1471
|
+
readonly ENDED: "ENDED";
|
|
1472
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1473
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1474
|
+
readonly CANCELLED: "CANCELLED";
|
|
1475
|
+
readonly FAILED: "FAILED";
|
|
1476
|
+
}>;
|
|
1477
|
+
accessModel: z.ZodEnum<{
|
|
1478
|
+
readonly FREE: "FREE";
|
|
1479
|
+
readonly PAID: "PAID";
|
|
1480
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1481
|
+
}>;
|
|
1482
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1483
|
+
currency: z.ZodString;
|
|
1484
|
+
isFeatured: z.ZodBoolean;
|
|
1485
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1486
|
+
viewerCount: z.ZodNumber;
|
|
1487
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1488
|
+
kind: z.ZodEnum<{
|
|
1489
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1490
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1491
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1492
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1493
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1494
|
+
readonly WAITLIST: "WAITLIST";
|
|
1495
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1496
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1497
|
+
}>;
|
|
1498
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1499
|
+
amount: z.ZodString;
|
|
1500
|
+
currency: z.ZodString;
|
|
1501
|
+
}, z.core.$strip>>;
|
|
1502
|
+
}, z.core.$strip>>;
|
|
1503
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1504
|
+
viewer: z.ZodObject<{
|
|
1505
|
+
registration: z.ZodEnum<{
|
|
1506
|
+
ACTIVE: string;
|
|
1507
|
+
PENDING: string;
|
|
1508
|
+
NONE: string;
|
|
1509
|
+
}>;
|
|
1510
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1511
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1512
|
+
}, z.core.$strip>;
|
|
1513
|
+
}, z.core.$strip>>;
|
|
1514
|
+
recommended: z.ZodArray<z.ZodObject<{
|
|
1515
|
+
id: z.ZodUUID;
|
|
1516
|
+
title: z.ZodString;
|
|
1517
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1518
|
+
category: z.ZodEnum<{
|
|
1519
|
+
readonly ART: "ART";
|
|
1520
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1521
|
+
readonly SCIENCE: "SCIENCE";
|
|
1522
|
+
readonly TRAVEL: "TRAVEL";
|
|
1523
|
+
readonly HISTORY: "HISTORY";
|
|
1524
|
+
readonly LITERATURE: "LITERATURE";
|
|
1525
|
+
readonly COOKING: "COOKING";
|
|
1526
|
+
readonly FITNESS: "FITNESS";
|
|
1527
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1528
|
+
readonly GARDENING: "GARDENING";
|
|
1529
|
+
readonly EDUCATION: "EDUCATION";
|
|
1530
|
+
readonly FASHION: "FASHION";
|
|
1531
|
+
readonly MOVIES: "MOVIES";
|
|
1532
|
+
readonly SPORTS: "SPORTS";
|
|
1533
|
+
readonly POLITICS: "POLITICS";
|
|
1534
|
+
readonly HEALTH: "HEALTH";
|
|
1535
|
+
readonly GAMING: "GAMING";
|
|
1536
|
+
readonly FINANCE: "FINANCE";
|
|
1537
|
+
readonly NATURE: "NATURE";
|
|
1538
|
+
readonly CONCERT: "CONCERT";
|
|
1539
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1540
|
+
readonly WEDDING: "WEDDING";
|
|
1541
|
+
readonly CORPORATE: "CORPORATE";
|
|
1542
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1543
|
+
readonly OTHER: "OTHER";
|
|
1544
|
+
}>;
|
|
1545
|
+
scheduledStart: z.ZodISODateTime;
|
|
1546
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1547
|
+
state: z.ZodEnum<{
|
|
1548
|
+
readonly DRAFT: "DRAFT";
|
|
1549
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1550
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1551
|
+
readonly LIVE: "LIVE";
|
|
1552
|
+
readonly ENDED: "ENDED";
|
|
1553
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1554
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1555
|
+
readonly CANCELLED: "CANCELLED";
|
|
1556
|
+
readonly FAILED: "FAILED";
|
|
1557
|
+
}>;
|
|
1558
|
+
accessModel: z.ZodEnum<{
|
|
1559
|
+
readonly FREE: "FREE";
|
|
1560
|
+
readonly PAID: "PAID";
|
|
1561
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1562
|
+
}>;
|
|
1563
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1564
|
+
currency: z.ZodString;
|
|
1565
|
+
isFeatured: z.ZodBoolean;
|
|
1566
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1567
|
+
viewerCount: z.ZodNumber;
|
|
1568
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1569
|
+
kind: z.ZodEnum<{
|
|
1570
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1571
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1572
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1573
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1574
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1575
|
+
readonly WAITLIST: "WAITLIST";
|
|
1576
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1577
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1578
|
+
}>;
|
|
1579
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1580
|
+
amount: z.ZodString;
|
|
1581
|
+
currency: z.ZodString;
|
|
1582
|
+
}, z.core.$strip>>;
|
|
1583
|
+
}, z.core.$strip>>;
|
|
1584
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1585
|
+
viewer: z.ZodObject<{
|
|
1586
|
+
registration: z.ZodEnum<{
|
|
1587
|
+
ACTIVE: string;
|
|
1588
|
+
PENDING: string;
|
|
1589
|
+
NONE: string;
|
|
1590
|
+
}>;
|
|
1591
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1592
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1593
|
+
}, z.core.$strip>;
|
|
1594
|
+
}, z.core.$strip>>;
|
|
1595
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1596
|
+
totalCount: z.ZodNumber;
|
|
1597
|
+
pageNumber: z.ZodNumber;
|
|
1598
|
+
pageSize: z.ZodNumber;
|
|
1599
|
+
totalPages: z.ZodNumber;
|
|
1600
|
+
hasPreviousPage: z.ZodBoolean;
|
|
1601
|
+
hasNextPage: z.ZodBoolean;
|
|
1602
|
+
mode: z.ZodLiteral<"SECTION">;
|
|
1603
|
+
section: z.ZodEnum<{
|
|
1604
|
+
UPCOMING: string;
|
|
1605
|
+
LIVE: string;
|
|
1606
|
+
RECOMMENDED: string;
|
|
1607
|
+
}>;
|
|
1608
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1609
|
+
id: z.ZodUUID;
|
|
1610
|
+
title: z.ZodString;
|
|
1611
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1612
|
+
category: z.ZodEnum<{
|
|
1613
|
+
readonly ART: "ART";
|
|
1614
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1615
|
+
readonly SCIENCE: "SCIENCE";
|
|
1616
|
+
readonly TRAVEL: "TRAVEL";
|
|
1617
|
+
readonly HISTORY: "HISTORY";
|
|
1618
|
+
readonly LITERATURE: "LITERATURE";
|
|
1619
|
+
readonly COOKING: "COOKING";
|
|
1620
|
+
readonly FITNESS: "FITNESS";
|
|
1621
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1622
|
+
readonly GARDENING: "GARDENING";
|
|
1623
|
+
readonly EDUCATION: "EDUCATION";
|
|
1624
|
+
readonly FASHION: "FASHION";
|
|
1625
|
+
readonly MOVIES: "MOVIES";
|
|
1626
|
+
readonly SPORTS: "SPORTS";
|
|
1627
|
+
readonly POLITICS: "POLITICS";
|
|
1628
|
+
readonly HEALTH: "HEALTH";
|
|
1629
|
+
readonly GAMING: "GAMING";
|
|
1630
|
+
readonly FINANCE: "FINANCE";
|
|
1631
|
+
readonly NATURE: "NATURE";
|
|
1632
|
+
readonly CONCERT: "CONCERT";
|
|
1633
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1634
|
+
readonly WEDDING: "WEDDING";
|
|
1635
|
+
readonly CORPORATE: "CORPORATE";
|
|
1636
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1637
|
+
readonly OTHER: "OTHER";
|
|
1638
|
+
}>;
|
|
1639
|
+
scheduledStart: z.ZodISODateTime;
|
|
1640
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1641
|
+
state: z.ZodEnum<{
|
|
1642
|
+
readonly DRAFT: "DRAFT";
|
|
1643
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1644
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1645
|
+
readonly LIVE: "LIVE";
|
|
1646
|
+
readonly ENDED: "ENDED";
|
|
1647
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1648
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1649
|
+
readonly CANCELLED: "CANCELLED";
|
|
1650
|
+
readonly FAILED: "FAILED";
|
|
1651
|
+
}>;
|
|
1652
|
+
accessModel: z.ZodEnum<{
|
|
1653
|
+
readonly FREE: "FREE";
|
|
1654
|
+
readonly PAID: "PAID";
|
|
1655
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1656
|
+
}>;
|
|
1657
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1658
|
+
currency: z.ZodString;
|
|
1659
|
+
isFeatured: z.ZodBoolean;
|
|
1660
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1661
|
+
viewerCount: z.ZodNumber;
|
|
1662
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1663
|
+
kind: z.ZodEnum<{
|
|
1664
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1665
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1666
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1667
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1668
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1669
|
+
readonly WAITLIST: "WAITLIST";
|
|
1670
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1671
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1672
|
+
}>;
|
|
1673
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1674
|
+
amount: z.ZodString;
|
|
1675
|
+
currency: z.ZodString;
|
|
1676
|
+
}, z.core.$strip>>;
|
|
1677
|
+
}, z.core.$strip>>;
|
|
1678
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1679
|
+
viewer: z.ZodObject<{
|
|
1680
|
+
registration: z.ZodEnum<{
|
|
1681
|
+
ACTIVE: string;
|
|
1682
|
+
PENDING: string;
|
|
1683
|
+
NONE: string;
|
|
1684
|
+
}>;
|
|
1685
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1686
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1687
|
+
}, z.core.$strip>;
|
|
1688
|
+
}, z.core.$strip>>;
|
|
1689
|
+
}, z.core.$strip>], "mode">;
|
|
1690
|
+
declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
1691
|
+
totalCount: z.ZodNumber;
|
|
1692
|
+
pageNumber: z.ZodNumber;
|
|
1693
|
+
pageSize: z.ZodNumber;
|
|
1694
|
+
totalPages: z.ZodNumber;
|
|
1695
|
+
hasPreviousPage: z.ZodBoolean;
|
|
1696
|
+
hasNextPage: z.ZodBoolean;
|
|
1697
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1698
|
+
id: z.ZodUUID;
|
|
1699
|
+
title: z.ZodString;
|
|
1700
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1701
|
+
category: z.ZodEnum<{
|
|
1702
|
+
readonly ART: "ART";
|
|
1703
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1704
|
+
readonly SCIENCE: "SCIENCE";
|
|
1705
|
+
readonly TRAVEL: "TRAVEL";
|
|
1706
|
+
readonly HISTORY: "HISTORY";
|
|
1707
|
+
readonly LITERATURE: "LITERATURE";
|
|
1708
|
+
readonly COOKING: "COOKING";
|
|
1709
|
+
readonly FITNESS: "FITNESS";
|
|
1710
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1711
|
+
readonly GARDENING: "GARDENING";
|
|
1712
|
+
readonly EDUCATION: "EDUCATION";
|
|
1713
|
+
readonly FASHION: "FASHION";
|
|
1714
|
+
readonly MOVIES: "MOVIES";
|
|
1715
|
+
readonly SPORTS: "SPORTS";
|
|
1716
|
+
readonly POLITICS: "POLITICS";
|
|
1717
|
+
readonly HEALTH: "HEALTH";
|
|
1718
|
+
readonly GAMING: "GAMING";
|
|
1719
|
+
readonly FINANCE: "FINANCE";
|
|
1720
|
+
readonly NATURE: "NATURE";
|
|
1721
|
+
readonly CONCERT: "CONCERT";
|
|
1722
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1723
|
+
readonly WEDDING: "WEDDING";
|
|
1724
|
+
readonly CORPORATE: "CORPORATE";
|
|
1725
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1726
|
+
readonly OTHER: "OTHER";
|
|
1727
|
+
}>;
|
|
1728
|
+
scheduledStart: z.ZodISODateTime;
|
|
1729
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1730
|
+
state: z.ZodEnum<{
|
|
1731
|
+
readonly DRAFT: "DRAFT";
|
|
1732
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1733
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1734
|
+
readonly LIVE: "LIVE";
|
|
1735
|
+
readonly ENDED: "ENDED";
|
|
1736
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1737
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1738
|
+
readonly CANCELLED: "CANCELLED";
|
|
1739
|
+
readonly FAILED: "FAILED";
|
|
1740
|
+
}>;
|
|
1741
|
+
accessModel: z.ZodEnum<{
|
|
1742
|
+
readonly FREE: "FREE";
|
|
1743
|
+
readonly PAID: "PAID";
|
|
1744
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1745
|
+
}>;
|
|
1746
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1747
|
+
currency: z.ZodString;
|
|
1748
|
+
isFeatured: z.ZodBoolean;
|
|
1749
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1750
|
+
viewerCount: z.ZodNumber;
|
|
1751
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1752
|
+
kind: z.ZodEnum<{
|
|
1753
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1754
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1755
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1756
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1757
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1758
|
+
readonly WAITLIST: "WAITLIST";
|
|
1759
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1760
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1761
|
+
}>;
|
|
1762
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1763
|
+
amount: z.ZodString;
|
|
1764
|
+
currency: z.ZodString;
|
|
1765
|
+
}, z.core.$strip>>;
|
|
1766
|
+
}, z.core.$strip>>;
|
|
1767
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1768
|
+
viewer: z.ZodObject<{
|
|
1769
|
+
registration: z.ZodEnum<{
|
|
1770
|
+
ACTIVE: string;
|
|
1771
|
+
PENDING: string;
|
|
1772
|
+
NONE: string;
|
|
1773
|
+
}>;
|
|
1774
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1775
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1776
|
+
}, z.core.$strip>;
|
|
1777
|
+
}, z.core.$strip>>;
|
|
1778
|
+
}, z.core.$strip>;
|
|
1779
|
+
declare const RegisterForEventRequestSchema: z.ZodObject<{
|
|
1780
|
+
callbackUrl: z.ZodOptional<z.ZodURL>;
|
|
1781
|
+
}, z.core.$strip>;
|
|
1782
|
+
declare const RegisterForEventResponseSchema: z.ZodObject<{
|
|
1783
|
+
registration: z.ZodObject<{
|
|
1784
|
+
id: z.ZodUUID;
|
|
1785
|
+
eventId: z.ZodUUID;
|
|
1786
|
+
status: z.ZodEnum<{
|
|
1787
|
+
PENDING_PAYMENT: string;
|
|
1788
|
+
ACTIVE: string;
|
|
1789
|
+
CANCELLED: string;
|
|
1790
|
+
REFUNDED: string;
|
|
1791
|
+
EXPIRED: string;
|
|
1792
|
+
}>;
|
|
1793
|
+
expiresAt: z.ZodNullable<z.ZodISODateTime>;
|
|
1794
|
+
}, z.core.$strip>;
|
|
1795
|
+
paymentIntent: z.ZodNullable<z.ZodObject<{
|
|
1796
|
+
reference: z.ZodString;
|
|
1797
|
+
amount: z.ZodString;
|
|
1798
|
+
currency: z.ZodString;
|
|
1799
|
+
checkoutUrl: z.ZodOptional<z.ZodURL>;
|
|
1800
|
+
}, z.core.$strip>>;
|
|
1801
|
+
}, z.core.$strip>;
|
|
1802
|
+
declare const UpdateWatchProgressRequestSchema: z.ZodObject<{
|
|
1803
|
+
positionSec: z.ZodNumber;
|
|
1804
|
+
durationSec: z.ZodOptional<z.ZodNumber>;
|
|
1805
|
+
}, z.core.$strip>;
|
|
1806
|
+
declare const LivePlaybackSchema: z.ZodObject<{
|
|
1807
|
+
kind: z.ZodLiteral<"LIVE">;
|
|
1808
|
+
playbackUrl: z.ZodURL;
|
|
1809
|
+
token: z.ZodString;
|
|
1810
|
+
expiresAt: z.ZodISODateTime;
|
|
1811
|
+
}, z.core.$strip>;
|
|
1812
|
+
declare const ReplayPlaybackSchema: z.ZodObject<{
|
|
1813
|
+
kind: z.ZodLiteral<"REPLAY">;
|
|
1814
|
+
playbackUrl: z.ZodURL;
|
|
1815
|
+
expiresAt: z.ZodISODateTime;
|
|
1816
|
+
}, z.core.$strip>;
|
|
1817
|
+
declare const PlaybackResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1818
|
+
kind: z.ZodLiteral<"LIVE">;
|
|
1819
|
+
playbackUrl: z.ZodURL;
|
|
1820
|
+
token: z.ZodString;
|
|
1821
|
+
expiresAt: z.ZodISODateTime;
|
|
1822
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1823
|
+
kind: z.ZodLiteral<"REPLAY">;
|
|
1824
|
+
playbackUrl: z.ZodURL;
|
|
1825
|
+
expiresAt: z.ZodISODateTime;
|
|
1826
|
+
}, z.core.$strip>], "kind">;
|
|
1827
|
+
declare const MyEventCardSchema: z.ZodObject<{
|
|
1828
|
+
id: z.ZodUUID;
|
|
1829
|
+
title: z.ZodString;
|
|
1830
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1831
|
+
category: z.ZodEnum<{
|
|
1832
|
+
readonly ART: "ART";
|
|
1833
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1834
|
+
readonly SCIENCE: "SCIENCE";
|
|
1835
|
+
readonly TRAVEL: "TRAVEL";
|
|
1836
|
+
readonly HISTORY: "HISTORY";
|
|
1837
|
+
readonly LITERATURE: "LITERATURE";
|
|
1838
|
+
readonly COOKING: "COOKING";
|
|
1839
|
+
readonly FITNESS: "FITNESS";
|
|
1840
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1841
|
+
readonly GARDENING: "GARDENING";
|
|
1842
|
+
readonly EDUCATION: "EDUCATION";
|
|
1843
|
+
readonly FASHION: "FASHION";
|
|
1844
|
+
readonly MOVIES: "MOVIES";
|
|
1845
|
+
readonly SPORTS: "SPORTS";
|
|
1846
|
+
readonly POLITICS: "POLITICS";
|
|
1847
|
+
readonly HEALTH: "HEALTH";
|
|
1848
|
+
readonly GAMING: "GAMING";
|
|
1849
|
+
readonly FINANCE: "FINANCE";
|
|
1850
|
+
readonly NATURE: "NATURE";
|
|
1851
|
+
readonly CONCERT: "CONCERT";
|
|
1852
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1853
|
+
readonly WEDDING: "WEDDING";
|
|
1854
|
+
readonly CORPORATE: "CORPORATE";
|
|
1855
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1856
|
+
readonly OTHER: "OTHER";
|
|
1857
|
+
}>;
|
|
1858
|
+
scheduledStart: z.ZodISODateTime;
|
|
1859
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1860
|
+
state: z.ZodEnum<{
|
|
1861
|
+
readonly DRAFT: "DRAFT";
|
|
1862
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1863
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1864
|
+
readonly LIVE: "LIVE";
|
|
1865
|
+
readonly ENDED: "ENDED";
|
|
1866
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1867
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1868
|
+
readonly CANCELLED: "CANCELLED";
|
|
1869
|
+
readonly FAILED: "FAILED";
|
|
1870
|
+
}>;
|
|
1871
|
+
accessModel: z.ZodEnum<{
|
|
1872
|
+
readonly FREE: "FREE";
|
|
1873
|
+
readonly PAID: "PAID";
|
|
1874
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1875
|
+
}>;
|
|
1876
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1877
|
+
currency: z.ZodString;
|
|
1878
|
+
isFeatured: z.ZodBoolean;
|
|
1879
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1880
|
+
viewerCount: z.ZodNumber;
|
|
1881
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1882
|
+
kind: z.ZodEnum<{
|
|
1883
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1884
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1885
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1886
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1887
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1888
|
+
readonly WAITLIST: "WAITLIST";
|
|
1889
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1890
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1891
|
+
}>;
|
|
1892
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1893
|
+
amount: z.ZodString;
|
|
1894
|
+
currency: z.ZodString;
|
|
1895
|
+
}, z.core.$strip>>;
|
|
1896
|
+
}, z.core.$strip>>;
|
|
1897
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1898
|
+
viewer: z.ZodObject<{
|
|
1899
|
+
registration: z.ZodEnum<{
|
|
1900
|
+
ACTIVE: string;
|
|
1901
|
+
PENDING: string;
|
|
1902
|
+
NONE: string;
|
|
1903
|
+
}>;
|
|
1904
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
1905
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
1906
|
+
}, z.core.$strip>;
|
|
1907
|
+
startsInSec: z.ZodOptional<z.ZodNumber>;
|
|
1908
|
+
liveViewerCount: z.ZodOptional<z.ZodNumber>;
|
|
1909
|
+
liveStartedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
1910
|
+
replayAvailableUntil: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
1911
|
+
replayDurationSec: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1912
|
+
watchedPct: z.ZodOptional<z.ZodNumber>;
|
|
1913
|
+
hasWatched: z.ZodOptional<z.ZodBoolean>;
|
|
1914
|
+
}, z.core.$strip>;
|
|
1915
|
+
declare const MyEventsResponseSchema: z.ZodObject<{
|
|
1916
|
+
totalCount: z.ZodNumber;
|
|
1917
|
+
pageNumber: z.ZodNumber;
|
|
1918
|
+
pageSize: z.ZodNumber;
|
|
1919
|
+
totalPages: z.ZodNumber;
|
|
1920
|
+
hasPreviousPage: z.ZodBoolean;
|
|
1921
|
+
hasNextPage: z.ZodBoolean;
|
|
1922
|
+
tab: z.ZodEnum<{
|
|
1923
|
+
UPCOMING: string;
|
|
1924
|
+
LIVE: string;
|
|
1925
|
+
PAST: string;
|
|
1926
|
+
}>;
|
|
1927
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1928
|
+
id: z.ZodUUID;
|
|
1929
|
+
title: z.ZodString;
|
|
1930
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1931
|
+
category: z.ZodEnum<{
|
|
1932
|
+
readonly ART: "ART";
|
|
1933
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1934
|
+
readonly SCIENCE: "SCIENCE";
|
|
1935
|
+
readonly TRAVEL: "TRAVEL";
|
|
1936
|
+
readonly HISTORY: "HISTORY";
|
|
1937
|
+
readonly LITERATURE: "LITERATURE";
|
|
1938
|
+
readonly COOKING: "COOKING";
|
|
1939
|
+
readonly FITNESS: "FITNESS";
|
|
1940
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1941
|
+
readonly GARDENING: "GARDENING";
|
|
1942
|
+
readonly EDUCATION: "EDUCATION";
|
|
1943
|
+
readonly FASHION: "FASHION";
|
|
1944
|
+
readonly MOVIES: "MOVIES";
|
|
1945
|
+
readonly SPORTS: "SPORTS";
|
|
1946
|
+
readonly POLITICS: "POLITICS";
|
|
1947
|
+
readonly HEALTH: "HEALTH";
|
|
1948
|
+
readonly GAMING: "GAMING";
|
|
1949
|
+
readonly FINANCE: "FINANCE";
|
|
1950
|
+
readonly NATURE: "NATURE";
|
|
1951
|
+
readonly CONCERT: "CONCERT";
|
|
1952
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1953
|
+
readonly WEDDING: "WEDDING";
|
|
1954
|
+
readonly CORPORATE: "CORPORATE";
|
|
1955
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1956
|
+
readonly OTHER: "OTHER";
|
|
1957
|
+
}>;
|
|
1958
|
+
scheduledStart: z.ZodISODateTime;
|
|
1959
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1960
|
+
state: z.ZodEnum<{
|
|
1961
|
+
readonly DRAFT: "DRAFT";
|
|
1962
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1963
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1964
|
+
readonly LIVE: "LIVE";
|
|
1965
|
+
readonly ENDED: "ENDED";
|
|
1966
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1967
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1968
|
+
readonly CANCELLED: "CANCELLED";
|
|
1969
|
+
readonly FAILED: "FAILED";
|
|
1970
|
+
}>;
|
|
1971
|
+
accessModel: z.ZodEnum<{
|
|
1972
|
+
readonly FREE: "FREE";
|
|
1973
|
+
readonly PAID: "PAID";
|
|
1974
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1975
|
+
}>;
|
|
1976
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1977
|
+
currency: z.ZodString;
|
|
1978
|
+
isFeatured: z.ZodBoolean;
|
|
1979
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
1980
|
+
viewerCount: z.ZodNumber;
|
|
1981
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1982
|
+
kind: z.ZodEnum<{
|
|
1983
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1984
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1985
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1986
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1987
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1988
|
+
readonly WAITLIST: "WAITLIST";
|
|
1989
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1990
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1991
|
+
}>;
|
|
1992
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1993
|
+
amount: z.ZodString;
|
|
1994
|
+
currency: z.ZodString;
|
|
1995
|
+
}, z.core.$strip>>;
|
|
1996
|
+
}, z.core.$strip>>;
|
|
1997
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
981
1998
|
viewer: z.ZodObject<{
|
|
982
1999
|
registration: z.ZodEnum<{
|
|
983
2000
|
ACTIVE: string;
|
|
@@ -1004,6 +2021,7 @@ declare const MyEventsQuerySchema: z.ZodObject<{
|
|
|
1004
2021
|
LIVE: string;
|
|
1005
2022
|
PAST: string;
|
|
1006
2023
|
}>;
|
|
2024
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
1007
2025
|
}, z.core.$strip>;
|
|
1008
2026
|
declare const StartViewingSessionResponseSchema: z.ZodObject<{
|
|
1009
2027
|
sessionId: z.ZodString;
|
|
@@ -1196,5 +2214,9 @@ type AccessStarts = z.infer<typeof AccessStartsSchema>;
|
|
|
1196
2214
|
type HostEventWizardPatch = z.infer<typeof HostEventWizardPatchSchema>;
|
|
1197
2215
|
type RegisterForEventRequest = z.infer<typeof RegisterForEventRequestSchema>;
|
|
1198
2216
|
type StartViewingSessionRequest = z.infer<typeof StartViewingSessionRequestSchema>;
|
|
2217
|
+
type EventCardCta = z.infer<typeof EventCardCtaSchema>;
|
|
2218
|
+
type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
|
|
2219
|
+
type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
|
|
2220
|
+
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
1199
2221
|
|
|
1200
|
-
export { type AccessStarts, AccessStartsSchema, type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PlaybackResponse, PlaybackResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|
|
2222
|
+
export { type AccessStarts, AccessStartsSchema, type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PlaybackResponse, PlaybackResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|