deepline 0.1.114 → 0.1.115
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 +11 -11
- package/dist/cli/index.mjs +11 -11
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/repo/sdk/src/release.ts +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -403,10 +403,10 @@ var SDK_RELEASE = {
|
|
|
403
403
|
// skill on the sdk sync surface, and the people-search-to-email prebuilt.
|
|
404
404
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
405
405
|
// the SDK enrich generator's one-second stale policy.
|
|
406
|
-
version: "0.1.
|
|
406
|
+
version: "0.1.115",
|
|
407
407
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
408
408
|
supportPolicy: {
|
|
409
|
-
latest: "0.1.
|
|
409
|
+
latest: "0.1.115",
|
|
410
410
|
minimumSupported: "0.1.53",
|
|
411
411
|
deprecatedBelow: "0.1.53",
|
|
412
412
|
commandMinimumSupported: [
|
|
@@ -15016,11 +15016,11 @@ Concepts:
|
|
|
15016
15016
|
|
|
15017
15017
|
Common commands:
|
|
15018
15018
|
deepline plays search email --json
|
|
15019
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15019
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15020
15020
|
deepline plays check my.play.ts
|
|
15021
15021
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
15022
15022
|
deepline plays set-live my.play.ts --json
|
|
15023
|
-
deepline plays get person-linkedin-to-email --json
|
|
15023
|
+
deepline plays get prebuilt/person-linkedin-to-email --json
|
|
15024
15024
|
`
|
|
15025
15025
|
);
|
|
15026
15026
|
play.command("check <target>").description("Check a local play file or named/prebuilt play contract.").addHelpText(
|
|
@@ -15089,7 +15089,7 @@ Idempotent execution:
|
|
|
15089
15089
|
Examples:
|
|
15090
15090
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
15091
15091
|
deepline plays run my.play.ts --input @input.json --json
|
|
15092
|
-
deepline plays run person-linkedin-to-email --input '{"linkedin_url":"..."}'
|
|
15092
|
+
deepline plays run prebuilt/person-linkedin-to-email --input '{"linkedin_url":"..."}'
|
|
15093
15093
|
deepline plays run cto-search.play.ts --limit 5
|
|
15094
15094
|
deepline plays run long-background-play --no-wait
|
|
15095
15095
|
deepline runs export <run-id> --out output.csv
|
|
@@ -15156,8 +15156,8 @@ Notes:
|
|
|
15156
15156
|
contract and examples.
|
|
15157
15157
|
|
|
15158
15158
|
Examples:
|
|
15159
|
-
deepline plays get person-linkedin-to-email
|
|
15160
|
-
deepline plays get person-linkedin-to-email --json | jq '.play.liveRevision'
|
|
15159
|
+
deepline plays get prebuilt/person-linkedin-to-email
|
|
15160
|
+
deepline plays get prebuilt/person-linkedin-to-email --json | jq '.play.liveRevision'
|
|
15161
15161
|
deepline plays get prebuilt/name-and-domain-to-email-waterfall-batch --source > email-waterfall.play.ts
|
|
15162
15162
|
deepline plays get prebuilt/name-and-domain-to-email-waterfall-batch --source --out ./email-waterfall.play.ts
|
|
15163
15163
|
`
|
|
@@ -15209,7 +15209,7 @@ Examples:
|
|
|
15209
15209
|
deepline plays search email
|
|
15210
15210
|
deepline plays search email --all
|
|
15211
15211
|
deepline plays grep "linkedin to email" --compact --json
|
|
15212
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15212
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15213
15213
|
`
|
|
15214
15214
|
).option("--compact", "Emit compact schemas").option("--json", "Emit JSON output. Also automatic when stdout is piped").action(async (query, options) => {
|
|
15215
15215
|
process.exitCode = await handlePlaySearch([
|
|
@@ -15251,8 +15251,8 @@ Notes:
|
|
|
15251
15251
|
Use \`get\` when you need full metadata, revisions, source fields, or latest runs.
|
|
15252
15252
|
|
|
15253
15253
|
Examples:
|
|
15254
|
-
deepline plays describe person-linkedin-to-email
|
|
15255
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15254
|
+
deepline plays describe prebuilt/person-linkedin-to-email
|
|
15255
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15256
15256
|
deepline plays get prebuilt/person-linkedin-to-email --source --out ./person-linkedin-to-email.play.ts
|
|
15257
15257
|
`
|
|
15258
15258
|
).option("--compact", "Emit compact schemas").option("--json", "Emit JSON output. Also automatic when stdout is piped").action(async (target, options) => {
|
|
@@ -23734,7 +23734,7 @@ Common commands:
|
|
|
23734
23734
|
deepline auth status --json
|
|
23735
23735
|
deepline sessions send --current-session --json
|
|
23736
23736
|
deepline plays search email --json
|
|
23737
|
-
deepline plays describe person-linkedin-to-email --json
|
|
23737
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
23738
23738
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
23739
23739
|
deepline secrets check HUBSPOT_TOKEN
|
|
23740
23740
|
deepline tools execute hunter_email_verifier --input '{"email":"a@b.com"}'
|
package/dist/cli/index.mjs
CHANGED
|
@@ -380,10 +380,10 @@ var SDK_RELEASE = {
|
|
|
380
380
|
// skill on the sdk sync surface, and the people-search-to-email prebuilt.
|
|
381
381
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
382
382
|
// the SDK enrich generator's one-second stale policy.
|
|
383
|
-
version: "0.1.
|
|
383
|
+
version: "0.1.115",
|
|
384
384
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
385
385
|
supportPolicy: {
|
|
386
|
-
latest: "0.1.
|
|
386
|
+
latest: "0.1.115",
|
|
387
387
|
minimumSupported: "0.1.53",
|
|
388
388
|
deprecatedBelow: "0.1.53",
|
|
389
389
|
commandMinimumSupported: [
|
|
@@ -15034,11 +15034,11 @@ Concepts:
|
|
|
15034
15034
|
|
|
15035
15035
|
Common commands:
|
|
15036
15036
|
deepline plays search email --json
|
|
15037
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15037
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15038
15038
|
deepline plays check my.play.ts
|
|
15039
15039
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
15040
15040
|
deepline plays set-live my.play.ts --json
|
|
15041
|
-
deepline plays get person-linkedin-to-email --json
|
|
15041
|
+
deepline plays get prebuilt/person-linkedin-to-email --json
|
|
15042
15042
|
`
|
|
15043
15043
|
);
|
|
15044
15044
|
play.command("check <target>").description("Check a local play file or named/prebuilt play contract.").addHelpText(
|
|
@@ -15107,7 +15107,7 @@ Idempotent execution:
|
|
|
15107
15107
|
Examples:
|
|
15108
15108
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
15109
15109
|
deepline plays run my.play.ts --input @input.json --json
|
|
15110
|
-
deepline plays run person-linkedin-to-email --input '{"linkedin_url":"..."}'
|
|
15110
|
+
deepline plays run prebuilt/person-linkedin-to-email --input '{"linkedin_url":"..."}'
|
|
15111
15111
|
deepline plays run cto-search.play.ts --limit 5
|
|
15112
15112
|
deepline plays run long-background-play --no-wait
|
|
15113
15113
|
deepline runs export <run-id> --out output.csv
|
|
@@ -15174,8 +15174,8 @@ Notes:
|
|
|
15174
15174
|
contract and examples.
|
|
15175
15175
|
|
|
15176
15176
|
Examples:
|
|
15177
|
-
deepline plays get person-linkedin-to-email
|
|
15178
|
-
deepline plays get person-linkedin-to-email --json | jq '.play.liveRevision'
|
|
15177
|
+
deepline plays get prebuilt/person-linkedin-to-email
|
|
15178
|
+
deepline plays get prebuilt/person-linkedin-to-email --json | jq '.play.liveRevision'
|
|
15179
15179
|
deepline plays get prebuilt/name-and-domain-to-email-waterfall-batch --source > email-waterfall.play.ts
|
|
15180
15180
|
deepline plays get prebuilt/name-and-domain-to-email-waterfall-batch --source --out ./email-waterfall.play.ts
|
|
15181
15181
|
`
|
|
@@ -15227,7 +15227,7 @@ Examples:
|
|
|
15227
15227
|
deepline plays search email
|
|
15228
15228
|
deepline plays search email --all
|
|
15229
15229
|
deepline plays grep "linkedin to email" --compact --json
|
|
15230
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15230
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15231
15231
|
`
|
|
15232
15232
|
).option("--compact", "Emit compact schemas").option("--json", "Emit JSON output. Also automatic when stdout is piped").action(async (query, options) => {
|
|
15233
15233
|
process.exitCode = await handlePlaySearch([
|
|
@@ -15269,8 +15269,8 @@ Notes:
|
|
|
15269
15269
|
Use \`get\` when you need full metadata, revisions, source fields, or latest runs.
|
|
15270
15270
|
|
|
15271
15271
|
Examples:
|
|
15272
|
-
deepline plays describe person-linkedin-to-email
|
|
15273
|
-
deepline plays describe person-linkedin-to-email --json
|
|
15272
|
+
deepline plays describe prebuilt/person-linkedin-to-email
|
|
15273
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
15274
15274
|
deepline plays get prebuilt/person-linkedin-to-email --source --out ./person-linkedin-to-email.play.ts
|
|
15275
15275
|
`
|
|
15276
15276
|
).option("--compact", "Emit compact schemas").option("--json", "Emit JSON output. Also automatic when stdout is piped").action(async (target, options) => {
|
|
@@ -23772,7 +23772,7 @@ Common commands:
|
|
|
23772
23772
|
deepline auth status --json
|
|
23773
23773
|
deepline sessions send --current-session --json
|
|
23774
23774
|
deepline plays search email --json
|
|
23775
|
-
deepline plays describe person-linkedin-to-email --json
|
|
23775
|
+
deepline plays describe prebuilt/person-linkedin-to-email --json
|
|
23776
23776
|
deepline plays run my.play.ts --input '{"domain":"stripe.com"}'
|
|
23777
23777
|
deepline secrets check HUBSPOT_TOKEN
|
|
23778
23778
|
deepline tools execute hunter_email_verifier --input '{"email":"a@b.com"}'
|
package/dist/index.js
CHANGED
|
@@ -274,10 +274,10 @@ var SDK_RELEASE = {
|
|
|
274
274
|
// skill on the sdk sync surface, and the people-search-to-email prebuilt.
|
|
275
275
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
276
276
|
// the SDK enrich generator's one-second stale policy.
|
|
277
|
-
version: "0.1.
|
|
277
|
+
version: "0.1.115",
|
|
278
278
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
279
279
|
supportPolicy: {
|
|
280
|
-
latest: "0.1.
|
|
280
|
+
latest: "0.1.115",
|
|
281
281
|
minimumSupported: "0.1.53",
|
|
282
282
|
deprecatedBelow: "0.1.53",
|
|
283
283
|
commandMinimumSupported: [
|
package/dist/index.mjs
CHANGED
|
@@ -196,10 +196,10 @@ var SDK_RELEASE = {
|
|
|
196
196
|
// skill on the sdk sync surface, and the people-search-to-email prebuilt.
|
|
197
197
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
198
198
|
// the SDK enrich generator's one-second stale policy.
|
|
199
|
-
version: "0.1.
|
|
199
|
+
version: "0.1.115",
|
|
200
200
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
201
201
|
supportPolicy: {
|
|
202
|
-
latest: "0.1.
|
|
202
|
+
latest: "0.1.115",
|
|
203
203
|
minimumSupported: "0.1.53",
|
|
204
204
|
deprecatedBelow: "0.1.53",
|
|
205
205
|
commandMinimumSupported: [
|
|
@@ -99,10 +99,10 @@ export const SDK_RELEASE = {
|
|
|
99
99
|
// skill on the sdk sync surface, and the people-search-to-email prebuilt.
|
|
100
100
|
// 0.1.108 ships explicit dataset column/tool recompute policy and removes
|
|
101
101
|
// the SDK enrich generator's one-second stale policy.
|
|
102
|
-
version: '0.1.
|
|
102
|
+
version: '0.1.115',
|
|
103
103
|
apiContract: '2026-06-dataset-column-cell-stale-hard-cutover',
|
|
104
104
|
supportPolicy: {
|
|
105
|
-
latest: '0.1.
|
|
105
|
+
latest: '0.1.115',
|
|
106
106
|
minimumSupported: '0.1.53',
|
|
107
107
|
deprecatedBelow: '0.1.53',
|
|
108
108
|
commandMinimumSupported: [
|