@plyaz/types 1.3.8 → 1.4.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.
@@ -0,0 +1 @@
1
+ export type * from './types';
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Community Domain Types
3
+ *
4
+ * Core type definitions for the community domain.
5
+ *
6
+ * @fileoverview Community domain type definitions
7
+ * @version 1.0.0
8
+ */
9
+ export interface BlogPost {
10
+ id: number;
11
+ title: string;
12
+ excerpt: string;
13
+ content: string;
14
+ date: string;
15
+ slug: string;
16
+ featuredImage?: string;
17
+ author: {
18
+ name: string;
19
+ avatar?: string;
20
+ };
21
+ categories: string[];
22
+ readingTime: number;
23
+ }
@@ -1,2 +1,3 @@
1
1
  export type * from './cache';
2
2
  export type * from './feature-flag';
3
+ export type * from './community';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.3.8",
3
+ "version": "1.4.0",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",