@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/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/stores/content.d.ts +1418 -0
- package/dist/stores/content.d.ts.map +1 -0
- package/dist/stores/content.js +1195 -0
- package/dist/stores/content.js.map +1 -0
- package/dist/types/content-api.d.ts +23 -0
- package/dist/types/content-api.d.ts.map +1 -0
- package/dist/types/content-api.js +5 -0
- package/dist/types/content-api.js.map +1 -0
- package/dist/types/content.d.ts +309 -0
- package/dist/types/content.d.ts.map +1 -0
- package/dist/types/content.js +36 -0
- package/dist/types/content.js.map +1 -0
- package/dist/types/media.d.ts +63 -0
- package/dist/types/media.d.ts.map +1 -0
- package/dist/types/media.js +13 -0
- package/dist/types/media.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +78 -0
- package/src/stores/content.ts +1477 -0
- package/src/types/content-api.ts +24 -0
- package/src/types/content.ts +381 -0
- package/src/types/media.ts +81 -0
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
|