@livdot-tech/contracts 1.7.3 → 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-CSJMT2NW.js → chunk-EEDJXTEY.js} +2 -2
- package/dist/{chunk-CSJMT2NW.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-3QJRXOI3.mjs → chunk-P7MUKFIU.mjs} +2 -2
- package/dist/{chunk-3QJRXOI3.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 +863 -12
- package/dist/event/index.d.ts +863 -12
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +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.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-7XE6QIAT.mjs +0 -2
- package/dist/chunk-7XE6QIAT.mjs.map +0 -1
- package/dist/chunk-FXPXG3II.js +0 -2
- package/dist/chunk-FXPXG3II.js.map +0 -1
package/dist/event/index.d.mts
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;
|
|
@@ -799,7 +805,6 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
799
805
|
declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
800
806
|
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
801
807
|
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
802
|
-
q: z.ZodOptional<z.ZodString>;
|
|
803
808
|
category: z.ZodOptional<z.ZodEnum<{
|
|
804
809
|
readonly ART: "ART";
|
|
805
810
|
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
@@ -827,18 +832,861 @@ declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
|
827
832
|
readonly RELIGIOUS: "RELIGIOUS";
|
|
828
833
|
readonly OTHER: "OTHER";
|
|
829
834
|
}>>;
|
|
830
|
-
|
|
831
|
-
readonly
|
|
832
|
-
readonly
|
|
833
|
-
readonly
|
|
834
|
-
readonly LIVE: "LIVE";
|
|
835
|
-
readonly ENDED: "ENDED";
|
|
836
|
-
readonly REPLAY_READY: "REPLAY_READY";
|
|
837
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
838
|
-
readonly CANCELLED: "CANCELLED";
|
|
839
|
-
readonly FAILED: "FAILED";
|
|
835
|
+
accessModel: z.ZodOptional<z.ZodEnum<{
|
|
836
|
+
readonly FREE: "FREE";
|
|
837
|
+
readonly PAID: "PAID";
|
|
838
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
840
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>>;
|
|
841
846
|
}, z.core.$strip>;
|
|
847
|
+
declare const DiscoverAggregateResponseSchema: z.ZodObject<{
|
|
848
|
+
mode: z.ZodLiteral<"AGGREGATE">;
|
|
849
|
+
featured: z.ZodNullable<z.ZodObject<{
|
|
850
|
+
id: z.ZodUUID;
|
|
851
|
+
title: z.ZodString;
|
|
852
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
853
|
+
category: z.ZodEnum<{
|
|
854
|
+
readonly ART: "ART";
|
|
855
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
856
|
+
readonly SCIENCE: "SCIENCE";
|
|
857
|
+
readonly TRAVEL: "TRAVEL";
|
|
858
|
+
readonly HISTORY: "HISTORY";
|
|
859
|
+
readonly LITERATURE: "LITERATURE";
|
|
860
|
+
readonly COOKING: "COOKING";
|
|
861
|
+
readonly FITNESS: "FITNESS";
|
|
862
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
863
|
+
readonly GARDENING: "GARDENING";
|
|
864
|
+
readonly EDUCATION: "EDUCATION";
|
|
865
|
+
readonly FASHION: "FASHION";
|
|
866
|
+
readonly MOVIES: "MOVIES";
|
|
867
|
+
readonly SPORTS: "SPORTS";
|
|
868
|
+
readonly POLITICS: "POLITICS";
|
|
869
|
+
readonly HEALTH: "HEALTH";
|
|
870
|
+
readonly GAMING: "GAMING";
|
|
871
|
+
readonly FINANCE: "FINANCE";
|
|
872
|
+
readonly NATURE: "NATURE";
|
|
873
|
+
readonly CONCERT: "CONCERT";
|
|
874
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
875
|
+
readonly WEDDING: "WEDDING";
|
|
876
|
+
readonly CORPORATE: "CORPORATE";
|
|
877
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
878
|
+
readonly OTHER: "OTHER";
|
|
879
|
+
}>;
|
|
880
|
+
scheduledStart: z.ZodISODateTime;
|
|
881
|
+
scheduledEnd: z.ZodISODateTime;
|
|
882
|
+
state: z.ZodEnum<{
|
|
883
|
+
readonly DRAFT: "DRAFT";
|
|
884
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
885
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
886
|
+
readonly LIVE: "LIVE";
|
|
887
|
+
readonly ENDED: "ENDED";
|
|
888
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
889
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
890
|
+
readonly CANCELLED: "CANCELLED";
|
|
891
|
+
readonly FAILED: "FAILED";
|
|
892
|
+
}>;
|
|
893
|
+
accessModel: z.ZodEnum<{
|
|
894
|
+
readonly FREE: "FREE";
|
|
895
|
+
readonly PAID: "PAID";
|
|
896
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
897
|
+
}>;
|
|
898
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
899
|
+
currency: z.ZodString;
|
|
900
|
+
isFeatured: z.ZodBoolean;
|
|
901
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
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>>;
|
|
920
|
+
viewer: z.ZodObject<{
|
|
921
|
+
registration: z.ZodEnum<{
|
|
922
|
+
ACTIVE: string;
|
|
923
|
+
PENDING: string;
|
|
924
|
+
NONE: string;
|
|
925
|
+
}>;
|
|
926
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
927
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
928
|
+
}, z.core.$strip>;
|
|
929
|
+
}, z.core.$strip>>;
|
|
930
|
+
liveNow: z.ZodArray<z.ZodObject<{
|
|
931
|
+
id: z.ZodUUID;
|
|
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";
|
|
960
|
+
}>;
|
|
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>;
|
|
980
|
+
currency: z.ZodString;
|
|
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>;
|
|
1010
|
+
}, z.core.$strip>>;
|
|
1011
|
+
upcoming: z.ZodArray<z.ZodObject<{
|
|
1012
|
+
id: z.ZodUUID;
|
|
1013
|
+
title: z.ZodString;
|
|
1014
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
1015
|
+
category: z.ZodEnum<{
|
|
1016
|
+
readonly ART: "ART";
|
|
1017
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
1018
|
+
readonly SCIENCE: "SCIENCE";
|
|
1019
|
+
readonly TRAVEL: "TRAVEL";
|
|
1020
|
+
readonly HISTORY: "HISTORY";
|
|
1021
|
+
readonly LITERATURE: "LITERATURE";
|
|
1022
|
+
readonly COOKING: "COOKING";
|
|
1023
|
+
readonly FITNESS: "FITNESS";
|
|
1024
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
1025
|
+
readonly GARDENING: "GARDENING";
|
|
1026
|
+
readonly EDUCATION: "EDUCATION";
|
|
1027
|
+
readonly FASHION: "FASHION";
|
|
1028
|
+
readonly MOVIES: "MOVIES";
|
|
1029
|
+
readonly SPORTS: "SPORTS";
|
|
1030
|
+
readonly POLITICS: "POLITICS";
|
|
1031
|
+
readonly HEALTH: "HEALTH";
|
|
1032
|
+
readonly GAMING: "GAMING";
|
|
1033
|
+
readonly FINANCE: "FINANCE";
|
|
1034
|
+
readonly NATURE: "NATURE";
|
|
1035
|
+
readonly CONCERT: "CONCERT";
|
|
1036
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
1037
|
+
readonly WEDDING: "WEDDING";
|
|
1038
|
+
readonly CORPORATE: "CORPORATE";
|
|
1039
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
1040
|
+
readonly OTHER: "OTHER";
|
|
1041
|
+
}>;
|
|
1042
|
+
scheduledStart: z.ZodISODateTime;
|
|
1043
|
+
scheduledEnd: z.ZodISODateTime;
|
|
1044
|
+
state: z.ZodEnum<{
|
|
1045
|
+
readonly DRAFT: "DRAFT";
|
|
1046
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1047
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
1048
|
+
readonly LIVE: "LIVE";
|
|
1049
|
+
readonly ENDED: "ENDED";
|
|
1050
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
1051
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1052
|
+
readonly CANCELLED: "CANCELLED";
|
|
1053
|
+
readonly FAILED: "FAILED";
|
|
1054
|
+
}>;
|
|
1055
|
+
accessModel: z.ZodEnum<{
|
|
1056
|
+
readonly FREE: "FREE";
|
|
1057
|
+
readonly PAID: "PAID";
|
|
1058
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
1059
|
+
}>;
|
|
1060
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
1061
|
+
currency: z.ZodString;
|
|
1062
|
+
isFeatured: z.ZodBoolean;
|
|
1063
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
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">;
|
|
842
1690
|
declare const PagedEventsResponseSchema: z.ZodObject<{
|
|
843
1691
|
totalCount: z.ZodNumber;
|
|
844
1692
|
pageNumber: z.ZodNumber;
|
|
@@ -1367,5 +2215,8 @@ type HostEventWizardPatch = z.infer<typeof HostEventWizardPatchSchema>;
|
|
|
1367
2215
|
type RegisterForEventRequest = z.infer<typeof RegisterForEventRequestSchema>;
|
|
1368
2216
|
type StartViewingSessionRequest = z.infer<typeof StartViewingSessionRequestSchema>;
|
|
1369
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>;
|
|
1370
2221
|
|
|
1371
|
-
export { type AccessStarts, AccessStartsSchema, type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, 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 };
|
|
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 };
|