@voquill/types 0.1.0

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.
Files changed (82) hide show
  1. package/dist/ai-llm.types.d.ts +64 -0
  2. package/dist/ai-llm.types.d.ts.map +1 -0
  3. package/dist/ai-llm.types.js +1 -0
  4. package/dist/ai-provider.types.d.ts +59 -0
  5. package/dist/ai-provider.types.d.ts.map +1 -0
  6. package/dist/ai-provider.types.js +14 -0
  7. package/dist/ai-tool.types.d.ts +21 -0
  8. package/dist/ai-tool.types.d.ts.map +1 -0
  9. package/dist/ai-tool.types.js +1 -0
  10. package/dist/api-refresh-token.types.d.ts +5 -0
  11. package/dist/api-refresh-token.types.d.ts.map +1 -0
  12. package/dist/api-refresh-token.types.js +1 -0
  13. package/dist/apiKey.types.d.ts +19 -0
  14. package/dist/apiKey.types.d.ts.map +1 -0
  15. package/dist/apiKey.types.js +16 -0
  16. package/dist/app-target.types.d.ts +10 -0
  17. package/dist/app-target.types.d.ts.map +1 -0
  18. package/dist/app-target.types.js +1 -0
  19. package/dist/auth.types.d.ts +13 -0
  20. package/dist/auth.types.d.ts.map +1 -0
  21. package/dist/auth.types.js +1 -0
  22. package/dist/chat.types.d.ts +17 -0
  23. package/dist/chat.types.d.ts.map +1 -0
  24. package/dist/chat.types.js +1 -0
  25. package/dist/common.types.d.ts +20 -0
  26. package/dist/common.types.d.ts.map +1 -0
  27. package/dist/common.types.js +3 -0
  28. package/dist/config.types.d.ts +13 -0
  29. package/dist/config.types.d.ts.map +1 -0
  30. package/dist/config.types.js +16 -0
  31. package/dist/contact.types.d.ts +14 -0
  32. package/dist/contact.types.d.ts.map +1 -0
  33. package/dist/contact.types.js +1 -0
  34. package/dist/enterprise.types.d.ts +91 -0
  35. package/dist/enterprise.types.d.ts.map +1 -0
  36. package/dist/enterprise.types.js +27 -0
  37. package/dist/flagged-audio.types.d.ts +14 -0
  38. package/dist/flagged-audio.types.d.ts.map +1 -0
  39. package/dist/flagged-audio.types.js +1 -0
  40. package/dist/hotkey.types.d.ts +6 -0
  41. package/dist/hotkey.types.d.ts.map +1 -0
  42. package/dist/hotkey.types.js +1 -0
  43. package/dist/index.d.ts +26 -0
  44. package/dist/index.d.ts.map +1 -0
  45. package/dist/index.js +25 -0
  46. package/dist/json-schema.types.d.ts +2 -0
  47. package/dist/json-schema.types.d.ts.map +1 -0
  48. package/dist/json-schema.types.js +1 -0
  49. package/dist/llm-provider.types.d.ts +49 -0
  50. package/dist/llm-provider.types.d.ts.map +1 -0
  51. package/dist/llm-provider.types.js +12 -0
  52. package/dist/member.types.d.ts +24 -0
  53. package/dist/member.types.d.ts.map +1 -0
  54. package/dist/member.types.js +1 -0
  55. package/dist/metrics.types.d.ts +33 -0
  56. package/dist/metrics.types.d.ts.map +1 -0
  57. package/dist/metrics.types.js +1 -0
  58. package/dist/openrouter.types.d.ts +55 -0
  59. package/dist/openrouter.types.d.ts.map +1 -0
  60. package/dist/openrouter.types.js +1 -0
  61. package/dist/preferences.types.d.ts +33 -0
  62. package/dist/preferences.types.d.ts.map +1 -0
  63. package/dist/preferences.types.js +1 -0
  64. package/dist/remote.types.d.ts +111 -0
  65. package/dist/remote.types.d.ts.map +1 -0
  66. package/dist/remote.types.js +1 -0
  67. package/dist/stt-provider.types.d.ts +49 -0
  68. package/dist/stt-provider.types.d.ts.map +1 -0
  69. package/dist/stt-provider.types.js +12 -0
  70. package/dist/term.types.d.ts +40 -0
  71. package/dist/term.types.d.ts.map +1 -0
  72. package/dist/term.types.js +11 -0
  73. package/dist/tone.types.d.ts +64 -0
  74. package/dist/tone.types.d.ts.map +1 -0
  75. package/dist/tone.types.js +17 -0
  76. package/dist/transcription.types.d.ts +30 -0
  77. package/dist/transcription.types.d.ts.map +1 -0
  78. package/dist/transcription.types.js +1 -0
  79. package/dist/user.types.d.ts +119 -0
  80. package/dist/user.types.d.ts.map +1 -0
  81. package/dist/user.types.js +32 -0
  82. package/package.json +27 -0
