@livdot-tech/contracts 1.10.1 → 1.10.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.
Files changed (45) hide show
  1. package/dist/auth/index.js +1 -1
  2. package/dist/auth/index.mjs +1 -1
  3. package/dist/chunk-5MBLNDI2.mjs +2 -0
  4. package/dist/chunk-5MBLNDI2.mjs.map +1 -0
  5. package/dist/{chunk-4JPHGCGI.mjs → chunk-6CM2RFBP.mjs} +2 -2
  6. package/dist/{chunk-4JPHGCGI.mjs.map → chunk-6CM2RFBP.mjs.map} +1 -1
  7. package/dist/chunk-APICRKQV.js +2 -0
  8. package/dist/chunk-APICRKQV.js.map +1 -0
  9. package/dist/chunk-FIHIJXIM.mjs +2 -0
  10. package/dist/chunk-FIHIJXIM.mjs.map +1 -0
  11. package/dist/chunk-GYSYXIRD.js +2 -0
  12. package/dist/chunk-GYSYXIRD.js.map +1 -0
  13. package/dist/{chunk-Y3GCX2TR.js → chunk-PO2YKATC.js} +2 -2
  14. package/dist/{chunk-Y3GCX2TR.js.map → chunk-PO2YKATC.js.map} +1 -1
  15. package/dist/{chunk-EQ3TWNQ4.mjs → chunk-ZPBK5QS4.mjs} +2 -2
  16. package/dist/{chunk-EQ3TWNQ4.mjs.map → chunk-ZPBK5QS4.mjs.map} +1 -1
  17. package/dist/{chunk-ZKQRUTEW.js → chunk-ZXDNKK32.js} +2 -2
  18. package/dist/{chunk-ZKQRUTEW.js.map → chunk-ZXDNKK32.js.map} +1 -1
  19. package/dist/dispute/index.js +1 -1
  20. package/dist/dispute/index.mjs +1 -1
  21. package/dist/event/index.d.mts +65 -1
  22. package/dist/event/index.d.ts +65 -1
  23. package/dist/event/index.js +1 -1
  24. package/dist/event/index.mjs +1 -1
  25. package/dist/host/index.d.mts +136 -1
  26. package/dist/host/index.d.ts +136 -1
  27. package/dist/host/index.js +1 -1
  28. package/dist/host/index.mjs +1 -1
  29. package/dist/index.d.mts +2 -2
  30. package/dist/index.d.ts +2 -2
  31. package/dist/index.js +1 -1
  32. package/dist/index.mjs +1 -1
  33. package/dist/payment/index.js +1 -1
  34. package/dist/payment/index.mjs +1 -1
  35. package/dist/user/index.js +1 -1
  36. package/dist/user/index.mjs +1 -1
  37. package/package.json +1 -1
  38. package/dist/chunk-7BM7S4JR.mjs +0 -2
  39. package/dist/chunk-7BM7S4JR.mjs.map +0 -1
  40. package/dist/chunk-JWA3K4Z7.mjs +0 -2
  41. package/dist/chunk-JWA3K4Z7.mjs.map +0 -1
  42. package/dist/chunk-MPHWRG3V.js +0 -2
  43. package/dist/chunk-MPHWRG3V.js.map +0 -1
  44. package/dist/chunk-QVP3RJFZ.js +0 -2
  45. package/dist/chunk-QVP3RJFZ.js.map +0 -1
@@ -2155,6 +2155,18 @@ declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
2155
2155
  netMinor: z.ZodString;
2156
2156
  availableMinor: z.ZodString;
2157
2157
  pendingMinor: z.ZodString;
2158
+ ticketsSold: z.ZodNumber;
2159
+ avgTicketPriceMinor: z.ZodString;
2160
+ previousPeriodDelta: z.ZodObject<{
2161
+ percentage: z.ZodNullable<z.ZodNumber>;
2162
+ currency: z.ZodString;
2163
+ grossMinor: z.ZodString;
2164
+ }, z.core.$strip>;
2165
+ revenueSplit: z.ZodObject<{
2166
+ hostShareMinor: z.ZodString;
2167
+ platformFeeMinor: z.ZodString;
2168
+ crewSalariesMinor: z.ZodString;
2169
+ }, z.core.$strip>;
2158
2170
  }, z.core.$strict>;
2159
2171
  declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2160
2172
  eventId: z.ZodUUID;
@@ -2165,6 +2177,12 @@ declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2165
2177
  netMinor: z.ZodString;
2166
2178
  firstActivityAt: z.ZodString;
2167
2179
  lastActivityAt: z.ZodString;
2180
+ ticketsSold: z.ZodNumber;
2181
+ status: z.ZodEnum<{
2182
+ SCHEDULED: "SCHEDULED";
2183
+ LIVE: "LIVE";
2184
+ COMPLETED: "COMPLETED";
2185
+ }>;
2168
2186
  }, z.core.$strict>;
2169
2187
  declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2170
2188
  totalCount: z.ZodNumber;
@@ -2182,6 +2200,12 @@ declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2182
2200
  netMinor: z.ZodString;
2183
2201
  firstActivityAt: z.ZodString;
2184
2202
  lastActivityAt: z.ZodString;
