@livdot-tech/contracts 1.7.2 → 1.7.3
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-SLE2EJF3.mjs → chunk-3QJRXOI3.mjs} +2 -2
- package/dist/{chunk-SLE2EJF3.mjs.map → chunk-3QJRXOI3.mjs.map} +1 -1
- package/dist/chunk-7XE6QIAT.mjs +2 -0
- package/dist/chunk-7XE6QIAT.mjs.map +1 -0
- package/dist/{chunk-Z3TBOK7O.js → chunk-CSJMT2NW.js} +2 -2
- package/dist/{chunk-Z3TBOK7O.js.map → chunk-CSJMT2NW.js.map} +1 -1
- package/dist/chunk-FXPXG3II.js +2 -0
- package/dist/chunk-FXPXG3II.js.map +1 -0
- package/dist/event/index.d.mts +172 -1
- package/dist/event/index.d.ts +172 -1
- 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 +7 -1
- package/dist/payment/index.d.ts +7 -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.mts
CHANGED
|
@@ -217,6 +217,22 @@ declare const UpdateEventRequestSchema: z.ZodObject<{
|
|
|
217
217
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
218
218
|
geoRestrictions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
219
219
|
}, z.core.$strip>;
|
|
220
|
+
declare const EventCardCtaSchema: z.ZodObject<{
|
|
221
|
+
kind: z.ZodEnum<{
|
|
222
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
223
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
224
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
225
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
226
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
227
|
+
readonly WAITLIST: "WAITLIST";
|
|
228
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
229
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
230
|
+
}>;
|
|
231
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
232
|
+
amount: z.ZodString;
|
|
233
|
+
currency: z.ZodString;
|
|
234
|
+
}, z.core.$strip>>;
|
|
235
|
+
}, z.core.$strip>;
|
|
220
236
|
declare const EventResponseSchema: z.ZodObject<{
|
|
221
237
|
id: z.ZodUUID;
|
|
222
238
|
title: z.ZodString;
|
|
@@ -346,6 +362,23 @@ declare const EventCardSchema: z.ZodObject<{
|
|
|
346
362
|
isFeatured: z.ZodBoolean;
|
|
347
363
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
348
364
|
viewerCount: z.ZodNumber;
|
|
365
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
366
|
+
kind: z.ZodEnum<{
|
|
367
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
368
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
369
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
370
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
371
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
372
|
+
readonly WAITLIST: "WAITLIST";
|
|
373
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
374
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
375
|
+
}>;
|
|
376
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
amount: z.ZodString;
|
|
378
|
+
currency: z.ZodString;
|
|
379
|
+
}, z.core.$strip>>;
|
|
380
|
+
}, z.core.$strip>>;
|
|
381
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
349
382
|
viewer: z.ZodObject<{
|
|
350
383
|
registration: z.ZodEnum<{
|
|
351
384
|
ACTIVE: string;
|
|
@@ -411,6 +444,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
411
444
|
isFeatured: z.ZodBoolean;
|
|
412
445
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
413
446
|
viewerCount: z.ZodNumber;
|
|
447
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
448
|
+
kind: z.ZodEnum<{
|
|
449
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
450
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
451
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
452
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
453
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
454
|
+
readonly WAITLIST: "WAITLIST";
|
|
455
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
456
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
457
|
+
}>;
|
|
458
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
459
|
+
amount: z.ZodString;
|
|
460
|
+
currency: z.ZodString;
|
|
461
|
+
}, z.core.$strip>>;
|
|
462
|
+
}, z.core.$strip>>;
|
|
463
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
414
464
|
viewer: z.ZodObject<{
|
|
415
465
|
registration: z.ZodEnum<{
|
|
416
466
|
ACTIVE: string;
|
|
@@ -475,6 +525,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
475
525
|
isFeatured: z.ZodBoolean;
|
|
476
526
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
477
527
|
viewerCount: z.ZodNumber;
|
|
528
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
529
|
+
kind: z.ZodEnum<{
|
|
530
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
531
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
532
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
533
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
534
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
535
|
+
readonly WAITLIST: "WAITLIST";
|
|
536
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
537
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
538
|
+
}>;
|
|
539
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
540
|
+
amount: z.ZodString;
|
|
541
|
+
currency: z.ZodString;
|
|
542
|
+
}, z.core.$strip>>;
|
|
543
|
+
}, z.core.$strip>>;
|
|
544
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
478
545
|
viewer: z.ZodObject<{
|
|
479
546
|
registration: z.ZodEnum<{
|
|
480
547
|
ACTIVE: string;
|
|
@@ -539,6 +606,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
539
606
|
isFeatured: z.ZodBoolean;
|
|
540
607
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
541
608
|
viewerCount: z.ZodNumber;
|
|
609
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
610
|
+
kind: z.ZodEnum<{
|
|
611
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
612
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
613
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
614
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
615
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
616
|
+
readonly WAITLIST: "WAITLIST";
|
|
617
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
618
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
619
|
+
}>;
|
|
620
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
621
|
+
amount: z.ZodString;
|
|
622
|
+
currency: z.ZodString;
|
|
623
|
+
}, z.core.$strip>>;
|
|
624
|
+
}, z.core.$strip>>;
|
|
625
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
542
626
|
viewer: z.ZodObject<{
|
|
543
627
|
registration: z.ZodEnum<{
|
|
544
628
|
ACTIVE: string;
|
|
@@ -603,6 +687,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
603
687
|
isFeatured: z.ZodBoolean;
|
|
604
688
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
605
689
|
viewerCount: z.ZodNumber;
|
|
690
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
691
|
+
kind: z.ZodEnum<{
|
|
692
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
693
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
694
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
695
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
696
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
697
|
+
readonly WAITLIST: "WAITLIST";
|
|
698
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
699
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
700
|
+
}>;
|
|
701
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
702
|
+
amount: z.ZodString;
|
|
703
|
+
currency: z.ZodString;
|
|
704
|
+
}, z.core.$strip>>;
|
|
705
|
+
}, z.core.$strip>>;
|
|
706
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
606
707
|
viewer: z.ZodObject<{
|
|
607
708
|
registration: z.ZodEnum<{
|
|
608
709
|
ACTIVE: string;
|
|
@@ -667,6 +768,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
667
768
|
isFeatured: z.ZodBoolean;
|
|
668
769
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
669
770
|
viewerCount: z.ZodNumber;
|
|
771
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
772
|
+
kind: z.ZodEnum<{
|
|
773
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
774
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
775
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
776
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
777
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
778
|
+
readonly WAITLIST: "WAITLIST";
|
|
779
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
780
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
781
|
+
}>;
|
|
782
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
amount: z.ZodString;
|
|
784
|
+
currency: z.ZodString;
|
|
785
|
+
}, z.core.$strip>>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
787
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
670
788
|
viewer: z.ZodObject<{
|
|
671
789
|
registration: z.ZodEnum<{
|
|
672
790
|
ACTIVE: string;
|
|
@@ -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;
|
|
@@ -895,6 +1030,23 @@ declare const MyEventCardSchema: z.ZodObject<{
|
|
|
895
1030
|
isFeatured: z.ZodBoolean;
|
|
896
1031
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
897
1032
|
viewerCount: z.ZodNumber;
|
|
1033
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1034
|
+
kind: z.ZodEnum<{
|
|
1035
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1036
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1037
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1038
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1039
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1040
|
+
readonly WAITLIST: "WAITLIST";
|
|
1041
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1042
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1043
|
+
}>;
|
|
1044
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1045
|
+
amount: z.ZodString;
|
|
1046
|
+
currency: z.ZodString;
|
|
1047
|
+
}, z.core.$strip>>;
|
|
1048
|
+
}, z.core.$strip>>;
|
|
1049
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
898
1050
|
viewer: z.ZodObject<{
|
|
899
1051
|
registration: z.ZodEnum<{
|
|
900
1052
|
ACTIVE: string;
|
|
@@ -978,6 +1130,23 @@ declare const MyEventsResponseSchema: z.ZodObject<{
|
|
|
978
1130
|
isFeatured: z.ZodBoolean;
|
|
979
1131
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
980
1132
|
viewerCount: z.ZodNumber;
|
|
1133
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1134
|
+
kind: z.ZodEnum<{
|
|
1135
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1136
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1137
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1138
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1139
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1140
|
+
readonly WAITLIST: "WAITLIST";
|
|
1141
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1142
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1143
|
+
}>;
|
|
1144
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1145
|
+
amount: z.ZodString;
|
|
1146
|
+
currency: z.ZodString;
|
|
1147
|
+
}, z.core.$strip>>;
|
|
1148
|
+
}, z.core.$strip>>;
|
|
1149
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
981
1150
|
viewer: z.ZodObject<{
|
|
982
1151
|
registration: z.ZodEnum<{
|
|
983
1152
|
ACTIVE: string;
|
|
@@ -1004,6 +1173,7 @@ declare const MyEventsQuerySchema: z.ZodObject<{
|
|
|
1004
1173
|
LIVE: string;
|
|
1005
1174
|
PAST: string;
|
|
1006
1175
|
}>;
|
|
1176
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
1007
1177
|
}, z.core.$strip>;
|
|
1008
1178
|
declare const StartViewingSessionResponseSchema: z.ZodObject<{
|
|
1009
1179
|
sessionId: z.ZodString;
|
|
@@ -1196,5 +1366,6 @@ type AccessStarts = z.infer<typeof AccessStartsSchema>;
|
|
|
1196
1366
|
type HostEventWizardPatch = z.infer<typeof HostEventWizardPatchSchema>;
|
|
1197
1367
|
type RegisterForEventRequest = z.infer<typeof RegisterForEventRequestSchema>;
|
|
1198
1368
|
type StartViewingSessionRequest = z.infer<typeof StartViewingSessionRequestSchema>;
|
|
1369
|
+
type EventCardCta = z.infer<typeof EventCardCtaSchema>;
|
|
1199
1370
|
|
|
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 };
|
|
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 };
|
package/dist/event/index.d.ts
CHANGED
|
@@ -217,6 +217,22 @@ declare const UpdateEventRequestSchema: z.ZodObject<{
|
|
|
217
217
|
tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
218
218
|
geoRestrictions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
219
219
|
}, z.core.$strip>;
|
|
220
|
+
declare const EventCardCtaSchema: z.ZodObject<{
|
|
221
|
+
kind: z.ZodEnum<{
|
|
222
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
223
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
224
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
225
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
226
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
227
|
+
readonly WAITLIST: "WAITLIST";
|
|
228
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
229
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
230
|
+
}>;
|
|
231
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
232
|
+
amount: z.ZodString;
|
|
233
|
+
currency: z.ZodString;
|
|
234
|
+
}, z.core.$strip>>;
|
|
235
|
+
}, z.core.$strip>;
|
|
220
236
|
declare const EventResponseSchema: z.ZodObject<{
|
|
221
237
|
id: z.ZodUUID;
|
|
222
238
|
title: z.ZodString;
|
|
@@ -346,6 +362,23 @@ declare const EventCardSchema: z.ZodObject<{
|
|
|
346
362
|
isFeatured: z.ZodBoolean;
|
|
347
363
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
348
364
|
viewerCount: z.ZodNumber;
|
|
365
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
366
|
+
kind: z.ZodEnum<{
|
|
367
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
368
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
369
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
370
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
371
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
372
|
+
readonly WAITLIST: "WAITLIST";
|
|
373
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
374
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
375
|
+
}>;
|
|
376
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
amount: z.ZodString;
|
|
378
|
+
currency: z.ZodString;
|
|
379
|
+
}, z.core.$strip>>;
|
|
380
|
+
}, z.core.$strip>>;
|
|
381
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
349
382
|
viewer: z.ZodObject<{
|
|
350
383
|
registration: z.ZodEnum<{
|
|
351
384
|
ACTIVE: string;
|
|
@@ -411,6 +444,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
411
444
|
isFeatured: z.ZodBoolean;
|
|
412
445
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
413
446
|
viewerCount: z.ZodNumber;
|
|
447
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
448
|
+
kind: z.ZodEnum<{
|
|
449
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
450
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
451
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
452
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
453
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
454
|
+
readonly WAITLIST: "WAITLIST";
|
|
455
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
456
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
457
|
+
}>;
|
|
458
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
459
|
+
amount: z.ZodString;
|
|
460
|
+
currency: z.ZodString;
|
|
461
|
+
}, z.core.$strip>>;
|
|
462
|
+
}, z.core.$strip>>;
|
|
463
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
414
464
|
viewer: z.ZodObject<{
|
|
415
465
|
registration: z.ZodEnum<{
|
|
416
466
|
ACTIVE: string;
|
|
@@ -475,6 +525,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
475
525
|
isFeatured: z.ZodBoolean;
|
|
476
526
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
477
527
|
viewerCount: z.ZodNumber;
|
|
528
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
529
|
+
kind: z.ZodEnum<{
|
|
530
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
531
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
532
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
533
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
534
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
535
|
+
readonly WAITLIST: "WAITLIST";
|
|
536
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
537
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
538
|
+
}>;
|
|
539
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
540
|
+
amount: z.ZodString;
|
|
541
|
+
currency: z.ZodString;
|
|
542
|
+
}, z.core.$strip>>;
|
|
543
|
+
}, z.core.$strip>>;
|
|
544
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
478
545
|
viewer: z.ZodObject<{
|
|
479
546
|
registration: z.ZodEnum<{
|
|
480
547
|
ACTIVE: string;
|
|
@@ -539,6 +606,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
539
606
|
isFeatured: z.ZodBoolean;
|
|
540
607
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
541
608
|
viewerCount: z.ZodNumber;
|
|
609
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
610
|
+
kind: z.ZodEnum<{
|
|
611
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
612
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
613
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
614
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
615
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
616
|
+
readonly WAITLIST: "WAITLIST";
|
|
617
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
618
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
619
|
+
}>;
|
|
620
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
621
|
+
amount: z.ZodString;
|
|
622
|
+
currency: z.ZodString;
|
|
623
|
+
}, z.core.$strip>>;
|
|
624
|
+
}, z.core.$strip>>;
|
|
625
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
542
626
|
viewer: z.ZodObject<{
|
|
543
627
|
registration: z.ZodEnum<{
|
|
544
628
|
ACTIVE: string;
|
|
@@ -603,6 +687,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
603
687
|
isFeatured: z.ZodBoolean;
|
|
604
688
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
605
689
|
viewerCount: z.ZodNumber;
|
|
690
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
691
|
+
kind: z.ZodEnum<{
|
|
692
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
693
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
694
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
695
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
696
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
697
|
+
readonly WAITLIST: "WAITLIST";
|
|
698
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
699
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
700
|
+
}>;
|
|
701
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
702
|
+
amount: z.ZodString;
|
|
703
|
+
currency: z.ZodString;
|
|
704
|
+
}, z.core.$strip>>;
|
|
705
|
+
}, z.core.$strip>>;
|
|
706
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
606
707
|
viewer: z.ZodObject<{
|
|
607
708
|
registration: z.ZodEnum<{
|
|
608
709
|
ACTIVE: string;
|
|
@@ -667,6 +768,23 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
667
768
|
isFeatured: z.ZodBoolean;
|
|
668
769
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
669
770
|
viewerCount: z.ZodNumber;
|
|
771
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
772
|
+
kind: z.ZodEnum<{
|
|
773
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
774
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
775
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
776
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
777
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
778
|
+
readonly WAITLIST: "WAITLIST";
|
|
779
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
780
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
781
|
+
}>;
|
|
782
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
amount: z.ZodString;
|
|
784
|
+
currency: z.ZodString;
|
|
785
|
+
}, z.core.$strip>>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
787
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
670
788
|
viewer: z.ZodObject<{
|
|
671
789
|
registration: z.ZodEnum<{
|
|
672
790
|
ACTIVE: string;
|
|
@@ -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;
|
|
@@ -895,6 +1030,23 @@ declare const MyEventCardSchema: z.ZodObject<{
|
|
|
895
1030
|
isFeatured: z.ZodBoolean;
|
|
896
1031
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
897
1032
|
viewerCount: z.ZodNumber;
|
|
1033
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1034
|
+
kind: z.ZodEnum<{
|
|
1035
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1036
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1037
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1038
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1039
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1040
|
+
readonly WAITLIST: "WAITLIST";
|
|
1041
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1042
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1043
|
+
}>;
|
|
1044
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1045
|
+
amount: z.ZodString;
|
|
1046
|
+
currency: z.ZodString;
|
|
1047
|
+
}, z.core.$strip>>;
|
|
1048
|
+
}, z.core.$strip>>;
|
|
1049
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
898
1050
|
viewer: z.ZodObject<{
|
|
899
1051
|
registration: z.ZodEnum<{
|
|
900
1052
|
ACTIVE: string;
|
|
@@ -978,6 +1130,23 @@ declare const MyEventsResponseSchema: z.ZodObject<{
|
|
|
978
1130
|
isFeatured: z.ZodBoolean;
|
|
979
1131
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
980
1132
|
viewerCount: z.ZodNumber;
|
|
1133
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
1134
|
+
kind: z.ZodEnum<{
|
|
1135
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
1136
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
1137
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
1138
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
1139
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
1140
|
+
readonly WAITLIST: "WAITLIST";
|
|
1141
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1142
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
1143
|
+
}>;
|
|
1144
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
1145
|
+
amount: z.ZodString;
|
|
1146
|
+
currency: z.ZodString;
|
|
1147
|
+
}, z.core.$strip>>;
|
|
1148
|
+
}, z.core.$strip>>;
|
|
1149
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
981
1150
|
viewer: z.ZodObject<{
|
|
982
1151
|
registration: z.ZodEnum<{
|
|
983
1152
|
ACTIVE: string;
|
|
@@ -1004,6 +1173,7 @@ declare const MyEventsQuerySchema: z.ZodObject<{
|
|
|
1004
1173
|
LIVE: string;
|
|
1005
1174
|
PAST: string;
|
|
1006
1175
|
}>;
|
|
1176
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
1007
1177
|
}, z.core.$strip>;
|
|
1008
1178
|
declare const StartViewingSessionResponseSchema: z.ZodObject<{
|
|
1009
1179
|
sessionId: z.ZodString;
|
|
@@ -1196,5 +1366,6 @@ type AccessStarts = z.infer<typeof AccessStartsSchema>;
|
|
|
1196
1366
|
type HostEventWizardPatch = z.infer<typeof HostEventWizardPatchSchema>;
|
|
1197
1367
|
type RegisterForEventRequest = z.infer<typeof RegisterForEventRequestSchema>;
|
|
1198
1368
|
type StartViewingSessionRequest = z.infer<typeof StartViewingSessionRequestSchema>;
|
|
1369
|
+
type EventCardCta = z.infer<typeof EventCardCtaSchema>;
|
|
1199
1370
|
|
|
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 };
|
|
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 };
|
package/dist/event/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkFXPXG3II_js=require('../chunk-FXPXG3II.js');require('../chunk-CXGCPE3G.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"AccessStartsSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.fa}});Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.da}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.J}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.ca}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.aa}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkFXPXG3II_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkFXPXG3II_js.e}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.L}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.N}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkFXPXG3II_js.g}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkFXPXG3II_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkFXPXG3II_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.M}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkFXPXG3II_js.f}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkFXPXG3II_js.b}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.ha}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.U}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.X}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.Z}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.Y}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.k}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.Q}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.W}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.R}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.S}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkFXPXG3II_js.i}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkFXPXG3II_js.h}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.V}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.ba}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.P}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.ga}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js._}});Object.defineProperty(exports,"SupportedCurrency",{enumerable:true,get:function(){return chunkFXPXG3II_js.l}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.K}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.T}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.O}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkFXPXG3II_js.j}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.$}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkFXPXG3II_js.ea}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/event/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{fa as AccessStartsSchema,da as CategorySchema,J as CreateEventRequestSchema,ca as CurrencySchema,aa as EndViewingSessionResponseSchema,c as EventAccessModel,e as EventAllowListType,L as EventCardCtaSchema,N as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,M as EventResponseSchema,f as EventState,b as EventVisibility,ha as HostEventWizardPatchSchema,U as LivePlaybackSchema,X as MyEventCardSchema,Z as MyEventsQuerySchema,Y as MyEventsResponseSchema,k as MyEventsTabSchema,Q as PagedEventsResponseSchema,W as PlaybackResponseSchema,R as RegisterForEventRequestSchema,S as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,V as ReplayPlaybackSchema,ba as ReplaySchema,P as SearchEventsQuerySchema,ga as StartViewingSessionRequestSchema,_ as StartViewingSessionResponseSchema,l as SupportedCurrency,K as UpdateEventRequestSchema,T as UpdateWatchProgressRequestSchema,O as ViewerHomeResponseSchema,j as ViewerRegistrationView,$ as ViewingSessionHeartbeatResponseSchema,ea as VisibilitySchema}from'../chunk-7XE6QIAT.mjs';import'../chunk-ZJMWWSHW.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { ApiError, ApiResponse, ApiResponseSchema, DEFAULT_PAGE_NUMBER, DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE, PaginatedResponse, PaginationMeta, PaginationParams, PaginationParamsSchema, PaginationResponse, PaginationResponseSchema, ResponseMessages } from './common/index.mjs';
|
|
2
2
|
export { ChangePasswordRequest, ChangePasswordRequestSchema, ConfirmPassword, ConfirmPasswordSchema, ForgotPasswordRequest, ForgotPasswordRequestSchema, ForgotPasswordResponseSchema, IdentityProvider, LinkRequiredReasonEnum, LinkRequiredResponse, LinkRequiredResponseSchema, LoginRequest, LoginRequestSchema, LoginResponse, LoginResponseSchema, LogoutRequestPayload, LogoutRequestSchema, OauthDirectTokenRequest, OauthDirectTokenRequestSchema, OauthExchangeRequest, OauthExchangeRequestSchema, OauthLinkCompleteEmailRequest, OauthLinkCompleteEmailRequestSchema, OauthLinkCompleteRequest, OauthLinkCompleteRequestSchema, OauthLinkSendOtpRequest, OauthLinkSendOtpRequestSchema, OauthLinkSendOtpResponse, OauthLinkSendOtpResponseSchema, OauthResolveKind, OauthStartQuery, OauthStartQuerySchema, OauthStartResponse, OauthStartResponseSchema, PasswordSchema, ProvidersListItem, ProvidersListItemSchema, ProvidersListResponse, ProvidersListResponseSchema, ReauthTokenResponse, ReauthTokenResponseSchema, RefreshTokenRequest, RefreshTokenRequestSchema, RegisterRequest, RegisterRequestSchema, RegisterResponsePayload, RegisterResponseSchema, ResendOtpRequestSchema, ResetPasswordRequest, ResetPasswordRequestSchema, VerifyOtpRequest, VerifyOtpRequestSchema, VerifyOtpResponseSchema } from './auth/index.mjs';
|
|
3
3
|
export { AccountStatus, AdminScopeCode, CreateHostProfileRequest, CreateHostProfileRequestSchema, CreateProducerProfileRequest, CreateProducerProfileRequestSchema, DisplayName, DisplayNameSchema, FeedbackCategory, HostProfileResponse, HostProfileResponseSchema, KycStatus, NotificationCategory, NotificationPreferenceItem, NotificationPreferenceItemSchema, NotificationPreferencesResponse, NotificationPreferencesResponseSchema, ProducerExperienceLevel, ProducerProfileResponse, ProducerProfileResponseSchema, ProducerVerificationStatus, RESERVED_DISPLAY_NAMES, SendFeedbackRequest, SendFeedbackRequestSchema, SendFeedbackResponse, SendFeedbackResponseSchema, UpdateNotificationPreferencesRequest, UpdateNotificationPreferencesRequestSchema, UpdateUserRequest, UpdateUserRequestSchema, UpdateViewerCurrencyRequest, UpdateViewerCurrencyRequestSchema, UpdateViewerProfileRequest, UpdateViewerProfileRequestSchema, UserResponse, UserResponseSchema, UserRole, ViewerMeResponse, ViewerMeResponseSchema } from './user/index.mjs';
|
|
4
|
-
export { AccessStarts, AccessStartsSchema, Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, EventResponse, EventResponseSchema, EventState, EventVisibility, HostEventWizardPatch, HostEventWizardPatchSchema, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventRequest, RegisterForEventRequestSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, Replay, ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionRequest, StartViewingSessionRequestSchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, Visibility, VisibilitySchema } from './event/index.mjs';
|
|
4
|
+
export { AccessStarts, AccessStartsSchema, Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, EventResponse, EventResponseSchema, EventState, EventVisibility, HostEventWizardPatch, HostEventWizardPatchSchema, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventRequest, RegisterForEventRequestSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, Replay, ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionRequest, StartViewingSessionRequestSchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, Visibility, VisibilitySchema } from './event/index.mjs';
|
|
5
5
|
export { BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingOrigin, BookingPaymentStatus, BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, BookingTransitionKey, CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, ConfirmBookingRequest, ConfirmBookingRequestSchema, CreateBookingRequest, CreateBookingRequestSchema, CreateJobListingRequest, CreateJobListingRequestSchema, CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, IndicationOfInterestResponse, IndicationOfInterestResponseSchema, IoiState, JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, MarketplaceBookingResponse, MarketplaceBookingResponseSchema, MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, MarketplaceHiringThread, MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, MessageDeliveryStatus, PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, SubmitIndicationOfInterestRequest, SubmitIndicationOfInterestRequestSchema, SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition } from './booking/index.mjs';
|
|
6
6
|
export { IngestCredentialsResponse, IngestCredentialsResponseSchema, IngestProtocol, PlaybackTokenResponse, PlaybackTokenResponseSchema, StreamStatus, TelemetryReportRequest, TelemetryReportRequestSchema } from './streaming/index.mjs';
|
|
7
7
|
export { AccessCheckRequest, AccessCheckRequestSchema, AccessCheckResponse, AccessCheckResponseSchema, AccessReason, CreatePurchaseResponse, CreatePurchaseResponseSchema, CtaMode, EntitlementStatus, InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PaymentStatus, PayoutResponse, PayoutResponseSchema, PayoutStatus, PaystackWebhook, PaystackWebhookSchema, PlatformChargeStatus, PricingQuoteResponse, PricingQuoteResponseSchema, PurchaseStatusResponse, PurchaseStatusResponseSchema, ReceiptUrlResponse, ReceiptUrlResponseSchema, ReplayPurchasePayment, ReplayPurchasePaymentSchema, ReplayPurchaseResponse, ReplayPurchaseResponseSchema, ReplayPurchaseRow, ReplayPurchaseRowSchema, ReplayPurchaseStatus, TransactionStatus, TransactionType, ViewerEventDetailResponseSchema } from './payment/index.mjs';
|
|
@@ -377,7 +377,11 @@ declare const HostEventFullResponseSchema: z.ZodObject<{
|
|
|
377
377
|
currency: z.ZodString;
|
|
378
378
|
maxTickets: z.ZodNullable<z.ZodNumber>;
|
|
379
379
|
allowlistData: z.ZodArray<z.ZodString>;
|
|
380
|
-
replayAccess: z.
|
|
380
|
+
replayAccess: z.ZodEnum<{
|
|
381
|
+
readonly INCLUDED: "INCLUDED";
|
|
382
|
+
readonly DISABLED: "DISABLED";
|
|
383
|
+
readonly PAID_SEPARATELY: "PAID_SEPARATELY";
|
|
384
|
+
}>;
|
|
381
385
|
replayAccessFee: z.ZodString;
|
|
382
386
|
retentionDays: z.ZodNumber;
|
|
383
387
|
replayAvailableUntil: z.ZodNullable<z.ZodString>;
|
|
@@ -415,7 +419,11 @@ declare const HostEventWizardCurrentResponseSchema: z.ZodObject<{
|
|
|
415
419
|
currency: z.ZodString;
|
|
416
420
|
maxTickets: z.ZodNullable<z.ZodNumber>;
|
|
417
421
|
allowlistData: z.ZodArray<z.ZodString>;
|
|
418
|
-
replayAccess: z.
|
|
422
|
+
replayAccess: z.ZodEnum<{
|
|
423
|
+
readonly INCLUDED: "INCLUDED";
|
|
424
|
+
readonly DISABLED: "DISABLED";
|
|
425
|
+
readonly PAID_SEPARATELY: "PAID_SEPARATELY";
|
|
426
|
+
}>;
|
|
419
427
|
replayAccessFee: z.ZodString;
|
|
420
428
|
retentionDays: z.ZodNumber;
|
|
421
429
|
replayAvailableUntil: z.ZodNullable<z.ZodString>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { ApiError, ApiResponse, ApiResponseSchema, DEFAULT_PAGE_NUMBER, DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE, PaginatedResponse, PaginationMeta, PaginationParams, PaginationParamsSchema, PaginationResponse, PaginationResponseSchema, ResponseMessages } from './common/index.js';
|
|
2
2
|
export { ChangePasswordRequest, ChangePasswordRequestSchema, ConfirmPassword, ConfirmPasswordSchema, ForgotPasswordRequest, ForgotPasswordRequestSchema, ForgotPasswordResponseSchema, IdentityProvider, LinkRequiredReasonEnum, LinkRequiredResponse, LinkRequiredResponseSchema, LoginRequest, LoginRequestSchema, LoginResponse, LoginResponseSchema, LogoutRequestPayload, LogoutRequestSchema, OauthDirectTokenRequest, OauthDirectTokenRequestSchema, OauthExchangeRequest, OauthExchangeRequestSchema, OauthLinkCompleteEmailRequest, OauthLinkCompleteEmailRequestSchema, OauthLinkCompleteRequest, OauthLinkCompleteRequestSchema, OauthLinkSendOtpRequest, OauthLinkSendOtpRequestSchema, OauthLinkSendOtpResponse, OauthLinkSendOtpResponseSchema, OauthResolveKind, OauthStartQuery, OauthStartQuerySchema, OauthStartResponse, OauthStartResponseSchema, PasswordSchema, ProvidersListItem, ProvidersListItemSchema, ProvidersListResponse, ProvidersListResponseSchema, ReauthTokenResponse, ReauthTokenResponseSchema, RefreshTokenRequest, RefreshTokenRequestSchema, RegisterRequest, RegisterRequestSchema, RegisterResponsePayload, RegisterResponseSchema, ResendOtpRequestSchema, ResetPasswordRequest, ResetPasswordRequestSchema, VerifyOtpRequest, VerifyOtpRequestSchema, VerifyOtpResponseSchema } from './auth/index.js';
|
|
3
3
|
export { AccountStatus, AdminScopeCode, CreateHostProfileRequest, CreateHostProfileRequestSchema, CreateProducerProfileRequest, CreateProducerProfileRequestSchema, DisplayName, DisplayNameSchema, FeedbackCategory, HostProfileResponse, HostProfileResponseSchema, KycStatus, NotificationCategory, NotificationPreferenceItem, NotificationPreferenceItemSchema, NotificationPreferencesResponse, NotificationPreferencesResponseSchema, ProducerExperienceLevel, ProducerProfileResponse, ProducerProfileResponseSchema, ProducerVerificationStatus, RESERVED_DISPLAY_NAMES, SendFeedbackRequest, SendFeedbackRequestSchema, SendFeedbackResponse, SendFeedbackResponseSchema, UpdateNotificationPreferencesRequest, UpdateNotificationPreferencesRequestSchema, UpdateUserRequest, UpdateUserRequestSchema, UpdateViewerCurrencyRequest, UpdateViewerCurrencyRequestSchema, UpdateViewerProfileRequest, UpdateViewerProfileRequestSchema, UserResponse, UserResponseSchema, UserRole, ViewerMeResponse, ViewerMeResponseSchema } from './user/index.js';
|
|
4
|
-
export { AccessStarts, AccessStartsSchema, Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, EventResponse, EventResponseSchema, EventState, EventVisibility, HostEventWizardPatch, HostEventWizardPatchSchema, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventRequest, RegisterForEventRequestSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, Replay, ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionRequest, StartViewingSessionRequestSchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, Visibility, VisibilitySchema } from './event/index.js';
|
|
4
|
+
export { AccessStarts, AccessStartsSchema, Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, EventResponse, EventResponseSchema, EventState, EventVisibility, HostEventWizardPatch, HostEventWizardPatchSchema, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventRequest, RegisterForEventRequestSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, Replay, ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionRequest, StartViewingSessionRequestSchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, Visibility, VisibilitySchema } from './event/index.js';
|
|
5
5
|
export { BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingOrigin, BookingPaymentStatus, BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, BookingTransitionKey, CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, ConfirmBookingRequest, ConfirmBookingRequestSchema, CreateBookingRequest, CreateBookingRequestSchema, CreateJobListingRequest, CreateJobListingRequestSchema, CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, IndicationOfInterestResponse, IndicationOfInterestResponseSchema, IoiState, JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, MarketplaceBookingResponse, MarketplaceBookingResponseSchema, MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, MarketplaceHiringThread, MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, MessageDeliveryStatus, PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, SubmitIndicationOfInterestRequest, SubmitIndicationOfInterestRequestSchema, SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition } from './booking/index.js';
|
|
6
6
|
export { IngestCredentialsResponse, IngestCredentialsResponseSchema, IngestProtocol, PlaybackTokenResponse, PlaybackTokenResponseSchema, StreamStatus, TelemetryReportRequest, TelemetryReportRequestSchema } from './streaming/index.js';
|
|
7
7
|
export { AccessCheckRequest, AccessCheckRequestSchema, AccessCheckResponse, AccessCheckResponseSchema, AccessReason, CreatePurchaseResponse, CreatePurchaseResponseSchema, CtaMode, EntitlementStatus, InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PaymentStatus, PayoutResponse, PayoutResponseSchema, PayoutStatus, PaystackWebhook, PaystackWebhookSchema, PlatformChargeStatus, PricingQuoteResponse, PricingQuoteResponseSchema, PurchaseStatusResponse, PurchaseStatusResponseSchema, ReceiptUrlResponse, ReceiptUrlResponseSchema, ReplayPurchasePayment, ReplayPurchasePaymentSchema, ReplayPurchaseResponse, ReplayPurchaseResponseSchema, ReplayPurchaseRow, ReplayPurchaseRowSchema, ReplayPurchaseStatus, TransactionStatus, TransactionType, ViewerEventDetailResponseSchema } from './payment/index.js';
|
|
@@ -377,7 +377,11 @@ declare const HostEventFullResponseSchema: z.ZodObject<{
|
|
|
377
377
|
currency: z.ZodString;
|
|
378
378
|
maxTickets: z.ZodNullable<z.ZodNumber>;
|
|
379
379
|
allowlistData: z.ZodArray<z.ZodString>;
|
|
380
|
-
replayAccess: z.
|
|
380
|
+
replayAccess: z.ZodEnum<{
|
|
381
|
+
readonly INCLUDED: "INCLUDED";
|
|
382
|
+
readonly DISABLED: "DISABLED";
|
|
383
|
+
readonly PAID_SEPARATELY: "PAID_SEPARATELY";
|
|
384
|
+
}>;
|
|
381
385
|
replayAccessFee: z.ZodString;
|
|
382
386
|
retentionDays: z.ZodNumber;
|
|
383
387
|
replayAvailableUntil: z.ZodNullable<z.ZodString>;
|
|
@@ -415,7 +419,11 @@ declare const HostEventWizardCurrentResponseSchema: z.ZodObject<{
|
|
|
415
419
|
currency: z.ZodString;
|
|
416
420
|
maxTickets: z.ZodNullable<z.ZodNumber>;
|
|
417
421
|
allowlistData: z.ZodArray<z.ZodString>;
|
|
418
|
-
replayAccess: z.
|
|
422
|
+
replayAccess: z.ZodEnum<{
|
|
423
|
+
readonly INCLUDED: "INCLUDED";
|
|
424
|
+
readonly DISABLED: "DISABLED";
|
|
425
|
+
readonly PAID_SEPARATELY: "PAID_SEPARATELY";
|
|
426
|
+
}>;
|
|
419
427
|
replayAccessFee: z.ZodString;
|
|
420
428
|
retentionDays: z.ZodNumber;
|
|
421
429
|
replayAvailableUntil: z.ZodNullable<z.ZodString>;
|