dsh-github-copilot 0.4.0-alpha.24 → 0.4.0-alpha.26
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/AGENTS.md +11 -6
- package/CHANGELOG.md +15 -0
- package/README.md +22 -13
- package/README.zh.md +22 -13
- package/deployment-baseline.json +34 -9
- package/docs/dual-model.md +22 -0
- package/docs/official-first-016-alpha2.md +36 -0
- package/lib/client.js +82 -67
- package/lib/client.js.map +1 -1
- package/lib/index.js +32 -11
- package/lib/remote.js +22 -43
- package/lib/types/compatibility.d.ts +3 -3
- package/lib/types/dual-model-host.d.ts +3 -3
- package/lib/types/native-select-style.d.ts +4 -0
- package/lib/types/remote-codec.d.ts +10 -0
- package/package.json +19 -18
package/lib/index.js
CHANGED
|
@@ -109,12 +109,27 @@ const PolicyJson = z$1.object({
|
|
|
109
109
|
plannerTools: z$1.array(z$1.string())
|
|
110
110
|
}).strict();
|
|
111
111
|
const ChildJson = z$1.object({
|
|
112
|
-
version: z$1.literal(
|
|
112
|
+
version: z$1.literal(3),
|
|
113
113
|
mode: z$1.literal("continuable"),
|
|
114
114
|
provider: z$1.literal("spawn"),
|
|
115
115
|
agentProvider: z$1.string(),
|
|
116
116
|
agentModel: z$1.string()
|
|
117
|
-
});
|
|
117
|
+
}).strict();
|
|
118
|
+
const ChildWireJson = ChildJson.extend({
|
|
119
|
+
label: z$1.string(),
|
|
120
|
+
agentReasoningEffort: z$1.string().optional(),
|
|
121
|
+
persona: z$1.string().optional(),
|
|
122
|
+
toolFilter: z$1.object({
|
|
123
|
+
allow: z$1.array(z$1.string()).optional(),
|
|
124
|
+
deny: z$1.array(z$1.string()).optional()
|
|
125
|
+
}).strict().refine((value) => value.allow !== void 0 || value.deny !== void 0).optional()
|
|
126
|
+
}).strict().transform(({ version, mode, provider, agentProvider, agentModel }) => ({
|
|
127
|
+
version,
|
|
128
|
+
mode,
|
|
129
|
+
provider,
|
|
130
|
+
agentProvider,
|
|
131
|
+
agentModel
|
|
132
|
+
}));
|
|
118
133
|
const ProjectionJson = z$1.object({
|
|
119
134
|
id: z$1.string(),
|
|
120
135
|
parentId: z$1.string().nullable(),
|
|
@@ -127,7 +142,7 @@ const ProjectionJson = z$1.object({
|
|
|
127
142
|
/** A root policy is authoritative only in its own suffix, never in a fork seed. */
|
|
128
143
|
const dualModelProjection = {
|
|
129
144
|
key: DUAL_MODEL_PROJECTION,
|
|
130
|
-
stateVersion:
|
|
145
|
+
stateVersion: 2,
|
|
131
146
|
stateSchema: ProjectionJson,
|
|
132
147
|
init: (header, inherited = 0) => ({
|
|
133
148
|
id: header.id,
|
|
@@ -152,10 +167,15 @@ const dualModelProjection = {
|
|
|
152
167
|
};
|
|
153
168
|
}
|
|
154
169
|
if (event.type === "subagent/descriptor" && state.origin === "subagent") {
|
|
155
|
-
const parsed =
|
|
170
|
+
const parsed = ChildWireJson.safeParse(event.data);
|
|
171
|
+
if (state.child !== null || !parsed.success) return {
|
|
172
|
+
...state,
|
|
173
|
+
child: null,
|
|
174
|
+
invalid: true
|
|
175
|
+
};
|
|
156
176
|
return {
|
|
157
177
|
...state,
|
|
158
|
-
child: parsed.
|
|
178
|
+
child: parsed.data
|
|
159
179
|
};
|
|
160
180
|
}
|
|
161
181
|
return state;
|
|
@@ -705,7 +725,7 @@ let GitHubCopilotDualModel = (() => {
|
|
|
705
725
|
if (dedicatedAddress(agent)) fail$1("DUAL_MODEL_UNSUPPORTED");
|
|
706
726
|
return;
|
|
707
727
|
}
|
|
708
|
-
if (state.invalid) fail$1("DUAL_MODEL_POLICY_INVALID");
|
|
728
|
+
if (state.invalid && (dedicatedAddress(agent) || state.policy !== null)) fail$1("DUAL_MODEL_POLICY_INVALID");
|
|
709
729
|
if (state.policy) {
|
|
710
730
|
this.install(agent, state.policy, "planner");
|
|
711
731
|
return;
|
|
@@ -725,7 +745,7 @@ let GitHubCopilotDualModel = (() => {
|
|
|
725
745
|
if (dedicatedAddress(agent)) fail$1("DUAL_MODEL_POLICY_INVALID");
|
|
726
746
|
return;
|
|
727
747
|
}
|
|
728
|
-
if (!state.child || state.child.agentProvider !== "github-copilot-preview" || state.child.agentModel !== parentPolicy.executorModel) fail$1("DUAL_MODEL_POLICY_INVALID");
|
|
748
|
+
if (state.invalid || !state.child || state.child.agentProvider !== "github-copilot-preview" || state.child.agentModel !== parentPolicy.executorModel) fail$1("DUAL_MODEL_POLICY_INVALID");
|
|
729
749
|
this.install(agent, parentPolicy, "executor");
|
|
730
750
|
}
|
|
731
751
|
install(agent, policy, role) {
|
|
@@ -941,7 +961,7 @@ let SearchRoutingController = (() => {
|
|
|
941
961
|
//#endregion
|
|
942
962
|
//#region package.json
|
|
943
963
|
var name$1 = "dsh-github-copilot";
|
|
944
|
-
var version = "0.4.0-alpha.
|
|
964
|
+
var version = "0.4.0-alpha.26";
|
|
945
965
|
//#endregion
|
|
946
966
|
//#region lib/types/probe.js
|
|
947
967
|
/**
|
|
@@ -2947,9 +2967,9 @@ async function createDeepSeekSearchFallback(ctx, owner, canContinue) {
|
|
|
2947
2967
|
* @module dsh-github-copilot/compatibility
|
|
2948
2968
|
*/
|
|
2949
2969
|
const DSH_COMPATIBILITY = {
|
|
2950
|
-
release: "0.1.6-alpha.
|
|
2970
|
+
release: "0.1.6-alpha.2",
|
|
2951
2971
|
developmentRelease: "0.1.2-rc.1",
|
|
2952
|
-
peerRange: "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
2972
|
+
peerRange: "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
2953
2973
|
supportedReleases: [
|
|
2954
2974
|
"0.1.1-rc.2",
|
|
2955
2975
|
"0.1.2-rc.1",
|
|
@@ -2958,7 +2978,8 @@ const DSH_COMPATIBILITY = {
|
|
|
2958
2978
|
"0.1.5-alpha.2",
|
|
2959
2979
|
"0.1.5-rc.1",
|
|
2960
2980
|
"0.1.5-rc.2",
|
|
2961
|
-
"0.1.6-alpha.1"
|
|
2981
|
+
"0.1.6-alpha.1",
|
|
2982
|
+
"0.1.6-alpha.2"
|
|
2962
2983
|
],
|
|
2963
2984
|
requiredApis: [
|
|
2964
2985
|
"agentDefaultModel.currentSelection",
|
package/lib/remote.js
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
//#region lib/types/remote-codec.js
|
|
3
|
+
/** Client-safe bridge between legacy schema codecs and alpha.2 create factories. */
|
|
4
|
+
function strictRemoteCodec(typeSymbol, schema) {
|
|
5
|
+
return {
|
|
6
|
+
mode: "strict",
|
|
7
|
+
typeSymbol,
|
|
8
|
+
schema,
|
|
9
|
+
create: () => schema
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
2
13
|
//#region lib/types/dual-model-remote.js
|
|
3
14
|
const id = z.string().min(1).max(512);
|
|
4
15
|
const revision = z.number().int().nonnegative().max(Number.MAX_SAFE_INTEGER);
|
|
@@ -42,11 +53,7 @@ const contribution$2 = {
|
|
|
42
53
|
method: "view",
|
|
43
54
|
invocation: { kind: "direct" },
|
|
44
55
|
parameters: [],
|
|
45
|
-
result:
|
|
46
|
-
mode: "strict",
|
|
47
|
-
typeSymbol: "dsh-github-copilot#DualModelView",
|
|
48
|
-
schema: DualModelViewSchema
|
|
49
|
-
}
|
|
56
|
+
result: strictRemoteCodec("dsh-github-copilot#DualModelView", DualModelViewSchema)
|
|
50
57
|
},
|
|
51
58
|
{
|
|
52
59
|
id: "dsh-github-copilot:githubCopilotDualModel.save",
|
|
@@ -58,17 +65,9 @@ const contribution$2 = {
|
|
|
58
65
|
name: "input",
|
|
59
66
|
wire: "input",
|
|
60
67
|
source: "json",
|
|
61
|
-
codec:
|
|
62
|
-
mode: "strict",
|
|
63
|
-
typeSymbol: "dsh-github-copilot#DualModelSaveRequest",
|
|
64
|
-
schema: DualModelSaveSchema
|
|
65
|
-
}
|
|
68
|
+
codec: strictRemoteCodec("dsh-github-copilot#DualModelSaveRequest", DualModelSaveSchema)
|
|
66
69
|
}],
|
|
67
|
-
result:
|
|
68
|
-
mode: "strict",
|
|
69
|
-
typeSymbol: "dsh-github-copilot#DualModelView",
|
|
70
|
-
schema: DualModelViewSchema
|
|
71
|
-
}
|
|
70
|
+
result: strictRemoteCodec("dsh-github-copilot#DualModelView", DualModelViewSchema)
|
|
72
71
|
},
|
|
73
72
|
{
|
|
74
73
|
id: "dsh-github-copilot:githubCopilotDualModel.create",
|
|
@@ -80,17 +79,9 @@ const contribution$2 = {
|
|
|
80
79
|
name: "input",
|
|
81
80
|
wire: "input",
|
|
82
81
|
source: "json",
|
|
83
|
-
codec:
|
|
84
|
-
mode: "strict",
|
|
85
|
-
typeSymbol: "dsh-github-copilot#DualModelCreateRequest",
|
|
86
|
-
schema: DualModelCreateSchema
|
|
87
|
-
}
|
|
82
|
+
codec: strictRemoteCodec("dsh-github-copilot#DualModelCreateRequest", DualModelCreateSchema)
|
|
88
83
|
}],
|
|
89
|
-
result:
|
|
90
|
-
mode: "strict",
|
|
91
|
-
typeSymbol: "dsh-github-copilot#DualModelCreateResult",
|
|
92
|
-
schema: DualModelCreateResultSchema
|
|
93
|
-
}
|
|
84
|
+
result: strictRemoteCodec("dsh-github-copilot#DualModelCreateResult", DualModelCreateResultSchema)
|
|
94
85
|
}
|
|
95
86
|
]
|
|
96
87
|
};
|
|
@@ -103,14 +94,10 @@ const contribution$1 = {
|
|
|
103
94
|
method: "providers",
|
|
104
95
|
invocation: { kind: "direct" },
|
|
105
96
|
parameters: [],
|
|
106
|
-
result: {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
supported: z.boolean(),
|
|
111
|
-
providers: z.array(z.object({ id: z.string().min(1).max(512) }).strict()).max(512)
|
|
112
|
-
}).strict()
|
|
113
|
-
}
|
|
97
|
+
result: strictRemoteCodec("dsh-github-copilot#SearchProviderCatalog", z.object({
|
|
98
|
+
supported: z.boolean(),
|
|
99
|
+
providers: z.array(z.object({ id: z.string().min(1).max(512) }).strict()).max(512)
|
|
100
|
+
}).strict())
|
|
114
101
|
}]
|
|
115
102
|
};
|
|
116
103
|
//#endregion
|
|
@@ -190,11 +177,7 @@ const GitHubCopilotAuthorizationViewSchema = z.object({
|
|
|
190
177
|
}).strict().optional(),
|
|
191
178
|
error: z.string().optional()
|
|
192
179
|
}).strict();
|
|
193
|
-
const result =
|
|
194
|
-
mode: "strict",
|
|
195
|
-
typeSymbol: GITHUB_COPILOT_AUTHORIZATION_VIEW_TYPE_SYMBOL,
|
|
196
|
-
schema: GitHubCopilotAuthorizationViewSchema
|
|
197
|
-
};
|
|
180
|
+
const result = strictRemoteCodec(GITHUB_COPILOT_AUTHORIZATION_VIEW_TYPE_SYMBOL, GitHubCopilotAuthorizationViewSchema);
|
|
198
181
|
const GITHUB_COPILOT_MIGRATION_STATUS_TYPE_SYMBOL = "dsh-github-copilot#GitHubCopilotMigrationStatus";
|
|
199
182
|
const selectionSchema = z.object({
|
|
200
183
|
provider: z.string().min(1).max(512),
|
|
@@ -268,11 +251,7 @@ const contribution = {
|
|
|
268
251
|
method: "migrationStatus",
|
|
269
252
|
invocation: direct,
|
|
270
253
|
parameters: [],
|
|
271
|
-
result:
|
|
272
|
-
mode: "strict",
|
|
273
|
-
typeSymbol: GITHUB_COPILOT_MIGRATION_STATUS_TYPE_SYMBOL,
|
|
274
|
-
schema: GitHubCopilotMigrationStatusSchema
|
|
275
|
-
}
|
|
254
|
+
result: strictRemoteCodec(GITHUB_COPILOT_MIGRATION_STATUS_TYPE_SYMBOL, GitHubCopilotMigrationStatusSchema)
|
|
276
255
|
},
|
|
277
256
|
...contribution$2.descriptors,
|
|
278
257
|
...contribution$1.descriptors
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { Context } from '@deepseek-ai/cordis';
|
|
8
8
|
export declare const DSH_COMPATIBILITY: {
|
|
9
|
-
readonly release: "0.1.6-alpha.
|
|
9
|
+
readonly release: "0.1.6-alpha.2";
|
|
10
10
|
readonly developmentRelease: "0.1.2-rc.1";
|
|
11
|
-
readonly peerRange: "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1";
|
|
12
|
-
readonly supportedReleases: readonly ["0.1.1-rc.2", "0.1.2-rc.1", "0.1.3-alpha.1", "0.1.5-alpha.1", "0.1.5-alpha.2", "0.1.5-rc.1", "0.1.5-rc.2", "0.1.6-alpha.1"];
|
|
11
|
+
readonly peerRange: "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2";
|
|
12
|
+
readonly supportedReleases: readonly ["0.1.1-rc.2", "0.1.2-rc.1", "0.1.3-alpha.1", "0.1.5-alpha.1", "0.1.5-alpha.2", "0.1.5-rc.1", "0.1.5-rc.2", "0.1.6-alpha.1", "0.1.6-alpha.2"];
|
|
13
13
|
readonly requiredApis: readonly ["agentDefaultModel.currentSelection", "authorization.describe", "authorization.begin", "authorization.cancel", "credentials.describeRecord", "credentials.readRecord", "credentials.listRecords", "credentials.modifyRecord", "credentials.deleteRecord", "settings.get", "settings.describe", "settings.mutate", "settings.installSection", "web.registerSearchProvider", "systemPrompt.section", "context.on", "context.effect", "context.plugin"];
|
|
14
14
|
};
|
|
15
15
|
/** Assert every required Core service shape before registering any effects. */
|
|
@@ -35,7 +35,7 @@ interface Header {
|
|
|
35
35
|
readonly agentPreset?: string;
|
|
36
36
|
}
|
|
37
37
|
interface ChildDescriptor {
|
|
38
|
-
readonly version:
|
|
38
|
+
readonly version: 3;
|
|
39
39
|
readonly mode: 'continuable';
|
|
40
40
|
readonly provider: 'spawn';
|
|
41
41
|
readonly agentProvider: string;
|
|
@@ -74,12 +74,12 @@ export declare const dualModelProjection: {
|
|
|
74
74
|
plannerTools: json.ZodArray<json.ZodString>;
|
|
75
75
|
}, json.core.$strict>>;
|
|
76
76
|
child: json.ZodNullable<json.ZodObject<{
|
|
77
|
-
version: json.ZodLiteral<
|
|
77
|
+
version: json.ZodLiteral<3>;
|
|
78
78
|
mode: json.ZodLiteral<"continuable">;
|
|
79
79
|
provider: json.ZodLiteral<"spawn">;
|
|
80
80
|
agentProvider: json.ZodString;
|
|
81
81
|
agentModel: json.ZodString;
|
|
82
|
-
}, json.core.$
|
|
82
|
+
}, json.core.$strict>>;
|
|
83
83
|
invalid: json.ZodBoolean;
|
|
84
84
|
}, json.core.$strip>;
|
|
85
85
|
init: (header: Header, inherited?: number) => Projection;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/** Client-safe bridge between legacy schema codecs and alpha.2 create factories. */
|
|
2
|
+
export declare function strictRemoteCodec<Schema extends {
|
|
3
|
+
parse(value: unknown): unknown;
|
|
4
|
+
}>(typeSymbol: string, schema: Schema): {
|
|
5
|
+
mode: "strict";
|
|
6
|
+
typeSymbol: string;
|
|
7
|
+
schema: Schema;
|
|
8
|
+
create: () => Schema;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=remote-codec.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-github-copilot",
|
|
3
3
|
"description": "DSH companion for GitHub Copilot sign-in, account-aware model profiles, tool compatibility, and provider-hosted search.",
|
|
4
|
-
"version": "0.4.0-alpha.
|
|
4
|
+
"version": "0.4.0-alpha.26",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"docs/session-search-routing.md",
|
|
55
55
|
"docs/npm-distribution.md",
|
|
56
56
|
"docs/dual-model.md",
|
|
57
|
+
"docs/official-first-016-alpha2.md",
|
|
57
58
|
"docs/images/dual-model-provenance.json",
|
|
58
59
|
"scripts/check-search-composition.mjs",
|
|
59
60
|
"docs/images/"
|
|
@@ -74,26 +75,26 @@
|
|
|
74
75
|
"license": "MIT",
|
|
75
76
|
"engines": {
|
|
76
77
|
"node": ">=22.19.0",
|
|
77
|
-
"dsh": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1"
|
|
78
|
+
"dsh": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2"
|
|
78
79
|
},
|
|
79
80
|
"peerDependencies": {
|
|
80
81
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
81
|
-
"@deepseek-ai/dsh-agent": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
82
|
-
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
83
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
84
|
-
"@deepseek-ai/dsh-authorization": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
85
|
-
"@deepseek-ai/dsh-client-ui-renderer": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
86
|
-
"@deepseek-ai/dsh-client-ui-settings-models": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
87
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
88
|
-
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
89
|
-
"@deepseek-ai/dsh-launch-environment": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
90
|
-
"@deepseek-ai/dsh-llm": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
91
|
-
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
92
|
-
"@deepseek-ai/dsh-scope": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
93
|
-
"@deepseek-ai/dsh-settings": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
94
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
95
|
-
"@deepseek-ai/dsh-web": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
96
|
-
"@deepseek-ai/dsh-web-search-deepseek": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1",
|
|
82
|
+
"@deepseek-ai/dsh-agent": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
83
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
84
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
85
|
+
"@deepseek-ai/dsh-authorization": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
86
|
+
"@deepseek-ai/dsh-client-ui-renderer": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
87
|
+
"@deepseek-ai/dsh-client-ui-settings-models": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
88
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
89
|
+
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
90
|
+
"@deepseek-ai/dsh-launch-environment": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
91
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
92
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
93
|
+
"@deepseek-ai/dsh-scope": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
94
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
95
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
96
|
+
"@deepseek-ai/dsh-web": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
97
|
+
"@deepseek-ai/dsh-web-search-deepseek": "0.1.1-rc.2 || 0.1.2-rc.1 || 0.1.3-alpha.1 || 0.1.5-alpha.1 || 0.1.5-alpha.2 || 0.1.5-rc.1 || 0.1.5-rc.2 || 0.1.6-alpha.1 || 0.1.6-alpha.2",
|
|
97
98
|
"@deepseek-ai/schemastery": "^3.18.2"
|
|
98
99
|
},
|
|
99
100
|
"peerDependenciesMeta": {
|