deepline 0.3.46 → 0.3.47

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.
@@ -199,7 +199,7 @@ export const SDK_RELEASE = {
199
199
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
200
200
  // getters keep their established compatibility behavior.
201
201
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
202
- version: '0.3.46',
202
+ version: '0.3.47',
203
203
  updateSummary:
204
204
  'Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.',
205
205
  packageCapabilities: {
package/dist/cli/index.js CHANGED
@@ -1043,7 +1043,7 @@ var SDK_RELEASE = {
1043
1043
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1044
1044
  // getters keep their established compatibility behavior.
1045
1045
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
1046
- version: "0.3.46",
1046
+ version: "0.3.47",
1047
1047
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
1048
1048
  packageCapabilities: {
1049
1049
  updatePreferences: 1
@@ -32311,6 +32311,7 @@ async function handleFeedback(text, options) {
32311
32311
  const { http } = getAuthedHttpClient();
32312
32312
  const response = await http.post("/api/v2/cli/feedback", {
32313
32313
  text,
32314
+ requested: options.requested === true,
32314
32315
  environment: collectLocalEnvInfo(),
32315
32316
  ...options.command ? { command: options.command } : {},
32316
32317
  ...options.payload ? { payload: options.payload } : {}
@@ -32334,6 +32335,7 @@ function registerFeedbackCommands(program) {
32334
32335
  Notes:
32335
32336
  Sends the feedback text plus local CLI environment info to Deepline support.
32336
32337
  Use --command and --payload to attach a reproducible command shape.
32338
+ Agents should pass --requested when the user asked them to submit the report.
32337
32339
 
32338
32340
  Examples:
32339
32341
  deepline feedback send "plays run failed after upload" --command "deepline plays run my.play.ts --watch"
@@ -32345,9 +32347,13 @@ Examples:
32345
32347
  `
32346
32348
  Examples:
32347
32349
  deepline feedback send "tools search returned stale results" --json
32350
+ deepline feedback send "tools search returned stale results" --requested --json
32348
32351
  deepline feedback send "plays run failed after upload" --command "deepline plays run my.play.ts --watch"
32349
32352
  `
32350
- ).argument("<text>", "Feedback text").option("--command <command>", "Command that reproduced the issue").option("--payload <payload>", "JSON or plain-text payload for the repro").option("--json", "Emit JSON output").action(handleFeedback);
32353
+ ).argument("<text>", "Feedback text").option("--command <command>", "Command that reproduced the issue").option("--payload <payload>", "JSON or plain-text payload for the repro").option(
32354
+ "--requested",
32355
+ "Mark the report as explicitly requested by the user"
32356
+ ).option("--json", "Emit JSON output").action(handleFeedback);
32351
32357
  }
32352
32358
 
32353
32359
  // src/cli/commands/sessions.ts
@@ -1029,7 +1029,7 @@ var SDK_RELEASE = {
1029
1029
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1030
1030
  // getters keep their established compatibility behavior.
1031
1031
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
1032
- version: "0.3.46",
1032
+ version: "0.3.47",
1033
1033
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
1034
1034
  packageCapabilities: {
1035
1035
  updatePreferences: 1
@@ -32374,6 +32374,7 @@ async function handleFeedback(text, options) {
32374
32374
  const { http } = getAuthedHttpClient();
32375
32375
  const response = await http.post("/api/v2/cli/feedback", {
32376
32376
  text,
32377
+ requested: options.requested === true,
32377
32378
  environment: collectLocalEnvInfo(),
32378
32379
  ...options.command ? { command: options.command } : {},
32379
32380
  ...options.payload ? { payload: options.payload } : {}
@@ -32397,6 +32398,7 @@ function registerFeedbackCommands(program) {
32397
32398
  Notes:
32398
32399
  Sends the feedback text plus local CLI environment info to Deepline support.
32399
32400
  Use --command and --payload to attach a reproducible command shape.
32401
+ Agents should pass --requested when the user asked them to submit the report.
32400
32402
 
32401
32403
  Examples:
32402
32404
  deepline feedback send "plays run failed after upload" --command "deepline plays run my.play.ts --watch"
@@ -32408,9 +32410,13 @@ Examples:
32408
32410
  `
32409
32411
  Examples:
32410
32412
  deepline feedback send "tools search returned stale results" --json
32413
+ deepline feedback send "tools search returned stale results" --requested --json
32411
32414
  deepline feedback send "plays run failed after upload" --command "deepline plays run my.play.ts --watch"
32412
32415
  `
32413
- ).argument("<text>", "Feedback text").option("--command <command>", "Command that reproduced the issue").option("--payload <payload>", "JSON or plain-text payload for the repro").option("--json", "Emit JSON output").action(handleFeedback);
32416
+ ).argument("<text>", "Feedback text").option("--command <command>", "Command that reproduced the issue").option("--payload <payload>", "JSON or plain-text payload for the repro").option(
32417
+ "--requested",
32418
+ "Mark the report as explicitly requested by the user"
32419
+ ).option("--json", "Emit JSON output").action(handleFeedback);
32414
32420
  }
32415
32421
 
32416
32422
  // src/cli/commands/sessions.ts
package/dist/index.js CHANGED
@@ -779,7 +779,7 @@ var SDK_RELEASE = {
779
779
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
780
780
  // getters keep their established compatibility behavior.
781
781
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
782
- version: "0.3.46",
782
+ version: "0.3.47",
783
783
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
784
784
  packageCapabilities: {
785
785
  updatePreferences: 1
package/dist/index.mjs CHANGED
@@ -702,7 +702,7 @@ var SDK_RELEASE = {
702
702
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
703
703
  // getters keep their established compatibility behavior.
704
704
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
705
- version: "0.3.46",
705
+ version: "0.3.47",
706
706
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
707
707
  packageCapabilities: {
708
708
  updatePreferences: 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.3.46",
3
+ "version": "0.3.47",
4
4
  "description": "GTM data CLI and TypeScript SDK for coding agents",
5
5
  "license": "MIT",
6
6
  "homepage": "https://code.deepline.com",