@warmhub/cli 0.78.0 → 0.79.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 +5 -5
- package/package.json +1 -1
package/dist/wh.js
CHANGED
|
@@ -28436,7 +28436,7 @@ function dedupeDeprecationsByShape(results) {
|
|
|
28436
28436
|
// ../../packages/sdk-ts/package.json
|
|
28437
28437
|
var package_default = {
|
|
28438
28438
|
name: "@warmhub/sdk-ts",
|
|
28439
|
-
version: "0.
|
|
28439
|
+
version: "0.77.0",
|
|
28440
28440
|
private: false,
|
|
28441
28441
|
type: "module",
|
|
28442
28442
|
description: "The TypeScript SDK for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -34981,7 +34981,7 @@ var CROCKFORD_CHARACTER_PATTERN = "0-9A-HJKMNP-TV-Za-hjkmnp-tv-z";
|
|
|
34981
34981
|
var VERSION_SUFFIX_PATTERN = String.raw`(?:v0*[1-9]\d*|[Hh][Ee][Aa][Dd]|[Aa][Ll][Ll])`;
|
|
34982
34982
|
var DURABLE_ID_PATTERN_RE = new RegExp(`^[${CROCKFORD_CHARACTER_PATTERN}]{60}(?:@${VERSION_SUFFIX_PATTERN})?$`);
|
|
34983
34983
|
var WREF_SEGMENT = String.raw`[^/?#@:\s$]+`;
|
|
34984
|
-
var CANONICAL_WREF_PATTERN_RE = new RegExp(
|
|
34984
|
+
var CANONICAL_WREF_PATTERN_RE = new RegExp(`^wh:${WREF_SEGMENT}/${WREF_SEGMENT}/${WREF_SEGMENT}(?:/${WREF_SEGMENT})*(?:@${VERSION_SUFFIX_PATTERN})?$`);
|
|
34985
34985
|
function looksLikeDurableId(wref) {
|
|
34986
34986
|
return DURABLE_ID_PATTERN_RE.test(wref);
|
|
34987
34987
|
}
|
|
@@ -48924,7 +48924,7 @@ function resolveLogLevel(flagLevel, env) {
|
|
|
48924
48924
|
// package.json
|
|
48925
48925
|
var package_default3 = {
|
|
48926
48926
|
name: "@warmhub/cli",
|
|
48927
|
-
version: "0.
|
|
48927
|
+
version: "0.79.0",
|
|
48928
48928
|
private: false,
|
|
48929
48929
|
type: "module",
|
|
48930
48930
|
description: "The wh CLI for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -49541,5 +49541,5 @@ process.exitCode = interceptedExitCode === undefined ? await runPreparedCli(laun
|
|
|
49541
49541
|
version: package_default3.version
|
|
49542
49542
|
}) : interceptedExitCode;
|
|
49543
49543
|
|
|
49544
|
-
//# debugId=
|
|
49545
|
-
//# warmhub-cli-build-info {"cliVersion":"0.
|
|
49544
|
+
//# debugId=1F88E14E37EC2F1964756E2164756E21
|
|
49545
|
+
//# warmhub-cli-build-info {"cliVersion":"0.79.0","sdkVersion":"0.77.0"}
|
package/package.json
CHANGED