deepline 0.1.135 → 0.1.136
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 +2 -2
- package/dist/cli/index.js +12 -2
- package/dist/cli/index.mjs +12 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -101,10 +101,10 @@ export const SDK_RELEASE = {
|
|
|
101
101
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
102
102
|
// the SDK enrich generator's one-second stale policy.
|
|
103
103
|
// 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
|
|
104
|
-
version: '0.1.
|
|
104
|
+
version: '0.1.136',
|
|
105
105
|
apiContract: '2026-06-dataset-column-cell-stale-hard-cutover',
|
|
106
106
|
supportPolicy: {
|
|
107
|
-
latest: '0.1.
|
|
107
|
+
latest: '0.1.136',
|
|
108
108
|
minimumSupported: '0.1.53',
|
|
109
109
|
deprecatedBelow: '0.1.53',
|
|
110
110
|
commandMinimumSupported: [
|
package/dist/cli/index.js
CHANGED
|
@@ -413,10 +413,10 @@ var SDK_RELEASE = {
|
|
|
413
413
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
414
414
|
// the SDK enrich generator's one-second stale policy.
|
|
415
415
|
// 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
|
|
416
|
-
version: "0.1.
|
|
416
|
+
version: "0.1.136",
|
|
417
417
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
418
418
|
supportPolicy: {
|
|
419
|
-
latest: "0.1.
|
|
419
|
+
latest: "0.1.136",
|
|
420
420
|
minimumSupported: "0.1.53",
|
|
421
421
|
deprecatedBelow: "0.1.53",
|
|
422
422
|
commandMinimumSupported: [
|
|
@@ -15978,6 +15978,15 @@ function helperSource() {
|
|
|
15978
15978
|
` };`,
|
|
15979
15979
|
`}`,
|
|
15980
15980
|
``,
|
|
15981
|
+
`function __dlBlankPayloadValue(value: unknown): boolean {`,
|
|
15982
|
+
` return value === null || value === undefined || (typeof value === 'string' && value.trim() === '');`,
|
|
15983
|
+
`}`,
|
|
15984
|
+
``,
|
|
15985
|
+
`function __dlShouldSkipEmptyPayload(tool: string, payload: Record<string, unknown>): boolean {`,
|
|
15986
|
+
` if (tool === 'leadmagic_email_validation') return __dlBlankPayloadValue(payload.email);`,
|
|
15987
|
+
` return false;`,
|
|
15988
|
+
`}`,
|
|
15989
|
+
``,
|
|
15981
15990
|
`function __dlAliasCandidates(alias: string): string[] {`,
|
|
15982
15991
|
` const aliases: string[] = [];`,
|
|
15983
15992
|
` for (const candidate of [alias, alias.replace(/-/g, '_'), alias.replace(/_/g, '-')]) {`,
|
|
@@ -16004,6 +16013,7 @@ function helperSource() {
|
|
|
16004
16013
|
` if (!shouldRun) return null;`,
|
|
16005
16014
|
` }`,
|
|
16006
16015
|
` const payload = __dlRuntimePayload(input.tool, __dlTemplate(input.payload, input.row) as Record<string, unknown>, input.row);`,
|
|
16016
|
+
` if (__dlShouldSkipEmptyPayload(input.tool, payload)) return null;`,
|
|
16007
16017
|
` let result: unknown;`,
|
|
16008
16018
|
` try {`,
|
|
16009
16019
|
` result = await input.stepCtx.tools.execute({`,
|
package/dist/cli/index.mjs
CHANGED
|
@@ -390,10 +390,10 @@ var SDK_RELEASE = {
|
|
|
390
390
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
391
391
|
// the SDK enrich generator's one-second stale policy.
|
|
392
392
|
// 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
|
|
393
|
-
version: "0.1.
|
|
393
|
+
version: "0.1.136",
|
|
394
394
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
395
395
|
supportPolicy: {
|
|
396
|
-
latest: "0.1.
|
|
396
|
+
latest: "0.1.136",
|
|
397
397
|
minimumSupported: "0.1.53",
|
|
398
398
|
deprecatedBelow: "0.1.53",
|
|
399
399
|
commandMinimumSupported: [
|
|
@@ -15987,6 +15987,15 @@ function helperSource() {
|
|
|
15987
15987
|
` };`,
|
|
15988
15988
|
`}`,
|
|
15989
15989
|
``,
|
|
15990
|
+
`function __dlBlankPayloadValue(value: unknown): boolean {`,
|
|
15991
|
+
` return value === null || value === undefined || (typeof value === 'string' && value.trim() === '');`,
|
|
15992
|
+
`}`,
|
|
15993
|
+
``,
|
|
15994
|
+
`function __dlShouldSkipEmptyPayload(tool: string, payload: Record<string, unknown>): boolean {`,
|
|
15995
|
+
` if (tool === 'leadmagic_email_validation') return __dlBlankPayloadValue(payload.email);`,
|
|
15996
|
+
` return false;`,
|
|
15997
|
+
`}`,
|
|
15998
|
+
``,
|
|
15990
15999
|
`function __dlAliasCandidates(alias: string): string[] {`,
|
|
15991
16000
|
` const aliases: string[] = [];`,
|
|
15992
16001
|
` for (const candidate of [alias, alias.replace(/-/g, '_'), alias.replace(/_/g, '-')]) {`,
|
|
@@ -16013,6 +16022,7 @@ function helperSource() {
|
|
|
16013
16022
|
` if (!shouldRun) return null;`,
|
|
16014
16023
|
` }`,
|
|
16015
16024
|
` const payload = __dlRuntimePayload(input.tool, __dlTemplate(input.payload, input.row) as Record<string, unknown>, input.row);`,
|
|
16025
|
+
` if (__dlShouldSkipEmptyPayload(input.tool, payload)) return null;`,
|
|
16016
16026
|
` let result: unknown;`,
|
|
16017
16027
|
` try {`,
|
|
16018
16028
|
` result = await input.stepCtx.tools.execute({`,
|
package/dist/index.js
CHANGED
|
@@ -284,10 +284,10 @@ var SDK_RELEASE = {
|
|
|
284
284
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
285
285
|
// the SDK enrich generator's one-second stale policy.
|
|
286
286
|
// 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
|
|
287
|
-
version: "0.1.
|
|
287
|
+
version: "0.1.136",
|
|
288
288
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
289
289
|
supportPolicy: {
|
|
290
|
-
latest: "0.1.
|
|
290
|
+
latest: "0.1.136",
|
|
291
291
|
minimumSupported: "0.1.53",
|
|
292
292
|
deprecatedBelow: "0.1.53",
|
|
293
293
|
commandMinimumSupported: [
|
package/dist/index.mjs
CHANGED
|
@@ -206,10 +206,10 @@ var SDK_RELEASE = {
|
|
|
206
206
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
207
207
|
// the SDK enrich generator's one-second stale policy.
|
|
208
208
|
// 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
|
|
209
|
-
version: "0.1.
|
|
209
|
+
version: "0.1.136",
|
|
210
210
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
211
211
|
supportPolicy: {
|
|
212
|
-
latest: "0.1.
|
|
212
|
+
latest: "0.1.136",
|
|
213
213
|
minimumSupported: "0.1.53",
|
|
214
214
|
deprecatedBelow: "0.1.53",
|
|
215
215
|
commandMinimumSupported: [
|