deepline 0.2.20 → 0.2.22
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/client.ts +43 -0
- package/dist/bundling-sources/sdk/src/release.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/app-runtime-api.ts +8 -0
- package/dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts +5 -0
- package/dist/bundling-sources/shared_libs/security/safe-outbound-fetch.ts +42 -12
- package/dist/cli/index.js +484 -142
- package/dist/cli/index.mjs +454 -112
- package/dist/index.d.mts +38 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +14 -1
- package/dist/index.mjs +14 -1
- package/dist/install-integrity.json +234 -0
- package/package.json +9 -5
package/dist/index.d.mts
CHANGED
|
@@ -1898,6 +1898,25 @@ type PlaySecretMetadata = {
|
|
|
1898
1898
|
type RunsNamespace = {
|
|
1899
1899
|
/** Get current run status by public run id. */
|
|
1900
1900
|
get: (runId: string, options?: RunsGetOptions) => Promise<PlayStatus>;
|
|
1901
|
+
/** Explicitly read the retained original input (may include customer data). */
|
|
1902
|
+
input: (runId: string) => Promise<{
|
|
1903
|
+
runId: string;
|
|
1904
|
+
input: Record<string, unknown> | unknown[];
|
|
1905
|
+
bytes: number;
|
|
1906
|
+
sha256: string | null;
|
|
1907
|
+
replayedFromRunId: string | null;
|
|
1908
|
+
}>;
|
|
1909
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
1910
|
+
rerun: (runId: string) => Promise<{
|
|
1911
|
+
runId: string;
|
|
1912
|
+
replayedFromRunId: string;
|
|
1913
|
+
revisionId: string | null;
|
|
1914
|
+
status: string;
|
|
1915
|
+
next: {
|
|
1916
|
+
inspect: string;
|
|
1917
|
+
input: string;
|
|
1918
|
+
};
|
|
1919
|
+
}>;
|
|
1901
1920
|
/** List runs for one play, optionally filtered by status. */
|
|
1902
1921
|
list: (options: RunsListOptions) => Promise<PlayRunListItem[]>;
|
|
1903
1922
|
/** Stream run events and return the latest/terminal run status. */
|
|
@@ -2984,6 +3003,25 @@ declare class DeeplineClient {
|
|
|
2984
3003
|
* tail to completion. Abort via `options.signal` to stop waiting.
|
|
2985
3004
|
*/
|
|
2986
3005
|
tailRun(runId: string, options?: RunsTailOptions): Promise<PlayStatus>;
|
|
3006
|
+
/** Get the exact original input retained for a run. This is intentionally separate from status. */
|
|
3007
|
+
getRunInput(runId: string): Promise<{
|
|
3008
|
+
runId: string;
|
|
3009
|
+
input: Record<string, unknown> | unknown[];
|
|
3010
|
+
bytes: number;
|
|
3011
|
+
sha256: string | null;
|
|
3012
|
+
replayedFromRunId: string | null;
|
|
3013
|
+
}>;
|
|
3014
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
3015
|
+
rerun(runId: string): Promise<{
|
|
3016
|
+
runId: string;
|
|
3017
|
+
replayedFromRunId: string;
|
|
3018
|
+
revisionId: string | null;
|
|
3019
|
+
status: string;
|
|
3020
|
+
next: {
|
|
3021
|
+
inspect: string;
|
|
3022
|
+
input: string;
|
|
3023
|
+
};
|
|
3024
|
+
}>;
|
|
2987
3025
|
/**
|
|
2988
3026
|
* Fetch persisted logs for a run using the public runs resource model.
|
|
2989
3027
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -1898,6 +1898,25 @@ type PlaySecretMetadata = {
|
|
|
1898
1898
|
type RunsNamespace = {
|
|
1899
1899
|
/** Get current run status by public run id. */
|
|
1900
1900
|
get: (runId: string, options?: RunsGetOptions) => Promise<PlayStatus>;
|
|
1901
|
+
/** Explicitly read the retained original input (may include customer data). */
|
|
1902
|
+
input: (runId: string) => Promise<{
|
|
1903
|
+
runId: string;
|
|
1904
|
+
input: Record<string, unknown> | unknown[];
|
|
1905
|
+
bytes: number;
|
|
1906
|
+
sha256: string | null;
|
|
1907
|
+
replayedFromRunId: string | null;
|
|
1908
|
+
}>;
|
|
1909
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
1910
|
+
rerun: (runId: string) => Promise<{
|
|
1911
|
+
runId: string;
|
|
1912
|
+
replayedFromRunId: string;
|
|
1913
|
+
revisionId: string | null;
|
|
1914
|
+
status: string;
|
|
1915
|
+
next: {
|
|
1916
|
+
inspect: string;
|
|
1917
|
+
input: string;
|
|
1918
|
+
};
|
|
1919
|
+
}>;
|
|
1901
1920
|
/** List runs for one play, optionally filtered by status. */
|
|
1902
1921
|
list: (options: RunsListOptions) => Promise<PlayRunListItem[]>;
|
|
1903
1922
|
/** Stream run events and return the latest/terminal run status. */
|
|
@@ -2984,6 +3003,25 @@ declare class DeeplineClient {
|
|
|
2984
3003
|
* tail to completion. Abort via `options.signal` to stop waiting.
|
|
2985
3004
|
*/
|
|
2986
3005
|
tailRun(runId: string, options?: RunsTailOptions): Promise<PlayStatus>;
|
|
3006
|
+
/** Get the exact original input retained for a run. This is intentionally separate from status. */
|
|
3007
|
+
getRunInput(runId: string): Promise<{
|
|
3008
|
+
runId: string;
|
|
3009
|
+
input: Record<string, unknown> | unknown[];
|
|
3010
|
+
bytes: number;
|
|
3011
|
+
sha256: string | null;
|
|
3012
|
+
replayedFromRunId: string | null;
|
|
3013
|
+
}>;
|
|
3014
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
3015
|
+
rerun(runId: string): Promise<{
|
|
3016
|
+
runId: string;
|
|
3017
|
+
replayedFromRunId: string;
|
|
3018
|
+
revisionId: string | null;
|
|
3019
|
+
status: string;
|
|
3020
|
+
next: {
|
|
3021
|
+
inspect: string;
|
|
3022
|
+
input: string;
|
|
3023
|
+
};
|
|
3024
|
+
}>;
|
|
2987
3025
|
/**
|
|
2988
3026
|
* Fetch persisted logs for a run using the public runs resource model.
|
|
2989
3027
|
*
|
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.
|
|
766
|
+
version: "0.2.22",
|
|
767
767
|
contracts: {
|
|
768
768
|
api: {
|
|
769
769
|
name: "sdk-http-api",
|
|
@@ -3494,6 +3494,8 @@ var DeeplineClient = class {
|
|
|
3494
3494
|
list: (options2) => this.listRuns(options2),
|
|
3495
3495
|
tail: (runId, options2) => this.tailRun(runId, options2),
|
|
3496
3496
|
logs: (runId, options2) => this.getRunLogs(runId, options2),
|
|
3497
|
+
input: (runId) => this.getRunInput(runId),
|
|
3498
|
+
rerun: (runId) => this.rerun(runId),
|
|
3497
3499
|
exportDatasetRows: (input) => this.getPlaySheetRows(input),
|
|
3498
3500
|
stop: (runId, options2) => this.stopRun(runId, options2),
|
|
3499
3501
|
stopAll: (options2) => this.stopAllRuns(options2)
|
|
@@ -4898,6 +4900,17 @@ var DeeplineClient = class {
|
|
|
4898
4900
|
await sleep2(delayMs);
|
|
4899
4901
|
}
|
|
4900
4902
|
}
|
|
4903
|
+
/** Get the exact original input retained for a run. This is intentionally separate from status. */
|
|
4904
|
+
async getRunInput(runId) {
|
|
4905
|
+
return this.http.get(`/api/v2/runs/${encodeURIComponent(runId)}/input`);
|
|
4906
|
+
}
|
|
4907
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
4908
|
+
async rerun(runId) {
|
|
4909
|
+
return this.http.post(
|
|
4910
|
+
`/api/v2/runs/${encodeURIComponent(runId)}/rerun`,
|
|
4911
|
+
{}
|
|
4912
|
+
);
|
|
4913
|
+
}
|
|
4901
4914
|
/**
|
|
4902
4915
|
* Fetch persisted logs for a run using the public runs resource model.
|
|
4903
4916
|
*
|
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.
|
|
692
|
+
version: "0.2.22",
|
|
693
693
|
contracts: {
|
|
694
694
|
api: {
|
|
695
695
|
name: "sdk-http-api",
|
|
@@ -3420,6 +3420,8 @@ var DeeplineClient = class {
|
|
|
3420
3420
|
list: (options2) => this.listRuns(options2),
|
|
3421
3421
|
tail: (runId, options2) => this.tailRun(runId, options2),
|
|
3422
3422
|
logs: (runId, options2) => this.getRunLogs(runId, options2),
|
|
3423
|
+
input: (runId) => this.getRunInput(runId),
|
|
3424
|
+
rerun: (runId) => this.rerun(runId),
|
|
3423
3425
|
exportDatasetRows: (input) => this.getPlaySheetRows(input),
|
|
3424
3426
|
stop: (runId, options2) => this.stopRun(runId, options2),
|
|
3425
3427
|
stopAll: (options2) => this.stopAllRuns(options2)
|
|
@@ -4824,6 +4826,17 @@ var DeeplineClient = class {
|
|
|
4824
4826
|
await sleep2(delayMs);
|
|
4825
4827
|
}
|
|
4826
4828
|
}
|
|
4829
|
+
/** Get the exact original input retained for a run. This is intentionally separate from status. */
|
|
4830
|
+
async getRunInput(runId) {
|
|
4831
|
+
return this.http.get(`/api/v2/runs/${encodeURIComponent(runId)}/input`);
|
|
4832
|
+
}
|
|
4833
|
+
/** Start a fresh run from a prior run's retained input and pinned revision. */
|
|
4834
|
+
async rerun(runId) {
|
|
4835
|
+
return this.http.post(
|
|
4836
|
+
`/api/v2/runs/${encodeURIComponent(runId)}/rerun`,
|
|
4837
|
+
{}
|
|
4838
|
+
);
|
|
4839
|
+
}
|
|
4827
4840
|
/**
|
|
4828
4841
|
* Fetch persisted logs for a run using the public runs resource model.
|
|
4829
4842
|
*
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"packageFiles": [
|
|
4
|
+
"dist/bundling-sources/sdk/src/agent-runtime.ts",
|
|
5
|
+
"dist/bundling-sources/sdk/src/client.ts",
|
|
6
|
+
"dist/bundling-sources/sdk/src/compat.ts",
|
|
7
|
+
"dist/bundling-sources/sdk/src/config.ts",
|
|
8
|
+
"dist/bundling-sources/sdk/src/errors.ts",
|
|
9
|
+
"dist/bundling-sources/sdk/src/gtm.ts",
|
|
10
|
+
"dist/bundling-sources/sdk/src/helpers.ts",
|
|
11
|
+
"dist/bundling-sources/sdk/src/http.ts",
|
|
12
|
+
"dist/bundling-sources/sdk/src/index.ts",
|
|
13
|
+
"dist/bundling-sources/sdk/src/monitors.ts",
|
|
14
|
+
"dist/bundling-sources/sdk/src/play.ts",
|
|
15
|
+
"dist/bundling-sources/sdk/src/plays/bundle-play-file.ts",
|
|
16
|
+
"dist/bundling-sources/sdk/src/plays/local-file-discovery.ts",
|
|
17
|
+
"dist/bundling-sources/sdk/src/release.ts",
|
|
18
|
+
"dist/bundling-sources/sdk/src/runs/observe-transport.ts",
|
|
19
|
+
"dist/bundling-sources/sdk/src/stream-reconnect.ts",
|
|
20
|
+
"dist/bundling-sources/sdk/src/tool-output.ts",
|
|
21
|
+
"dist/bundling-sources/sdk/src/types.ts",
|
|
22
|
+
"dist/bundling-sources/sdk/src/version.ts",
|
|
23
|
+
"dist/bundling-sources/shared_libs/integrations/theirstack-execution-policy.ts",
|
|
24
|
+
"dist/bundling-sources/shared_libs/observability/node-tracing.ts",
|
|
25
|
+
"dist/bundling-sources/shared_libs/observability/redaction.ts",
|
|
26
|
+
"dist/bundling-sources/shared_libs/observability/scheduled-job-errors.ts",
|
|
27
|
+
"dist/bundling-sources/shared_libs/observability/telemetry.ts",
|
|
28
|
+
"dist/bundling-sources/shared_libs/observability/tracing.ts",
|
|
29
|
+
"dist/bundling-sources/shared_libs/observability/worker-telemetry.ts",
|
|
30
|
+
"dist/bundling-sources/shared_libs/play-data-plane/column-names.ts",
|
|
31
|
+
"dist/bundling-sources/shared_libs/play-data-plane/index.ts",
|
|
32
|
+
"dist/bundling-sources/shared_libs/play-data-plane/sheet-contract.ts",
|
|
33
|
+
"dist/bundling-sources/shared_libs/play-runtime/activity-observation.ts",
|
|
34
|
+
"dist/bundling-sources/shared_libs/play-runtime/app-runtime-api.ts",
|
|
35
|
+
"dist/bundling-sources/shared_libs/play-runtime/auth-scope-resolver.ts",
|
|
36
|
+
"dist/bundling-sources/shared_libs/play-runtime/backend.ts",
|
|
37
|
+
"dist/bundling-sources/shared_libs/play-runtime/batch-runtime.ts",
|
|
38
|
+
"dist/bundling-sources/shared_libs/play-runtime/batching-types.ts",
|
|
39
|
+
"dist/bundling-sources/shared_libs/play-runtime/bounded-dispatch.ts",
|
|
40
|
+
"dist/bundling-sources/shared_libs/play-runtime/builtin-pacing.ts",
|
|
41
|
+
"dist/bundling-sources/shared_libs/play-runtime/cell-staleness.ts",
|
|
42
|
+
"dist/bundling-sources/shared_libs/play-runtime/child-execution-strategy.ts",
|
|
43
|
+
"dist/bundling-sources/shared_libs/play-runtime/context.ts",
|
|
44
|
+
"dist/bundling-sources/shared_libs/play-runtime/coordinator-headers.ts",
|
|
45
|
+
"dist/bundling-sources/shared_libs/play-runtime/csv-rename.ts",
|
|
46
|
+
"dist/bundling-sources/shared_libs/play-runtime/ctx-contract.ts",
|
|
47
|
+
"dist/bundling-sources/shared_libs/play-runtime/ctx-types.ts",
|
|
48
|
+
"dist/bundling-sources/shared_libs/play-runtime/dataset-id.ts",
|
|
49
|
+
"dist/bundling-sources/shared_libs/play-runtime/dataset-lifecycle-log.ts",
|
|
50
|
+
"dist/bundling-sources/shared_libs/play-runtime/daytona-runtime-config.ts",
|
|
51
|
+
"dist/bundling-sources/shared_libs/play-runtime/db-session-crypto.ts",
|
|
52
|
+
"dist/bundling-sources/shared_libs/play-runtime/db-session-plan.ts",
|
|
53
|
+
"dist/bundling-sources/shared_libs/play-runtime/db-session.ts",
|
|
54
|
+
"dist/bundling-sources/shared_libs/play-runtime/dedup-backend.ts",
|
|
55
|
+
"dist/bundling-sources/shared_libs/play-runtime/default-batch-strategies.ts",
|
|
56
|
+
"dist/bundling-sources/shared_libs/play-runtime/durability-store.ts",
|
|
57
|
+
"dist/bundling-sources/shared_libs/play-runtime/durable-call-cache.ts",
|
|
58
|
+
"dist/bundling-sources/shared_libs/play-runtime/durable-call-policy.ts",
|
|
59
|
+
"dist/bundling-sources/shared_libs/play-runtime/durable-receipt-execution.ts",
|
|
60
|
+
"dist/bundling-sources/shared_libs/play-runtime/dynamic-worker-version.ts",
|
|
61
|
+
"dist/bundling-sources/shared_libs/play-runtime/email-status.ts",
|
|
62
|
+
"dist/bundling-sources/shared_libs/play-runtime/event-wait-tools.ts",
|
|
63
|
+
"dist/bundling-sources/shared_libs/play-runtime/execution-capabilities.ts",
|
|
64
|
+
"dist/bundling-sources/shared_libs/play-runtime/execution-ledger-store.ts",
|
|
65
|
+
"dist/bundling-sources/shared_libs/play-runtime/execution-plan.ts",
|
|
66
|
+
"dist/bundling-sources/shared_libs/play-runtime/extractor-targets.ts",
|
|
67
|
+
"dist/bundling-sources/shared_libs/play-runtime/fullenrich-batching.ts",
|
|
68
|
+
"dist/bundling-sources/shared_libs/play-runtime/gateway-auth-session.ts",
|
|
69
|
+
"dist/bundling-sources/shared_libs/play-runtime/gateway-postgres-admission.ts",
|
|
70
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/adaptive-admission.ts",
|
|
71
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/app-runtime-budget-state-backend.ts",
|
|
72
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/app-runtime-rate-state-backend.ts",
|
|
73
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/block-reserving-budget-state-backend.ts",
|
|
74
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/budget-state-backend.ts",
|
|
75
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/governor.ts",
|
|
76
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/in-memory-rate-state-backend.ts",
|
|
77
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/policy.ts",
|
|
78
|
+
"dist/bundling-sources/shared_libs/play-runtime/governor/rate-state-backend.ts",
|
|
79
|
+
"dist/bundling-sources/shared_libs/play-runtime/internal-step-ids.ts",
|
|
80
|
+
"dist/bundling-sources/shared_libs/play-runtime/lease-policy.ts",
|
|
81
|
+
"dist/bundling-sources/shared_libs/play-runtime/ledger-safe-payload.ts",
|
|
82
|
+
"dist/bundling-sources/shared_libs/play-runtime/live-events.ts",
|
|
83
|
+
"dist/bundling-sources/shared_libs/play-runtime/live-state-contract.ts",
|
|
84
|
+
"dist/bundling-sources/shared_libs/play-runtime/map-chunk-limits.ts",
|
|
85
|
+
"dist/bundling-sources/shared_libs/play-runtime/map-execution-frame.ts",
|
|
86
|
+
"dist/bundling-sources/shared_libs/play-runtime/map-memory-limits.ts",
|
|
87
|
+
"dist/bundling-sources/shared_libs/play-runtime/map-row-identity.ts",
|
|
88
|
+
"dist/bundling-sources/shared_libs/play-runtime/map-row-outcome.ts",
|
|
89
|
+
"dist/bundling-sources/shared_libs/play-runtime/modal-runtime-config.ts",
|
|
90
|
+
"dist/bundling-sources/shared_libs/play-runtime/opensosdata-batching.ts",
|
|
91
|
+
"dist/bundling-sources/shared_libs/play-runtime/output-size-limits.ts",
|
|
92
|
+
"dist/bundling-sources/shared_libs/play-runtime/pacing.ts",
|
|
93
|
+
"dist/bundling-sources/shared_libs/play-runtime/persistence-latch.ts",
|
|
94
|
+
"dist/bundling-sources/shared_libs/play-runtime/play-call-execution.ts",
|
|
95
|
+
"dist/bundling-sources/shared_libs/play-runtime/play-input.ts",
|
|
96
|
+
"dist/bundling-sources/shared_libs/play-runtime/play-latency-trace.ts",
|
|
97
|
+
"dist/bundling-sources/shared_libs/play-runtime/play-runtime-batching-registry.ts",
|
|
98
|
+
"dist/bundling-sources/shared_libs/play-runtime/postgres-json.ts",
|
|
99
|
+
"dist/bundling-sources/shared_libs/play-runtime/profiles.ts",
|
|
100
|
+
"dist/bundling-sources/shared_libs/play-runtime/projection.ts",
|
|
101
|
+
"dist/bundling-sources/shared_libs/play-runtime/protocol.ts",
|
|
102
|
+
"dist/bundling-sources/shared_libs/play-runtime/providers.ts",
|
|
103
|
+
"dist/bundling-sources/shared_libs/play-runtime/public-play-contract.ts",
|
|
104
|
+
"dist/bundling-sources/shared_libs/play-runtime/query-result-dataset.ts",
|
|
105
|
+
"dist/bundling-sources/shared_libs/play-runtime/receipt-heartbeat-supervisor.ts",
|
|
106
|
+
"dist/bundling-sources/shared_libs/play-runtime/receipt-salvage.ts",
|
|
107
|
+
"dist/bundling-sources/shared_libs/play-runtime/receipt-sql.ts",
|
|
108
|
+
"dist/bundling-sources/shared_libs/play-runtime/receipt-status.ts",
|
|
109
|
+
"dist/bundling-sources/shared_libs/play-runtime/resource-governor.ts",
|
|
110
|
+
"dist/bundling-sources/shared_libs/play-runtime/row-isolation.ts",
|
|
111
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-execution-scope.ts",
|
|
112
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-failure.ts",
|
|
113
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-ledger-projection-contract.ts",
|
|
114
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-ledger.ts",
|
|
115
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-lifecycle-policy.ts",
|
|
116
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-snapshot-stream.ts",
|
|
117
|
+
"dist/bundling-sources/shared_libs/play-runtime/run-terminal-source.ts",
|
|
118
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-lifecycle.ts",
|
|
119
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-modal-fallback.ts",
|
|
120
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-payload-transport.ts",
|
|
121
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-runtime-watchdog.ts",
|
|
122
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-session-execution.ts",
|
|
123
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona.ts",
|
|
124
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/local-process.ts",
|
|
125
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/modal.ts",
|
|
126
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/bundle.ts",
|
|
127
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/index.ts",
|
|
128
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/runner-events.ts",
|
|
129
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/runtime-sandbox-reconciliation.ts",
|
|
130
|
+
"dist/bundling-sources/shared_libs/play-runtime/runner-backends/types.ts",
|
|
131
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-actions.ts",
|
|
132
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-api-paths.ts",
|
|
133
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-api.ts",
|
|
134
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-capacity-policy.ts",
|
|
135
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-constants.ts",
|
|
136
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-constraints.ts",
|
|
137
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-contract.ts",
|
|
138
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-environment.ts",
|
|
139
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-infra-mode.ts",
|
|
140
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-pg-driver-pg.ts",
|
|
141
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-pg-driver.ts",
|
|
142
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-postgres-admission.ts",
|
|
143
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-receipt-store-adapter.ts",
|
|
144
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-receipt-writer.ts",
|
|
145
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sandbox-placement-policy.ts",
|
|
146
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-scheduler-topology.ts",
|
|
147
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-attempt-state-machine.ts",
|
|
148
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-errors.ts",
|
|
149
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-row-transition.ts",
|
|
150
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-row-writer.ts",
|
|
151
|
+
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-session.ts",
|
|
152
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-compute-usage.ts",
|
|
153
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runtime-limits.ts",
|
|
154
|
+
"dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts",
|
|
155
|
+
"dist/bundling-sources/shared_libs/play-runtime/secret-capability.ts",
|
|
156
|
+
"dist/bundling-sources/shared_libs/play-runtime/secret-redaction.ts",
|
|
157
|
+
"dist/bundling-sources/shared_libs/play-runtime/secret-resolution-retry-policy.ts",
|
|
158
|
+
"dist/bundling-sources/shared_libs/play-runtime/serial-task-queue.ts",
|
|
159
|
+
"dist/bundling-sources/shared_libs/play-runtime/sheet-attempt-sql.ts",
|
|
160
|
+
"dist/bundling-sources/shared_libs/play-runtime/single-flight.ts",
|
|
161
|
+
"dist/bundling-sources/shared_libs/play-runtime/step-lifecycle-tracker.ts",
|
|
162
|
+
"dist/bundling-sources/shared_libs/play-runtime/step-program-dataset-builder.ts",
|
|
163
|
+
"dist/bundling-sources/shared_libs/play-runtime/submit-limits.ts",
|
|
164
|
+
"dist/bundling-sources/shared_libs/play-runtime/suspension.ts",
|
|
165
|
+
"dist/bundling-sources/shared_libs/play-runtime/test-runtime-seams.ts",
|
|
166
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-batch-executor.ts",
|
|
167
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-cache-policy.ts",
|
|
168
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-execute-retry-policy.ts",
|
|
169
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-execution-outcome.ts",
|
|
170
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-http-errors.ts",
|
|
171
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-result-paths.ts",
|
|
172
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-result-types.ts",
|
|
173
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-result.ts",
|
|
174
|
+
"dist/bundling-sources/shared_libs/play-runtime/tracing.ts",
|
|
175
|
+
"dist/bundling-sources/shared_libs/play-runtime/transient-service-error.ts",
|
|
176
|
+
"dist/bundling-sources/shared_libs/play-runtime/transport-error-diagnostics.ts",
|
|
177
|
+
"dist/bundling-sources/shared_libs/play-runtime/vercel-protection.ts",
|
|
178
|
+
"dist/bundling-sources/shared_libs/play-runtime/work-receipt-state-machine.ts",
|
|
179
|
+
"dist/bundling-sources/shared_libs/play-runtime/work-receipts.ts",
|
|
180
|
+
"dist/bundling-sources/shared_libs/play-runtime/worker-api-types.ts",
|
|
181
|
+
"dist/bundling-sources/shared_libs/plays/artifact-contract-version.ts",
|
|
182
|
+
"dist/bundling-sources/shared_libs/plays/artifact-kind-guard.ts",
|
|
183
|
+
"dist/bundling-sources/shared_libs/plays/artifact-transport.ts",
|
|
184
|
+
"dist/bundling-sources/shared_libs/plays/artifact-types.ts",
|
|
185
|
+
"dist/bundling-sources/shared_libs/plays/authoring-contract.ts",
|
|
186
|
+
"dist/bundling-sources/shared_libs/plays/bootstrap-routes.ts",
|
|
187
|
+
"dist/bundling-sources/shared_libs/plays/bundling/index.ts",
|
|
188
|
+
"dist/bundling-sources/shared_libs/plays/bundling/limits.ts",
|
|
189
|
+
"dist/bundling-sources/shared_libs/plays/compiler-manifest.ts",
|
|
190
|
+
"dist/bundling-sources/shared_libs/plays/contracts.ts",
|
|
191
|
+
"dist/bundling-sources/shared_libs/plays/dataset-summary.ts",
|
|
192
|
+
"dist/bundling-sources/shared_libs/plays/dataset.ts",
|
|
193
|
+
"dist/bundling-sources/shared_libs/plays/definition.ts",
|
|
194
|
+
"dist/bundling-sources/shared_libs/plays/file-refs.ts",
|
|
195
|
+
"dist/bundling-sources/shared_libs/plays/input-contract-definition.ts",
|
|
196
|
+
"dist/bundling-sources/shared_libs/plays/input-contract.ts",
|
|
197
|
+
"dist/bundling-sources/shared_libs/plays/resolve-static-pipeline.ts",
|
|
198
|
+
"dist/bundling-sources/shared_libs/plays/row-identity.ts",
|
|
199
|
+
"dist/bundling-sources/shared_libs/plays/runtime-validation.ts",
|
|
200
|
+
"dist/bundling-sources/shared_libs/plays/secret-guardrails.ts",
|
|
201
|
+
"dist/bundling-sources/shared_libs/plays/static-pipeline-storage-codec.ts",
|
|
202
|
+
"dist/bundling-sources/shared_libs/plays/static-pipeline.ts",
|
|
203
|
+
"dist/bundling-sources/shared_libs/plays/tool-category-descriptions.ts",
|
|
204
|
+
"dist/bundling-sources/shared_libs/plays/tool-codegen.ts",
|
|
205
|
+
"dist/bundling-sources/shared_libs/runtime-env.ts",
|
|
206
|
+
"dist/bundling-sources/shared_libs/security/outbound-url-policy.ts",
|
|
207
|
+
"dist/bundling-sources/shared_libs/security/safe-fetch.ts",
|
|
208
|
+
"dist/bundling-sources/shared_libs/security/safe-outbound-fetch.ts",
|
|
209
|
+
"dist/bundling-sources/shared_libs/tool-execution-error.ts",
|
|
210
|
+
"dist/cli/index.d.mts",
|
|
211
|
+
"dist/cli/index.d.ts",
|
|
212
|
+
"dist/cli/index.js",
|
|
213
|
+
"dist/cli/index.mjs",
|
|
214
|
+
"dist/compiler-manifest-xFkbJX2B.d.mts",
|
|
215
|
+
"dist/compiler-manifest-xFkbJX2B.d.ts",
|
|
216
|
+
"dist/helpers.d.mts",
|
|
217
|
+
"dist/helpers.d.ts",
|
|
218
|
+
"dist/helpers.js",
|
|
219
|
+
"dist/helpers.mjs",
|
|
220
|
+
"dist/index.d.mts",
|
|
221
|
+
"dist/index.d.ts",
|
|
222
|
+
"dist/index.js",
|
|
223
|
+
"dist/index.mjs",
|
|
224
|
+
"dist/plays/bundle-play-file.d.mts",
|
|
225
|
+
"dist/plays/bundle-play-file.d.ts",
|
|
226
|
+
"dist/plays/bundle-play-file.mjs",
|
|
227
|
+
"dist/viewer/viewer.css",
|
|
228
|
+
"dist/viewer/viewer.js"
|
|
229
|
+
],
|
|
230
|
+
"dependencyFiles": [
|
|
231
|
+
"esbuild/package.json",
|
|
232
|
+
"esbuild/lib/main.js"
|
|
233
|
+
]
|
|
234
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepline",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"sync-version": "bun ../scripts/sync-sdk-package-version.ts",
|
|
42
|
-
"build": "bun ../scripts/sync-sdk-package-version.ts && tsup",
|
|
42
|
+
"build": "bun ../scripts/sync-sdk-package-version.ts && tsup && bun ../scripts/write-sdk-install-integrity.ts",
|
|
43
43
|
"dev": "bun ../scripts/sync-sdk-package-version.ts && tsup --watch",
|
|
44
44
|
"typecheck": "tsc --noEmit --declaration false --declarationMap false",
|
|
45
|
-
"prepack": "bun ../scripts/sync-sdk-package-version.ts && tsup",
|
|
46
|
-
"prepublishOnly": "bun ../scripts/sync-sdk-package-version.ts && tsup"
|
|
45
|
+
"prepack": "bun ../scripts/sync-sdk-package-version.ts && tsup && bun ../scripts/write-sdk-install-integrity.ts",
|
|
46
|
+
"prepublishOnly": "bun ../scripts/sync-sdk-package-version.ts && tsup && bun ../scripts/write-sdk-install-integrity.ts"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"acorn": "^8.17.0",
|
|
@@ -63,6 +63,10 @@
|
|
|
63
63
|
},
|
|
64
64
|
"deepline": {
|
|
65
65
|
"apiContract": "2026-07-admin-cli-local-cutover",
|
|
66
|
-
"apiMajor": 2
|
|
66
|
+
"apiMajor": 2,
|
|
67
|
+
"installIntegrity": {
|
|
68
|
+
"schemaVersion": 1,
|
|
69
|
+
"manifest": "dist/install-integrity.json"
|
|
70
|
+
}
|
|
67
71
|
}
|
|
68
72
|
}
|