deepline 0.2.4 → 0.2.5

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.
@@ -160,7 +160,7 @@ export const SDK_RELEASE = {
160
160
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
161
161
  // exposed storage-dependent synchronous access. This deliberate minor
162
162
  // release keeps lazy paging semantics independent of row residency.
163
- version: '0.2.4',
163
+ version: '0.2.5',
164
164
  contracts: {
165
165
  api: {
166
166
  name: 'sdk-http-api',
@@ -134,15 +134,21 @@ export function createRuntimeSandboxPlacementBackend(input: {
134
134
  ) {
135
135
  throw error;
136
136
  }
137
- console.warn('[play-runner.sandbox_provider_fallback]', {
138
- runId: config.context.runId ?? null,
139
- workflowId: config.context.workflowId ?? null,
140
- policyId: input.policy.id,
141
- from: provider,
142
- to: nextProvider,
143
- stage: 'acquisition',
144
- reason,
145
- });
137
+ // Keep this one-line JSON event parseable by the lifecycle gate. It
138
+ // is the durable proof that a completed Modal run was an allowed
139
+ // pre-code Daytona transition, rather than a direct Modal launch.
140
+ console.warn(
141
+ '[play-runner.sandbox_provider_fallback]',
142
+ JSON.stringify({
143
+ runId: config.context.runId ?? null,
144
+ workflowId: config.context.workflowId ?? null,
145
+ policyId: input.policy.id,
146
+ from: provider,
147
+ to: nextProvider,
148
+ stage: 'acquisition',
149
+ reason,
150
+ }),
151
+ );
146
152
  }
147
153
  }
148
154
  throw new Error(
package/dist/cli/index.js CHANGED
@@ -1040,7 +1040,7 @@ var SDK_RELEASE = {
1040
1040
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
1041
1041
  // exposed storage-dependent synchronous access. This deliberate minor
1042
1042
  // release keeps lazy paging semantics independent of row residency.
1043
- version: "0.2.4",
1043
+ version: "0.2.5",
1044
1044
  contracts: {
1045
1045
  api: {
1046
1046
  name: "sdk-http-api",
@@ -1025,7 +1025,7 @@ var SDK_RELEASE = {
1025
1025
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
1026
1026
  // exposed storage-dependent synchronous access. This deliberate minor
1027
1027
  // release keeps lazy paging semantics independent of row residency.
1028
- version: "0.2.4",
1028
+ version: "0.2.5",
1029
1029
  contracts: {
1030
1030
  api: {
1031
1031
  name: "sdk-http-api",
package/dist/index.js CHANGED
@@ -763,7 +763,7 @@ var SDK_RELEASE = {
763
763
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
764
764
  // exposed storage-dependent synchronous access. This deliberate minor
765
765
  // release keeps lazy paging semantics independent of row residency.
766
- version: "0.2.4",
766
+ version: "0.2.5",
767
767
  contracts: {
768
768
  api: {
769
769
  name: "sdk-http-api",
package/dist/index.mjs CHANGED
@@ -689,7 +689,7 @@ var SDK_RELEASE = {
689
689
  // 0.2.0 makes Dataset Handles uniformly async-only after 0.1.320 briefly
690
690
  // exposed storage-dependent synchronous access. This deliberate minor
691
691
  // release keeps lazy paging semantics independent of row residency.
692
- version: "0.2.4",
692
+ version: "0.2.5",
693
693
  contracts: {
694
694
  api: {
695
695
  name: "sdk-http-api",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {