@deepseek-ai/dsh-api-remotes 0.1.0-rc.7 → 0.1.1-rc.1
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/lib/client.js +166 -27
- package/lib/index.js +1 -1
- package/lib/types/client/index.d.ts +4 -0
- package/lib/types/client/index.js +4 -1
- package/lib/types/remote-events.d.ts +1 -1
- package/lib/types/remote-events.js +1 -1
- package/package.json +37 -33
package/lib/client.js
CHANGED
|
@@ -4276,6 +4276,16 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4276
4276
|
//#region ../../interaction/commands/lib/typert.remote-client.js
|
|
4277
4277
|
const _deepseek_ai_dsh_commands_commands_execute_parameter_0$schema = intersection(string(), unknown());
|
|
4278
4278
|
const _deepseek_ai_dsh_commands_commands_execute_parameter_1$schema = string();
|
|
4279
|
+
const _deepseek_ai_dsh_commands_commands_execute_parameter_2$schema = array(object({
|
|
4280
|
+
"mediaType": union([
|
|
4281
|
+
literal("image/png"),
|
|
4282
|
+
literal("image/jpeg"),
|
|
4283
|
+
literal("image/webp"),
|
|
4284
|
+
literal("image/gif")
|
|
4285
|
+
]),
|
|
4286
|
+
"data": string(),
|
|
4287
|
+
"name": string().optional()
|
|
4288
|
+
}));
|
|
4279
4289
|
const _deepseek_ai_dsh_commands_commands_execute_result$schema = union([_undefined(), object({
|
|
4280
4290
|
"commandId": intersection(string(), unknown()).readonly(),
|
|
4281
4291
|
"result": union([object({
|
|
@@ -4291,9 +4301,12 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4291
4301
|
const _deepseek_ai_dsh_commands_commands_list_result$schema = array(object({
|
|
4292
4302
|
"name": string().readonly(),
|
|
4293
4303
|
"description": string().readonly(),
|
|
4294
|
-
"input": object({
|
|
4304
|
+
"input": object({
|
|
4305
|
+
"hint": string().readonly(),
|
|
4306
|
+
"images": boolean().readonly().optional()
|
|
4307
|
+
}).readonly().optional()
|
|
4295
4308
|
}));
|
|
4296
|
-
const TYPERT_REMOTE$
|
|
4309
|
+
const TYPERT_REMOTE$6 = {
|
|
4297
4310
|
package: "@deepseek-ai/dsh-commands",
|
|
4298
4311
|
descriptors: [{
|
|
4299
4312
|
id: "@deepseek-ai/dsh-commands#commands/execute",
|
|
@@ -4305,26 +4318,39 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4305
4318
|
context: "agent",
|
|
4306
4319
|
wire: "agentId"
|
|
4307
4320
|
},
|
|
4308
|
-
parameters: [
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4321
|
+
parameters: [
|
|
4322
|
+
{
|
|
4323
|
+
name: "agent",
|
|
4324
|
+
wire: "agentId",
|
|
4325
|
+
source: "lookup",
|
|
4326
|
+
lookup: "agent",
|
|
4327
|
+
codec: {
|
|
4328
|
+
mode: "strict",
|
|
4329
|
+
typeSymbol: "@deepseek-ai/dsh-session/types#SessionId",
|
|
4330
|
+
schema: _deepseek_ai_dsh_commands_commands_execute_parameter_0$schema
|
|
4331
|
+
}
|
|
4332
|
+
},
|
|
4333
|
+
{
|
|
4334
|
+
name: "line",
|
|
4335
|
+
wire: "line",
|
|
4336
|
+
source: "json",
|
|
4337
|
+
codec: {
|
|
4338
|
+
mode: "strict",
|
|
4339
|
+
typeSymbol: "@deepseek-ai/dsh-commands#commands/execute:line",
|
|
4340
|
+
schema: _deepseek_ai_dsh_commands_commands_execute_parameter_1$schema
|
|
4341
|
+
}
|
|
4342
|
+
},
|
|
4343
|
+
{
|
|
4344
|
+
name: "images",
|
|
4345
|
+
wire: "images",
|
|
4346
|
+
source: "json",
|
|
4347
|
+
codec: {
|
|
4348
|
+
mode: "strict",
|
|
4349
|
+
typeSymbol: "@deepseek-ai/dsh-commands#commands/execute:images",
|
|
4350
|
+
schema: _deepseek_ai_dsh_commands_commands_execute_parameter_2$schema
|
|
4351
|
+
}
|
|
4326
4352
|
}
|
|
4327
|
-
|
|
4353
|
+
],
|
|
4328
4354
|
cancellation: { parameter: "signal" },
|
|
4329
4355
|
result: {
|
|
4330
4356
|
mode: "strict",
|
|
@@ -4333,7 +4359,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4333
4359
|
},
|
|
4334
4360
|
sourceLocation: {
|
|
4335
4361
|
"file": "packages/interaction/commands/src/index.ts",
|
|
4336
|
-
"line":
|
|
4362
|
+
"line": 329,
|
|
4337
4363
|
"column": 9
|
|
4338
4364
|
}
|
|
4339
4365
|
}, {
|
|
@@ -4364,7 +4390,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4364
4390
|
},
|
|
4365
4391
|
sourceLocation: {
|
|
4366
4392
|
"file": "packages/interaction/commands/src/index.ts",
|
|
4367
|
-
"line":
|
|
4393
|
+
"line": 285,
|
|
4368
4394
|
"column": 3
|
|
4369
4395
|
}
|
|
4370
4396
|
}]
|
|
@@ -4493,7 +4519,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4493
4519
|
"id": intersection(string(), unknown()).readonly(),
|
|
4494
4520
|
"revision": number().readonly()
|
|
4495
4521
|
});
|
|
4496
|
-
const TYPERT_REMOTE$
|
|
4522
|
+
const TYPERT_REMOTE$5 = {
|
|
4497
4523
|
package: "@deepseek-ai/dsh-goal",
|
|
4498
4524
|
descriptors: [
|
|
4499
4525
|
{
|
|
@@ -5086,7 +5112,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5086
5112
|
"reason": literal("plugin-missing"),
|
|
5087
5113
|
"message": string()
|
|
5088
5114
|
})]);
|
|
5089
|
-
const TYPERT_REMOTE$
|
|
5115
|
+
const TYPERT_REMOTE$4 = {
|
|
5090
5116
|
package: "@deepseek-ai/dsh-cordis-host-runner",
|
|
5091
5117
|
descriptors: [
|
|
5092
5118
|
{
|
|
@@ -5687,7 +5713,61 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5687
5713
|
}
|
|
5688
5714
|
]
|
|
5689
5715
|
};
|
|
5690
|
-
|
|
5716
|
+
//#endregion
|
|
5717
|
+
//#region ../../context/file-reference/lib/typert.remote-client.js
|
|
5718
|
+
const _deepseek_ai_dsh_file_reference_fileReferences_list_parameter_0$schema = intersection(string(), unknown());
|
|
5719
|
+
const _deepseek_ai_dsh_file_reference_fileReferences_list_parameter_1$schema = string();
|
|
5720
|
+
const _deepseek_ai_dsh_file_reference_fileReferences_list_result$schema = array(object({
|
|
5721
|
+
"path": string(),
|
|
5722
|
+
"kind": union([literal("file"), literal("directory")])
|
|
5723
|
+
}));
|
|
5724
|
+
const TYPERT_REMOTE$3 = {
|
|
5725
|
+
package: "@deepseek-ai/dsh-file-reference",
|
|
5726
|
+
descriptors: [{
|
|
5727
|
+
id: "@deepseek-ai/dsh-file-reference#fileReferences/list",
|
|
5728
|
+
service: "fileReferences",
|
|
5729
|
+
namespace: "fileReferences",
|
|
5730
|
+
method: "list",
|
|
5731
|
+
implementation: "remoteExportList",
|
|
5732
|
+
invocation: { kind: "direct" },
|
|
5733
|
+
scope: {
|
|
5734
|
+
context: "agent",
|
|
5735
|
+
wire: "agentId"
|
|
5736
|
+
},
|
|
5737
|
+
parameters: [{
|
|
5738
|
+
name: "agent",
|
|
5739
|
+
wire: "agentId",
|
|
5740
|
+
source: "lookup",
|
|
5741
|
+
lookup: "agent",
|
|
5742
|
+
codec: {
|
|
5743
|
+
mode: "strict",
|
|
5744
|
+
typeSymbol: "@deepseek-ai/dsh-session/types#SessionId",
|
|
5745
|
+
schema: _deepseek_ai_dsh_file_reference_fileReferences_list_parameter_0$schema
|
|
5746
|
+
}
|
|
5747
|
+
}, {
|
|
5748
|
+
name: "query",
|
|
5749
|
+
wire: "query",
|
|
5750
|
+
source: "json",
|
|
5751
|
+
codec: {
|
|
5752
|
+
mode: "strict",
|
|
5753
|
+
typeSymbol: "@deepseek-ai/dsh-file-reference#fileReferences/list:query",
|
|
5754
|
+
schema: _deepseek_ai_dsh_file_reference_fileReferences_list_parameter_1$schema
|
|
5755
|
+
}
|
|
5756
|
+
}],
|
|
5757
|
+
cancellation: { parameter: "signal" },
|
|
5758
|
+
result: {
|
|
5759
|
+
mode: "strict",
|
|
5760
|
+
typeSymbol: "@deepseek-ai/dsh-file-reference#fileReferences/list:result",
|
|
5761
|
+
schema: _deepseek_ai_dsh_file_reference_fileReferences_list_result$schema
|
|
5762
|
+
},
|
|
5763
|
+
sourceLocation: {
|
|
5764
|
+
"file": "packages/context/file-reference/src/index.ts",
|
|
5765
|
+
"line": 54,
|
|
5766
|
+
"column": 3
|
|
5767
|
+
}
|
|
5768
|
+
}]
|
|
5769
|
+
};
|
|
5770
|
+
const TYPERT_REMOTE$2 = {
|
|
5691
5771
|
package: "@deepseek-ai/dsh-host-plugin-inventory",
|
|
5692
5772
|
descriptors: [{
|
|
5693
5773
|
id: "@deepseek-ai/dsh-host-plugin-inventory#pluginInventory/list",
|
|
@@ -5813,7 +5893,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5813
5893
|
})
|
|
5814
5894
|
]).readonly()
|
|
5815
5895
|
})]);
|
|
5816
|
-
const TYPERT_REMOTE = {
|
|
5896
|
+
const TYPERT_REMOTE$1 = {
|
|
5817
5897
|
package: "@deepseek-ai/dsh-message-feedback",
|
|
5818
5898
|
descriptors: [
|
|
5819
5899
|
{
|
|
@@ -5900,6 +5980,63 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5900
5980
|
]
|
|
5901
5981
|
};
|
|
5902
5982
|
//#endregion
|
|
5983
|
+
//#region ../../context/session-reference/lib/typert.remote-client.js
|
|
5984
|
+
const _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_parameter_0$schema = intersection(string(), unknown());
|
|
5985
|
+
const _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_parameter_1$schema = string();
|
|
5986
|
+
const _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_result$schema = array(object({
|
|
5987
|
+
"mention": string(),
|
|
5988
|
+
"sessionId": intersection(string(), unknown()),
|
|
5989
|
+
"label": string(),
|
|
5990
|
+
"cwd": string().optional(),
|
|
5991
|
+
"createdAt": number()
|
|
5992
|
+
}));
|
|
5993
|
+
const TYPERT_REMOTE = {
|
|
5994
|
+
package: "@deepseek-ai/dsh-session-reference",
|
|
5995
|
+
descriptors: [{
|
|
5996
|
+
id: "@deepseek-ai/dsh-session-reference#sessionReferenceResolver/candidates",
|
|
5997
|
+
service: "sessionReferenceResolver",
|
|
5998
|
+
namespace: "sessionReferenceResolver",
|
|
5999
|
+
method: "candidates",
|
|
6000
|
+
implementation: "remoteExportCandidates",
|
|
6001
|
+
invocation: { kind: "direct" },
|
|
6002
|
+
scope: {
|
|
6003
|
+
context: "agent",
|
|
6004
|
+
wire: "agentId"
|
|
6005
|
+
},
|
|
6006
|
+
parameters: [{
|
|
6007
|
+
name: "agent",
|
|
6008
|
+
wire: "agentId",
|
|
6009
|
+
source: "lookup",
|
|
6010
|
+
lookup: "agent",
|
|
6011
|
+
codec: {
|
|
6012
|
+
mode: "strict",
|
|
6013
|
+
typeSymbol: "@deepseek-ai/dsh-session/types#SessionId",
|
|
6014
|
+
schema: _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_parameter_0$schema
|
|
6015
|
+
}
|
|
6016
|
+
}, {
|
|
6017
|
+
name: "query",
|
|
6018
|
+
wire: "query",
|
|
6019
|
+
source: "json",
|
|
6020
|
+
codec: {
|
|
6021
|
+
mode: "strict",
|
|
6022
|
+
typeSymbol: "@deepseek-ai/dsh-session-reference#sessionReferenceResolver/candidates:query",
|
|
6023
|
+
schema: _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_parameter_1$schema
|
|
6024
|
+
}
|
|
6025
|
+
}],
|
|
6026
|
+
cancellation: { parameter: "signal" },
|
|
6027
|
+
result: {
|
|
6028
|
+
mode: "strict",
|
|
6029
|
+
typeSymbol: "@deepseek-ai/dsh-session-reference#sessionReferenceResolver/candidates:result",
|
|
6030
|
+
schema: _deepseek_ai_dsh_session_reference_sessionReferenceResolver_candidates_result$schema
|
|
6031
|
+
},
|
|
6032
|
+
sourceLocation: {
|
|
6033
|
+
"file": "packages/context/session-reference/src/index.ts",
|
|
6034
|
+
"line": 218,
|
|
6035
|
+
"column": 9
|
|
6036
|
+
}
|
|
6037
|
+
}]
|
|
6038
|
+
};
|
|
6039
|
+
//#endregion
|
|
5903
6040
|
//#region lib/types/client/index.js
|
|
5904
6041
|
/** Platform-neutral assembly of generated Host Remote contributions. */
|
|
5905
6042
|
/** Required service: the typed Client Remote contribution mount. */
|
|
@@ -5913,6 +6050,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5913
6050
|
const disposers = [];
|
|
5914
6051
|
try {
|
|
5915
6052
|
for (const contribution of [
|
|
6053
|
+
TYPERT_REMOTE$6,
|
|
6054
|
+
TYPERT_REMOTE$5,
|
|
5916
6055
|
TYPERT_REMOTE$4,
|
|
5917
6056
|
TYPERT_REMOTE$3,
|
|
5918
6057
|
TYPERT_REMOTE$2,
|
package/lib/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import { TypertLookupFailure } from "@deepseek-ai/dsh-typert-protocol";
|
|
|
18
18
|
const API_REMOTE_FORWARDED_EVENTS = [
|
|
19
19
|
"agent-preset/selected",
|
|
20
20
|
"commands/change",
|
|
21
|
-
"credentials/updated",
|
|
21
|
+
"credentials/reference-updated",
|
|
22
22
|
"cordis/request-run",
|
|
23
23
|
"cordis/request-run-resolved",
|
|
24
24
|
"cordis/dynamic-package",
|
|
@@ -4,9 +4,11 @@ import type { TypertClientRemote } from '@deepseek-ai/dsh-typert-protocol';
|
|
|
4
4
|
export type { TypertClientRemote as ClientRemote } from '@deepseek-ai/dsh-typert-protocol';
|
|
5
5
|
export type { PluginInventorySnapshot } from '@deepseek-ai/dsh-host-plugin-inventory/types';
|
|
6
6
|
export type {} from '@deepseek-ai/dsh-commands/remote';
|
|
7
|
+
export type {} from '@deepseek-ai/dsh-file-reference/remote';
|
|
7
8
|
export type {} from '@deepseek-ai/dsh-goal/remote';
|
|
8
9
|
export type {} from '@deepseek-ai/dsh-host-plugin-inventory/remote';
|
|
9
10
|
export type {} from '@deepseek-ai/dsh-message-feedback/remote';
|
|
11
|
+
export type {} from '@deepseek-ai/dsh-session-reference/remote';
|
|
10
12
|
export type { ApiRemoteForwardedEvent } from '../types.ts';
|
|
11
13
|
export type {} from '@deepseek-ai/dsh-commands/types';
|
|
12
14
|
export type {} from '@deepseek-ai/dsh-cordis-host-runner/types';
|
|
@@ -24,6 +26,8 @@ export type {} from '@deepseek-ai/dsh-api-gateway/client';
|
|
|
24
26
|
export type {} from '@deepseek-ai/dsh-cordis-host-runner/remote';
|
|
25
27
|
export type { ApprovalRequestId, CordisHalfState, CordisDynamicPackageId, CordisDynamicPluginId, CordisDynamicPluginRunId, CordisDynamicRunMode, CordisInspectMethodManifest, CordisInspectPlatform, CordisInspectProviderManifest, CordisInspectProviderView, CordisInspectQueryRequest, CordisInspectQueryResolution, CordisInspectQueryResolved, CordisInspectRequestId, CordisInspectResolveAck, CordisRunDiagnostic, CordisRunStatus, DynamicCordisClientSource, DynamicCordisHostHalfResult, DynamicCordisInventoryRow, DynamicCordisInvokeResult, DynamicCordisPackage, DynamicCordisRequestResolved, DynamicCordisResolveAck, DynamicCordisRetracted, DynamicCordisRunRequest, DynamicCordisRunResolution, DynamicCordisRunAttempt, DynamicCordisRunResponse, DynamicCordisStopResponse, DynamicCordisUndefineReceipt, RequestRunOutcome, } from '@deepseek-ai/dsh-cordis-host-runner/types';
|
|
26
28
|
export type { JsonValue } from '@deepseek-ai/dsh-session/types';
|
|
29
|
+
export type { FileReferenceCandidate } from '@deepseek-ai/dsh-file-reference/types';
|
|
30
|
+
export type { SessionReferenceMentionCandidate } from '@deepseek-ai/dsh-session-reference/types';
|
|
27
31
|
declare module '@deepseek-ai/cordis' {
|
|
28
32
|
interface Context {
|
|
29
33
|
/** Generated Remote namespaces selected by this Client assembly. */
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
import commandsRemote from '@deepseek-ai/dsh-commands/remote';
|
|
3
3
|
import goalsRemote from '@deepseek-ai/dsh-goal/remote';
|
|
4
4
|
import dynamicRemote from '@deepseek-ai/dsh-cordis-host-runner/remote';
|
|
5
|
+
import fileReferencesRemote from '@deepseek-ai/dsh-file-reference/remote';
|
|
5
6
|
import pluginInventoryRemote from '@deepseek-ai/dsh-host-plugin-inventory/remote';
|
|
6
7
|
import messageFeedbackRemote from '@deepseek-ai/dsh-message-feedback/remote';
|
|
8
|
+
import sessionReferencesRemote from '@deepseek-ai/dsh-session-reference/remote';
|
|
7
9
|
/** Required service: the typed Client Remote contribution mount. */
|
|
8
10
|
export const inject = ['remote'];
|
|
9
11
|
/**
|
|
@@ -15,7 +17,8 @@ export async function apply(ctx) {
|
|
|
15
17
|
const disposers = [];
|
|
16
18
|
try {
|
|
17
19
|
for (const contribution of [
|
|
18
|
-
commandsRemote, goalsRemote, dynamicRemote,
|
|
20
|
+
commandsRemote, goalsRemote, dynamicRemote, fileReferencesRemote,
|
|
21
|
+
pluginInventoryRemote, messageFeedbackRemote, sessionReferencesRemote,
|
|
19
22
|
]) {
|
|
20
23
|
disposers.push(await ctx.remote.$mount(contribution));
|
|
21
24
|
}
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
* `ctx.remote.$on`. Forwarding one more event is an entry here and nothing
|
|
14
14
|
* else.
|
|
15
15
|
*/
|
|
16
|
-
export declare const API_REMOTE_FORWARDED_EVENTS: readonly ["agent-preset/selected", "commands/change", "credentials/updated", "cordis/request-run", "cordis/request-run-resolved", "cordis/dynamic-package", "cordis/dynamic-retract", "cordis/inspect-query", "cordis/inspect-query-resolved", "llm/adapters-updated", "settings/document-updated"];
|
|
16
|
+
export declare const API_REMOTE_FORWARDED_EVENTS: readonly ["agent-preset/selected", "commands/change", "credentials/reference-updated", "cordis/request-run", "cordis/request-run-resolved", "cordis/dynamic-package", "cordis/dynamic-retract", "cordis/inspect-query", "cordis/inspect-query-resolved", "llm/adapters-updated", "settings/document-updated"];
|
|
17
17
|
//# sourceMappingURL=remote-events.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-api-remotes",
|
|
3
3
|
"description": "Remote BFF assembly and Host Agent/Session lookup policy",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1-rc.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,43 +51,47 @@
|
|
|
51
51
|
"lib/types/**/*.d.ts"
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
54
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.1-rc.1"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
+
"@deepseek-ai/dsh-agent": "^0.1.1-rc.1",
|
|
58
|
+
"@deepseek-ai/dsh-agent-presets": "^0.1.1-rc.1",
|
|
59
|
+
"@deepseek-ai/dsh-api-gateway": "^0.1.1-rc.1",
|
|
60
|
+
"@deepseek-ai/dsh-commands": "^0.1.1-rc.1",
|
|
61
|
+
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.1-rc.1",
|
|
62
|
+
"@deepseek-ai/dsh-credentials": "^0.1.1-rc.1",
|
|
63
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.1-rc.1",
|
|
64
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "^0.1.1-rc.1",
|
|
65
|
+
"@deepseek-ai/dsh-goal": "^0.1.1-rc.1",
|
|
66
|
+
"@deepseek-ai/dsh-llm": "^0.1.1-rc.1",
|
|
67
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.1",
|
|
68
|
+
"@deepseek-ai/dsh-message-feedback": "^0.1.1-rc.1",
|
|
69
|
+
"@deepseek-ai/dsh-session": "^0.1.1-rc.1",
|
|
70
|
+
"@deepseek-ai/dsh-session-persistence": "^0.1.1-rc.1",
|
|
71
|
+
"@deepseek-ai/dsh-session-reference": "^0.1.1-rc.1",
|
|
72
|
+
"@deepseek-ai/dsh-settings": "^0.1.1-rc.1",
|
|
57
73
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
58
|
-
"@deepseek-ai/dsh-
|
|
59
|
-
"@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
|
|
60
|
-
"@deepseek-ai/dsh-commands": "^0.1.0-rc.7",
|
|
61
|
-
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.7",
|
|
62
|
-
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.0-rc.7",
|
|
63
|
-
"@deepseek-ai/dsh-host-plugin-inventory": "^0.1.0-rc.7",
|
|
64
|
-
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.7",
|
|
65
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
|
|
66
|
-
"@deepseek-ai/dsh-session": "^0.1.0-rc.7",
|
|
67
|
-
"@deepseek-ai/dsh-message-feedback": "^0.1.0-rc.7",
|
|
68
|
-
"@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
|
|
69
|
-
"@deepseek-ai/dsh-typert-registry": "^0.1.0-rc.7",
|
|
70
|
-
"@deepseek-ai/dsh-session-persistence": "^0.1.0-rc.7",
|
|
71
|
-
"@deepseek-ai/dsh-agent-presets": "^0.1.0-rc.7",
|
|
72
|
-
"@deepseek-ai/dsh-goal": "^0.1.0-rc.7"
|
|
74
|
+
"@deepseek-ai/dsh-typert-registry": "^0.1.1-rc.1"
|
|
73
75
|
},
|
|
74
76
|
"devDependencies": {
|
|
75
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
76
|
-
"@deepseek-ai/dsh-
|
|
77
|
-
"@deepseek-ai/dsh-
|
|
78
|
-
"@deepseek-ai/dsh-
|
|
79
|
-
"@deepseek-ai/dsh-
|
|
80
|
-
"@deepseek-ai/dsh-
|
|
81
|
-
"@deepseek-ai/dsh-
|
|
82
|
-
"@deepseek-ai/dsh-
|
|
83
|
-
"@deepseek-ai/dsh-
|
|
84
|
-
"@deepseek-ai/dsh-
|
|
85
|
-
"@deepseek-ai/dsh-
|
|
86
|
-
"@deepseek-ai/dsh-
|
|
87
|
-
"@deepseek-ai/dsh-session-
|
|
88
|
-
"@deepseek-ai/dsh-settings": "^0.1.
|
|
89
|
-
"@deepseek-ai/
|
|
90
|
-
"@deepseek-ai/
|
|
77
|
+
"@deepseek-ai/dsh-agent": "^0.1.1-rc.1",
|
|
78
|
+
"@deepseek-ai/dsh-agent-presets": "^0.1.1-rc.1",
|
|
79
|
+
"@deepseek-ai/dsh-api-gateway": "^0.1.1-rc.1",
|
|
80
|
+
"@deepseek-ai/dsh-commands": "^0.1.1-rc.1",
|
|
81
|
+
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.1-rc.1",
|
|
82
|
+
"@deepseek-ai/dsh-goal": "^0.1.1-rc.1",
|
|
83
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "^0.1.1-rc.1",
|
|
84
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.1",
|
|
85
|
+
"@deepseek-ai/dsh-llm": "^0.1.1-rc.1",
|
|
86
|
+
"@deepseek-ai/dsh-session": "^0.1.1-rc.1",
|
|
87
|
+
"@deepseek-ai/dsh-session-persistence": "^0.1.1-rc.1",
|
|
88
|
+
"@deepseek-ai/dsh-typert-registry": "^0.1.1-rc.1",
|
|
89
|
+
"@deepseek-ai/dsh-session-reference": "^0.1.1-rc.1",
|
|
90
|
+
"@deepseek-ai/dsh-settings": "^0.1.1-rc.1",
|
|
91
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
92
|
+
"@deepseek-ai/dsh-credentials": "^0.1.1-rc.1",
|
|
93
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.1-rc.1",
|
|
94
|
+
"@deepseek-ai/dsh-message-feedback": "^0.1.1-rc.1"
|
|
91
95
|
},
|
|
92
96
|
"scripts": {
|
|
93
97
|
"bundle": "tsdown",
|