2203
+ ticketsSold: z.ZodNumber;
2204
+ status: z.ZodEnum<{
2205
+ SCHEDULED: "SCHEDULED";
2206
+ LIVE: "LIVE";
2207
+ COMPLETED: "COMPLETED";
2208
+ }>;
2185
2209
  }, z.core.$strict>>;
2186
2210
  }, z.core.$strict>;
2187
2211
  declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
@@ -2346,6 +2370,41 @@ declare const HostLivePreviewSchema: z.ZodObject<{
2346
2370
  token: z.ZodString;
2347
2371
  expiresAt: z.ZodISODateTime;
2348
2372
  }, z.core.$strip>;
2373
+ declare const PatchReplayPeriodRequestSchema: z.ZodObject<{
2374
+ retentionDays: z.ZodNumber;
2375
+ }, z.core.$strip>;
2376
+ declare const PatchReplayPeriodResponseSchema: z.ZodObject<{
2377
+ eventId: z.ZodUUID;
2378
+ liveEndedAt: z.ZodISODateTime;
2379
+ retentionDays: z.ZodNumber;
2380
+ replayAvailableUntil: z.ZodISODateTime;
2381
+ }, z.core.$strip>;
2382
+ declare const HostEventTicketSalesTimelineQuerySchema: z.ZodObject<{
2383
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2384
+ daily: "daily";
2385
+ }>>>;
2386
+ from: z.ZodOptional<z.ZodString>;
2387
+ to: z.ZodOptional<z.ZodString>;
2388
+ }, z.core.$strip>;
2389
+ declare const HostEventTicketSalesTimelinePointSchema: z.ZodObject<{
2390
+ date: z.ZodString;
2391
+ ticketsSold: z.ZodNumber;
2392
+ revenueMinor: z.ZodString;
2393
+ }, z.core.$strip>;
2394
+ declare const HostEventTicketSalesTimelineResponseSchema: z.ZodObject<{
2395
+ eventId: z.ZodUUID;
2396
+ granularity: z.ZodEnum<{
2397
+ daily: "daily";
2398
+ }>;
2399
+ from: z.ZodString;
2400
+ to: z.ZodString;
2401
+ currency: z.ZodString;
2402
+ points: z.ZodArray<z.ZodObject<{
2403
+ date: z.ZodString;
2404
+ ticketsSold: z.ZodNumber;
2405
+ revenueMinor: z.ZodString;
2406
+ }, z.core.$strip>>;
2407
+ }, z.core.$strip>;
2349
2408
 
2350
2409
  type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
2351
2410
  type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
@@ -2388,5 +2447,10 @@ type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownRespons
2388
2447
  type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
2389
2448
  type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
2390
2449
  type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
2450
+ type PatchReplayPeriodRequest = z.infer<typeof PatchReplayPeriodRequestSchema>;
2451
+ type PatchReplayPeriodResponse = z.infer<typeof PatchReplayPeriodResponseSchema>;
2452
+ type HostEventTicketSalesTimeline = z.infer<typeof HostEventTicketSalesTimelineQuerySchema>;
2453
+ type HostEventTicketSalesTimelineResponse = z.infer<typeof HostEventTicketSalesTimelineResponseSchema>;
2454
+ type HostEventTicketSalesTimelinePoint = z.infer<typeof HostEventTicketSalesTimelinePointSchema>;
2391
2455
 
2392
- export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, 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 };
2456
+ export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventTicketSalesTimeline, type HostEventTicketSalesTimelinePoint, HostEventTicketSalesTimelinePointSchema, HostEventTicketSalesTimelineQuerySchema, type HostEventTicketSalesTimelineResponse, HostEventTicketSalesTimelineResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchReplayPeriodRequest, PatchReplayPeriodRequestSchema, type PatchReplayPeriodResponse, PatchReplayPeriodResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, 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 };
@@ -2155,6 +2155,18 @@ declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
2155
2155
  netMinor: z.ZodString;
2156
2156
  availableMinor: z.ZodString;
2157
2157
  pendingMinor: z.ZodString;
2158
+ ticketsSold: z.ZodNumber;
2159
+ avgTicketPriceMinor: z.ZodString;
2160
+ previousPeriodDelta: z.ZodObject<{
2161
+ percentage: z.ZodNullable<z.ZodNumber>;
2162
+ currency: z.ZodString;
2163
+ grossMinor: z.ZodString;
2164
+ }, z.core.$strip>;
2165
+ revenueSplit: z.ZodObject<{
2166
+ hostShareMinor: z.ZodString;
2167
+ platformFeeMinor: z.ZodString;
2168
+ crewSalariesMinor: z.ZodString;
2169
+ }, z.core.$strip>;
2158
2170
  }, z.core.$strict>;
2159
2171
  declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2160
2172
  eventId: z.ZodUUID;
@@ -2165,6 +2177,12 @@ declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2165
2177
  netMinor: z.ZodString;
2166
2178
  firstActivityAt: z.ZodString;
2167
2179
  lastActivityAt: z.ZodString;
2180
+ ticketsSold: z.ZodNumber;
2181
+ status: z.ZodEnum<{
2182
+ SCHEDULED: "SCHEDULED";
2183
+ LIVE: "LIVE";
2184
+ COMPLETED: "COMPLETED";
2185
+ }>;
2168
2186
  }, z.core.$strict>;
2169
2187
  declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2170
2188
  totalCount: z.ZodNumber;
@@ -2182,6 +2200,12 @@ declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2182
2200
  netMinor: z.ZodString;
