deepline 0.1.242 → 0.1.243
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 +2 -2
- package/dist/cli/index.js +12 -5
- package/dist/cli/index.mjs +12 -5
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -113,10 +113,10 @@ export const SDK_RELEASE = {
|
|
|
113
113
|
// 0.1.241 hard-cuts published and launched plays to immutable cjs_node20
|
|
114
114
|
// artifacts. Older clients can submit esm_workers artifacts that the Absurd
|
|
115
115
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
116
|
-
version: '0.1.
|
|
116
|
+
version: '0.1.243',
|
|
117
117
|
apiContract: '2026-07-immutable-cjs-play-artifacts-hard-cutover',
|
|
118
118
|
supportPolicy: {
|
|
119
|
-
latest: '0.1.
|
|
119
|
+
latest: '0.1.243',
|
|
120
120
|
minimumSupported: '0.1.53',
|
|
121
121
|
deprecatedBelow: '0.1.219',
|
|
122
122
|
commandMinimumSupported: [
|
package/dist/cli/index.js
CHANGED
|
@@ -630,10 +630,10 @@ var SDK_RELEASE = {
|
|
|
630
630
|
// 0.1.241 hard-cuts published and launched plays to immutable cjs_node20
|
|
631
631
|
// artifacts. Older clients can submit esm_workers artifacts that the Absurd
|
|
632
632
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
633
|
-
version: "0.1.
|
|
633
|
+
version: "0.1.243",
|
|
634
634
|
apiContract: "2026-07-immutable-cjs-play-artifacts-hard-cutover",
|
|
635
635
|
supportPolicy: {
|
|
636
|
-
latest: "0.1.
|
|
636
|
+
latest: "0.1.243",
|
|
637
637
|
minimumSupported: "0.1.53",
|
|
638
638
|
deprecatedBelow: "0.1.219",
|
|
639
639
|
commandMinimumSupported: [
|
|
@@ -26561,17 +26561,22 @@ async function grepTools(queryInput, options = {}) {
|
|
|
26561
26561
|
const client2 = new DeeplineClient();
|
|
26562
26562
|
const requestedCategories = options.categories ? options.categories.split(",").map((item) => item.trim()).filter(Boolean) : [];
|
|
26563
26563
|
const mode = options.mode ?? "all";
|
|
26564
|
+
const jsonOutput = options.json === true;
|
|
26565
|
+
let apiCompact = !jsonOutput;
|
|
26566
|
+
if (typeof options.compact === "boolean") {
|
|
26567
|
+
apiCompact = options.compact;
|
|
26568
|
+
}
|
|
26564
26569
|
const tools = (await client2.listTools({
|
|
26565
26570
|
grep: query,
|
|
26566
26571
|
grepMode: mode,
|
|
26567
26572
|
...options.categories ? { categories: options.categories } : {},
|
|
26568
|
-
compact:
|
|
26573
|
+
compact: apiCompact
|
|
26569
26574
|
})).map(toListedTool).filter(
|
|
26570
26575
|
(item) => requestedCategories.length === 0 || requestedCategories.some(
|
|
26571
26576
|
(category) => item.categories.includes(category)
|
|
26572
26577
|
)
|
|
26573
26578
|
).filter(
|
|
26574
|
-
(item) => matchesGrepQuery(
|
|
26579
|
+
(item) => apiCompact ? true : matchesGrepQuery(
|
|
26575
26580
|
{
|
|
26576
26581
|
id: item.toolId,
|
|
26577
26582
|
toolId: item.toolId,
|
|
@@ -26581,13 +26586,15 @@ async function grepTools(queryInput, options = {}) {
|
|
|
26581
26586
|
categories: item.categories,
|
|
26582
26587
|
operation: item.operation,
|
|
26583
26588
|
operationAliases: item.operationAliases,
|
|
26589
|
+
inputSchema: item.inputSchema,
|
|
26590
|
+
outputSchema: item.outputSchema,
|
|
26584
26591
|
inputFields: item.inputFields
|
|
26585
26592
|
},
|
|
26586
26593
|
query,
|
|
26587
26594
|
mode
|
|
26588
26595
|
)
|
|
26589
26596
|
);
|
|
26590
|
-
const shouldCompact =
|
|
26597
|
+
const shouldCompact = apiCompact;
|
|
26591
26598
|
const outputTools = shouldCompact ? tools.slice(0, 8).map(compactTool) : tools;
|
|
26592
26599
|
const emptyResult = tools.length === 0 ? zeroMatchToolGuidance({
|
|
26593
26600
|
categories: requestedCategories,
|
package/dist/cli/index.mjs
CHANGED
|
@@ -615,10 +615,10 @@ var SDK_RELEASE = {
|
|
|
615
615
|
// 0.1.241 hard-cuts published and launched plays to immutable cjs_node20
|
|
616
616
|
// artifacts. Older clients can submit esm_workers artifacts that the Absurd
|
|
617
617
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
618
|
-
version: "0.1.
|
|
618
|
+
version: "0.1.243",
|
|
619
619
|
apiContract: "2026-07-immutable-cjs-play-artifacts-hard-cutover",
|
|
620
620
|
supportPolicy: {
|
|
621
|
-
latest: "0.1.
|
|
621
|
+
latest: "0.1.243",
|
|
622
622
|
minimumSupported: "0.1.53",
|
|
623
623
|
deprecatedBelow: "0.1.219",
|
|
624
624
|
commandMinimumSupported: [
|
|
@@ -26609,17 +26609,22 @@ async function grepTools(queryInput, options = {}) {
|
|
|
26609
26609
|
const client2 = new DeeplineClient();
|
|
26610
26610
|
const requestedCategories = options.categories ? options.categories.split(",").map((item) => item.trim()).filter(Boolean) : [];
|
|
26611
26611
|
const mode = options.mode ?? "all";
|
|
26612
|
+
const jsonOutput = options.json === true;
|
|
26613
|
+
let apiCompact = !jsonOutput;
|
|
26614
|
+
if (typeof options.compact === "boolean") {
|
|
26615
|
+
apiCompact = options.compact;
|
|
26616
|
+
}
|
|
26612
26617
|
const tools = (await client2.listTools({
|
|
26613
26618
|
grep: query,
|
|
26614
26619
|
grepMode: mode,
|
|
26615
26620
|
...options.categories ? { categories: options.categories } : {},
|
|
26616
|
-
compact:
|
|
26621
|
+
compact: apiCompact
|
|
26617
26622
|
})).map(toListedTool).filter(
|
|
26618
26623
|
(item) => requestedCategories.length === 0 || requestedCategories.some(
|
|
26619
26624
|
(category) => item.categories.includes(category)
|
|
26620
26625
|
)
|
|
26621
26626
|
).filter(
|
|
26622
|
-
(item) => matchesGrepQuery(
|
|
26627
|
+
(item) => apiCompact ? true : matchesGrepQuery(
|
|
26623
26628
|
{
|
|
26624
26629
|
id: item.toolId,
|
|
26625
26630
|
toolId: item.toolId,
|
|
@@ -26629,13 +26634,15 @@ async function grepTools(queryInput, options = {}) {
|
|
|
26629
26634
|
categories: item.categories,
|
|
26630
26635
|
operation: item.operation,
|
|
26631
26636
|
operationAliases: item.operationAliases,
|
|
26637
|
+
inputSchema: item.inputSchema,
|
|
26638
|
+
outputSchema: item.outputSchema,
|
|
26632
26639
|
inputFields: item.inputFields
|
|
26633
26640
|
},
|
|
26634
26641
|
query,
|
|
26635
26642
|
mode
|
|
26636
26643
|
)
|
|
26637
26644
|
);
|
|
26638
|
-
const shouldCompact =
|
|
26645
|
+
const shouldCompact = apiCompact;
|
|
26639
26646
|
const outputTools = shouldCompact ? tools.slice(0, 8).map(compactTool) : tools;
|
|
26640
26647
|
const emptyResult = tools.length === 0 ? zeroMatchToolGuidance({
|
|
26641
26648
|
categories: requestedCategories,
|
package/dist/index.js
CHANGED
|
@@ -429,10 +429,10 @@ var SDK_RELEASE = {
|
|
|
429
429
|
// 0.1.241 hard-cuts published and launched plays to immutable cjs_node20
|
|
430
430
|
// artifacts. Older clients can submit esm_workers artifacts that the Absurd
|
|
431
431
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
432
|
-
version: "0.1.
|
|
432
|
+
version: "0.1.243",
|
|
433
433
|
apiContract: "2026-07-immutable-cjs-play-artifacts-hard-cutover",
|
|
434
434
|
supportPolicy: {
|
|
435
|
-
latest: "0.1.
|
|
435
|
+
latest: "0.1.243",
|
|
436
436
|
minimumSupported: "0.1.53",
|
|
437
437
|
deprecatedBelow: "0.1.219",
|
|
438
438
|
commandMinimumSupported: [
|
package/dist/index.mjs
CHANGED
|
@@ -359,10 +359,10 @@ var SDK_RELEASE = {
|
|
|
359
359
|
// 0.1.241 hard-cuts published and launched plays to immutable cjs_node20
|
|
360
360
|
// artifacts. Older clients can submit esm_workers artifacts that the Absurd
|
|
361
361
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
362
|
-
version: "0.1.
|
|
362
|
+
version: "0.1.243",
|
|
363
363
|
apiContract: "2026-07-immutable-cjs-play-artifacts-hard-cutover",
|
|
364
364
|
supportPolicy: {
|
|
365
|
-
latest: "0.1.
|
|
365
|
+
latest: "0.1.243",
|
|
366
366
|
minimumSupported: "0.1.53",
|
|
367
367
|
deprecatedBelow: "0.1.219",
|
|
368
368
|
commandMinimumSupported: [
|