@back23/promptly-sdk 2.3.1 → 2.3.2

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
@@ -161,9 +161,10 @@ interface BoardPost {
161
161
  title: string;
162
162
  content: string;
163
163
  excerpt?: string;
164
+ author: string;
164
165
  is_notice: boolean;
165
166
  is_private: boolean;
166
- view_count: number;
167
+ views: number;
167
168
  comment_count: number;
168
169
  attachments?: Media[];
169
170
  created_at: string;
package/dist/index.d.ts CHANGED
@@ -161,9 +161,10 @@ interface BoardPost {
161
161
  title: string;
162
162
  content: string;
163
163
  excerpt?: string;
164
+ author: string;
164
165
  is_notice: boolean;
165
166
  is_private: boolean;
166
- view_count: number;
167
+ views: number;
167
168
  comment_count: number;
168
169
  attachments?: Media[];
169
170
  created_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@back23/promptly-sdk",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Promptly AI CMS SDK for JavaScript/TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",