@warmhub/cli 0.103.0 → 0.104.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 +8 -8
- package/package.json +1 -1
package/dist/wh.js
CHANGED
|
@@ -44496,7 +44496,7 @@ function createStreamingSubmissionHandle(input, deps) {
|
|
|
44496
44496
|
// ../../packages/sdk-ts/package.json
|
|
44497
44497
|
var package_default = {
|
|
44498
44498
|
name: "@warmhub/sdk-ts",
|
|
44499
|
-
version: "0.
|
|
44499
|
+
version: "0.102.0",
|
|
44500
44500
|
private: false,
|
|
44501
44501
|
type: "module",
|
|
44502
44502
|
description: "The TypeScript SDK for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -44562,10 +44562,10 @@ var package_default = {
|
|
|
44562
44562
|
"build:types": "NODE_OPTIONS=--max-old-space-size=4096 tsup --config tsup.dts-core.config.ts && NODE_OPTIONS=--max-old-space-size=4096 tsup --config tsup.dts-checkpoint.config.ts",
|
|
44563
44563
|
"build:test-runtime": "tsup --config tsup.test-runtime.config.ts",
|
|
44564
44564
|
"generate:api-contract": "bun run scripts/generate-api-contract.ts",
|
|
44565
|
-
"generate:backend-types": "bun run
|
|
44565
|
+
"generate:backend-types": "bun run --cwd ../sdk-conformance generate:backend-types",
|
|
44566
44566
|
"audit:api-contract": "bun run scripts/audit-api-contract.ts",
|
|
44567
|
-
"audit:backend-types": "bun run
|
|
44568
|
-
"audit:sdk-result-types": "bun run
|
|
44567
|
+
"audit:backend-types": "bun run --cwd ../sdk-conformance audit:backend-types",
|
|
44568
|
+
"audit:sdk-result-types": "bun run --cwd ../sdk-conformance audit:sdk-result-types",
|
|
44569
44569
|
"audit:bundle": "bun run scripts/audit-bundle.ts",
|
|
44570
44570
|
"audit:pack": "bun run scripts/audit-pack.ts",
|
|
44571
44571
|
"audit:cleanroom": "bun run scripts/audit-cleanroom.ts",
|
|
@@ -44579,7 +44579,7 @@ var package_default = {
|
|
|
44579
44579
|
test: "vitest run",
|
|
44580
44580
|
"test:coverage": "vitest run --coverage",
|
|
44581
44581
|
"test:watch": "vitest",
|
|
44582
|
-
typecheck: "bun run check:contract &&
|
|
44582
|
+
typecheck: "bun run check:contract && tsc --noEmit",
|
|
44583
44583
|
"docs:api:json": "typedoc --options typedoc.json --json /tmp/warmhub-sdk-api.json",
|
|
44584
44584
|
"docs:api:check": "typedoc --options typedoc.json --treatValidationWarningsAsErrors --json /tmp/warmhub-sdk-api-check.json"
|
|
44585
44585
|
},
|
|
@@ -68204,7 +68204,7 @@ function resolveLogLevel(flagLevel, env) {
|
|
|
68204
68204
|
// package.json
|
|
68205
68205
|
var package_default3 = {
|
|
68206
68206
|
name: "@warmhub/cli",
|
|
68207
|
-
version: "0.
|
|
68207
|
+
version: "0.104.0",
|
|
68208
68208
|
private: false,
|
|
68209
68209
|
type: "module",
|
|
68210
68210
|
description: "The wh CLI for WarmHub — create repos, commit and query data, and compound knowledge with your AI agents.",
|
|
@@ -68829,5 +68829,5 @@ process.exitCode = interceptedExitCode === undefined ? await runPreparedCli(laun
|
|
|
68829
68829
|
version: package_default3.version
|
|
68830
68830
|
}) : interceptedExitCode;
|
|
68831
68831
|
|
|
68832
|
-
//# debugId=
|
|
68833
|
-
//# warmhub-cli-build-info {"cliVersion":"0.
|
|
68832
|
+
//# debugId=F2FDA61744CD9C2064756E2164756E21
|
|
68833
|
+
//# warmhub-cli-build-info {"cliVersion":"0.104.0","sdkVersion":"0.102.0"}
|
package/package.json
CHANGED