2183
2201
  firstActivityAt: z.ZodString;
2184
2202
  lastActivityAt: z.ZodString;
2203
+ ticketsSold: z.ZodNumber;
2204
+ status: z.ZodEnum<{
2205
+ SCHEDULED: "SCHEDULED";
2206
+ LIVE: "LIVE";
2207
+ COMPLETED: "COMPLETED";
2208
+ }>;
2185
2209
  }, z.core.$strict>>;
2186
2210
  }, z.core.$strict>;
2187
2211
  declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
@@ -2346,6 +2370,41 @@ declare const HostLivePreviewSchema: z.ZodObject<{
2346
2370
  token: z.ZodString;
2347
2371
  expiresAt: z.ZodISODateTime;
2348
2372
  }, z.core.$strip>;
2373
+ declare const PatchReplayPeriodRequestSchema: z.ZodObject<{
2374
+ retentionDays: z.ZodNumber;
2375
+ }, z.core.$strip>;
2376
+ declare const PatchReplayPeriodResponseSchema: z.ZodObject<{
2377
+ eventId: z.ZodUUID;
2378
+ liveEndedAt: z.ZodISODateTime;
2379
+ retentionDays: z.ZodNumber;
2380
+ replayAvailableUntil: z.ZodISODateTime;
2381
+ }, z.core.$strip>;
2382
+ declare const HostEventTicketSalesTimelineQuerySchema: z.ZodObject<{
2383
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2384
+ daily: "daily";
2385
+ }>>>;
2386
+ from: z.ZodOptional<z.ZodString>;
2387
+ to: z.ZodOptional<z.ZodString>;
2388
+ }, z.core.$strip>;
2389
+ declare const HostEventTicketSalesTimelinePointSchema: z.ZodObject<{
2390
+ date: z.ZodString;
2391
+ ticketsSold: z.ZodNumber;
2392
+ revenueMinor: z.ZodString;
2393
+ }, z.core.$strip>;
2394
+ declare const HostEventTicketSalesTimelineResponseSchema: z.ZodObject<{
2395
+ eventId: z.ZodUUID;
2396
+ granularity: z.ZodEnum<{
2397
+ daily: "daily";
2398
+ }>;
2399
+ from: z.ZodString;
2400
+ to: z.ZodString;
2401
+ currency: z.ZodString;
2402
+ points: z.ZodArray<z.ZodObject<{
2403
+ date: z.ZodString;
2404
+ ticketsSold: z.ZodNumber;
2405
+ revenueMinor: z.ZodString;
2406
+ }, z.core.$strip>>;
2407
+ }, z.core.$strip>;
2349
2408
 
2350
2409
  type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
2351
2410
  type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
@@ -2388,5 +2447,10 @@ type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownRespons
2388
2447
  type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
2389
2448
  type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
2390
2449
  type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
2450
+ type PatchReplayPeriodRequest = z.infer<typeof PatchReplayPeriodRequestSchema>;
2451
+ type PatchReplayPeriodResponse = z.infer<typeof PatchReplayPeriodResponseSchema>;
2452
+ type HostEventTicketSalesTimeline = z.infer<typeof HostEventTicketSalesTimelineQuerySchema>;
2453
+ type HostEventTicketSalesTimelineResponse = z.infer<typeof HostEventTicketSalesTimelineResponseSchema>;
2454
+ type HostEventTicketSalesTimelinePoint = z.infer<typeof HostEventTicketSalesTimelinePointSchema>;
2391
2455
 
