@openspecui/core 3.11.3 → 3.11.5
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-BrlCvnLZ.mjs → document-translation-B6VWf7ll.mjs} +26 -2
- package/dist/{document-translation-Cv6BIGL5.d.mts → document-translation-DhFREeHW.d.mts} +254 -52
- package/dist/document-translation.d.mts +2 -2
- package/dist/document-translation.mjs +3 -3
- package/dist/index.d.mts +410 -89
- package/dist/index.mjs +226 -89
- package/dist/{local-download-profiles-GKs2OOqJ.d.mts → local-download-profiles-DIVr0mFh.d.mts} +1 -1
- package/dist/local-download-profiles.d.mts +2 -2
- package/dist/{notifications-CJQ_F_Un.d.mts → notifications-BDBbeTRk.d.mts} +16 -16
- package/dist/notifications.d.mts +2 -2
- package/dist/{openspec-projection-BbuPTbvj.d.mts → openspec-projection-CmxjMsxS.d.mts} +1 -1
- package/dist/openspec-projection.d.mts +2 -2
- package/dist/{opsx-entity-BO9G2SCW.d.mts → opsx-entity-CRa2u1j3.d.mts} +1 -1
- package/dist/opsx-entity.d.mts +2 -2
- package/dist/{opsx-schema-detail-DTajJW4g.d.mts → opsx-schema-detail-aVlqvbro.d.mts} +1 -1
- package/dist/opsx-schema-detail.d.mts +3 -3
- package/dist/{schemas-DQzd1hgp.d.mts → schemas-Dp8-Wm-X.d.mts} +28 -28
- package/dist/sounds.d.mts +1 -1
- package/dist/{terminal-audio-UCLlM1qN.d.mts → terminal-audio-DLOmaKqa.d.mts} +1 -1
- package/dist/terminal-audio.d.mts +2 -2
- package/dist/terminal-control.d.mts +2 -2
- package/dist/{terminal-invocation-DCPc8hmm.d.mts → terminal-invocation-B3js0mEF.d.mts} +81 -81
- package/dist/terminal-invocation.d.mts +1 -1
- package/dist/{translator-prn3W9lf.d.mts → translator-CS7MsNZp.d.mts} +387 -138
- package/dist/{translator-Car0_7uk.mjs → translator-Cx9j32Og.mjs} +164 -6
- package/dist/translator.d.mts +2 -2
- package/dist/translator.mjs +2 -2
- package/package.json +1 -1
- /package/dist/{sounds-3yEx1YXT.d.mts → sounds-6KwglrL2.d.mts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./opsx-entity-
|
|
2
|
-
import "./schemas-
|
|
3
|
-
import { n as parseOpsxSchemaDetail, t as ParsedOpsxSchemaDetail } from "./opsx-schema-detail-
|
|
1
|
+
import "./opsx-entity-CRa2u1j3.mjs";
|
|
2
|
+
import "./schemas-Dp8-Wm-X.mjs";
|
|
3
|
+
import { n as parseOpsxSchemaDetail, t as ParsedOpsxSchemaDetail } from "./opsx-schema-detail-aVlqvbro.mjs";
|
|
4
4
|
export { ParsedOpsxSchemaDetail, parseOpsxSchemaDetail };
|
|
@@ -24,14 +24,14 @@ declare const ChangeFileSchema: z.ZodObject<{
|
|
|
24
24
|
mime?: string | undefined;
|
|
25
25
|
size?: number | undefined;
|
|
26
26
|
content?: string | undefined;
|
|
27
|
-
previewKind?: "
|
|
27
|
+
previewKind?: "text" | "html" | "markdown" | "image" | "audio" | "video" | "pdf" | "none" | undefined;
|
|
28
28
|
}, {
|
|
29
29
|
path: string;
|
|
30
30
|
type: "file" | "directory";
|
|
31
31
|
mime?: string | undefined;
|
|
32
32
|
size?: number | undefined;
|
|
33
33
|
content?: string | undefined;
|
|
34
|
-
previewKind?: "
|
|
34
|
+
previewKind?: "text" | "html" | "markdown" | "image" | "audio" | "video" | "pdf" | "none" | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
type ChangeFile = z.infer<typeof ChangeFileSchema>;
|
|
37
37
|
declare const ScenarioStepKeywordSchema: z.ZodEnum<["GIVEN", "WHEN", "THEN", "AND", "BUT"]>;
|
|
@@ -110,9 +110,9 @@ declare const RequirementSchema: z.ZodObject<{
|
|
|
110
110
|
}[] | undefined;
|
|
111
111
|
}>, "many">;
|
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
|
113
|
-
title: string;
|
|
114
113
|
id: string;
|
|
115
114
|
text: string;
|
|
115
|
+
title: string;
|
|
116
116
|
bodyMarkdown: string;
|
|
117
117
|
scenarios: {
|
|
118
118
|
title: string;
|
|
@@ -125,9 +125,9 @@ declare const RequirementSchema: z.ZodObject<{
|
|
|
125
125
|
}[] | undefined;
|
|
126
126
|
}[];
|
|
127
127
|
}, {
|
|
128
|
-
title: string;
|
|
129
128
|
id: string;
|
|
130
129
|
text: string;
|
|
130
|
+
title: string;
|
|
131
131
|
bodyMarkdown: string;
|
|
132
132
|
scenarios: {
|
|
133
133
|
title: string;
|
|
@@ -207,9 +207,9 @@ declare const SpecSchema: z.ZodObject<{
|
|
|
207
207
|
}[] | undefined;
|
|
208
208
|
}>, "many">;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
|
-
title: string;
|
|
211
210
|
id: string;
|
|
212
211
|
text: string;
|
|
212
|
+
title: string;
|
|
213
213
|
bodyMarkdown: string;
|
|
214
214
|
scenarios: {
|
|
215
215
|
title: string;
|
|
@@ -222,9 +222,9 @@ declare const SpecSchema: z.ZodObject<{
|
|
|
222
222
|
}[] | undefined;
|
|
223
223
|
}[];
|
|
224
224
|
}, {
|
|
225
|
-
title: string;
|
|
226
225
|
id: string;
|
|
227
226
|
text: string;
|
|
227
|
+
title: string;
|
|
228
228
|
bodyMarkdown: string;
|
|
229
229
|
scenarios: {
|
|
230
230
|
title: string;
|
|
@@ -256,9 +256,9 @@ declare const SpecSchema: z.ZodObject<{
|
|
|
256
256
|
name: string;
|
|
257
257
|
overview: string;
|
|
258
258
|
requirements: {
|
|
259
|
-
title: string;
|
|
260
259
|
id: string;
|
|
261
260
|
text: string;
|
|
261
|
+
title: string;
|
|
262
262
|
bodyMarkdown: string;
|
|
263
263
|
scenarios: {
|
|
264
264
|
title: string;
|
|
@@ -281,9 +281,9 @@ declare const SpecSchema: z.ZodObject<{
|
|
|
281
281
|
name: string;
|
|
282
282
|
overview: string;
|
|
283
283
|
requirements: {
|
|
284
|
-
title: string;
|
|
285
284
|
id: string;
|
|
286
285
|
text: string;
|
|
286
|
+
title: string;
|
|
287
287
|
bodyMarkdown: string;
|
|
288
288
|
scenarios: {
|
|
289
289
|
title: string;
|
|
@@ -370,9 +370,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
370
370
|
}[] | undefined;
|
|
371
371
|
}>, "many">;
|
|
372
372
|
}, "strip", z.ZodTypeAny, {
|
|
373
|
-
title: string;
|
|
374
373
|
id: string;
|
|
375
374
|
text: string;
|
|
375
|
+
title: string;
|
|
376
376
|
bodyMarkdown: string;
|
|
377
377
|
scenarios: {
|
|
378
378
|
title: string;
|
|
@@ -385,9 +385,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
385
385
|
}[] | undefined;
|
|
386
386
|
}[];
|
|
387
387
|
}, {
|
|
388
|
-
title: string;
|
|
389
388
|
id: string;
|
|
390
389
|
text: string;
|
|
390
|
+
title: string;
|
|
391
391
|
bodyMarkdown: string;
|
|
392
392
|
scenarios: {
|
|
393
393
|
title: string;
|
|
@@ -455,9 +455,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
455
455
|
}[] | undefined;
|
|
456
456
|
}>, "many">;
|
|
457
457
|
}, "strip", z.ZodTypeAny, {
|
|
458
|
-
title: string;
|
|
459
458
|
id: string;
|
|
460
459
|
text: string;
|
|
460
|
+
title: string;
|
|
461
461
|
bodyMarkdown: string;
|
|
462
462
|
scenarios: {
|
|
463
463
|
title: string;
|
|
@@ -470,9 +470,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
470
470
|
}[] | undefined;
|
|
471
471
|
}[];
|
|
472
472
|
}, {
|
|
473
|
-
title: string;
|
|
474
473
|
id: string;
|
|
475
474
|
text: string;
|
|
475
|
+
title: string;
|
|
476
476
|
bodyMarkdown: string;
|
|
477
477
|
scenarios: {
|
|
478
478
|
title: string;
|
|
@@ -501,9 +501,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
501
501
|
spec: string;
|
|
502
502
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
503
503
|
requirements?: {
|
|
504
|
-
title: string;
|
|
505
504
|
id: string;
|
|
506
505
|
text: string;
|
|
506
|
+
title: string;
|
|
507
507
|
bodyMarkdown: string;
|
|
508
508
|
scenarios: {
|
|
509
509
|
title: string;
|
|
@@ -517,9 +517,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
517
517
|
}[];
|
|
518
518
|
}[] | undefined;
|
|
519
519
|
requirement?: {
|
|
520
|
-
title: string;
|
|
521
520
|
id: string;
|
|
522
521
|
text: string;
|
|
522
|
+
title: string;
|
|
523
523
|
bodyMarkdown: string;
|
|
524
524
|
scenarios: {
|
|
525
525
|
title: string;
|
|
@@ -541,9 +541,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
541
541
|
spec: string;
|
|
542
542
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
543
543
|
requirements?: {
|
|
544
|
-
title: string;
|
|
545
544
|
id: string;
|
|
546
545
|
text: string;
|
|
546
|
+
title: string;
|
|
547
547
|
bodyMarkdown: string;
|
|
548
548
|
scenarios: {
|
|
549
549
|
title: string;
|
|
@@ -557,9 +557,9 @@ declare const DeltaSchema: z.ZodObject<{
|
|
|
557
557
|
}[];
|
|
558
558
|
}[] | undefined;
|
|
559
559
|
requirement?: {
|
|
560
|
-
title: string;
|
|
561
560
|
id: string;
|
|
562
561
|
text: string;
|
|
562
|
+
title: string;
|
|
563
563
|
bodyMarkdown: string;
|
|
564
564
|
scenarios: {
|
|
565
565
|
title: string;
|
|
@@ -700,9 +700,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
700
700
|
}[] | undefined;
|
|
701
701
|
}>, "many">;
|
|
702
702
|
}, "strip", z.ZodTypeAny, {
|
|
703
|
-
title: string;
|
|
704
703
|
id: string;
|
|
705
704
|
text: string;
|
|
705
|
+
title: string;
|
|
706
706
|
bodyMarkdown: string;
|
|
707
707
|
scenarios: {
|
|
708
708
|
title: string;
|
|
@@ -715,9 +715,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
715
715
|
}[] | undefined;
|
|
716
716
|
}[];
|
|
717
717
|
}, {
|
|
718
|
-
title: string;
|
|
719
718
|
id: string;
|
|
720
719
|
text: string;
|
|
720
|
+
title: string;
|
|
721
721
|
bodyMarkdown: string;
|
|
722
722
|
scenarios: {
|
|
723
723
|
title: string;
|
|
@@ -785,9 +785,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
785
785
|
}[] | undefined;
|
|
786
786
|
}>, "many">;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
title: string;
|
|
789
788
|
id: string;
|
|
790
789
|
text: string;
|
|
790
|
+
title: string;
|
|
791
791
|
bodyMarkdown: string;
|
|
792
792
|
scenarios: {
|
|
793
793
|
title: string;
|
|
@@ -800,9 +800,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
800
800
|
}[] | undefined;
|
|
801
801
|
}[];
|
|
802
802
|
}, {
|
|
803
|
-
title: string;
|
|
804
803
|
id: string;
|
|
805
804
|
text: string;
|
|
805
|
+
title: string;
|
|
806
806
|
bodyMarkdown: string;
|
|
807
807
|
scenarios: {
|
|
808
808
|
title: string;
|
|
@@ -831,9 +831,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
831
831
|
spec: string;
|
|
832
832
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
833
833
|
requirements?: {
|
|
834
|
-
title: string;
|
|
835
834
|
id: string;
|
|
836
835
|
text: string;
|
|
836
|
+
title: string;
|
|
837
837
|
bodyMarkdown: string;
|
|
838
838
|
scenarios: {
|
|
839
839
|
title: string;
|
|
@@ -847,9 +847,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
847
847
|
}[];
|
|
848
848
|
}[] | undefined;
|
|
849
849
|
requirement?: {
|
|
850
|
-
title: string;
|
|
851
850
|
id: string;
|
|
852
851
|
text: string;
|
|
852
|
+
title: string;
|
|
853
853
|
bodyMarkdown: string;
|
|
854
854
|
scenarios: {
|
|
855
855
|
title: string;
|
|
@@ -871,9 +871,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
871
871
|
spec: string;
|
|
872
872
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
873
873
|
requirements?: {
|
|
874
|
-
title: string;
|
|
875
874
|
id: string;
|
|
876
875
|
text: string;
|
|
876
|
+
title: string;
|
|
877
877
|
bodyMarkdown: string;
|
|
878
878
|
scenarios: {
|
|
879
879
|
title: string;
|
|
@@ -887,9 +887,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
887
887
|
}[];
|
|
888
888
|
}[] | undefined;
|
|
889
889
|
requirement?: {
|
|
890
|
-
title: string;
|
|
891
890
|
id: string;
|
|
892
891
|
text: string;
|
|
892
|
+
title: string;
|
|
893
893
|
bodyMarkdown: string;
|
|
894
894
|
scenarios: {
|
|
895
895
|
title: string;
|
|
@@ -979,9 +979,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
979
979
|
spec: string;
|
|
980
980
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
981
981
|
requirements?: {
|
|
982
|
-
title: string;
|
|
983
982
|
id: string;
|
|
984
983
|
text: string;
|
|
984
|
+
title: string;
|
|
985
985
|
bodyMarkdown: string;
|
|
986
986
|
scenarios: {
|
|
987
987
|
title: string;
|
|
@@ -995,9 +995,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
995
995
|
}[];
|
|
996
996
|
}[] | undefined;
|
|
997
997
|
requirement?: {
|
|
998
|
-
title: string;
|
|
999
998
|
id: string;
|
|
1000
999
|
text: string;
|
|
1000
|
+
title: string;
|
|
1001
1001
|
bodyMarkdown: string;
|
|
1002
1002
|
scenarios: {
|
|
1003
1003
|
title: string;
|
|
@@ -1044,9 +1044,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
1044
1044
|
spec: string;
|
|
1045
1045
|
operation: "ADDED" | "MODIFIED" | "REMOVED" | "RENAMED";
|
|
1046
1046
|
requirements?: {
|
|
1047
|
-
title: string;
|
|
1048
1047
|
id: string;
|
|
1049
1048
|
text: string;
|
|
1049
|
+
title: string;
|
|
1050
1050
|
bodyMarkdown: string;
|
|
1051
1051
|
scenarios: {
|
|
1052
1052
|
title: string;
|
|
@@ -1060,9 +1060,9 @@ declare const ChangeSchema: z.ZodObject<{
|
|
|
1060
1060
|
}[];
|
|
1061
1061
|
}[] | undefined;
|
|
1062
1062
|
requirement?: {
|
|
1063
|
-
title: string;
|
|
1064
1063
|
id: string;
|
|
1065
1064
|
text: string;
|
|
1065
|
+
title: string;
|
|
1066
1066
|
bodyMarkdown: string;
|
|
1067
1067
|
scenarios: {
|
|
1068
1068
|
title: string;
|
package/dist/sounds.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { C as SoundVolume, D as normalizeLegacySoundId, E as getBuiltinSoundUrl, O as soundIdFromCustomHash, S as SoundIdSchema, T as customHashFromSoundId, _ as DEFAULT_SOUND_VOLUME, 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, w as SoundVolumeSchema, x as SoundId, y as SILENT_SOUND_ID } from "./sounds-
|
|
1
|
+
import { C as SoundVolume, D as normalizeLegacySoundId, E as getBuiltinSoundUrl, O as soundIdFromCustomHash, S as SoundIdSchema, T as customHashFromSoundId, _ as DEFAULT_SOUND_VOLUME, 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, w as SoundVolumeSchema, x as SoundId, y as SILENT_SOUND_ID } from "./sounds-6KwglrL2.mjs";
|
|
2
2
|
export { BUILTIN_SOUND_IDS, BUILTIN_SOUND_OPTIONS, BuiltinSoundId, BuiltinSoundIdSchema, BuiltinSoundOption, CUSTOM_SOUND_ADD_VALUE, CustomSoundHash, CustomSoundHashSchema, CustomSoundId, CustomSoundIdSchema, CustomSoundMetadata, CustomSoundMetadataFile, CustomSoundMetadataFileSchema, CustomSoundMetadataSchema, DEFAULT_BELL_SOUND_ID, DEFAULT_NOTIFICATION_SOUND_ID, DEFAULT_SOUND_VOLUME, LEGACY_SOUND_ID_MAP, SILENT_SOUND_ID, SoundConfigIdSchema, SoundId, SoundIdSchema, SoundVolume, SoundVolumeSchema, customHashFromSoundId, getBuiltinSoundUrl, normalizeLegacySoundId, soundIdFromCustomHash };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "./sounds-
|
|
2
|
-
import { i as TerminalBellSoundSchema, n as TERMINAL_BELL_SOUND_VALUES, r as TerminalBellSound, t as TERMINAL_BELL_SOUND_OPTIONS } from "./terminal-audio-
|
|
1
|
+
import "./sounds-6KwglrL2.mjs";
|
|
2
|
+
import { i as TerminalBellSoundSchema, n as TERMINAL_BELL_SOUND_VALUES, r as TerminalBellSound, t as TERMINAL_BELL_SOUND_OPTIONS } from "./terminal-audio-DLOmaKqa.mjs";
|
|
3
3
|
export { TERMINAL_BELL_SOUND_OPTIONS, TERMINAL_BELL_SOUND_VALUES, TerminalBellSound, TerminalBellSoundSchema };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "./sounds-
|
|
2
|
-
import { A as TerminalNotificationProtocol, D as TerminalControlEvent, M as TerminalPromptState, N as TerminalTitleTarget, O as TerminalControlParseResult, P as terminalNotificationEventToPublishInput, j as TerminalProgressState, k as TerminalControlParser } from "./notifications-
|
|
1
|
+
import "./sounds-6KwglrL2.mjs";
|
|
2
|
+
import { A as TerminalNotificationProtocol, D as TerminalControlEvent, M as TerminalPromptState, N as TerminalTitleTarget, O as TerminalControlParseResult, P as terminalNotificationEventToPublishInput, j as TerminalProgressState, k as TerminalControlParser } from "./notifications-BDBbeTRk.mjs";
|
|
3
3
|
export { TerminalControlEvent, TerminalControlParseResult, TerminalControlParser, TerminalNotificationProtocol, TerminalProgressState, TerminalPromptState, TerminalTitleTarget, terminalNotificationEventToPublishInput };
|