@kookee/sdk 0.0.21 → 0.0.22
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
'use strict';var u="https://api.kookee.dev",R="Kookee-API-Key",m=class extends Error{constructor(t,n,c){super(n);this.code=t;this.status=c;this.name="KookeeApiError";}},h=class{baseUrl;apiKey;constructor(e,t){this.apiKey=e,this.baseUrl=t??u;}getHeaders(){return {"Content-Type":"application/json",[R]:this.apiKey}}async get(e,t){let n=new URL(`${this.baseUrl}${e}`);if(t){for(let[
|
|
1
|
+
'use strict';var u="https://api.kookee.dev",R="Kookee-API-Key",m=class extends Error{constructor(t,n,c){super(n);this.code=t;this.status=c;this.name="KookeeApiError";}},h=class{baseUrl;apiKey;constructor(e,t){this.apiKey=e,this.baseUrl=t??u;}getHeaders(){return {"Content-Type":"application/json",[R]:this.apiKey}}async get(e,t){let n=new URL(`${this.baseUrl}${e}`);if(t){for(let[P,r]of Object.entries(t))if(r!=null)if(Array.isArray(r))for(let d of r)n.searchParams.append(P,String(d));else n.searchParams.set(P,String(r));}let c=await fetch(n.toString(),{method:"GET",headers:this.getHeaders()});return this.handleResponse(c)}async post(e,t){let n=await fetch(`${this.baseUrl}${e}`,{method:"POST",headers:this.getHeaders(),body:t?JSON.stringify(t):void 0});return this.handleResponse(n)}async handleResponse(e){if(!e.ok){let t=null;try{t=await e.json();}catch{}throw new m(t?.code??"UNKNOWN_ERROR",t?.message??`Request failed with status ${e.status}`,e.status)}return e.json()}};var o=class{constructor(e){this.http=e;}async list(e){let{excludeIds:t,...n}=e??{},c=t?.length?{...n,excludeIds:t.join(",")}:n;return this.http.get("/v1/announcements",c)}async getById(e,t){return this.http.get(`/v1/announcements/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/announcements/${encodeURIComponent(e)}/translations`)}};var a=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/blog/posts",e)}async getBySlug(e,t){return this.http.get(`/v1/blog/posts/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/blog/posts/by-id/${encodeURIComponent(e)}`,t)}async getTags(){return this.http.get("/v1/blog/tags")}async getTranslationsById(e){return this.http.get(`/v1/blog/posts/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/blog/posts/${encodeURIComponent(e)}/translations`)}async react(e,t){return this.http.post(`/v1/blog/posts/${encodeURIComponent(e)}/reactions`,t)}};var i=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/changelog",e)}async getBySlug(e,t){return this.http.get(`/v1/changelog/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/changelog/by-id/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/changelog/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/changelog/${encodeURIComponent(e)}/translations`)}async react(e,t){return this.http.post(`/v1/changelog/${encodeURIComponent(e)}/reactions`,t)}};var p=class{constructor(e){this.http=e;}async getByKey(e){return this.http.get(`/v1/config/${encodeURIComponent(e)}`)}async list(e){return this.http.get("/v1/config",e)}};var g=class{constructor(e){this.http=e;}async categories(e){return this.http.get("/v1/help/categories",e)}async list(e){return this.http.get("/v1/help/articles",e)}async getBySlug(e,t){return this.http.get(`/v1/help/articles/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/help/articles/by-id/${encodeURIComponent(e)}`,t)}async search(e){return this.http.get("/v1/help/search",e)}async getTranslationsById(e){return this.http.get(`/v1/help/articles/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/help/articles/${encodeURIComponent(e)}/translations`)}async chat(e){return this.http.post("/v1/help/chat",e)}async voteUsefulness(e,t,n){return this.http.post(`/v1/help/articles/by-id/${encodeURIComponent(e)}/vote-usefulness`,{vote:t,previousVote:n})}};var l=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/pages",e)}async getBySlug(e,t){return this.http.get(`/v1/pages/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/pages/by-id/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/pages/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/pages/${encodeURIComponent(e)}/translations`)}};var y=class{http;announcements;blog;changelog;config;help;pages;constructor(e){if(!e.apiKey)throw new Error("apiKey is required");this.http=new h(e.apiKey,e.baseUrl),this.announcements=new o(this.http),this.blog=new a(this.http),this.changelog=new i(this.http),this.config=new p(this.http),this.help=new g(this.http),this.pages=new l(this.http);}async health(){return this.http.get("/v1/health")}};
|
|
2
2
|
exports.AnnouncementModule=o;exports.BlogModule=a;exports.ChangelogModule=i;exports.ConfigModule=p;exports.HelpModule=g;exports.Kookee=y;exports.KookeeApiError=m;exports.PagesModule=l;//# sourceMappingURL=index.cjs.map
|
|
3
3
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/lib/http-client.ts","../src/lib/modules/announcement.ts","../src/lib/modules/blog.ts","../src/lib/modules/changelog.ts","../src/lib/modules/config.ts","../src/lib/modules/help.ts","../src/lib/modules/pages.ts","../src/lib/client.ts"],"names":["DEFAULT_BASE_URL","API_KEY_HEADER","KookeeApiError","code","message","status","HttpClient","apiKey","baseUrl","path","params","url","key","value","item","response","body","errorData","AnnouncementModule","http","excludeIds","rest","queryParams","id","BlogModule","slug","postId","ChangelogModule","changelogId","ConfigModule","HelpModule","articleId","vote","previousVote","PagesModule","pageId","Kookee","config"],"mappings":"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","file":"index.cjs","sourcesContent":["import type { ApiError } from './types';\n\nconst DEFAULT_BASE_URL = 'https://api.kookee.dev';\nconst API_KEY_HEADER = 'Kookee-API-Key';\n\nexport class KookeeApiError extends Error {\n constructor(\n public readonly code: string,\n message: string,\n public readonly status: number\n ) {\n super(message);\n this.name = 'KookeeApiError';\n }\n}\n\nexport class HttpClient {\n private readonly baseUrl: string;\n private readonly apiKey: string;\n\n constructor(apiKey: string, baseUrl?: string) {\n this.apiKey = apiKey;\n this.baseUrl = baseUrl ?? DEFAULT_BASE_URL;\n }\n\n private getHeaders(): Record<string, string> {\n return {\n 'Content-Type': 'application/json',\n [API_KEY_HEADER]: this.apiKey,\n };\n }\n\n async get<T>(path: string, params?: object): Promise<T> {\n const url = new URL(`${this.baseUrl}${path}`);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== undefined && value !== null) {\n if (Array.isArray(value)) {\n for (const item of value) {\n url.searchParams.append(key, String(item));\n }\n } else {\n url.searchParams.set(key, String(value));\n }\n }\n }\n }\n\n const response = await fetch(url.toString(), {\n method: 'GET',\n headers: this.getHeaders(),\n });\n\n return this.handleResponse<T>(response);\n }\n\n async post<T>(path: string, body?: unknown): Promise<T> {\n const response = await fetch(`${this.baseUrl}${path}`, {\n method: 'POST',\n headers: this.getHeaders(),\n body: body ? JSON.stringify(body) : undefined,\n });\n\n return this.handleResponse<T>(response);\n }\n\n private async handleResponse<T>(response: Response): Promise<T> {\n if (!response.ok) {\n let errorData: ApiError | null = null;\n\n try {\n errorData = (await response.json()) as ApiError;\n } catch {\n // Response body is not JSON\n }\n\n throw new KookeeApiError(\n errorData?.code ?? 'UNKNOWN_ERROR',\n errorData?.message ?? `Request failed with status ${response.status}`,\n response.status\n );\n }\n\n return response.json() as Promise<T>;\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n Announcement,\n AnnouncementListItem,\n AnnouncementOrderBy,\n AnnouncementType,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n} from '../types';\n\nexport interface AnnouncementListParams extends PaginationParams, LocaleOptions {\n type?: AnnouncementType;\n excludeIds?: string[];\n orderBy?: AnnouncementOrderBy;\n order?: OrderDirection;\n}\n\nexport interface AnnouncementGetByIdParams extends LocaleOptions {}\n\nexport class AnnouncementModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: AnnouncementListParams): Promise<PaginatedResponse<AnnouncementListItem>> {\n const { excludeIds, ...rest } = params ?? {};\n const queryParams = excludeIds?.length ? { ...rest, excludeIds: excludeIds.join(',') } : rest;\n return this.http.get<PaginatedResponse<AnnouncementListItem>>('/v1/announcements', queryParams);\n }\n\n async getById(id: string, params?: AnnouncementGetByIdParams): Promise<Announcement> {\n return this.http.get<Announcement>(`/v1/announcements/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, Announcement>> {\n return this.http.get<Record<string, Announcement>>(\n `/v1/announcements/${encodeURIComponent(id)}/translations`\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n BlogPost,\n BlogPostListItem,\n BlogTagWithCount,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface BlogListParams extends PaginationParams, LocaleOptions {\n tags?: string[];\n search?: string;\n}\n\nexport interface BlogGetBySlugParams extends LocaleOptions {}\n\nexport interface BlogGetByIdParams extends LocaleOptions {}\n\nexport class BlogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: BlogListParams): Promise<PaginatedResponse<BlogPostListItem>> {\n return this.http.get<PaginatedResponse<BlogPostListItem>>('/v1/blog/posts', params);\n }\n\n async getBySlug(slug: string, params?: BlogGetBySlugParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: BlogGetByIdParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTags(): Promise<BlogTagWithCount[]> {\n return this.http.get<BlogTagWithCount[]>('/v1/blog/tags');\n }\n\n async getTranslationsById(postId: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/by-id/${encodeURIComponent(postId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(postId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/blog/posts/${encodeURIComponent(postId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n ChangelogEntry,\n ChangelogEntryListItem,\n ChangelogOrderBy,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface ChangelogListParams extends PaginationParams, LocaleOptions {\n type?: string;\n search?: string;\n orderBy?: ChangelogOrderBy;\n order?: OrderDirection;\n}\n\nexport interface ChangelogGetBySlugParams extends LocaleOptions {}\n\nexport interface ChangelogGetByIdParams extends LocaleOptions {}\n\nexport class ChangelogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: ChangelogListParams): Promise<PaginatedResponse<ChangelogEntryListItem>> {\n return this.http.get<PaginatedResponse<ChangelogEntryListItem>>('/v1/changelog', params);\n }\n\n async getBySlug(slug: string, params?: ChangelogGetBySlugParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: ChangelogGetByIdParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/by-id/${encodeURIComponent(id)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(changelogId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/changelog/${encodeURIComponent(changelogId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { PublicConfig } from '../types';\n\nexport interface ConfigListParams {\n keys?: string[];\n}\n\nexport class ConfigModule {\n constructor(private readonly http: HttpClient) {}\n\n async getByKey(key: string): Promise<PublicConfig> {\n return this.http.get<PublicConfig>(`/v1/config/${encodeURIComponent(key)}`);\n }\n\n async list(params?: ConfigListParams): Promise<PublicConfig[]> {\n return this.http.get<PublicConfig[]>('/v1/config', params);\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n HelpArticle,\n HelpArticleListItem,\n HelpCategory,\n HelpSearchResult,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n VoteUsefulnessResponse,\n} from '../types';\n\nexport interface HelpCategoriesParams extends LocaleOptions {}\n\nexport interface HelpListParams extends PaginationParams, LocaleOptions {\n category?: string;\n search?: string;\n}\n\nexport interface HelpSearchParams extends LocaleOptions {\n query: string;\n limit?: number;\n}\n\nexport interface HelpGetBySlugParams extends LocaleOptions {}\n\nexport interface HelpGetByIdParams extends LocaleOptions {}\n\nexport class HelpModule {\n constructor(private readonly http: HttpClient) {}\n\n async categories(params?: HelpCategoriesParams): Promise<HelpCategory[]> {\n return this.http.get<HelpCategory[]>('/v1/help/categories', params);\n }\n\n async list(params?: HelpListParams): Promise<PaginatedResponse<HelpArticleListItem>> {\n return this.http.get<PaginatedResponse<HelpArticleListItem>>('/v1/help/articles', params);\n }\n\n async getBySlug(slug: string, params?: HelpGetBySlugParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: HelpGetByIdParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async search(params: HelpSearchParams): Promise<HelpSearchResult[]> {\n return this.http.get<HelpSearchResult[]>('/v1/help/search', params);\n }\n\n async getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async voteUsefulness(\n articleId: string,\n vote: 'yes' | 'no' | null,\n previousVote?: 'yes' | 'no' | null,\n ): Promise<VoteUsefulnessResponse> {\n return this.http.post<VoteUsefulnessResponse>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/vote-usefulness`,\n { vote, previousVote }\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { LocaleOptions, Page, PageListItem, PaginatedResponse, PaginationParams } from '../types';\n\nexport interface PagesListParams extends PaginationParams, LocaleOptions {\n search?: string;\n}\n\nexport interface PagesGetBySlugParams extends LocaleOptions {}\n\nexport interface PagesGetByIdParams extends LocaleOptions {}\n\nexport class PagesModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: PagesListParams): Promise<PaginatedResponse<PageListItem>> {\n return this.http.get<PaginatedResponse<PageListItem>>('/v1/pages', params);\n }\n\n async getBySlug(slug: string, params?: PagesGetBySlugParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: PagesGetByIdParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(pageId: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/by-id/${encodeURIComponent(pageId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/${encodeURIComponent(slug)}/translations`\n );\n }\n}\n","import { HttpClient } from './http-client';\nimport { AnnouncementModule } from './modules/announcement';\nimport { BlogModule } from './modules/blog';\nimport { ChangelogModule } from './modules/changelog';\nimport { ConfigModule } from './modules/config';\nimport { HelpModule } from './modules/help';\nimport { PagesModule } from './modules/pages';\nimport type { KookeeConfig, HealthCheckResponse } from './types';\n\nexport class Kookee {\n private readonly http: HttpClient;\n\n public readonly announcements: AnnouncementModule;\n public readonly blog: BlogModule;\n public readonly changelog: ChangelogModule;\n public readonly config: ConfigModule;\n public readonly help: HelpModule;\n public readonly pages: PagesModule;\n\n constructor(config: KookeeConfig) {\n if (!config.apiKey) {\n throw new Error('apiKey is required');\n }\n\n this.http = new HttpClient(config.apiKey, config.baseUrl);\n\n this.announcements = new AnnouncementModule(this.http);\n this.blog = new BlogModule(this.http);\n this.changelog = new ChangelogModule(this.http);\n this.config = new ConfigModule(this.http);\n this.help = new HelpModule(this.http);\n this.pages = new PagesModule(this.http);\n }\n\n async health(): Promise<HealthCheckResponse> {\n return this.http.get<HealthCheckResponse>('/v1/health');\n }\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/lib/http-client.ts","../src/lib/modules/announcement.ts","../src/lib/modules/blog.ts","../src/lib/modules/changelog.ts","../src/lib/modules/config.ts","../src/lib/modules/help.ts","../src/lib/modules/pages.ts","../src/lib/client.ts"],"names":["DEFAULT_BASE_URL","API_KEY_HEADER","KookeeApiError","code","message","status","HttpClient","apiKey","baseUrl","path","params","url","key","value","item","response","body","errorData","AnnouncementModule","http","excludeIds","rest","queryParams","id","BlogModule","slug","postId","ChangelogModule","changelogId","ConfigModule","HelpModule","articleId","vote","previousVote","PagesModule","pageId","Kookee","config"],"mappings":"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","file":"index.cjs","sourcesContent":["import type { ApiError } from './types';\n\nconst DEFAULT_BASE_URL = 'https://api.kookee.dev';\nconst API_KEY_HEADER = 'Kookee-API-Key';\n\nexport class KookeeApiError extends Error {\n constructor(\n public readonly code: string,\n message: string,\n public readonly status: number\n ) {\n super(message);\n this.name = 'KookeeApiError';\n }\n}\n\nexport class HttpClient {\n private readonly baseUrl: string;\n private readonly apiKey: string;\n\n constructor(apiKey: string, baseUrl?: string) {\n this.apiKey = apiKey;\n this.baseUrl = baseUrl ?? DEFAULT_BASE_URL;\n }\n\n private getHeaders(): Record<string, string> {\n return {\n 'Content-Type': 'application/json',\n [API_KEY_HEADER]: this.apiKey,\n };\n }\n\n async get<T>(path: string, params?: object): Promise<T> {\n const url = new URL(`${this.baseUrl}${path}`);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== undefined && value !== null) {\n if (Array.isArray(value)) {\n for (const item of value) {\n url.searchParams.append(key, String(item));\n }\n } else {\n url.searchParams.set(key, String(value));\n }\n }\n }\n }\n\n const response = await fetch(url.toString(), {\n method: 'GET',\n headers: this.getHeaders(),\n });\n\n return this.handleResponse<T>(response);\n }\n\n async post<T>(path: string, body?: unknown): Promise<T> {\n const response = await fetch(`${this.baseUrl}${path}`, {\n method: 'POST',\n headers: this.getHeaders(),\n body: body ? JSON.stringify(body) : undefined,\n });\n\n return this.handleResponse<T>(response);\n }\n\n private async handleResponse<T>(response: Response): Promise<T> {\n if (!response.ok) {\n let errorData: ApiError | null = null;\n\n try {\n errorData = (await response.json()) as ApiError;\n } catch {\n // Response body is not JSON\n }\n\n throw new KookeeApiError(\n errorData?.code ?? 'UNKNOWN_ERROR',\n errorData?.message ?? `Request failed with status ${response.status}`,\n response.status\n );\n }\n\n return response.json() as Promise<T>;\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n Announcement,\n AnnouncementListItem,\n AnnouncementOrderBy,\n AnnouncementType,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n} from '../types';\n\nexport interface AnnouncementListParams extends PaginationParams, LocaleOptions {\n type?: AnnouncementType;\n excludeIds?: string[];\n orderBy?: AnnouncementOrderBy;\n order?: OrderDirection;\n}\n\nexport interface AnnouncementGetByIdParams extends LocaleOptions {}\n\nexport class AnnouncementModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: AnnouncementListParams): Promise<PaginatedResponse<AnnouncementListItem>> {\n const { excludeIds, ...rest } = params ?? {};\n const queryParams = excludeIds?.length ? { ...rest, excludeIds: excludeIds.join(',') } : rest;\n return this.http.get<PaginatedResponse<AnnouncementListItem>>('/v1/announcements', queryParams);\n }\n\n async getById(id: string, params?: AnnouncementGetByIdParams): Promise<Announcement> {\n return this.http.get<Announcement>(`/v1/announcements/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, Announcement>> {\n return this.http.get<Record<string, Announcement>>(\n `/v1/announcements/${encodeURIComponent(id)}/translations`\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n BlogPost,\n BlogPostListItem,\n BlogTagWithCount,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface BlogListParams extends PaginationParams, LocaleOptions {\n tags?: string[];\n search?: string;\n}\n\nexport interface BlogGetBySlugParams extends LocaleOptions {}\n\nexport interface BlogGetByIdParams extends LocaleOptions {}\n\nexport class BlogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: BlogListParams): Promise<PaginatedResponse<BlogPostListItem>> {\n return this.http.get<PaginatedResponse<BlogPostListItem>>('/v1/blog/posts', params);\n }\n\n async getBySlug(slug: string, params?: BlogGetBySlugParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: BlogGetByIdParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTags(): Promise<BlogTagWithCount[]> {\n return this.http.get<BlogTagWithCount[]>('/v1/blog/tags');\n }\n\n async getTranslationsById(postId: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/by-id/${encodeURIComponent(postId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(postId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/blog/posts/${encodeURIComponent(postId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n ChangelogEntry,\n ChangelogEntryListItem,\n ChangelogOrderBy,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface ChangelogListParams extends PaginationParams, LocaleOptions {\n type?: string;\n search?: string;\n orderBy?: ChangelogOrderBy;\n order?: OrderDirection;\n}\n\nexport interface ChangelogGetBySlugParams extends LocaleOptions {}\n\nexport interface ChangelogGetByIdParams extends LocaleOptions {}\n\nexport class ChangelogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: ChangelogListParams): Promise<PaginatedResponse<ChangelogEntryListItem>> {\n return this.http.get<PaginatedResponse<ChangelogEntryListItem>>('/v1/changelog', params);\n }\n\n async getBySlug(slug: string, params?: ChangelogGetBySlugParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: ChangelogGetByIdParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/by-id/${encodeURIComponent(id)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(changelogId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/changelog/${encodeURIComponent(changelogId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { PublicConfig } from '../types';\n\nexport interface ConfigListParams {\n keys?: string[];\n}\n\nexport class ConfigModule {\n constructor(private readonly http: HttpClient) {}\n\n async getByKey(key: string): Promise<PublicConfig> {\n return this.http.get<PublicConfig>(`/v1/config/${encodeURIComponent(key)}`);\n }\n\n async list(params?: ConfigListParams): Promise<PublicConfig[]> {\n return this.http.get<PublicConfig[]>('/v1/config', params);\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n HelpArticle,\n HelpArticleListItem,\n HelpCategory,\n HelpChatParams,\n HelpChatResponse,\n HelpSearchResult,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n VoteUsefulnessResponse,\n} from '../types';\n\nexport interface HelpCategoriesParams extends LocaleOptions {}\n\nexport interface HelpListParams extends PaginationParams, LocaleOptions {\n category?: string;\n search?: string;\n}\n\nexport interface HelpSearchParams extends LocaleOptions {\n query: string;\n limit?: number;\n}\n\nexport interface HelpGetBySlugParams extends LocaleOptions {}\n\nexport interface HelpGetByIdParams extends LocaleOptions {}\n\nexport class HelpModule {\n constructor(private readonly http: HttpClient) {}\n\n async categories(params?: HelpCategoriesParams): Promise<HelpCategory[]> {\n return this.http.get<HelpCategory[]>('/v1/help/categories', params);\n }\n\n async list(params?: HelpListParams): Promise<PaginatedResponse<HelpArticleListItem>> {\n return this.http.get<PaginatedResponse<HelpArticleListItem>>('/v1/help/articles', params);\n }\n\n async getBySlug(slug: string, params?: HelpGetBySlugParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: HelpGetByIdParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async search(params: HelpSearchParams): Promise<HelpSearchResult[]> {\n return this.http.get<HelpSearchResult[]>('/v1/help/search', params);\n }\n\n async getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async chat(params: HelpChatParams): Promise<HelpChatResponse> {\n return this.http.post<HelpChatResponse>('/v1/help/chat', params);\n }\n\n async voteUsefulness(\n articleId: string,\n vote: 'yes' | 'no' | null,\n previousVote?: 'yes' | 'no' | null,\n ): Promise<VoteUsefulnessResponse> {\n return this.http.post<VoteUsefulnessResponse>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/vote-usefulness`,\n { vote, previousVote }\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { LocaleOptions, Page, PageListItem, PaginatedResponse, PaginationParams } from '../types';\n\nexport interface PagesListParams extends PaginationParams, LocaleOptions {\n search?: string;\n}\n\nexport interface PagesGetBySlugParams extends LocaleOptions {}\n\nexport interface PagesGetByIdParams extends LocaleOptions {}\n\nexport class PagesModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: PagesListParams): Promise<PaginatedResponse<PageListItem>> {\n return this.http.get<PaginatedResponse<PageListItem>>('/v1/pages', params);\n }\n\n async getBySlug(slug: string, params?: PagesGetBySlugParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: PagesGetByIdParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(pageId: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/by-id/${encodeURIComponent(pageId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/${encodeURIComponent(slug)}/translations`\n );\n }\n}\n","import { HttpClient } from './http-client';\nimport { AnnouncementModule } from './modules/announcement';\nimport { BlogModule } from './modules/blog';\nimport { ChangelogModule } from './modules/changelog';\nimport { ConfigModule } from './modules/config';\nimport { HelpModule } from './modules/help';\nimport { PagesModule } from './modules/pages';\nimport type { KookeeConfig, HealthCheckResponse } from './types';\n\nexport class Kookee {\n private readonly http: HttpClient;\n\n public readonly announcements: AnnouncementModule;\n public readonly blog: BlogModule;\n public readonly changelog: ChangelogModule;\n public readonly config: ConfigModule;\n public readonly help: HelpModule;\n public readonly pages: PagesModule;\n\n constructor(config: KookeeConfig) {\n if (!config.apiKey) {\n throw new Error('apiKey is required');\n }\n\n this.http = new HttpClient(config.apiKey, config.baseUrl);\n\n this.announcements = new AnnouncementModule(this.http);\n this.blog = new BlogModule(this.http);\n this.changelog = new ChangelogModule(this.http);\n this.config = new ConfigModule(this.http);\n this.help = new HelpModule(this.http);\n this.pages = new PagesModule(this.http);\n }\n\n async health(): Promise<HealthCheckResponse> {\n return this.http.get<HealthCheckResponse>('/v1/health');\n }\n}\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -196,6 +196,23 @@ interface ReactParams {
|
|
|
196
196
|
interface ReactResponse {
|
|
197
197
|
reactions: Record<string, number>;
|
|
198
198
|
}
|
|
199
|
+
interface HelpChatMessage {
|
|
200
|
+
role: 'user' | 'assistant';
|
|
201
|
+
content: string;
|
|
202
|
+
}
|
|
203
|
+
interface HelpChatParams {
|
|
204
|
+
messages: HelpChatMessage[];
|
|
205
|
+
locale?: string;
|
|
206
|
+
sessionId?: string;
|
|
207
|
+
}
|
|
208
|
+
interface HelpChatResponse {
|
|
209
|
+
message: string;
|
|
210
|
+
sources: Array<{
|
|
211
|
+
id: string;
|
|
212
|
+
slug: string;
|
|
213
|
+
title: string;
|
|
214
|
+
}>;
|
|
215
|
+
}
|
|
199
216
|
|
|
200
217
|
interface AnnouncementListParams extends PaginationParams, LocaleOptions {
|
|
201
218
|
type?: AnnouncementType;
|
|
@@ -288,6 +305,7 @@ declare class HelpModule {
|
|
|
288
305
|
search(params: HelpSearchParams): Promise<HelpSearchResult[]>;
|
|
289
306
|
getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>>;
|
|
290
307
|
getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>>;
|
|
308
|
+
chat(params: HelpChatParams): Promise<HelpChatResponse>;
|
|
291
309
|
voteUsefulness(articleId: string, vote: 'yes' | 'no' | null, previousVote?: 'yes' | 'no' | null): Promise<VoteUsefulnessResponse>;
|
|
292
310
|
}
|
|
293
311
|
|
|
@@ -320,4 +338,4 @@ declare class Kookee {
|
|
|
320
338
|
health(): Promise<HealthCheckResponse>;
|
|
321
339
|
}
|
|
322
340
|
|
|
323
|
-
export { type Announcement, type AnnouncementAuthor, type AnnouncementGetByIdParams, type AnnouncementListItem, type AnnouncementListParams, AnnouncementModule, type AnnouncementOrderBy, type AnnouncementType, type ApiError, type BlogGetByIdParams, type BlogGetBySlugParams, type BlogListParams, BlogModule, type BlogPost, type BlogPostAuthor, type BlogPostListItem, type BlogTag, type BlogTagWithCount, type ChangelogAuthor, type ChangelogEntry, type ChangelogEntryListItem, type ChangelogGetByIdParams, type ChangelogGetBySlugParams, type ChangelogListParams, ChangelogModule, type ChangelogOrderBy, type ChangelogType, type ConfigListParams, ConfigModule, type HealthCheckResponse, type HelpArticle, type HelpArticleListItem, type HelpCategoriesParams, type HelpCategory, type HelpGetByIdParams, type HelpGetBySlugParams, type HelpListParams, HelpModule, type HelpSearchParams, type HelpSearchResult, Kookee, KookeeApiError, type KookeeConfig, type LocaleOptions, type OrderDirection, type Page, type PageListItem, type PagesGetByIdParams, type PagesGetBySlugParams, type PagesListParams, PagesModule, type PaginatedResponse, type PaginationParams, type PublicConfig, type ReactParams, type ReactResponse, type ReactionType, type VoteUsefulnessResponse };
|
|
341
|
+
export { type Announcement, type AnnouncementAuthor, type AnnouncementGetByIdParams, type AnnouncementListItem, type AnnouncementListParams, AnnouncementModule, type AnnouncementOrderBy, type AnnouncementType, type ApiError, type BlogGetByIdParams, type BlogGetBySlugParams, type BlogListParams, BlogModule, type BlogPost, type BlogPostAuthor, type BlogPostListItem, type BlogTag, type BlogTagWithCount, type ChangelogAuthor, type ChangelogEntry, type ChangelogEntryListItem, type ChangelogGetByIdParams, type ChangelogGetBySlugParams, type ChangelogListParams, ChangelogModule, type ChangelogOrderBy, type ChangelogType, type ConfigListParams, ConfigModule, type HealthCheckResponse, type HelpArticle, type HelpArticleListItem, type HelpCategoriesParams, type HelpCategory, type HelpChatMessage, type HelpChatParams, type HelpChatResponse, type HelpGetByIdParams, type HelpGetBySlugParams, type HelpListParams, HelpModule, type HelpSearchParams, type HelpSearchResult, Kookee, KookeeApiError, type KookeeConfig, type LocaleOptions, type OrderDirection, type Page, type PageListItem, type PagesGetByIdParams, type PagesGetBySlugParams, type PagesListParams, PagesModule, type PaginatedResponse, type PaginationParams, type PublicConfig, type ReactParams, type ReactResponse, type ReactionType, type VoteUsefulnessResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -196,6 +196,23 @@ interface ReactParams {
|
|
|
196
196
|
interface ReactResponse {
|
|
197
197
|
reactions: Record<string, number>;
|
|
198
198
|
}
|
|
199
|
+
interface HelpChatMessage {
|
|
200
|
+
role: 'user' | 'assistant';
|
|
201
|
+
content: string;
|
|
202
|
+
}
|
|
203
|
+
interface HelpChatParams {
|
|
204
|
+
messages: HelpChatMessage[];
|
|
205
|
+
locale?: string;
|
|
206
|
+
sessionId?: string;
|
|
207
|
+
}
|
|
208
|
+
interface HelpChatResponse {
|
|
209
|
+
message: string;
|
|
210
|
+
sources: Array<{
|
|
211
|
+
id: string;
|
|
212
|
+
slug: string;
|
|
213
|
+
title: string;
|
|
214
|
+
}>;
|
|
215
|
+
}
|
|
199
216
|
|
|
200
217
|
interface AnnouncementListParams extends PaginationParams, LocaleOptions {
|
|
201
218
|
type?: AnnouncementType;
|
|
@@ -288,6 +305,7 @@ declare class HelpModule {
|
|
|
288
305
|
search(params: HelpSearchParams): Promise<HelpSearchResult[]>;
|
|
289
306
|
getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>>;
|
|
290
307
|
getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>>;
|
|
308
|
+
chat(params: HelpChatParams): Promise<HelpChatResponse>;
|
|
291
309
|
voteUsefulness(articleId: string, vote: 'yes' | 'no' | null, previousVote?: 'yes' | 'no' | null): Promise<VoteUsefulnessResponse>;
|
|
292
310
|
}
|
|
293
311
|
|
|
@@ -320,4 +338,4 @@ declare class Kookee {
|
|
|
320
338
|
health(): Promise<HealthCheckResponse>;
|
|
321
339
|
}
|
|
322
340
|
|
|
323
|
-
export { type Announcement, type AnnouncementAuthor, type AnnouncementGetByIdParams, type AnnouncementListItem, type AnnouncementListParams, AnnouncementModule, type AnnouncementOrderBy, type AnnouncementType, type ApiError, type BlogGetByIdParams, type BlogGetBySlugParams, type BlogListParams, BlogModule, type BlogPost, type BlogPostAuthor, type BlogPostListItem, type BlogTag, type BlogTagWithCount, type ChangelogAuthor, type ChangelogEntry, type ChangelogEntryListItem, type ChangelogGetByIdParams, type ChangelogGetBySlugParams, type ChangelogListParams, ChangelogModule, type ChangelogOrderBy, type ChangelogType, type ConfigListParams, ConfigModule, type HealthCheckResponse, type HelpArticle, type HelpArticleListItem, type HelpCategoriesParams, type HelpCategory, type HelpGetByIdParams, type HelpGetBySlugParams, type HelpListParams, HelpModule, type HelpSearchParams, type HelpSearchResult, Kookee, KookeeApiError, type KookeeConfig, type LocaleOptions, type OrderDirection, type Page, type PageListItem, type PagesGetByIdParams, type PagesGetBySlugParams, type PagesListParams, PagesModule, type PaginatedResponse, type PaginationParams, type PublicConfig, type ReactParams, type ReactResponse, type ReactionType, type VoteUsefulnessResponse };
|
|
341
|
+
export { type Announcement, type AnnouncementAuthor, type AnnouncementGetByIdParams, type AnnouncementListItem, type AnnouncementListParams, AnnouncementModule, type AnnouncementOrderBy, type AnnouncementType, type ApiError, type BlogGetByIdParams, type BlogGetBySlugParams, type BlogListParams, BlogModule, type BlogPost, type BlogPostAuthor, type BlogPostListItem, type BlogTag, type BlogTagWithCount, type ChangelogAuthor, type ChangelogEntry, type ChangelogEntryListItem, type ChangelogGetByIdParams, type ChangelogGetBySlugParams, type ChangelogListParams, ChangelogModule, type ChangelogOrderBy, type ChangelogType, type ConfigListParams, ConfigModule, type HealthCheckResponse, type HelpArticle, type HelpArticleListItem, type HelpCategoriesParams, type HelpCategory, type HelpChatMessage, type HelpChatParams, type HelpChatResponse, type HelpGetByIdParams, type HelpGetBySlugParams, type HelpListParams, HelpModule, type HelpSearchParams, type HelpSearchResult, Kookee, KookeeApiError, type KookeeConfig, type LocaleOptions, type OrderDirection, type Page, type PageListItem, type PagesGetByIdParams, type PagesGetBySlugParams, type PagesListParams, PagesModule, type PaginatedResponse, type PaginationParams, type PublicConfig, type ReactParams, type ReactResponse, type ReactionType, type VoteUsefulnessResponse };
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var u="https://api.kookee.dev",R="Kookee-API-Key",m=class extends Error{constructor(t,n,c){super(n);this.code=t;this.status=c;this.name="KookeeApiError";}},h=class{baseUrl;apiKey;constructor(e,t){this.apiKey=e,this.baseUrl=t??u;}getHeaders(){return {"Content-Type":"application/json",[R]:this.apiKey}}async get(e,t){let n=new URL(`${this.baseUrl}${e}`);if(t){for(let[
|
|
1
|
+
var u="https://api.kookee.dev",R="Kookee-API-Key",m=class extends Error{constructor(t,n,c){super(n);this.code=t;this.status=c;this.name="KookeeApiError";}},h=class{baseUrl;apiKey;constructor(e,t){this.apiKey=e,this.baseUrl=t??u;}getHeaders(){return {"Content-Type":"application/json",[R]:this.apiKey}}async get(e,t){let n=new URL(`${this.baseUrl}${e}`);if(t){for(let[P,r]of Object.entries(t))if(r!=null)if(Array.isArray(r))for(let d of r)n.searchParams.append(P,String(d));else n.searchParams.set(P,String(r));}let c=await fetch(n.toString(),{method:"GET",headers:this.getHeaders()});return this.handleResponse(c)}async post(e,t){let n=await fetch(`${this.baseUrl}${e}`,{method:"POST",headers:this.getHeaders(),body:t?JSON.stringify(t):void 0});return this.handleResponse(n)}async handleResponse(e){if(!e.ok){let t=null;try{t=await e.json();}catch{}throw new m(t?.code??"UNKNOWN_ERROR",t?.message??`Request failed with status ${e.status}`,e.status)}return e.json()}};var o=class{constructor(e){this.http=e;}async list(e){let{excludeIds:t,...n}=e??{},c=t?.length?{...n,excludeIds:t.join(",")}:n;return this.http.get("/v1/announcements",c)}async getById(e,t){return this.http.get(`/v1/announcements/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/announcements/${encodeURIComponent(e)}/translations`)}};var a=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/blog/posts",e)}async getBySlug(e,t){return this.http.get(`/v1/blog/posts/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/blog/posts/by-id/${encodeURIComponent(e)}`,t)}async getTags(){return this.http.get("/v1/blog/tags")}async getTranslationsById(e){return this.http.get(`/v1/blog/posts/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/blog/posts/${encodeURIComponent(e)}/translations`)}async react(e,t){return this.http.post(`/v1/blog/posts/${encodeURIComponent(e)}/reactions`,t)}};var i=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/changelog",e)}async getBySlug(e,t){return this.http.get(`/v1/changelog/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/changelog/by-id/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/changelog/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/changelog/${encodeURIComponent(e)}/translations`)}async react(e,t){return this.http.post(`/v1/changelog/${encodeURIComponent(e)}/reactions`,t)}};var p=class{constructor(e){this.http=e;}async getByKey(e){return this.http.get(`/v1/config/${encodeURIComponent(e)}`)}async list(e){return this.http.get("/v1/config",e)}};var g=class{constructor(e){this.http=e;}async categories(e){return this.http.get("/v1/help/categories",e)}async list(e){return this.http.get("/v1/help/articles",e)}async getBySlug(e,t){return this.http.get(`/v1/help/articles/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/help/articles/by-id/${encodeURIComponent(e)}`,t)}async search(e){return this.http.get("/v1/help/search",e)}async getTranslationsById(e){return this.http.get(`/v1/help/articles/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/help/articles/${encodeURIComponent(e)}/translations`)}async chat(e){return this.http.post("/v1/help/chat",e)}async voteUsefulness(e,t,n){return this.http.post(`/v1/help/articles/by-id/${encodeURIComponent(e)}/vote-usefulness`,{vote:t,previousVote:n})}};var l=class{constructor(e){this.http=e;}async list(e){return this.http.get("/v1/pages",e)}async getBySlug(e,t){return this.http.get(`/v1/pages/${encodeURIComponent(e)}`,t)}async getById(e,t){return this.http.get(`/v1/pages/by-id/${encodeURIComponent(e)}`,t)}async getTranslationsById(e){return this.http.get(`/v1/pages/by-id/${encodeURIComponent(e)}/translations`)}async getTranslationsBySlug(e){return this.http.get(`/v1/pages/${encodeURIComponent(e)}/translations`)}};var y=class{http;announcements;blog;changelog;config;help;pages;constructor(e){if(!e.apiKey)throw new Error("apiKey is required");this.http=new h(e.apiKey,e.baseUrl),this.announcements=new o(this.http),this.blog=new a(this.http),this.changelog=new i(this.http),this.config=new p(this.http),this.help=new g(this.http),this.pages=new l(this.http);}async health(){return this.http.get("/v1/health")}};
|
|
2
2
|
export{o as AnnouncementModule,a as BlogModule,i as ChangelogModule,p as ConfigModule,g as HelpModule,y as Kookee,m as KookeeApiError,l as PagesModule};//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/lib/http-client.ts","../src/lib/modules/announcement.ts","../src/lib/modules/blog.ts","../src/lib/modules/changelog.ts","../src/lib/modules/config.ts","../src/lib/modules/help.ts","../src/lib/modules/pages.ts","../src/lib/client.ts"],"names":["DEFAULT_BASE_URL","API_KEY_HEADER","KookeeApiError","code","message","status","HttpClient","apiKey","baseUrl","path","params","url","key","value","item","response","body","errorData","AnnouncementModule","http","excludeIds","rest","queryParams","id","BlogModule","slug","postId","ChangelogModule","changelogId","ConfigModule","HelpModule","articleId","vote","previousVote","PagesModule","pageId","Kookee","config"],"mappings":"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","file":"index.js","sourcesContent":["import type { ApiError } from './types';\n\nconst DEFAULT_BASE_URL = 'https://api.kookee.dev';\nconst API_KEY_HEADER = 'Kookee-API-Key';\n\nexport class KookeeApiError extends Error {\n constructor(\n public readonly code: string,\n message: string,\n public readonly status: number\n ) {\n super(message);\n this.name = 'KookeeApiError';\n }\n}\n\nexport class HttpClient {\n private readonly baseUrl: string;\n private readonly apiKey: string;\n\n constructor(apiKey: string, baseUrl?: string) {\n this.apiKey = apiKey;\n this.baseUrl = baseUrl ?? DEFAULT_BASE_URL;\n }\n\n private getHeaders(): Record<string, string> {\n return {\n 'Content-Type': 'application/json',\n [API_KEY_HEADER]: this.apiKey,\n };\n }\n\n async get<T>(path: string, params?: object): Promise<T> {\n const url = new URL(`${this.baseUrl}${path}`);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== undefined && value !== null) {\n if (Array.isArray(value)) {\n for (const item of value) {\n url.searchParams.append(key, String(item));\n }\n } else {\n url.searchParams.set(key, String(value));\n }\n }\n }\n }\n\n const response = await fetch(url.toString(), {\n method: 'GET',\n headers: this.getHeaders(),\n });\n\n return this.handleResponse<T>(response);\n }\n\n async post<T>(path: string, body?: unknown): Promise<T> {\n const response = await fetch(`${this.baseUrl}${path}`, {\n method: 'POST',\n headers: this.getHeaders(),\n body: body ? JSON.stringify(body) : undefined,\n });\n\n return this.handleResponse<T>(response);\n }\n\n private async handleResponse<T>(response: Response): Promise<T> {\n if (!response.ok) {\n let errorData: ApiError | null = null;\n\n try {\n errorData = (await response.json()) as ApiError;\n } catch {\n // Response body is not JSON\n }\n\n throw new KookeeApiError(\n errorData?.code ?? 'UNKNOWN_ERROR',\n errorData?.message ?? `Request failed with status ${response.status}`,\n response.status\n );\n }\n\n return response.json() as Promise<T>;\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n Announcement,\n AnnouncementListItem,\n AnnouncementOrderBy,\n AnnouncementType,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n} from '../types';\n\nexport interface AnnouncementListParams extends PaginationParams, LocaleOptions {\n type?: AnnouncementType;\n excludeIds?: string[];\n orderBy?: AnnouncementOrderBy;\n order?: OrderDirection;\n}\n\nexport interface AnnouncementGetByIdParams extends LocaleOptions {}\n\nexport class AnnouncementModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: AnnouncementListParams): Promise<PaginatedResponse<AnnouncementListItem>> {\n const { excludeIds, ...rest } = params ?? {};\n const queryParams = excludeIds?.length ? { ...rest, excludeIds: excludeIds.join(',') } : rest;\n return this.http.get<PaginatedResponse<AnnouncementListItem>>('/v1/announcements', queryParams);\n }\n\n async getById(id: string, params?: AnnouncementGetByIdParams): Promise<Announcement> {\n return this.http.get<Announcement>(`/v1/announcements/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, Announcement>> {\n return this.http.get<Record<string, Announcement>>(\n `/v1/announcements/${encodeURIComponent(id)}/translations`\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n BlogPost,\n BlogPostListItem,\n BlogTagWithCount,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface BlogListParams extends PaginationParams, LocaleOptions {\n tags?: string[];\n search?: string;\n}\n\nexport interface BlogGetBySlugParams extends LocaleOptions {}\n\nexport interface BlogGetByIdParams extends LocaleOptions {}\n\nexport class BlogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: BlogListParams): Promise<PaginatedResponse<BlogPostListItem>> {\n return this.http.get<PaginatedResponse<BlogPostListItem>>('/v1/blog/posts', params);\n }\n\n async getBySlug(slug: string, params?: BlogGetBySlugParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: BlogGetByIdParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTags(): Promise<BlogTagWithCount[]> {\n return this.http.get<BlogTagWithCount[]>('/v1/blog/tags');\n }\n\n async getTranslationsById(postId: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/by-id/${encodeURIComponent(postId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(postId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/blog/posts/${encodeURIComponent(postId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n ChangelogEntry,\n ChangelogEntryListItem,\n ChangelogOrderBy,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface ChangelogListParams extends PaginationParams, LocaleOptions {\n type?: string;\n search?: string;\n orderBy?: ChangelogOrderBy;\n order?: OrderDirection;\n}\n\nexport interface ChangelogGetBySlugParams extends LocaleOptions {}\n\nexport interface ChangelogGetByIdParams extends LocaleOptions {}\n\nexport class ChangelogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: ChangelogListParams): Promise<PaginatedResponse<ChangelogEntryListItem>> {\n return this.http.get<PaginatedResponse<ChangelogEntryListItem>>('/v1/changelog', params);\n }\n\n async getBySlug(slug: string, params?: ChangelogGetBySlugParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: ChangelogGetByIdParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/by-id/${encodeURIComponent(id)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(changelogId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/changelog/${encodeURIComponent(changelogId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { PublicConfig } from '../types';\n\nexport interface ConfigListParams {\n keys?: string[];\n}\n\nexport class ConfigModule {\n constructor(private readonly http: HttpClient) {}\n\n async getByKey(key: string): Promise<PublicConfig> {\n return this.http.get<PublicConfig>(`/v1/config/${encodeURIComponent(key)}`);\n }\n\n async list(params?: ConfigListParams): Promise<PublicConfig[]> {\n return this.http.get<PublicConfig[]>('/v1/config', params);\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n HelpArticle,\n HelpArticleListItem,\n HelpCategory,\n HelpSearchResult,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n VoteUsefulnessResponse,\n} from '../types';\n\nexport interface HelpCategoriesParams extends LocaleOptions {}\n\nexport interface HelpListParams extends PaginationParams, LocaleOptions {\n category?: string;\n search?: string;\n}\n\nexport interface HelpSearchParams extends LocaleOptions {\n query: string;\n limit?: number;\n}\n\nexport interface HelpGetBySlugParams extends LocaleOptions {}\n\nexport interface HelpGetByIdParams extends LocaleOptions {}\n\nexport class HelpModule {\n constructor(private readonly http: HttpClient) {}\n\n async categories(params?: HelpCategoriesParams): Promise<HelpCategory[]> {\n return this.http.get<HelpCategory[]>('/v1/help/categories', params);\n }\n\n async list(params?: HelpListParams): Promise<PaginatedResponse<HelpArticleListItem>> {\n return this.http.get<PaginatedResponse<HelpArticleListItem>>('/v1/help/articles', params);\n }\n\n async getBySlug(slug: string, params?: HelpGetBySlugParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: HelpGetByIdParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async search(params: HelpSearchParams): Promise<HelpSearchResult[]> {\n return this.http.get<HelpSearchResult[]>('/v1/help/search', params);\n }\n\n async getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async voteUsefulness(\n articleId: string,\n vote: 'yes' | 'no' | null,\n previousVote?: 'yes' | 'no' | null,\n ): Promise<VoteUsefulnessResponse> {\n return this.http.post<VoteUsefulnessResponse>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/vote-usefulness`,\n { vote, previousVote }\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { LocaleOptions, Page, PageListItem, PaginatedResponse, PaginationParams } from '../types';\n\nexport interface PagesListParams extends PaginationParams, LocaleOptions {\n search?: string;\n}\n\nexport interface PagesGetBySlugParams extends LocaleOptions {}\n\nexport interface PagesGetByIdParams extends LocaleOptions {}\n\nexport class PagesModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: PagesListParams): Promise<PaginatedResponse<PageListItem>> {\n return this.http.get<PaginatedResponse<PageListItem>>('/v1/pages', params);\n }\n\n async getBySlug(slug: string, params?: PagesGetBySlugParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: PagesGetByIdParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(pageId: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/by-id/${encodeURIComponent(pageId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/${encodeURIComponent(slug)}/translations`\n );\n }\n}\n","import { HttpClient } from './http-client';\nimport { AnnouncementModule } from './modules/announcement';\nimport { BlogModule } from './modules/blog';\nimport { ChangelogModule } from './modules/changelog';\nimport { ConfigModule } from './modules/config';\nimport { HelpModule } from './modules/help';\nimport { PagesModule } from './modules/pages';\nimport type { KookeeConfig, HealthCheckResponse } from './types';\n\nexport class Kookee {\n private readonly http: HttpClient;\n\n public readonly announcements: AnnouncementModule;\n public readonly blog: BlogModule;\n public readonly changelog: ChangelogModule;\n public readonly config: ConfigModule;\n public readonly help: HelpModule;\n public readonly pages: PagesModule;\n\n constructor(config: KookeeConfig) {\n if (!config.apiKey) {\n throw new Error('apiKey is required');\n }\n\n this.http = new HttpClient(config.apiKey, config.baseUrl);\n\n this.announcements = new AnnouncementModule(this.http);\n this.blog = new BlogModule(this.http);\n this.changelog = new ChangelogModule(this.http);\n this.config = new ConfigModule(this.http);\n this.help = new HelpModule(this.http);\n this.pages = new PagesModule(this.http);\n }\n\n async health(): Promise<HealthCheckResponse> {\n return this.http.get<HealthCheckResponse>('/v1/health');\n }\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/lib/http-client.ts","../src/lib/modules/announcement.ts","../src/lib/modules/blog.ts","../src/lib/modules/changelog.ts","../src/lib/modules/config.ts","../src/lib/modules/help.ts","../src/lib/modules/pages.ts","../src/lib/client.ts"],"names":["DEFAULT_BASE_URL","API_KEY_HEADER","KookeeApiError","code","message","status","HttpClient","apiKey","baseUrl","path","params","url","key","value","item","response","body","errorData","AnnouncementModule","http","excludeIds","rest","queryParams","id","BlogModule","slug","postId","ChangelogModule","changelogId","ConfigModule","HelpModule","articleId","vote","previousVote","PagesModule","pageId","Kookee","config"],"mappings":"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","file":"index.js","sourcesContent":["import type { ApiError } from './types';\n\nconst DEFAULT_BASE_URL = 'https://api.kookee.dev';\nconst API_KEY_HEADER = 'Kookee-API-Key';\n\nexport class KookeeApiError extends Error {\n constructor(\n public readonly code: string,\n message: string,\n public readonly status: number\n ) {\n super(message);\n this.name = 'KookeeApiError';\n }\n}\n\nexport class HttpClient {\n private readonly baseUrl: string;\n private readonly apiKey: string;\n\n constructor(apiKey: string, baseUrl?: string) {\n this.apiKey = apiKey;\n this.baseUrl = baseUrl ?? DEFAULT_BASE_URL;\n }\n\n private getHeaders(): Record<string, string> {\n return {\n 'Content-Type': 'application/json',\n [API_KEY_HEADER]: this.apiKey,\n };\n }\n\n async get<T>(path: string, params?: object): Promise<T> {\n const url = new URL(`${this.baseUrl}${path}`);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== undefined && value !== null) {\n if (Array.isArray(value)) {\n for (const item of value) {\n url.searchParams.append(key, String(item));\n }\n } else {\n url.searchParams.set(key, String(value));\n }\n }\n }\n }\n\n const response = await fetch(url.toString(), {\n method: 'GET',\n headers: this.getHeaders(),\n });\n\n return this.handleResponse<T>(response);\n }\n\n async post<T>(path: string, body?: unknown): Promise<T> {\n const response = await fetch(`${this.baseUrl}${path}`, {\n method: 'POST',\n headers: this.getHeaders(),\n body: body ? JSON.stringify(body) : undefined,\n });\n\n return this.handleResponse<T>(response);\n }\n\n private async handleResponse<T>(response: Response): Promise<T> {\n if (!response.ok) {\n let errorData: ApiError | null = null;\n\n try {\n errorData = (await response.json()) as ApiError;\n } catch {\n // Response body is not JSON\n }\n\n throw new KookeeApiError(\n errorData?.code ?? 'UNKNOWN_ERROR',\n errorData?.message ?? `Request failed with status ${response.status}`,\n response.status\n );\n }\n\n return response.json() as Promise<T>;\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n Announcement,\n AnnouncementListItem,\n AnnouncementOrderBy,\n AnnouncementType,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n} from '../types';\n\nexport interface AnnouncementListParams extends PaginationParams, LocaleOptions {\n type?: AnnouncementType;\n excludeIds?: string[];\n orderBy?: AnnouncementOrderBy;\n order?: OrderDirection;\n}\n\nexport interface AnnouncementGetByIdParams extends LocaleOptions {}\n\nexport class AnnouncementModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: AnnouncementListParams): Promise<PaginatedResponse<AnnouncementListItem>> {\n const { excludeIds, ...rest } = params ?? {};\n const queryParams = excludeIds?.length ? { ...rest, excludeIds: excludeIds.join(',') } : rest;\n return this.http.get<PaginatedResponse<AnnouncementListItem>>('/v1/announcements', queryParams);\n }\n\n async getById(id: string, params?: AnnouncementGetByIdParams): Promise<Announcement> {\n return this.http.get<Announcement>(`/v1/announcements/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, Announcement>> {\n return this.http.get<Record<string, Announcement>>(\n `/v1/announcements/${encodeURIComponent(id)}/translations`\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n BlogPost,\n BlogPostListItem,\n BlogTagWithCount,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface BlogListParams extends PaginationParams, LocaleOptions {\n tags?: string[];\n search?: string;\n}\n\nexport interface BlogGetBySlugParams extends LocaleOptions {}\n\nexport interface BlogGetByIdParams extends LocaleOptions {}\n\nexport class BlogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: BlogListParams): Promise<PaginatedResponse<BlogPostListItem>> {\n return this.http.get<PaginatedResponse<BlogPostListItem>>('/v1/blog/posts', params);\n }\n\n async getBySlug(slug: string, params?: BlogGetBySlugParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: BlogGetByIdParams): Promise<BlogPost> {\n return this.http.get<BlogPost>(`/v1/blog/posts/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTags(): Promise<BlogTagWithCount[]> {\n return this.http.get<BlogTagWithCount[]>('/v1/blog/tags');\n }\n\n async getTranslationsById(postId: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/by-id/${encodeURIComponent(postId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, BlogPost>> {\n return this.http.get<Record<string, BlogPost>>(\n `/v1/blog/posts/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(postId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/blog/posts/${encodeURIComponent(postId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n ChangelogEntry,\n ChangelogEntryListItem,\n ChangelogOrderBy,\n LocaleOptions,\n OrderDirection,\n PaginatedResponse,\n PaginationParams,\n ReactParams,\n ReactResponse,\n} from '../types';\n\nexport interface ChangelogListParams extends PaginationParams, LocaleOptions {\n type?: string;\n search?: string;\n orderBy?: ChangelogOrderBy;\n order?: OrderDirection;\n}\n\nexport interface ChangelogGetBySlugParams extends LocaleOptions {}\n\nexport interface ChangelogGetByIdParams extends LocaleOptions {}\n\nexport class ChangelogModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: ChangelogListParams): Promise<PaginatedResponse<ChangelogEntryListItem>> {\n return this.http.get<PaginatedResponse<ChangelogEntryListItem>>('/v1/changelog', params);\n }\n\n async getBySlug(slug: string, params?: ChangelogGetBySlugParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: ChangelogGetByIdParams): Promise<ChangelogEntry> {\n return this.http.get<ChangelogEntry>(`/v1/changelog/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(id: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/by-id/${encodeURIComponent(id)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, ChangelogEntry>> {\n return this.http.get<Record<string, ChangelogEntry>>(\n `/v1/changelog/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async react(changelogId: string, params: ReactParams): Promise<ReactResponse> {\n return this.http.post<ReactResponse>(\n `/v1/changelog/${encodeURIComponent(changelogId)}/reactions`,\n params\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { PublicConfig } from '../types';\n\nexport interface ConfigListParams {\n keys?: string[];\n}\n\nexport class ConfigModule {\n constructor(private readonly http: HttpClient) {}\n\n async getByKey(key: string): Promise<PublicConfig> {\n return this.http.get<PublicConfig>(`/v1/config/${encodeURIComponent(key)}`);\n }\n\n async list(params?: ConfigListParams): Promise<PublicConfig[]> {\n return this.http.get<PublicConfig[]>('/v1/config', params);\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type {\n HelpArticle,\n HelpArticleListItem,\n HelpCategory,\n HelpChatParams,\n HelpChatResponse,\n HelpSearchResult,\n LocaleOptions,\n PaginatedResponse,\n PaginationParams,\n VoteUsefulnessResponse,\n} from '../types';\n\nexport interface HelpCategoriesParams extends LocaleOptions {}\n\nexport interface HelpListParams extends PaginationParams, LocaleOptions {\n category?: string;\n search?: string;\n}\n\nexport interface HelpSearchParams extends LocaleOptions {\n query: string;\n limit?: number;\n}\n\nexport interface HelpGetBySlugParams extends LocaleOptions {}\n\nexport interface HelpGetByIdParams extends LocaleOptions {}\n\nexport class HelpModule {\n constructor(private readonly http: HttpClient) {}\n\n async categories(params?: HelpCategoriesParams): Promise<HelpCategory[]> {\n return this.http.get<HelpCategory[]>('/v1/help/categories', params);\n }\n\n async list(params?: HelpListParams): Promise<PaginatedResponse<HelpArticleListItem>> {\n return this.http.get<PaginatedResponse<HelpArticleListItem>>('/v1/help/articles', params);\n }\n\n async getBySlug(slug: string, params?: HelpGetBySlugParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: HelpGetByIdParams): Promise<HelpArticle> {\n return this.http.get<HelpArticle>(`/v1/help/articles/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async search(params: HelpSearchParams): Promise<HelpSearchResult[]> {\n return this.http.get<HelpSearchResult[]>('/v1/help/search', params);\n }\n\n async getTranslationsById(articleId: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, HelpArticle>> {\n return this.http.get<Record<string, HelpArticle>>(\n `/v1/help/articles/${encodeURIComponent(slug)}/translations`\n );\n }\n\n async chat(params: HelpChatParams): Promise<HelpChatResponse> {\n return this.http.post<HelpChatResponse>('/v1/help/chat', params);\n }\n\n async voteUsefulness(\n articleId: string,\n vote: 'yes' | 'no' | null,\n previousVote?: 'yes' | 'no' | null,\n ): Promise<VoteUsefulnessResponse> {\n return this.http.post<VoteUsefulnessResponse>(\n `/v1/help/articles/by-id/${encodeURIComponent(articleId)}/vote-usefulness`,\n { vote, previousVote }\n );\n }\n}\n","import type { HttpClient } from '../http-client';\nimport type { LocaleOptions, Page, PageListItem, PaginatedResponse, PaginationParams } from '../types';\n\nexport interface PagesListParams extends PaginationParams, LocaleOptions {\n search?: string;\n}\n\nexport interface PagesGetBySlugParams extends LocaleOptions {}\n\nexport interface PagesGetByIdParams extends LocaleOptions {}\n\nexport class PagesModule {\n constructor(private readonly http: HttpClient) {}\n\n async list(params?: PagesListParams): Promise<PaginatedResponse<PageListItem>> {\n return this.http.get<PaginatedResponse<PageListItem>>('/v1/pages', params);\n }\n\n async getBySlug(slug: string, params?: PagesGetBySlugParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/${encodeURIComponent(slug)}`, params);\n }\n\n async getById(id: string, params?: PagesGetByIdParams): Promise<Page> {\n return this.http.get<Page>(`/v1/pages/by-id/${encodeURIComponent(id)}`, params);\n }\n\n async getTranslationsById(pageId: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/by-id/${encodeURIComponent(pageId)}/translations`\n );\n }\n\n async getTranslationsBySlug(slug: string): Promise<Record<string, Page>> {\n return this.http.get<Record<string, Page>>(\n `/v1/pages/${encodeURIComponent(slug)}/translations`\n );\n }\n}\n","import { HttpClient } from './http-client';\nimport { AnnouncementModule } from './modules/announcement';\nimport { BlogModule } from './modules/blog';\nimport { ChangelogModule } from './modules/changelog';\nimport { ConfigModule } from './modules/config';\nimport { HelpModule } from './modules/help';\nimport { PagesModule } from './modules/pages';\nimport type { KookeeConfig, HealthCheckResponse } from './types';\n\nexport class Kookee {\n private readonly http: HttpClient;\n\n public readonly announcements: AnnouncementModule;\n public readonly blog: BlogModule;\n public readonly changelog: ChangelogModule;\n public readonly config: ConfigModule;\n public readonly help: HelpModule;\n public readonly pages: PagesModule;\n\n constructor(config: KookeeConfig) {\n if (!config.apiKey) {\n throw new Error('apiKey is required');\n }\n\n this.http = new HttpClient(config.apiKey, config.baseUrl);\n\n this.announcements = new AnnouncementModule(this.http);\n this.blog = new BlogModule(this.http);\n this.changelog = new ChangelogModule(this.http);\n this.config = new ConfigModule(this.http);\n this.help = new HelpModule(this.http);\n this.pages = new PagesModule(this.http);\n }\n\n async health(): Promise<HealthCheckResponse> {\n return this.http.get<HealthCheckResponse>('/v1/health');\n }\n}\n"]}
|