2392
- export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, 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 };
2456
+ export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventTicketSalesTimeline, type HostEventTicketSalesTimelinePoint, HostEventTicketSalesTimelinePointSchema, HostEventTicketSalesTimelineQuerySchema, type HostEventTicketSalesTimelineResponse, HostEventTicketSalesTimelineResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchReplayPeriodRequest, PatchReplayPeriodRequestSchema, type PatchReplayPeriodResponse, PatchReplayPeriodResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, 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 };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkQVP3RJFZ_js=require('../chunk-QVP3RJFZ.js');require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.oa}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.R}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.na}});Object.defineProperty(exports,"DiscoverAggregateResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Y}});Object.defineProperty(exports,"DiscoverEvents",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.k}});Object.defineProperty(exports,"DiscoverResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js._}});Object.defineProperty(exports,"DiscoverSectionResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Z}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.la}});Object.defineProperty(exports,"EntitlementKind",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.n}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.e}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.T}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.V}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.g}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.U}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.f}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.b}});Object.defineProperty(exports,"HostEarningsBreakdownItemSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.xa}});Object.defineProperty(exports,"HostEarningsBreakdownQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ua}});Object.defineProperty(exports,"HostEarningsBreakdownResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ya}});Object.defineProperty(exports,"HostEarningsSummaryQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ta}});Object.defineProperty(exports,"HostEarningsSummaryResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.wa}});Object.defineProperty(exports,"HostEarningsTimeseriesPointSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.za}});Object.defineProperty(exports,"HostEarningsTimeseriesQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.va}});Object.defineProperty(exports,"HostEarningsTimeseriesResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Aa}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.sa}});Object.defineProperty(exports,"HostLivePreviewSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Fa}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.da}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ga}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ia}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ha}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.l}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.$}});Object.defineProperty(exports,"PatchStreamControlRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ra}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.fa}});Object.defineProperty(exports,"PublicEventCardSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Ca}});Object.defineProperty(exports,"PublicEventStatusSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Ba}});Object.defineProperty(exports,"PublicEventsQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Da}});Object.defineProperty(exports,"PublicEventsResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.Ea}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.aa}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ba}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.i}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.h}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ea}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ma}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.X}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.qa}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ja}});Object.defineProperty(exports,"SupportedCurrency",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.m}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.S}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ca}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.W}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.j}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.ka}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkQVP3RJFZ_js.pa}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkAPICRKQV_js=require('../chunk-APICRKQV.js');require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.oa}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.R}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.na}});Object.defineProperty(exports,"DiscoverAggregateResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Y}});Object.defineProperty(exports,"DiscoverEvents",{enumerable:true,get:function(){return chunkAPICRKQV_js.k}});Object.defineProperty(exports,"DiscoverResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js._}});Object.defineProperty(exports,"DiscoverSectionResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Z}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.la}});Object.defineProperty(exports,"EntitlementKind",{enumerable:true,get:function(){return chunkAPICRKQV_js.n}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkAPICRKQV_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkAPICRKQV_js.e}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.T}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.V}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkAPICRKQV_js.g}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkAPICRKQV_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkAPICRKQV_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.U}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkAPICRKQV_js.f}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkAPICRKQV_js.b}});Object.defineProperty(exports,"HostEarningsBreakdownItemSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.xa}});Object.defineProperty(exports,"HostEarningsBreakdownQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ua}});Object.defineProperty(exports,"HostEarningsBreakdownResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ya}});Object.defineProperty(exports,"HostEarningsSummaryQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ta}});Object.defineProperty(exports,"HostEarningsSummaryResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.wa}});Object.defineProperty(exports,"HostEarningsTimeseriesPointSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.za}});Object.defineProperty(exports,"HostEarningsTimeseriesQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.va}});Object.defineProperty(exports,"HostEarningsTimeseriesResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Aa}});Object.defineProperty(exports,"HostEventTicketSalesTimelinePointSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ja}});Object.defineProperty(exports,"HostEventTicketSalesTimelineQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ia}});Object.defineProperty(exports,"HostEventTicketSalesTimelineResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ka}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.sa}});Object.defineProperty(exports,"HostLivePreviewSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Fa}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.da}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ga}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ia}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ha}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.l}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.$}});Object.defineProperty(exports,"PatchReplayPeriodRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ga}});Object.defineProperty(exports,"PatchReplayPeriodResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ha}});Object.defineProperty(exports,"PatchStreamControlRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ra}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.fa}});Object.defineProperty(exports,"PublicEventCardSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ca}});Object.defineProperty(exports,"PublicEventStatusSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ba}});Object.defineProperty(exports,"PublicEventsQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Da}});Object.defineProperty(exports,"PublicEventsResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.Ea}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.aa}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ba}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkAPICRKQV_js.i}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkAPICRKQV_js.h}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ea}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ma}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.X}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.qa}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ja}});Object.defineProperty(exports,"SupportedCurrency",{enumerable:true,get:function(){return chunkAPICRKQV_js.m}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.S}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ca}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.W}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkAPICRKQV_js.j}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.ka}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkAPICRKQV_js.pa}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{oa as CategorySchema,R as CreateEventRequestSchema,na as CurrencySchema,Y as DiscoverAggregateResponseSchema,k as DiscoverEvents,_ as DiscoverResponseSchema,Z as DiscoverSectionResponseSchema,la as EndViewingSessionResponseSchema,n as EntitlementKind,c as EventAccessModel,e as EventAllowListType,T as EventCardCtaSchema,V as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,U as EventResponseSchema,f as EventState,b as EventVisibility,xa as HostEarningsBreakdownItemSchema,ua as HostEarningsBreakdownQuerySchema,ya as HostEarningsBreakdownResponseSchema,ta as HostEarningsSummaryQuerySchema,wa as HostEarningsSummaryResponseSchema,za as HostEarningsTimeseriesPointSchema,va as HostEarningsTimeseriesQuerySchema,Aa as HostEarningsTimeseriesResponseSchema,sa as HostEventWizardPatchSchema,Fa as HostLivePreviewSchema,da as LivePlaybackSchema,ga as MyEventCardSchema,ia as MyEventsQuerySchema,ha as MyEventsResponseSchema,l as MyEventsTabSchema,$ as PagedEventsResponseSchema,ra as PatchStreamControlRequestSchema,fa as PlaybackResponseSchema,Ca as PublicEventCardSchema,Ba as PublicEventStatusSchema,Da as PublicEventsQuerySchema,Ea as PublicEventsResponseSchema,aa as RegisterForEventRequestSchema,ba as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,ea as ReplayPlaybackSchema,ma as ReplaySchema,X as SearchEventsQuerySchema,qa as StartViewingSessionRequestSchema,ja as StartViewingSessionResponseSchema,m as SupportedCurrency,S as UpdateEventRequestSchema,ca as UpdateWatchProgressRequestSchema,W as ViewerHomeResponseSchema,j as ViewerRegistrationView,ka as ViewingSessionHeartbeatResponseSchema,pa as VisibilitySchema}from'../chunk-7BM7S4JR.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{oa as CategorySchema,R as CreateEventRequestSchema,na as CurrencySchema,Y as DiscoverAggregateResponseSchema,k as DiscoverEvents,_ as DiscoverResponseSchema,Z as DiscoverSectionResponseSchema,la as EndViewingSessionResponseSchema,n as EntitlementKind,c as EventAccessModel,e as EventAllowListType,T as EventCardCtaSchema,V as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,U as EventResponseSchema,f as EventState,b as EventVisibility,xa as HostEarningsBreakdownItemSchema,ua as HostEarningsBreakdownQuerySchema,ya as HostEarningsBreakdownResponseSchema,ta as HostEarningsSummaryQuerySchema,wa as HostEarningsSummaryResponseSchema,za as HostEarningsTimeseriesPointSchema,va as HostEarningsTimeseriesQuerySchema,Aa as HostEarningsTimeseriesResponseSchema,Ja as HostEventTicketSalesTimelinePointSchema,Ia as HostEventTicketSalesTimelineQuerySchema,Ka as HostEventTicketSalesTimelineResponseSchema,sa as HostEventWizardPatchSchema,Fa as HostLivePreviewSchema,da as LivePlaybackSchema,ga as MyEventCardSchema,ia as MyEventsQuerySchema,ha as MyEventsResponseSchema,l as MyEventsTabSchema,$ as PagedEventsResponseSchema,Ga as PatchReplayPeriodRequestSchema,Ha as PatchReplayPeriodResponseSchema,ra as PatchStreamControlRequestSchema,fa as PlaybackResponseSchema,Ca as PublicEventCardSchema,Ba as PublicEventStatusSchema,Da as PublicEventsQuerySchema,Ea as PublicEventsResponseSchema,aa as RegisterForEventRequestSchema,ba as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,ea as ReplayPlaybackSchema,ma as ReplaySchema,X as SearchEventsQuerySchema,qa as StartViewingSessionRequestSchema,ja as StartViewingSessionResponseSchema,m as SupportedCurrency,S as UpdateEventRequestSchema,ca as UpdateWatchProgressRequestSchema,W as ViewerHomeResponseSchema,j as ViewerRegistrationView,ka as ViewingSessionHeartbeatResponseSchema,pa as VisibilitySchema}from'../chunk-FIHIJXIM.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -590,6 +590,68 @@ declare const HostProductionCrewItemSchema: z.ZodObject<{
590
590
  eventId: z.ZodUUID;
591
591
  eventTitle: z.ZodString;
592
592
  }, z.core.$strip>;
