rnxsim 0.1.488 → 0.1.489
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/cli/bridge-flow-runner.ts +12 -17
- package/cli/commands/flow.ts +4 -0
- package/detox/proof-frame.cjs +10 -0
- package/dist-lib/agent-daemon-client.cjs +1 -1
- package/dist-lib/agent-events.cjs +1 -1
- package/dist-lib/agent-identity.cjs +1 -1
- package/dist-lib/agent-sessions.cjs +1 -1
- package/dist-lib/attached-projects.cjs +1 -1
- package/dist-lib/auth/shared-session.cjs +1 -1
- package/dist-lib/backend-origin.cjs +1 -1
- package/dist-lib/beta.cjs +1 -1
- package/dist-lib/beta.mjs +1 -1
- package/dist-lib/bridge-constants.cjs +1 -1
- package/dist-lib/bridge-contract-input.cjs +1 -1
- package/dist-lib/bridge-contract-input.mjs +1 -1
- package/dist-lib/bridge-contract.cjs +1 -1
- package/dist-lib/bridge-contract.mjs +1 -1
- package/dist-lib/capture-contract.cjs +1 -1
- package/dist-lib/capture-contract.mjs +1 -1
- package/dist-lib/cli-constants.cjs +1 -1
- package/dist-lib/cloud-contract.cjs +1 -1
- package/dist-lib/cloud-contract.mjs +1 -1
- package/dist-lib/cloud.cjs +1 -1
- package/dist-lib/cloud.mjs +1 -1
- package/dist-lib/config.cjs +1 -1
- package/dist-lib/detox/index.cjs +3 -1
- package/dist-lib/dev-bundle-resolution.cjs +1 -1
- package/dist-lib/home-paths.cjs +1 -1
- package/dist-lib/host/bridge-host.cjs +1 -1
- package/dist-lib/host/fetch-proxy-handler.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.mjs +1 -1
- package/dist-lib/host/replacement-module-handler.cjs +1 -1
- package/dist-lib/host/websocket-proxy.cjs +1 -1
- package/dist-lib/index.cjs +1 -1
- package/dist-lib/jump-to-source-babel.cjs +1 -1
- package/dist-lib/jump-to-source-native.cjs +1 -1
- package/dist-lib/menu.cjs +1 -1
- package/dist-lib/menu.mjs +1 -1
- package/dist-lib/metro-fingerprint-registry.cjs +1 -1
- package/dist-lib/metro-fingerprint-registry.mjs +1 -1
- package/dist-lib/metro-production-bundle.cjs +1 -1
- package/dist-lib/metro-production-bundle.mjs +1 -1
- package/dist-lib/metro.cjs +1 -1
- package/dist-lib/profiles.cjs +1 -1
- package/dist-lib/public-brand.cjs +1 -1
- package/dist-lib/react-native-host-modules.cjs +1 -1
- package/dist-lib/react-native-host-modules.mjs +1 -1
- package/dist-lib/render-mode.cjs +1 -1
- package/dist-lib/scripts/dev-server-scanner.cjs +1 -1
- package/dist-lib/sdk.cjs +1 -1
- package/dist-lib/sdk.mjs +1 -1
- package/dist-lib/skills.cjs +11 -16
- package/dist-lib/vite.cjs +1 -1
- package/package.json +1 -1
|
@@ -2,10 +2,7 @@ import * as fs from 'fs'
|
|
|
2
2
|
import * as path from 'path'
|
|
3
3
|
import { devices, type DeviceModel } from 'sootsim-engine/settings'
|
|
4
4
|
import yaml from 'yaml'
|
|
5
|
-
import {
|
|
6
|
-
REQUIRED_IDENTICAL_PROOF_FRAMES,
|
|
7
|
-
framesIdentical,
|
|
8
|
-
} from '../detox/proof-frame.cjs'
|
|
5
|
+
import { REQUIRED_IDENTICAL_FLOW_FRAMES, framesIdentical } from '../detox/proof-frame.cjs'
|
|
9
6
|
import { flowTimeoutScale } from '../src/flow-timeout-scale'
|
|
10
7
|
import { composeFramedScreenshot } from '../src/screenshots/frame-compose'
|
|
11
8
|
import { inspectWaitReady, waitReadyReason } from './commands/inspect/core'
|
|
@@ -1434,20 +1431,18 @@ export class SootSimBridgeFlowRunner {
|
|
|
1434
1431
|
dataUrl.replace(/^data:image\/png;base64,/, ''),
|
|
1435
1432
|
'base64',
|
|
1436
1433
|
)
|
|
1437
|
-
|
|
1438
|
-
identicalFrames++
|
|
1439
|
-
if (identicalFrames >= REQUIRED_IDENTICAL_PROOF_FRAMES) {
|
|
1440
|
-
rawBuffer = current
|
|
1441
|
-
break
|
|
1442
|
-
}
|
|
1443
|
-
} else {
|
|
1444
|
-
identicalFrames = 1
|
|
1445
|
-
}
|
|
1434
|
+
identicalFrames = framesIdentical(previousBuffer, current) ? identicalFrames + 1 : 1
|
|
1446
1435
|
previousBuffer = current
|
|
1436
|
+
// checked after the capture, so the constant is a capture count: at 1
|
|
1437
|
+
// the first settled frame is the screenshot and nothing re-captures.
|
|
1438
|
+
if (identicalFrames >= REQUIRED_IDENTICAL_FLOW_FRAMES) {
|
|
1439
|
+
rawBuffer = current
|
|
1440
|
+
break
|
|
1441
|
+
}
|
|
1447
1442
|
}
|
|
1448
1443
|
if (!rawBuffer) {
|
|
1449
1444
|
throw new Error(
|
|
1450
|
-
`screenshot did not reach ${
|
|
1445
|
+
`screenshot did not reach ${REQUIRED_IDENTICAL_FLOW_FRAMES} identical idle frames`,
|
|
1451
1446
|
)
|
|
1452
1447
|
}
|
|
1453
1448
|
if (spec.withFrame) {
|
|
@@ -2026,6 +2021,9 @@ export class SootSimBridgeFlowRunner {
|
|
|
2026
2021
|
await this.startProfile()
|
|
2027
2022
|
}
|
|
2028
2023
|
if (this.recordingEnabled) {
|
|
2024
|
+
// a flow that starts with launchApp prepares recording before the step.
|
|
2025
|
+
// begin its pixels only after launch has mounted and settled, leaving the
|
|
2026
|
+
// loading prelude outside the playable video while its trace stays visible.
|
|
2029
2027
|
await this.waitForVisualSettle()
|
|
2030
2028
|
await this.ensureRecordingStarted()
|
|
2031
2029
|
}
|
|
@@ -2088,9 +2086,6 @@ export class SootSimBridgeFlowRunner {
|
|
|
2088
2086
|
if (state?.state !== 'home' || state.activeApp != null) return false
|
|
2089
2087
|
|
|
2090
2088
|
const appId = this.resolveShellLaunchAppId(opts, state)
|
|
2091
|
-
if (this.recordingEnabled) {
|
|
2092
|
-
await this.ensureRecordingStarted()
|
|
2093
|
-
}
|
|
2094
2089
|
await callShellCommandWhenReady(this.bridge, 'launchApp', 1000, appId)
|
|
2095
2090
|
await this.waitForShellAppLaunched(appId, 1000)
|
|
2096
2091
|
return true
|
package/cli/commands/flow.ts
CHANGED
|
@@ -572,6 +572,10 @@ flow extension:
|
|
|
572
572
|
commandTimeoutMs: resolvedBridgeArgs.commandTimeoutMs,
|
|
573
573
|
simId: pinnedSimId,
|
|
574
574
|
simIdSource: pinnedSimIdSource,
|
|
575
|
+
// the shell prints `lockedBy` over the device while the flow drives it.
|
|
576
|
+
// without a label that falls back to the cli identity key, which is an
|
|
577
|
+
// internal `ENV_VAR:value` string rather than something a viewer reads.
|
|
578
|
+
cliLabel: 'maestro test',
|
|
575
579
|
})
|
|
576
580
|
let driver: SootSimBridgeFlowRunner
|
|
577
581
|
const applySimSettings = async () => {
|
package/detox/proof-frame.cjs
CHANGED
|
@@ -7,8 +7,17 @@ const PROOF_CONTENT_DEFINITION = Object.freeze({
|
|
|
7
7
|
minimumContentPercent: 0.005,
|
|
8
8
|
})
|
|
9
9
|
|
|
10
|
+
// conformance compares these captures against native ios baselines, so a frame
|
|
11
|
+
// caught mid-animation reads as a real pixel diff. three consecutive identical
|
|
12
|
+
// frames is the evidence that the screen actually stopped moving.
|
|
10
13
|
const REQUIRED_IDENTICAL_PROOF_FRAMES = 3
|
|
11
14
|
|
|
15
|
+
// a flow's `takeScreenshot` is a developer artifact, not pixel evidence. one
|
|
16
|
+
// settled capture is what it wants: re-capturing flashes the screen on every
|
|
17
|
+
// attempt, and a screen with a blinking caret never produces two identical
|
|
18
|
+
// frames at all, so the step fails on a page that is perfectly fine.
|
|
19
|
+
const REQUIRED_IDENTICAL_FLOW_FRAMES = 1
|
|
20
|
+
|
|
12
21
|
function framesIdentical(a, b) {
|
|
13
22
|
if (!a || !b || a.length !== b.length) return false
|
|
14
23
|
return a.equals(b)
|
|
@@ -98,6 +107,7 @@ function settleDecision(previousPixels, currentFrame) {
|
|
|
98
107
|
module.exports = {
|
|
99
108
|
PROOF_CONTENT_DEFINITION,
|
|
100
109
|
REQUIRED_IDENTICAL_PROOF_FRAMES,
|
|
110
|
+
REQUIRED_IDENTICAL_FLOW_FRAMES,
|
|
101
111
|
framesIdentical,
|
|
102
112
|
measureProofFrameContent,
|
|
103
113
|
settleDecision,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/beta.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/beta.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/cloud.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/cloud.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
package/dist-lib/config.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/detox/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -146,6 +146,7 @@ var require_proof_frame = __commonJS({
|
|
|
146
146
|
minimumContentPercent: 5e-3
|
|
147
147
|
});
|
|
148
148
|
var REQUIRED_IDENTICAL_PROOF_FRAMES2 = 3;
|
|
149
|
+
var REQUIRED_IDENTICAL_FLOW_FRAMES = 1;
|
|
149
150
|
function framesIdentical2(a, b) {
|
|
150
151
|
if (!a || !b || a.length !== b.length) return false;
|
|
151
152
|
return a.equals(b);
|
|
@@ -215,6 +216,7 @@ var require_proof_frame = __commonJS({
|
|
|
215
216
|
module2.exports = {
|
|
216
217
|
PROOF_CONTENT_DEFINITION,
|
|
217
218
|
REQUIRED_IDENTICAL_PROOF_FRAMES: REQUIRED_IDENTICAL_PROOF_FRAMES2,
|
|
219
|
+
REQUIRED_IDENTICAL_FLOW_FRAMES,
|
|
218
220
|
framesIdentical: framesIdentical2,
|
|
219
221
|
measureProofFrameContent,
|
|
220
222
|
settleDecision
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/home-paths.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
|
|
3
3
|
// src/host/fetch-proxy-overrides.ts
|
|
4
4
|
var FETCH_PROXY_BROWSER_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/menu.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/menu.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/metro.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/profiles.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/render-mode.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
package/dist-lib/sdk.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
package/dist-lib/sdk.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
package/dist-lib/skills.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
@@ -35512,7 +35512,8 @@ var require_proof_frame = __commonJS({
|
|
|
35512
35512
|
contentBandInsetFraction: 0.08,
|
|
35513
35513
|
minimumContentPercent: 5e-3
|
|
35514
35514
|
});
|
|
35515
|
-
var
|
|
35515
|
+
var REQUIRED_IDENTICAL_PROOF_FRAMES = 3;
|
|
35516
|
+
var REQUIRED_IDENTICAL_FLOW_FRAMES2 = 1;
|
|
35516
35517
|
function framesIdentical2(a, b) {
|
|
35517
35518
|
if (!a || !b || a.length !== b.length) return false;
|
|
35518
35519
|
return a.equals(b);
|
|
@@ -35581,7 +35582,8 @@ var require_proof_frame = __commonJS({
|
|
|
35581
35582
|
}
|
|
35582
35583
|
module2.exports = {
|
|
35583
35584
|
PROOF_CONTENT_DEFINITION,
|
|
35584
|
-
REQUIRED_IDENTICAL_PROOF_FRAMES
|
|
35585
|
+
REQUIRED_IDENTICAL_PROOF_FRAMES,
|
|
35586
|
+
REQUIRED_IDENTICAL_FLOW_FRAMES: REQUIRED_IDENTICAL_FLOW_FRAMES2,
|
|
35585
35587
|
framesIdentical: framesIdentical2,
|
|
35586
35588
|
measureProofFrameContent,
|
|
35587
35589
|
settleDecision
|
|
@@ -37342,20 +37344,16 @@ var init_bridge_flow_runner = __esm({
|
|
|
37342
37344
|
dataUrl.replace(/^data:image\/png;base64,/, ""),
|
|
37343
37345
|
"base64"
|
|
37344
37346
|
);
|
|
37345
|
-
|
|
37346
|
-
identicalFrames++;
|
|
37347
|
-
if (identicalFrames >= import_proof_frame.REQUIRED_IDENTICAL_PROOF_FRAMES) {
|
|
37348
|
-
rawBuffer = current;
|
|
37349
|
-
break;
|
|
37350
|
-
}
|
|
37351
|
-
} else {
|
|
37352
|
-
identicalFrames = 1;
|
|
37353
|
-
}
|
|
37347
|
+
identicalFrames = (0, import_proof_frame.framesIdentical)(previousBuffer, current) ? identicalFrames + 1 : 1;
|
|
37354
37348
|
previousBuffer = current;
|
|
37349
|
+
if (identicalFrames >= import_proof_frame.REQUIRED_IDENTICAL_FLOW_FRAMES) {
|
|
37350
|
+
rawBuffer = current;
|
|
37351
|
+
break;
|
|
37352
|
+
}
|
|
37355
37353
|
}
|
|
37356
37354
|
if (!rawBuffer) {
|
|
37357
37355
|
throw new Error(
|
|
37358
|
-
`screenshot did not reach ${import_proof_frame.
|
|
37356
|
+
`screenshot did not reach ${import_proof_frame.REQUIRED_IDENTICAL_FLOW_FRAMES} identical idle frames`
|
|
37359
37357
|
);
|
|
37360
37358
|
}
|
|
37361
37359
|
if (spec.withFrame) {
|
|
@@ -37867,9 +37865,6 @@ var init_bridge_flow_runner = __esm({
|
|
|
37867
37865
|
}
|
|
37868
37866
|
if (state?.state !== "home" || state.activeApp != null) return false;
|
|
37869
37867
|
const appId = this.resolveShellLaunchAppId(opts, state);
|
|
37870
|
-
if (this.recordingEnabled) {
|
|
37871
|
-
await this.ensureRecordingStarted();
|
|
37872
|
-
}
|
|
37873
37868
|
await callShellCommandWhenReady(this.bridge, "launchApp", 1e3, appId);
|
|
37874
37869
|
await this.waitForShellAppLaunched(appId, 1e3);
|
|
37875
37870
|
return true;
|
package/dist-lib/vite.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.489 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
let __sootsim_import_meta_url = ''; try { __sootsim_import_meta_url = require('url').pathToFileURL(__filename).href; } catch {}
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|