@codingfactory/socialkit-vue 0.5.3 → 0.6.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/src/index.ts CHANGED
@@ -264,6 +264,84 @@ export {
264
264
  createDiscussionStoreDefinition
265
265
  } from './stores/discussion.js'
266
266
 
267
+ // ── Media Types ──────────────────────────────────────────────────────────────
268
+ export type {
269
+ FilterConfig,
270
+ ImageEditorContext,
271
+ ImageEditorMetadata,
272
+ ImageEditorSaveData,
273
+ ImageFormat,
274
+ LocalMediaItem,
275
+ MediaItem,
276
+ MediaType,
277
+ MediaUpdate,
278
+ UploadedMedia
279
+ } from './types/media.js'
280
+
281
+ export {
282
+ isMediaItem
283
+ } from './types/media.js'
284
+
285
+ // ── Content Types ────────────────────────────────────────────────────────────
286
+ export type {
287
+ AlbumSummary,
288
+ BaseEntity,
289
+ Comment,
290
+ CommentListResponse,
291
+ CommentUpdate,
292
+ ContentActiveRecipeMeta,
293
+ ContentCurrentUser,
294
+ ContentMediaUploadService,
295
+ ContentStoreConfig,
296
+ ContentStoreLogger,
297
+ ContentStoreStorage,
298
+ FeedEntry,
299
+ PendingPost,
300
+ PendingPostStatus,
301
+ PendingVideoRender,
302
+ Post,
303
+ PostAuthor,
304
+ PostFeeling,
305
+ PostFeelingType,
306
+ PostFeelingValue,
307
+ PostListResponse,
308
+ PostMedia,
309
+ PostMeta,
310
+ PostResponse,
311
+ PostShareType,
312
+ PostUpdate,
313
+ PostWithPendingState,
314
+ ProcessPendingPostResult,
315
+ QuotedPostPreview,
316
+ Reaction,
317
+ RecoverablePendingDraft,
318
+ ScheduledPostEntry,
319
+ ScheduledPostsPage,
320
+ ThreadSummary,
321
+ VideoRenderStatus
322
+ } from './types/content.js'
323
+
324
+ export {
325
+ isComment,
326
+ isPost,
327
+ PostVisibility,
328
+ ReactionKind
329
+ } from './types/content.js'
330
+
331
+ // ── Content API Types ────────────────────────────────────────────────────────
332
+ export type {
333
+ FeedResponse
334
+ } from './types/content-api.js'
335
+
336
+ // ── Content Store ────────────────────────────────────────────────────────────
337
+ export type {
338
+ ContentStoreReturn
339
+ } from './stores/content.js'
340
+
341
+ export {
342
+ createContentStoreDefinition
343
+ } from './stores/content.js'
344
+
267
345
  // ── Auth Composable ──────────────────────────────────────────────────────────
268
346
  export type {
269
347
  UseAuthReturn