@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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
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;
|