deepline 0.3.52 → 0.3.53
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 +7 -3
- package/dist/cli/index.mjs +7 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -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.53',
|
|
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
|
@@ -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.53",
|
|
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
|
|
@@ -39716,7 +39716,11 @@ async function handleEnable(id, options) {
|
|
|
39716
39716
|
}
|
|
39717
39717
|
async function handleApply(options) {
|
|
39718
39718
|
const body = await readJsonOption(options.payload, options.file);
|
|
39719
|
-
emitPassThrough(
|
|
39719
|
+
emitPassThrough(
|
|
39720
|
+
"apply",
|
|
39721
|
+
await clientWithTimeout(options.timeout).applyWorkflow(body),
|
|
39722
|
+
options
|
|
39723
|
+
);
|
|
39720
39724
|
}
|
|
39721
39725
|
async function handleLint(options) {
|
|
39722
39726
|
const body = await readJsonOption(options.payload, options.file);
|
|
@@ -39831,7 +39835,7 @@ Notes:
|
|
|
39831
39835
|
workflows.command("delete <id>").description("Delete a workflow and its revisions/runs.")
|
|
39832
39836
|
).action(handleDelete);
|
|
39833
39837
|
withJsonOption2(
|
|
39834
|
-
workflows.command("apply").description("Create or update a workflow from config.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file")
|
|
39838
|
+
workflows.command("apply").description("Create or update a workflow from config.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file").option("--timeout <seconds>", "API read timeout in seconds.")
|
|
39835
39839
|
).action(handleApply);
|
|
39836
39840
|
withJsonOption2(
|
|
39837
39841
|
workflows.command("lint").description("Validate a workflow config without saving.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file")
|
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.53",
|
|
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
|
|
@@ -39839,7 +39839,11 @@ async function handleEnable(id, options) {
|
|
|
39839
39839
|
}
|
|
39840
39840
|
async function handleApply(options) {
|
|
39841
39841
|
const body = await readJsonOption(options.payload, options.file);
|
|
39842
|
-
emitPassThrough(
|
|
39842
|
+
emitPassThrough(
|
|
39843
|
+
"apply",
|
|
39844
|
+
await clientWithTimeout(options.timeout).applyWorkflow(body),
|
|
39845
|
+
options
|
|
39846
|
+
);
|
|
39843
39847
|
}
|
|
39844
39848
|
async function handleLint(options) {
|
|
39845
39849
|
const body = await readJsonOption(options.payload, options.file);
|
|
@@ -39954,7 +39958,7 @@ Notes:
|
|
|
39954
39958
|
workflows.command("delete <id>").description("Delete a workflow and its revisions/runs.")
|
|
39955
39959
|
).action(handleDelete);
|
|
39956
39960
|
withJsonOption2(
|
|
39957
|
-
workflows.command("apply").description("Create or update a workflow from config.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file")
|
|
39961
|
+
workflows.command("apply").description("Create or update a workflow from config.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file").option("--timeout <seconds>", "API read timeout in seconds.")
|
|
39958
39962
|
).action(handleApply);
|
|
39959
39963
|
withJsonOption2(
|
|
39960
39964
|
workflows.command("lint").description("Validate a workflow config without saving.").option("--payload <json>", "Inline config JSON").option("--file <path>", "Path to a config JSON file")
|
package/dist/index.js
CHANGED
|
@@ -816,7 +816,7 @@ var SDK_RELEASE = {
|
|
|
816
816
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
817
817
|
// getters keep their established compatibility behavior.
|
|
818
818
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
819
|
-
version: "0.3.
|
|
819
|
+
version: "0.3.53",
|
|
820
820
|
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.",
|
|
821
821
|
packageCapabilities: {
|
|
822
822
|
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.53",
|
|
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
|