@cleocode/adapters 2026.5.93 → 2026.5.95
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/index.js +13 -1
- package/dist/index.js.map +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -816,6 +816,13 @@ var init_changesets = __esm({
|
|
|
816
816
|
}
|
|
817
817
|
});
|
|
818
818
|
|
|
819
|
+
// packages/contracts/src/cli-category.ts
|
|
820
|
+
var init_cli_category = __esm({
|
|
821
|
+
"packages/contracts/src/cli-category.ts"() {
|
|
822
|
+
"use strict";
|
|
823
|
+
}
|
|
824
|
+
});
|
|
825
|
+
|
|
819
826
|
// packages/contracts/src/credentials.ts
|
|
820
827
|
function parseClaudeCodeCredentials(buf) {
|
|
821
828
|
try {
|
|
@@ -1308,7 +1315,7 @@ var init_peer = __esm({
|
|
|
1308
1315
|
|
|
1309
1316
|
// packages/contracts/src/release/evidence-atoms.ts
|
|
1310
1317
|
import { z as z5 } from "zod";
|
|
1311
|
-
var parsedPrEvidenceAtomSchema, ghPrViewSchema, PR_REQUIRED_WORKFLOWS;
|
|
1318
|
+
var parsedPrEvidenceAtomSchema, prEvidenceStateModifierSchema, ghPrViewSchema, PR_REQUIRED_WORKFLOWS;
|
|
1312
1319
|
var init_evidence_atoms = __esm({
|
|
1313
1320
|
"packages/contracts/src/release/evidence-atoms.ts"() {
|
|
1314
1321
|
"use strict";
|
|
@@ -1316,6 +1323,10 @@ var init_evidence_atoms = __esm({
|
|
|
1316
1323
|
kind: z5.literal("pr"),
|
|
1317
1324
|
prNumber: z5.number().int().positive()
|
|
1318
1325
|
});
|
|
1326
|
+
prEvidenceStateModifierSchema = z5.object({
|
|
1327
|
+
kind: z5.literal("state"),
|
|
1328
|
+
value: z5.literal("MERGED")
|
|
1329
|
+
});
|
|
1319
1330
|
ghPrViewSchema = z5.object({
|
|
1320
1331
|
state: z5.enum(["OPEN", "CLOSED", "MERGED"]),
|
|
1321
1332
|
mergedAt: z5.string().nullable(),
|
|
@@ -1687,6 +1698,7 @@ var init_src = __esm({
|
|
|
1687
1698
|
init_attachment_schema();
|
|
1688
1699
|
init_branch_lock();
|
|
1689
1700
|
init_changesets();
|
|
1701
|
+
init_cli_category();
|
|
1690
1702
|
init_credentials();
|
|
1691
1703
|
init_docs_taxonomy();
|
|
1692
1704
|
init_engine_result();
|