@clawos-dev/clawd 0.2.370 → 0.2.372
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.
|
@@ -22545,8 +22545,12 @@ var ProjectEntry = external_exports.object({
|
|
|
22545
22545
|
createdAt: external_exports.string().datetime()
|
|
22546
22546
|
});
|
|
22547
22547
|
var ProjectCreateArgs = external_exports.object({
|
|
22548
|
-
|
|
22548
|
+
// 在现成目录上登记 project;不传则按 name 在 Codex 的 project 根下新建目录 + git init
|
|
22549
|
+
// (spec 2026-08-18-codex-project-alignment §3.3)
|
|
22550
|
+
path: external_exports.string().min(1).optional(),
|
|
22549
22551
|
name: external_exports.string().min(1).optional()
|
|
22552
|
+
}).refine((a) => a.path != null || a.name != null, {
|
|
22553
|
+
message: "path \u4E0E name \u81F3\u5C11\u7ED9\u4E00\u4E2A"
|
|
22550
22554
|
});
|
|
22551
22555
|
var SessionImportExternalArgs = external_exports.object({
|
|
22552
22556
|
cwd: external_exports.string().min(1),
|