@kookee/sdk 0.0.24 → 0.0.25
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.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -110,7 +110,7 @@ interface HelpArticleListItem {
|
|
|
110
110
|
excerptHtml: string | null;
|
|
111
111
|
status: string;
|
|
112
112
|
position: number;
|
|
113
|
-
metadata: Record<string, unknown
|
|
113
|
+
metadata: Record<string, NonNullable<unknown>>;
|
|
114
114
|
category: {
|
|
115
115
|
name: string;
|
|
116
116
|
slug: string;
|
|
@@ -234,7 +234,7 @@ interface HelpChatSource {
|
|
|
234
234
|
slug: string;
|
|
235
235
|
title: string;
|
|
236
236
|
visibility: HelpArticleVisibility;
|
|
237
|
-
metadata: Record<string, unknown
|
|
237
|
+
metadata: Record<string, NonNullable<unknown>> | null;
|
|
238
238
|
category: HelpChatSourceCategory;
|
|
239
239
|
}
|
|
240
240
|
type HelpChatStreamChunk = {
|
package/dist/index.d.ts
CHANGED
|
@@ -110,7 +110,7 @@ interface HelpArticleListItem {
|
|
|
110
110
|
excerptHtml: string | null;
|
|
111
111
|
status: string;
|
|
112
112
|
position: number;
|
|
113
|
-
metadata: Record<string, unknown
|
|
113
|
+
metadata: Record<string, NonNullable<unknown>>;
|
|
114
114
|
category: {
|
|
115
115
|
name: string;
|
|
116
116
|
slug: string;
|
|
@@ -234,7 +234,7 @@ interface HelpChatSource {
|
|
|
234
234
|
slug: string;
|
|
235
235
|
title: string;
|
|
236
236
|
visibility: HelpArticleVisibility;
|
|
237
|
-
metadata: Record<string, unknown
|
|
237
|
+
metadata: Record<string, NonNullable<unknown>> | null;
|
|
238
238
|
category: HelpChatSourceCategory;
|
|
239
239
|
}
|
|
240
240
|
type HelpChatStreamChunk = {
|