@livdot-tech/contracts 1.10.0 → 1.10.2
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-SBW5M7B2.mjs → chunk-EQ3TWNQ4.mjs} +2 -2
- package/dist/{chunk-SBW5M7B2.mjs.map → chunk-EQ3TWNQ4.mjs.map} +1 -1
- package/dist/chunk-PFQ2PK5A.mjs +2 -0
- package/dist/chunk-PFQ2PK5A.mjs.map +1 -0
- package/dist/chunk-QVP3RJFZ.js +2 -0
- package/dist/chunk-QVP3RJFZ.js.map +1 -0
- package/dist/chunk-RK5OLL5B.js +2 -0
- package/dist/chunk-RK5OLL5B.js.map +1 -0
- package/dist/{chunk-H2WMLOCH.js → chunk-Y3GCX2TR.js} +2 -2
- package/dist/{chunk-H2WMLOCH.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 +99 -1
- package/dist/event/index.d.ts +99 -1
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/host/index.d.mts +126 -1
- package/dist/host/index.d.ts +126 -1
- package/dist/host/index.js +1 -1
- package/dist/host/index.mjs +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- 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-CBZZPBHD.js +0 -2
- package/dist/chunk-CBZZPBHD.js.map +0 -1
- package/dist/chunk-CWGSFDFC.mjs +0 -2
- package/dist/chunk-CWGSFDFC.mjs.map +0 -1
- package/dist/chunk-LA5QDXDX.mjs +0 -2
- package/dist/chunk-LA5QDXDX.mjs.map +0 -1
- package/dist/chunk-V24XIUFJ.js +0 -2
- package/dist/chunk-V24XIUFJ.js.map +0 -1
- package/dist/chunk-YRMNI5T6.mjs +0 -2
- package/dist/chunk-YRMNI5T6.mjs.map +0 -1
- package/dist/chunk-ZOBM5OSW.js +0 -2
- package/dist/chunk-ZOBM5OSW.js.map +0 -1
package/dist/dispute/index.d.ts
CHANGED
|
@@ -43,7 +43,141 @@ declare const DisputeResponseSchema: z.ZodObject<{
|
|
|
43
43
|
resolvedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
44
44
|
createdAt: z.ZodISODateTime;
|
|
45
45
|
}, z.core.$strip>;
|
|
46
|
+
declare const DISPUTE_DETAIL_MAX_LENGTH = 500;
|
|
47
|
+
declare const DisputeReasonSchema: z.ZodEnum<{
|
|
48
|
+
OTHER: "OTHER";
|
|
49
|
+
EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
|
|
50
|
+
POOR_QUALITY: "POOR_QUALITY";
|
|
51
|
+
ACCESS_ISSUE: "ACCESS_ISSUE";
|
|
52
|
+
}>;
|
|
53
|
+
declare const DisputeStateSchema: z.ZodEnum<{
|
|
54
|
+
EXPIRED: "EXPIRED";
|
|
55
|
+
OPEN: "OPEN";
|
|
56
|
+
RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
|
|
57
|
+
RESOLVED_HOST: "RESOLVED_HOST";
|
|
58
|
+
}>;
|
|
59
|
+
declare const DisputeOutcomeSchema: z.ZodEnum<{
|
|
60
|
+
REFUNDED: "REFUNDED";
|
|
61
|
+
DENIED: "DENIED";
|
|
62
|
+
PARTIAL_REFUND: "PARTIAL_REFUND";
|
|
63
|
+
}>;
|
|
64
|
+
declare const OpenDisputeRequestSchema: z.ZodObject<{
|
|
65
|
+
entitlementKind: z.ZodEnum<{
|
|
66
|
+
readonly REGISTRATION: "REGISTRATION";
|
|
67
|
+
readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
|
|
68
|
+
}>;
|
|
69
|
+
reason: z.ZodEnum<{
|
|
70
|
+
OTHER: "OTHER";
|
|
71
|
+
EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
|
|
72
|
+
POOR_QUALITY: "POOR_QUALITY";
|
|
73
|
+
ACCESS_ISSUE: "ACCESS_ISSUE";
|
|
74
|
+
}>;
|
|
75
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
76
|
+
}, z.core.$strict>;
|
|
77
|
+
declare const AdminDisputeResponseSchema: z.ZodObject<{
|
|
78
|
+
id: z.ZodUUID;
|
|
79
|
+
entitlementId: z.ZodString;
|
|
80
|
+
eventId: z.ZodUUID;
|
|
81
|
+
userId: z.ZodUUID;
|
|
82
|
+
reason: z.ZodEnum<{
|
|
83
|
+
OTHER: "OTHER";
|
|
84
|
+
EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
|
|
85
|
+
POOR_QUALITY: "POOR_QUALITY";
|
|
86
|
+
ACCESS_ISSUE: "ACCESS_ISSUE";
|
|
87
|
+
}>;
|
|
88
|
+
detail: z.ZodNullable<z.ZodString>;
|
|
89
|
+
state: z.ZodEnum<{
|
|
90
|
+
EXPIRED: "EXPIRED";
|
|
91
|
+
OPEN: "OPEN";
|
|
92
|
+
RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
|
|
93
|
+
RESOLVED_HOST: "RESOLVED_HOST";
|
|
94
|
+
}>;
|
|
95
|
+
resolvedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
96
|
+
resolutionOutcome: z.ZodNullable<z.ZodEnum<{
|
|
97
|
+
REFUNDED: "REFUNDED";
|
|
98
|
+
DENIED: "DENIED";
|
|
99
|
+
PARTIAL_REFUND: "PARTIAL_REFUND";
|
|
100
|
+
}>>;
|
|
101
|
+
correlationId: z.ZodString;
|
|
102
|
+
createdAt: z.ZodISODateTime;
|
|
103
|
+
updatedAt: z.ZodISODateTime;
|
|
104
|
+
}, z.core.$strict>;
|
|
105
|
+
declare const MyDisputesQuerySchema: z.ZodObject<{
|
|
106
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
107
|
+
EXPIRED: "EXPIRED";
|
|
108
|
+
OPEN: "OPEN";
|
|
109
|
+
RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
|
|
110
|
+
RESOLVED_HOST: "RESOLVED_HOST";
|
|
111
|
+
}>>;
|
|
112
|
+
pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
113
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
114
|
+
}, z.core.$strict>;
|
|
115
|
+
declare const AdminDisputesQuerySchema: z.ZodObject<{
|
|
116
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
117
|
+
EXPIRED: "EXPIRED";
|
|
118
|
+
OPEN: "OPEN";
|
|
119
|
+
RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
|
|
120
|
+
RESOLVED_HOST: "RESOLVED_HOST";
|
|
121
|
+
}>>;
|
|
122
|
+
eventId: z.ZodOptional<z.ZodUUID>;
|
|
123
|
+
pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
124
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
125
|
+
}, z.core.$strict>;
|
|
126
|
+
declare const ResolveDisputeRequestSchema: z.ZodObject<{
|
|
127
|
+
outcome: z.ZodEnum<{
|
|
128
|
+
REFUNDED: "REFUNDED";
|
|
129
|
+
DENIED: "DENIED";
|
|
130
|
+
PARTIAL_REFUND: "PARTIAL_REFUND";
|
|
131
|
+
}>;
|
|
132
|
+
refundId: z.ZodOptional<z.ZodString>;
|
|
133
|
+
resolutionNote: z.ZodOptional<z.ZodString>;
|
|
134
|
+
}, z.core.$strict>;
|
|
135
|
+
declare const PagedDisputesResponseSchema: z.ZodObject<{
|
|
136
|
+
totalCount: z.ZodNumber;
|
|
137
|
+
pageNumber: z.ZodNumber;
|
|
138
|
+
pageSize: z.ZodNumber;
|
|
139
|
+
totalPages: z.ZodNumber;
|
|
140
|
+
hasPreviousPage: z.ZodBoolean;
|
|
141
|
+
hasNextPage: z.ZodBoolean;
|
|
142
|
+
items: z.ZodArray<z.ZodObject<{
|
|
143
|
+
id: z.ZodUUID;
|
|
144
|
+
entitlementId: z.ZodString;
|
|
145
|
+
eventId: z.ZodUUID;
|
|
146
|
+
userId: z.ZodUUID;
|
|
147
|
+
reason: z.ZodEnum<{
|
|
148
|
+
OTHER: "OTHER";
|
|
149
|
+
EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
|
|
150
|
+
POOR_QUALITY: "POOR_QUALITY";
|
|
151
|
+
ACCESS_ISSUE: "ACCESS_ISSUE";
|
|
152
|
+
}>;
|
|
153
|
+
detail: z.ZodNullable<z.ZodString>;
|
|
154
|
+
state: z.ZodEnum<{
|
|
155
|
+
EXPIRED: "EXPIRED";
|
|
156
|
+
OPEN: "OPEN";
|
|
157
|
+
RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
|
|
158
|
+
RESOLVED_HOST: "RESOLVED_HOST";
|
|
159
|
+
}>;
|
|
160
|
+
resolvedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
161
|
+
resolutionOutcome: z.ZodNullable<z.ZodEnum<{
|
|
162
|
+
REFUNDED: "REFUNDED";
|
|
163
|
+
DENIED: "DENIED";
|
|
164
|
+
PARTIAL_REFUND: "PARTIAL_REFUND";
|
|
165
|
+
}>>;
|
|
166
|
+
correlationId: z.ZodString;
|
|
167
|
+
createdAt: z.ZodISODateTime;
|
|
168
|
+
updatedAt: z.ZodISODateTime;
|
|
169
|
+
}, z.core.$strict>>;
|
|
170
|
+
}, z.core.$strict>;
|
|
46
171
|
|
|
47
172
|
type DisputeResponse = z.infer<typeof DisputeResponseSchema>;
|
|
173
|
+
type DisputeReasonValue = z.infer<typeof DisputeReasonSchema>;
|
|
174
|
+
type DisputeStateValue = z.infer<typeof DisputeStateSchema>;
|
|
175
|
+
type DisputeOutcomeValue = z.infer<typeof DisputeOutcomeSchema>;
|
|
176
|
+
type OpenDisputeRequest = z.infer<typeof OpenDisputeRequestSchema>;
|
|
177
|
+
type AdminDisputeResponse = z.infer<typeof AdminDisputeResponseSchema>;
|
|
178
|
+
type MyDisputesQuery = z.infer<typeof MyDisputesQuerySchema>;
|
|
179
|
+
type AdminDisputesQuery = z.infer<typeof AdminDisputesQuerySchema>;
|
|
180
|
+
type ResolveDisputeRequest = z.infer<typeof ResolveDisputeRequestSchema>;
|
|
181
|
+
type PagedDisputesResponse = z.infer<typeof PagedDisputesResponseSchema>;
|
|
48
182
|
|
|
49
|
-
export { type DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType };
|
|
183
|
+
export { type AdminDisputeResponse, AdminDisputeResponseSchema, type AdminDisputesQuery, AdminDisputesQuerySchema, DISPUTE_DETAIL_MAX_LENGTH, DisputeOutcomeSchema, type DisputeOutcomeValue, DisputeReasonSchema, type DisputeReasonValue, type DisputeResponse, DisputeResponseSchema, DisputeStateSchema, type DisputeStateValue, DisputeStatus, DisputeType, type MyDisputesQuery, MyDisputesQuerySchema, type OpenDisputeRequest, OpenDisputeRequestSchema, type PagedDisputesResponse, PagedDisputesResponseSchema, type ResolveDisputeRequest, ResolveDisputeRequestSchema };
|
package/dist/dispute/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkZKQRUTEW_js=require('../chunk-ZKQRUTEW.js');require('../chunk-QVP3RJFZ.js'),require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"AdminDisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.i}});Object.defineProperty(exports,"AdminDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.k}});Object.defineProperty(exports,"DISPUTE_DETAIL_MAX_LENGTH",{enumerable:true,get:function(){return chunkZKQRUTEW_js.d}});Object.defineProperty(exports,"DisputeOutcomeSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.g}});Object.defineProperty(exports,"DisputeReasonSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.e}});Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.c}});Object.defineProperty(exports,"DisputeStateSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.f}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZKQRUTEW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZKQRUTEW_js.a}});Object.defineProperty(exports,"MyDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.j}});Object.defineProperty(exports,"OpenDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.h}});Object.defineProperty(exports,"PagedDisputesResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.m}});Object.defineProperty(exports,"ResolveDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.l}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/dispute/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{c as DisputeResponseSchema,b as DisputeStatus,a as DisputeType}from'../chunk-
|
|
1
|
+
export{i as AdminDisputeResponseSchema,k as AdminDisputesQuerySchema,d as DISPUTE_DETAIL_MAX_LENGTH,g as DisputeOutcomeSchema,e as DisputeReasonSchema,c as DisputeResponseSchema,f as DisputeStateSchema,b as DisputeStatus,a as DisputeType,j as MyDisputesQuerySchema,h as OpenDisputeRequestSchema,m as PagedDisputesResponseSchema,l as ResolveDisputeRequestSchema}from'../chunk-4JPHGCGI.mjs';import'../chunk-7BM7S4JR.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/event/index.d.mts
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,6 +2124,85 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2119
2124
|
}, z.core.$strip>, z.ZodObject<{
|
|
2120
2125
|
step: z.ZodLiteral<4>;
|
|
2121
2126
|
}, z.core.$strip>]>;
|
|
2127
|
+
declare const HostEarningsSummaryQuerySchema: z.ZodObject<{
|
|
2128
|
+
from: z.ZodString;
|
|
2129
|
+
to: z.ZodString;
|
|
2130
|
+
eventId: z.ZodOptional<z.ZodUUID>;
|
|
2131
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
}, z.core.$strict>;
|
|
2133
|
+
declare const HostEarningsBreakdownQuerySchema: z.ZodObject<{
|
|
2134
|
+
from: z.ZodString;
|
|
2135
|
+
to: z.ZodString;
|
|
2136
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2137
|
+
pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2138
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2139
|
+
}, z.core.$strict>;
|
|
2140
|
+
declare const HostEarningsTimeseriesQuerySchema: z.ZodObject<{
|
|
2141
|
+
from: z.ZodString;
|
|
2142
|
+
to: z.ZodString;
|
|
2143
|
+
granularity: z.ZodEnum<{
|
|
2144
|
+
daily: "daily";
|
|
2145
|
+
weekly: "weekly";
|
|
2146
|
+
}>;
|
|
2147
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2148
|
+
}, z.core.$strict>;
|
|
2149
|
+
declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
|
|
2150
|
+
from: z.ZodString;
|
|
2151
|
+
to: z.ZodString;
|
|
2152
|
+
currency: z.ZodString;
|
|
2153
|
+
grossMinor: z.ZodString;
|
|
2154
|
+
refundsMinor: z.ZodString;
|
|
2155
|
+
netMinor: z.ZodString;
|
|
2156
|
+
availableMinor: z.ZodString;
|
|
2157
|
+
pendingMinor: z.ZodString;
|
|
2158
|
+
}, z.core.$strict>;
|
|
2159
|
+
declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
|
|
2160
|
+
eventId: z.ZodUUID;
|
|
2161
|
+
eventTitle: z.ZodString;
|
|
2162
|
+
currency: z.ZodString;
|
|
2163
|
+
grossMinor: z.ZodString;
|
|
2164
|
+
refundsMinor: z.ZodString;
|
|
2165
|
+
netMinor: z.ZodString;
|
|
2166
|
+
firstActivityAt: z.ZodString;
|
|
2167
|
+
lastActivityAt: z.ZodString;
|
|
2168
|
+
}, z.core.$strict>;
|
|
2169
|
+
declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
|
|
2170
|
+
totalCount: z.ZodNumber;
|
|
2171
|
+
pageNumber: z.ZodNumber;
|
|
2172
|
+
pageSize: z.ZodNumber;
|
|
2173
|
+
totalPages: z.ZodNumber;
|
|
2174
|
+
hasPreviousPage: z.ZodBoolean;
|
|
2175
|
+
hasNextPage: z.ZodBoolean;
|
|
2176
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2177
|
+
eventId: z.ZodUUID;
|
|
2178
|
+
eventTitle: z.ZodString;
|
|
2179
|
+
currency: z.ZodString;
|
|
2180
|
+
grossMinor: z.ZodString;
|
|
2181
|
+
refundsMinor: z.ZodString;
|
|
2182
|
+
netMinor: z.ZodString;
|
|
2183
|
+
firstActivityAt: z.ZodString;
|
|
2184
|
+
lastActivityAt: z.ZodString;
|
|
2185
|
+
}, z.core.$strict>>;
|
|
2186
|
+
}, z.core.$strict>;
|
|
2187
|
+
declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
|
|
2188
|
+
date: z.ZodString;
|
|
2189
|
+
grossMinor: z.ZodString;
|
|
2190
|
+
refundsMinor: z.ZodString;
|
|
2191
|
+
netMinor: z.ZodString;
|
|
2192
|
+
}, z.core.$strict>;
|
|
2193
|
+
declare const HostEarningsTimeseriesResponseSchema: z.ZodObject<{
|
|
2194
|
+
granularity: z.ZodEnum<{
|
|
2195
|
+
daily: "daily";
|
|
2196
|
+
weekly: "weekly";
|
|
2197
|
+
}>;
|
|
2198
|
+
currency: z.ZodString;
|
|
2199
|
+
points: z.ZodArray<z.ZodObject<{
|
|
2200
|
+
date: z.ZodString;
|
|
2201
|
+
grossMinor: z.ZodString;
|
|
2202
|
+
refundsMinor: z.ZodString;
|
|
2203
|
+
netMinor: z.ZodString;
|
|
2204
|
+
}, z.core.$strict>>;
|
|
2205
|
+
}, z.core.$strict>;
|
|
2122
2206
|
declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
2123
2207
|
LIVE: "LIVE";
|
|
2124
2208
|
UPCOMING: "UPCOMING";
|
|
@@ -2257,6 +2341,11 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
|
2257
2341
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2258
2342
|
}, z.core.$strip>>;
|
|
2259
2343
|
}, z.core.$strip>;
|
|
2344
|
+
declare const HostLivePreviewSchema: z.ZodObject<{
|
|
2345
|
+
playbackUrl: z.ZodURL;
|
|
2346
|
+
token: z.ZodString;
|
|
2347
|
+
expiresAt: z.ZodISODateTime;
|
|
2348
|
+
}, z.core.$strip>;
|
|
2260
2349
|
|
|
2261
2350
|
type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
|
|
2262
2351
|
type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
|
|
@@ -2290,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
|
|
|
2290
2379
|
type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
|
|
2291
2380
|
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
2292
2381
|
type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
|
|
2382
|
+
type HostEarningsSummaryQuery = z.infer<typeof HostEarningsSummaryQuerySchema>;
|
|
2383
|
+
type HostEarningsBreakdownQuery = z.infer<typeof HostEarningsBreakdownQuerySchema>;
|
|
2384
|
+
type HostEarningsTimeseriesQuery = z.infer<typeof HostEarningsTimeseriesQuerySchema>;
|
|
2385
|
+
type HostEarningsSummaryResponse = z.infer<typeof HostEarningsSummaryResponseSchema>;
|
|
2386
|
+
type HostEarningsBreakdownItem = z.infer<typeof HostEarningsBreakdownItemSchema>;
|
|
2387
|
+
type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownResponseSchema>;
|
|
2388
|
+
type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
|
|
2389
|
+
type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
|
|
2390
|
+
type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
|
|
2293
2391
|
|
|
2294
|
-
export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|
|
2392
|
+
export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|
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,6 +2124,85 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2119
2124
|
}, z.core.$strip>, z.ZodObject<{
|
|
2120
2125
|
step: z.ZodLiteral<4>;
|
|
2121
2126
|
}, z.core.$strip>]>;
|
|
2127
|
+
declare const HostEarningsSummaryQuerySchema: z.ZodObject<{
|
|
2128
|
+
from: z.ZodString;
|
|
2129
|
+
to: z.ZodString;
|
|
2130
|
+
eventId: z.ZodOptional<z.ZodUUID>;
|
|
2131
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
}, z.core.$strict>;
|
|
2133
|
+
declare const HostEarningsBreakdownQuerySchema: z.ZodObject<{
|
|
2134
|
+
from: z.ZodString;
|
|
2135
|
+
to: z.ZodString;
|
|
2136
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2137
|
+
pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2138
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2139
|
+
}, z.core.$strict>;
|
|
2140
|
+
declare const HostEarningsTimeseriesQuerySchema: z.ZodObject<{
|
|
2141
|
+
from: z.ZodString;
|
|
2142
|
+
to: z.ZodString;
|
|
2143
|
+
granularity: z.ZodEnum<{
|
|
2144
|
+
daily: "daily";
|
|
2145
|
+
weekly: "weekly";
|
|
2146
|
+
}>;
|
|
2147
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
2148
|
+
}, z.core.$strict>;
|
|
2149
|
+
declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
|
|
2150
|
+
from: z.ZodString;
|
|
2151
|
+
to: z.ZodString;
|
|
2152
|
+
currency: z.ZodString;
|
|
2153
|
+
grossMinor: z.ZodString;
|
|
2154
|
+
refundsMinor: z.ZodString;
|
|
2155
|
+
netMinor: z.ZodString;
|
|
2156
|
+
availableMinor: z.ZodString;
|
|
2157
|
+
pendingMinor: z.ZodString;
|
|
2158
|
+
}, z.core.$strict>;
|
|
2159
|
+
declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
|
|
2160
|
+
eventId: z.ZodUUID;
|
|
2161
|
+
eventTitle: z.ZodString;
|
|
2162
|
+
currency: z.ZodString;
|
|
2163
|
+
grossMinor: z.ZodString;
|
|
2164
|
+
refundsMinor: z.ZodString;
|
|
2165
|
+
netMinor: z.ZodString;
|
|
2166
|
+
firstActivityAt: z.ZodString;
|
|
2167
|
+
lastActivityAt: z.ZodString;
|
|
2168
|
+
}, z.core.$strict>;
|
|
2169
|
+
declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
|
|
2170
|
+
totalCount: z.ZodNumber;
|
|
2171
|
+
pageNumber: z.ZodNumber;
|
|
2172
|
+
pageSize: z.ZodNumber;
|
|
2173
|
+
totalPages: z.ZodNumber;
|
|
2174
|
+
hasPreviousPage: z.ZodBoolean;
|
|
2175
|
+
hasNextPage: z.ZodBoolean;
|
|
2176
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2177
|
+
eventId: z.ZodUUID;
|
|
2178
|
+
eventTitle: z.ZodString;
|
|
2179
|
+
currency: z.ZodString;
|
|
2180
|
+
grossMinor: z.ZodString;
|
|
2181
|
+
refundsMinor: z.ZodString;
|
|
2182
|
+
netMinor: z.ZodString;
|
|
2183
|
+
firstActivityAt: z.ZodString;
|
|
2184
|
+
lastActivityAt: z.ZodString;
|
|
2185
|
+
}, z.core.$strict>>;
|
|
2186
|
+
}, z.core.$strict>;
|
|
2187
|
+
declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
|
|
2188
|
+
date: z.ZodString;
|
|
2189
|
+
grossMinor: z.ZodString;
|
|
2190
|
+
refundsMinor: z.ZodString;
|
|
2191
|
+
netMinor: z.ZodString;
|
|
2192
|
+
}, z.core.$strict>;
|
|
2193
|
+
declare const HostEarningsTimeseriesResponseSchema: z.ZodObject<{
|
|
2194
|
+
granularity: z.ZodEnum<{
|
|
2195
|
+
daily: "daily";
|
|
2196
|
+
weekly: "weekly";
|
|
2197
|
+
}>;
|
|
2198
|
+
currency: z.ZodString;
|
|
2199
|
+
points: z.ZodArray<z.ZodObject<{
|
|
2200
|
+
date: z.ZodString;
|
|
2201
|
+
grossMinor: z.ZodString;
|
|
2202
|
+
refundsMinor: z.ZodString;
|
|
2203
|
+
netMinor: z.ZodString;
|
|
2204
|
+
}, z.core.$strict>>;
|
|
2205
|
+
}, z.core.$strict>;
|
|
2122
2206
|
declare const PublicEventStatusSchema: z.ZodEnum<{
|
|
2123
2207
|
LIVE: "LIVE";
|
|
2124
2208
|
UPCOMING: "UPCOMING";
|
|
@@ -2257,6 +2341,11 @@ declare const PublicEventsResponseSchema: z.ZodObject<{
|
|
|
2257
2341
|
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
2258
2342
|
}, z.core.$strip>>;
|
|
2259
2343
|
}, z.core.$strip>;
|
|
2344
|
+
declare const HostLivePreviewSchema: z.ZodObject<{
|
|
2345
|
+
playbackUrl: z.ZodURL;
|
|
2346
|
+
token: z.ZodString;
|
|
2347
|
+
expiresAt: z.ZodISODateTime;
|
|
2348
|
+
}, z.core.$strip>;
|
|
2260
2349
|
|
|
2261
2350
|
type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
|
|
2262
2351
|
type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
|
|
@@ -2290,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
|
|
|
2290
2379
|
type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
|
|
2291
2380
|
type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
|
|
2292
2381
|
type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
|
|
2382
|
+
type HostEarningsSummaryQuery = z.infer<typeof HostEarningsSummaryQuerySchema>;
|
|
2383
|
+
type HostEarningsBreakdownQuery = z.infer<typeof HostEarningsBreakdownQuerySchema>;
|
|
2384
|
+
type HostEarningsTimeseriesQuery = z.infer<typeof HostEarningsTimeseriesQuerySchema>;
|
|
2385
|
+
type HostEarningsSummaryResponse = z.infer<typeof HostEarningsSummaryResponseSchema>;
|
|
2386
|
+
type HostEarningsBreakdownItem = z.infer<typeof HostEarningsBreakdownItemSchema>;
|
|
2387
|
+
type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownResponseSchema>;
|
|
2388
|
+
type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
|
|
2389
|
+
type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
|
|
2390
|
+
type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
|
|
2293
2391
|
|
|
2294
|
-
export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|
|
2392
|
+
export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
|
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
|
@@ -590,6 +590,58 @@ declare const HostProductionCrewItemSchema: z.ZodObject<{
|
|
|
590
590
|
eventId: z.ZodUUID;
|
|
591
591
|
eventTitle: z.ZodString;
|
|
592
592
|
}, z.core.$strip>;
|
|
593
|
+
declare const HostEventAudienceResponseSchema: z.ZodObject<{
|
|
594
|
+
eventId: z.ZodUUID;
|
|
595
|
+
totalViewers: z.ZodNumber;
|
|
596
|
+
uniqueViewers: z.ZodNumber;
|
|
597
|
+
peakConcurrent: z.ZodNumber;
|
|
598
|
+
registeredCount: z.ZodNumber;
|
|
599
|
+
paidCount: z.ZodNumber;
|
|
600
|
+
refundedCount: z.ZodNumber;
|
|
601
|
+
returningViewerCount: z.ZodNullable<z.ZodNumber>;
|
|
602
|
+
highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
|
|
603
|
+
grossRevenueMinor: z.ZodString;
|
|
604
|
+
currency: z.ZodString;
|
|
605
|
+
computedAt: z.ZodISODateTime;
|
|
606
|
+
}, z.core.$strip>;
|
|
607
|
+
declare const HostEventReplayPerformanceResponseSchema: z.ZodObject<{
|
|
608
|
+
eventId: z.ZodUUID;
|
|
609
|
+
totalReplayViewers: z.ZodNumber;
|
|
610
|
+
completedViews: z.ZodNumber;
|
|
611
|
+
avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
|
|
612
|
+
totalWatchTimeSec: z.ZodNumber;
|
|
613
|
+
activeReplayPurchases: z.ZodNumber;
|
|
614
|
+
replayRevenueMinor: z.ZodString;
|
|
615
|
+
currency: z.ZodString;
|
|
616
|
+
computedAt: z.ZodISODateTime;
|
|
617
|
+
}, z.core.$strip>;
|
|
618
|
+
declare const HostEventDashboardPostEventBlockSchema: z.ZodObject<{
|
|
619
|
+
audience: z.ZodNullable<z.ZodObject<{
|
|
620
|
+
eventId: z.ZodUUID;
|
|
621
|
+
totalViewers: z.ZodNumber;
|
|
622
|
+
uniqueViewers: z.ZodNumber;
|
|
623
|
+
peakConcurrent: z.ZodNumber;
|
|
624
|
+
registeredCount: z.ZodNumber;
|
|
625
|
+
paidCount: z.ZodNumber;
|
|
626
|
+
refundedCount: z.ZodNumber;
|
|
627
|
+
returningViewerCount: z.ZodNullable<z.ZodNumber>;
|
|
628
|
+
highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
|
|
629
|
+
grossRevenueMinor: z.ZodString;
|
|
630
|
+
currency: z.ZodString;
|
|
631
|
+
computedAt: z.ZodISODateTime;
|
|
632
|
+
}, z.core.$strip>>;
|
|
633
|
+
replayPerformance: z.ZodNullable<z.ZodObject<{
|
|
634
|
+
eventId: z.ZodUUID;
|
|
635
|
+
totalReplayViewers: z.ZodNumber;
|
|
636
|
+
completedViews: z.ZodNumber;
|
|
637
|
+
avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
|
|
638
|
+
totalWatchTimeSec: z.ZodNumber;
|
|
639
|
+
activeReplayPurchases: z.ZodNumber;
|
|
640
|
+
replayRevenueMinor: z.ZodString;
|
|
641
|
+
currency: z.ZodString;
|
|
642
|
+
computedAt: z.ZodISODateTime;
|
|
643
|
+
}, z.core.$strip>>;
|
|
644
|
+
}, z.core.$strip>;
|
|
593
645
|
declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
|
|
594
646
|
totalCount: z.ZodNumber;
|
|
595
647
|
pageNumber: z.ZodNumber;
|
|
@@ -741,6 +793,33 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
741
793
|
shareableUrl: z.ZodString;
|
|
742
794
|
slug: z.ZodString;
|
|
743
795
|
}, z.core.$strip>;
|
|
796
|
+
postEvent: z.ZodNullable<z.ZodObject<{
|
|
797
|
+
audience: z.ZodNullable<z.ZodObject<{
|
|
798
|
+
eventId: z.ZodUUID;
|
|
799
|
+
totalViewers: z.ZodNumber;
|
|
800
|
+
uniqueViewers: z.ZodNumber;
|
|
801
|
+
peakConcurrent: z.ZodNumber;
|
|
802
|
+
registeredCount: z.ZodNumber;
|
|
803
|
+
paidCount: z.ZodNumber;
|
|
804
|
+
refundedCount: z.ZodNumber;
|
|
805
|
+
returningViewerCount: z.ZodNullable<z.ZodNumber>;
|
|
806
|
+
highValueBuyerCount: z.ZodNullable<z.ZodNumber>;
|
|
807
|
+
grossRevenueMinor: z.ZodString;
|
|
808
|
+
currency: z.ZodString;
|
|
809
|
+
computedAt: z.ZodISODateTime;
|
|
810
|
+
}, z.core.$strip>>;
|
|
811
|
+
replayPerformance: z.ZodNullable<z.ZodObject<{
|
|
812
|
+
eventId: z.ZodUUID;
|
|
813
|
+
totalReplayViewers: z.ZodNumber;
|
|
814
|
+
completedViews: z.ZodNumber;
|
|
815
|
+
avgWatchProgressPct: z.ZodNullable<z.ZodNumber>;
|
|
816
|
+
totalWatchTimeSec: z.ZodNumber;
|
|
817
|
+
activeReplayPurchases: z.ZodNumber;
|
|
818
|
+
replayRevenueMinor: z.ZodString;
|
|
819
|
+
currency: z.ZodString;
|
|
820
|
+
computedAt: z.ZodISODateTime;
|
|
821
|
+
}, z.core.$strip>>;
|
|
822
|
+
}, z.core.$strip>>;
|
|
744
823
|
}, z.core.$strip>;
|
|
745
824
|
declare const HostEventReadinessResponseSchema: z.ZodObject<{
|
|
746
825
|
progress: z.ZodNumber;
|
|
@@ -1043,6 +1122,47 @@ declare const HostLiveConsolePayloadSchema: z.ZodObject<{
|
|
|
1043
1122
|
}>;
|
|
1044
1123
|
replayAvailableAt: z.ZodNullable<z.ZodISODateTime>;
|
|
1045
1124
|
}, z.core.$strip>>;
|
|
1125
|
+
livePreview: z.ZodNullable<z.ZodObject<{
|
|
1126
|
+
playbackUrl: z.ZodURL;
|
|
1127
|
+
token: z.ZodString;
|
|
1128
|
+
expiresAt: z.ZodISODateTime;
|
|
1129
|
+
}, z.core.$strip>>;
|
|
1130
|
+
}, z.core.$strip>;
|
|
1131
|
+
declare const HostEventEngagementTimelineQuerySchema: z.ZodObject<{
|
|
1132
|
+
from: z.ZodOptional<z.ZodISODateTime>;
|
|
1133
|
+
to: z.ZodOptional<z.ZodISODateTime>;
|
|
1134
|
+
}, z.core.$strip>;
|
|
1135
|
+
declare const HostEventEngagementTimelineBucketSchema: z.ZodObject<{
|
|
1136
|
+
bucketStart: z.ZodISODateTime;
|
|
1137
|
+
concurrentViewers: z.ZodNumber;
|
|
1138
|
+
chatMessages: z.ZodNullable<z.ZodNumber>;
|
|
1139
|
+
reactions: z.ZodNullable<z.ZodNumber>;
|
|
1140
|
+
bitrateKbps: z.ZodNullable<z.ZodNumber>;
|
|
1141
|
+
ingestHealth: z.ZodNullable<z.ZodEnum<{
|
|
1142
|
+
HEALTHY: "HEALTHY";
|
|
1143
|
+
DEGRADED: "DEGRADED";
|
|
1144
|
+
INGEST_DOWN: "INGEST_DOWN";
|
|
1145
|
+
}>>;
|
|
1146
|
+
resolution: z.ZodNullable<z.ZodString>;
|
|
1147
|
+
}, z.core.$strip>;
|
|
1148
|
+
declare const HostEventEngagementTimelineResponseSchema: z.ZodObject<{
|
|
1149
|
+
eventId: z.ZodUUID;
|
|
1150
|
+
from: z.ZodISODateTime;
|
|
1151
|
+
to: z.ZodISODateTime;
|
|
1152
|
+
granularity: z.ZodLiteral<"minute">;
|
|
1153
|
+
buckets: z.ZodArray<z.ZodObject<{
|
|
1154
|
+
bucketStart: z.ZodISODateTime;
|
|
1155
|
+
concurrentViewers: z.ZodNumber;
|
|
1156
|
+
chatMessages: z.ZodNullable<z.ZodNumber>;
|
|
1157
|
+
reactions: z.ZodNullable<z.ZodNumber>;
|
|
1158
|
+
bitrateKbps: z.ZodNullable<z.ZodNumber>;
|
|
1159
|
+
ingestHealth: z.ZodNullable<z.ZodEnum<{
|
|
1160
|
+
HEALTHY: "HEALTHY";
|
|
1161
|
+
DEGRADED: "DEGRADED";
|
|
1162
|
+
INGEST_DOWN: "INGEST_DOWN";
|
|
1163
|
+
}>>;
|
|
1164
|
+
resolution: z.ZodNullable<z.ZodString>;
|
|
1165
|
+
}, z.core.$strip>>;
|
|
1046
1166
|
}, z.core.$strip>;
|
|
1047
1167
|
|
|
1048
1168
|
type HostEventsTab = z.infer<typeof HostEventsTabSchema>;
|
|
@@ -1098,5 +1218,10 @@ type HostLiveConsoleAlert = z.infer<typeof HostLiveConsoleAlertSchema>;
|
|
|
1098
1218
|
type HostLiveConsoleChat = z.infer<typeof HostLiveConsoleChatSchema>;
|
|
1099
1219
|
type HostLiveConsoleEnded = z.infer<typeof HostLiveConsoleEndedSchema>;
|
|
1100
1220
|
type HostLiveConsolePayload = z.infer<typeof HostLiveConsolePayloadSchema>;
|
|
1221
|
+
type HostEventAudienceResponse = z.infer<typeof HostEventAudienceResponseSchema>;
|
|
1222
|
+
type HostEventEngagementTimeline = z.infer<typeof HostEventEngagementTimelineQuerySchema>;
|
|
1223
|
+
type HostEventReplayPerformanceResponse = z.infer<typeof HostEventReplayPerformanceResponseSchema>;
|
|
1224
|
+
type HostEventEngagementTimelineResponse = z.infer<typeof HostEventEngagementTimelineResponseSchema>;
|
|
1225
|
+
type HostEventEngagementTimelineBucket = z.infer<typeof HostEventEngagementTimelineBucketSchema>;
|
|
1101
1226
|
|
|
1102
|
-
export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
|
|
1227
|
+
export { type EndedReason, EndedReasonSchema, type EndedReplayState, EndedReplayStateSchema, type EventStreamAlertKind, EventStreamAlertKindSchema, type EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventAudienceResponse, HostEventAudienceResponseSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, HostEventDashboardPostEventBlockSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventEngagementTimeline, type HostEventEngagementTimelineBucket, HostEventEngagementTimelineBucketSchema, HostEventEngagementTimelineQuerySchema, type HostEventEngagementTimelineResponse, HostEventEngagementTimelineResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventReplayPerformanceResponse, HostEventReplayPerformanceResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostLiveConsoleAlert, HostLiveConsoleAlertSchema, type HostLiveConsoleChat, HostLiveConsoleChatSchema, type HostLiveConsoleControls, HostLiveConsoleControlsSchema, type HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, type HostLiveConsoleEnded, HostLiveConsoleEndedSchema, type HostLiveConsoleEvent, HostLiveConsoleEventSchema, type HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, type HostLiveConsolePayload, HostLiveConsolePayloadSchema, type HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type LiveConsoleSlice, LiveConsoleSliceSchema, type LiveIngestHealth, LiveIngestHealthSchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
|