593
+ declare const HostEventAudienceResponseSchema: z.ZodObject<{
594
+ eventId: z.ZodUUID;
595
+ totalViewers: z.ZodNumber;
596
+ uniqueViewers: z.ZodNumber;
597
+ peakConcurrent: z.ZodNumber;
598
+ registeredCount: z.ZodNumber;
599
+ paidCount: z.ZodNumber;
600
+ refundedCount: z.ZodNumber;
601
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
602
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
603
+ grossRevenueMinor: z.ZodString;
604
+ currency: z.ZodString;
605
+ computedAt: z.ZodISODateTime;
606
+ }, z.core.$strip>;
607
+ declare const HostEventReplayPerformanceResponseSchema: z.ZodObject<{
608
+ eventId: z.ZodUUID;
609
+ totalReplayViewers: z.ZodNumber;
610
+ completedViews: z.ZodNumber;
611
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
612
+ totalWatchTimeSec: z.ZodNumber;
613
+ activeReplayPurchases: z.ZodNumber;
614
+ replayRevenueMinor: z.ZodString;
615
+ currency: z.ZodString;
616
+ computedAt: z.ZodISODateTime;
617
+ points: z.ZodArray<z.ZodObject<{
618
+ date: z.ZodString;
619
+ viewsCount: z.ZodNumber;
620
+ revenueMinor: z.ZodString;
621
+ }, z.core.$strip>>;
622
+ }, z.core.$strip>;
623
+ declare const HostEventDashboardPostEventBlockSchema: z.ZodObject<{
624
+ audience: z.ZodNullable<z.ZodObject<{
625
+ eventId: z.ZodUUID;
626
+ totalViewers: z.ZodNumber;
627
+ uniqueViewers: z.ZodNumber;
628
+ peakConcurrent: z.ZodNumber;
629
+ registeredCount: z.ZodNumber;
630
+ paidCount: z.ZodNumber;
631
+ refundedCount: z.ZodNumber;
632
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
633
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
634
+ grossRevenueMinor: z.ZodString;
635
+ currency: z.ZodString;
636
+ computedAt: z.ZodISODateTime;
637
+ }, z.core.$strip>>;
638
+ replayPerformance: z.ZodNullable<z.ZodObject<{
639
+ eventId: z.ZodUUID;
640
+ totalReplayViewers: z.ZodNumber;
641
+ completedViews: z.ZodNumber;
642
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
643
+ totalWatchTimeSec: z.ZodNumber;
644
+ activeReplayPurchases: z.ZodNumber;
645
+ replayRevenueMinor: z.ZodString;
646
+ currency: z.ZodString;
647
+ computedAt: z.ZodISODateTime;
648
+ points: z.ZodArray<z.ZodObject<{
649
+ date: z.ZodString;
650
+ viewsCount: z.ZodNumber;
651
+ revenueMinor: z.ZodString;
652
+ }, z.core.$strip>>;
653
+ }, z.core.$strip>>;
654
+ }, z.core.$strip>;
593
655
  declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
594
656
  totalCount: z.ZodNumber;
595
657
  pageNumber: z.ZodNumber;
@@ -741,6 +803,38 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
741
803
  shareableUrl: z.ZodString;
742
804
  slug: z.ZodString;
743
805
  }, z.core.$strip>;
806
+ postEvent: z.ZodNullable<z.ZodObject<{
807
+ audience: z.ZodNullable<z.ZodObject<{
808
+ eventId: z.ZodUUID;
809
+ totalViewers: z.ZodNumber;
810
+ uniqueViewers: z.ZodNumber;
811
+ peakConcurrent: z.ZodNumber;
812
+ registeredCount: z.ZodNumber;
813
+ paidCount: z.ZodNumber;
814
+ refundedCount: z.ZodNumber;
815
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
816
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
817
+ grossRevenueMinor: z.ZodString;
818
+ currency: z.ZodString;
819
+ computedAt: z.ZodISODateTime;
820
+ }, z.core.$strip>>;
821
+ replayPerformance: z.ZodNullable<z.ZodObject<{
822
+ eventId: z.ZodUUID;
823
+ totalReplayViewers: z.ZodNumber;
824
+ completedViews: z.ZodNumber;
825
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
826
+ totalWatchTimeSec: z.ZodNumber;
827
+ activeReplayPurchases: z.ZodNumber;
828
+ replayRevenueMinor: z.ZodString;
829
+ currency: z.ZodString;
830
+ computedAt: z.ZodISODateTime;
831
+ points: z.ZodArray<z.ZodObject<{
832
+ date: z.ZodString;
833
+ viewsCount: z.ZodNumber;
834
+ revenueMinor: z.ZodString;
835
+ }, z.core.$strip>>;
836
+ }, z.core.$strip>>;
837
+ }, z.core.$strip>>;
744
838
  }, z.core.$strip>;
745
839
  declare const HostEventReadinessResponseSchema: z.ZodObject<{
746
840
  progress: z.ZodNumber;
@@ -1049,6 +1143,42 @@ declare const HostLiveConsolePayloadSchema: z.ZodObject<{
1049
1143
  expiresAt: z.ZodISODateTime;
1050
1144
  }, z.core.$strip>>;
1051
1145
  }, z.core.$strip>;
1146
+ declare const HostEventEngagementTimelineQuerySchema: z.ZodObject<{
1147
+ from: z.ZodOptional<z.ZodISODateTime>;
1148
+ to: z.ZodOptional<z.ZodISODateTime>;
1149
+ }, z.core.$strip>;
1150
+ declare const HostEventEngagementTimelineBucketSchema: z.ZodObject<{
1151
+ bucketStart: z.ZodISODateTime;
1152
+ concurrentViewers: z.ZodNumber;
1153
+ chatMessages: z.ZodNullable<z.ZodNumber>;
1154
+ reactions: z.ZodNullable<z.ZodNumber>;
1155
+ bitrateKbps: z.ZodNullable<z.ZodNumber>;
1156
+ ingestHealth: z.ZodNullable<z.ZodEnum<{
1157
+ HEALTHY: "HEALTHY";
1158
+ DEGRADED: "DEGRADED";
1159
+ INGEST_DOWN: "INGEST_DOWN";
1160
+ }>>;
1161
+ resolution: z.ZodNullable<z.ZodString>;
1162
+ }, z.core.$strip>;
1163
+ declare const HostEventEngagementTimelineResponseSchema: z.ZodObject<{
1164
+ eventId: z.ZodUUID;
1165
+ from: z.ZodISODateTime;
1166
+ to: z.ZodISODateTime;
1167
+ granularity: z.ZodLiteral<"minute">;
1168
+ buckets: z.ZodArray<z.ZodObject<{
1169
+ bucketStart: z.ZodISODateTime;
1170
+ concurrentViewers: z.ZodNumber;
1171
+ chatMessages: z.ZodNullable<z.ZodNumber>;
1172
+ reactions: z.ZodNullable<z.ZodNumber>;
1173
+ bitrateKbps: z.ZodNullable<z.ZodNumber>;
1174
+ ingestHealth: z.ZodNullable<z.ZodEnum<{
1175
+ HEALTHY: "HEALTHY";
1176
+ DEGRADED: "DEGRADED";
1177
+ INGEST_DOWN: "INGEST_DOWN";
1178
+ }>>;
1179
+ resolution: z.ZodNullable<z.ZodString>;
1180
+ }, z.core.$strip>>;
1181
+ }, z.core.$strip>;
1052
1182
 
1053
1183
  type HostEventsTab = z.infer<typeof HostEventsTabSchema>;
1054
1184
  type HostOverviewQuery = z.infer<typeof HostOverviewQuerySchema>;
@@ -1103,5 +1233,10 @@ type HostLiveConsoleAlert = z.infer<typeof HostLiveConsoleAlertSchema>;
1103
1233
  type HostLiveConsoleChat = z.infer<typeof HostLiveConsoleChatSchema>;
1104
1234
  type HostLiveConsoleEnded = z.infer<typeof HostLiveConsoleEndedSchema>;
1105
1235
  type HostLiveConsolePayload = z.infer<typeof HostLiveConsolePayloadSchema>;
1236
+ type HostEventAudienceResponse = z.infer<typeof HostEventAudienceResponseSchema>;
1237
+ type HostEventEngagementTimeline = z.infer<typeof HostEventEngagementTimelineQuerySchema>;
1238
+ type HostEventReplayPerformanceResponse = z.infer<typeof HostEventReplayPerformanceResponseSchema>;
1239
+ type HostEventEngagementTimelineResponse = z.infer<typeof HostEventEngagementTimelineResponseSchema>;
1240
+ type HostEventEngagementTimelineBucket = z.infer<typeof HostEventEngagementTimelineBucketSchema>;
1106
1241
 
1107
- export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
1242
+ export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventAudienceResponse, HostEventAudienceResponseSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, HostEventDashboardPostEventBlockSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventEngagementTimeline, type HostEventEngagementTimelineBucket, HostEventEngagementTimelineBucketSchema, HostEventEngagementTimelineQuerySchema, type HostEventEngagementTimelineResponse, HostEventEngagementTimelineResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventReplayPerformanceResponse, HostEventReplayPerformanceResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
@@ -590,6 +590,68 @@ declare const HostProductionCrewItemSchema: z.ZodObject<{
590
590
  eventId: z.ZodUUID;
591
591
  eventTitle: z.ZodString;
592
592
  }, z.core.$strip>;
593
+ declare const HostEventAudienceResponseSchema: z.ZodObject<{
594
+ eventId: z.ZodUUID;
595
+ totalViewers: z.ZodNumber;
596
+ uniqueViewers: z.ZodNumber;
597
+ peakConcurrent: z.ZodNumber;
598
+ registeredCount: z.ZodNumber;
599
+ paidCount: z.ZodNumber;
600
+ refundedCount: z.ZodNumber;
601
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
602
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
603
+ grossRevenueMinor: z.ZodString;
604
+ currency: z.ZodString;
605
+ computedAt: z.ZodISODateTime;
606
+ }, z.core.$strip>;
607
+ declare const HostEventReplayPerformanceResponseSchema: z.ZodObject<{
608
+ eventId: z.ZodUUID;
609
+ totalReplayViewers: z.ZodNumber;
610
+ completedViews: z.ZodNumber;
611
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
612
+ totalWatchTimeSec: z.ZodNumber;
613
+ activeReplayPurchases: z.ZodNumber;
614
+ replayRevenueMinor: z.ZodString;
615
+ currency: z.ZodString;
616
+ computedAt: z.ZodISODateTime;
617
+ points: z.ZodArray<z.ZodObject<{
618
+ date: z.ZodString;
619
+ viewsCount: z.ZodNumber;
620
+ revenueMinor: z.ZodString;
621
+ }, z.core.$strip>>;
622
+ }, z.core.$strip>;
623
+ declare const HostEventDashboardPostEventBlockSchema: z.ZodObject<{
624
+ audience: z.ZodNullable<z.ZodObject<{
625
+ eventId: z.ZodUUID;
626
+ totalViewers: z.ZodNumber;
627
+ uniqueViewers: z.ZodNumber;
628
+ peakConcurrent: z.ZodNumber;
629
+ registeredCount: z.ZodNumber;
630
+ paidCount: z.ZodNumber;
631
+ refundedCount: z.ZodNumber;
632
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
633
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
634
+ grossRevenueMinor: z.ZodString;
635
+ currency: z.ZodString;
636
+ computedAt: z.ZodISODateTime;
637
+ }, z.core.$strip>>;
638
+ replayPerformance: z.ZodNullable<z.ZodObject<{
639
+ eventId: z.ZodUUID;
640
+ totalReplayViewers: z.ZodNumber;
641
+ completedViews: z.ZodNumber;
642
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
643
+ totalWatchTimeSec: z.ZodNumber;
644
+ activeReplayPurchases: z.ZodNumber;
645
+ replayRevenueMinor: z.ZodString;
646
+ currency: z.ZodString;
647
+ computedAt: z.ZodISODateTime;
648
+ points: z.ZodArray<z.ZodObject<{
649
+ date: z.ZodString;
650
+ viewsCount: z.ZodNumber;
651
+ revenueMinor: z.ZodString;
652
+ }, z.core.$strip>>;
653
+ }, z.core.$strip>>;
654
+ }, z.core.$strip>;
593
655
  declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
594
656
  totalCount: z.ZodNumber;
595
657
  pageNumber: z.ZodNumber;
@@ -741,6 +803,38 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
741
803
  shareableUrl: z.ZodString;
742
804
  slug: z.ZodString;
743
805
  }, z.core.$strip>;
