deepline 0.3.51 → 0.3.52

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.51',
202
+ version: '0.3.52',
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.51",
1078
+ version: "0.3.52",
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
- nodes.set(absolutePath, bundleResult);
17679
- for (const dependency of bundleResult.importedPlayDependencies) {
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 bundleResult;
17688
+ return bundledNode;
17683
17689
  } finally {
17684
17690
  visiting.delete(absolutePath);
17685
17691
  }
@@ -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.51",
1063
+ version: "0.3.52",
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
- nodes.set(absolutePath, bundleResult);
17741
- for (const dependency of bundleResult.importedPlayDependencies) {
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 bundleResult;
17750
+ return bundledNode;
17745
17751
  } finally {
17746
17752
  visiting.delete(absolutePath);
17747
17753
  }
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.51",
819
+ version: "0.3.52",
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.51",
741
+ version: "0.3.52",
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.3.51",
3
+ "version": "0.3.52",
4
4
  "description": "GTM data CLI and TypeScript SDK for coding agents",
5
5
  "license": "MIT",
6
6
  "homepage": "https://code.deepline.com",