@@ -0,0 +1,64 @@
1
+ import type { JSONSchema } from "./json-schema.types";
2
+ export type LlmMessage = {
3
+ role: "system";
4
+ content: string;
5
+ } | {
6
+ role: "user";
7
+ content: string;
8
+ } | {
9
+ role: "assistant";
10
+ content?: string | null;
11
+ toolCalls?: LlmToolCall[];
12
+ } | {
13
+ role: "tool";
14
+ toolCallId: string;
15
+ content: string;
16
+ };
17
+ export interface LlmToolCall {
18
+ id: string;
19
+ name: string;
20
+ arguments: string;
21
+ }
22
+ export interface LlmTool {
23
+ name: string;
24
+ description?: string;
25
+ parameters?: JSONSchema;
26
+ }
27
+ export type LlmToolChoice = "auto" | "none" | "required" | {
28
+ name: string;
29
+ };
30
+ export interface LlmChatInput {
31
+ messages: LlmMessage[];
32
+ tools?: LlmTool[];
33
+ toolChoice?: LlmToolChoice;
34
+ maxTokens?: number;
35
+ temperature?: number;
36
+ stopSequences?: string[];
37
+ topP?: number;
38
+ frequencyPenalty?: number;
39
+ presencePenalty?: number;
40
+ seed?: number;
41
+ }
42
+ export type LlmStreamEvent = {
43
+ type: "text-delta";
44
+ text: string;
45
+ } | {
46
+ type: "tool-call";
47
+ id: string;
48
+ name: string;
49
+ arguments: string;
50
+ } | {
51
+ type: "finish";
52
+ finishReason: LlmFinishReason;
53
+ usage?: LlmUsage;
54
+ modelId?: string;
55
+ } | {
56
+ type: "error";
57
+ error: string;
58
+ };
59
+ export type LlmFinishReason = "stop" | "length" | "tool-calls" | "content-filter" | "error" | "other";
60
+ export interface LlmUsage {
61
+ promptTokens?: number;
62
+ completionTokens?: number;
63
+ }
64
+ //# sourceMappingURL=ai-llm.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-llm.types.d.ts","sourceRoot":"","sources":["../src/ai-llm.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,MAAM,MAAM,UAAU,GAClB;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,GACnC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,GACjC;IACE,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,WAAW,EAAE,CAAC;CAC3B,GACD;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC;AAE1D,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,MAAM,MAAM,aAAa,GACrB,MAAM,GACN,MAAM,GACN,UAAU,GACV;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAErB,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,MAAM,cAAc,GACtB;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GACpC;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GAClE;IACE,IAAI,EAAE,QAAQ,CAAC;IACf,YAAY,EAAE,eAAe,CAAC;IAC9B,KAAK,CAAC,EAAE,QAAQ,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,GACD;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAErC,MAAM,MAAM,eAAe,GACvB,MAAM,GACN,QAAQ,GACR,YAAY,GACZ,gBAAgB,GAChB,OAAO,GACP,OAAO,CAAC;AAEZ,MAAM,WAAW,QAAQ;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,59 @@
1
+ import z from "zod";
2
+ import type { PullStatus } from "./common.types";
3
+ export type AiProvider = {
4
+ id: string;
5
+ provider: string;
6
+ name: string;
7
+ url: string;
8
+ apiKeySuffix: string;
9
+ model: string;
10
+ isEnabled: boolean;
11
+ pullStatus: PullStatus;
12
+ pullError: string | null;
13
+ sttActivation: number;
14
+ llmActivation: number;
15
+ createdAt: string;
16
+ };
17
+ export type AiProviderInput = {
18
+ id?: string;
19
+ provider: string;
20
+ name: string;
21
+ url: string;
22
+ apiKey?: string;
23
+ model: string;
24
+ isEnabled: boolean;
25
+ sttActivation: number;
26
+ llmActivation: number;
27
+ };
28
+ export declare const AiProviderInputZod: z.ZodObject<{
29
+ id: z.ZodOptional<z.ZodString>;
30
+ provider: z.ZodString;
31
+ name: z.ZodString;
32
+ url: z.ZodString;
33
+ apiKey: z.ZodDefault<z.ZodString>;
34
+ model: z.ZodString;
35
+ isEnabled: z.ZodBoolean;
36
+ sttActivation: z.ZodNumber;
37
+ llmActivation: z.ZodNumber;
38
+ }, "strict", z.ZodTypeAny, {
39
+ provider: string;
40
+ name: string;
41
+ url: string;
42
+ apiKey: string;
43
+ model: string;
44
+ isEnabled: boolean;
45
+ sttActivation: number;
46
+ llmActivation: number;
47
+ id?: string | undefined;
48
+ }, {
49
+ provider: string;
50
+ name: string;
51
+ url: string;
52
+ model: string;
53
+ isEnabled: boolean;
54
+ sttActivation: number;
55
+ llmActivation: number;
56
+ id?: string | undefined;
57
+ apiKey?: string | undefined;
58
+ }>;
59
+ //# sourceMappingURL=ai-provider.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-provider.types.d.ts","sourceRoot":"","sources":["../src/ai-provider.types.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,UAAU,CAAC;IACvB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYiB,CAAC"}
@@ -0,0 +1,14 @@
1
+ import z from "zod";
2
+ export const AiProviderInputZod = z
3
+ .object({
4
+ id: z.string().optional(),
5
+ provider: z.string(),
6
+ name: z.string(),
7
+ url: z.string(),
8
+ apiKey: z.string().default(""),
9
+ model: z.string(),
10
+ isEnabled: z.boolean(),
11
+ sttActivation: z.number().int().min(0).max(1),
12
+ llmActivation: z.number().int().min(0).max(3),
13
+ })
14
+ .strict();
@@ -0,0 +1,21 @@
1
+ import type { JSONSchema } from "./json-schema.types";
2
+ export type ToolScope = "pill" | "chat";
3
+ export interface ToolInfo {
4
+ id: string;
5
+ description: string;
6
+ instructions: string;
7
+ schema: JSONSchema;
8
+ scope?: ToolScope;
9
+ }
10
+ export type ToolPermissionStatus = "pending" | "allowed" | "denied";
11
+ export type ToolPermissionResolution = Extract<ToolPermissionStatus, "allowed" | "denied">;
12
+ export interface ToolPermission {
13
+ id: string;
14
+ toolId: string;
15
+ params: Record<string, unknown>;
16
+ status: ToolPermissionStatus;
17
+ token?: string;
18
+ conversationId: string;
19
+ createdAt: number;
20
+ }
21
+ //# sourceMappingURL=ai-tool.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-tool.types.d.ts","sourceRoot":"","sources":["../src/ai-tool.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;AAExC,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,UAAU,CAAC;IACnB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,MAAM,oBAAoB,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEpE,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAC5C,oBAAoB,EACpB,SAAS,GAAG,QAAQ,CACrB,CAAC;AAEF,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,MAAM,EAAE,oBAAoB,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;CACnB"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export type DatabaseApiRefreshToken = {
2
+ uid: string;
3
+ createdAt: number;
4
+ };
5
+ //# sourceMappingURL=api-refresh-token.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-refresh-token.types.d.ts","sourceRoot":"","sources":["../src/api-refresh-token.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG;IACpC,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,19 @@
1
+ import type { Nullable } from "./common.types";
2
+ import type { OpenRouterConfig } from "./openrouter.types";
3
+ export declare const API_KEY_PROVIDERS: readonly ["groq", "openai", "aldea", "assemblyai", "elevenlabs", "deepgram", "openrouter", "ollama", "openai-compatible", "azure", "deepseek", "gemini", "claude", "speaches"];
4
+ export type ApiKeyProvider = (typeof API_KEY_PROVIDERS)[number];
5
+ export type ApiKey = {
6
+ id: string;
7
+ name: string;
8
+ provider: ApiKeyProvider;
9
+ createdAt: string;
10
+ keySuffix?: string | null;
11
+ keyFull?: string | null;
12
+ transcriptionModel?: string | null;
13
+ postProcessingModel?: string | null;
14
+ openRouterConfig?: Nullable<OpenRouterConfig>;
15
+ baseUrl?: string | null;
16
+ azureRegion?: string | null;
17
+ includeV1Path?: boolean | null;
18
+ };
19
+ //# sourceMappingURL=apiKey.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apiKey.types.d.ts","sourceRoot":"","sources":["../src/apiKey.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAE3D,eAAO,MAAM,iBAAiB,gLAepB,CAAC;AACX,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEhE,MAAM,MAAM,MAAM,GAAG;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,cAAc,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,gBAAgB,CAAC,EAAE,QAAQ,CAAC,gBAAgB,CAAC,CAAC;IAC9C,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,aAAa,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAChC,CAAC"}
@@ -0,0 +1,16 @@
1
+ export const API_KEY_PROVIDERS = [
2
+ "groq",
3
+ "openai",
4
+ "aldea",
5
+ "assemblyai",
6
+ "elevenlabs",
7
+ "deepgram",
8
+ "openrouter",
9
+ "ollama",
10
+ "openai-compatible",
11
+ "azure",
12
+ "deepseek",
13
+ "gemini",
14
+ "claude",
15
+ "speaches",
16
+ ];
@@ -0,0 +1,10 @@
1
+ import type { Nullable } from "./common.types";
2
+ export type AppTarget = {
3
+ id: string;
4
+ name: string;
5
+ createdAt: string;
6
+ toneId: Nullable<string>;
7
+ iconPath: Nullable<string>;
8
+ pasteKeybind: Nullable<string>;
9
+ };
10
+ //# sourceMappingURL=app-target.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app-target.types.d.ts","sourceRoot":"","sources":["../src/app-target.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE/C,MAAM,MAAM,SAAS,GAAG;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACzB,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC3B,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;CAChC,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ export type Auth = {
2
+ id: string;
3
+ email: string;
4
+ isAdmin: boolean;
5
+ createdAt: string;
6
+ };
7
+ export type AuthContext = {
8
+ userId: string;
9
+ email: string;
10
+ isAdmin: boolean;
11
+ expiresAt: string;
12
+ };
13
+ //# sourceMappingURL=auth.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.types.d.ts","sourceRoot":"","sources":["../src/auth.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,IAAI,GAAG;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Nullable } from "./common.types";
2
+ export type Conversation = {
3
+ id: string;
4
+ title: string;
5
+ createdAt: string;
6
+ updatedAt: string;
7
+ };
8
+ export type ChatMessageRole = "user" | "assistant" | "system";
9
+ export type ChatMessage = {
10
+ id: string;
11
+ conversationId: string;
12
+ role: ChatMessageRole;
13
+ content: string;
14
+ createdAt: string;
15
+ metadata: Nullable<Record<string, unknown>>;
16
+ };
17
+ //# sourceMappingURL=chat.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chat.types.d.ts","sourceRoot":"","sources":["../src/chat.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;AAE9D,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,eAAe,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;CAC7C,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,20 @@
1
+ import z from "zod";
2
+ export type Nullable<T> = T | null;
3
+ export type EmptyObject = Record<string, never>;
4
+ export type Replace<T, S, D> = {
5
+ [K in keyof T]: T[K] extends S ? D : T[K] extends S | null ? D | null : T[K] extends S | undefined ? D | undefined : T[K] extends S | null | undefined ? D | null | undefined : T[K];
6
+ };
7
+ export type JsonResponse = {
8
+ name: string;
9
+ description?: string;
10
+ schema: Record<string, unknown>;
11
+ };
12
+ export type TranscriptionMode = "local" | "api" | "cloud";
13
+ export type PostProcessingMode = "none" | "api" | "cloud";
14
+ export type AgentMode = PostProcessingMode | "openclaw";
15
+ export type DictationPillVisibility = "hidden" | "while_active" | "persistent";
16
+ export type PullStatus = "in_progress" | "error" | "complete";
17
+ export declare const STYLING_MODES: readonly ["app", "manual"];
18
+ export type StylingMode = (typeof STYLING_MODES)[number];
19
+ export declare const StylingModeZod: z.ZodEnum<["app", "manual"]>;
20
+ //# sourceMappingURL=common.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.types.d.ts","sourceRoot":"","sources":["../src/common.types.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEnC,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAEhD,MAAM,MAAM,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI;KAC5B,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,GAC1B,CAAC,GACD,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,GACnB,CAAC,GAAG,IAAI,GACR,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,GAAG,SAAS,GACxB,CAAC,GAAG,SAAS,GACb,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,GAAG,SAAS,GAC/B,CAAC,GAAG,IAAI,GAAG,SAAS,GACpB,CAAC,CAAC,CAAC,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG,KAAK,GAAG,OAAO,CAAC;AAE1D,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,CAAC;AAE1D,MAAM,MAAM,SAAS,GAAG,kBAAkB,GAAG,UAAU,CAAC;AAExD,MAAM,MAAM,uBAAuB,GAAG,QAAQ,GAAG,cAAc,GAAG,YAAY,CAAC;AAE/E,MAAM,MAAM,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,UAAU,CAAC;AAE9D,eAAO,MAAM,aAAa,4BAA6B,CAAC;AACxD,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC;AACzD,eAAO,MAAM,cAAc,8BAAwB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import z from "zod";
2
+ export const STYLING_MODES = ["app", "manual"];
3
+ export const StylingModeZod = z.enum(STYLING_MODES);
@@ -0,0 +1,13 @@
1
+ export type FullConfig = {
2
+ freeWordsPerDay: number;
3
+ freeWordsPerMonth: number;
4
+ freeTokensPerDay: number;
5
+ freeTokensPerMonth: number;
6
+ proWordsPerDay: number;
7
+ proWordsPerMonth: number;
8
+ proTokensPerDay: number;
9
+ proTokensPerMonth: number;
10
+ toneOverrides?: Record<string, string>;
11
+ };
12
+ export declare const FULL_CONFIG: FullConfig;
13
+ //# sourceMappingURL=config.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../src/config.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACxC,CAAC;AASF,eAAO,MAAM,WAAW,EAAE,UASzB,CAAC"}
@@ -0,0 +1,16 @@
1
+ const TOKEN_MULT = 18;
2
+ const MONTH_MULT = 30;
3
+ const FREE_WORDS_PER_DAY = 1000;
4
+ const FREE_TOKENS_PER_DAY = FREE_WORDS_PER_DAY * TOKEN_MULT;
5
+ const PRO_WORDS_PER_DAY = 15000;
6
+ const PRO_TOKENS_PER_DAY = PRO_WORDS_PER_DAY * TOKEN_MULT;
7
+ export const FULL_CONFIG = {
8
+ freeWordsPerDay: FREE_WORDS_PER_DAY,
9
+ freeWordsPerMonth: FREE_WORDS_PER_DAY * MONTH_MULT,
10
+ freeTokensPerDay: FREE_TOKENS_PER_DAY,
11
+ freeTokensPerMonth: FREE_TOKENS_PER_DAY * MONTH_MULT,
12
+ proWordsPerDay: PRO_WORDS_PER_DAY,
13
+ proWordsPerMonth: PRO_WORDS_PER_DAY * MONTH_MULT,
14
+ proTokensPerDay: PRO_TOKENS_PER_DAY,
15
+ proTokensPerMonth: PRO_TOKENS_PER_DAY * MONTH_MULT,
16
+ };
@@ -0,0 +1,14 @@
1
+ import type { Nullable } from "./common.types";
2
+ import type { MemberPlan } from "./member.types";
3
+ export type Contact = {
4
+ id: string;
5
+ email?: Nullable<string>;
6
+ plan?: Nullable<MemberPlan>;
7
+ isPaying?: Nullable<boolean>;
8
+ firstName?: Nullable<string>;
9
+ lastName?: Nullable<string>;
10
+ name?: Nullable<string>;
11
+ userGroup?: Nullable<string>;
12
+ createdAt?: Nullable<string>;
13
+ };
14
+ //# sourceMappingURL=contact.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contact.types.d.ts","sourceRoot":"","sources":["../src/contact.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,MAAM,MAAM,OAAO,GAAG;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACzB,IAAI,CAAC,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IAC5B,QAAQ,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,CAAC;IAC7B,SAAS,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7B,QAAQ,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC5B,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACxB,SAAS,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7B,SAAS,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC9B,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,91 @@
1
+ import { z } from "zod";
2
+ export declare const ENTERPRISE_STYLING_MODES: readonly ["app", "manual", "any"];
3
+ export type EnterpriseStylingMode = (typeof ENTERPRISE_STYLING_MODES)[number];
4
+ export declare const EnterpriseStylingModeZod: z.ZodType<EnterpriseStylingMode>;
5
+ export type EnterpriseConfig = {
6
+ allowPostProcessing: boolean;
7
+ allowChangePostProcessing: boolean;
8
+ allowChangeTranscriptionMethod: boolean;
9
+ assistantModeEnabled: boolean;
10
+ powerModeEnabled: boolean;
11
+ allowMultiDeviceMode: boolean;
12
+ allowEmailSignIn: boolean;
13
+ allowDevTools: boolean;
14
+ stylingMode: EnterpriseStylingMode;
15
+ };
16
+ export type EnterpriseLicense = {
17
+ org: string;
18
+ maxSeats: number;
19
+ issued: string;
20
+ expires: string;
21
+ };
22
+ export declare const EnterpriseConfigZod: z.ZodObject<{
23
+ allowPostProcessing: z.ZodBoolean;
24
+ allowChangePostProcessing: z.ZodBoolean;
25
+ allowChangeTranscriptionMethod: z.ZodBoolean;
26
+ assistantModeEnabled: z.ZodBoolean;
27
+ powerModeEnabled: z.ZodBoolean;
28
+ allowMultiDeviceMode: z.ZodBoolean;
29
+ allowEmailSignIn: z.ZodBoolean;
30
+ allowDevTools: z.ZodBoolean;
31
+ stylingMode: z.ZodType<"app" | "manual" | "any", z.ZodTypeDef, "app" | "manual" | "any">;
32
+ }, "strict", z.ZodTypeAny, {
33
+ allowPostProcessing: boolean;
34
+ allowChangePostProcessing: boolean;
35
+ allowChangeTranscriptionMethod: boolean;
36
+ assistantModeEnabled: boolean;
37
+ powerModeEnabled: boolean;
38
+ allowMultiDeviceMode: boolean;
39
+ allowEmailSignIn: boolean;
40
+ allowDevTools: boolean;
41
+ stylingMode: "app" | "manual" | "any";
42
+ }, {
43
+ allowPostProcessing: boolean;
44
+ allowChangePostProcessing: boolean;
45
+ allowChangeTranscriptionMethod: boolean;
46
+ assistantModeEnabled: boolean;
47
+ powerModeEnabled: boolean;
48
+ allowMultiDeviceMode: boolean;
49
+ allowEmailSignIn: boolean;
50
+ allowDevTools: boolean;
51
+ stylingMode: "app" | "manual" | "any";
52
+ }>;
53
+ export type OidcProvider = {
54
+ id: string;
55
+ name: string;
56
+ issuerUrl: string;
57
+ clientId: string;
58
+ isEnabled: boolean;
59
+ createdAt: string;
60
+ };
61
+ export type OidcProviderInput = {
62
+ id?: string;
63
+ name: string;
64
+ issuerUrl: string;
65
+ clientId: string;
66
+ clientSecret?: string;
67
+ isEnabled: boolean;
68
+ };
69
+ export declare const OidcProviderInputZod: z.ZodObject<{
70
+ id: z.ZodOptional<z.ZodString>;
71
+ name: z.ZodString;
72
+ issuerUrl: z.ZodString;
73
+ clientId: z.ZodString;
74
+ clientSecret: z.ZodOptional<z.ZodString>;
75
+ isEnabled: z.ZodBoolean;
76
+ }, "strict", z.ZodTypeAny, {
77
+ name: string;
78
+ issuerUrl: string;
79
+ clientId: string;
80
+ isEnabled: boolean;
81
+ id?: string | undefined;
82
+ clientSecret?: string | undefined;
83
+ }, {
84
+ name: string;
85
+ issuerUrl: string;
86
+ clientId: string;
87
+ isEnabled: boolean;
88
+ id?: string | undefined;
89
+ clientSecret?: string | undefined;
90
+ }>;
91
+ //# sourceMappingURL=enterprise.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enterprise.types.d.ts","sourceRoot":"","sources":["../src/enterprise.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,wBAAwB,mCAAqC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,CAAC,OAAO,wBAAwB,CAAC,CAAC,MAAM,CAAC,CAAC;AAC9E,eAAO,MAAM,wBAAwB,EAEhC,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAEtC,MAAM,MAAM,gBAAgB,GAAG;IAC7B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,yBAAyB,EAAE,OAAO,CAAC;IACnC,8BAA8B,EAAE,OAAO,CAAC;IACxC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,qBAAqB,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYiB,CAAC;AAElD,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;EASiB,CAAC"}
@@ -0,0 +1,27 @@
1
+ import { z } from "zod";
2
+ import { STYLING_MODES } from "./common.types";
3
+ export const ENTERPRISE_STYLING_MODES = [...STYLING_MODES, "any"];
4
+ export const EnterpriseStylingModeZod = z.enum(ENTERPRISE_STYLING_MODES);
5
+ export const EnterpriseConfigZod = z
6
+ .object({
7
+ allowPostProcessing: z.boolean(),
8
+ allowChangePostProcessing: z.boolean(),
9
+ allowChangeTranscriptionMethod: z.boolean(),
10
+ assistantModeEnabled: z.boolean(),
11
+ powerModeEnabled: z.boolean(),
12
+ allowMultiDeviceMode: z.boolean(),
13
+ allowEmailSignIn: z.boolean(),
14
+ allowDevTools: z.boolean(),
15
+ stylingMode: EnterpriseStylingModeZod,
16
+ })
17
+ .strict();
18
+ export const OidcProviderInputZod = z
19
+ .object({
20
+ id: z.string().optional(),
21
+ name: z.string().min(1),
22
+ issuerUrl: z.string().url(),
23
+ clientId: z.string().min(1),
24
+ clientSecret: z.string().optional(),
25
+ isEnabled: z.boolean(),
26
+ })
27
+ .strict();
@@ -0,0 +1,14 @@
1
+ import { Nullable } from "./common.types";
2
+ export type FlaggedAudio = {
3
+ id: string;
4
+ filePath: string;
5
+ feedback: string;
6
+ transcriptionPrompt: Nullable<string>;
7
+ postProcessingPrompt: Nullable<string>;
8
+ rawTranscription: string;
9
+ postProcessedTranscription: Nullable<string>;
10
+ transcriptionProvider: string;
11
+ postProcessingProvider: Nullable<string>;
12
+ sampleRate: Nullable<number>;
13
+ };
14
+ //# sourceMappingURL=flagged-audio.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flagged-audio.types.d.ts","sourceRoot":"","sources":["../src/flagged-audio.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACtC,oBAAoB,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACvC,gBAAgB,EAAE,MAAM,CAAC;IACzB,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7C,qBAAqB,EAAE,MAAM,CAAC;IAC9B,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACzC,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC9B,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export type Hotkey = {
2
+ id: string;
3
+ actionName: string;
4
+ keys: string[];
5
+ };
6
+ //# sourceMappingURL=hotkey.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hotkey.types.d.ts","sourceRoot":"","sources":["../src/hotkey.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,MAAM,GAAG;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,26 @@
1
+ export * from "./ai-llm.types";
2
+ export * from "./ai-tool.types";
3
+ export * from "./chat.types";
4
+ export * from "./json-schema.types";
5
+ export * from "./api-refresh-token.types";
6
+ export * from "./apiKey.types";
7
+ export * from "./app-target.types";
8
+ export * from "./auth.types";
9
+ export * from "./common.types";
10
+ export * from "./config.types";
11
+ export * from "./contact.types";
12
+ export * from "./enterprise.types";
13
+ export * from "./flagged-audio.types";
14
+ export * from "./hotkey.types";
15
+ export * from "./llm-provider.types";
16
+ export * from "./member.types";
17
+ export * from "./metrics.types";
18
+ export * from "./openrouter.types";
19
+ export * from "./preferences.types";
20
+ export * from "./remote.types";
21
+ export * from "./stt-provider.types";
22
+ export * from "./term.types";
23
+ export * from "./tone.types";
24
+ export * from "./transcription.types";
25
+ export * from "./user.types";
26
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,cAAc,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,25 @@
1
+ export * from "./ai-llm.types";
2
+ export * from "./ai-tool.types";
3
+ export * from "./chat.types";
4
+ export * from "./json-schema.types";
5
+ export * from "./api-refresh-token.types";
6
+ export * from "./apiKey.types";
7
+ export * from "./app-target.types";
8
+ export * from "./auth.types";
9
+ export * from "./common.types";
10
+ export * from "./config.types";
11
+ export * from "./contact.types";
12
+ export * from "./enterprise.types";
13
+ export * from "./flagged-audio.types";
14
+ export * from "./hotkey.types";
15
+ export * from "./llm-provider.types";
16
+ export * from "./member.types";
17
+ export * from "./metrics.types";
18
+ export * from "./openrouter.types";
19
+ export * from "./preferences.types";
20
+ export * from "./remote.types";
21
+ export * from "./stt-provider.types";
22
+ export * from "./term.types";
23
+ export * from "./tone.types";
24
+ export * from "./transcription.types";
25
+ export * from "./user.types";
@@ -0,0 +1,2 @@
1
+ export type { JSONSchema7 as JSONSchema } from "json-schema";
2
+ //# sourceMappingURL=json-schema.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"json-schema.types.d.ts","sourceRoot":"","sources":["../src/json-schema.types.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,WAAW,IAAI,UAAU,EAAE,MAAM,aAAa,CAAC"}
@@ -0,0 +1 @@
1
+ export {};