@livdot-tech/contracts 1.9.22 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/auth/index.js +1 -1
  2. package/dist/auth/index.mjs +1 -1
  3. package/dist/chunk-4JPHGCGI.mjs +2 -0
  4. package/dist/chunk-4JPHGCGI.mjs.map +1 -0
  5. package/dist/chunk-7BM7S4JR.mjs +2 -0
  6. package/dist/chunk-7BM7S4JR.mjs.map +1 -0
  7. package/dist/{chunk-PMTVFD4Q.mjs → chunk-EQ3TWNQ4.mjs} +2 -2
  8. package/dist/{chunk-PMTVFD4Q.mjs.map → chunk-EQ3TWNQ4.mjs.map} +1 -1
  9. package/dist/chunk-JWA3K4Z7.mjs +2 -0
  10. package/dist/chunk-JWA3K4Z7.mjs.map +1 -0
  11. package/dist/{chunk-EZFD2I7V.js → chunk-MPHWRG3V.js} +2 -2
  12. package/dist/chunk-MPHWRG3V.js.map +1 -0
  13. package/dist/chunk-QVP3RJFZ.js +2 -0
  14. package/dist/chunk-QVP3RJFZ.js.map +1 -0
  15. package/dist/{chunk-GR74BEG3.js → chunk-Y3GCX2TR.js} +2 -2
  16. package/dist/{chunk-GR74BEG3.js.map → chunk-Y3GCX2TR.js.map} +1 -1
  17. package/dist/chunk-ZKQRUTEW.js +2 -0
  18. package/dist/chunk-ZKQRUTEW.js.map +1 -0
  19. package/dist/dispute/index.d.mts +135 -1
  20. package/dist/dispute/index.d.ts +135 -1
  21. package/dist/dispute/index.js +1 -1
  22. package/dist/dispute/index.mjs +1 -1
  23. package/dist/event/index.d.mts +240 -1
  24. package/dist/event/index.d.ts +240 -1
  25. package/dist/event/index.js +1 -1
  26. package/dist/event/index.mjs +1 -1
  27. package/dist/host/index.d.mts +5 -0
  28. package/dist/host/index.d.ts +5 -0
  29. package/dist/host/index.js +1 -1
  30. package/dist/host/index.mjs +1 -1
  31. package/dist/index.d.mts +2 -2
  32. package/dist/index.d.ts +2 -2
  33. package/dist/index.js +1 -1
  34. package/dist/index.mjs +1 -1
  35. package/dist/payment/index.js +1 -1
  36. package/dist/payment/index.mjs +1 -1
  37. package/dist/user/index.js +1 -1
  38. package/dist/user/index.mjs +1 -1
  39. package/package.json +1 -1
  40. package/dist/chunk-7HBUII6V.js +0 -2
  41. package/dist/chunk-7HBUII6V.js.map +0 -1
  42. package/dist/chunk-CWGSFDFC.mjs +0 -2
  43. package/dist/chunk-CWGSFDFC.mjs.map +0 -1
  44. package/dist/chunk-EZFD2I7V.js.map +0 -1
  45. package/dist/chunk-QSHXY3NV.mjs +0 -2
  46. package/dist/chunk-QSHXY3NV.mjs.map +0 -1
  47. package/dist/chunk-T3BYBVTP.mjs +0 -2
  48. package/dist/chunk-T3BYBVTP.mjs.map +0 -1
  49. package/dist/chunk-ZOBM5OSW.js +0 -2
  50. package/dist/chunk-ZOBM5OSW.js.map +0 -1
@@ -43,7 +43,141 @@ declare const DisputeResponseSchema: z.ZodObject<{
43
43
  resolvedAt: z.ZodOptional<z.ZodISODateTime>;
44
44
  createdAt: z.ZodISODateTime;
45
45
  }, z.core.$strip>;
