@swmansion/argent 0.25.1-next.10 → 0.25.1-next.12
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-cmds.mjs +1 -1
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +11 -8
- package/package.json +1 -1
package/dist/cli-cmds.mjs
CHANGED
|
@@ -21857,7 +21857,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21857
21857
|
var SESSION_ID2 = randomUUID5();
|
|
21858
21858
|
function readCliVersion() {
|
|
21859
21859
|
if (true) {
|
|
21860
|
-
return "0.25.1-next.
|
|
21860
|
+
return "0.25.1-next.12";
|
|
21861
21861
|
}
|
|
21862
21862
|
return "0.0.0";
|
|
21863
21863
|
}
|
package/dist/installer.mjs
CHANGED
|
@@ -16710,7 +16710,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16710
16710
|
var SESSION_ID = randomUUID4();
|
|
16711
16711
|
function readCliVersion() {
|
|
16712
16712
|
if (true) {
|
|
16713
|
-
return "0.25.1-next.
|
|
16713
|
+
return "0.25.1-next.12";
|
|
16714
16714
|
}
|
|
16715
16715
|
return "0.0.0";
|
|
16716
16716
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -94702,7 +94702,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
94702
94702
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
94703
94703
|
function readCliVersion() {
|
|
94704
94704
|
if (true) {
|
|
94705
|
-
return "0.25.1-next.
|
|
94705
|
+
return "0.25.1-next.12";
|
|
94706
94706
|
}
|
|
94707
94707
|
return "0.0.0";
|
|
94708
94708
|
}
|
|
@@ -108852,12 +108852,15 @@ var CDPClient = class {
|
|
|
108852
108852
|
const timer = setTimeout(() => {
|
|
108853
108853
|
this.pendingBindings.delete(id);
|
|
108854
108854
|
reject(
|
|
108855
|
-
new FailureError(
|
|
108856
|
-
|
|
108857
|
-
|
|
108858
|
-
|
|
108859
|
-
|
|
108860
|
-
|
|
108855
|
+
new FailureError(
|
|
108856
|
+
`Binding response for requestId=${id} timed out \u2014 the runtime took the script but never called back over the binding. It may be paused at a breakpoint (the script is dispatched without awaiting it, so a paused runtime still accepts it and never runs the callback), or frozen. Check the debugger and resume it; if nothing is paused, restart the app. Do not retry in a loop \u2014 each attempt waits out the full timeout.`,
|
|
108857
|
+
{
|
|
108858
|
+
error_code: FAILURE_CODES.DEBUGGER_CDP_BINDING_TIMEOUT,
|
|
108859
|
+
failure_stage: "debugger_cdp_binding",
|
|
108860
|
+
failure_area: "tool_server",
|
|
108861
|
+
error_kind: "timeout"
|
|
108862
|
+
}
|
|
108863
|
+
)
|
|
108861
108864
|
);
|
|
108862
108865
|
}, timeout);
|
|
108863
108866
|
this.pendingBindings.set(id, { resolve: resolve14, reject, timer });
|
|
@@ -121554,7 +121557,7 @@ var ACTIVITY_PATTERN = /^[A-Za-z_.][A-Za-z0-9._/-]*$/;
|
|
|
121554
121557
|
var zodSchema10 = external_exports.object({
|
|
121555
121558
|
udid: external_exports.string().min(1).describe("Target device id from `list-devices` (iOS UDID, Android serial, or Chromium id)."),
|
|
121556
121559
|
bundleId: external_exports.string().regex(BUNDLE_ID_PATTERN, "bundleId may only contain letters, digits, '.', '_' and '-'").describe(
|
|
121557
|
-
"App identifier. iOS: bundle id (e.g. com.apple.MobileSMS). Android: package name from build.gradle `applicationId` (e.g. com.android.settings). Chromium:
|
|
121560
|
+
"App identifier. iOS: bundle id (e.g. com.apple.MobileSMS). Android: package name from build.gradle `applicationId` (e.g. com.android.settings). Chromium: any tag matching the same alphabet (letters, digits, '.', '_' and '-'); the call is a no-op since the renderer is already running."
|
|
121558
121561
|
),
|
|
121559
121562
|
activity: external_exports.string().regex(ACTIVITY_PATTERN, "activity may only contain letters, digits, '.', '_', '-' and '/'").optional().describe(
|
|
121560
121563
|
"Android-only: fully-qualified Activity name (e.g. `.MainActivity` or `com.example/com.example.MainActivity`). If omitted on Android, the app's default launcher activity is used. Ignored on iOS / Chromium."
|
package/package.json
CHANGED