deepline 0.3.51 → 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 +16 -6
- package/dist/cli/index.mjs +16 -6
- 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
|
|
@@ -17675,11 +17675,17 @@ async function collectBundledPlayGraph(entryFile, profile = null, entryExportNam
|
|
|
17675
17675
|
)
|
|
17676
17676
|
);
|
|
17677
17677
|
}
|
|
17678
|
-
|
|
17679
|
-
|
|
17678
|
+
const bundledNode = {
|
|
17679
|
+
...bundleResult,
|
|
17680
|
+
artifact: artifactForProductionCompatibilityCheck(
|
|
17681
|
+
bundleResult.artifact
|
|
17682
|
+
)
|
|
17683
|
+
};
|
|
17684
|
+
nodes.set(absolutePath, bundledNode);
|
|
17685
|
+
for (const dependency of bundledNode.importedPlayDependencies) {
|
|
17680
17686
|
await visit(dependency.filePath);
|
|
17681
17687
|
}
|
|
17682
|
-
return
|
|
17688
|
+
return bundledNode;
|
|
17683
17689
|
} finally {
|
|
17684
17690
|
visiting.delete(absolutePath);
|
|
17685
17691
|
}
|
|
@@ -39710,7 +39716,11 @@ async function handleEnable(id, options) {
|
|
|
39710
39716
|
}
|
|
39711
39717
|
async function handleApply(options) {
|
|
39712
39718
|
const body = await readJsonOption(options.payload, options.file);
|
|
39713
|
-
emitPassThrough(
|
|
39719
|
+
emitPassThrough(
|
|
39720
|
+
"apply",
|
|
39721
|
+
await clientWithTimeout(options.timeout).applyWorkflow(body),
|
|
39722
|
+
options
|
|
39723
|
+
);
|
|
39714
39724
|
}
|
|
39715
39725
|
async function handleLint(options) {
|
|
39716
39726
|
const body = await readJsonOption(options.payload, options.file);
|
|
@@ -39825,7 +39835,7 @@ Notes:
|
|
|
39825
39835
|
workflows.command("delete <id>").description("Delete a workflow and its revisions/runs.")
|
|
39826
39836
|
).action(handleDelete);
|
|
39827
39837
|
withJsonOption2(
|
|
39828
|
-
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.")
|
|
39829
39839
|
).action(handleApply);
|
|
39830
39840
|
withJsonOption2(
|
|
39831
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
|
|
@@ -17737,11 +17737,17 @@ async function collectBundledPlayGraph(entryFile, profile = null, entryExportNam
|
|
|
17737
17737
|
)
|
|
17738
17738
|
);
|
|
17739
17739
|
}
|
|
17740
|
-
|
|
17741
|
-
|
|
17740
|
+
const bundledNode = {
|
|
17741
|
+
...bundleResult,
|
|
17742
|
+
artifact: artifactForProductionCompatibilityCheck(
|
|
17743
|
+
bundleResult.artifact
|
|
17744
|
+
)
|
|
17745
|
+
};
|
|
17746
|
+
nodes.set(absolutePath, bundledNode);
|
|
17747
|
+
for (const dependency of bundledNode.importedPlayDependencies) {
|
|
17742
17748
|
await visit(dependency.filePath);
|
|
17743
17749
|
}
|
|
17744
|
-
return
|
|
17750
|
+
return bundledNode;
|
|
17745
17751
|
} finally {
|
|
17746
17752
|
visiting.delete(absolutePath);
|
|
17747
17753
|
}
|
|
@@ -39833,7 +39839,11 @@ async function handleEnable(id, options) {
|
|
|
39833
39839
|
}
|
|
39834
39840
|
async function handleApply(options) {
|
|
39835
39841
|
const body = await readJsonOption(options.payload, options.file);
|
|
39836
|
-
emitPassThrough(
|
|
39842
|
+
emitPassThrough(
|
|
39843
|
+
"apply",
|
|
39844
|
+
await clientWithTimeout(options.timeout).applyWorkflow(body),
|
|
39845
|
+
options
|
|
39846
|
+
);
|
|
39837
39847
|
}
|
|
39838
39848
|
async function handleLint(options) {
|
|
39839
39849
|
const body = await readJsonOption(options.payload, options.file);
|
|
@@ -39948,7 +39958,7 @@ Notes:
|
|
|
39948
39958
|
workflows.command("delete <id>").description("Delete a workflow and its revisions/runs.")
|
|
39949
39959
|
).action(handleDelete);
|
|
39950
39960
|
withJsonOption2(
|
|
39951
|
-
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.")
|
|
39952
39962
|
).action(handleApply);
|
|
39953
39963
|
withJsonOption2(
|
|
39954
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
|