deepline 0.3.56 → 0.3.57
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/http.ts +1 -1
- package/dist/bundling-sources/sdk/src/release.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/coordinator-headers.ts +1 -1
- package/dist/cli/index.js +9 -3
- package/dist/cli/index.mjs +9 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -272,7 +272,7 @@ export class HttpClient {
|
|
|
272
272
|
headers[RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER] =
|
|
273
273
|
runtimeSchedulerSchema.trim();
|
|
274
274
|
}
|
|
275
|
-
// Automated test harnesses (e.g. tests/
|
|
275
|
+
// Automated test harnesses (e.g. tests/gauntlet-e2e-tests) set DEEPLINE_SYNTHETIC_RUN
|
|
276
276
|
// so their intentionally failing plays do not page the SDK CLI error
|
|
277
277
|
// channel. Honored server-side only in non-prod (see plays/run route).
|
|
278
278
|
const syntheticRun =
|
|
@@ -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.
|
|
202
|
+
version: '0.3.57',
|
|
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: {
|
|
@@ -52,7 +52,7 @@ export const PREFERRED_RECEIPT_GATEWAY_MACHINE_ID_HEADER =
|
|
|
52
52
|
/**
|
|
53
53
|
* CLI→app marker (NOT a coordinator header — it lives here only because both
|
|
54
54
|
* the SDK HTTP client and the run route already import this module). Set by
|
|
55
|
-
* automated test harnesses (e.g. `tests/
|
|
55
|
+
* automated test harnesses (e.g. `tests/gauntlet-e2e-tests`) so their intentionally
|
|
56
56
|
* failing plays — depth-guard probes, error-path scenarios — do not page the
|
|
57
57
|
* SDK CLI error channel as if a real customer run had failed. The run route
|
|
58
58
|
* honors it ONLY in non-prod (see run/route.ts); a forged header from a real
|
package/dist/cli/index.js
CHANGED
|
@@ -1075,7 +1075,7 @@ var SDK_RELEASE = {
|
|
|
1075
1075
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
1076
1076
|
// getters keep their established compatibility behavior.
|
|
1077
1077
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
1078
|
-
version: "0.3.
|
|
1078
|
+
version: "0.3.57",
|
|
1079
1079
|
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.",
|
|
1080
1080
|
packageCapabilities: {
|
|
1081
1081
|
updatePreferences: 1
|
|
@@ -23759,10 +23759,16 @@ Concepts:
|
|
|
23759
23759
|
Authoring:
|
|
23760
23760
|
Use normal TypeScript interpolation for human-facing strings:
|
|
23761
23761
|
const readyMessage = \`Put \${input.title} through to send-ready.\`;
|
|
23762
|
-
An authored diagram is optional
|
|
23762
|
+
An authored diagram is optional but highly recommended for every new or
|
|
23763
|
+
substantially changed Play. Docflow parses only an explicit
|
|
23763
23764
|
/** @mermaid ... */ block and its // @mermaid-node annotations; ordinary
|
|
23764
23765
|
prose comments are never Docflow syntax. When Docflow is enabled, plays check
|
|
23765
|
-
gives missing diagrams a non-blocking
|
|
23766
|
+
gives missing diagrams a high-priority, non-blocking warning with the exact
|
|
23767
|
+
Mermaid repair steps. Without a diagram, users see only an inferred execution
|
|
23768
|
+
graph rather than a clear business-language map. It is easy to add: write a
|
|
23769
|
+
short top-of-file flowchart, annotate its visible executable steps, then run
|
|
23770
|
+
plays check again. Treat that warning as an authoring task before finishing
|
|
23771
|
+
Play work unless the caller explicitly asks to leave the inferred graph.
|
|
23766
23772
|
|
|
23767
23773
|
Common commands:
|
|
23768
23774
|
deepline plays search email --json
|
package/dist/cli/index.mjs
CHANGED
|
@@ -1060,7 +1060,7 @@ var SDK_RELEASE = {
|
|
|
1060
1060
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
1061
1061
|
// getters keep their established compatibility behavior.
|
|
1062
1062
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
1063
|
-
version: "0.3.
|
|
1063
|
+
version: "0.3.57",
|
|
1064
1064
|
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.",
|
|
1065
1065
|
packageCapabilities: {
|
|
1066
1066
|
updatePreferences: 1
|
|
@@ -23821,10 +23821,16 @@ Concepts:
|
|
|
23821
23821
|
Authoring:
|
|
23822
23822
|
Use normal TypeScript interpolation for human-facing strings:
|
|
23823
23823
|
const readyMessage = \`Put \${input.title} through to send-ready.\`;
|
|
23824
|
-
An authored diagram is optional
|
|
23824
|
+
An authored diagram is optional but highly recommended for every new or
|
|
23825
|
+
substantially changed Play. Docflow parses only an explicit
|
|
23825
23826
|
/** @mermaid ... */ block and its // @mermaid-node annotations; ordinary
|
|
23826
23827
|
prose comments are never Docflow syntax. When Docflow is enabled, plays check
|
|
23827
|
-
gives missing diagrams a non-blocking
|
|
23828
|
+
gives missing diagrams a high-priority, non-blocking warning with the exact
|
|
23829
|
+
Mermaid repair steps. Without a diagram, users see only an inferred execution
|
|
23830
|
+
graph rather than a clear business-language map. It is easy to add: write a
|
|
23831
|
+
short top-of-file flowchart, annotate its visible executable steps, then run
|
|
23832
|
+
plays check again. Treat that warning as an authoring task before finishing
|
|
23833
|
+
Play work unless the caller explicitly asks to leave the inferred graph.
|
|
23828
23834
|
|
|
23829
23835
|
Common commands:
|
|
23830
23836
|
deepline plays search email --json
|
package/dist/index.js
CHANGED
|
@@ -826,7 +826,7 @@ var SDK_RELEASE = {
|
|
|
826
826
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
827
827
|
// getters keep their established compatibility behavior.
|
|
828
828
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
829
|
-
version: "0.3.
|
|
829
|
+
version: "0.3.57",
|
|
830
830
|
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.",
|
|
831
831
|
packageCapabilities: {
|
|
832
832
|
updatePreferences: 1
|
package/dist/index.mjs
CHANGED
|
@@ -738,7 +738,7 @@ var SDK_RELEASE = {
|
|
|
738
738
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
739
739
|
// getters keep their established compatibility behavior.
|
|
740
740
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
741
|
-
version: "0.3.
|
|
741
|
+
version: "0.3.57",
|
|
742
742
|
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.",
|
|
743
743
|
packageCapabilities: {
|
|
744
744
|
updatePreferences: 1
|