@back23/promptly-sdk 2.10.0 → 2.11.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.mts CHANGED
@@ -216,8 +216,12 @@ interface BlogPost {
216
216
  slug: string;
217
217
  excerpt: string;
218
218
  featured_image: string | null;
219
+ category: string | null;
220
+ tags: string[];
219
221
  author: string;
222
+ views: number;
220
223
  status: string;
224
+ published_at: string | null;
221
225
  created_at: string;
222
226
  content?: string;
223
227
  updated_at?: string;
package/dist/index.d.ts CHANGED
@@ -216,8 +216,12 @@ interface BlogPost {
216
216
  slug: string;
217
217
  excerpt: string;
218
218
  featured_image: string | null;
219
+ category: string | null;
220
+ tags: string[];
219
221
  author: string;
222
+ views: number;
220
223
  status: string;
224
+ published_at: string | null;
221
225
  created_at: string;
222
226
  content?: string;
223
227
  updated_at?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@back23/promptly-sdk",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
4
4
  "description": "Promptly AI CMS SDK for JavaScript/TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",