@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 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> | null;
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> | null;
237
+ metadata: Record<string, NonNullable<unknown>> | null;
238
238
  category: HelpChatSourceCategory;
239
239
  }
240
240
  type HelpChatStreamChunk = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kookee/sdk",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Official Kookee SDK - Access your blog, changelog, help center, and more",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",