@livdot-tech/contracts 1.9.22 → 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.
- package/dist/auth/index.js +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/chunk-4JPHGCGI.mjs +2 -0
- package/dist/chunk-4JPHGCGI.mjs.map +1 -0
- package/dist/chunk-7BM7S4JR.mjs +2 -0
- package/dist/chunk-7BM7S4JR.mjs.map +1 -0
- package/dist/{chunk-PMTVFD4Q.mjs → chunk-EQ3TWNQ4.mjs} +2 -2
- package/dist/{chunk-PMTVFD4Q.mjs.map → chunk-EQ3TWNQ4.mjs.map} +1 -1
- package/dist/chunk-JWA3K4Z7.mjs +2 -0
- package/dist/chunk-JWA3K4Z7.mjs.map +1 -0
- package/dist/{chunk-EZFD2I7V.js → chunk-MPHWRG3V.js} +2 -2
- package/dist/chunk-MPHWRG3V.js.map +1 -0
- package/dist/chunk-QVP3RJFZ.js +2 -0
- package/dist/chunk-QVP3RJFZ.js.map +1 -0
- package/dist/{chunk-GR74BEG3.js → chunk-Y3GCX2TR.js} +2 -2
- package/dist/{chunk-GR74BEG3.js.map → chunk-Y3GCX2TR.js.map} +1 -1
- package/dist/chunk-ZKQRUTEW.js +2 -0
- package/dist/chunk-ZKQRUTEW.js.map +1 -0
- package/dist/dispute/index.d.mts +135 -1
- package/dist/dispute/index.d.ts +135 -1
- package/dist/dispute/index.js +1 -1
- package/dist/dispute/index.mjs +1 -1
- package/dist/event/index.d.mts +240 -1
- package/dist/event/index.d.ts +240 -1
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/host/index.d.mts +5 -0
- package/dist/host/index.d.ts +5 -0
- package/dist/host/index.js +1 -1
- package/dist/host/index.mjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/payment/index.js +1 -1
- package/dist/payment/index.mjs +1 -1
- package/dist/user/index.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-7HBUII6V.js +0 -2
- package/dist/chunk-7HBUII6V.js.map +0 -1
- package/dist/chunk-CWGSFDFC.mjs +0 -2
- package/dist/chunk-CWGSFDFC.mjs.map +0 -1
- package/dist/chunk-EZFD2I7V.js.map +0 -1
- package/dist/chunk-QSHXY3NV.mjs +0 -2
- package/dist/chunk-QSHXY3NV.mjs.map +0 -1
- package/dist/chunk-T3BYBVTP.mjs +0 -2
- package/dist/chunk-T3BYBVTP.mjs.map +0 -1
- package/dist/chunk-ZOBM5OSW.js +0 -2
- package/dist/chunk-ZOBM5OSW.js.map +0 -1
package/dist/event/index.d.ts
CHANGED
|
@@ -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,7 +2124,232 @@ 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>;
|
|
2206
|
+
declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
2207
|
+
LIVE: "LIVE";
|
|
2208
|
+
UPCOMING: "UPCOMING";
|
|
2209
|
+
PAST: "PAST";
|
|
2210
|
+
ALL: "ALL";
|
|
2211
|
+
}>;
|
|
2212
|
+
declare const PublicEventCardSchema: z.ZodObject<{
|
|
2213
|
+
id: z.ZodUUID;
|
|
2214
|
+
title: z.ZodString;
|
|
2215
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2216
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2217
|
+
category: z.ZodEnum<{
|
|
2218
|
+
readonly ART: "ART";
|
|
2219
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2220
|
+
readonly SCIENCE: "SCIENCE";
|
|
2221
|
+
readonly TRAVEL: "TRAVEL";
|
|
2222
|
+
readonly HISTORY: "HISTORY";
|
|
2223
|
+
readonly LITERATURE: "LITERATURE";
|
|
2224
|
+
readonly COOKING: "COOKING";
|
|
2225
|
+
readonly FITNESS: "FITNESS";
|
|
2226
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2227
|
+
readonly GARDENING: "GARDENING";
|
|
2228
|
+
readonly EDUCATION: "EDUCATION";
|
|
2229
|
+
readonly FASHION: "FASHION";
|
|
2230
|
+
readonly MOVIES: "MOVIES";
|
|
2231
|
+
readonly SPORTS: "SPORTS";
|
|
2232
|
+
readonly POLITICS: "POLITICS";
|
|
2233
|
+
readonly HEALTH: "HEALTH";
|
|
2234
|
+
readonly GAMING: "GAMING";
|
|
2235
|
+
readonly FINANCE: "FINANCE";
|
|
2236
|
+
readonly NATURE: "NATURE";
|
|
2237
|
+
readonly CONCERT: "CONCERT";
|
|
2238
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2239
|
+
readonly WEDDING: "WEDDING";
|
|
2240
|
+
readonly CORPORATE: "CORPORATE";
|
|
2241
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2242
|
+
readonly OTHER: "OTHER";
|
|
2243
|
+
}>;
|
|
2244
|
+
accessModel: z.ZodEnum<{
|
|
2245
|
+
readonly FREE: "FREE";
|
|
2246
|
+
readonly PAID: "PAID";
|
|
2247
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2248
|
+
}>;
|
|
2249
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2250
|
+
currency: z.ZodString;
|
|
2251
|
+
isFeatured: z.ZodBoolean;
|
|
2252
|
+
scheduledStart: z.ZodISODateTime;
|
|
2253
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2254
|
+
}, z.core.$strip>;
|
|
2255
|
+
declare const PublicEventsQuerySchema: z.ZodObject<{
|
|
2256
|
+
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2257
|
+
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2258
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
2259
|
+
LIVE: "LIVE";
|
|
2260
|
+
UPCOMING: "UPCOMING";
|
|
2261
|
+
PAST: "PAST";
|
|
2262
|
+
ALL: "ALL";
|
|
2263
|
+
}>>;
|
|
2264
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
2265
|
+
readonly ART: "ART";
|
|
2266
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2267
|
+
readonly SCIENCE: "SCIENCE";
|
|
2268
|
+
readonly TRAVEL: "TRAVEL";
|
|
2269
|
+
readonly HISTORY: "HISTORY";
|
|
2270
|
+
readonly LITERATURE: "LITERATURE";
|
|
2271
|
+
readonly COOKING: "COOKING";
|
|
2272
|
+
readonly FITNESS: "FITNESS";
|
|
2273
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2274
|
+
readonly GARDENING: "GARDENING";
|
|
2275
|
+
readonly EDUCATION: "EDUCATION";
|
|
2276
|
+
readonly FASHION: "FASHION";
|
|
2277
|
+
readonly MOVIES: "MOVIES";
|
|
2278
|
+
readonly SPORTS: "SPORTS";
|
|
2279
|
+
readonly POLITICS: "POLITICS";
|
|
2280
|
+
readonly HEALTH: "HEALTH";
|
|
2281
|
+
readonly GAMING: "GAMING";
|
|
2282
|
+
readonly FINANCE: "FINANCE";
|
|
2283
|
+
readonly NATURE: "NATURE";
|
|
2284
|
+
readonly CONCERT: "CONCERT";
|
|
2285
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2286
|
+
readonly WEDDING: "WEDDING";
|
|
2287
|
+
readonly CORPORATE: "CORPORATE";
|
|
2288
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2289
|
+
readonly OTHER: "OTHER";
|
|
2290
|
+
}>>;
|
|
2291
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
2292
|
+
}, z.core.$strip>;
|
|
2293
|
+
declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
2294
|
+
totalCount: z.ZodNumber;
|
|
2295
|
+
pageNumber: z.ZodNumber;
|
|
2296
|
+
pageSize: z.ZodNumber;
|
|
2297
|
+
totalPages: z.ZodNumber;
|
|
2298
|
+
hasPreviousPage: z.ZodBoolean;
|
|
2299
|
+
hasNextPage: z.ZodBoolean;
|
|
2300
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2301
|
+
id: z.ZodUUID;
|
|
2302
|
+
title: z.ZodString;
|
|
2303
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2304
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2305
|
+
category: z.ZodEnum<{
|
|
2306
|
+
readonly ART: "ART";
|
|
2307
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2308
|
+
readonly SCIENCE: "SCIENCE";
|
|
2309
|
+
readonly TRAVEL: "TRAVEL";
|
|
2310
|
+
readonly HISTORY: "HISTORY";
|
|
2311
|
+
readonly LITERATURE: "LITERATURE";
|
|
2312
|
+
readonly COOKING: "COOKING";
|
|
2313
|
+
readonly FITNESS: "FITNESS";
|
|
2314
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2315
|
+
readonly GARDENING: "GARDENING";
|
|
2316
|
+
readonly EDUCATION: "EDUCATION";
|
|
2317
|
+
readonly FASHION: "FASHION";
|
|
2318
|
+
readonly MOVIES: "MOVIES";
|
|
2319
|
+
readonly SPORTS: "SPORTS";
|
|
2320
|
+
readonly POLITICS: "POLITICS";
|
|
2321
|
+
readonly HEALTH: "HEALTH";
|
|
2322
|
+
readonly GAMING: "GAMING";
|
|
2323
|
+
readonly FINANCE: "FINANCE";
|
|
2324
|
+
readonly NATURE: "NATURE";
|
|
2325
|
+
readonly CONCERT: "CONCERT";
|
|
2326
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2327
|
+
readonly WEDDING: "WEDDING";
|
|
2328
|
+
readonly CORPORATE: "CORPORATE";
|
|
2329
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2330
|
+
readonly OTHER: "OTHER";
|
|
2331
|
+
}>;
|
|
2332
|
+
accessModel: z.ZodEnum<{
|
|
2333
|
+
readonly FREE: "FREE";
|
|
2334
|
+
readonly PAID: "PAID";
|
|
2335
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2336
|
+
}>;
|
|
2337
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2338
|
+
currency: z.ZodString;
|
|
2339
|
+
isFeatured: z.ZodBoolean;
|
|
2340
|
+
scheduledStart: z.ZodISODateTime;
|
|
2341
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2342
|
+
}, z.core.$strip>>;
|
|
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>;
|
|
2122
2349
|
|
|
2350
|
+
type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
|
|
2351
|
+
type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
|
|
2352
|
+
type PublicEventsResponse = z.infer<typeof PublicEventsResponseSchema>;
|
|
2123
2353
|
type CreateEventRequest = z.infer<typeof CreateEventRequestSchema>;
|
|
2124
2354
|
type UpdateEventRequest = z.infer<typeof UpdateEventRequestSchema>;
|
|
2125
2355
|
type EventResponse = z.infer<typeof EventResponseSchema>;
|
|
@@ -2149,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
|
|
|
2149
2379
|
type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
|
|
2150
2380
|
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
2151
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>;
|
|
2152
2391
|
|
|
2153
|
-
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 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 };
|
package/dist/event/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
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
|
package/dist/event/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{
|
|
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
|
package/dist/host/index.d.mts
CHANGED
|
@@ -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>;
|
package/dist/host/index.d.ts
CHANGED
|
@@ -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>;
|
package/dist/host/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
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
|
package/dist/host/index.mjs
CHANGED
|
@@ -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-
|
|
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, 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';
|
package/dist/index.d.ts
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.js';
|
|
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.js';
|
|
3
3
|
export { AccountStatus, AdminScopeCode, CreateHostProfileRequest, CreateHostProfileRequestSchema, CreateProducerProfileRequest, CreateProducerProfileRequestSchema, DisplayName, DisplayNameSchema, FeedbackCategory, HostProfileResponse, HostProfileResponseSchema, KycStatus, NotificationCategory, NotificationPreferenceItem, NotificationPreferenceItemSchema, NotificationPreferencesResponse, NotificationPreferencesResponseSchema, ProducerExperienceLevel, ProducerProfileResponse, ProducerProfileResponseSchema, ProducerVerificationStatus, RESERVED_DISPLAY_NAMES, SendFeedbackRequest, SendFeedbackRequestSchema, SendFeedbackResponse, SendFeedbackResponseSchema, SetProfilePin, SetProfilePinSchema, UpdateHostProfileRequest, UpdateHostProfileRequestSchema, UpdateNotificationPreferencesRequest, UpdateNotificationPreferencesRequestSchema, UpdateUserRequest, UpdateUserRequestSchema, UpdateViewerCurrencyRequest, UpdateViewerCurrencyRequestSchema, UpdateViewerProfileRequest, UpdateViewerProfileRequestSchema, UserResponse, UserResponseSchema, UserRole, ViewerMeResponse, ViewerMeResponseSchema } from './user/index.js';
|
|
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, RegisterForEventRequest, RegisterForEventRequestSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, Replay, ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionRequest, StartViewingSessionRequestSchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, Visibility, VisibilitySchema } from './event/index.js';
|
|
4
|
+
export { 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.js';
|
|
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.js';
|
|
6
6
|
export { IngestCredentialsResponse, IngestCredentialsResponseSchema, IngestProtocol, PlaybackTokenResponse, PlaybackTokenResponseSchema, StreamStatus, TelemetryReportRequest, TelemetryReportRequestSchema } from './streaming/index.js';
|
|
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.js';
|
|
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.js';
|
|
9
|
-
export { DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType } from './dispute/index.js';
|
|
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.js';
|
|
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.js';
|
|
11
11
|
export { JobInterestState } from './joblisting/index.js';
|
|
12
12
|
export { ApiErrorCode } from './errors/index.js';
|