@mappedin/events 6.0.1-beta.55 → 6.0.1-beta.56
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/lib/esm/index.d.ts +3 -87
- package/lib/esm/index.js +1 -1
- package/package.json +3 -2
- package/lib/esm/browser-VNXC5UDX.js +0 -1
- package/lib/esm/chunk-MQ7SOS3O.js +0 -1
package/lib/esm/index.d.ts
CHANGED
|
@@ -175,100 +175,16 @@ declare module '@mappedin/events/events/src/utils' {
|
|
|
175
175
|
large: z.ZodOptional<z.ZodString>;
|
|
176
176
|
xlarge: z.ZodOptional<z.ZodString>;
|
|
177
177
|
xxlarge: z.ZodOptional<z.ZodString>;
|
|
178
|
-
},
|
|
179
|
-
original: string;
|
|
180
|
-
xxsmall?: string | undefined;
|
|
181
|
-
xsmall?: string | undefined;
|
|
182
|
-
small?: string | undefined;
|
|
183
|
-
medium?: string | undefined;
|
|
184
|
-
large?: string | undefined;
|
|
185
|
-
xlarge?: string | undefined;
|
|
186
|
-
xxlarge?: string | undefined;
|
|
187
|
-
}, {
|
|
188
|
-
original: string;
|
|
189
|
-
xxsmall?: string | undefined;
|
|
190
|
-
xsmall?: string | undefined;
|
|
191
|
-
small?: string | undefined;
|
|
192
|
-
medium?: string | undefined;
|
|
193
|
-
large?: string | undefined;
|
|
194
|
-
xlarge?: string | undefined;
|
|
195
|
-
xxlarge?: string | undefined;
|
|
196
|
-
}>>;
|
|
178
|
+
}, z.core.$strip>>;
|
|
197
179
|
video: z.ZodOptional<z.ZodObject<{
|
|
198
180
|
width: z.ZodNumber;
|
|
199
181
|
height: z.ZodNumber;
|
|
200
182
|
thumbnail: z.ZodString;
|
|
201
183
|
content: z.ZodString;
|
|
202
184
|
original: z.ZodString;
|
|
203
|
-
},
|
|
204
|
-
original: string;
|
|
205
|
-
width: number;
|
|
206
|
-
height: number;
|
|
207
|
-
thumbnail: string;
|
|
208
|
-
content: string;
|
|
209
|
-
}, {
|
|
210
|
-
original: string;
|
|
211
|
-
width: number;
|
|
212
|
-
height: number;
|
|
213
|
-
thumbnail: string;
|
|
214
|
-
content: string;
|
|
215
|
-
}>>;
|
|
185
|
+
}, z.core.$strip>>;
|
|
216
186
|
_locale: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
217
|
-
},
|
|
218
|
-
type: string;
|
|
219
|
-
id: string;
|
|
220
|
-
name: string;
|
|
221
|
-
startDate: number;
|
|
222
|
-
endDate: number;
|
|
223
|
-
externalId?: string | undefined;
|
|
224
|
-
description?: string | undefined;
|
|
225
|
-
location?: string | undefined;
|
|
226
|
-
image?: {
|
|
227
|
-
original: string;
|
|
228
|
-
xxsmall?: string | undefined;
|
|
229
|
-
xsmall?: string | undefined;
|
|
230
|
-
small?: string | undefined;
|
|
231
|
-
medium?: string | undefined;
|
|
232
|
-
large?: string | undefined;
|
|
233
|
-
xlarge?: string | undefined;
|
|
234
|
-
xxlarge?: string | undefined;
|
|
235
|
-
} | undefined;
|
|
236
|
-
video?: {
|
|
237
|
-
original: string;
|
|
238
|
-
width: number;
|
|
239
|
-
height: number;
|
|
240
|
-
thumbnail: string;
|
|
241
|
-
content: string;
|
|
242
|
-
} | undefined;
|
|
243
|
-
_locale?: Record<string, Record<string, unknown>> | undefined;
|
|
244
|
-
}, {
|
|
245
|
-
type: string;
|
|
246
|
-
id: string;
|
|
247
|
-
name: string;
|
|
248
|
-
startDate: number;
|
|
249
|
-
endDate: number;
|
|
250
|
-
externalId?: string | undefined;
|
|
251
|
-
description?: string | undefined;
|
|
252
|
-
location?: string | undefined;
|
|
253
|
-
image?: {
|
|
254
|
-
original: string;
|
|
255
|
-
xxsmall?: string | undefined;
|
|
256
|
-
xsmall?: string | undefined;
|
|
257
|
-
small?: string | undefined;
|
|
258
|
-
medium?: string | undefined;
|
|
259
|
-
large?: string | undefined;
|
|
260
|
-
xlarge?: string | undefined;
|
|
261
|
-
xxlarge?: string | undefined;
|
|
262
|
-
} | undefined;
|
|
263
|
-
video?: {
|
|
264
|
-
original: string;
|
|
265
|
-
width: number;
|
|
266
|
-
height: number;
|
|
267
|
-
thumbnail: string;
|
|
268
|
-
content: string;
|
|
269
|
-
} | undefined;
|
|
270
|
-
_locale?: Record<string, Record<string, unknown>> | undefined;
|
|
271
|
-
}>;
|
|
187
|
+
}, z.core.$strip>;
|
|
272
188
|
export type RawEvent = z.infer<typeof RawEventSchema>;
|
|
273
189
|
/**
|
|
274
190
|
* The default fields to fetch for each event.
|