deepline 0.1.246 → 0.1.247
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 +4 -22
- package/dist/cli/index.mjs +4 -22
- 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.247',
|
|
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.247",
|
|
636
636
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
637
637
|
supportPolicy: {
|
|
638
638
|
minimumSupported: "0.1.53",
|
|
@@ -24350,42 +24350,24 @@ 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 ? `Monitor tools you can deploy (${returned} of ${total}):` : "Monitor tools you can deploy:"
|
|
24354
24354
|
];
|
|
24355
|
-
let currentProvider;
|
|
24356
24355
|
for (const raw of tools) {
|
|
24357
24356
|
const entry = asRecord(raw);
|
|
24358
24357
|
const id = entry ? asString(entry.tool) : void 0;
|
|
24359
24358
|
if (!entry || !id) continue;
|
|
24360
24359
|
const name = asString(entry.name) ?? asString(entry.display_name);
|
|
24361
24360
|
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
|
-
}
|
|
24369
24361
|
lines.push(
|
|
24370
|
-
`
|
|
24362
|
+
` ${id}${name ? ` \u2014 ${name}` : ""}${deployedCount !== void 0 ? ` (deployed: ${deployedCount})` : ""}`
|
|
24371
24363
|
);
|
|
24372
|
-
if (description) lines.push(` ${description}`);
|
|
24373
|
-
if (streams.length > 0) {
|
|
24374
|
-
lines.push(` emits: ${streams.join(", ")}`);
|
|
24375
|
-
}
|
|
24376
24364
|
}
|
|
24377
24365
|
if (payload.is_truncated === true) {
|
|
24378
24366
|
lines.push("List truncated; raise --limit to see more.");
|
|
24379
24367
|
}
|
|
24380
24368
|
lines.push(
|
|
24381
24369
|
"",
|
|
24382
|
-
"
|
|
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":{...}}'`
|
|
24370
|
+
"Describe one (payload schema + output streams): deepline monitors available <tool-id> --json"
|
|
24389
24371
|
);
|
|
24390
24372
|
return `${lines.join("\n")}
|
|
24391
24373
|
`;
|
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.247",
|
|
621
621
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
622
622
|
supportPolicy: {
|
|
623
623
|
minimumSupported: "0.1.53",
|
|
@@ -24386,42 +24386,24 @@ 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 ? `Monitor tools you can deploy (${returned} of ${total}):` : "Monitor tools you can deploy:"
|
|
24390
24390
|
];
|
|
24391
|
-
let currentProvider;
|
|
24392
24391
|
for (const raw of tools) {
|
|
24393
24392
|
const entry = asRecord(raw);
|
|
24394
24393
|
const id = entry ? asString(entry.tool) : void 0;
|
|
24395
24394
|
if (!entry || !id) continue;
|
|
24396
24395
|
const name = asString(entry.name) ?? asString(entry.display_name);
|
|
24397
24396
|
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
|
-
}
|
|
24405
24397
|
lines.push(
|
|
24406
|
-
`
|
|
24398
|
+
` ${id}${name ? ` \u2014 ${name}` : ""}${deployedCount !== void 0 ? ` (deployed: ${deployedCount})` : ""}`
|
|
24407
24399
|
);
|
|
24408
|
-
if (description) lines.push(` ${description}`);
|
|
24409
|
-
if (streams.length > 0) {
|
|
24410
|
-
lines.push(` emits: ${streams.join(", ")}`);
|
|
24411
|
-
}
|
|
24412
24400
|
}
|
|
24413
24401
|
if (payload.is_truncated === true) {
|
|
24414
24402
|
lines.push("List truncated; raise --limit to see more.");
|
|
24415
24403
|
}
|
|
24416
24404
|
lines.push(
|
|
24417
24405
|
"",
|
|
24418
|
-
"
|
|
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":{...}}'`
|
|
24406
|
+
"Describe one (payload schema + output streams): deepline monitors available <tool-id> --json"
|
|
24425
24407
|
);
|
|
24426
24408
|
return `${lines.join("\n")}
|
|
24427
24409
|
`;
|
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.247",
|
|
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.247",
|
|
365
365
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
366
366
|
supportPolicy: {
|
|
367
367
|
minimumSupported: "0.1.53",
|