@livdot-tech/contracts 1.9.22 → 1.10.0
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-EZFD2I7V.js → chunk-CBZZPBHD.js} +2 -2
- package/dist/{chunk-EZFD2I7V.js.map → chunk-CBZZPBHD.js.map} +1 -1
- package/dist/{chunk-GR74BEG3.js → chunk-H2WMLOCH.js} +2 -2
- package/dist/{chunk-GR74BEG3.js.map → chunk-H2WMLOCH.js.map} +1 -1
- package/dist/chunk-LA5QDXDX.mjs +2 -0
- package/dist/chunk-LA5QDXDX.mjs.map +1 -0
- package/dist/{chunk-PMTVFD4Q.mjs → chunk-SBW5M7B2.mjs} +2 -2
- package/dist/{chunk-PMTVFD4Q.mjs.map → chunk-SBW5M7B2.mjs.map} +1 -1
- package/dist/chunk-V24XIUFJ.js +2 -0
- package/dist/chunk-V24XIUFJ.js.map +1 -0
- package/dist/{chunk-T3BYBVTP.mjs → chunk-YRMNI5T6.mjs} +2 -2
- package/dist/{chunk-T3BYBVTP.mjs.map → chunk-YRMNI5T6.mjs.map} +1 -1
- package/dist/event/index.d.mts +142 -1
- package/dist/event/index.d.ts +142 -1
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/host/index.js +1 -1
- package/dist/host/index.mjs +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/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-QSHXY3NV.mjs +0 -2
- package/dist/chunk-QSHXY3NV.mjs.map +0 -1
package/dist/event/index.d.mts
CHANGED
|
@@ -2119,7 +2119,148 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2119
2119
|
}, z.core.$strip>, z.ZodObject<{
|
|
2120
2120
|
step: z.ZodLiteral<4>;
|
|
2121
2121
|
}, z.core.$strip>]>;
|
|
2122
|
+
declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
2123
|
+
LIVE: "LIVE";
|
|
2124
|
+
UPCOMING: "UPCOMING";
|
|
2125
|
+
PAST: "PAST";
|
|
2126
|
+
ALL: "ALL";
|
|
2127
|
+
}>;
|
|
2128
|
+
declare const PublicEventCardSchema: z.ZodObject<{
|
|
2129
|
+
id: z.ZodUUID;
|
|
2130
|
+
title: z.ZodString;
|
|
2131
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2132
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2133
|
+
category: z.ZodEnum<{
|
|
2134
|
+
readonly ART: "ART";
|
|
2135
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2136
|
+
readonly SCIENCE: "SCIENCE";
|
|
2137
|
+
readonly TRAVEL: "TRAVEL";
|
|
2138
|
+
readonly HISTORY: "HISTORY";
|
|
2139
|
+
readonly LITERATURE: "LITERATURE";
|
|
2140
|
+
readonly COOKING: "COOKING";
|
|
2141
|
+
readonly FITNESS: "FITNESS";
|
|
2142
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2143
|
+
readonly GARDENING: "GARDENING";
|
|
2144
|
+
readonly EDUCATION: "EDUCATION";
|
|
2145
|
+
readonly FASHION: "FASHION";
|
|
2146
|
+
readonly MOVIES: "MOVIES";
|
|
2147
|
+
readonly SPORTS: "SPORTS";
|
|
2148
|
+
readonly POLITICS: "POLITICS";
|
|
2149
|
+
readonly HEALTH: "HEALTH";
|
|
2150
|
+
readonly GAMING: "GAMING";
|
|
2151
|
+
readonly FINANCE: "FINANCE";
|
|
2152
|
+
readonly NATURE: "NATURE";
|
|
2153
|
+
readonly CONCERT: "CONCERT";
|
|
2154
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2155
|
+
readonly WEDDING: "WEDDING";
|
|
2156
|
+
readonly CORPORATE: "CORPORATE";
|
|
2157
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2158
|
+
readonly OTHER: "OTHER";
|
|
2159
|
+
}>;
|
|
2160
|
+
accessModel: z.ZodEnum<{
|
|
2161
|
+
readonly FREE: "FREE";
|
|
2162
|
+
readonly PAID: "PAID";
|
|
2163
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2164
|
+
}>;
|
|
2165
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2166
|
+
currency: z.ZodString;
|
|
2167
|
+
isFeatured: z.ZodBoolean;
|
|
2168
|
+
scheduledStart: z.ZodISODateTime;
|
|
2169
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2170
|
+
}, z.core.$strip>;
|
|
2171
|
+
declare const PublicEventsQuerySchema: z.ZodObject<{
|
|
2172
|
+
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2173
|
+
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2174
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
2175
|
+
LIVE: "LIVE";
|
|
2176
|
+
UPCOMING: "UPCOMING";
|
|
2177
|
+
PAST: "PAST";
|
|
2178
|
+
ALL: "ALL";
|
|
2179
|
+
}>>;
|
|
2180
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
2181
|
+
readonly ART: "ART";
|
|
2182
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2183
|
+
readonly SCIENCE: "SCIENCE";
|
|
2184
|
+
readonly TRAVEL: "TRAVEL";
|
|
2185
|
+
readonly HISTORY: "HISTORY";
|
|
2186
|
+
readonly LITERATURE: "LITERATURE";
|
|
2187
|
+
readonly COOKING: "COOKING";
|
|
2188
|
+
readonly FITNESS: "FITNESS";
|
|
2189
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2190
|
+
readonly GARDENING: "GARDENING";
|
|
2191
|
+
readonly EDUCATION: "EDUCATION";
|
|
2192
|
+
readonly FASHION: "FASHION";
|
|
2193
|
+
readonly MOVIES: "MOVIES";
|
|
2194
|
+
readonly SPORTS: "SPORTS";
|
|
2195
|
+
readonly POLITICS: "POLITICS";
|
|
2196
|
+
readonly HEALTH: "HEALTH";
|
|
2197
|
+
readonly GAMING: "GAMING";
|
|
2198
|
+
readonly FINANCE: "FINANCE";
|
|
2199
|
+
readonly NATURE: "NATURE";
|
|
2200
|
+
readonly CONCERT: "CONCERT";
|
|
2201
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2202
|
+
readonly WEDDING: "WEDDING";
|
|
2203
|
+
readonly CORPORATE: "CORPORATE";
|
|
2204
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2205
|
+
readonly OTHER: "OTHER";
|
|
2206
|
+
}>>;
|
|
2207
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
2208
|
+
}, z.core.$strip>;
|
|
2209
|
+
declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
2210
|
+
totalCount: z.ZodNumber;
|
|
2211
|
+
pageNumber: z.ZodNumber;
|
|
2212
|
+
pageSize: z.ZodNumber;
|
|
2213
|
+
totalPages: z.ZodNumber;
|
|
2214
|
+
hasPreviousPage: z.ZodBoolean;
|
|
2215
|
+
hasNextPage: z.ZodBoolean;
|
|
2216
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2217
|
+
id: z.ZodUUID;
|
|
2218
|
+
title: z.ZodString;
|
|
2219
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2220
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2221
|
+
category: z.ZodEnum<{
|
|
2222
|
+
readonly ART: "ART";
|
|
2223
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2224
|
+
readonly SCIENCE: "SCIENCE";
|
|
2225
|
+
readonly TRAVEL: "TRAVEL";
|
|
2226
|
+
readonly HISTORY: "HISTORY";
|
|
2227
|
+
readonly LITERATURE: "LITERATURE";
|
|
2228
|
+
readonly COOKING: "COOKING";
|
|
2229
|
+
readonly FITNESS: "FITNESS";
|
|
2230
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2231
|
+
readonly GARDENING: "GARDENING";
|
|
2232
|
+
readonly EDUCATION: "EDUCATION";
|
|
2233
|
+
readonly FASHION: "FASHION";
|
|
2234
|
+
readonly MOVIES: "MOVIES";
|
|
2235
|
+
readonly SPORTS: "SPORTS";
|
|
2236
|
+
readonly POLITICS: "POLITICS";
|
|
2237
|
+
readonly HEALTH: "HEALTH";
|
|
2238
|
+
readonly GAMING: "GAMING";
|
|
2239
|
+
readonly FINANCE: "FINANCE";
|
|
2240
|
+
readonly NATURE: "NATURE";
|
|
2241
|
+
readonly CONCERT: "CONCERT";
|
|
2242
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2243
|
+
readonly WEDDING: "WEDDING";
|
|
2244
|
+
readonly CORPORATE: "CORPORATE";
|
|
2245
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2246
|
+
readonly OTHER: "OTHER";
|
|
2247
|
+
}>;
|
|
2248
|
+
accessModel: z.ZodEnum<{
|
|
2249
|
+
readonly FREE: "FREE";
|
|
2250
|
+
readonly PAID: "PAID";
|
|
2251
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2252
|
+
}>;
|
|
2253
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2254
|
+
currency: z.ZodString;
|
|
2255
|
+
isFeatured: z.ZodBoolean;
|
|
2256
|
+
scheduledStart: z.ZodISODateTime;
|
|
2257
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2258
|
+
}, z.core.$strip>>;
|
|
2259
|
+
}, z.core.$strip>;
|
|
2122
2260
|
|
|
2261
|
+
type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
|
|
2262
|
+
type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
|
|
2263
|
+
type PublicEventsResponse = z.infer<typeof PublicEventsResponseSchema>;
|
|
2123
2264
|
type CreateEventRequest = z.infer<typeof CreateEventRequestSchema>;
|
|
2124
2265
|
type UpdateEventRequest = z.infer<typeof UpdateEventRequestSchema>;
|
|
2125
2266
|
type EventResponse = z.infer<typeof EventResponseSchema>;
|
|
@@ -2150,4 +2291,4 @@ type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>
|
|
|
2150
2291
|
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
2151
2292
|
type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
|
|
2152
2293
|
|
|
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 };
|
|
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 };
|
package/dist/event/index.d.ts
CHANGED
|
@@ -2119,7 +2119,148 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2119
2119
|
}, z.core.$strip>, z.ZodObject<{
|
|
2120
2120
|
step: z.ZodLiteral<4>;
|
|
2121
2121
|
}, z.core.$strip>]>;
|
|
2122
|
+
declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
2123
|
+
LIVE: "LIVE";
|
|
2124
|
+
UPCOMING: "UPCOMING";
|
|
2125
|
+
PAST: "PAST";
|
|
2126
|
+
ALL: "ALL";
|
|
2127
|
+
}>;
|
|
2128
|
+
declare const PublicEventCardSchema: z.ZodObject<{
|
|
2129
|
+
id: z.ZodUUID;
|
|
2130
|
+
title: z.ZodString;
|
|
2131
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2132
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2133
|
+
category: z.ZodEnum<{
|
|
2134
|
+
readonly ART: "ART";
|
|
2135
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2136
|
+
readonly SCIENCE: "SCIENCE";
|
|
2137
|
+
readonly TRAVEL: "TRAVEL";
|
|
2138
|
+
readonly HISTORY: "HISTORY";
|
|
2139
|
+
readonly LITERATURE: "LITERATURE";
|
|
2140
|
+
readonly COOKING: "COOKING";
|
|
2141
|
+
readonly FITNESS: "FITNESS";
|
|
2142
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2143
|
+
readonly GARDENING: "GARDENING";
|
|
2144
|
+
readonly EDUCATION: "EDUCATION";
|
|
2145
|
+
readonly FASHION: "FASHION";
|
|
2146
|
+
readonly MOVIES: "MOVIES";
|
|
2147
|
+
readonly SPORTS: "SPORTS";
|
|
2148
|
+
readonly POLITICS: "POLITICS";
|
|
2149
|
+
readonly HEALTH: "HEALTH";
|
|
2150
|
+
readonly GAMING: "GAMING";
|
|
2151
|
+
readonly FINANCE: "FINANCE";
|
|
2152
|
+
readonly NATURE: "NATURE";
|
|
2153
|
+
readonly CONCERT: "CONCERT";
|
|
2154
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2155
|
+
readonly WEDDING: "WEDDING";
|
|
2156
|
+
readonly CORPORATE: "CORPORATE";
|
|
2157
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2158
|
+
readonly OTHER: "OTHER";
|
|
2159
|
+
}>;
|
|
2160
|
+
accessModel: z.ZodEnum<{
|
|
2161
|
+
readonly FREE: "FREE";
|
|
2162
|
+
readonly PAID: "PAID";
|
|
2163
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2164
|
+
}>;
|
|
2165
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2166
|
+
currency: z.ZodString;
|
|
2167
|
+
isFeatured: z.ZodBoolean;
|
|
2168
|
+
scheduledStart: z.ZodISODateTime;
|
|
2169
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2170
|
+
}, z.core.$strip>;
|
|
2171
|
+
declare const PublicEventsQuerySchema: z.ZodObject<{
|
|
2172
|
+
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2173
|
+
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2174
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
2175
|
+
LIVE: "LIVE";
|
|
2176
|
+
UPCOMING: "UPCOMING";
|
|
2177
|
+
PAST: "PAST";
|
|
2178
|
+
ALL: "ALL";
|
|
2179
|
+
}>>;
|
|
2180
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
2181
|
+
readonly ART: "ART";
|
|
2182
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2183
|
+
readonly SCIENCE: "SCIENCE";
|
|
2184
|
+
readonly TRAVEL: "TRAVEL";
|
|
2185
|
+
readonly HISTORY: "HISTORY";
|
|
2186
|
+
readonly LITERATURE: "LITERATURE";
|
|
2187
|
+
readonly COOKING: "COOKING";
|
|
2188
|
+
readonly FITNESS: "FITNESS";
|
|
2189
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2190
|
+
readonly GARDENING: "GARDENING";
|
|
2191
|
+
readonly EDUCATION: "EDUCATION";
|
|
2192
|
+
readonly FASHION: "FASHION";
|
|
2193
|
+
readonly MOVIES: "MOVIES";
|
|
2194
|
+
readonly SPORTS: "SPORTS";
|
|
2195
|
+
readonly POLITICS: "POLITICS";
|
|
2196
|
+
readonly HEALTH: "HEALTH";
|
|
2197
|
+
readonly GAMING: "GAMING";
|
|
2198
|
+
readonly FINANCE: "FINANCE";
|
|
2199
|
+
readonly NATURE: "NATURE";
|
|
2200
|
+
readonly CONCERT: "CONCERT";
|
|
2201
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2202
|
+
readonly WEDDING: "WEDDING";
|
|
2203
|
+
readonly CORPORATE: "CORPORATE";
|
|
2204
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2205
|
+
readonly OTHER: "OTHER";
|
|
2206
|
+
}>>;
|
|
2207
|
+
q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
|
|
2208
|
+
}, z.core.$strip>;
|
|
2209
|
+
declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
2210
|
+
totalCount: z.ZodNumber;
|
|
2211
|
+
pageNumber: z.ZodNumber;
|
|
2212
|
+
pageSize: z.ZodNumber;
|
|
2213
|
+
totalPages: z.ZodNumber;
|
|
2214
|
+
hasPreviousPage: z.ZodBoolean;
|
|
2215
|
+
hasNextPage: z.ZodBoolean;
|
|
2216
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2217
|
+
id: z.ZodUUID;
|
|
2218
|
+
title: z.ZodString;
|
|
2219
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2220
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
2221
|
+
category: z.ZodEnum<{
|
|
2222
|
+
readonly ART: "ART";
|
|
2223
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
2224
|
+
readonly SCIENCE: "SCIENCE";
|
|
2225
|
+
readonly TRAVEL: "TRAVEL";
|
|
2226
|
+
readonly HISTORY: "HISTORY";
|
|
2227
|
+
readonly LITERATURE: "LITERATURE";
|
|
2228
|
+
readonly COOKING: "COOKING";
|
|
2229
|
+
readonly FITNESS: "FITNESS";
|
|
2230
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
2231
|
+
readonly GARDENING: "GARDENING";
|
|
2232
|
+
readonly EDUCATION: "EDUCATION";
|
|
2233
|
+
readonly FASHION: "FASHION";
|
|
2234
|
+
readonly MOVIES: "MOVIES";
|
|
2235
|
+
readonly SPORTS: "SPORTS";
|
|
2236
|
+
readonly POLITICS: "POLITICS";
|
|
2237
|
+
readonly HEALTH: "HEALTH";
|
|
2238
|
+
readonly GAMING: "GAMING";
|
|
2239
|
+
readonly FINANCE: "FINANCE";
|
|
2240
|
+
readonly NATURE: "NATURE";
|
|
2241
|
+
readonly CONCERT: "CONCERT";
|
|
2242
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
2243
|
+
readonly WEDDING: "WEDDING";
|
|
2244
|
+
readonly CORPORATE: "CORPORATE";
|
|
2245
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
2246
|
+
readonly OTHER: "OTHER";
|
|
2247
|
+
}>;
|
|
2248
|
+
accessModel: z.ZodEnum<{
|
|
2249
|
+
readonly FREE: "FREE";
|
|
2250
|
+
readonly PAID: "PAID";
|
|
2251
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
2252
|
+
}>;
|
|
2253
|
+
ticketPrice: z.ZodNullable<z.ZodString>;
|
|
2254
|
+
currency: z.ZodString;
|
|
2255
|
+
isFeatured: z.ZodBoolean;
|
|
2256
|
+
scheduledStart: z.ZodISODateTime;
|
|
2257
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2258
|
+
}, z.core.$strip>>;
|
|
2259
|
+
}, z.core.$strip>;
|
|
2122
2260
|
|
|
2261
|
+
type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
|
|
2262
|
+
type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
|
|
2263
|
+
type PublicEventsResponse = z.infer<typeof PublicEventsResponseSchema>;
|
|
2123
2264
|
type CreateEventRequest = z.infer<typeof CreateEventRequestSchema>;
|
|
2124
2265
|
type UpdateEventRequest = z.infer<typeof UpdateEventRequestSchema>;
|
|
2125
2266
|
type EventResponse = z.infer<typeof EventResponseSchema>;
|
|
@@ -2150,4 +2291,4 @@ type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>
|
|
|
2150
2291
|
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
2151
2292
|
type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
|
|
2152
2293
|
|
|
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 };
|
|
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 };
|
package/dist/event/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
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
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/event/index.mjs
CHANGED
|
@@ -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,$ 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-
|
|
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
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/host/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
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
|
|
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-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
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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, 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';
|
|
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';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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, 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.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';
|