deepline 0.1.267 → 0.1.268

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.
@@ -155,7 +155,7 @@ export const SDK_RELEASE = {
155
155
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
156
156
  // 0.1.254 removes the internal operations tree from the published SDK CLI.
157
157
  // Operators use the checkout-local deepline-admin binary instead.
158
- version: '0.1.267',
158
+ version: '0.1.268',
159
159
  contracts: {
160
160
  api: {
161
161
  name: 'sdk-http-api',
package/dist/cli/index.js CHANGED
@@ -718,7 +718,7 @@ var SDK_RELEASE = {
718
718
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
719
719
  // 0.1.254 removes the internal operations tree from the published SDK CLI.
720
720
  // Operators use the checkout-local deepline-admin binary instead.
721
- version: "0.1.267",
721
+ version: "0.1.268",
722
722
  contracts: {
723
723
  api: {
724
724
  name: "sdk-http-api",
@@ -30204,13 +30204,19 @@ function isNpmManagedDeeplinePath(path) {
30204
30204
  return false;
30205
30205
  }
30206
30206
  }
30207
+ function isInstallerManagedLegacyLauncher(path) {
30208
+ const content = safeRead(path);
30209
+ return content.includes("DEEPLINE_REAL_BINARY") && content.includes("DEEPLINE_ACTIVE_FILE");
30210
+ }
30207
30211
  function removeKnownLegacyPaths(baseUrl) {
30208
30212
  const home = (0, import_node_os15.homedir)();
30209
30213
  const hostDir = (0, import_node_path20.join)(home, ".local", "deepline", baseUrlSlug(baseUrl));
30214
+ const legacyLauncherPath = (0, import_node_path20.join)(home, ".local", "bin", "deepline");
30210
30215
  const installerCommandPath = safeRead(
30211
30216
  (0, import_node_path20.join)(hostDir, "sdk", ".command-path")
30212
30217
  ).trim();
30213
30218
  const candidates = [
30219
+ ...isInstallerManagedLegacyLauncher(legacyLauncherPath) ? [legacyLauncherPath] : [],
30214
30220
  (0, import_node_path20.join)(home, ".local", "bin", "deepline-real"),
30215
30221
  (0, import_node_path20.join)(hostDir, "bin", "deepline"),
30216
30222
  (0, import_node_path20.join)(hostDir, "bin", "deepline-real"),
@@ -703,7 +703,7 @@ var SDK_RELEASE = {
703
703
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
704
704
  // 0.1.254 removes the internal operations tree from the published SDK CLI.
705
705
  // Operators use the checkout-local deepline-admin binary instead.
706
- version: "0.1.267",
706
+ version: "0.1.268",
707
707
  contracts: {
708
708
  api: {
709
709
  name: "sdk-http-api",
@@ -30269,13 +30269,19 @@ function isNpmManagedDeeplinePath(path) {
30269
30269
  return false;
30270
30270
  }
30271
30271
  }
30272
+ function isInstallerManagedLegacyLauncher(path) {
30273
+ const content = safeRead(path);
30274
+ return content.includes("DEEPLINE_REAL_BINARY") && content.includes("DEEPLINE_ACTIVE_FILE");
30275
+ }
30272
30276
  function removeKnownLegacyPaths(baseUrl) {
30273
30277
  const home = homedir13();
30274
30278
  const hostDir = join16(home, ".local", "deepline", baseUrlSlug(baseUrl));
30279
+ const legacyLauncherPath = join16(home, ".local", "bin", "deepline");
30275
30280
  const installerCommandPath = safeRead(
30276
30281
  join16(hostDir, "sdk", ".command-path")
30277
30282
  ).trim();
30278
30283
  const candidates = [
30284
+ ...isInstallerManagedLegacyLauncher(legacyLauncherPath) ? [legacyLauncherPath] : [],
30279
30285
  join16(home, ".local", "bin", "deepline-real"),
30280
30286
  join16(hostDir, "bin", "deepline"),
30281
30287
  join16(hostDir, "bin", "deepline-real"),
package/dist/index.js CHANGED
@@ -437,7 +437,7 @@ var SDK_RELEASE = {
437
437
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
438
438
  // 0.1.254 removes the internal operations tree from the published SDK CLI.
439
439
  // Operators use the checkout-local deepline-admin binary instead.
440
- version: "0.1.267",
440
+ version: "0.1.268",
441
441
  contracts: {
442
442
  api: {
443
443
  name: "sdk-http-api",
package/dist/index.mjs CHANGED
@@ -367,7 +367,7 @@ var SDK_RELEASE = {
367
367
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
368
368
  // 0.1.254 removes the internal operations tree from the published SDK CLI.
369
369
  // Operators use the checkout-local deepline-admin binary instead.
370
- version: "0.1.267",
370
+ version: "0.1.268",
371
371
  contracts: {
372
372
  api: {
373
373
  name: "sdk-http-api",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.267",
3
+ "version": "0.1.268",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {