@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 +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
167
|
+
views: number;
|
|
167
168
|
comment_count: number;
|
|
168
169
|
attachments?: Media[];
|
|
169
170
|
created_at: string;
|