deepline 0.1.40 → 0.1.41

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/cli/index.js CHANGED
@@ -216,7 +216,7 @@ function resolveConfig(options) {
216
216
  }
217
217
 
218
218
  // src/version.ts
219
- var SDK_VERSION = "0.1.40";
219
+ var SDK_VERSION = "0.1.41";
220
220
  var SDK_API_CONTRACT = "2026-05-cloud-play-search";
221
221
 
222
222
  // ../shared_libs/play-runtime/coordinator-headers.ts
@@ -193,7 +193,7 @@ function resolveConfig(options) {
193
193
  }
194
194
 
195
195
  // src/version.ts
196
- var SDK_VERSION = "0.1.40";
196
+ var SDK_VERSION = "0.1.41";
197
197
  var SDK_API_CONTRACT = "2026-05-cloud-play-search";
198
198
 
199
199
  // ../shared_libs/play-runtime/coordinator-headers.ts
package/dist/index.d.mts CHANGED
@@ -1477,7 +1477,7 @@ declare class DeeplineClient {
1477
1477
  }>;
1478
1478
  }
1479
1479
 
1480
- declare const SDK_VERSION = "0.1.40";
1480
+ declare const SDK_VERSION = "0.1.41";
1481
1481
  declare const SDK_API_CONTRACT = "2026-05-cloud-play-search";
1482
1482
 
1483
1483
  /**
package/dist/index.d.ts CHANGED
@@ -1477,7 +1477,7 @@ declare class DeeplineClient {
1477
1477
  }>;
1478
1478
  }
1479
1479
 
1480
- declare const SDK_VERSION = "0.1.40";
1480
+ declare const SDK_VERSION = "0.1.41";
1481
1481
  declare const SDK_API_CONTRACT = "2026-05-cloud-play-search";
1482
1482
 
1483
1483
  /**
package/dist/index.js CHANGED
@@ -215,7 +215,7 @@ function resolveConfig(options) {
215
215
  }
216
216
 
217
217
  // src/version.ts
218
- var SDK_VERSION = "0.1.40";
218
+ var SDK_VERSION = "0.1.41";
219
219
  var SDK_API_CONTRACT = "2026-05-cloud-play-search";
220
220
 
221
221
  // ../shared_libs/play-runtime/coordinator-headers.ts
package/dist/index.mjs CHANGED
@@ -169,7 +169,7 @@ function resolveConfig(options) {
169
169
  }
170
170
 
171
171
  // src/version.ts
172
- var SDK_VERSION = "0.1.40";
172
+ var SDK_VERSION = "0.1.41";
173
173
  var SDK_API_CONTRACT = "2026-05-cloud-play-search";
174
174
 
175
175
  // ../shared_libs/play-runtime/coordinator-headers.ts
@@ -1357,6 +1357,15 @@ async function executeSyntheticTestRateLimitBatch(
1357
1357
  req: RunRequest,
1358
1358
  input: Record<string, unknown>,
1359
1359
  ): Promise<Record<string, unknown>> {
1360
+ const delayMs =
1361
+ typeof input.simulated_delay_ms === 'number' &&
1362
+ Number.isInteger(input.simulated_delay_ms) &&
1363
+ input.simulated_delay_ms > 0
1364
+ ? input.simulated_delay_ms
1365
+ : 0;
1366
+ if (delayMs > 0) {
1367
+ await new Promise((resolve) => setTimeout(resolve, delayMs));
1368
+ }
1360
1369
  const rawItems = Array.isArray(input.items) ? input.items : [];
1361
1370
  const items = rawItems
1362
1371
  .filter((item): item is Record<string, unknown> =>
@@ -1,2 +1,2 @@
1
- export const SDK_VERSION = "0.1.40";
1
+ export const SDK_VERSION = "0.1.41";
2
2
  export const SDK_API_CONTRACT = "2026-05-cloud-play-search";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {