@livdot-tech/contracts 1.10.0 → 1.10.1

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 (50) hide show
  1. package/dist/auth/index.js +1 -1
  2. package/dist/auth/index.mjs +1 -1
  3. package/dist/chunk-4JPHGCGI.mjs +2 -0
  4. package/dist/chunk-4JPHGCGI.mjs.map +1 -0
  5. package/dist/chunk-7BM7S4JR.mjs +2 -0
  6. package/dist/chunk-7BM7S4JR.mjs.map +1 -0
  7. package/dist/{chunk-SBW5M7B2.mjs → chunk-EQ3TWNQ4.mjs} +2 -2
  8. package/dist/{chunk-SBW5M7B2.mjs.map → chunk-EQ3TWNQ4.mjs.map} +1 -1
  9. package/dist/chunk-JWA3K4Z7.mjs +2 -0
  10. package/dist/chunk-JWA3K4Z7.mjs.map +1 -0
  11. package/dist/{chunk-CBZZPBHD.js → chunk-MPHWRG3V.js} +2 -2
  12. package/dist/chunk-MPHWRG3V.js.map +1 -0
  13. package/dist/chunk-QVP3RJFZ.js +2 -0
  14. package/dist/chunk-QVP3RJFZ.js.map +1 -0
  15. package/dist/{chunk-H2WMLOCH.js → chunk-Y3GCX2TR.js} +2 -2
  16. package/dist/{chunk-H2WMLOCH.js.map → chunk-Y3GCX2TR.js.map} +1 -1
  17. package/dist/chunk-ZKQRUTEW.js +2 -0
  18. package/dist/chunk-ZKQRUTEW.js.map +1 -0
  19. package/dist/dispute/index.d.mts +135 -1
  20. package/dist/dispute/index.d.ts +135 -1
  21. package/dist/dispute/index.js +1 -1
  22. package/dist/dispute/index.mjs +1 -1
  23. package/dist/event/index.d.mts +99 -1
  24. package/dist/event/index.d.ts +99 -1
  25. package/dist/event/index.js +1 -1
  26. package/dist/event/index.mjs +1 -1
  27. package/dist/host/index.d.mts +5 -0
  28. package/dist/host/index.d.ts +5 -0
  29. package/dist/host/index.js +1 -1
  30. package/dist/host/index.mjs +1 -1
  31. package/dist/index.d.mts +2 -2
  32. package/dist/index.d.ts +2 -2
  33. package/dist/index.js +1 -1
  34. package/dist/index.mjs +1 -1
  35. package/dist/payment/index.js +1 -1
  36. package/dist/payment/index.mjs +1 -1
  37. package/dist/user/index.js +1 -1
  38. package/dist/user/index.mjs +1 -1
  39. package/package.json +1 -1
  40. package/dist/chunk-CBZZPBHD.js.map +0 -1
  41. package/dist/chunk-CWGSFDFC.mjs +0 -2
  42. package/dist/chunk-CWGSFDFC.mjs.map +0 -1
  43. package/dist/chunk-LA5QDXDX.mjs +0 -2
  44. package/dist/chunk-LA5QDXDX.mjs.map +0 -1
  45. package/dist/chunk-V24XIUFJ.js +0 -2
  46. package/dist/chunk-V24XIUFJ.js.map +0 -1
  47. package/dist/chunk-YRMNI5T6.mjs +0 -2
  48. package/dist/chunk-YRMNI5T6.mjs.map +0 -1
  49. package/dist/chunk-ZOBM5OSW.js +0 -2
  50. package/dist/chunk-ZOBM5OSW.js.map +0 -1
@@ -43,7 +43,141 @@ declare const DisputeResponseSchema: z.ZodObject<{
43
43
  resolvedAt: z.ZodOptional<z.ZodISODateTime>;
44
44
  createdAt: z.ZodISODateTime;
45
45
  }, z.core.$strip>;
46
+ declare const DISPUTE_DETAIL_MAX_LENGTH = 500;
47
+ declare const DisputeReasonSchema: z.ZodEnum<{
48
+ OTHER: "OTHER";
49
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
50
+ POOR_QUALITY: "POOR_QUALITY";
51
+ ACCESS_ISSUE: "ACCESS_ISSUE";
52
+ }>;
53
+ declare const DisputeStateSchema: z.ZodEnum<{
54
+ EXPIRED: "EXPIRED";
55
+ OPEN: "OPEN";
56
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
57
+ RESOLVED_HOST: "RESOLVED_HOST";
58
+ }>;
59
+ declare const DisputeOutcomeSchema: z.ZodEnum<{
60
+ REFUNDED: "REFUNDED";
61
+ DENIED: "DENIED";
62
+ PARTIAL_REFUND: "PARTIAL_REFUND";
63
+ }>;
64
+ declare const OpenDisputeRequestSchema: z.ZodObject<{
65
+ entitlementKind: z.ZodEnum<{
66
+ readonly REGISTRATION: "REGISTRATION";
67
+ readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
68
+ }>;
69
+ reason: z.ZodEnum<{
70
+ OTHER: "OTHER";
71
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
72
+ POOR_QUALITY: "POOR_QUALITY";
73
+ ACCESS_ISSUE: "ACCESS_ISSUE";
74
+ }>;
75
+ detail: z.ZodOptional<z.ZodString>;
76
+ }, z.core.$strict>;
77
+ declare const AdminDisputeResponseSchema: z.ZodObject<{
78
+ id: z.ZodUUID;
79
+ entitlementId: z.ZodString;
80
+ eventId: z.ZodUUID;
81
+ userId: z.ZodUUID;
82
+ reason: z.ZodEnum<{
83
+ OTHER: "OTHER";
84
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
85
+ POOR_QUALITY: "POOR_QUALITY";
86
+ ACCESS_ISSUE: "ACCESS_ISSUE";
87
+ }>;
88
+ detail: z.ZodNullable<z.ZodString>;
89
+ state: z.ZodEnum<{
90
+ EXPIRED: "EXPIRED";
91
+ OPEN: "OPEN";
92
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
93
+ RESOLVED_HOST: "RESOLVED_HOST";
94
+ }>;
95
+ resolvedAt: z.ZodNullable<z.ZodISODateTime>;
96
+ resolutionOutcome: z.ZodNullable<z.ZodEnum<{
97
+ REFUNDED: "REFUNDED";
98
+ DENIED: "DENIED";
99
+ PARTIAL_REFUND: "PARTIAL_REFUND";
100
+ }>>;
101
+ correlationId: z.ZodString;
102
+ createdAt: z.ZodISODateTime;
103
+ updatedAt: z.ZodISODateTime;
104
+ }, z.core.$strict>;
105
+ declare const MyDisputesQuerySchema: z.ZodObject<{
106
+ state: z.ZodOptional<z.ZodEnum<{
107
+ EXPIRED: "EXPIRED";
108
+ OPEN: "OPEN";
109
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
110
+ RESOLVED_HOST: "RESOLVED_HOST";
111
+ }>>;
112
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
113
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
114
+ }, z.core.$strict>;
115
+ declare const AdminDisputesQuerySchema: z.ZodObject<{
116
+ state: z.ZodOptional<z.ZodEnum<{
117
+ EXPIRED: "EXPIRED";
118
+ OPEN: "OPEN";
119
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
120
+ RESOLVED_HOST: "RESOLVED_HOST";
121
+ }>>;
122
+ eventId: z.ZodOptional<z.ZodUUID>;
123
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
124
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
125
+ }, z.core.$strict>;
126
+ declare const ResolveDisputeRequestSchema: z.ZodObject<{
127
+ outcome: z.ZodEnum<{
128
+ REFUNDED: "REFUNDED";
129
+ DENIED: "DENIED";
130
+ PARTIAL_REFUND: "PARTIAL_REFUND";
131
+ }>;
132
+ refundId: z.ZodOptional<z.ZodString>;
133
+ resolutionNote: z.ZodOptional<z.ZodString>;
134
+ }, z.core.$strict>;
135
+ declare const PagedDisputesResponseSchema: z.ZodObject<{
136
+ totalCount: z.ZodNumber;
137
+ pageNumber: z.ZodNumber;
138
+ pageSize: z.ZodNumber;
139
+ totalPages: z.ZodNumber;
140
+ hasPreviousPage: z.ZodBoolean;
141
+ hasNextPage: z.ZodBoolean;
142
+ items: z.ZodArray<z.ZodObject<{
143
+ id: z.ZodUUID;
144
+ entitlementId: z.ZodString;
145
+ eventId: z.ZodUUID;
146
+ userId: z.ZodUUID;
147
+ reason: z.ZodEnum<{
148
+ OTHER: "OTHER";
149
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
150
+ POOR_QUALITY: "POOR_QUALITY";
151
+ ACCESS_ISSUE: "ACCESS_ISSUE";
152
+ }>;
153
+ detail: z.ZodNullable<z.ZodString>;
154
+ state: z.ZodEnum<{
155
+ EXPIRED: "EXPIRED";
156
+ OPEN: "OPEN";
157
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
158
+ RESOLVED_HOST: "RESOLVED_HOST";
159
+ }>;
160
+ resolvedAt: z.ZodNullable<z.ZodISODateTime>;
161
+ resolutionOutcome: z.ZodNullable<z.ZodEnum<{
162
+ REFUNDED: "REFUNDED";
163
+ DENIED: "DENIED";
164
+ PARTIAL_REFUND: "PARTIAL_REFUND";
165
+ }>>;
166
+ correlationId: z.ZodString;
167
+ createdAt: z.ZodISODateTime;
168
+ updatedAt: z.ZodISODateTime;
169
+ }, z.core.$strict>>;
170
+ }, z.core.$strict>;
46
171
 
47
172
  type DisputeResponse = z.infer<typeof DisputeResponseSchema>;
173
+ type DisputeReasonValue = z.infer<typeof DisputeReasonSchema>;
174
+ type DisputeStateValue = z.infer<typeof DisputeStateSchema>;
175
+ type DisputeOutcomeValue = z.infer<typeof DisputeOutcomeSchema>;
176
+ type OpenDisputeRequest = z.infer<typeof OpenDisputeRequestSchema>;
177
+ type AdminDisputeResponse = z.infer<typeof AdminDisputeResponseSchema>;
178
+ type MyDisputesQuery = z.infer<typeof MyDisputesQuerySchema>;
179
+ type AdminDisputesQuery = z.infer<typeof AdminDisputesQuerySchema>;
180
+ type ResolveDisputeRequest = z.infer<typeof ResolveDisputeRequestSchema>;
181
+ type PagedDisputesResponse = z.infer<typeof PagedDisputesResponseSchema>;
48
182
 
49
- export { type DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType };
183
+ export { type AdminDisputeResponse, AdminDisputeResponseSchema, type AdminDisputesQuery, AdminDisputesQuerySchema, DISPUTE_DETAIL_MAX_LENGTH, DisputeOutcomeSchema, type DisputeOutcomeValue, DisputeReasonSchema, type DisputeReasonValue, type DisputeResponse, DisputeResponseSchema, DisputeStateSchema, type DisputeStateValue, DisputeStatus, DisputeType, type MyDisputesQuery, MyDisputesQuerySchema, type OpenDisputeRequest, OpenDisputeRequestSchema, type PagedDisputesResponse, PagedDisputesResponseSchema, type ResolveDisputeRequest, ResolveDisputeRequestSchema };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkZOBM5OSW_js=require('../chunk-ZOBM5OSW.js');Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZOBM5OSW_js.c}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZOBM5OSW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZOBM5OSW_js.a}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkZKQRUTEW_js=require('../chunk-ZKQRUTEW.js');require('../chunk-QVP3RJFZ.js'),require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"AdminDisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.i}});Object.defineProperty(exports,"AdminDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.k}});Object.defineProperty(exports,"DISPUTE_DETAIL_MAX_LENGTH",{enumerable:true,get:function(){return chunkZKQRUTEW_js.d}});Object.defineProperty(exports,"DisputeOutcomeSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.g}});Object.defineProperty(exports,"DisputeReasonSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.e}});Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.c}});Object.defineProperty(exports,"DisputeStateSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.f}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZKQRUTEW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZKQRUTEW_js.a}});Object.defineProperty(exports,"MyDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.j}});Object.defineProperty(exports,"OpenDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.h}});Object.defineProperty(exports,"PagedDisputesResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.m}});Object.defineProperty(exports,"ResolveDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.l}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{c as DisputeResponseSchema,b as DisputeStatus,a as DisputeType}from'../chunk-CWGSFDFC.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{i as AdminDisputeResponseSchema,k as AdminDisputesQuerySchema,d as DISPUTE_DETAIL_MAX_LENGTH,g as DisputeOutcomeSchema,e as DisputeReasonSchema,c as DisputeResponseSchema,f as DisputeStateSchema,b as DisputeStatus,a as DisputeType,j as MyDisputesQuerySchema,h as OpenDisputeRequestSchema,m as PagedDisputesResponseSchema,l as ResolveDisputeRequestSchema}from'../chunk-4JPHGCGI.mjs';import'../chunk-7BM7S4JR.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -113,6 +113,11 @@ declare const SupportedCurrency: {
113
113
  readonly EUR: "EUR";
114
114
  };
