@warmhub/cli 0.122.0 → 0.122.2
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 +8 -4
- package/package.json +1 -1
package/dist/wh.js
CHANGED
|
@@ -45142,7 +45142,11 @@ class StreamingSubmissionOutcomeUnknownError extends Error {
|
|
|
45142
45142
|
function normalizedOptional(value) {
|
|
45143
45143
|
return value === undefined || value === "" ? undefined : value;
|
|
45144
45144
|
}
|
|
45145
|
+
var streamingRuntimeSupportForTests;
|
|
45145
45146
|
function supportsStreamingRequests() {
|
|
45147
|
+
if (streamingRuntimeSupportForTests !== undefined) {
|
|
45148
|
+
return streamingRuntimeSupportForTests;
|
|
45149
|
+
}
|
|
45146
45150
|
const runtime = globalThis;
|
|
45147
45151
|
if (runtime.Bun !== undefined)
|
|
45148
45152
|
return true;
|
|
@@ -45312,7 +45316,7 @@ function createStreamingSubmissionHandle(input, deps) {
|
|
|
45312
45316
|
// ../../packages/sdk-ts/package.json
|
|
45313
45317
|
var package_default = {
|
|
45314
45318
|
name: "@warmhub/sdk-ts",
|
|
45315
|
-
version: "0.120.
|
|
45319
|
+
version: "0.120.2",
|
|
45316
45320
|
private: false,
|
|
45317
45321
|
type: "module",
|
|
45318
45322
|
description: "The TypeScript SDK for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -69746,7 +69750,7 @@ function resolveLogLevel(flagLevel, env) {
|
|
|
69746
69750
|
// package.json
|
|
69747
69751
|
var package_default3 = {
|
|
69748
69752
|
name: "@warmhub/cli",
|
|
69749
|
-
version: "0.122.
|
|
69753
|
+
version: "0.122.2",
|
|
69750
69754
|
private: false,
|
|
69751
69755
|
type: "module",
|
|
69752
69756
|
description: "The wh CLI for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -70371,5 +70375,5 @@ process.exitCode = interceptedExitCode === undefined ? await runPreparedCli(laun
|
|
|
70371
70375
|
version: package_default3.version
|
|
70372
70376
|
}) : interceptedExitCode;
|
|
70373
70377
|
|
|
70374
|
-
//# debugId=
|
|
70375
|
-
//# warmhub-cli-build-info {"cliVersion":"0.122.
|
|
70378
|
+
//# debugId=127DB4C5DB3729F664756E2164756E21
|
|
70379
|
+
//# warmhub-cli-build-info {"cliVersion":"0.122.2","sdkVersion":"0.120.2"}
|
package/package.json
CHANGED