46
+ declare const DISPUTE_DETAIL_MAX_LENGTH = 500;
47
+ declare const DisputeReasonSchema: z.ZodEnum<{
48
+ OTHER: "OTHER";
49
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
50
+ POOR_QUALITY: "POOR_QUALITY";
51
+ ACCESS_ISSUE: "ACCESS_ISSUE";
52
+ }>;
53
+ declare const DisputeStateSchema: z.ZodEnum<{
54
+ EXPIRED: "EXPIRED";
55
+ OPEN: "OPEN";
56
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
57
+ RESOLVED_HOST: "RESOLVED_HOST";
58
+ }>;
59
+ declare const DisputeOutcomeSchema: z.ZodEnum<{
60
+ REFUNDED: "REFUNDED";
61
+ DENIED: "DENIED";
62
+ PARTIAL_REFUND: "PARTIAL_REFUND";
63
+ }>;
64
+ declare const OpenDisputeRequestSchema: z.ZodObject<{
65
+ entitlementKind: z.ZodEnum<{
66
+ readonly REGISTRATION: "REGISTRATION";
67
+ readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
68
+ }>;
69
+ reason: z.ZodEnum<{
70
+ OTHER: "OTHER";
71
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
72
+ POOR_QUALITY: "POOR_QUALITY";
73
+ ACCESS_ISSUE: "ACCESS_ISSUE";
74
+ }>;
75
+ detail: z.ZodOptional<z.ZodString>;
76
+ }, z.core.$strict>;
77
+ declare const AdminDisputeResponseSchema: z.ZodObject<{
78
+ id: z.ZodUUID;
79
+ entitlementId: z.ZodString;
80
+ eventId: z.ZodUUID;
81
+ userId: z.ZodUUID;
82
+ reason: z.ZodEnum<{
83
+ OTHER: "OTHER";
84
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
85
+ POOR_QUALITY: "POOR_QUALITY";
86
+ ACCESS_ISSUE: "ACCESS_ISSUE";
87
+ }>;
88
+ detail: z.ZodNullable<z.ZodString>;
89
+ state: z.ZodEnum<{
90
+ EXPIRED: "EXPIRED";
91
+ OPEN: "OPEN";
92
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
93
+ RESOLVED_HOST: "RESOLVED_HOST";
94
+ }>;
95
+ resolvedAt: z.ZodNullable<z.ZodISODateTime>;
96
+ resolutionOutcome: z.ZodNullable<z.ZodEnum<{
97
+ REFUNDED: "REFUNDED";
98
+ DENIED: "DENIED";
99
+ PARTIAL_REFUND: "PARTIAL_REFUND";
100
+ }>>;
101
+ correlationId: z.ZodString;
102
+ createdAt: z.ZodISODateTime;
103
+ updatedAt: z.ZodISODateTime;
104
+ }, z.core.$strict>;
105
+ declare const MyDisputesQuerySchema: z.ZodObject<{
106
+ state: z.ZodOptional<z.ZodEnum<{
107
+ EXPIRED: "EXPIRED";
108
+ OPEN: "OPEN";
109
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
110
+ RESOLVED_HOST: "RESOLVED_HOST";
111
+ }>>;
112
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
113
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
114
+ }, z.core.$strict>;
115
+ declare const AdminDisputesQuerySchema: z.ZodObject<{
116
+ state: z.ZodOptional<z.ZodEnum<{
117
+ EXPIRED: "EXPIRED";
118
+ OPEN: "OPEN";
119
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
120
+ RESOLVED_HOST: "RESOLVED_HOST";
121
+ }>>;
122
+ eventId: z.ZodOptional<z.ZodUUID>;
123
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
124
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
125
+ }, z.core.$strict>;
126
+ declare const ResolveDisputeRequestSchema: z.ZodObject<{
127
+ outcome: z.ZodEnum<{
128
+ REFUNDED: "REFUNDED";
129
+ DENIED: "DENIED";
130
+ PARTIAL_REFUND: "PARTIAL_REFUND";
131
+ }>;
132
+ refundId: z.ZodOptional<z.ZodString>;
133
+ resolutionNote: z.ZodOptional<z.ZodString>;
134
+ }, z.core.$strict>;
135
+ declare const PagedDisputesResponseSchema: z.ZodObject<{
136
+ totalCount: z.ZodNumber;
137
+ pageNumber: z.ZodNumber;
138
+ pageSize: z.ZodNumber;
139
+ totalPages: z.ZodNumber;
140
+ hasPreviousPage: z.ZodBoolean;
141
+ hasNextPage: z.ZodBoolean;
142
+ items: z.ZodArray<z.ZodObject<{
143
+ id: z.ZodUUID;
144
+ entitlementId: z.ZodString;
145
+ eventId: z.ZodUUID;
146
+ userId: z.ZodUUID;
147
+ reason: z.ZodEnum<{
148
+ OTHER: "OTHER";
149
+ EVENT_DID_NOT_RUN: "EVENT_DID_NOT_RUN";
150
+ POOR_QUALITY: "POOR_QUALITY";
151
+ ACCESS_ISSUE: "ACCESS_ISSUE";
152
+ }>;
153
+ detail: z.ZodNullable<z.ZodString>;
154
+ state: z.ZodEnum<{
155
+ EXPIRED: "EXPIRED";
156
+ OPEN: "OPEN";
157
+ RESOLVED_CUSTOMER: "RESOLVED_CUSTOMER";
158
+ RESOLVED_HOST: "RESOLVED_HOST";
159
+ }>;
160
+ resolvedAt: z.ZodNullable<z.ZodISODateTime>;
161
+ resolutionOutcome: z.ZodNullable<z.ZodEnum<{
162
+ REFUNDED: "REFUNDED";
163
+ DENIED: "DENIED";
164
+ PARTIAL_REFUND: "PARTIAL_REFUND";
165
+ }>>;
166
+ correlationId: z.ZodString;
167
+ createdAt: z.ZodISODateTime;
168
+ updatedAt: z.ZodISODateTime;
169
+ }, z.core.$strict>>;
170
+ }, z.core.$strict>;
46
171
 
