@deepseek-ai/dsh-api-remotes 0.1.2-alpha.2 → 0.1.2-alpha.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/lib/client.js +17 -134
- package/package.json +27 -27
package/lib/client.js
CHANGED
|
@@ -6986,48 +6986,6 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
6986
6986
|
};
|
|
6987
6987
|
//#endregion
|
|
6988
6988
|
//#region ../../subagent/subagent/lib/typert.remote-client.js
|
|
6989
|
-
const ToolResultBlockRemoteCodec$schema = object({
|
|
6990
|
-
"type": literal("tool-result"),
|
|
6991
|
-
"toolCallId": intersection(string(), unknown()),
|
|
6992
|
-
"content": array(union([
|
|
6993
|
-
object({
|
|
6994
|
-
"type": literal("text"),
|
|
6995
|
-
"text": string()
|
|
6996
|
-
}),
|
|
6997
|
-
object({
|
|
6998
|
-
"type": literal("image"),
|
|
6999
|
-
"attachment": object({
|
|
7000
|
-
"attachmentId": intersection(string(), unknown()),
|
|
7001
|
-
"mediaType": union([
|
|
7002
|
-
literal("image/png"),
|
|
7003
|
-
literal("image/jpeg"),
|
|
7004
|
-
literal("image/webp"),
|
|
7005
|
-
literal("image/gif")
|
|
7006
|
-
]),
|
|
7007
|
-
"bytes": number(),
|
|
7008
|
-
"width": number(),
|
|
7009
|
-
"height": number(),
|
|
7010
|
-
"name": string().optional(),
|
|
7011
|
-
"originalDimensions": object({
|
|
7012
|
-
"width": number(),
|
|
7013
|
-
"height": number()
|
|
7014
|
-
}).optional()
|
|
7015
|
-
})
|
|
7016
|
-
}),
|
|
7017
|
-
object({
|
|
7018
|
-
"type": literal("reasoning"),
|
|
7019
|
-
"text": string()
|
|
7020
|
-
}),
|
|
7021
|
-
object({
|
|
7022
|
-
"type": literal("tool-call"),
|
|
7023
|
-
"id": intersection(string(), unknown()),
|
|
7024
|
-
"name": string(),
|
|
7025
|
-
"arguments": string()
|
|
7026
|
-
}),
|
|
7027
|
-
lazy(() => ToolResultBlockRemoteCodec$schema)
|
|
7028
|
-
])),
|
|
7029
|
-
"isError": boolean().optional()
|
|
7030
|
-
});
|
|
7031
6989
|
const _deepseek_ai_dsh_subagent_subagents_interruptByParent_parameter_0$schema = intersection(string(), unknown());
|
|
7032
6990
|
const _deepseek_ai_dsh_subagent_subagents_interruptByParent_parameter_1$schema = intersection(string(), unknown());
|
|
7033
6991
|
const _deepseek_ai_dsh_subagent_subagents_interruptByParent_parameter_2$schema = literal("continuable");
|
|
@@ -7070,95 +7028,20 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
7070
7028
|
"parentSessionId": intersection(string(), unknown()).readonly(),
|
|
7071
7029
|
"childSessionId": intersection(string(), unknown()).readonly(),
|
|
7072
7030
|
"mode": literal("continuable").readonly(),
|
|
7073
|
-
"content": array(union([
|
|
7074
|
-
|
|
7075
|
-
|
|
7076
|
-
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
7080
|
-
"
|
|
7081
|
-
|
|
7082
|
-
|
|
7083
|
-
|
|
7084
|
-
|
|
7085
|
-
|
|
7086
|
-
|
|
7087
|
-
]),
|
|
7088
|
-
"bytes": number(),
|
|
7089
|
-
"width": number(),
|
|
7090
|
-
"height": number(),
|
|
7091
|
-
"name": string().optional(),
|
|
7092
|
-
"originalDimensions": object({
|
|
7093
|
-
"width": number(),
|
|
7094
|
-
"height": number()
|
|
7095
|
-
}).optional()
|
|
7096
|
-
})
|
|
7097
|
-
}),
|
|
7098
|
-
object({
|
|
7099
|
-
"type": literal("reasoning"),
|
|
7100
|
-
"text": string()
|
|
7101
|
-
}),
|
|
7102
|
-
object({
|
|
7103
|
-
"type": literal("tool-call"),
|
|
7104
|
-
"id": intersection(string(), unknown()),
|
|
7105
|
-
"name": string(),
|
|
7106
|
-
"arguments": string()
|
|
7107
|
-
}),
|
|
7108
|
-
object({
|
|
7109
|
-
"type": literal("tool-result"),
|
|
7110
|
-
"toolCallId": intersection(string(), unknown()),
|
|
7111
|
-
"content": array(union([
|
|
7112
|
-
object({
|
|
7113
|
-
"type": literal("text"),
|
|
7114
|
-
"text": string()
|
|
7115
|
-
}),
|
|
7116
|
-
object({
|
|
7117
|
-
"type": literal("image"),
|
|
7118
|
-
"attachment": object({
|
|
7119
|
-
"attachmentId": intersection(string(), unknown()),
|
|
7120
|
-
"mediaType": union([
|
|
7121
|
-
literal("image/png"),
|
|
7122
|
-
literal("image/jpeg"),
|
|
7123
|
-
literal("image/webp"),
|
|
7124
|
-
literal("image/gif")
|
|
7125
|
-
]),
|
|
7126
|
-
"bytes": number(),
|
|
7127
|
-
"width": number(),
|
|
7128
|
-
"height": number(),
|
|
7129
|
-
"name": string().optional(),
|
|
7130
|
-
"originalDimensions": object({
|
|
7131
|
-
"width": number(),
|
|
7132
|
-
"height": number()
|
|
7133
|
-
}).optional()
|
|
7134
|
-
})
|
|
7135
|
-
}),
|
|
7136
|
-
object({
|
|
7137
|
-
"type": literal("reasoning"),
|
|
7138
|
-
"text": string()
|
|
7139
|
-
}),
|
|
7140
|
-
object({
|
|
7141
|
-
"type": literal("tool-call"),
|
|
7142
|
-
"id": intersection(string(), unknown()),
|
|
7143
|
-
"name": string(),
|
|
7144
|
-
"arguments": string()
|
|
7145
|
-
}),
|
|
7146
|
-
lazy(() => ToolResultBlockRemoteCodec$schema)
|
|
7147
|
-
])),
|
|
7148
|
-
"isError": boolean().optional()
|
|
7149
|
-
}),
|
|
7150
|
-
object({
|
|
7151
|
-
"type": literal("image").readonly(),
|
|
7152
|
-
"mediaType": union([
|
|
7153
|
-
literal("image/png"),
|
|
7154
|
-
literal("image/jpeg"),
|
|
7155
|
-
literal("image/webp"),
|
|
7156
|
-
literal("image/gif")
|
|
7157
|
-
]),
|
|
7158
|
-
"data": string(),
|
|
7159
|
-
"name": string().optional()
|
|
7160
|
-
})
|
|
7161
|
-
])).readonly(),
|
|
7031
|
+
"content": array(union([object({
|
|
7032
|
+
"type": literal("text").readonly(),
|
|
7033
|
+
"text": string().readonly()
|
|
7034
|
+
}), object({
|
|
7035
|
+
"type": literal("image").readonly(),
|
|
7036
|
+
"mediaType": union([
|
|
7037
|
+
literal("image/png"),
|
|
7038
|
+
literal("image/jpeg"),
|
|
7039
|
+
literal("image/webp"),
|
|
7040
|
+
literal("image/gif")
|
|
7041
|
+
]).readonly(),
|
|
7042
|
+
"data": string().readonly(),
|
|
7043
|
+
"name": string().readonly().optional()
|
|
7044
|
+
})])).readonly(),
|
|
7162
7045
|
"clientTimeZone": string().readonly().optional()
|
|
7163
7046
|
});
|
|
7164
7047
|
const _deepseek_ai_dsh_subagent_subagents_prompt_result$schema = object({ "messageId": intersection(string(), unknown()).readonly() });
|
|
@@ -7210,7 +7093,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
7210
7093
|
},
|
|
7211
7094
|
sourceLocation: {
|
|
7212
7095
|
"file": "packages/subagent/subagent/src/index.ts",
|
|
7213
|
-
"line":
|
|
7096
|
+
"line": 491,
|
|
7214
7097
|
"column": 3
|
|
7215
7098
|
}
|
|
7216
7099
|
},
|
|
@@ -7239,7 +7122,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
7239
7122
|
},
|
|
7240
7123
|
sourceLocation: {
|
|
7241
7124
|
"file": "packages/subagent/subagent/src/index.ts",
|
|
7242
|
-
"line":
|
|
7125
|
+
"line": 407,
|
|
7243
7126
|
"column": 9
|
|
7244
7127
|
}
|
|
7245
7128
|
},
|
|
@@ -7267,7 +7150,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
7267
7150
|
},
|
|
7268
7151
|
sourceLocation: {
|
|
7269
7152
|
"file": "packages/subagent/subagent/src/index.ts",
|
|
7270
|
-
"line":
|
|
7153
|
+
"line": 433,
|
|
7271
7154
|
"column": 9
|
|
7272
7155
|
}
|
|
7273
7156
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-api-remotes",
|
|
3
3
|
"description": "Remote BFF assembly for application-selected Host capabilities",
|
|
4
|
-
"version": "0.1.2-alpha.
|
|
4
|
+
"version": "0.1.2-alpha.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,38 +51,38 @@
|
|
|
51
51
|
"lib/types/**/*.d.ts"
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@deepseek-ai/dsh-deque": "^0.1.2-alpha.
|
|
55
|
-
"@deepseek-ai/dsh-session": "^0.1.2-alpha.
|
|
56
|
-
"@deepseek-ai/dsh-util-values": "^0.1.2-alpha.
|
|
54
|
+
"@deepseek-ai/dsh-deque": "^0.1.2-alpha.3",
|
|
55
|
+
"@deepseek-ai/dsh-session": "^0.1.2-alpha.3",
|
|
56
|
+
"@deepseek-ai/dsh-util-values": "^0.1.2-alpha.3"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
60
|
-
"@deepseek-ai/dsh-scope": "^0.1.2-alpha.
|
|
60
|
+
"@deepseek-ai/dsh-scope": "^0.1.2-alpha.3"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
+
"@deepseek-ai/dsh-agent-presets": "^0.1.2-alpha.3",
|
|
64
|
+
"@deepseek-ai/dsh-api-settings-controller": "^0.1.2-alpha.3",
|
|
65
|
+
"@deepseek-ai/dsh-api-gateway": "^0.1.2-alpha.3",
|
|
63
66
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
64
|
-
"@deepseek-ai/dsh-
|
|
65
|
-
"@deepseek-ai/dsh-api-
|
|
66
|
-
"@deepseek-ai/dsh-
|
|
67
|
-
"@deepseek-ai/dsh-
|
|
68
|
-
"@deepseek-ai/dsh-
|
|
69
|
-
"@deepseek-ai/dsh-
|
|
70
|
-
"@deepseek-ai/dsh-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/dsh-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-
|
|
75
|
-
"@deepseek-ai/dsh-
|
|
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-scope": "^0.1.2-alpha.2",
|
|
84
|
-
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.2",
|
|
85
|
-
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.2-alpha.2"
|
|
67
|
+
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.2-alpha.3",
|
|
68
|
+
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.2-alpha.3",
|
|
69
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.3",
|
|
70
|
+
"@deepseek-ai/dsh-goal": "^0.1.2-alpha.3",
|
|
71
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "^0.1.2-alpha.3",
|
|
72
|
+
"@deepseek-ai/dsh-message-feedback": "^0.1.2-alpha.3",
|
|
73
|
+
"@deepseek-ai/dsh-session-reference": "^0.1.2-alpha.3",
|
|
74
|
+
"@deepseek-ai/dsh-credentials": "^0.1.2-alpha.3",
|
|
75
|
+
"@deepseek-ai/dsh-commands": "^0.1.2-alpha.3",
|
|
76
|
+
"@deepseek-ai/dsh-subagent": "^0.1.2-alpha.3",
|
|
77
|
+
"@deepseek-ai/dsh-user-approval": "^0.1.2-alpha.3",
|
|
78
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.2-alpha.3",
|
|
79
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.3",
|
|
80
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.3",
|
|
81
|
+
"@deepseek-ai/dsh-scope": "^0.1.2-alpha.3",
|
|
82
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
83
|
+
"@deepseek-ai/dsh-llm": "^0.1.2-alpha.3",
|
|
84
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.3",
|
|
85
|
+
"@deepseek-ai/dsh-settings": "^0.1.2-alpha.3"
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
88
|
"bundle": "tsdown",
|