deepline 0.1.245 → 0.1.246
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/bundling-sources/sdk/src/release.ts +1 -1
- package/dist/cli/index.js +22 -4
- package/dist/cli/index.mjs +22 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -113,7 +113,7 @@ export const SDK_RELEASE = {
|
|
|
113
113
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
114
114
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
115
115
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
116
|
-
version: '0.1.
|
|
116
|
+
version: '0.1.246',
|
|
117
117
|
apiContract: '2026-07-cjs-absurd-only-play-runtime-hard-cutover',
|
|
118
118
|
supportPolicy: {
|
|
119
119
|
minimumSupported: '0.1.53',
|
package/dist/cli/index.js
CHANGED
|
@@ -632,7 +632,7 @@ var SDK_RELEASE = {
|
|
|
632
632
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
633
633
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
634
634
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
635
|
-
version: "0.1.
|
|
635
|
+
version: "0.1.246",
|
|
636
636
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
637
637
|
supportPolicy: {
|
|
638
638
|
minimumSupported: "0.1.53",
|
|
@@ -24350,24 +24350,42 @@ function renderAvailableToolsText(payload) {
|
|
|
24350
24350
|
const returned = asFiniteNumber(payload.returned) ?? tools.length;
|
|
24351
24351
|
const total = asFiniteNumber(payload.total);
|
|
24352
24352
|
const lines = [
|
|
24353
|
-
total !== void 0 ? `
|
|
24353
|
+
total !== void 0 ? `Signal Radar types you can deploy (${returned} of ${total}):` : "Signal Radar types you can deploy:"
|
|
24354
24354
|
];
|
|
24355
|
+
let currentProvider;
|
|
24355
24356
|
for (const raw of tools) {
|
|
24356
24357
|
const entry = asRecord(raw);
|
|
24357
24358
|
const id = entry ? asString(entry.tool) : void 0;
|
|
24358
24359
|
if (!entry || !id) continue;
|
|
24359
24360
|
const name = asString(entry.name) ?? asString(entry.display_name);
|
|
24360
24361
|
const deployedCount = asFiniteNumber(entry.deployed_count);
|
|
24362
|
+
const description = asString(entry.description);
|
|
24363
|
+
const streams = Array.isArray(entry.streams) ? entry.streams.map((stream) => asString(stream)).filter((stream) => Boolean(stream)) : [];
|
|
24364
|
+
const provider = id.split(".")[0];
|
|
24365
|
+
if (provider && provider !== currentProvider) {
|
|
24366
|
+
currentProvider = provider;
|
|
24367
|
+
lines.push("", ` ${provider}:`);
|
|
24368
|
+
}
|
|
24361
24369
|
lines.push(
|
|
24362
|
-
`
|
|
24370
|
+
` ${id.split(".").slice(1).join(".") || id}${name ? ` \u2014 ${name}` : ""}${deployedCount !== void 0 ? ` (${deployedCount} deployed)` : ""}`
|
|
24363
24371
|
);
|
|
24372
|
+
if (description) lines.push(` ${description}`);
|
|
24373
|
+
if (streams.length > 0) {
|
|
24374
|
+
lines.push(` emits: ${streams.join(", ")}`);
|
|
24375
|
+
}
|
|
24364
24376
|
}
|
|
24365
24377
|
if (payload.is_truncated === true) {
|
|
24366
24378
|
lines.push("List truncated; raise --limit to see more.");
|
|
24367
24379
|
}
|
|
24368
24380
|
lines.push(
|
|
24369
24381
|
"",
|
|
24370
|
-
"
|
|
24382
|
+
"Next:",
|
|
24383
|
+
" Inspect payload fields, output columns, and a play binding:",
|
|
24384
|
+
" deepline monitors available <provider.tool> --json",
|
|
24385
|
+
" See monitors already deployed in this workspace:",
|
|
24386
|
+
" deepline monitors list",
|
|
24387
|
+
" Validate a monitor definition before deploying:",
|
|
24388
|
+
` deepline monitors check '{"key":"my-radar","tool":"<provider.tool>","payload":{...}}'`
|
|
24371
24389
|
);
|
|
24372
24390
|
return `${lines.join("\n")}
|
|
24373
24391
|
`;
|
package/dist/cli/index.mjs
CHANGED
|
@@ -617,7 +617,7 @@ var SDK_RELEASE = {
|
|
|
617
617
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
618
618
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
619
619
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
620
|
-
version: "0.1.
|
|
620
|
+
version: "0.1.246",
|
|
621
621
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
622
622
|
supportPolicy: {
|
|
623
623
|
minimumSupported: "0.1.53",
|
|
@@ -24386,24 +24386,42 @@ function renderAvailableToolsText(payload) {
|
|
|
24386
24386
|
const returned = asFiniteNumber(payload.returned) ?? tools.length;
|
|
24387
24387
|
const total = asFiniteNumber(payload.total);
|
|
24388
24388
|
const lines = [
|
|
24389
|
-
total !== void 0 ? `
|
|
24389
|
+
total !== void 0 ? `Signal Radar types you can deploy (${returned} of ${total}):` : "Signal Radar types you can deploy:"
|
|
24390
24390
|
];
|
|
24391
|
+
let currentProvider;
|
|
24391
24392
|
for (const raw of tools) {
|
|
24392
24393
|
const entry = asRecord(raw);
|
|
24393
24394
|
const id = entry ? asString(entry.tool) : void 0;
|
|
24394
24395
|
if (!entry || !id) continue;
|
|
24395
24396
|
const name = asString(entry.name) ?? asString(entry.display_name);
|
|
24396
24397
|
const deployedCount = asFiniteNumber(entry.deployed_count);
|
|
24398
|
+
const description = asString(entry.description);
|
|
24399
|
+
const streams = Array.isArray(entry.streams) ? entry.streams.map((stream) => asString(stream)).filter((stream) => Boolean(stream)) : [];
|
|
24400
|
+
const provider = id.split(".")[0];
|
|
24401
|
+
if (provider && provider !== currentProvider) {
|
|
24402
|
+
currentProvider = provider;
|
|
24403
|
+
lines.push("", ` ${provider}:`);
|
|
24404
|
+
}
|
|
24397
24405
|
lines.push(
|
|
24398
|
-
`
|
|
24406
|
+
` ${id.split(".").slice(1).join(".") || id}${name ? ` \u2014 ${name}` : ""}${deployedCount !== void 0 ? ` (${deployedCount} deployed)` : ""}`
|
|
24399
24407
|
);
|
|
24408
|
+
if (description) lines.push(` ${description}`);
|
|
24409
|
+
if (streams.length > 0) {
|
|
24410
|
+
lines.push(` emits: ${streams.join(", ")}`);
|
|
24411
|
+
}
|
|
24400
24412
|
}
|
|
24401
24413
|
if (payload.is_truncated === true) {
|
|
24402
24414
|
lines.push("List truncated; raise --limit to see more.");
|
|
24403
24415
|
}
|
|
24404
24416
|
lines.push(
|
|
24405
24417
|
"",
|
|
24406
|
-
"
|
|
24418
|
+
"Next:",
|
|
24419
|
+
" Inspect payload fields, output columns, and a play binding:",
|
|
24420
|
+
" deepline monitors available <provider.tool> --json",
|
|
24421
|
+
" See monitors already deployed in this workspace:",
|
|
24422
|
+
" deepline monitors list",
|
|
24423
|
+
" Validate a monitor definition before deploying:",
|
|
24424
|
+
` deepline monitors check '{"key":"my-radar","tool":"<provider.tool>","payload":{...}}'`
|
|
24407
24425
|
);
|
|
24408
24426
|
return `${lines.join("\n")}
|
|
24409
24427
|
`;
|
package/dist/index.js
CHANGED
|
@@ -431,7 +431,7 @@ var SDK_RELEASE = {
|
|
|
431
431
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
432
432
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
433
433
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
434
|
-
version: "0.1.
|
|
434
|
+
version: "0.1.246",
|
|
435
435
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
436
436
|
supportPolicy: {
|
|
437
437
|
minimumSupported: "0.1.53",
|
package/dist/index.mjs
CHANGED
|
@@ -361,7 +361,7 @@ var SDK_RELEASE = {
|
|
|
361
361
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
362
362
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
363
363
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
364
|
-
version: "0.1.
|
|
364
|
+
version: "0.1.246",
|
|
365
365
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
366
366
|
supportPolicy: {
|
|
367
367
|
minimumSupported: "0.1.53",
|