47
172
  type DisputeResponse = z.infer<typeof DisputeResponseSchema>;
173
+ type DisputeReasonValue = z.infer<typeof DisputeReasonSchema>;
174
+ type DisputeStateValue = z.infer<typeof DisputeStateSchema>;
175
+ type DisputeOutcomeValue = z.infer<typeof DisputeOutcomeSchema>;
176
+ type OpenDisputeRequest = z.infer<typeof OpenDisputeRequestSchema>;
177
+ type AdminDisputeResponse = z.infer<typeof AdminDisputeResponseSchema>;
178
+ type MyDisputesQuery = z.infer<typeof MyDisputesQuerySchema>;
179
+ type AdminDisputesQuery = z.infer<typeof AdminDisputesQuerySchema>;
180
+ type ResolveDisputeRequest = z.infer<typeof ResolveDisputeRequestSchema>;
181
+ type PagedDisputesResponse = z.infer<typeof PagedDisputesResponseSchema>;
48
182
 
49
- export { type DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType };
183
+ export { type AdminDisputeResponse, AdminDisputeResponseSchema, type AdminDisputesQuery, AdminDisputesQuerySchema, DISPUTE_DETAIL_MAX_LENGTH, DisputeOutcomeSchema, type DisputeOutcomeValue, DisputeReasonSchema, type DisputeReasonValue, type DisputeResponse, DisputeResponseSchema, DisputeStateSchema, type DisputeStateValue, DisputeStatus, DisputeType, type MyDisputesQuery, MyDisputesQuerySchema, type OpenDisputeRequest, OpenDisputeRequestSchema, type PagedDisputesResponse, PagedDisputesResponseSchema, type ResolveDisputeRequest, ResolveDisputeRequestSchema };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkZOBM5OSW_js=require('../chunk-ZOBM5OSW.js');Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZOBM5OSW_js.c}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZOBM5OSW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZOBM5OSW_js.a}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkZKQRUTEW_js=require('../chunk-ZKQRUTEW.js');require('../chunk-QVP3RJFZ.js'),require('../chunk-244RJ2YJ.js'),require('../chunk-DQG37GYU.js');Object.defineProperty(exports,"AdminDisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.i}});Object.defineProperty(exports,"AdminDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.k}});Object.defineProperty(exports,"DISPUTE_DETAIL_MAX_LENGTH",{enumerable:true,get:function(){return chunkZKQRUTEW_js.d}});Object.defineProperty(exports,"DisputeOutcomeSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.g}});Object.defineProperty(exports,"DisputeReasonSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.e}});Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.c}});Object.defineProperty(exports,"DisputeStateSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.f}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZKQRUTEW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZKQRUTEW_js.a}});Object.defineProperty(exports,"MyDisputesQuerySchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.j}});Object.defineProperty(exports,"OpenDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.h}});Object.defineProperty(exports,"PagedDisputesResponseSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.m}});Object.defineProperty(exports,"ResolveDisputeRequestSchema",{enumerable:true,get:function(){return chunkZKQRUTEW_js.l}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{c as DisputeResponseSchema,b as DisputeStatus,a as DisputeType}from'../chunk-CWGSFDFC.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{i as AdminDisputeResponseSchema,k as AdminDisputesQuerySchema,d as DISPUTE_DETAIL_MAX_LENGTH,g as DisputeOutcomeSchema,e as DisputeReasonSchema,c as DisputeResponseSchema,f as DisputeStateSchema,b as DisputeStatus,a as DisputeType,j as MyDisputesQuerySchema,h as OpenDisputeRequestSchema,m as PagedDisputesResponseSchema,l as ResolveDisputeRequestSchema}from'../chunk-4JPHGCGI.mjs';import'../chunk-7BM7S4JR.mjs';import'../chunk-73FCZRSF.mjs';import'../chunk-KPEKHJVS.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -113,6 +113,11 @@ declare const SupportedCurrency: {
113
113
  readonly EUR: "EUR";
114
114
  };
115
115
  type SupportedCurrency = (typeof SupportedCurrency)[keyof typeof SupportedCurrency];
116
+ declare const EntitlementKind: {
117
+ readonly REGISTRATION: "REGISTRATION";
118
+ readonly REPLAY_PURCHASE: "REPLAY_PURCHASE";
119
+ };
120
+ type EntitlementKind = (typeof EntitlementKind)[keyof typeof EntitlementKind];
116
121
 
117
122
  declare const CreateEventRequestSchema: z.ZodObject<{
118
123
  title: z.ZodString;
@@ -2119,7 +2124,232 @@ declare const HostEventWizardPatchSchema: z.ZodUnion<readonly [z.ZodObject<{
2119
2124
  }, z.core.$strip>, z.ZodObject<{
2120
2125
  step: z.ZodLiteral<4>;
2121
2126
  }, z.core.$strip>]>;
2127
+ declare const HostEarningsSummaryQuerySchema: z.ZodObject<{
2128
+ from: z.ZodString;
2129
+ to: z.ZodString;
2130
+ eventId: z.ZodOptional<z.ZodUUID>;
2131
+ currency: z.ZodOptional<z.ZodString>;
2132
+ }, z.core.$strict>;
2133
+ declare const HostEarningsBreakdownQuerySchema: z.ZodObject<{
2134
+ from: z.ZodString;
2135
+ to: z.ZodString;
2136
+ currency: z.ZodOptional<z.ZodString>;
2137
+ pageNumber: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2138
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2139
+ }, z.core.$strict>;
2140
+ declare const HostEarningsTimeseriesQuerySchema: z.ZodObject<{
2141
+ from: z.ZodString;
2142
+ to: z.ZodString;
2143
+ granularity: z.ZodEnum<{
2144
+ daily: "daily";
2145
+ weekly: "weekly";
2146
+ }>;
2147
+ currency: z.ZodOptional<z.ZodString>;
2148
+ }, z.core.$strict>;
2149
+ declare const HostEarningsSummaryResponseSchema: z.ZodObject<{
2150
+ from: z.ZodString;
2151
+ to: z.ZodString;
2152
+ currency: z.ZodString;
2153
+ grossMinor: z.ZodString;
2154
+ refundsMinor: z.ZodString;
2155
+ netMinor: z.ZodString;
2156
+ availableMinor: z.ZodString;
2157
+ pendingMinor: z.ZodString;
2158
+ }, z.core.$strict>;
2159
+ declare const HostEarningsBreakdownItemSchema: z.ZodObject<{
2160
+ eventId: z.ZodUUID;
2161
+ eventTitle: z.ZodString;
2162
+ currency: z.ZodString;
2163
+ grossMinor: z.ZodString;
2164
+ refundsMinor: z.ZodString;
2165
+ netMinor: z.ZodString;
2166
+ firstActivityAt: z.ZodString;
2167
+ lastActivityAt: z.ZodString;
2168
+ }, z.core.$strict>;
2169
+ declare const HostEarningsBreakdownResponseSchema: z.ZodObject<{
2170
+ totalCount: z.ZodNumber;
2171
+ pageNumber: z.ZodNumber;
2172
+ pageSize: z.ZodNumber;
2173
+ totalPages: z.ZodNumber;
2174
+ hasPreviousPage: z.ZodBoolean;
2175
+ hasNextPage: z.ZodBoolean;
2176
+ items: z.ZodArray<z.ZodObject<{
2177
+ eventId: z.ZodUUID;
2178
+ eventTitle: z.ZodString;
2179
+ currency: z.ZodString;
2180
+ grossMinor: z.ZodString;
2181
+ refundsMinor: z.ZodString;
2182
+ netMinor: z.ZodString;
2183
+ firstActivityAt: z.ZodString;
2184
+ lastActivityAt: z.ZodString;
2185
+ }, z.core.$strict>>;
2186
+ }, z.core.$strict>;
2187
+ declare const HostEarningsTimeseriesPointSchema: z.ZodObject<{
2188
+ date: z.ZodString;
2189
+ grossMinor: z.ZodString;
2190
+ refundsMinor: z.ZodString;
2191
+ netMinor: z.ZodString;
2192
+ }, z.core.$strict>;
2193
+ declare const HostEarningsTimeseriesResponseSchema: z.ZodObject<{
2194
+ granularity: z.ZodEnum<{
2195
+ daily: "daily";
2196
+ weekly: "weekly";
2197
+ }>;
2198
+ currency: z.ZodString;
2199
+ points: z.ZodArray<z.ZodObject<{
2200
+ date: z.ZodString;
2201
+ grossMinor: z.ZodString;
2202
+ refundsMinor: z.ZodString;
2203
+ netMinor: z.ZodString;
2204
+ }, z.core.$strict>>;
2205
+ }, z.core.$strict>;
2206
+ declare const PublicEventStatusSchema: z.ZodEnum<{
2207
+ LIVE: "LIVE";
2208
+ UPCOMING: "UPCOMING";
2209
+ PAST: "PAST";
2210
+ ALL: "ALL";
2211
+ }>;
2212
+ declare const PublicEventCardSchema: z.ZodObject<{
2213
+ id: z.ZodUUID;
2214
+ title: z.ZodString;
2215
+ description: z.ZodNullable<z.ZodString>;
2216
+ coverImageUrl: z.ZodNullable<z.ZodURL>;
2217
+ category: z.ZodEnum<{
2218
+ readonly ART: "ART";
2219
+ readonly TECHNOLOGY: "TECHNOLOGY";
2220
+ readonly SCIENCE: "SCIENCE";
2221
+ readonly TRAVEL: "TRAVEL";
2222
+ readonly HISTORY: "HISTORY";
2223
+ readonly LITERATURE: "LITERATURE";
2224
+ readonly COOKING: "COOKING";
2225
+ readonly FITNESS: "FITNESS";
2226
+ readonly PHOTOGRAPHY: "PHOTOGRAPHY";
2227
+ readonly GARDENING: "GARDENING";
2228
+ readonly EDUCATION: "EDUCATION";
2229
+ readonly FASHION: "FASHION";
2230
+ readonly MOVIES: "MOVIES";
2231
+ readonly SPORTS: "SPORTS";
2232
+ readonly POLITICS: "POLITICS";
2233
+ readonly HEALTH: "HEALTH";
2234
+ readonly GAMING: "GAMING";
2235
+ readonly FINANCE: "FINANCE";
2236
+ readonly NATURE: "NATURE";
2237
+ readonly CONCERT: "CONCERT";
2238
+ readonly FESTIVAL: "FESTIVAL";
2239
+ readonly WEDDING: "WEDDING";
2240
+ readonly CORPORATE: "CORPORATE";
2241
+ readonly RELIGIOUS: "RELIGIOUS";
2242
+ readonly OTHER: "OTHER";
2243
+ }>;
2244
+ accessModel: z.ZodEnum<{
2245
+ readonly FREE: "FREE";
2246
+ readonly PAID: "PAID";
2247
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
2248
+ }>;
2249
+ ticketPrice: z.ZodNullable<z.ZodString>;
2250
+ currency: z.ZodString;
2251
+ isFeatured: z.ZodBoolean;
2252
+ scheduledStart: z.ZodISODateTime;
2253
+ hostDisplayName: z.ZodNullable<z.ZodString>;
2254
+ }, z.core.$strip>;
2255
+ declare const PublicEventsQuerySchema: z.ZodObject<{
2256
+ pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
2257
+ pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
2258
+ status: z.ZodDefault<z.ZodEnum<{
2259
+ LIVE: "LIVE";
2260
+ UPCOMING: "UPCOMING";
2261
+ PAST: "PAST";
2262
+ ALL: "ALL";
2263
+ }>>;
2264
+ category: z.ZodOptional<z.ZodEnum<{
2265
+ readonly ART: "ART";
2266
+ readonly TECHNOLOGY: "TECHNOLOGY";
2267
+ readonly SCIENCE: "SCIENCE";
2268
+ readonly TRAVEL: "TRAVEL";
2269
+ readonly HISTORY: "HISTORY";
2270
+ readonly LITERATURE: "LITERATURE";
2271
+ readonly COOKING: "COOKING";
2272
+ readonly FITNESS: "FITNESS";
2273
+ readonly PHOTOGRAPHY: "PHOTOGRAPHY";
2274
+ readonly GARDENING: "GARDENING";
2275
+ readonly EDUCATION: "EDUCATION";
2276
+ readonly FASHION: "FASHION";
2277
+ readonly MOVIES: "MOVIES";
2278
+ readonly SPORTS: "SPORTS";
2279
+ readonly POLITICS: "POLITICS";
2280
+ readonly HEALTH: "HEALTH";
2281
+ readonly GAMING: "GAMING";
2282
+ readonly FINANCE: "FINANCE";
2283
+ readonly NATURE: "NATURE";
2284
+ readonly CONCERT: "CONCERT";
2285
+ readonly FESTIVAL: "FESTIVAL";
2286
+ readonly WEDDING: "WEDDING";
2287
+ readonly CORPORATE: "CORPORATE";
2288
+ readonly RELIGIOUS: "RELIGIOUS";
2289
+ readonly OTHER: "OTHER";
2290
+ }>>;
2291
+ q: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string | undefined, string | undefined>>;
2292
+ }, z.core.$strip>;
2293
+ declare const PublicEventsResponseSchema: z.ZodObject<{
2294
+ totalCount: z.ZodNumber;
2295
+ pageNumber: z.ZodNumber;
2296
+ pageSize: z.ZodNumber;
2297
+ totalPages: z.ZodNumber;
2298
+ hasPreviousPage: z.ZodBoolean;
2299
+ hasNextPage: z.ZodBoolean;
2300
+ items: z.ZodArray<z.ZodObject<{
2301
+ id: z.ZodUUID;
2302
+ title: z.ZodString;
2303
+ description: z.ZodNullable<z.ZodString>;
2304
+ coverImageUrl: z.ZodNullable<z.ZodURL>;
2305
+ category: z.ZodEnum<{
2306
+ readonly ART: "ART";
2307
+ readonly TECHNOLOGY: "TECHNOLOGY";
2308
+ readonly SCIENCE: "SCIENCE";
2309
+ readonly TRAVEL: "TRAVEL";
2310
+ readonly HISTORY: "HISTORY";
2311
+ readonly LITERATURE: "LITERATURE";
2312
+ readonly COOKING: "COOKING";
2313
+ readonly FITNESS: "FITNESS";
2314
+ readonly PHOTOGRAPHY: "PHOTOGRAPHY";
2315
+ readonly GARDENING: "GARDENING";
2316
+ readonly EDUCATION: "EDUCATION";
2317
+ readonly FASHION: "FASHION";
2318
+ readonly MOVIES: "MOVIES";
2319
+ readonly SPORTS: "SPORTS";
2320
+ readonly POLITICS: "POLITICS";
2321
+ readonly HEALTH: "HEALTH";
2322
+ readonly GAMING: "GAMING";
2323
+ readonly FINANCE: "FINANCE";
2324
+ readonly NATURE: "NATURE";
2325
+ readonly CONCERT: "CONCERT";
2326
+ readonly FESTIVAL: "FESTIVAL";
2327
+ readonly WEDDING: "WEDDING";
2328
+ readonly CORPORATE: "CORPORATE";
2329
+ readonly RELIGIOUS: "RELIGIOUS";
2330
+ readonly OTHER: "OTHER";
2331
+ }>;
2332
+ accessModel: z.ZodEnum<{
2333
+ readonly FREE: "FREE";
2334
+ readonly PAID: "PAID";
2335
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
2336
+ }>;
2337
+ ticketPrice: z.ZodNullable<z.ZodString>;
2338
+ currency: z.ZodString;
2339
+ isFeatured: z.ZodBoolean;
2340
+ scheduledStart: z.ZodISODateTime;
2341
+ hostDisplayName: z.ZodNullable<z.ZodString>;
2342
+ }, z.core.$strip>>;
2343
+ }, z.core.$strip>;
2344
+ declare const HostLivePreviewSchema: z.ZodObject<{
2345
+ playbackUrl: z.ZodURL;
2346
+ token: z.ZodString;
2347
+ expiresAt: z.ZodISODateTime;
2348
+ }, z.core.$strip>;
2122
2349
 
2350
+ type PublicEventCard = z.infer<typeof PublicEventCardSchema>;
2351
+ type PublicEventsQuery = z.infer<typeof PublicEventsQuerySchema>;
2352
+ type PublicEventsResponse = z.infer<typeof PublicEventsResponseSchema>;
2123
2353
  type CreateEventRequest = z.infer<typeof CreateEventRequestSchema>;
2124
2354
  type UpdateEventRequest = z.infer<typeof UpdateEventRequestSchema>;
2125
2355
  type EventResponse = z.infer<typeof EventResponseSchema>;
@@ -2149,5 +2379,14 @@ type DiscoverSectionResponse = z.infer<typeof DiscoverSectionResponseSchema>;
2149
2379
  type DiscoverAggregateResponse = z.infer<typeof DiscoverAggregateResponseSchema>;
2150
2380
  type DiscoverResponse = z.infer<typeof DiscoverResponseSchema>;
2151
2381
  type PatchStreamControlRequest = z.infer<typeof PatchStreamControlRequestSchema>;
2382
+ type HostEarningsSummaryQuery = z.infer<typeof HostEarningsSummaryQuerySchema>;
2383
+ type HostEarningsBreakdownQuery = z.infer<typeof HostEarningsBreakdownQuerySchema>;
2384
+ type HostEarningsTimeseriesQuery = z.infer<typeof HostEarningsTimeseriesQuerySchema>;
2385
+ type HostEarningsSummaryResponse = z.infer<typeof HostEarningsSummaryResponseSchema>;
2386
+ type HostEarningsBreakdownItem = z.infer<typeof HostEarningsBreakdownItemSchema>;
2387
+ type HostEarningsBreakdownResponse = z.infer<typeof HostEarningsBreakdownResponseSchema>;
2388
+ type HostEarningsTimeseriesPoint = z.infer<typeof HostEarningsTimeseriesPointSchema>;
2389
+ type HostEarningsTimeseriesResponse = z.infer<typeof HostEarningsTimeseriesResponseSchema>;
2390
+ type HostLivePreview = z.infer<typeof HostLivePreviewSchema>;
2152
2391
 
2153
- export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEventWizardPatch, HostEventWizardPatchSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };
2392
+ export { type Category, CategorySchema, type CreateEventRequest, CreateEventRequestSchema, type Currency, CurrencySchema, type DiscoverAggregateResponse, DiscoverAggregateResponseSchema, DiscoverEvents, type DiscoverResponse, DiscoverResponseSchema, type DiscoverSectionResponse, DiscoverSectionResponseSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EntitlementKind, EventAccessModel, EventAllowListType, type EventCard, type EventCardCta, EventCardCtaSchema, EventCardSchema, EventCategory, EventProductionMode, EventReplayAccess, type EventResponse, EventResponseSchema, EventState, EventVisibility, type HostEarningsBreakdownItem, HostEarningsBreakdownItemSchema, type HostEarningsBreakdownQuery, HostEarningsBreakdownQuerySchema, type HostEarningsBreakdownResponse, HostEarningsBreakdownResponseSchema, type HostEarningsSummaryQuery, HostEarningsSummaryQuerySchema, type HostEarningsSummaryResponse, HostEarningsSummaryResponseSchema, type HostEarningsTimeseriesPoint, HostEarningsTimeseriesPointSchema, type HostEarningsTimeseriesQuery, HostEarningsTimeseriesQuerySchema, type HostEarningsTimeseriesResponse, HostEarningsTimeseriesResponseSchema, type HostEventWizardPatch, HostEventWizardPatchSchema, type HostLivePreview, HostLivePreviewSchema, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PatchStreamControlRequest, PatchStreamControlRequestSchema, type PlaybackResponse, PlaybackResponseSchema, type PublicEventCard, PublicEventCardSchema, PublicEventStatusSchema, type PublicEventsQuery, PublicEventsQuerySchema, type PublicEventsResponse, PublicEventsResponseSchema, type RegisterForEventRequest, RegisterForEventRequestSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type Replay, type ReplayPlayback, ReplayPlaybackSchema, ReplaySchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionRequest, StartViewingSessionRequestSchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, SupportedCurrency, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema, type Visibility, VisibilitySchema };