@openspecui/core 3.11.2 → 3.11.3
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/{document-translation-BTEG-uW_.mjs → document-translation-BrlCvnLZ.mjs} +5 -1
- package/dist/{document-translation-EMIQf5dw.d.mts → document-translation-Cv6BIGL5.d.mts} +58 -11
- package/dist/document-translation.d.mts +1 -1
- package/dist/document-translation.mjs +2 -2
- package/dist/index.d.mts +95 -27
- package/dist/index.mjs +29 -4
- package/dist/{local-download-profiles-CSXKbamv.d.mts → local-download-profiles-GKs2OOqJ.d.mts} +1 -1
- package/dist/local-download-profiles.d.mts +2 -2
- package/dist/{notifications-Ct6rtBwb.d.mts → notifications-CJQ_F_Un.d.mts} +15 -15
- package/dist/notifications.d.mts +2 -2
- package/dist/{openspec-projection-DrTZ0P31.d.mts → openspec-projection-BbuPTbvj.d.mts} +1 -1
- package/dist/openspec-projection.d.mts +2 -2
- package/dist/{opsx-entity-CIB-Wi0n.d.mts → opsx-entity-BO9G2SCW.d.mts} +1 -1
- package/dist/opsx-entity.d.mts +2 -2
- package/dist/{opsx-schema-detail-Cjoesix_.d.mts → opsx-schema-detail-DTajJW4g.d.mts} +1 -1
- package/dist/opsx-schema-detail.d.mts +3 -3
- package/dist/{schemas-DeEkRkAH.d.mts → schemas-DQzd1hgp.d.mts} +124 -124
- package/dist/{sounds-BaxOUgWE.d.mts → sounds-3yEx1YXT.d.mts} +4 -4
- package/dist/sounds.d.mts +1 -1
- package/dist/{terminal-audio-v3YSYJKq.d.mts → terminal-audio-UCLlM1qN.d.mts} +1 -1
- package/dist/terminal-audio.d.mts +2 -2
- package/dist/terminal-control.d.mts +2 -2
- package/dist/{terminal-invocation-C5gqne5H.d.mts → terminal-invocation-DCPc8hmm.d.mts} +81 -81
- package/dist/terminal-invocation.d.mts +1 -1
- package/dist/{translator-yHmEiuRX.mjs → translator-Car0_7uk.mjs} +40 -3
- package/dist/{translator-BtbU7rjR.d.mts → translator-prn3W9lf.d.mts} +175 -114
- package/dist/translator.d.mts +2 -2
- package/dist/translator.mjs +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { O as TranslationEngineIdSchema, r as DEFAULT_TRANSLATION_ENGINE_ID } from "./translator-Car0_7uk.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
4
|
//#region src/document-translation.ts
|
|
@@ -13,6 +13,10 @@ const TranslationEngineProjectSettingsSchema = z.object({
|
|
|
13
13
|
model: z.string().min(1).optional(),
|
|
14
14
|
selectedGroupId: z.string().min(1).optional()
|
|
15
15
|
}).default({}),
|
|
16
|
+
localLlama: z.object({
|
|
17
|
+
model: z.string().min(1).optional(),
|
|
18
|
+
selectedGroupId: z.string().min(1).optional()
|
|
19
|
+
}).default({}),
|
|
16
20
|
openai: z.object({ model: z.string().min(1).optional() }).default({})
|
|
17
21
|
}).default({});
|
|
18
22
|
const DocumentTranslationConfigSchema = z.object({
|
|
@@ -25,6 +25,16 @@ declare const TranslationEngineProjectSettingsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
25
25
|
selectedGroupId?: string | undefined;
|
|
26
26
|
model?: string | undefined;
|
|
27
27
|
}>>;
|
|
28
|
+
localLlama: z.ZodDefault<z.ZodObject<{
|
|
29
|
+
model: z.ZodOptional<z.ZodString>;
|
|
30
|
+
selectedGroupId: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
selectedGroupId?: string | undefined;
|
|
33
|
+
model?: string | undefined;
|
|
34
|
+
}, {
|
|
35
|
+
selectedGroupId?: string | undefined;
|
|
36
|
+
model?: string | undefined;
|
|
37
|
+
}>>;
|
|
28
38
|
openai: z.ZodDefault<z.ZodObject<{
|
|
29
39
|
model: z.ZodOptional<z.ZodString>;
|
|
30
40
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44,6 +54,10 @@ declare const TranslationEngineProjectSettingsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
44
54
|
selectedGroupId?: string | undefined;
|
|
45
55
|
model?: string | undefined;
|
|
46
56
|
};
|
|
57
|
+
localLlama: {
|
|
58
|
+
selectedGroupId?: string | undefined;
|
|
59
|
+
model?: string | undefined;
|
|
60
|
+
};
|
|
47
61
|
}, {
|
|
48
62
|
local?: {
|
|
49
63
|
selectedGroupId?: string | undefined;
|
|
@@ -56,13 +70,17 @@ declare const TranslationEngineProjectSettingsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
56
70
|
selectedGroupId?: string | undefined;
|
|
57
71
|
model?: string | undefined;
|
|
58
72
|
} | undefined;
|
|
73
|
+
localLlama?: {
|
|
74
|
+
selectedGroupId?: string | undefined;
|
|
75
|
+
model?: string | undefined;
|
|
76
|
+
} | undefined;
|
|
59
77
|
}>>;
|
|
60
78
|
declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
61
79
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
62
80
|
targetLanguage: z.ZodDefault<z.ZodString>;
|
|
63
81
|
displayMode: z.ZodDefault<z.ZodEnum<["direct", "bilingual"]>>;
|
|
64
82
|
cacheEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
65
|
-
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "openai"]>>;
|
|
83
|
+
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "local-llama", "openai"]>>;
|
|
66
84
|
engines: z.ZodDefault<z.ZodObject<{
|
|
67
85
|
local: z.ZodDefault<z.ZodObject<{
|
|
68
86
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -84,6 +102,16 @@ declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
|
84
102
|
selectedGroupId?: string | undefined;
|
|
85
103
|
model?: string | undefined;
|
|
86
104
|
}>>;
|
|
105
|
+
localLlama: z.ZodDefault<z.ZodObject<{
|
|
106
|
+
model: z.ZodOptional<z.ZodString>;
|
|
107
|
+
selectedGroupId: z.ZodOptional<z.ZodString>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
selectedGroupId?: string | undefined;
|
|
110
|
+
model?: string | undefined;
|
|
111
|
+
}, {
|
|
112
|
+
selectedGroupId?: string | undefined;
|
|
113
|
+
model?: string | undefined;
|
|
114
|
+
}>>;
|
|
87
115
|
openai: z.ZodDefault<z.ZodObject<{
|
|
88
116
|
model: z.ZodOptional<z.ZodString>;
|
|
89
117
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -103,6 +131,10 @@ declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
|
103
131
|
selectedGroupId?: string | undefined;
|
|
104
132
|
model?: string | undefined;
|
|
105
133
|
};
|
|
134
|
+
localLlama: {
|
|
135
|
+
selectedGroupId?: string | undefined;
|
|
136
|
+
model?: string | undefined;
|
|
137
|
+
};
|
|
106
138
|
}, {
|
|
107
139
|
local?: {
|
|
108
140
|
selectedGroupId?: string | undefined;
|
|
@@ -115,9 +147,13 @@ declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
|
115
147
|
selectedGroupId?: string | undefined;
|
|
116
148
|
model?: string | undefined;
|
|
117
149
|
} | undefined;
|
|
150
|
+
localLlama?: {
|
|
151
|
+
selectedGroupId?: string | undefined;
|
|
152
|
+
model?: string | undefined;
|
|
153
|
+
} | undefined;
|
|
118
154
|
}>>;
|
|
119
155
|
}, "strip", z.ZodTypeAny, {
|
|
120
|
-
engineId: "browser" | "local" | "local-ct2" | "openai";
|
|
156
|
+
engineId: "browser" | "local" | "local-ct2" | "local-llama" | "openai";
|
|
121
157
|
targetLanguage: string;
|
|
122
158
|
enabled: boolean;
|
|
123
159
|
displayMode: "direct" | "bilingual";
|
|
@@ -134,9 +170,13 @@ declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
|
134
170
|
selectedGroupId?: string | undefined;
|
|
135
171
|
model?: string | undefined;
|
|
136
172
|
};
|
|
173
|
+
localLlama: {
|
|
174
|
+
selectedGroupId?: string | undefined;
|
|
175
|
+
model?: string | undefined;
|
|
176
|
+
};
|
|
137
177
|
};
|
|
138
178
|
}, {
|
|
139
|
-
engineId?: "browser" | "local" | "local-ct2" | "openai" | undefined;
|
|
179
|
+
engineId?: "browser" | "local" | "local-ct2" | "local-llama" | "openai" | undefined;
|
|
140
180
|
targetLanguage?: string | undefined;
|
|
141
181
|
enabled?: boolean | undefined;
|
|
142
182
|
displayMode?: "direct" | "bilingual" | undefined;
|
|
@@ -153,6 +193,10 @@ declare const DocumentTranslationConfigSchema: z.ZodObject<{
|
|
|
153
193
|
selectedGroupId?: string | undefined;
|
|
154
194
|
model?: string | undefined;
|
|
155
195
|
} | undefined;
|
|
196
|
+
localLlama?: {
|
|
197
|
+
selectedGroupId?: string | undefined;
|
|
198
|
+
model?: string | undefined;
|
|
199
|
+
} | undefined;
|
|
156
200
|
} | undefined;
|
|
157
201
|
}>;
|
|
158
202
|
type DocumentTranslationConfig = z.infer<typeof DocumentTranslationConfigSchema>;
|
|
@@ -165,6 +209,9 @@ type TranslationEngineProjectSettingsUpdate = {
|
|
|
165
209
|
localCt2?: Partial<Omit<TranslationEngineProjectSettings['localCt2'], 'selectedGroupId'>> & {
|
|
166
210
|
selectedGroupId?: TranslationEngineProjectSettings['localCt2']['selectedGroupId'] | null;
|
|
167
211
|
};
|
|
212
|
+
localLlama?: Partial<Omit<TranslationEngineProjectSettings['localLlama'], 'selectedGroupId'>> & {
|
|
213
|
+
selectedGroupId?: TranslationEngineProjectSettings['localLlama']['selectedGroupId'] | null;
|
|
214
|
+
};
|
|
168
215
|
openai?: Partial<TranslationEngineProjectSettings['openai']>;
|
|
169
216
|
};
|
|
170
217
|
type DocumentTranslationConfigUpdate = Partial<Omit<DocumentTranslationConfig, 'engines'>> & {
|
|
@@ -193,17 +240,17 @@ declare const TranslationCacheEntrySchema: z.ZodObject<{
|
|
|
193
240
|
placeholderTopologyHash: z.ZodString;
|
|
194
241
|
attributeTopologyHash: z.ZodString;
|
|
195
242
|
displayPolicyVersion: z.ZodNumber;
|
|
196
|
-
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "openai"]>>;
|
|
243
|
+
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "local-llama", "openai"]>>;
|
|
197
244
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
198
245
|
model: z.ZodOptional<z.ZodString>;
|
|
199
246
|
translatorContractVersion: z.ZodDefault<z.ZodNumber>;
|
|
200
247
|
createdAt: z.ZodNumber;
|
|
201
248
|
lastAccessedAt: z.ZodNumber;
|
|
202
249
|
}, "strip", z.ZodTypeAny, {
|
|
203
|
-
|
|
250
|
+
createdAt: number;
|
|
251
|
+
engineId: "browser" | "local" | "local-ct2" | "local-llama" | "openai";
|
|
204
252
|
sourceLanguage: string;
|
|
205
253
|
targetLanguage: string;
|
|
206
|
-
createdAt: number;
|
|
207
254
|
key: string;
|
|
208
255
|
keyHash: string;
|
|
209
256
|
sourceText: string;
|
|
@@ -217,9 +264,9 @@ declare const TranslationCacheEntrySchema: z.ZodObject<{
|
|
|
217
264
|
targetNodesJson?: string | undefined;
|
|
218
265
|
engineVersion?: string | undefined;
|
|
219
266
|
}, {
|
|
267
|
+
createdAt: number;
|
|
220
268
|
sourceLanguage: string;
|
|
221
269
|
targetLanguage: string;
|
|
222
|
-
createdAt: number;
|
|
223
270
|
key: string;
|
|
224
271
|
keyHash: string;
|
|
225
272
|
sourceText: string;
|
|
@@ -228,7 +275,7 @@ declare const TranslationCacheEntrySchema: z.ZodObject<{
|
|
|
228
275
|
attributeTopologyHash: string;
|
|
229
276
|
displayPolicyVersion: number;
|
|
230
277
|
lastAccessedAt: number;
|
|
231
|
-
engineId?: "browser" | "local" | "local-ct2" | "openai" | undefined;
|
|
278
|
+
engineId?: "browser" | "local" | "local-ct2" | "local-llama" | "openai" | undefined;
|
|
232
279
|
model?: string | undefined;
|
|
233
280
|
targetNodesJson?: string | undefined;
|
|
234
281
|
engineVersion?: string | undefined;
|
|
@@ -246,14 +293,14 @@ declare const TranslationCacheWriteInputSchema: z.ZodObject<Omit<{
|
|
|
246
293
|
placeholderTopologyHash: z.ZodString;
|
|
247
294
|
attributeTopologyHash: z.ZodString;
|
|
248
295
|
displayPolicyVersion: z.ZodNumber;
|
|
249
|
-
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "openai"]>>;
|
|
296
|
+
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "local-llama", "openai"]>>;
|
|
250
297
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
251
298
|
model: z.ZodOptional<z.ZodString>;
|
|
252
299
|
translatorContractVersion: z.ZodDefault<z.ZodNumber>;
|
|
253
300
|
createdAt: z.ZodNumber;
|
|
254
301
|
lastAccessedAt: z.ZodNumber;
|
|
255
302
|
}, "createdAt" | "lastAccessedAt">, "strip", z.ZodTypeAny, {
|
|
256
|
-
engineId: "browser" | "local" | "local-ct2" | "openai";
|
|
303
|
+
engineId: "browser" | "local" | "local-ct2" | "local-llama" | "openai";
|
|
257
304
|
sourceLanguage: string;
|
|
258
305
|
targetLanguage: string;
|
|
259
306
|
key: string;
|
|
@@ -277,7 +324,7 @@ declare const TranslationCacheWriteInputSchema: z.ZodObject<Omit<{
|
|
|
277
324
|
placeholderTopologyHash: string;
|
|
278
325
|
attributeTopologyHash: string;
|
|
279
326
|
displayPolicyVersion: number;
|
|
280
|
-
engineId?: "browser" | "local" | "local-ct2" | "openai" | undefined;
|
|
327
|
+
engineId?: "browser" | "local" | "local-ct2" | "local-llama" | "openai" | undefined;
|
|
281
328
|
model?: string | undefined;
|
|
282
329
|
targetNodesJson?: string | undefined;
|
|
283
330
|
engineVersion?: string | undefined;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { C as TranslationEngineProjectSettingsSchema, S as TranslationEngineProjectSettings, _ as TranslationCacheSettingsSchema, a as DocumentTranslationConfigSchema, b as TranslationCacheWriteInput, c as DocumentTranslationDisplayModeSchema, d as TRANSLATION_CACHE_POLICY_VERSION, f as TranslationCacheEntry, g as TranslationCacheSettings, h as TranslationCacheReadInputSchema, i as DocumentTranslationConfigInput, l as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, m as TranslationCacheReadInput, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as DocumentTranslationConfigUpdate, p as TranslationCacheEntrySchema, r as DocumentTranslationConfig, s as DocumentTranslationDisplayMode, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, v as TranslationCacheStats, w as TranslationEngineProjectSettingsUpdate, x as TranslationCacheWriteInputSchema, y as TranslationCacheStatsSchema } from "./document-translation-
|
|
1
|
+
import { C as TranslationEngineProjectSettingsSchema, S as TranslationEngineProjectSettings, _ as TranslationCacheSettingsSchema, a as DocumentTranslationConfigSchema, b as TranslationCacheWriteInput, c as DocumentTranslationDisplayModeSchema, d as TRANSLATION_CACHE_POLICY_VERSION, f as TranslationCacheEntry, g as TranslationCacheSettings, h as TranslationCacheReadInputSchema, i as DocumentTranslationConfigInput, l as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, m as TranslationCacheReadInput, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as DocumentTranslationConfigUpdate, p as TranslationCacheEntrySchema, r as DocumentTranslationConfig, s as DocumentTranslationDisplayMode, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, v as TranslationCacheStats, w as TranslationEngineProjectSettingsUpdate, x as TranslationCacheWriteInputSchema, y as TranslationCacheStatsSchema } from "./document-translation-Cv6BIGL5.mjs";
|
|
2
2
|
export { DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, DOCUMENT_TRANSLATION_DISPLAY_MODES, DocumentTranslationConfig, DocumentTranslationConfigInput, DocumentTranslationConfigSchema, DocumentTranslationConfigUpdate, DocumentTranslationDisplayMode, DocumentTranslationDisplayModeSchema, MAX_TRANSLATION_CACHE_ENTRY_LIMIT, MIN_TRANSLATION_CACHE_ENTRY_LIMIT, TRANSLATION_CACHE_POLICY_VERSION, TranslationCacheEntry, TranslationCacheEntrySchema, TranslationCacheReadInput, TranslationCacheReadInputSchema, TranslationCacheSettings, TranslationCacheSettingsSchema, TranslationCacheStats, TranslationCacheStatsSchema, TranslationCacheWriteInput, TranslationCacheWriteInputSchema, TranslationEngineProjectSettings, TranslationEngineProjectSettingsSchema, TranslationEngineProjectSettingsUpdate };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./translator-
|
|
2
|
-
import { a as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, c as TranslationCacheEntrySchema, d as TranslationCacheStatsSchema, f as TranslationCacheWriteInputSchema, i as DocumentTranslationDisplayModeSchema, l as TranslationCacheReadInputSchema, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, p as TranslationEngineProjectSettingsSchema, r as DocumentTranslationConfigSchema, s as TRANSLATION_CACHE_POLICY_VERSION, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as TranslationCacheSettingsSchema } from "./document-translation-
|
|
1
|
+
import "./translator-Car0_7uk.mjs";
|
|
2
|
+
import { a as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, c as TranslationCacheEntrySchema, d as TranslationCacheStatsSchema, f as TranslationCacheWriteInputSchema, i as DocumentTranslationDisplayModeSchema, l as TranslationCacheReadInputSchema, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, p as TranslationEngineProjectSettingsSchema, r as DocumentTranslationConfigSchema, s as TRANSLATION_CACHE_POLICY_VERSION, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as TranslationCacheSettingsSchema } from "./document-translation-BrlCvnLZ.mjs";
|
|
3
3
|
|
|
4
4
|
export { DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, DOCUMENT_TRANSLATION_DISPLAY_MODES, DocumentTranslationConfigSchema, DocumentTranslationDisplayModeSchema, MAX_TRANSLATION_CACHE_ENTRY_LIMIT, MIN_TRANSLATION_CACHE_ENTRY_LIMIT, TRANSLATION_CACHE_POLICY_VERSION, TranslationCacheEntrySchema, TranslationCacheReadInputSchema, TranslationCacheSettingsSchema, TranslationCacheStatsSchema, TranslationCacheWriteInputSchema, TranslationEngineProjectSettingsSchema };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { C as TranslationEngineProjectSettingsSchema, S as TranslationEngineProjectSettings, _ as TranslationCacheSettingsSchema, a as DocumentTranslationConfigSchema, b as TranslationCacheWriteInput, c as DocumentTranslationDisplayModeSchema, d as TRANSLATION_CACHE_POLICY_VERSION, f as TranslationCacheEntry, g as TranslationCacheSettings, h as TranslationCacheReadInputSchema, i as DocumentTranslationConfigInput, l as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, m as TranslationCacheReadInput, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as DocumentTranslationConfigUpdate, p as TranslationCacheEntrySchema, r as DocumentTranslationConfig, s as DocumentTranslationDisplayMode, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, v as TranslationCacheStats, x as TranslationCacheWriteInputSchema, y as TranslationCacheStatsSchema } from "./document-translation-
|
|
1
|
+
import { C as TranslationEngineProjectSettingsSchema, S as TranslationEngineProjectSettings, _ as TranslationCacheSettingsSchema, a as DocumentTranslationConfigSchema, b as TranslationCacheWriteInput, c as DocumentTranslationDisplayModeSchema, d as TRANSLATION_CACHE_POLICY_VERSION, f as TranslationCacheEntry, g as TranslationCacheSettings, h as TranslationCacheReadInputSchema, i as DocumentTranslationConfigInput, l as MAX_TRANSLATION_CACHE_ENTRY_LIMIT, m as TranslationCacheReadInput, n as DOCUMENT_TRANSLATION_DISPLAY_MODES, o as DocumentTranslationConfigUpdate, p as TranslationCacheEntrySchema, r as DocumentTranslationConfig, s as DocumentTranslationDisplayMode, t as DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, u as MIN_TRANSLATION_CACHE_ENTRY_LIMIT, v as TranslationCacheStats, x as TranslationCacheWriteInputSchema, y as TranslationCacheStatsSchema } from "./document-translation-Cv6BIGL5.mjs";
|
|
2
2
|
import { a as OPENSPECUI_RUNTIME_CAPABILITIES, c as buildEmbeddedUiLaunchUrl, d as isHostedBackendHealthResponse, f as isSupportedEmbeddedUiUrl, h as resolveHostedAppBaseUrl, i as OFFICIAL_APP_BASE_URL, l as buildHostedLaunchUrl, m as normalizeHostedAppBaseUrl, n as HOSTED_SHELL_PROTOCOL_VERSION, o as OpenSpecUIRuntimeCapability, p as normalizeEmbeddedUiUrl, r as HostedBackendHealthResponse, s as buildBackendHealthPayload, u as isBackendHealthRuntimeMetadata } from "./hosted-app-CegGJlNp.mjs";
|
|
3
|
-
import { A as SchemaArtifactSchema, C as ArtifactStatus, D as DependencyInfo, E as ChangeStatusSchema, F as SchemaResolution, I as SchemaResolutionSchema, L as TemplatesMap, M as SchemaDetailSchema, N as SchemaInfo, O as DependencyInfoSchema, P as SchemaInfoSchema, R as TemplatesSchema, S as ArtifactInstructionsSchema, T as ChangeStatus, _ as ApplyInstructionsContextFilesSchema, a as OpsxEntityFile, b as ApplyTaskSchema, c as buildOpsxEntityDetail, d as isOpsxGlobPattern, f as normalizeOpsxEntityPath, g as ApplyInstructions, h as parseOpsxEntityMetadata, i as OpsxEntityDiagnostic, j as SchemaDetail, k as SchemaArtifact, l as getOpsxEntityMetadataPath, m as opsxPathMatchesPattern, n as OpsxEntityArtifactFile, o as OpsxEntityReadOptions, p as opsxGlobToRegex, r as OpsxEntityDetail, s as OpsxEntityStage, t as OpsxEntityArtifact, u as getOpsxEntityRootRelativePath, v as ApplyInstructionsSchema, w as ArtifactStatusSchema, x as ArtifactInstructions, y as ApplyTask, z as isGlobPattern } from "./opsx-entity-
|
|
4
|
-
import { _ as SpecSchema, a as Delta, c as DeltaSchema, d as Requirement, f as RequirementSchema, g as Spec, h as ScenarioStepSchema, i as ChangeSchema, l as DeltaSpec, m as ScenarioStepKeywordSchema, n as ChangeFile, o as DeltaOperation, p as ScenarioStep, r as ChangeFileSchema, s as DeltaOperationType, t as Change, u as DeltaSpecSchema, v as Task, y as TaskSchema } from "./schemas-
|
|
3
|
+
import { A as SchemaArtifactSchema, C as ArtifactStatus, D as DependencyInfo, E as ChangeStatusSchema, F as SchemaResolution, I as SchemaResolutionSchema, L as TemplatesMap, M as SchemaDetailSchema, N as SchemaInfo, O as DependencyInfoSchema, P as SchemaInfoSchema, R as TemplatesSchema, S as ArtifactInstructionsSchema, T as ChangeStatus, _ as ApplyInstructionsContextFilesSchema, a as OpsxEntityFile, b as ApplyTaskSchema, c as buildOpsxEntityDetail, d as isOpsxGlobPattern, f as normalizeOpsxEntityPath, g as ApplyInstructions, h as parseOpsxEntityMetadata, i as OpsxEntityDiagnostic, j as SchemaDetail, k as SchemaArtifact, l as getOpsxEntityMetadataPath, m as opsxPathMatchesPattern, n as OpsxEntityArtifactFile, o as OpsxEntityReadOptions, p as opsxGlobToRegex, r as OpsxEntityDetail, s as OpsxEntityStage, t as OpsxEntityArtifact, u as getOpsxEntityRootRelativePath, v as ApplyInstructionsSchema, w as ArtifactStatusSchema, x as ArtifactInstructions, y as ApplyTask, z as isGlobPattern } from "./opsx-entity-BO9G2SCW.mjs";
|
|
4
|
+
import { _ as SpecSchema, a as Delta, c as DeltaSchema, d as Requirement, f as RequirementSchema, g as Spec, h as ScenarioStepSchema, i as ChangeSchema, l as DeltaSpec, m as ScenarioStepKeywordSchema, n as ChangeFile, o as DeltaOperation, p as ScenarioStep, r as ChangeFileSchema, s as DeltaOperationType, t as Change, u as DeltaSpecSchema, v as Task, y as TaskSchema } from "./schemas-DQzd1hgp.mjs";
|
|
5
5
|
import { a as MarkdownSourceRange, i as MarkdownSourcePoint, n as MarkdownFactKind, o as parseMarkdownFacts, r as MarkdownFactsDocument, s as toMarkdownFactKind, t as MarkdownFact } from "./markdown-facts-DempqdIX.mjs";
|
|
6
6
|
import { S as trimMarkdownSlice, _ as getMarkdownAnnotationsForFact, a as MarkdownAnnotationRule, b as getMarkdownHeadingFacts, c as MarkdownProjectionRule, d as MarkdownReadingPlugin, f as MarkdownReadingPluginRegistry, g as getMarkdownAnnotation, h as createMarkdownReadingDocumentFromFacts, i as MarkdownAnnotationInput, l as MarkdownReadingDocument, m as createMarkdownReadingDocument, n as MarkdownAnnotationConfidence, o as MarkdownFactSpan, p as buildMarkdownParentMap, r as MarkdownAnnotationContext, s as MarkdownProjectionContext, t as MarkdownAnnotation, u as MarkdownReadingLookup, v as getMarkdownFactSpan, x as sortMarkdownReadingPlugins, y as getMarkdownHeadingEnd } from "./markdown-reading-BaHZTf5f.mjs";
|
|
7
7
|
import { c as OpenSpecScenarioStepKeyword, d as annotateOpenSpecMarkdown, f as builtinOpenSpecReadingPlugin, h as openSpecAnnotationRules, l as OpenSpecSemanticKind, m as getOpenSpecAnnotationsForFact, n as OpenSpecAnnotation, p as getOpenSpecAnnotation, r as OpenSpecAnnotationConfidence, t as AnnotatedOpenSpecDocument, u as annotateOpenSpecFacts } from "./openspec-annotations-DYyP_HQh.mjs";
|
|
8
|
-
import { a as OpenSpecReadingSectionsProjection, c as ProjectedOpenSpecDocument, d as getOpenSpecReadingSections, f as parseOpenSpecMarkdownToSpec, i as OpenSpecProjectionOptions, l as createOpenSpecReadingPlugin, m as projectOpenSpecMarkdown, n as OPEN_SPEC_SPEC_PROJECTION_ID, o as OpenSpecRequirementBlock, p as projectAnnotatedOpenSpecToSpec, r as OpenSpecHeadingSection, s as OpenSpecScenarioBlock, t as OPEN_SPEC_READING_SECTIONS_PROJECTION_ID, u as getOpenSpecProjectionAnnotation } from "./openspec-projection-
|
|
9
|
-
import { D as normalizeLegacySoundId, E as getBuiltinSoundUrl, O as soundIdFromCustomHash, S as SoundIdSchema, T as customHashFromSoundId, a as BuiltinSoundOption, b as SoundConfigIdSchema, c as CustomSoundHashSchema, d as CustomSoundMetadata, f as CustomSoundMetadataFile, g as DEFAULT_NOTIFICATION_SOUND_ID, h as DEFAULT_BELL_SOUND_ID, i as BuiltinSoundIdSchema, l as CustomSoundId, m as CustomSoundMetadataSchema, n as BUILTIN_SOUND_OPTIONS, o as CUSTOM_SOUND_ADD_VALUE, p as CustomSoundMetadataFileSchema, r as BuiltinSoundId, s as CustomSoundHash, t as BUILTIN_SOUND_IDS, u as CustomSoundIdSchema, v as LEGACY_SOUND_ID_MAP, x as SoundId, y as SILENT_SOUND_ID } from "./sounds-
|
|
10
|
-
import { A as TerminalNotificationProtocol, D as TerminalControlEvent, E as groupNotifications, M as TerminalPromptState, N as TerminalTitleTarget, O as TerminalControlParseResult, P as terminalNotificationEventToPublishInput, T as getNotificationGroupLabel, _ as NotificationSource, b as TerminalNotificationParseResult, c as NotificationGroupKeySchema, d as NotificationRecord, f as NotificationRecordSchema, g as NotificationSoundSchema, h as NotificationSound, i as NotificationActionSchema, j as TerminalProgressState, k as TerminalControlParser, l as NotificationPublishInput, m as NotificationSettingsSchema, n as NOTIFICATION_SOUND_VALUES, o as NotificationGroup, p as NotificationSettings, r as NotificationAction, s as NotificationGroupKey, t as NOTIFICATION_SOUND_OPTIONS, u as NotificationPublishInputSchema, v as NotificationSourceSchema, w as getNotificationGroupKey, x as TerminalNotificationParser, y as TerminalNotificationEvent } from "./notifications-
|
|
11
|
-
import { $ as
|
|
12
|
-
import { i as TerminalBellSoundSchema, n as TERMINAL_BELL_SOUND_VALUES, r as TerminalBellSound, t as TERMINAL_BELL_SOUND_OPTIONS } from "./terminal-audio-
|
|
13
|
-
import { a as buildLocalDownloadPlanFromRepositoryFiles, i as LocalRuntimeProfileFiles, n as LocalModelProfileId, o as buildLocalDownloadPlanFromRuntimeProfileFiles, r as LocalRepositoryFile, s as selectLocalDownloadGroup, t as LOCAL_MODEL_PROFILE_DEFINITIONS } from "./local-download-profiles-
|
|
8
|
+
import { a as OpenSpecReadingSectionsProjection, c as ProjectedOpenSpecDocument, d as getOpenSpecReadingSections, f as parseOpenSpecMarkdownToSpec, i as OpenSpecProjectionOptions, l as createOpenSpecReadingPlugin, m as projectOpenSpecMarkdown, n as OPEN_SPEC_SPEC_PROJECTION_ID, o as OpenSpecRequirementBlock, p as projectAnnotatedOpenSpecToSpec, r as OpenSpecHeadingSection, s as OpenSpecScenarioBlock, t as OPEN_SPEC_READING_SECTIONS_PROJECTION_ID, u as getOpenSpecProjectionAnnotation } from "./openspec-projection-BbuPTbvj.mjs";
|
|
9
|
+
import { D as normalizeLegacySoundId, E as getBuiltinSoundUrl, O as soundIdFromCustomHash, S as SoundIdSchema, T as customHashFromSoundId, a as BuiltinSoundOption, b as SoundConfigIdSchema, c as CustomSoundHashSchema, d as CustomSoundMetadata, f as CustomSoundMetadataFile, g as DEFAULT_NOTIFICATION_SOUND_ID, h as DEFAULT_BELL_SOUND_ID, i as BuiltinSoundIdSchema, l as CustomSoundId, m as CustomSoundMetadataSchema, n as BUILTIN_SOUND_OPTIONS, o as CUSTOM_SOUND_ADD_VALUE, p as CustomSoundMetadataFileSchema, r as BuiltinSoundId, s as CustomSoundHash, t as BUILTIN_SOUND_IDS, u as CustomSoundIdSchema, v as LEGACY_SOUND_ID_MAP, x as SoundId, y as SILENT_SOUND_ID } from "./sounds-3yEx1YXT.mjs";
|
|
10
|
+
import { A as TerminalNotificationProtocol, D as TerminalControlEvent, E as groupNotifications, M as TerminalPromptState, N as TerminalTitleTarget, O as TerminalControlParseResult, P as terminalNotificationEventToPublishInput, T as getNotificationGroupLabel, _ as NotificationSource, b as TerminalNotificationParseResult, c as NotificationGroupKeySchema, d as NotificationRecord, f as NotificationRecordSchema, g as NotificationSoundSchema, h as NotificationSound, i as NotificationActionSchema, j as TerminalProgressState, k as TerminalControlParser, l as NotificationPublishInput, m as NotificationSettingsSchema, n as NOTIFICATION_SOUND_VALUES, o as NotificationGroup, p as NotificationSettings, r as NotificationAction, s as NotificationGroupKey, t as NOTIFICATION_SOUND_OPTIONS, u as NotificationPublishInputSchema, v as NotificationSourceSchema, w as getNotificationGroupKey, x as TerminalNotificationParser, y as TerminalNotificationEvent } from "./notifications-CJQ_F_Un.mjs";
|
|
11
|
+
import { $ as TranslationEngineDependencyStatusSchema, $t as isTranslationEngineDependencyReady, A as LocalModelProfileManifestSchema, At as TranslationLocalSettings, B as TRANSLATION_ENGINE_MANIFESTS, Bt as Translator, C as LocalModelProfileLoadState, Ct as TranslationEngineRuntimeStatus, D as LocalModelProfileManifestFileSchema, Dt as TranslationLocalCt2SettingsSchema, E as LocalModelProfileManifestFile, Et as TranslationLocalCt2Settings, F as ManagedLocalTranslationEngineId, Ft as TranslationModelSearchInput, G as TranslationDownloadGroupPlanSchema, Gt as TranslatorOptions, H as TranslationDownloadFilePlan, Ht as TranslatorFactory, I as SERVICE_TRANSLATION_ENGINE_IDS, It as TranslationModelSearchPhase, J as TranslationEngineAssetStatus, Jt as getManagedLocalTranslationEngineManifest, K as TranslationEngineAssetState, Kt as TranslatorPrepareMonitor, L as ServiceTranslationEngineId, Lt as TranslationModelSearchResult, M as LocalModelProfileStatusSchema, Mt as TranslationModelCandidate, N as ManagedLocalCatalogSource, Nt as TranslationModelDownloadPlan, O as LocalModelProfileManifestGroup, Ot as TranslationLocalLlamaSettings, P as ManagedLocalCatalogSourceSchema, Pt as TranslationModelSearchEvent, Q as TranslationEngineDependencyStatus, Qt as isManagedLocalTranslationEngineId, R as ServiceTranslationEngineIdSchema, Rt as TranslationOpenAISettings, S as LocalModelLifecycleGroupStateSchema, St as TranslationEngineRuntimeStateSchema, T as LocalModelProfileManifest, Tt as TranslationEngineSettingsKey, U as TranslationDownloadFilePlanSchema, Ut as TranslatorFactoryCreateOptions, V as TRANSLATOR_CONTRACT_VERSION, Vt as TranslatorCreateMonitor, W as TranslationDownloadGroupPlan, Wt as TranslatorFactoryPrepareOptions, X as TranslationEngineDependencyState, Xt as getTranslationEngineManifest, Y as TranslationEngineAssetStatusSchema, Yt as getTranslationEngineLifecycleMessage, Z as TranslationEngineDependencyStateSchema, Zt as isDirectionalManagedLocalTranslationEngineId, _ as LocalModelDownloadStatus, a as BatchTranslationResult, at as TranslationEngineInstallLogEvent, b as LocalModelLifecycleFileStateSchema, bt as TranslationEngineRuntime, c as LocalModelAssetLogSchema, ct as TranslationEngineInstallLogStreamSchema, d as LocalModelAssetState, dt as TranslationEngineLifecycleController, en as isTranslationEngineRuntimeReady, et as TranslationEngineGlobalSettings, f as LocalModelAssetStateSchema, ft as TranslationEngineLifecycleEvent, g as LocalModelCatalogSearchEvent, gt as TranslationEngineLifecycleStatus, h as LocalModelCatalogResult, i as BatchTranslateInputSchema, it as TranslationEngineIdSchema, j as LocalModelProfileStatus, jt as TranslationLocalSettingsSchema, k as LocalModelProfileManifestGroupSchema, kt as TranslationLocalLlamaSettingsSchema, l as LocalModelAssetPlanSnapshot, lt as TranslationEngineKind, m as LocalModelCatalogLocalResult, n as BatchTranslateEventSchema, nt as TranslationEngineGlobalSettingsUpdate, o as DEFAULT_TRANSLATION_ENGINE_ID, ot as TranslationEngineInstallLogEventSchema, p as LocalModelCatalogItem, pt as TranslationEngineLifecycleEventSchema, q as TranslationEngineAssetStateSchema, qt as createTranslationEngineLifecycleStatus, r as BatchTranslateInput, rt as TranslationEngineId, s as LocalModelAssetLog, st as TranslationEngineInstallLogStream, t as BatchTranslateEvent, tn as shouldShowTranslationEngineInstallGate, tt as TranslationEngineGlobalSettingsSchema, u as LocalModelAssetPlanSnapshotSchema, ut as TranslationEngineLifecycleContext, v as LocalModelDownloadStatusSchema, vt as TranslationEngineLifecycleStatusSchema, w as LocalModelProfileLoadStateSchema, wt as TranslationEngineRuntimeStatusSchema, x as LocalModelLifecycleGroupState, xt as TranslationEngineRuntimeState, y as LocalModelLifecycleFileState, yt as TranslationEngineManifest, z as TRANSLATION_ENGINE_IDS, zt as TranslationOpenAISettingsSchema } from "./translator-prn3W9lf.mjs";
|
|
12
|
+
import { i as TerminalBellSoundSchema, n as TERMINAL_BELL_SOUND_VALUES, r as TerminalBellSound, t as TERMINAL_BELL_SOUND_OPTIONS } from "./terminal-audio-UCLlM1qN.mjs";
|
|
13
|
+
import { a as buildLocalDownloadPlanFromRepositoryFiles, i as LocalRuntimeProfileFiles, n as LocalModelProfileId, o as buildLocalDownloadPlanFromRuntimeProfileFiles, r as LocalRepositoryFile, s as selectLocalDownloadGroup, t as LOCAL_MODEL_PROFILE_DEFINITIONS } from "./local-download-profiles-GKs2OOqJ.mjs";
|
|
14
14
|
import { i as inferLocalDirectionalModelLanguagePair, n as TranslationLanguagePair, r as checkLocalDirectionalModelLanguagePair, t as LocalDirectionalModelLanguagePairCheck } from "./translation-language-pair-DaSvW83F.mjs";
|
|
15
15
|
import { n as toOpsxDisplayPath, t as VIRTUAL_PROJECT_DIRNAME } from "./opsx-display-path-Ky9qnntM.mjs";
|
|
16
|
-
import { $ as PtyServerMessageSchema, B as PtyCreatedResponseSchema, C as TerminalSpawnCommand, E as getTerminalCommandDefaultValues, F as PtyBufferResponseSchema, G as PtyListMessageSchema, H as PtyErrorResponseSchema, I as PtyClientMessage, J as PtyPlatform, K as PtyListResponseSchema, L as PtyClientMessageSchema, M as resolveTerminalShellDefaults, N as PtyAttachMessageSchema, O as quoteTerminalShellArg, P as PtyBellResponseSchema, Q as PtyServerMessage, R as PtyCloseMessageSchema, S as TerminalShellQuoteStyleSchema, U as PtyExitResponseSchema, V as PtyErrorCodeSchema, W as PtyInputMessageSchema, X as PtyProcessTitleResponseSchema, Y as PtyPlatformSchema, Z as PtyResizeMessageSchema, _ as TerminalShellDefaults, b as TerminalShellProfileSchema, c as TerminalCommandFieldSchema, et as PtySessionInfo, g as TerminalInvocationSettingsSchema, h as TerminalInvocationSettings, i as TerminalCommandArgument, j as renderTerminalSpawnCommandLine, k as renderTerminalCommandArgs, l as TerminalCommandFieldValue, n as TERMINAL_COMMAND_FIELD_TYPE_VALUES, q as PtyOutputResponseSchema, r as TERMINAL_SHELL_QUOTE_STYLE_VALUES, s as TerminalCommandField, t as BUILTIN_TERMINAL_SPAWN_COMMANDS, tt as PtyTitleResponseSchema, u as TerminalCommandFieldValues, w as TerminalSpawnCommandSchema, x as TerminalShellQuoteStyle, y as TerminalShellProfile, z as PtyCreateMessageSchema } from "./terminal-invocation-
|
|
16
|
+
import { $ as PtyServerMessageSchema, B as PtyCreatedResponseSchema, C as TerminalSpawnCommand, E as getTerminalCommandDefaultValues, F as PtyBufferResponseSchema, G as PtyListMessageSchema, H as PtyErrorResponseSchema, I as PtyClientMessage, J as PtyPlatform, K as PtyListResponseSchema, L as PtyClientMessageSchema, M as resolveTerminalShellDefaults, N as PtyAttachMessageSchema, O as quoteTerminalShellArg, P as PtyBellResponseSchema, Q as PtyServerMessage, R as PtyCloseMessageSchema, S as TerminalShellQuoteStyleSchema, U as PtyExitResponseSchema, V as PtyErrorCodeSchema, W as PtyInputMessageSchema, X as PtyProcessTitleResponseSchema, Y as PtyPlatformSchema, Z as PtyResizeMessageSchema, _ as TerminalShellDefaults, b as TerminalShellProfileSchema, c as TerminalCommandFieldSchema, et as PtySessionInfo, g as TerminalInvocationSettingsSchema, h as TerminalInvocationSettings, i as TerminalCommandArgument, j as renderTerminalSpawnCommandLine, k as renderTerminalCommandArgs, l as TerminalCommandFieldValue, n as TERMINAL_COMMAND_FIELD_TYPE_VALUES, q as PtyOutputResponseSchema, r as TERMINAL_SHELL_QUOTE_STYLE_VALUES, s as TerminalCommandField, t as BUILTIN_TERMINAL_SPAWN_COMMANDS, tt as PtyTitleResponseSchema, u as TerminalCommandFieldValues, w as TerminalSpawnCommandSchema, x as TerminalShellQuoteStyle, y as TerminalShellProfile, z as PtyCreateMessageSchema } from "./terminal-invocation-DCPc8hmm.mjs";
|
|
17
17
|
import { a as TERMINAL_THEME_VALUES, i as TERMINAL_THEME_MODE_VALUES, n as DEFAULT_TERMINAL_LIGHT_THEME, r as DEFAULT_TERMINAL_THEME_MODE, t as DEFAULT_TERMINAL_DARK_THEME } from "./terminal-theme-CH-VSrAq.mjs";
|
|
18
|
-
import { n as parseOpsxSchemaDetail, t as ParsedOpsxSchemaDetail } from "./opsx-schema-detail-
|
|
18
|
+
import { n as parseOpsxSchemaDetail, t as ParsedOpsxSchemaDetail } from "./opsx-schema-detail-DTajJW4g.mjs";
|
|
19
19
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
20
20
|
import { z } from "zod";
|
|
21
21
|
import { EventEmitter } from "events";
|
|
@@ -166,18 +166,18 @@ declare class OpenSpecAdapter {
|
|
|
166
166
|
name: string;
|
|
167
167
|
overview: string;
|
|
168
168
|
requirements: {
|
|
169
|
+
title: string;
|
|
169
170
|
id: string;
|
|
170
171
|
text: string;
|
|
171
|
-
title: string;
|
|
172
172
|
bodyMarkdown: string;
|
|
173
173
|
scenarios: {
|
|
174
174
|
title: string;
|
|
175
|
-
bodyMarkdown: string;
|
|
176
175
|
rawText: string;
|
|
176
|
+
bodyMarkdown: string;
|
|
177
177
|
steps?: {
|
|
178
|
-
rawText: string;
|
|
179
178
|
keyword: "GIVEN" | "WHEN" | "THEN" | "AND" | "BUT";
|
|
180
179
|
contentMarkdown: string;
|
|
180
|
+
rawText: string;
|
|
181
181
|
}[] | undefined;
|
|
182
182
|
}[];
|
|
183
183
|
}[];
|
|
@@ -201,34 +201,34 @@ declare class OpenSpecAdapter {
|
|
|
201
201
|
spec: string;
|
|
202
202
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
203
203
|
requirements?: {
|
|
204
|
+
title: string;
|
|
204
205
|
id: string;
|
|
205
206
|
text: string;
|
|
206
|
-
title: string;
|
|
207
207
|
bodyMarkdown: string;
|
|
208
208
|
scenarios: {
|
|
209
209
|
title: string;
|
|
210
|
-
bodyMarkdown: string;
|
|
211
210
|
rawText: string;
|
|
211
|
+
bodyMarkdown: string;
|
|
212
212
|
steps?: {
|
|
213
|
-
rawText: string;
|
|
214
213
|
keyword: "GIVEN" | "WHEN" | "THEN" | "AND" | "BUT";
|
|
215
214
|
contentMarkdown: string;
|
|
215
|
+
rawText: string;
|
|
216
216
|
}[] | undefined;
|
|
217
217
|
}[];
|
|
218
218
|
}[] | undefined;
|
|
219
219
|
requirement?: {
|
|
220
|
+
title: string;
|
|
220
221
|
id: string;
|
|
221
222
|
text: string;
|
|
222
|
-
title: string;
|
|
223
223
|
bodyMarkdown: string;
|
|
224
224
|
scenarios: {
|
|
225
225
|
title: string;
|
|
226
|
-
bodyMarkdown: string;
|
|
227
226
|
rawText: string;
|
|
227
|
+
bodyMarkdown: string;
|
|
228
228
|
steps?: {
|
|
229
|
-
rawText: string;
|
|
230
229
|
keyword: "GIVEN" | "WHEN" | "THEN" | "AND" | "BUT";
|
|
231
230
|
contentMarkdown: string;
|
|
231
|
+
rawText: string;
|
|
232
232
|
}[] | undefined;
|
|
233
233
|
}[];
|
|
234
234
|
} | undefined;
|
|
@@ -249,8 +249,8 @@ declare class OpenSpecAdapter {
|
|
|
249
249
|
} | undefined;
|
|
250
250
|
design?: string | undefined;
|
|
251
251
|
deltaSpecs?: {
|
|
252
|
-
specId: string;
|
|
253
252
|
content: string;
|
|
253
|
+
specId: string;
|
|
254
254
|
}[] | undefined;
|
|
255
255
|
}[];
|
|
256
256
|
archivedCount: number;
|
|
@@ -1034,7 +1034,7 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1034
1034
|
targetLanguage: z.ZodDefault<z.ZodString>;
|
|
1035
1035
|
displayMode: z.ZodDefault<z.ZodEnum<["direct", "bilingual"]>>;
|
|
1036
1036
|
cacheEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
1037
|
-
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "openai"]>>;
|
|
1037
|
+
engineId: z.ZodDefault<z.ZodEnum<["browser", "local", "local-ct2", "local-llama", "openai"]>>;
|
|
1038
1038
|
engines: z.ZodDefault<z.ZodObject<{
|
|
1039
1039
|
local: z.ZodDefault<z.ZodObject<{
|
|
1040
1040
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1056,6 +1056,16 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1056
1056
|
selectedGroupId?: string | undefined;
|
|
1057
1057
|
model?: string | undefined;
|
|
1058
1058
|
}>>;
|
|
1059
|
+
localLlama: z.ZodDefault<z.ZodObject<{
|
|
1060
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1061
|
+
selectedGroupId: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
}, "strip", z.ZodTypeAny, {
|
|
1063
|
+
selectedGroupId?: string | undefined;
|
|
1064
|
+
model?: string | undefined;
|
|
1065
|
+
}, {
|
|
1066
|
+
selectedGroupId?: string | undefined;
|
|
1067
|
+
model?: string | undefined;
|
|
1068
|
+
}>>;
|
|
1059
1069
|
openai: z.ZodDefault<z.ZodObject<{
|
|
1060
1070
|
model: z.ZodOptional<z.ZodString>;
|
|
1061
1071
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1075,6 +1085,10 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1075
1085
|
selectedGroupId?: string | undefined;
|
|
1076
1086
|
model?: string | undefined;
|
|
1077
1087
|
};
|
|
1088
|
+
localLlama: {
|
|
1089
|
+
selectedGroupId?: string | undefined;
|
|
1090
|
+
model?: string | undefined;
|
|
1091
|
+
};
|
|
1078
1092
|
}, {
|
|
1079
1093
|
local?: {
|
|
1080
1094
|
selectedGroupId?: string | undefined;
|
|
@@ -1087,9 +1101,13 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1087
1101
|
selectedGroupId?: string | undefined;
|
|
1088
1102
|
model?: string | undefined;
|
|
1089
1103
|
} | undefined;
|
|
1104
|
+
localLlama?: {
|
|
1105
|
+
selectedGroupId?: string | undefined;
|
|
1106
|
+
model?: string | undefined;
|
|
1107
|
+
} | undefined;
|
|
1090
1108
|
}>>;
|
|
1091
1109
|
}, "strip", z.ZodTypeAny, {
|
|
1092
|
-
engineId: "browser" | "local" | "local-ct2" | "openai";
|
|
1110
|
+
engineId: "browser" | "local" | "local-ct2" | "local-llama" | "openai";
|
|
1093
1111
|
targetLanguage: string;
|
|
1094
1112
|
enabled: boolean;
|
|
1095
1113
|
displayMode: "direct" | "bilingual";
|
|
@@ -1106,9 +1124,13 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1106
1124
|
selectedGroupId?: string | undefined;
|
|
1107
1125
|
model?: string | undefined;
|
|
1108
1126
|
};
|
|
1127
|
+
localLlama: {
|
|
1128
|
+
selectedGroupId?: string | undefined;
|
|
1129
|
+
model?: string | undefined;
|
|
1130
|
+
};
|
|
1109
1131
|
};
|
|
1110
1132
|
}, {
|
|
1111
|
-
engineId?: "browser" | "local" | "local-ct2" | "openai" | undefined;
|
|
1133
|
+
engineId?: "browser" | "local" | "local-ct2" | "local-llama" | "openai" | undefined;
|
|
1112
1134
|
targetLanguage?: string | undefined;
|
|
1113
1135
|
enabled?: boolean | undefined;
|
|
1114
1136
|
displayMode?: "direct" | "bilingual" | undefined;
|
|
@@ -1125,6 +1147,10 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1125
1147
|
selectedGroupId?: string | undefined;
|
|
1126
1148
|
model?: string | undefined;
|
|
1127
1149
|
} | undefined;
|
|
1150
|
+
localLlama?: {
|
|
1151
|
+
selectedGroupId?: string | undefined;
|
|
1152
|
+
model?: string | undefined;
|
|
1153
|
+
} | undefined;
|
|
1128
1154
|
} | undefined;
|
|
1129
1155
|
}>>;
|
|
1130
1156
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1165,7 +1191,7 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1165
1191
|
systemNotificationsEnabled: boolean;
|
|
1166
1192
|
};
|
|
1167
1193
|
translation: {
|
|
1168
|
-
engineId: "browser" | "local" | "local-ct2" | "openai";
|
|
1194
|
+
engineId: "browser" | "local" | "local-ct2" | "local-llama" | "openai";
|
|
1169
1195
|
targetLanguage: string;
|
|
1170
1196
|
enabled: boolean;
|
|
1171
1197
|
displayMode: "direct" | "bilingual";
|
|
@@ -1182,6 +1208,10 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1182
1208
|
selectedGroupId?: string | undefined;
|
|
1183
1209
|
model?: string | undefined;
|
|
1184
1210
|
};
|
|
1211
|
+
localLlama: {
|
|
1212
|
+
selectedGroupId?: string | undefined;
|
|
1213
|
+
model?: string | undefined;
|
|
1214
|
+
};
|
|
1185
1215
|
};
|
|
1186
1216
|
};
|
|
1187
1217
|
}, {
|
|
@@ -1222,7 +1252,7 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1222
1252
|
systemNotificationsEnabled?: boolean | undefined;
|
|
1223
1253
|
} | undefined;
|
|
1224
1254
|
translation?: {
|
|
1225
|
-
engineId?: "browser" | "local" | "local-ct2" | "openai" | undefined;
|
|
1255
|
+
engineId?: "browser" | "local" | "local-ct2" | "local-llama" | "openai" | undefined;
|
|
1226
1256
|
targetLanguage?: string | undefined;
|
|
1227
1257
|
enabled?: boolean | undefined;
|
|
1228
1258
|
displayMode?: "direct" | "bilingual" | undefined;
|
|
@@ -1239,6 +1269,10 @@ declare const OpenSpecUIConfigSchema: z.ZodObject<{
|
|
|
1239
1269
|
selectedGroupId?: string | undefined;
|
|
1240
1270
|
model?: string | undefined;
|
|
1241
1271
|
} | undefined;
|
|
1272
|
+
localLlama?: {
|
|
1273
|
+
selectedGroupId?: string | undefined;
|
|
1274
|
+
model?: string | undefined;
|
|
1275
|
+
} | undefined;
|
|
1242
1276
|
} | undefined;
|
|
1243
1277
|
} | undefined;
|
|
1244
1278
|
}>;
|
|
@@ -1376,6 +1410,19 @@ declare const OpenSpecUIGlobalSettingsSchema: z.ZodObject<{
|
|
|
1376
1410
|
model?: string | undefined;
|
|
1377
1411
|
hfEndpoint?: string | undefined;
|
|
1378
1412
|
}>>;
|
|
1413
|
+
localLlama: z.ZodDefault<z.ZodObject<{
|
|
1414
|
+
model: z.ZodDefault<z.ZodString>;
|
|
1415
|
+
selectedGroupId: z.ZodOptional<z.ZodString>;
|
|
1416
|
+
hfEndpoint: z.ZodDefault<z.ZodString>;
|
|
1417
|
+
}, "strip", z.ZodTypeAny, {
|
|
1418
|
+
model: string;
|
|
1419
|
+
hfEndpoint: string;
|
|
1420
|
+
selectedGroupId?: string | undefined;
|
|
1421
|
+
}, {
|
|
1422
|
+
selectedGroupId?: string | undefined;
|
|
1423
|
+
model?: string | undefined;
|
|
1424
|
+
hfEndpoint?: string | undefined;
|
|
1425
|
+
}>>;
|
|
1379
1426
|
}, "strip", z.ZodTypeAny, {
|
|
1380
1427
|
local: {
|
|
1381
1428
|
model: string;
|
|
@@ -1392,6 +1439,11 @@ declare const OpenSpecUIGlobalSettingsSchema: z.ZodObject<{
|
|
|
1392
1439
|
hfEndpoint: string;
|
|
1393
1440
|
selectedGroupId?: string | undefined;
|
|
1394
1441
|
};
|
|
1442
|
+
localLlama: {
|
|
1443
|
+
model: string;
|
|
1444
|
+
hfEndpoint: string;
|
|
1445
|
+
selectedGroupId?: string | undefined;
|
|
1446
|
+
};
|
|
1395
1447
|
}, {
|
|
1396
1448
|
local?: {
|
|
1397
1449
|
selectedGroupId?: string | undefined;
|
|
@@ -1408,6 +1460,11 @@ declare const OpenSpecUIGlobalSettingsSchema: z.ZodObject<{
|
|
|
1408
1460
|
model?: string | undefined;
|
|
1409
1461
|
hfEndpoint?: string | undefined;
|
|
1410
1462
|
} | undefined;
|
|
1463
|
+
localLlama?: {
|
|
1464
|
+
selectedGroupId?: string | undefined;
|
|
1465
|
+
model?: string | undefined;
|
|
1466
|
+
hfEndpoint?: string | undefined;
|
|
1467
|
+
} | undefined;
|
|
1411
1468
|
}>>;
|
|
1412
1469
|
}, "strip", z.ZodTypeAny, {
|
|
1413
1470
|
translationCache: {
|
|
@@ -1429,6 +1486,11 @@ declare const OpenSpecUIGlobalSettingsSchema: z.ZodObject<{
|
|
|
1429
1486
|
hfEndpoint: string;
|
|
1430
1487
|
selectedGroupId?: string | undefined;
|
|
1431
1488
|
};
|
|
1489
|
+
localLlama: {
|
|
1490
|
+
model: string;
|
|
1491
|
+
hfEndpoint: string;
|
|
1492
|
+
selectedGroupId?: string | undefined;
|
|
1493
|
+
};
|
|
1432
1494
|
};
|
|
1433
1495
|
}, {
|
|
1434
1496
|
translationCache?: {
|
|
@@ -1450,6 +1512,11 @@ declare const OpenSpecUIGlobalSettingsSchema: z.ZodObject<{
|
|
|
1450
1512
|
model?: string | undefined;
|
|
1451
1513
|
hfEndpoint?: string | undefined;
|
|
1452
1514
|
} | undefined;
|
|
1515
|
+
localLlama?: {
|
|
1516
|
+
selectedGroupId?: string | undefined;
|
|
1517
|
+
model?: string | undefined;
|
|
1518
|
+
hfEndpoint?: string | undefined;
|
|
1519
|
+
} | undefined;
|
|
1453
1520
|
} | undefined;
|
|
1454
1521
|
}>;
|
|
1455
1522
|
type OpenSpecUIGlobalSettings = z.infer<typeof OpenSpecUIGlobalSettingsSchema>;
|
|
@@ -1463,6 +1530,7 @@ type PersistedOpenSpecUIGlobalSettings = {
|
|
|
1463
1530
|
openai?: Partial<TranslationOpenAISettings>;
|
|
1464
1531
|
local?: Partial<TranslationLocalSettings>;
|
|
1465
1532
|
localCt2?: Partial<TranslationLocalCt2Settings>;
|
|
1533
|
+
localLlama?: Partial<TranslationLocalLlamaSettings>;
|
|
1466
1534
|
};
|
|
1467
1535
|
};
|
|
1468
1536
|
declare const DEFAULT_GLOBAL_SETTINGS: OpenSpecUIGlobalSettings;
|
|
@@ -2271,4 +2339,4 @@ declare class OpsxKernel {
|
|
|
2271
2339
|
private combineSignals;
|
|
2272
2340
|
}
|
|
2273
2341
|
//#endregion
|
|
2274
|
-
export { type AIToolOption, AI_TOOLS, type AnnotatedOpenSpecDocument, type ApplyInstructions, ApplyInstructionsContextFilesSchema, ApplyInstructionsSchema, type ApplyTask, ApplyTaskSchema, type ArchiveMeta, type ArtifactInstructions, ArtifactInstructionsSchema, type ArtifactStatus, ArtifactStatusSchema, BUILTIN_SOUND_IDS, BUILTIN_SOUND_OPTIONS, BUILTIN_TERMINAL_SPAWN_COMMANDS, type BatchTranslateEvent, BatchTranslateEventSchema, type BatchTranslateInput, BatchTranslateInputSchema, type BatchTranslationResult, type BuiltinSoundId, BuiltinSoundIdSchema, type BuiltinSoundOption, CODE_EDITOR_THEME_VALUES, CUSTOM_SOUND_ADD_VALUE, type Change, type ChangeFile, ChangeFileSchema, type ChangeMeta, ChangeSchema, type ChangeStatus, ChangeStatusSchema, CliExecutor, type CliResult, type CliRunnerAttempt, type CliSniffResult, type CliStreamEvent, type CodeEditorTheme, CodeEditorThemeSchema, ConfigManager, type CustomSoundHash, CustomSoundHashSchema, type CustomSoundId, CustomSoundIdSchema, type CustomSoundMetadata, type CustomSoundMetadataFile, CustomSoundMetadataFileSchema, CustomSoundMetadataSchema, DASHBOARD_METRIC_KEYS, DEFAULT_BELL_SOUND_ID, DEFAULT_CONFIG, DEFAULT_GIT_DIFF_EAGER_LINE_BUDGET, DEFAULT_GLOBAL_SETTINGS, DEFAULT_NOTIFICATION_SOUND_ID, DEFAULT_TERMINAL_DARK_THEME, DEFAULT_TERMINAL_LIGHT_THEME, DEFAULT_TERMINAL_THEME_MODE, DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, DEFAULT_TRANSLATION_ENGINE_ID, DOCUMENT_TRANSLATION_DISPLAY_MODES, type DashboardCardAvailability, type DashboardConfig, DashboardConfigSchema, type DashboardGitCommitEntry, type DashboardGitDiffStats, type DashboardGitEntry, type DashboardGitSnapshot, type DashboardGitUncommittedEntry, type DashboardGitWorktree, type DashboardMetricKey, type DashboardOverview, type DashboardSummary, type DashboardTrendKind, type DashboardTrendMeta, type DashboardTrendPoint, type DashboardTriColorTrendPoint, type Delta, type DeltaOperation, DeltaOperationType, DeltaSchema, type DeltaSpec, DeltaSpecSchema, type DependencyInfo, DependencyInfoSchema, type DocumentConsumerV1, type DocumentReadModeV1, type DocumentRefV1, type DocumentTranslationConfig, type DocumentTranslationConfigInput, DocumentTranslationConfigSchema, type DocumentTranslationConfigUpdate, type DocumentTranslationDisplayMode, DocumentTranslationDisplayModeSchema, type ExportSnapshot, FILE_PREVIEW_KINDS, type FileChangeEvent, type FileChangeType, type FilePreviewKind, type GitConfig, GitConfigSchema, type GitEntriesPage, type GitEntryCursor, type GitEntryDetail, type GitEntryFileDiff, type GitEntryFilePatch, type GitEntryFileSource, type GitEntryFileSummary, type GitEntryFiles, type GitEntryPatch, type GitEntrySelector, type GitEntryShell, type GitFileChangeType, type GitPatchFile, type GitPatchState, type GitWorktreeHandoff, type GitWorktreeOverview, type GitWorktreeSummary, GlobalSettingsManager, HOSTED_SHELL_PROTOCOL_VERSION, type HookDiagnosticLevel, type HookDiagnosticV1, type HookLifecycleV1, type HostedBackendHealthResponse, LEGACY_SOUND_ID_MAP, LOCAL_MODEL_PROFILE_DEFINITIONS, type LocalDirectionalModelLanguagePairCheck, type LocalModelAssetLog, LocalModelAssetLogSchema, type LocalModelAssetPlanSnapshot, LocalModelAssetPlanSnapshotSchema, type LocalModelAssetState, LocalModelAssetStateSchema, type LocalModelCatalogItem, type LocalModelCatalogLocalResult, type LocalModelCatalogResult, type LocalModelCatalogSearchEvent, type LocalModelDownloadStatus, LocalModelDownloadStatusSchema, type LocalModelLifecycleFileState, LocalModelLifecycleFileStateSchema, type LocalModelLifecycleGroupState, LocalModelLifecycleGroupStateSchema, type LocalModelProfileId, type LocalModelProfileLoadState, LocalModelProfileLoadStateSchema, type LocalModelProfileManifest, type LocalModelProfileManifestFile, LocalModelProfileManifestFileSchema, type LocalModelProfileManifestGroup, LocalModelProfileManifestGroupSchema, LocalModelProfileManifestSchema, type LocalModelProfileStatus, LocalModelProfileStatusSchema, type LocalRepositoryFile, type LocalRuntimeProfileFiles, MAX_TRANSLATION_CACHE_ENTRY_LIMIT, MIN_TRANSLATION_CACHE_ENTRY_LIMIT, type ManagedLocalTranslationEngineId, type MarkdownAnnotation, type MarkdownAnnotationConfidence, type MarkdownAnnotationContext, type MarkdownAnnotationInput, type MarkdownAnnotationRule, type MarkdownFact, type MarkdownFactKind, type MarkdownFactSpan, type MarkdownFactsDocument, MarkdownParser, type MarkdownProjectionContext, type MarkdownProjectionRule, type MarkdownReadingDocument, type MarkdownReadingLookup, type MarkdownReadingPlugin, MarkdownReadingPluginRegistry, type MarkdownSourcePoint, type MarkdownSourceRange, NOTIFICATION_SOUND_OPTIONS, NOTIFICATION_SOUND_VALUES, type NotificationAction, NotificationActionSchema, type NotificationGroup, type NotificationGroupKey, NotificationGroupKeySchema, type NotificationPublishInput, NotificationPublishInputSchema, type NotificationRecord, NotificationRecordSchema, type NotificationSettings, NotificationSettingsSchema, type NotificationSound, NotificationSoundSchema, type NotificationSource, NotificationSourceSchema, OFFICIAL_APP_BASE_URL, OPENSPECUI_HOOKS_VERSION, OPENSPECUI_RUNTIME_CAPABILITIES, OPEN_SPEC_READING_SECTIONS_PROJECTION_ID, OPEN_SPEC_SPEC_PROJECTION_ID, OPSX_AGENT_INVOCATION_MODE_VALUES, type OnReadDocumentHookV1, type OnRunWorkflowHookV1, OpenSpecAdapter, type OpenSpecAnnotation, type OpenSpecAnnotationConfidence, type OpenSpecHeadingSection, type OpenSpecProjectionOptions, type OpenSpecReadingSectionsProjection, type OpenSpecRequirementBlock, type OpenSpecScenarioBlock, type OpenSpecScenarioStepKeyword, type OpenSpecSemanticKind, type OpenSpecUIConfig, OpenSpecUIConfigSchema, type OpenSpecUIConfigUpdate, type OpenSpecUIGlobalSettings, OpenSpecUIGlobalSettingsSchema, type OpenSpecUIGlobalSettingsUpdate, type OpenSpecUIHooksV1, type OpenSpecUIRuntimeCapability, OpenSpecWatcher, type OpsxAgentInvocationMode, OpsxAgentInvocationModeSchema, type OpsxConfig, OpsxConfigSchema, type OpsxEntityArtifact, type OpsxEntityArtifactFile, type OpsxEntityDetail, type OpsxEntityDiagnostic, type OpsxEntityFile, type OpsxEntityReadOptions, type OpsxEntityStage, OpsxKernel, type ParsedOpsxSchemaDetail, type PathCallback, type PersistedOpenSpecUIGlobalSettings, type ProjectRecoveryStatus, type ProjectResidencyEvictionReason, type ProjectResidencyStatus, ProjectWatcher, type ProjectWatcherReinitializeReason, type ProjectWatcherRuntimeStatus, type ProjectWatcherRuntimeStatusListener, type ProjectedOpenSpecDocument, PtyAttachMessageSchema, PtyBellResponseSchema, PtyBufferResponseSchema, type PtyClientMessage, PtyClientMessageSchema, PtyCloseMessageSchema, PtyCreateMessageSchema, PtyCreatedResponseSchema, PtyErrorCodeSchema, PtyErrorResponseSchema, PtyExitResponseSchema, PtyInputMessageSchema, PtyListMessageSchema, PtyListResponseSchema, PtyOutputResponseSchema, type PtyPlatform, PtyPlatformSchema, PtyProcessTitleResponseSchema, PtyResizeMessageSchema, type PtyServerMessage, PtyServerMessageSchema, type PtySessionInfo, PtyTitleResponseSchema, ReactiveContext, ReactiveState, type ReactiveStateOptions, type ReadDocumentContextV1, type ReadDocumentResultV1, type Requirement, RequirementSchema, type ResolvedCliRunner, type RunWorkflowContextV1, type RunWorkflowInputV1, type RunWorkflowResultV1, type RuntimePackageDependencyField, type RuntimePackageInstallCommand, type RuntimePackageInstallStrategy, type RuntimePackageManagerResolution, type RuntimePackageManagerSource, SERVICE_TRANSLATION_ENGINE_IDS, SILENT_SOUND_ID, type ScenarioStep, ScenarioStepKeywordSchema, ScenarioStepSchema, type SchemaArtifact, SchemaArtifactSchema, type SchemaDetail, SchemaDetailSchema, type SchemaInfo, SchemaInfoSchema, type SchemaResolution, SchemaResolutionSchema, type ServiceTranslationEngineId, ServiceTranslationEngineIdSchema, SoundConfigIdSchema, type SoundId, SoundIdSchema, type Spec, type SpecMeta, SpecSchema, TERMINAL_BELL_SOUND_OPTIONS, TERMINAL_BELL_SOUND_VALUES, TERMINAL_COMMAND_FIELD_TYPE_VALUES, TERMINAL_SHELL_QUOTE_STYLE_VALUES, TERMINAL_THEME_MODE_VALUES, TERMINAL_THEME_VALUES, TOOL_WORKFLOW_TO_SKILL_DIR, TRANSLATION_CACHE_POLICY_VERSION, TRANSLATION_ENGINE_IDS, TRANSLATION_ENGINE_MANIFESTS, TRANSLATOR_CONTRACT_VERSION, type Task, TaskSchema, type TemplateContentMap, type TemplatesMap, TemplatesSchema, type TerminalBellSound, TerminalBellSoundSchema, type TerminalCommandArgument, type TerminalCommandField, TerminalCommandFieldSchema, type TerminalCommandFieldValue, type TerminalCommandFieldValues, type TerminalConfig, TerminalConfigSchema, type TerminalControlEvent, type TerminalControlParseResult, TerminalControlParser, type TerminalInvocationSettings, TerminalInvocationSettingsSchema, type TerminalNotificationEvent, type TerminalNotificationParseResult, TerminalNotificationParser, type TerminalNotificationProtocol, type TerminalProgressState, type TerminalPromptState, type TerminalRendererEngine, TerminalRendererEngineSchema, type TerminalShellDefaults, type TerminalShellProfile, TerminalShellProfileSchema, type TerminalShellQuoteStyle, TerminalShellQuoteStyleSchema, type TerminalSpawnCommand, TerminalSpawnCommandSchema, type TerminalThemeId, type TerminalThemeMode, TerminalThemeModeSchema, TerminalThemeSchema, type TerminalTitleTarget, type ToolConfig, type ToolInitDelivery, type ToolInitState, type ToolInitStatus, type ToolWorkflowId, type TranslationCacheEntry, TranslationCacheEntrySchema, type TranslationCacheReadInput, TranslationCacheReadInputSchema, type TranslationCacheSettings, TranslationCacheSettingsSchema, type TranslationCacheStats, TranslationCacheStatsSchema, type TranslationCacheWriteInput, TranslationCacheWriteInputSchema, type TranslationDownloadFilePlan, TranslationDownloadFilePlanSchema, type TranslationDownloadGroupPlan, TranslationDownloadGroupPlanSchema, type TranslationEngineAssetState, TranslationEngineAssetStateSchema, type TranslationEngineAssetStatus, TranslationEngineAssetStatusSchema, type TranslationEngineDependencyState, TranslationEngineDependencyStateSchema, type TranslationEngineDependencyStatus, TranslationEngineDependencyStatusSchema, type TranslationEngineGlobalSettings, TranslationEngineGlobalSettingsSchema, type TranslationEngineGlobalSettingsUpdate, type TranslationEngineId, TranslationEngineIdSchema, type TranslationEngineInstallLogEvent, TranslationEngineInstallLogEventSchema, type TranslationEngineInstallLogStream, TranslationEngineInstallLogStreamSchema, type TranslationEngineKind, type TranslationEngineLifecycleContext, type TranslationEngineLifecycleController, type TranslationEngineLifecycleEvent, TranslationEngineLifecycleEventSchema, type TranslationEngineLifecycleStatus, TranslationEngineLifecycleStatusSchema, type TranslationEngineManifest, type TranslationEngineProjectSettings, TranslationEngineProjectSettingsSchema, type TranslationEngineRuntime, type TranslationEngineRuntimeState, TranslationEngineRuntimeStateSchema, type TranslationEngineRuntimeStatus, TranslationEngineRuntimeStatusSchema, type TranslationEngineSettingsKey, type TranslationLanguagePair, type TranslationLocalCt2Settings, TranslationLocalCt2SettingsSchema, type TranslationLocalSettings, TranslationLocalSettingsSchema, type TranslationModelCandidate, type TranslationModelDownloadPlan, type TranslationModelSearchEvent, type TranslationModelSearchInput, type TranslationModelSearchPhase, type TranslationModelSearchResult, type TranslationOpenAISettings, TranslationOpenAISettingsSchema, type Translator, type TranslatorCreateMonitor, type TranslatorFactory, type TranslatorFactoryCreateOptions, type TranslatorFactoryPrepareOptions, type TranslatorOptions, type TranslatorPrepareMonitor, VIRTUAL_PROJECT_DIRNAME, type ValidationIssue, type ValidationResult, Validator, type WatchEvent, type WatchEventType, type WatcherRuntimeStatus, type WorkflowActionV1, type WorkflowInvocationModeResolutionV1, type WorkflowRequestedModeV1, acquireWatcher, annotateOpenSpecFacts, annotateOpenSpecMarkdown, buildBackendHealthPayload, buildCliRunnerCandidates, buildEmbeddedUiLaunchUrl, buildHostedLaunchUrl, buildLocalDownloadPlanFromRepositoryFiles, buildLocalDownloadPlanFromRuntimeProfileFiles, buildMarkdownParentMap, buildOpsxEntityDetail, buildRuntimePackageInstallCommand, builtinOpenSpecReadingPlugin, checkLocalDirectionalModelLanguagePair, clearCache, closeAllProjectWatchers, closeAllWatchers, contextStorage, createCleanCliEnv, createFileChangeObservable, createMarkdownReadingDocument, createMarkdownReadingDocumentFromFacts, createOpenSpecReadingPlugin, createTranslationEngineLifecycleStatus, customHashFromSoundId, detectRuntimePackageManager, getActiveWatcherCount, getAllToolIds, getAllTools, getAvailableToolIds, getAvailableTools, getBuiltinSoundUrl, getCacheSize, getConfiguredTools, getDefaultCliCommand, getDefaultCliCommandString, getDefaultGlobalSettingsPath, getDetectedProjectTools, getManagedLocalTranslationEngineManifest, getMarkdownAnnotation, getMarkdownAnnotationsForFact, getMarkdownFactSpan, getMarkdownHeadingEnd, getMarkdownHeadingFacts, getNotificationGroupKey, getNotificationGroupLabel, getOpenSpecAnnotation, getOpenSpecAnnotationsForFact, getOpenSpecProjectionAnnotation, getOpenSpecReadingSections, getOpsxEntityMetadataPath, getOpsxEntityRootRelativePath, getProjectWatcher, getTerminalCommandDefaultValues, getToolById, getToolInitStates, getTranslationEngineLifecycleMessage, getTranslationEngineManifest, getWatchedProjectDir, getWatcherRuntimeStatus, groupNotifications, inferFileMime, inferFilePreviewKind, inferLocalDirectionalModelLanguagePair, initWatcherPool, isBackendHealthRuntimeMetadata, isGlobPattern, isHostedBackendHealthResponse, isManagedLocalTranslationEngineId, isOpsxGlobPattern, isPreviewableFile, isSupportedEmbeddedUiUrl, isTerminalRendererEngine, isTextLikeFile, isTextLikeMime, isToolConfigured, isTranslationEngineDependencyReady, isTranslationEngineRuntimeReady, isWatcherPoolInitialized, normalizeEmbeddedUiUrl, normalizeHostedAppBaseUrl, normalizeLegacySoundId, normalizeOpsxEntityPath, openSpecAnnotationRules, opsxGlobToRegex, opsxPathMatchesPattern, parseCliCommand, parseMarkdownFacts, parseOpenSpecMarkdownToSpec, parseOpsxEntityMetadata, parseOpsxSchemaDetail, projectAnnotatedOpenSpecToSpec, projectOpenSpecMarkdown, quoteTerminalShellArg, reactiveExists, reactiveReadDir, reactiveReadFile, reactiveStat, renderTerminalCommandArgs, renderTerminalSpawnCommandLine, resolveHostedAppBaseUrl, resolveRuntimePackageInstallStrategy, resolveTerminalShellDefaults, selectLocalDownloadGroup, shouldShowTranslationEngineInstallGate, sniffGlobalCli, sortMarkdownReadingPlugins, soundIdFromCustomHash, subscribeWatcherRuntimeStatus, terminalNotificationEventToPublishInput, toMarkdownFactKind, toOpsxDisplayPath, toPersistedGlobalSettings, trimMarkdownSlice };
|
|
2342
|
+
export { type AIToolOption, AI_TOOLS, type AnnotatedOpenSpecDocument, type ApplyInstructions, ApplyInstructionsContextFilesSchema, ApplyInstructionsSchema, type ApplyTask, ApplyTaskSchema, type ArchiveMeta, type ArtifactInstructions, ArtifactInstructionsSchema, type ArtifactStatus, ArtifactStatusSchema, BUILTIN_SOUND_IDS, BUILTIN_SOUND_OPTIONS, BUILTIN_TERMINAL_SPAWN_COMMANDS, type BatchTranslateEvent, BatchTranslateEventSchema, type BatchTranslateInput, BatchTranslateInputSchema, type BatchTranslationResult, type BuiltinSoundId, BuiltinSoundIdSchema, type BuiltinSoundOption, CODE_EDITOR_THEME_VALUES, CUSTOM_SOUND_ADD_VALUE, type Change, type ChangeFile, ChangeFileSchema, type ChangeMeta, ChangeSchema, type ChangeStatus, ChangeStatusSchema, CliExecutor, type CliResult, type CliRunnerAttempt, type CliSniffResult, type CliStreamEvent, type CodeEditorTheme, CodeEditorThemeSchema, ConfigManager, type CustomSoundHash, CustomSoundHashSchema, type CustomSoundId, CustomSoundIdSchema, type CustomSoundMetadata, type CustomSoundMetadataFile, CustomSoundMetadataFileSchema, CustomSoundMetadataSchema, DASHBOARD_METRIC_KEYS, DEFAULT_BELL_SOUND_ID, DEFAULT_CONFIG, DEFAULT_GIT_DIFF_EAGER_LINE_BUDGET, DEFAULT_GLOBAL_SETTINGS, DEFAULT_NOTIFICATION_SOUND_ID, DEFAULT_TERMINAL_DARK_THEME, DEFAULT_TERMINAL_LIGHT_THEME, DEFAULT_TERMINAL_THEME_MODE, DEFAULT_TRANSLATION_CACHE_ENTRY_LIMIT, DEFAULT_TRANSLATION_ENGINE_ID, DOCUMENT_TRANSLATION_DISPLAY_MODES, type DashboardCardAvailability, type DashboardConfig, DashboardConfigSchema, type DashboardGitCommitEntry, type DashboardGitDiffStats, type DashboardGitEntry, type DashboardGitSnapshot, type DashboardGitUncommittedEntry, type DashboardGitWorktree, type DashboardMetricKey, type DashboardOverview, type DashboardSummary, type DashboardTrendKind, type DashboardTrendMeta, type DashboardTrendPoint, type DashboardTriColorTrendPoint, type Delta, type DeltaOperation, DeltaOperationType, DeltaSchema, type DeltaSpec, DeltaSpecSchema, type DependencyInfo, DependencyInfoSchema, type DocumentConsumerV1, type DocumentReadModeV1, type DocumentRefV1, type DocumentTranslationConfig, type DocumentTranslationConfigInput, DocumentTranslationConfigSchema, type DocumentTranslationConfigUpdate, type DocumentTranslationDisplayMode, DocumentTranslationDisplayModeSchema, type ExportSnapshot, FILE_PREVIEW_KINDS, type FileChangeEvent, type FileChangeType, type FilePreviewKind, type GitConfig, GitConfigSchema, type GitEntriesPage, type GitEntryCursor, type GitEntryDetail, type GitEntryFileDiff, type GitEntryFilePatch, type GitEntryFileSource, type GitEntryFileSummary, type GitEntryFiles, type GitEntryPatch, type GitEntrySelector, type GitEntryShell, type GitFileChangeType, type GitPatchFile, type GitPatchState, type GitWorktreeHandoff, type GitWorktreeOverview, type GitWorktreeSummary, GlobalSettingsManager, HOSTED_SHELL_PROTOCOL_VERSION, type HookDiagnosticLevel, type HookDiagnosticV1, type HookLifecycleV1, type HostedBackendHealthResponse, LEGACY_SOUND_ID_MAP, LOCAL_MODEL_PROFILE_DEFINITIONS, type LocalDirectionalModelLanguagePairCheck, type LocalModelAssetLog, LocalModelAssetLogSchema, type LocalModelAssetPlanSnapshot, LocalModelAssetPlanSnapshotSchema, type LocalModelAssetState, LocalModelAssetStateSchema, type LocalModelCatalogItem, type LocalModelCatalogLocalResult, type LocalModelCatalogResult, type LocalModelCatalogSearchEvent, type LocalModelDownloadStatus, LocalModelDownloadStatusSchema, type LocalModelLifecycleFileState, LocalModelLifecycleFileStateSchema, type LocalModelLifecycleGroupState, LocalModelLifecycleGroupStateSchema, type LocalModelProfileId, type LocalModelProfileLoadState, LocalModelProfileLoadStateSchema, type LocalModelProfileManifest, type LocalModelProfileManifestFile, LocalModelProfileManifestFileSchema, type LocalModelProfileManifestGroup, LocalModelProfileManifestGroupSchema, LocalModelProfileManifestSchema, type LocalModelProfileStatus, LocalModelProfileStatusSchema, type LocalRepositoryFile, type LocalRuntimeProfileFiles, MAX_TRANSLATION_CACHE_ENTRY_LIMIT, MIN_TRANSLATION_CACHE_ENTRY_LIMIT, type ManagedLocalCatalogSource, ManagedLocalCatalogSourceSchema, type ManagedLocalTranslationEngineId, type MarkdownAnnotation, type MarkdownAnnotationConfidence, type MarkdownAnnotationContext, type MarkdownAnnotationInput, type MarkdownAnnotationRule, type MarkdownFact, type MarkdownFactKind, type MarkdownFactSpan, type MarkdownFactsDocument, MarkdownParser, type MarkdownProjectionContext, type MarkdownProjectionRule, type MarkdownReadingDocument, type MarkdownReadingLookup, type MarkdownReadingPlugin, MarkdownReadingPluginRegistry, type MarkdownSourcePoint, type MarkdownSourceRange, NOTIFICATION_SOUND_OPTIONS, NOTIFICATION_SOUND_VALUES, type NotificationAction, NotificationActionSchema, type NotificationGroup, type NotificationGroupKey, NotificationGroupKeySchema, type NotificationPublishInput, NotificationPublishInputSchema, type NotificationRecord, NotificationRecordSchema, type NotificationSettings, NotificationSettingsSchema, type NotificationSound, NotificationSoundSchema, type NotificationSource, NotificationSourceSchema, OFFICIAL_APP_BASE_URL, OPENSPECUI_HOOKS_VERSION, OPENSPECUI_RUNTIME_CAPABILITIES, OPEN_SPEC_READING_SECTIONS_PROJECTION_ID, OPEN_SPEC_SPEC_PROJECTION_ID, OPSX_AGENT_INVOCATION_MODE_VALUES, type OnReadDocumentHookV1, type OnRunWorkflowHookV1, OpenSpecAdapter, type OpenSpecAnnotation, type OpenSpecAnnotationConfidence, type OpenSpecHeadingSection, type OpenSpecProjectionOptions, type OpenSpecReadingSectionsProjection, type OpenSpecRequirementBlock, type OpenSpecScenarioBlock, type OpenSpecScenarioStepKeyword, type OpenSpecSemanticKind, type OpenSpecUIConfig, OpenSpecUIConfigSchema, type OpenSpecUIConfigUpdate, type OpenSpecUIGlobalSettings, OpenSpecUIGlobalSettingsSchema, type OpenSpecUIGlobalSettingsUpdate, type OpenSpecUIHooksV1, type OpenSpecUIRuntimeCapability, OpenSpecWatcher, type OpsxAgentInvocationMode, OpsxAgentInvocationModeSchema, type OpsxConfig, OpsxConfigSchema, type OpsxEntityArtifact, type OpsxEntityArtifactFile, type OpsxEntityDetail, type OpsxEntityDiagnostic, type OpsxEntityFile, type OpsxEntityReadOptions, type OpsxEntityStage, OpsxKernel, type ParsedOpsxSchemaDetail, type PathCallback, type PersistedOpenSpecUIGlobalSettings, type ProjectRecoveryStatus, type ProjectResidencyEvictionReason, type ProjectResidencyStatus, ProjectWatcher, type ProjectWatcherReinitializeReason, type ProjectWatcherRuntimeStatus, type ProjectWatcherRuntimeStatusListener, type ProjectedOpenSpecDocument, PtyAttachMessageSchema, PtyBellResponseSchema, PtyBufferResponseSchema, type PtyClientMessage, PtyClientMessageSchema, PtyCloseMessageSchema, PtyCreateMessageSchema, PtyCreatedResponseSchema, PtyErrorCodeSchema, PtyErrorResponseSchema, PtyExitResponseSchema, PtyInputMessageSchema, PtyListMessageSchema, PtyListResponseSchema, PtyOutputResponseSchema, type PtyPlatform, PtyPlatformSchema, PtyProcessTitleResponseSchema, PtyResizeMessageSchema, type PtyServerMessage, PtyServerMessageSchema, type PtySessionInfo, PtyTitleResponseSchema, ReactiveContext, ReactiveState, type ReactiveStateOptions, type ReadDocumentContextV1, type ReadDocumentResultV1, type Requirement, RequirementSchema, type ResolvedCliRunner, type RunWorkflowContextV1, type RunWorkflowInputV1, type RunWorkflowResultV1, type RuntimePackageDependencyField, type RuntimePackageInstallCommand, type RuntimePackageInstallStrategy, type RuntimePackageManagerResolution, type RuntimePackageManagerSource, SERVICE_TRANSLATION_ENGINE_IDS, SILENT_SOUND_ID, type ScenarioStep, ScenarioStepKeywordSchema, ScenarioStepSchema, type SchemaArtifact, SchemaArtifactSchema, type SchemaDetail, SchemaDetailSchema, type SchemaInfo, SchemaInfoSchema, type SchemaResolution, SchemaResolutionSchema, type ServiceTranslationEngineId, ServiceTranslationEngineIdSchema, SoundConfigIdSchema, type SoundId, SoundIdSchema, type Spec, type SpecMeta, SpecSchema, TERMINAL_BELL_SOUND_OPTIONS, TERMINAL_BELL_SOUND_VALUES, TERMINAL_COMMAND_FIELD_TYPE_VALUES, TERMINAL_SHELL_QUOTE_STYLE_VALUES, TERMINAL_THEME_MODE_VALUES, TERMINAL_THEME_VALUES, TOOL_WORKFLOW_TO_SKILL_DIR, TRANSLATION_CACHE_POLICY_VERSION, TRANSLATION_ENGINE_IDS, TRANSLATION_ENGINE_MANIFESTS, TRANSLATOR_CONTRACT_VERSION, type Task, TaskSchema, type TemplateContentMap, type TemplatesMap, TemplatesSchema, type TerminalBellSound, TerminalBellSoundSchema, type TerminalCommandArgument, type TerminalCommandField, TerminalCommandFieldSchema, type TerminalCommandFieldValue, type TerminalCommandFieldValues, type TerminalConfig, TerminalConfigSchema, type TerminalControlEvent, type TerminalControlParseResult, TerminalControlParser, type TerminalInvocationSettings, TerminalInvocationSettingsSchema, type TerminalNotificationEvent, type TerminalNotificationParseResult, TerminalNotificationParser, type TerminalNotificationProtocol, type TerminalProgressState, type TerminalPromptState, type TerminalRendererEngine, TerminalRendererEngineSchema, type TerminalShellDefaults, type TerminalShellProfile, TerminalShellProfileSchema, type TerminalShellQuoteStyle, TerminalShellQuoteStyleSchema, type TerminalSpawnCommand, TerminalSpawnCommandSchema, type TerminalThemeId, type TerminalThemeMode, TerminalThemeModeSchema, TerminalThemeSchema, type TerminalTitleTarget, type ToolConfig, type ToolInitDelivery, type ToolInitState, type ToolInitStatus, type ToolWorkflowId, type TranslationCacheEntry, TranslationCacheEntrySchema, type TranslationCacheReadInput, TranslationCacheReadInputSchema, type TranslationCacheSettings, TranslationCacheSettingsSchema, type TranslationCacheStats, TranslationCacheStatsSchema, type TranslationCacheWriteInput, TranslationCacheWriteInputSchema, type TranslationDownloadFilePlan, TranslationDownloadFilePlanSchema, type TranslationDownloadGroupPlan, TranslationDownloadGroupPlanSchema, type TranslationEngineAssetState, TranslationEngineAssetStateSchema, type TranslationEngineAssetStatus, TranslationEngineAssetStatusSchema, type TranslationEngineDependencyState, TranslationEngineDependencyStateSchema, type TranslationEngineDependencyStatus, TranslationEngineDependencyStatusSchema, type TranslationEngineGlobalSettings, TranslationEngineGlobalSettingsSchema, type TranslationEngineGlobalSettingsUpdate, type TranslationEngineId, TranslationEngineIdSchema, type TranslationEngineInstallLogEvent, TranslationEngineInstallLogEventSchema, type TranslationEngineInstallLogStream, TranslationEngineInstallLogStreamSchema, type TranslationEngineKind, type TranslationEngineLifecycleContext, type TranslationEngineLifecycleController, type TranslationEngineLifecycleEvent, TranslationEngineLifecycleEventSchema, type TranslationEngineLifecycleStatus, TranslationEngineLifecycleStatusSchema, type TranslationEngineManifest, type TranslationEngineProjectSettings, TranslationEngineProjectSettingsSchema, type TranslationEngineRuntime, type TranslationEngineRuntimeState, TranslationEngineRuntimeStateSchema, type TranslationEngineRuntimeStatus, TranslationEngineRuntimeStatusSchema, type TranslationEngineSettingsKey, type TranslationLanguagePair, type TranslationLocalCt2Settings, TranslationLocalCt2SettingsSchema, type TranslationLocalLlamaSettings, TranslationLocalLlamaSettingsSchema, type TranslationLocalSettings, TranslationLocalSettingsSchema, type TranslationModelCandidate, type TranslationModelDownloadPlan, type TranslationModelSearchEvent, type TranslationModelSearchInput, type TranslationModelSearchPhase, type TranslationModelSearchResult, type TranslationOpenAISettings, TranslationOpenAISettingsSchema, type Translator, type TranslatorCreateMonitor, type TranslatorFactory, type TranslatorFactoryCreateOptions, type TranslatorFactoryPrepareOptions, type TranslatorOptions, type TranslatorPrepareMonitor, VIRTUAL_PROJECT_DIRNAME, type ValidationIssue, type ValidationResult, Validator, type WatchEvent, type WatchEventType, type WatcherRuntimeStatus, type WorkflowActionV1, type WorkflowInvocationModeResolutionV1, type WorkflowRequestedModeV1, acquireWatcher, annotateOpenSpecFacts, annotateOpenSpecMarkdown, buildBackendHealthPayload, buildCliRunnerCandidates, buildEmbeddedUiLaunchUrl, buildHostedLaunchUrl, buildLocalDownloadPlanFromRepositoryFiles, buildLocalDownloadPlanFromRuntimeProfileFiles, buildMarkdownParentMap, buildOpsxEntityDetail, buildRuntimePackageInstallCommand, builtinOpenSpecReadingPlugin, checkLocalDirectionalModelLanguagePair, clearCache, closeAllProjectWatchers, closeAllWatchers, contextStorage, createCleanCliEnv, createFileChangeObservable, createMarkdownReadingDocument, createMarkdownReadingDocumentFromFacts, createOpenSpecReadingPlugin, createTranslationEngineLifecycleStatus, customHashFromSoundId, detectRuntimePackageManager, getActiveWatcherCount, getAllToolIds, getAllTools, getAvailableToolIds, getAvailableTools, getBuiltinSoundUrl, getCacheSize, getConfiguredTools, getDefaultCliCommand, getDefaultCliCommandString, getDefaultGlobalSettingsPath, getDetectedProjectTools, getManagedLocalTranslationEngineManifest, getMarkdownAnnotation, getMarkdownAnnotationsForFact, getMarkdownFactSpan, getMarkdownHeadingEnd, getMarkdownHeadingFacts, getNotificationGroupKey, getNotificationGroupLabel, getOpenSpecAnnotation, getOpenSpecAnnotationsForFact, getOpenSpecProjectionAnnotation, getOpenSpecReadingSections, getOpsxEntityMetadataPath, getOpsxEntityRootRelativePath, getProjectWatcher, getTerminalCommandDefaultValues, getToolById, getToolInitStates, getTranslationEngineLifecycleMessage, getTranslationEngineManifest, getWatchedProjectDir, getWatcherRuntimeStatus, groupNotifications, inferFileMime, inferFilePreviewKind, inferLocalDirectionalModelLanguagePair, initWatcherPool, isBackendHealthRuntimeMetadata, isDirectionalManagedLocalTranslationEngineId, isGlobPattern, isHostedBackendHealthResponse, isManagedLocalTranslationEngineId, isOpsxGlobPattern, isPreviewableFile, isSupportedEmbeddedUiUrl, isTerminalRendererEngine, isTextLikeFile, isTextLikeMime, isToolConfigured, isTranslationEngineDependencyReady, isTranslationEngineRuntimeReady, isWatcherPoolInitialized, normalizeEmbeddedUiUrl, normalizeHostedAppBaseUrl, normalizeLegacySoundId, normalizeOpsxEntityPath, openSpecAnnotationRules, opsxGlobToRegex, opsxPathMatchesPattern, parseCliCommand, parseMarkdownFacts, parseOpenSpecMarkdownToSpec, parseOpsxEntityMetadata, parseOpsxSchemaDetail, projectAnnotatedOpenSpecToSpec, projectOpenSpecMarkdown, quoteTerminalShellArg, reactiveExists, reactiveReadDir, reactiveReadFile, reactiveStat, renderTerminalCommandArgs, renderTerminalSpawnCommandLine, resolveHostedAppBaseUrl, resolveRuntimePackageInstallStrategy, resolveTerminalShellDefaults, selectLocalDownloadGroup, shouldShowTranslationEngineInstallGate, sniffGlobalCli, sortMarkdownReadingPlugins, soundIdFromCustomHash, subscribeWatcherRuntimeStatus, terminalNotificationEventToPublishInput, toMarkdownFactKind, toOpsxDisplayPath, toPersistedGlobalSettings, trimMarkdownSlice };
|