@warmhub/cli 0.90.0 → 0.91.0
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/wh.js +10 -7
- package/package.json +1 -1
package/dist/wh.js
CHANGED
|
@@ -19567,6 +19567,7 @@ function resolveManifestCredentialName(name, ctx) {
|
|
|
19567
19567
|
var REPO_AUTH_SCOPES = [
|
|
19568
19568
|
"repo:read",
|
|
19569
19569
|
"repo:checkpoint-read",
|
|
19570
|
+
"repo:checkpoint-generate",
|
|
19570
19571
|
"repo:write",
|
|
19571
19572
|
"repo:configure",
|
|
19572
19573
|
"repo:admin",
|
|
@@ -43445,7 +43446,7 @@ function completedOperationsFrom(result) {
|
|
|
43445
43446
|
// ../../packages/sdk-ts/package.json
|
|
43446
43447
|
var package_default = {
|
|
43447
43448
|
name: "@warmhub/sdk-ts",
|
|
43448
|
-
version: "0.
|
|
43449
|
+
version: "0.89.0",
|
|
43449
43450
|
private: false,
|
|
43450
43451
|
type: "module",
|
|
43451
43452
|
description: "The TypeScript SDK for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -45665,6 +45666,7 @@ class WarmHubClient {
|
|
|
45665
45666
|
repoName,
|
|
45666
45667
|
shape: opts?.shape,
|
|
45667
45668
|
about: opts?.about,
|
|
45669
|
+
affirmedAbout: opts?.affirmedAbout,
|
|
45668
45670
|
kind: narrowKind(opts?.kind),
|
|
45669
45671
|
match: opts?.match,
|
|
45670
45672
|
includeRetracted: opts?.includeRetracted,
|
|
@@ -51760,8 +51762,8 @@ var handleQuery = async (ctx, { flags }) => {
|
|
|
51760
51762
|
if (ctx.liveMode && sinceRepoSeq !== undefined) {
|
|
51761
51763
|
usageError("--since-repo-seq cannot be used with --live.", "wh thing query --since-repo-seq 42 --all --format json");
|
|
51762
51764
|
}
|
|
51763
|
-
if (affirmedAbout &&
|
|
51764
|
-
usageError("--affirmed-about is PG-served per exact pinned version; it cannot be combined with --match
|
|
51765
|
+
if (affirmedAbout && match) {
|
|
51766
|
+
usageError("--affirmed-about is PG-served per exact pinned version; it cannot be combined with --match.", "wh thing query --affirmed-about Location/cave@v3");
|
|
51765
51767
|
}
|
|
51766
51768
|
if (count) {
|
|
51767
51769
|
if (cursor || all || limit || ctx.liveMode || role) {
|
|
@@ -51772,6 +51774,7 @@ var handleQuery = async (ctx, { flags }) => {
|
|
|
51772
51774
|
kind,
|
|
51773
51775
|
match,
|
|
51774
51776
|
about,
|
|
51777
|
+
affirmedAbout,
|
|
51775
51778
|
includeRetracted,
|
|
51776
51779
|
resolveCollections,
|
|
51777
51780
|
componentRef,
|
|
@@ -61248,7 +61251,7 @@ var CHECKPOINT_ID_EXAMPLE = "0198f6d5-78aa-7000-8000-000000000001";
|
|
|
61248
61251
|
var CHECKPOINT_ACCESS_EXAMPLE = "wh repo checkpoint access acme/widgets --latest --archive";
|
|
61249
61252
|
var CHECKPOINT_DOWNLOAD_EXAMPLE = "wh repo checkpoint download acme/widgets --latest --archive --output checkpoint.zip";
|
|
61250
61253
|
var CHECKPOINT_READ_NOTE = "Requires unrestricted repo:read plus repo:checkpoint-read.";
|
|
61251
|
-
var CHECKPOINT_MANAGEMENT_NOTE = "Requires unrestricted repo:read, repo:checkpoint-read, and repo:admin.";
|
|
61254
|
+
var CHECKPOINT_MANAGEMENT_NOTE = "Requires unrestricted repo:read, repo:checkpoint-read, and repo:checkpoint-generate (or repo:admin for compatibility).";
|
|
61252
61255
|
var generateFlags = {
|
|
61253
61256
|
"at-least-repo-seq": checkpointFlags["at-least-repo-seq"],
|
|
61254
61257
|
wait: checkpointFlags.wait
|
|
@@ -66385,7 +66388,7 @@ function resolveLogLevel(flagLevel, env) {
|
|
|
66385
66388
|
// package.json
|
|
66386
66389
|
var package_default3 = {
|
|
66387
66390
|
name: "@warmhub/cli",
|
|
66388
|
-
version: "0.
|
|
66391
|
+
version: "0.91.0",
|
|
66389
66392
|
private: false,
|
|
66390
66393
|
type: "module",
|
|
66391
66394
|
description: "The wh CLI for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -67004,5 +67007,5 @@ process.exitCode = interceptedExitCode === undefined ? await runPreparedCli(laun
|
|
|
67004
67007
|
version: package_default3.version
|
|
67005
67008
|
}) : interceptedExitCode;
|
|
67006
67009
|
|
|
67007
|
-
//# debugId=
|
|
67008
|
-
//# warmhub-cli-build-info {"cliVersion":"0.
|
|
67010
|
+
//# debugId=B83F4BF04D38984164756E2164756E21
|
|
67011
|
+
//# warmhub-cli-build-info {"cliVersion":"0.91.0","sdkVersion":"0.89.0"}
|
package/package.json
CHANGED