115
115
  type SupportedCurrency = (typeof SupportedCurrency)[keyof typeof SupportedCurrency];
116
+ declare const EntitlementKind: {
117
+ readonly REGISTRATION: "REGISTRATION";
118
+ readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
119
+ };
120
+ type EntitlementKind = (typeof EntitlementKind)[keyof typeof EntitlementKind];
116
121
 
117
122
  declare const CreateEventRequestSchema: z.ZodObject<{
118
123
  title: z.ZodString;
@@ -2119,6 +2124,85 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
2119
2124
  }, z.core.$strip>, z.ZodObject<{
2120
2125
  step: z.ZodLiteral<4>;
2121
2126
  }, z.core.$strip>]>;
2127
+ declare const HostEarningsSummaryQuerySchema: z.ZodObject<{
2128
+ from: z.ZodString;
2129
+ to: z.ZodString;
2130
+ eventId: z.ZodOptional<z.ZodUUID>;
2131
+ currency: z.ZodOptional<z.ZodString>;
2132
+ }, z.core.$strict>;
2133
+ declare const HostEarningsBreakdownQuerySchema: z.ZodObject<{
2134
+ from: z.ZodString;
2135
+ to: z.ZodString;
2136
+ currency: z.ZodOptional<z.ZodString>;
2137
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2138
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2139
+ }, z.core.$strict>;
2140
+ declare const HostEarningsTimeseriesQuerySchema: z.ZodObject<{
2141
+ from: z.ZodString;
2142
+ to: z.ZodString;
2143
+ granularity: z.ZodEnum<{
2144
+ daily: "daily";
2145
+ weekly: "weekly";
2146
+ }>;
2147
+ currency: z.ZodOptional<z.ZodString>;
2148
+ }, z.core.$strict>;
2149
+ declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
2150
+ from: z.ZodString;
2151
+ to: z.ZodString;
2152
+ currency: z.ZodString;
2153
+ grossMinor: z.ZodString;
2154
+ refundsMinor: z.ZodString;
2155
+ netMinor: z.ZodString;
2156
+ availableMinor: z.ZodString;
2157
+ pendingMinor: z.ZodString;
2158
+ }, z.core.$strict>;
2159
+ declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2160
+ eventId: z.ZodUUID;
2161
+ eventTitle: z.ZodString;
2162
+ currency: z.ZodString;
2163
+ grossMinor: z.ZodString;
2164
+ refundsMinor: z.ZodString;
2165
+ netMinor: z.ZodString;
2166
+ firstActivityAt: z.ZodString;
2167
+ lastActivityAt: z.ZodString;
2168
+ }, z.core.$strict>;
2169
+ declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2170
+ totalCount: z.ZodNumber;
2171
+ pageNumber: z.ZodNumber;
2172
+ pageSize: z.ZodNumber;
2173
+ totalPages: z.ZodNumber;
2174
+ hasPreviousPage: z.ZodBoolean;
2175
+ hasNextPage: z.ZodBoolean;
2176
+ items: z.ZodArray<z.ZodObject<{
2177
+ eventId: z.ZodUUID;
2178
+ eventTitle: z.ZodString;
2179
+ currency: z.ZodString;
2180
+ grossMinor: z.ZodString;
2181
+ refundsMinor: z.ZodString;
2182
+ netMinor: z.ZodString;
2183
+ firstActivityAt: z.ZodString;
2184
+ lastActivityAt: z.ZodString;
2185
+ }, z.core.$strict>>;
2186
+ }, z.core.$strict>;
2187
+ declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
2188
+ date: z.ZodString;
2189
+ grossMinor: z.ZodString;
2190
+ refundsMinor: z.ZodString;
2191
+ netMinor: z.ZodString;
2192
+ }, z.core.$strict>;
2193
+ declare const HostEarningsTimeseriesResponseSchema: z.ZodObject<{
2194
+ granularity: z.ZodEnum<{
2195
+ daily: "daily";
2196
+ weekly: "weekly";
2197
+ }>;
2198
+ currency: z.ZodString;
2199
+ points: z.ZodArray<z.ZodObject<{
2200
+ date: z.ZodString;
2201
+ grossMinor: z.ZodString;
2202
+ refundsMinor: z.ZodString;
2203
+ netMinor: z.ZodString;
2204
+ }, z.core.$strict>>;
2205
+ }, z.core.$strict>;
2122
2206
  declare const PublicEventStatusSchema: z.ZodEnum<{
2123
2207
  LIVE: "LIVE";
2124
2208
  UPCOMING: "UPCOMING";
@@ -2257,6 +2341,11 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
2257
2341
  hostDisplayName: z.ZodNullable<z.ZodString>;
2258
2342
  }, z.core.$strip>>;
2259
2343
  }, z.core.$strip>;
2344
+ declare const HostLivePreviewSchema: z.ZodObject<{
2345
+ playbackUrl: z.ZodURL;
2346
+ token: z.ZodString;
2347
+ expiresAt: z.ZodISODateTime;
2348
+ }, z.core.$strip>;
2260
2349
 
2261
2350
  type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
2262
2351
  type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
@@ -2290,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
2290
2379
  type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
2291
2380
  type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
2292
2381
  type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
2382
+ type HostEarningsSummaryQuery = z.infer<typeof HostEarningsSummaryQuerySchema>;
2383
+ type HostEarningsBreakdownQuery = z.infer<typeof HostEarningsBreakdownQuerySchema>;
2384
+ type HostEarningsTimeseriesQuery = z.infer<typeof HostEarningsTimeseriesQuerySchema>;
2385
+ type HostEarningsSummaryResponse = z.infer<typeof HostEarningsSummaryResponseSchema>;
2386
+ type HostEarningsBreakdownItem = z.infer<typeof HostEarningsBreakdownItemSchema>;
2387
+ type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownResponseSchema>;
2388
+ type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
2389
+ type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
2390
+ type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
2293
2391
 
2294
- export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type 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 };
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 };
@@ -113,6 +113,11 @@ declare const SupportedCurrency: {
113
113
  readonly EUR: "EUR";
114
114
  };
115
115
  type SupportedCurrency = (typeof SupportedCurrency)[keyof typeof SupportedCurrency];
116
+ declare const EntitlementKind: {
117
+ readonly REGISTRATION: "REGISTRATION";
118
+ readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
119
+ };
120
+ type EntitlementKind = (typeof EntitlementKind)[keyof typeof EntitlementKind];
116
121
 
117
122
  declare const CreateEventRequestSchema: z.ZodObject<{
118
123
  title: z.ZodString;
@@ -2119,6 +2124,85 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
2119
2124
  }, z.core.$strip>, z.ZodObject<{
2120
2125
  step: z.ZodLiteral<4>;
2121
2126
  }, z.core.$strip>]>;
2127
+ declare const HostEarningsSummaryQuerySchema: z.ZodObject<{
2128
+ from: z.ZodString;
2129
+ to: z.ZodString;
2130
+ eventId: z.ZodOptional<z.ZodUUID>;
2131
+ currency: z.ZodOptional<z.ZodString>;
2132
+ }, z.core.$strict>;
2133
+ declare const HostEarningsBreakdownQuerySchema: z.ZodObject<{
2134
+ from: z.ZodString;
2135
+ to: z.ZodString;
2136
+ currency: z.ZodOptional<z.ZodString>;
2137
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2138
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2139
+ }, z.core.$strict>;
2140
+ declare const HostEarningsTimeseriesQuerySchema: z.ZodObject<{
2141
+ from: z.ZodString;
2142
+ to: z.ZodString;
2143
+ granularity: z.ZodEnum<{
2144
+ daily: "daily";
2145
+ weekly: "weekly";
2146
+ }>;
2147
+ currency: z.ZodOptional<z.ZodString>;
2148
+ }, z.core.$strict>;
2149
+ declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
2150
+ from: z.ZodString;
2151
+ to: z.ZodString;
2152
+ currency: z.ZodString;
2153
+ grossMinor: z.ZodString;
2154
+ refundsMinor: z.ZodString;
2155
+ netMinor: z.ZodString;
2156
+ availableMinor: z.ZodString;
2157
+ pendingMinor: z.ZodString;
2158
+ }, z.core.$strict>;
2159
+ declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2160
+ eventId: z.ZodUUID;
2161
+ eventTitle: z.ZodString;
2162
+ currency: z.ZodString;
2163
+ grossMinor: z.ZodString;
2164
+ refundsMinor: z.ZodString;
2165
+ netMinor: z.ZodString;
2166
+ firstActivityAt: z.ZodString;
2167
+ lastActivityAt: z.ZodString;
2168
+ }, z.core.$strict>;
2169
+ declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2170
+ totalCount: z.ZodNumber;
2171
+ pageNumber: z.ZodNumber;
2172
+ pageSize: z.ZodNumber;
2173
+ totalPages: z.ZodNumber;
2174
+ hasPreviousPage: z.ZodBoolean;
2175
+ hasNextPage: z.ZodBoolean;
2176
+ items: z.ZodArray<z.ZodObject<{
2177
+ eventId: z.ZodUUID;
2178
+ eventTitle: z.ZodString;
2179
+ currency: z.ZodString;
2180
+ grossMinor: z.ZodString;
2181
+ refundsMinor: z.ZodString;
2182
+ netMinor: z.ZodString;
2183
+ firstActivityAt: z.ZodString;
2184
+ lastActivityAt: z.ZodString;
2185
+ }, z.core.$strict>>;
2186
+ }, z.core.$strict>;
2187
+ declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
2188
+ date: z.ZodString;
2189
+ grossMinor: z.ZodString;
2190
+ refundsMinor: z.ZodString;
2191
+ netMinor: z.ZodString;
2192
+ }, z.core.$strict>;
2193
+ declare const HostEarningsTimeseriesResponseSchema: z.ZodObject<{
2194
+ granularity: z.ZodEnum<{
2195
+ daily: "daily";
2196
+ weekly: "weekly";
2197
+ }>;
2198
+ currency: z.ZodString;
2199
+ points: z.ZodArray<z.ZodObject<{
2200
+ date: z.ZodString;
2201
+ grossMinor: z.ZodString;
2202
+ refundsMinor: z.ZodString;
2203
+ netMinor: z.ZodString;
2204
+ }, z.core.$strict>>;
2205
+ }, z.core.$strict>;
2122
2206
  declare const PublicEventStatusSchema: z.ZodEnum<{
2123
2207
  LIVE: "LIVE";
2124
2208
  UPCOMING: "UPCOMING";
@@ -2257,6 +2341,11 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
2257
2341
  hostDisplayName: z.ZodNullable<z.ZodString>;
2258
2342
  }, z.core.$strip>>;
2259
2343
  }, z.core.$strip>;
2344
+ declare const HostLivePreviewSchema: z.ZodObject<{
2345
+ playbackUrl: z.ZodURL;
2346
+ token: z.ZodString;
2347
+ expiresAt: z.ZodISODateTime;
2348
+ }, z.core.$strip>;
2260
2349
 
2261
2350
  type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
2262
2351
  type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
@@ -2290,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
2290
2379
  type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
2291
2380
  type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
2292
2381
  type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
2382
+ type HostEarningsSummaryQuery = z.infer<typeof HostEarningsSummaryQuerySchema>;
2383
+ type HostEarningsBreakdownQuery = z.infer<typeof HostEarningsBreakdownQuerySchema>;
2384
+ type HostEarningsTimeseriesQuery = z.infer<typeof HostEarningsTimeseriesQuerySchema>;
2385
+ type HostEarningsSummaryResponse = z.infer<typeof HostEarningsSummaryResponseSchema>;
2386
+ type HostEarningsBreakdownItem = z.infer<typeof HostEarningsBreakdownItemSchema>;
2387
+ type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownResponseSchema>;
2388
+ type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
2389
+ type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
2390
+ type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
2293
2391
 
2294
- export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type 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 };
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 };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkV24XIUFJ_js=require('../chunk-V24XIUFJ.js');require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.na}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.Q}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ma}});Object.defineProperty(exports,"DiscoverAggregateResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.X}});Object.defineProperty(exports,"DiscoverEvents",{enumerable:true,get:function(){return chunkV24XIUFJ_js.k}});Object.defineProperty(exports,"DiscoverResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.Z}});Object.defineProperty(exports,"DiscoverSectionResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.Y}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ka}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkV24XIUFJ_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkV24XIUFJ_js.e}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.S}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.U}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkV24XIUFJ_js.g}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkV24XIUFJ_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkV24XIUFJ_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.T}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkV24XIUFJ_js.f}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkV24XIUFJ_js.b}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ra}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ca}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.fa}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ha}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ga}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.l}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js._}});Object.defineProperty(exports,"PatchStreamControlRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.qa}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ea}});Object.defineProperty(exports,"PublicEventCardSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ta}});Object.defineProperty(exports,"PublicEventStatusSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.sa}});Object.defineProperty(exports,"PublicEventsQuerySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ua}});Object.defineProperty(exports,"PublicEventsResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.va}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.$}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.aa}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkV24XIUFJ_js.i}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkV24XIUFJ_js.h}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.da}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.la}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.W}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.pa}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ia}});Object.defineProperty(exports,"SupportedCurrency",{enumerable:true,get:function(){return chunkV24XIUFJ_js.m}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.R}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ba}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.V}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkV24XIUFJ_js.j}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.ja}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkV24XIUFJ_js.oa}});//# sourceMappingURL=index.js.map
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
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{na as CategorySchema,Q as CreateEventRequestSchema,ma as CurrencySchema,X as DiscoverAggregateResponseSchema,k as DiscoverEvents,Z as DiscoverResponseSchema,Y as DiscoverSectionResponseSchema,ka as EndViewingSessionResponseSchema,c as EventAccessModel,e as EventAllowListType,S as EventCardCtaSchema,U as EventCardSchema,g as EventCategory,d as EventProductionMode,a as EventReplayAccess,T as EventResponseSchema,f as EventState,b as EventVisibility,ra as HostEventWizardPatchSchema,ca as LivePlaybackSchema,fa as MyEventCardSchema,ha as MyEventsQuerySchema,ga as MyEventsResponseSchema,l as MyEventsTabSchema,_ as PagedEventsResponseSchema,qa as PatchStreamControlRequestSchema,ea as PlaybackResponseSchema,ta as PublicEventCardSchema,sa as PublicEventStatusSchema,ua as PublicEventsQuerySchema,va as PublicEventsResponseSchema,$ as RegisterForEventRequestSchema,aa as RegisterForEventResponseSchema,i as RegistrationScope,h as RegistrationStatus,da as ReplayPlaybackSchema,la as ReplaySchema,W as SearchEventsQuerySchema,pa as StartViewingSessionRequestSchema,ia as StartViewingSessionResponseSchema,m as SupportedCurrency,R as UpdateEventRequestSchema,ba as UpdateWatchProgressRequestSchema,V as ViewerHomeResponseSchema,j as ViewerRegistrationView,ja as ViewingSessionHeartbeatResponseSchema,oa as VisibilitySchema}from'../chunk-LA5QDXDX.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,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
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1043,6 +1043,11 @@ declare const HostLiveConsolePayloadSchema: z.ZodObject<{
1043
1043
  }>;
1044
1044
  replayAvailableAt: z.ZodNullable<z.ZodISODateTime>;
1045
1045
  }, z.core.$strip>>;
1046
+ livePreview: z.ZodNullable<z.ZodObject<{
1047
+ playbackUrl: z.ZodURL;
1048
+ token: z.ZodString;
1049
+ expiresAt: z.ZodISODateTime;
1050
+ }, z.core.$strip>>;
1046
1051
  }, z.core.$strip>;
1047
1052
 
1048
1053
  type HostEventsTab = z.infer<typeof HostEventsTabSchema>;
@@ -1043,6 +1043,11 @@ declare const HostLiveConsolePayloadSchema: z.ZodObject<{
1043
1043
  }>;
1044
1044
  replayAvailableAt: z.ZodNullable<z.ZodISODateTime>;
1045
1045
  }, z.core.$strip>>;
1046
+ livePreview: z.ZodNullable<z.ZodObject<{
1047
+ playbackUrl: z.ZodURL;
1048
+ token: z.ZodString;
1049
+ expiresAt: z.ZodISODateTime;
1050
+ }, z.core.$strip>>;
1046
1051
  }, z.core.$strip>;
1047
1052
 
1048
1053
  type HostEventsTab = z.infer<typeof HostEventsTabSchema>;
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkCBZZPBHD_js=require('../chunk-CBZZPBHD.js');require('../chunk-LA63VYRR.js'),require('../chunk-YCHOYNMM.js'),require('../chunk-V24XIUFJ.js'),require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"EndedReasonSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.Q}});Object.defineProperty(exports,"EndedReplayStateSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.O}});Object.defineProperty(exports,"EventStreamAlertKindSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.R}});Object.defineProperty(exports,"EventStreamAlertSeveritySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.S}});Object.defineProperty(exports,"HOST_DATE_RANGE_PRESETS",{enumerable:true,get:function(){return chunkCBZZPBHD_js.a}});Object.defineProperty(exports,"HostActivityListPageSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.q}});Object.defineProperty(exports,"HostEventCancelResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.o}});Object.defineProperty(exports,"HostEventCrewMemberSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.F}});Object.defineProperty(exports,"HostEventDashboardResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.K}});Object.defineProperty(exports,"HostEventFullResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.v}});Object.defineProperty(exports,"HostEventPatchSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.e}});Object.defineProperty(exports,"HostEventReadinessBlockSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.D}});Object.defineProperty(exports,"HostEventReadinessResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.L}});Object.defineProperty(exports,"HostEventRowResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.g}});Object.defineProperty(exports,"HostEventShareResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.M}});Object.defineProperty(exports,"HostEventWizardCurrentResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.w}});Object.defineProperty(exports,"HostEventWizardPublishResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.n}});Object.defineProperty(exports,"HostEventWizardStartResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.l}});Object.defineProperty(exports,"HostEventWizardStartSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.j}});Object.defineProperty(exports,"HostEventWizardStepResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.m}});Object.defineProperty(exports,"HostEventsListPagedQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.k}});Object.defineProperty(exports,"HostEventsListQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.f}});Object.defineProperty(exports,"HostEventsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.i}});Object.defineProperty(exports,"HostEventsTabResponseClassSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.u}});Object.defineProperty(exports,"HostEventsTabResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.h}});Object.defineProperty(exports,"HostEventsTabSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.c}});Object.defineProperty(exports,"HostLiveConsoleAlertSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.Y}});Object.defineProperty(exports,"HostLiveConsoleChatSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.Z}});Object.defineProperty(exports,"HostLiveConsoleControlsSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.U}});Object.defineProperty(exports,"HostLiveConsoleCrewMemberSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.X}});Object.defineProperty(exports,"HostLiveConsoleEndedSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js._}});Object.defineProperty(exports,"HostLiveConsoleEventSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.T}});Object.defineProperty(exports,"HostLiveConsoleMetricsSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.V}});Object.defineProperty(exports,"HostLiveConsolePayloadSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.$}});Object.defineProperty(exports,"HostLiveConsoleTelemetrySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.W}});Object.defineProperty(exports,"HostNotificationsUnreadCountSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.t}});Object.defineProperty(exports,"HostOverviewQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.b}});Object.defineProperty(exports,"HostOverviewResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.p}});Object.defineProperty(exports,"HostProductionCrewItemSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.I}});Object.defineProperty(exports,"HostProductionCrewPhaseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.G}});Object.defineProperty(exports,"HostSearchHitSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.r}});Object.defineProperty(exports,"HostSearchQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.d}});Object.defineProperty(exports,"HostSearchResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.s}});Object.defineProperty(exports,"ListHostEventDashboardQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.E}});Object.defineProperty(exports,"ListHostProductionCrewQuerySchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.H}});Object.defineProperty(exports,"LiveConsoleSliceSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.N}});Object.defineProperty(exports,"LiveIngestHealthSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.P}});Object.defineProperty(exports,"PagedHostProductionCrewResponseSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.J}});Object.defineProperty(exports,"ProductionModeSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.B}});Object.defineProperty(exports,"ReadinessBlockReasonSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.z}});Object.defineProperty(exports,"ReadinessItemIdSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.x}});Object.defineProperty(exports,"ReadinessItemSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.C}});Object.defineProperty(exports,"ReadinessItemStateSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.y}});Object.defineProperty(exports,"StreamingStatusSchema",{enumerable:true,get:function(){return chunkCBZZPBHD_js.A}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkMPHWRG3V_js=require('../chunk-MPHWRG3V.js');require('../chunk-LA63VYRR.js'),require('../chunk-YCHOYNMM.js'),require('../chunk-QVP3RJFZ.js'),require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"EndedReasonSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.Q}});Object.defineProperty(exports,"EndedReplayStateSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.O}});Object.defineProperty(exports,"EventStreamAlertKindSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.R}});Object.defineProperty(exports,"EventStreamAlertSeveritySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.S}});Object.defineProperty(exports,"HOST_DATE_RANGE_PRESETS",{enumerable:true,get:function(){return chunkMPHWRG3V_js.a}});Object.defineProperty(exports,"HostActivityListPageSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.q}});Object.defineProperty(exports,"HostEventCancelResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.o}});Object.defineProperty(exports,"HostEventCrewMemberSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.F}});Object.defineProperty(exports,"HostEventDashboardResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.K}});Object.defineProperty(exports,"HostEventFullResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.v}});Object.defineProperty(exports,"HostEventPatchSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.e}});Object.defineProperty(exports,"HostEventReadinessBlockSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.D}});Object.defineProperty(exports,"HostEventReadinessResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.L}});Object.defineProperty(exports,"HostEventRowResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.g}});Object.defineProperty(exports,"HostEventShareResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.M}});Object.defineProperty(exports,"HostEventWizardCurrentResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.w}});Object.defineProperty(exports,"HostEventWizardPublishResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.n}});Object.defineProperty(exports,"HostEventWizardStartResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.l}});Object.defineProperty(exports,"HostEventWizardStartSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.j}});Object.defineProperty(exports,"HostEventWizardStepResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.m}});Object.defineProperty(exports,"HostEventsListPagedQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.k}});Object.defineProperty(exports,"HostEventsListQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.f}});Object.defineProperty(exports,"HostEventsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.i}});Object.defineProperty(exports,"HostEventsTabResponseClassSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.u}});Object.defineProperty(exports,"HostEventsTabResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.h}});Object.defineProperty(exports,"HostEventsTabSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.c}});Object.defineProperty(exports,"HostLiveConsoleAlertSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.Y}});Object.defineProperty(exports,"HostLiveConsoleChatSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.Z}});Object.defineProperty(exports,"HostLiveConsoleControlsSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.U}});Object.defineProperty(exports,"HostLiveConsoleCrewMemberSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.X}});Object.defineProperty(exports,"HostLiveConsoleEndedSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js._}});Object.defineProperty(exports,"HostLiveConsoleEventSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.T}});Object.defineProperty(exports,"HostLiveConsoleMetricsSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.V}});Object.defineProperty(exports,"HostLiveConsolePayloadSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.$}});Object.defineProperty(exports,"HostLiveConsoleTelemetrySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.W}});Object.defineProperty(exports,"HostNotificationsUnreadCountSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.t}});Object.defineProperty(exports,"HostOverviewQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.b}});Object.defineProperty(exports,"HostOverviewResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.p}});Object.defineProperty(exports,"HostProductionCrewItemSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.I}});Object.defineProperty(exports,"HostProductionCrewPhaseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.G}});Object.defineProperty(exports,"HostSearchHitSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.r}});Object.defineProperty(exports,"HostSearchQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.d}});Object.defineProperty(exports,"HostSearchResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.s}});Object.defineProperty(exports,"ListHostEventDashboardQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.E}});Object.defineProperty(exports,"ListHostProductionCrewQuerySchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.H}});Object.defineProperty(exports,"LiveConsoleSliceSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.N}});Object.defineProperty(exports,"LiveIngestHealthSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.P}});Object.defineProperty(exports,"PagedHostProductionCrewResponseSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.J}});Object.defineProperty(exports,"ProductionModeSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.B}});Object.defineProperty(exports,"ReadinessBlockReasonSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.z}});Object.defineProperty(exports,"ReadinessItemIdSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.x}});Object.defineProperty(exports,"ReadinessItemSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.C}});Object.defineProperty(exports,"ReadinessItemStateSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.y}});Object.defineProperty(exports,"StreamingStatusSchema",{enumerable:true,get:function(){return chunkMPHWRG3V_js.A}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{Q as EndedReasonSchema,O as EndedReplayStateSchema,R as EventStreamAlertKindSchema,S as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,K as HostEventDashboardResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,L as HostEventReadinessResponseSchema,g as HostEventRowResponseSchema,M as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,Y as HostLiveConsoleAlertSchema,Z as HostLiveConsoleChatSchema,U as HostLiveConsoleControlsSchema,X as HostLiveConsoleCrewMemberSchema,_ as HostLiveConsoleEndedSchema,T as HostLiveConsoleEventSchema,V as HostLiveConsoleMetricsSchema,$ as HostLiveConsolePayloadSchema,W as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,N as LiveConsoleSliceSchema,P as LiveIngestHealthSchema,J as PagedHostProductionCrewResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-YRMNI5T6.mjs';import'../chunk-JWVW5AP2.mjs';import'../chunk-5IA4SH4O.mjs';import'../chunk-LA5QDXDX.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{Q as EndedReasonSchema,O as EndedReplayStateSchema,R as EventStreamAlertKindSchema,S as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,K as HostEventDashboardResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,L as HostEventReadinessResponseSchema,g as HostEventRowResponseSchema,M as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,Y as HostLiveConsoleAlertSchema,Z as HostLiveConsoleChatSchema,U as HostLiveConsoleControlsSchema,X as HostLiveConsoleCrewMemberSchema,_ as HostLiveConsoleEndedSchema,T as HostLiveConsoleEventSchema,V as HostLiveConsoleMetricsSchema,$ as HostLiveConsolePayloadSchema,W as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,N as LiveConsoleSliceSchema,P as LiveIngestHealthSchema,J as PagedHostProductionCrewResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-JWA3K4Z7.mjs';import'../chunk-JWVW5AP2.mjs';import'../chunk-5IA4SH4O.mjs';import'../chunk-7BM7S4JR.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
package/dist/index.d.mts CHANGED
@@ -1,12 +1,12 @@
1
1
  export { ApiError, ApiResponse, ApiResponseSchema, AuditActorRole, AuditActorRoleSchema, 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, DisableMfaBody, DisableMfaBodySchema, EnableMfaBody, EnableMfaBodySchema, ForgotPasswordRequest, ForgotPasswordRequestSchema, ForgotPasswordResponseSchema, IdentityProvider, LinkRequiredReasonEnum, LinkRequiredResponse, LinkRequiredResponseSchema, LoginRequest, LoginRequestSchema, LoginResponse, LoginResponseSchema, LogoutRequestPayload, LogoutRequestSchema, MFA_ACTIONS, MfaAction, MfaChallengeBody, MfaChallengeBodySchema, MfaVerifyBody, MfaVerifyBodySchema, OauthDirectTokenRequest, OauthDirectTokenRequestSchema, OauthExchangeRequest, OauthExchangeRequestSchema, OauthLinkCompleteEmailRequest, OauthLinkCompleteEmailRequestSchema, OauthLinkCompleteRequest, OauthLinkCompleteRequestSchema, OauthLinkSendOtpRequest, OauthLinkSendOtpRequestSchema, OauthLinkSendOtpResponse, OauthLinkSendOtpResponseSchema, OauthResolveKind, OauthStartQuery, OauthStartQuerySchema, OauthStartResponse, OauthStartResponseSchema, PasswordSchema, ProvidersListItem, ProvidersListItemSchema, ProvidersListResponse, ProvidersListResponseSchema, ReauthTokenResponse, ReauthTokenResponseSchema, RecoveryCode, RecoveryCodeSchema, RefreshTokenRequest, RefreshTokenRequestSchema, RegisterRequest, RegisterRequestSchema, RegisterResponsePayload, RegisterResponseSchema, ResendOtpRequestSchema, ResetPasswordRequest, ResetPasswordRequestSchema, TotpCode, TotpCodeSchema, 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, SetProfilePin, SetProfilePinSchema, UpdateHostProfileRequest, UpdateHostProfileRequestSchema, UpdateNotificationPreferencesRequest, UpdateNotificationPreferencesRequestSchema, UpdateUserRequest, UpdateUserRequestSchema, UpdateViewerCurrencyRequest, UpdateViewerCurrencyRequestSchema, UpdateViewerProfileRequest, UpdateViewerProfileRequestSchema, UserResponse, UserResponseSchema, UserRole, ViewerMeResponse, ViewerMeResponseSchema } from './user/index.mjs';
4
- export { Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, DiscoverResponse, DiscoverResponseSchema, DiscoverSectionResponse, DiscoverSectionResponseSchema, 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, PatchStreamControlRequest, PatchStreamControlRequestSchema, PlaybackResponse, PlaybackResponseSchema, PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, PublicEventsQuery, PublicEventsQuerySchema, PublicEventsResponse, PublicEventsResponseSchema, 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 { Category, CategorySchema, CreateEventRequest, CreateEventRequestSchema, Currency, CurrencySchema, DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, DiscoverResponse, DiscoverResponseSchema, DiscoverSectionResponse, DiscoverSectionResponseSchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, EventCard, EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, EventResponse, EventResponseSchema, EventState, EventVisibility, HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, HostEventWizardPatch, HostEventWizardPatchSchema, HostLivePreview, HostLivePreviewSchema, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PatchStreamControlRequest, PatchStreamControlRequestSchema, PlaybackResponse, PlaybackResponseSchema, PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, PublicEventsQuery, PublicEventsQuerySchema, PublicEventsResponse, PublicEventsResponseSchema, 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 { AdminBookingAuditEntry, AdminBookingAuditEntrySchema, AdminBookingAuditResponse, AdminBookingAuditResponseSchema, BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingAuditAction, BookingAuditActorSchema, BookingAuditAttachmentAddedDetails, BookingAuditAttachmentAddedDetailsSchema, BookingAuditMessageSentDetails, BookingAuditMessageSentDetailsSchema, BookingAuditRequestMetadataSchema, BookingAuditSnapshotSchema, BookingAuditStateTransitionDetails, BookingAuditStateTransitionDetailsSchema, BookingOrigin, BookingPaymentStatus, BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, BookingTransitionKey, CancelMarketplaceJobListingRequest, CancelMarketplaceJobListingRequestSchema, CancelMarketplaceJobListingResponse, CancelMarketplaceJobListingResponseSchema, CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, ConfirmBookingRequest, ConfirmBookingRequestSchema, CreateBookingRequest, CreateBookingRequestSchema, CreateJobListingRequest, CreateJobListingRequestSchema, CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, CreateMarketplaceReviewRequest, CreateMarketplaceReviewRequestSchema, ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, HostIndicationOfInterestSortBy, IndicationOfInterestResponse, IndicationOfInterestResponseSchema, IoiState, JobListingCompensationTier, JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, ListHostMarketplaceIndicationsQuery, ListHostMarketplaceIndicationsQuerySchema, ListHostMarketplaceJobListingsQuery, ListHostMarketplaceJobListingsQuerySchema, ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, MarketplaceBookingResponse, MarketplaceBookingResponseSchema, MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, MarketplaceHiringThread, MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, MarketplaceHostIndicationOfInterestInboxItem, MarketplaceHostIndicationOfInterestInboxItemSchema, MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, MarketplaceReviewResponse, MarketplaceReviewResponseSchema, MessageDeliveryStatus, PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, ProducerRecentReview, ProducerRecentReviewSchema, PublishMarketplaceJobListingResponse, PublishMarketplaceJobListingResponseSchema, PublishReadyJobListing, PublishReadyJobListingSchema, SortOrder, 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, AwaitingIngestSchema, 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, RequestWithdrawalBody, RequestWithdrawalBodySchema, SettlementAccountView, SettlementAccountViewSchema, SlateSchema, TrailerSchema, TransactionStatus, TransactionType, UpdateSettlementBody, UpdateSettlementBodySchema, ViewerEventDetailResponseSchema } from './payment/index.mjs';
8
8
  export { AdminApproveProducerVerification, AdminApproveProducerVerificationSchema, AdminProducerVerificationReasonBody, AdminProducerVerificationReasonBodySchema, AdminRejectProducerVerification, AdminRejectProducerVerificationSchema, AdminSuspendProducerVerification, AdminSuspendProducerVerificationSchema, EquipmentCategory, GetProducerProfileQuery, GetProducerProfileQuerySchema, ListProducersQuery, ListProducersQuerySchema, MarketplaceCurrency, ProducerProfileWorkspace, ProducerProfileWorkspaceSchema, PublicProducerListCategory, PublicProducerListCategorySchema, PublicProducerListEquipmentItem, PublicProducerListEquipmentItemSchema, PublicProducerListItem, PublicProducerListItemSchema, PublicProducerListPortfolioItem, PublicProducerListPortfolioItemSchema, PublicProducerListRateCardItem, PublicProducerListRateCardItemSchema, ServiceCategoryCode, ServiceCategoryListResponse, ServiceCategoryListResponseSchema, SubmitProducerForVerification, SubmitProducerForVerificationSchema, UpsertProducerWorkspaceProfile, UpsertProducerWorkspaceProfileSchema, WorkspaceEquipmentItemInput, WorkspaceEquipmentItemInputSchema, WorkspacePortfolioItemInput, WorkspacePortfolioItemInputSchema, WorkspaceRateCardItemInput, WorkspaceRateCardItemInputSchema } from './marketplace/index.mjs';
9
- export { DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType } from './dispute/index.mjs';
9
+ export { AdminDisputeResponse, AdminDisputeResponseSchema, AdminDisputesQuery, AdminDisputesQuerySchema, DISPUTE_DETAIL_MAX_LENGTH, DisputeOutcomeSchema, DisputeOutcomeValue, DisputeReasonSchema, DisputeReasonValue, DisputeResponse, DisputeResponseSchema, DisputeStateSchema, DisputeStateValue, DisputeStatus, DisputeType, MyDisputesQuery, MyDisputesQuerySchema, OpenDisputeRequest, OpenDisputeRequestSchema, PagedDisputesResponse, PagedDisputesResponseSchema, ResolveDisputeRequest, ResolveDisputeRequestSchema } from './dispute/index.mjs';
10
10
  export { ListNotificationsQuery, ListNotificationsQuerySchema, ListNotificationsResponse, ListNotificationsResponseSchema, MarkAllNotificationsReadResponse, MarkAllNotificationsReadResponseSchema, MarkNotificationReadResponse, MarkNotificationReadResponseSchema, NotificationChannel, NotificationPriority, NotificationResponse, NotificationResponseSchema, NotificationType, NotificationsUnreadCountResponse, NotificationsUnreadCountResponseSchema, RegisterPushDeviceRequest, RegisterPushDeviceRequestSchema, RegisterPushDeviceResponse, RegisterPushDeviceResponseSchema } from './notification/index.mjs';
11
11
  export { JobInterestState } from './joblisting/index.mjs';
12
12
  export { ApiErrorCode } from './errors/index.mjs';