deepline 0.1.296 → 0.1.297
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.
|
@@ -155,7 +155,7 @@ export const SDK_RELEASE = {
|
|
|
155
155
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
156
156
|
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
157
157
|
// Operators use the checkout-local deepline-admin binary instead.
|
|
158
|
-
version: '0.1.
|
|
158
|
+
version: '0.1.297',
|
|
159
159
|
contracts: {
|
|
160
160
|
api: {
|
|
161
161
|
name: 'sdk-http-api',
|
|
@@ -6583,10 +6583,16 @@ async function completeRuntimeMapRowChunks(
|
|
|
6583
6583
|
AND target._write_version = $13::bigint
|
|
6584
6584
|
AND target._run_id = $5::text
|
|
6585
6585
|
AND target._status IN ('enriched', 'failed')
|
|
6586
|
-
AND
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6586
|
+
AND (
|
|
6587
|
+
EXISTS (
|
|
6588
|
+
SELECT 1
|
|
6589
|
+
FROM unnest($8::text[]) AS field_values(field)
|
|
6590
|
+
WHERE target._cell_meta -> field_values.field ->> 'runId' = $5::text
|
|
6591
|
+
)
|
|
6592
|
+
OR (
|
|
6593
|
+
coalesce(target._attempt_owner_run_id, target._run_id) = $10::text
|
|
6594
|
+
AND COALESCE(target._attempt_seq, 0) = $12::integer
|
|
6595
|
+
)
|
|
6590
6596
|
)
|
|
6591
6597
|
AND (
|
|
6592
6598
|
target._status <> 'enriched'
|
|
@@ -6874,10 +6880,16 @@ async function completeRuntimeMapRowChunksWithInputIndexRepair(
|
|
|
6874
6880
|
AND target._write_version = $13::bigint
|
|
6875
6881
|
AND target._run_id = $5::text
|
|
6876
6882
|
AND target._status IN ('enriched', 'failed')
|
|
6877
|
-
AND
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6883
|
+
AND (
|
|
6884
|
+
EXISTS (
|
|
6885
|
+
SELECT 1
|
|
6886
|
+
FROM unnest($8::text[]) AS field_values(field)
|
|
6887
|
+
WHERE target._cell_meta -> field_values.field ->> 'runId' = $5::text
|
|
6888
|
+
)
|
|
6889
|
+
OR (
|
|
6890
|
+
coalesce(target._attempt_owner_run_id, target._run_id) = $10::text
|
|
6891
|
+
AND COALESCE(target._attempt_seq, 0) = $12::integer
|
|
6892
|
+
)
|
|
6881
6893
|
)
|
|
6882
6894
|
AND (
|
|
6883
6895
|
target._status <> 'enriched'
|
|
@@ -7324,10 +7336,16 @@ async function failRuntimeMapRowChunks(
|
|
|
7324
7336
|
AND target._write_version = $16::bigint
|
|
7325
7337
|
AND target._run_id = $6::text
|
|
7326
7338
|
AND target._status IN ('enriched', 'failed')
|
|
7327
|
-
AND
|
|
7328
|
-
|
|
7329
|
-
|
|
7330
|
-
|
|
7339
|
+
AND (
|
|
7340
|
+
EXISTS (
|
|
7341
|
+
SELECT 1
|
|
7342
|
+
FROM unnest($9::text[]) AS field_values(field)
|
|
7343
|
+
WHERE target._cell_meta -> field_values.field ->> 'runId' = $6::text
|
|
7344
|
+
)
|
|
7345
|
+
OR (
|
|
7346
|
+
coalesce(target._attempt_owner_run_id, target._run_id) = $12::text
|
|
7347
|
+
AND COALESCE(target._attempt_seq, 0) = $14::integer
|
|
7348
|
+
)
|
|
7331
7349
|
)
|
|
7332
7350
|
AND (
|
|
7333
7351
|
target._status <> 'failed'
|
package/dist/cli/index.js
CHANGED
|
@@ -718,7 +718,7 @@ var SDK_RELEASE = {
|
|
|
718
718
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
719
719
|
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
720
720
|
// Operators use the checkout-local deepline-admin binary instead.
|
|
721
|
-
version: "0.1.
|
|
721
|
+
version: "0.1.297",
|
|
722
722
|
contracts: {
|
|
723
723
|
api: {
|
|
724
724
|
name: "sdk-http-api",
|
package/dist/cli/index.mjs
CHANGED
|
@@ -703,7 +703,7 @@ var SDK_RELEASE = {
|
|
|
703
703
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
704
704
|
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
705
705
|
// Operators use the checkout-local deepline-admin binary instead.
|
|
706
|
-
version: "0.1.
|
|
706
|
+
version: "0.1.297",
|
|
707
707
|
contracts: {
|
|
708
708
|
api: {
|
|
709
709
|
name: "sdk-http-api",
|
package/dist/index.js
CHANGED
|
@@ -438,7 +438,7 @@ var SDK_RELEASE = {
|
|
|
438
438
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
439
439
|
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
440
440
|
// Operators use the checkout-local deepline-admin binary instead.
|
|
441
|
-
version: "0.1.
|
|
441
|
+
version: "0.1.297",
|
|
442
442
|
contracts: {
|
|
443
443
|
api: {
|
|
444
444
|
name: "sdk-http-api",
|
package/dist/index.mjs
CHANGED
|
@@ -367,7 +367,7 @@ var SDK_RELEASE = {
|
|
|
367
367
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
368
368
|
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
369
369
|
// Operators use the checkout-local deepline-admin binary instead.
|
|
370
|
-
version: "0.1.
|
|
370
|
+
version: "0.1.297",
|
|
371
371
|
contracts: {
|
|
372
372
|
api: {
|
|
373
373
|
name: "sdk-http-api",
|