806
+ postEvent: z.ZodNullable<z.ZodObject<{
807
+ audience: z.ZodNullable<z.ZodObject<{
808
+ eventId: z.ZodUUID;
809
+ totalViewers: z.ZodNumber;
810
+ uniqueViewers: z.ZodNumber;
811
+ peakConcurrent: z.ZodNumber;
812
+ registeredCount: z.ZodNumber;
813
+ paidCount: z.ZodNumber;
814
+ refundedCount: z.ZodNumber;
815
+ returningViewerCount: z.ZodNullable<z.ZodNumber>;
816
+ highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
817
+ grossRevenueMinor: z.ZodString;
818
+ currency: z.ZodString;
819
+ computedAt: z.ZodISODateTime;
820
+ }, z.core.$strip>>;
821
+ replayPerformance: z.ZodNullable<z.ZodObject<{
822
+ eventId: z.ZodUUID;
823
+ totalReplayViewers: z.ZodNumber;
824
+ completedViews: z.ZodNumber;
825
+ avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
826
+ totalWatchTimeSec: z.ZodNumber;
827
+ activeReplayPurchases: z.ZodNumber;
828
+ replayRevenueMinor: z.ZodString;
829
+ currency: z.ZodString;
830
+ computedAt: z.ZodISODateTime;
831
+ points: z.ZodArray<z.ZodObject<{
832
+ date: z.ZodString;
833
+ viewsCount: z.ZodNumber;
834
+ revenueMinor: z.ZodString;
835
+ }, z.core.$strip>>;
836
+ }, z.core.$strip>>;
837
+ }, z.core.$strip>>;
744
838
  }, z.core.$strip>;
745
839
  declare const HostEventReadinessResponseSchema: z.ZodObject<{
746
840
  progress: z.ZodNumber;
@@ -1049,6 +1143,42 @@ declare const HostLiveConsolePayloadSchema: z.ZodObject<{
1049
1143
  expiresAt: z.ZodISODateTime;
1050
1144
  }, z.core.$strip>>;
1051
1145
  }, z.core.$strip>;
1146
+ declare const HostEventEngagementTimelineQuerySchema: z.ZodObject<{
1147
+ from: z.ZodOptional<z.ZodISODateTime>;
1148
+ to: z.ZodOptional<z.ZodISODateTime>;
1149
+ }, z.core.$strip>;
1150
+ declare const HostEventEngagementTimelineBucketSchema: z.ZodObject<{
1151
+ bucketStart: z.ZodISODateTime;
1152
+ concurrentViewers: z.ZodNumber;
1153
+ chatMessages: z.ZodNullable<z.ZodNumber>;
1154
+ reactions: z.ZodNullable<z.ZodNumber>;
1155
+ bitrateKbps: z.ZodNullable<z.ZodNumber>;
1156
+ ingestHealth: z.ZodNullable<z.ZodEnum<{
1157
+ HEALTHY: "HEALTHY";
1158
+ DEGRADED: "DEGRADED";
1159
+ INGEST_DOWN: "INGEST_DOWN";
1160
+ }>>;
1161
+ resolution: z.ZodNullable<z.ZodString>;
1162
+ }, z.core.$strip>;
1163
+ declare const HostEventEngagementTimelineResponseSchema: z.ZodObject<{
1164
+ eventId: z.ZodUUID;
1165
+ from: z.ZodISODateTime;
1166
+ to: z.ZodISODateTime;
1167
+ granularity: z.ZodLiteral<"minute">;
1168
+ buckets: z.ZodArray<z.ZodObject<{
1169
+ bucketStart: z.ZodISODateTime;
1170
+ concurrentViewers: z.ZodNumber;
1171
+ chatMessages: z.ZodNullable<z.ZodNumber>;
1172
+ reactions: z.ZodNullable<z.ZodNumber>;
1173
+ bitrateKbps: z.ZodNullable<z.ZodNumber>;
1174
+ ingestHealth: z.ZodNullable<z.ZodEnum<{
1175
+ HEALTHY: "HEALTHY";
1176
+ DEGRADED: "DEGRADED";
1177
+ INGEST_DOWN: "INGEST_DOWN";
1178
+ }>>;
1179
+ resolution: z.ZodNullable<z.ZodString>;
1180
+ }, z.core.$strip>>;
1181
+ }, z.core.$strip>;
1052
1182
 
1053
1183
  type HostEventsTab = z.infer<typeof HostEventsTabSchema>;
1054
1184
  type HostOverviewQuery = z.infer<typeof HostOverviewQuerySchema>;
@@ -1103,5 +1233,10 @@ type HostLiveConsoleAlert = z.infer<typeof HostLiveConsoleAlertSchema>;
1103
1233
  type HostLiveConsoleChat = z.infer<typeof HostLiveConsoleChatSchema>;
1104
1234
  type HostLiveConsoleEnded = z.infer<typeof HostLiveConsoleEndedSchema>;
1105
1235
  type HostLiveConsolePayload = z.infer<typeof HostLiveConsolePayloadSchema>;
1236
+ type HostEventAudienceResponse = z.infer<typeof HostEventAudienceResponseSchema>;
1237
+ type HostEventEngagementTimeline = z.infer<typeof HostEventEngagementTimelineQuerySchema>;
1238
+ type HostEventReplayPerformanceResponse = z.infer<typeof HostEventReplayPerformanceResponseSchema>;
1239
+ type HostEventEngagementTimelineResponse = z.infer<typeof HostEventEngagementTimelineResponseSchema>;
1240
+ type HostEventEngagementTimelineBucket = z.infer<typeof HostEventEngagementTimelineBucketSchema>;
1106
1241
 
1107
- export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
1242
+ export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventAudienceResponse, HostEventAudienceResponseSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, HostEventDashboardPostEventBlockSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventEngagementTimeline, type HostEventEngagementTimelineBucket, HostEventEngagementTimelineBucketSchema, HostEventEngagementTimelineQuerySchema, type HostEventEngagementTimelineResponse, HostEventEngagementTimelineResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventReplayPerformanceResponse, HostEventReplayPerformanceResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };