@clawos-dev/clawd 0.2.71-beta.128.2805736 → 0.2.71-beta.129.3d783e6
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/cli.cjs +6 -0
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -5196,6 +5196,10 @@ var init_remote_persona = __esm({
|
|
|
5196
5196
|
alias: external_exports.string().min(1),
|
|
5197
5197
|
remoteUrl: external_exports.string().min(1),
|
|
5198
5198
|
capabilityToken: external_exports.string().min(1),
|
|
5199
|
+
// v2 Phase 7: 远端 daemon 给我颁发的 capability id。preview 时 whoami 返回的
|
|
5200
|
+
// capability.id 直接存进来。旧 v1 持久化文件没此字段 → schema parse fail →
|
|
5201
|
+
// RemotePersonaStore.list 静默跳过 (alpha 阶段可接受, 老板重新 add 即可)。
|
|
5202
|
+
myCapabilityId: external_exports.string().min(1),
|
|
5199
5203
|
remotePersonaId: external_exports.string().min(1),
|
|
5200
5204
|
remoteDisplayName: external_exports.string(),
|
|
5201
5205
|
ownerDisplayName: external_exports.string().optional(),
|
|
@@ -5207,6 +5211,8 @@ var init_remote_persona = __esm({
|
|
|
5207
5211
|
alias: external_exports.string().min(1),
|
|
5208
5212
|
remoteUrl: external_exports.string().min(1),
|
|
5209
5213
|
capabilityToken: external_exports.string().min(1),
|
|
5214
|
+
// v2 Phase 7: UI 调 preview 后从 whoami response 取 capability.id 传入
|
|
5215
|
+
myCapabilityId: external_exports.string().min(1),
|
|
5210
5216
|
remotePersonaId: external_exports.string().min(1),
|
|
5211
5217
|
remoteDisplayName: external_exports.string(),
|
|
5212
5218
|
ownerDisplayName: external_exports.string().optional()
|
package/package.json
CHANGED