@openspecui/core 3.9.0 → 3.11.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 (25) hide show
  1. package/dist/{document-translation-gGEfTK6J.d.mts → document-translation-BZ5QKjN0.d.mts} +2 -2
  2. package/dist/document-translation.d.mts +1 -1
  3. package/dist/index.d.mts +30 -21
  4. package/dist/index.mjs +128 -5
  5. package/dist/{local-download-profiles-Cx0TCYld.d.mts → local-download-profiles-BdHk_i54.d.mts} +1 -1
  6. package/dist/local-download-profiles.d.mts +2 -2
  7. package/dist/{notifications-BcyENEk7.d.mts → notifications-B4GiAnmn.d.mts} +10 -10
  8. package/dist/notifications.d.mts +2 -2
  9. package/dist/{openspec-projection-BA3r5CYl.d.mts → openspec-projection-Df5C6CFv.d.mts} +1 -1
  10. package/dist/openspec-projection.d.mts +2 -2
  11. package/dist/{opsx-entity-CuZmeham.d.mts → opsx-entity-DHidvJcx.d.mts} +7 -7
  12. package/dist/opsx-entity.d.mts +2 -2
  13. package/dist/{opsx-schema-detail-Ca3CvTQg.d.mts → opsx-schema-detail-VyCbvX1I.d.mts} +1 -1
  14. package/dist/opsx-schema-detail.d.mts +3 -3
  15. package/dist/{schemas-P5NxTHR9.d.mts → schemas-3VC51gAF.d.mts} +10 -2
  16. package/dist/{sounds-DABkmyg9.d.mts → sounds-CQJ1eD1u.d.mts} +9 -9
  17. package/dist/sounds.d.mts +1 -1
  18. package/dist/{terminal-audio-CDyXOIWx.d.mts → terminal-audio-BrmM5FX_.d.mts} +2 -2
  19. package/dist/terminal-audio.d.mts +2 -2
  20. package/dist/terminal-control.d.mts +2 -2
  21. package/dist/{terminal-invocation-CWevPxkf.d.mts → terminal-invocation-Z0xbyZ1V.d.mts} +41 -41
  22. package/dist/terminal-invocation.d.mts +1 -1
  23. package/dist/{translator-BEhPdQGs.d.mts → translator-BSPMDjZy.d.mts} +10 -10
  24. package/dist/translator.d.mts +1 -1
  25. package/package.json +1 -1
@@ -196,11 +196,12 @@ declare const LocalModelAssetLogSchema: z.ZodObject<{
196
196
  }>, "many">>;
197
197
  updatedAt: z.ZodNumber;
198
198
  }, "strip", z.ZodTypeAny, {
199
+ status: "error" | "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "deleting";
199
200
  message: string;
200
- status: "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "error" | "deleting";
201
+ updatedAt: number;
201
202
  engineId: "local";
202
203
  modelId: string;
203
- updatedAt: number;
204
+ sessionId?: string | undefined;
204
205
  selectedGroupId?: string | undefined;
205
206
  files?: {
206
207
  path: string;
@@ -210,14 +211,14 @@ declare const LocalModelAssetLogSchema: z.ZodObject<{
210
211
  progress?: number | undefined;
211
212
  bytesDownloaded?: number | undefined;
212
213
  totalBytes?: number | undefined;
213
- sessionId?: string | undefined;
214
214
  resumable?: boolean | undefined;
215
215
  }, {
216
+ status: "error" | "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "deleting";
216
217
  message: string;
217
- status: "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "error" | "deleting";
218
+ updatedAt: number;
218
219
  engineId: "local";
219
220
  modelId: string;
220
- updatedAt: number;
221
+ sessionId?: string | undefined;
221
222
  selectedGroupId?: string | undefined;
222
223
  files?: {
223
224
  path: string;
@@ -227,7 +228,6 @@ declare const LocalModelAssetLogSchema: z.ZodObject<{
227
228
  progress?: number | undefined;
228
229
  bytesDownloaded?: number | undefined;
229
230
  totalBytes?: number | undefined;
230
- sessionId?: string | undefined;
231
231
  resumable?: boolean | undefined;
232
232
  }>;
233
233
  type LocalModelAssetLog = z.infer<typeof LocalModelAssetLogSchema>;
@@ -497,7 +497,7 @@ declare const LocalModelAssetStateSchema: z.ZodObject<{
497
497
  downloadedBytes?: number | undefined;
498
498
  }>, "many">>;
499
499
  }, "strip", z.ZodTypeAny, {
500
- status: "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "error" | "deleting";
500
+ status: "error" | "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "deleting";
501
501
  selected: boolean;
502
502
  files: {
503
503
  path: string;
@@ -506,11 +506,11 @@ declare const LocalModelAssetStateSchema: z.ZodObject<{
506
506
  }[];
507
507
  modelId: string;
508
508
  resumable: boolean;
509
+ updatedAt?: number | undefined;
509
510
  error?: string | undefined;
510
511
  progress?: number | undefined;
511
512
  bytesDownloaded?: number | undefined;
512
513
  totalBytes?: number | undefined;
513
- updatedAt?: number | undefined;
514
514
  installedAt?: number | undefined;
515
515
  plan?: {
516
516
  files: {
@@ -540,7 +540,8 @@ declare const LocalModelAssetStateSchema: z.ZodObject<{
540
540
  } | undefined;
541
541
  }, {
542
542
  modelId: string;
543
- status?: "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "error" | "deleting" | undefined;
543
+ status?: "error" | "not-downloaded" | "queued" | "downloading" | "paused" | "downloaded" | "deleting" | undefined;
544
+ updatedAt?: number | undefined;
544
545
  error?: string | undefined;
545
546
  selected?: boolean | undefined;
546
547
  files?: {
@@ -552,7 +553,6 @@ declare const LocalModelAssetStateSchema: z.ZodObject<{
552
553
  bytesDownloaded?: number | undefined;
553
554
  totalBytes?: number | undefined;
554
555
  resumable?: boolean | undefined;
555
- updatedAt?: number | undefined;
556
556
  installedAt?: number | undefined;
557
557
  plan?: {
558
558
  files: {
@@ -1,2 +1,2 @@
1
- import { $ as getTranslationEngineManifest, A as TranslationEngineGlobalSettingsSchema, B as TranslationModelSearchEvent, C as TRANSLATION_ENGINE_MANIFESTS, D as TranslationDownloadGroupPlan, E as TranslationDownloadFilePlanSchema, F as TranslationEngineRuntime, G as TranslationOpenAISettingsSchema, H as TranslationModelSearchPhase, I as TranslationLocalSettings, J as TranslatorFactory, K as Translator, L as TranslationLocalSettingsSchema, M as TranslationEngineId, N as TranslationEngineIdSchema, O as TranslationDownloadGroupPlanSchema, P as TranslationEngineManifest, Q as TranslatorPrepareMonitor, R as TranslationModelCandidate, S as TRANSLATION_ENGINE_IDS, T as TranslationDownloadFilePlan, U as TranslationModelSearchResult, V as TranslationModelSearchInput, W as TranslationOpenAISettings, X as TranslatorFactoryPrepareOptions, Y as TranslatorFactoryCreateOptions, Z as TranslatorOptions, _ as LocalModelDownloadStatus, a as BatchTranslationResult, b as ServiceTranslationEngineId, c as LocalModelAssetLogSchema, d as LocalModelAssetState, f as LocalModelAssetStateSchema, g as LocalModelCatalogSearchEvent, h as LocalModelCatalogResult, i as BatchTranslateInputSchema, j as TranslationEngineGlobalSettingsUpdate, k as TranslationEngineGlobalSettings, l as LocalModelAssetPlanSnapshot, m as LocalModelCatalogLocalResult, n as BatchTranslateEventSchema, o as DEFAULT_TRANSLATION_ENGINE_ID, p as LocalModelCatalogItem, q as TranslatorCreateMonitor, r as BatchTranslateInput, s as LocalModelAssetLog, t as BatchTranslateEvent, u as LocalModelAssetPlanSnapshotSchema, v as LocalModelDownloadStatusSchema, w as TRANSLATOR_CONTRACT_VERSION, x as ServiceTranslationEngineIdSchema, y as SERVICE_TRANSLATION_ENGINE_IDS, z as TranslationModelDownloadPlan } from "./translator-BEhPdQGs.mjs";
1
+ import { $ as getTranslationEngineManifest, A as TranslationEngineGlobalSettingsSchema, B as TranslationModelSearchEvent, C as TRANSLATION_ENGINE_MANIFESTS, D as TranslationDownloadGroupPlan, E as TranslationDownloadFilePlanSchema, F as TranslationEngineRuntime, G as TranslationOpenAISettingsSchema, H as TranslationModelSearchPhase, I as TranslationLocalSettings, J as TranslatorFactory, K as Translator, L as TranslationLocalSettingsSchema, M as TranslationEngineId, N as TranslationEngineIdSchema, O as TranslationDownloadGroupPlanSchema, P as TranslationEngineManifest, Q as TranslatorPrepareMonitor, R as TranslationModelCandidate, S as TRANSLATION_ENGINE_IDS, T as TranslationDownloadFilePlan, U as TranslationModelSearchResult, V as TranslationModelSearchInput, W as TranslationOpenAISettings, X as TranslatorFactoryPrepareOptions, Y as TranslatorFactoryCreateOptions, Z as TranslatorOptions, _ as LocalModelDownloadStatus, a as BatchTranslationResult, b as ServiceTranslationEngineId, c as LocalModelAssetLogSchema, d as LocalModelAssetState, f as LocalModelAssetStateSchema, g as LocalModelCatalogSearchEvent, h as LocalModelCatalogResult, i as BatchTranslateInputSchema, j as TranslationEngineGlobalSettingsUpdate, k as TranslationEngineGlobalSettings, l as LocalModelAssetPlanSnapshot, m as LocalModelCatalogLocalResult, n as BatchTranslateEventSchema, o as DEFAULT_TRANSLATION_ENGINE_ID, p as LocalModelCatalogItem, q as TranslatorCreateMonitor, r as BatchTranslateInput, s as LocalModelAssetLog, t as BatchTranslateEvent, u as LocalModelAssetPlanSnapshotSchema, v as LocalModelDownloadStatusSchema, w as TRANSLATOR_CONTRACT_VERSION, x as ServiceTranslationEngineIdSchema, y as SERVICE_TRANSLATION_ENGINE_IDS, z as TranslationModelDownloadPlan } from "./translator-BSPMDjZy.mjs";
2
2
  export { BatchTranslateEvent, BatchTranslateEventSchema, BatchTranslateInput, BatchTranslateInputSchema, BatchTranslationResult, DEFAULT_TRANSLATION_ENGINE_ID, LocalModelAssetLog, LocalModelAssetLogSchema, LocalModelAssetPlanSnapshot, LocalModelAssetPlanSnapshotSchema, LocalModelAssetState, LocalModelAssetStateSchema, LocalModelCatalogItem, LocalModelCatalogLocalResult, LocalModelCatalogResult, LocalModelCatalogSearchEvent, LocalModelDownloadStatus, LocalModelDownloadStatusSchema, SERVICE_TRANSLATION_ENGINE_IDS, ServiceTranslationEngineId, ServiceTranslationEngineIdSchema, TRANSLATION_ENGINE_IDS, TRANSLATION_ENGINE_MANIFESTS, TRANSLATOR_CONTRACT_VERSION, TranslationDownloadFilePlan, TranslationDownloadFilePlanSchema, TranslationDownloadGroupPlan, TranslationDownloadGroupPlanSchema, TranslationEngineGlobalSettings, TranslationEngineGlobalSettingsSchema, TranslationEngineGlobalSettingsUpdate, TranslationEngineId, TranslationEngineIdSchema, TranslationEngineManifest, TranslationEngineRuntime, TranslationLocalSettings, TranslationLocalSettingsSchema, TranslationModelCandidate, TranslationModelDownloadPlan, TranslationModelSearchEvent, TranslationModelSearchInput, TranslationModelSearchPhase, TranslationModelSearchResult, TranslationOpenAISettings, TranslationOpenAISettingsSchema, Translator, TranslatorCreateMonitor, TranslatorFactory, TranslatorFactoryCreateOptions, TranslatorFactoryPrepareOptions, TranslatorOptions, TranslatorPrepareMonitor, getTranslationEngineManifest };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openspecui/core",
3
- "version": "3.9.0",
3
+ "version": "3.11.0",
4
4
  "description": "Core OpenSpec adapter and parser",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",