@swmansion/argent 0.24.1-next.7 → 0.24.1-next.8
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 +7 -3
- package/package.json +1 -1
package/dist/cli-cmds.mjs
CHANGED
|
@@ -21837,7 +21837,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21837
21837
|
var SESSION_ID2 = randomUUID5();
|
|
21838
21838
|
function readCliVersion() {
|
|
21839
21839
|
if (true) {
|
|
21840
|
-
return "0.24.1-next.
|
|
21840
|
+
return "0.24.1-next.8";
|
|
21841
21841
|
}
|
|
21842
21842
|
return "0.0.0";
|
|
21843
21843
|
}
|
package/dist/installer.mjs
CHANGED
|
@@ -16690,7 +16690,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16690
16690
|
var SESSION_ID = randomUUID4();
|
|
16691
16691
|
function readCliVersion() {
|
|
16692
16692
|
if (true) {
|
|
16693
|
-
return "0.24.1-next.
|
|
16693
|
+
return "0.24.1-next.8";
|
|
16694
16694
|
}
|
|
16695
16695
|
return "0.0.0";
|
|
16696
16696
|
}
|
package/dist/tool-server.cjs
CHANGED
|
@@ -94682,7 +94682,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
94682
94682
|
var SESSION_ID = (0, import_node_crypto3.randomUUID)();
|
|
94683
94683
|
function readCliVersion() {
|
|
94684
94684
|
if (true) {
|
|
94685
|
-
return "0.24.1-next.
|
|
94685
|
+
return "0.24.1-next.8";
|
|
94686
94686
|
}
|
|
94687
94687
|
return "0.0.0";
|
|
94688
94688
|
}
|
|
@@ -131935,6 +131935,7 @@ function timeoutCause(condition, lastTrustedReadAt, finalRead, pollIntervalMs) {
|
|
|
131935
131935
|
}
|
|
131936
131936
|
var capability21 = {
|
|
131937
131937
|
apple: { simulator: true, device: true },
|
|
131938
|
+
appleRemote: { simulator: true },
|
|
131938
131939
|
android: { emulator: true, device: true, unknown: true },
|
|
131939
131940
|
chromium: { app: true },
|
|
131940
131941
|
vega: { vvd: true }
|
|
@@ -131977,7 +131978,7 @@ function timeoutNote(params, lastTree, fetchError, lastData) {
|
|
|
131977
131978
|
}
|
|
131978
131979
|
function createAwaitUiElementTool(registry2) {
|
|
131979
131980
|
async function fetchTree2(device, params, services, isTvOs, androidIsTv) {
|
|
131980
|
-
if (device.platform === "ios") {
|
|
131981
|
+
if (device.platform === "ios" || device.platform === "ios-remote") {
|
|
131981
131982
|
if (device.kind === "device") {
|
|
131982
131983
|
return describeIosDevice(registry2, device);
|
|
131983
131984
|
}
|
|
@@ -132040,6 +132041,7 @@ tap/navigation to wait for the next screen, or before tapping an element that ap
|
|
|
132040
132041
|
const device = resolveDevice(params.udid);
|
|
132041
132042
|
assertSupported(AWAIT_UI_ELEMENT_TOOL_ID, capability21, device);
|
|
132042
132043
|
if (device.platform === "ios") await ensureDeps(iosRequires);
|
|
132044
|
+
else if (device.platform === "ios-remote") await ensureDeps(["sim-remote"]);
|
|
132043
132045
|
else if (device.platform === "android") await ensureDeps(androidRequires);
|
|
132044
132046
|
else if (device.platform === "vega") await ensureDeps(vegaRequires);
|
|
132045
132047
|
const isTvOs = device.platform === "ios" && device.kind !== "device" && await isTvOsSimulator(device.id);
|
|
@@ -134712,6 +134714,7 @@ var zodSchema39 = external_exports.object({
|
|
|
134712
134714
|
});
|
|
134713
134715
|
var capability24 = {
|
|
134714
134716
|
apple: { simulator: true, device: true },
|
|
134717
|
+
appleRemote: { simulator: true },
|
|
134715
134718
|
android: { emulator: true, device: true, unknown: true },
|
|
134716
134719
|
chromium: { app: true }
|
|
134717
134720
|
};
|
|
@@ -134730,7 +134733,7 @@ function treeSignature(root) {
|
|
|
134730
134733
|
}
|
|
134731
134734
|
function createAwaitScreenIdleTool(registry2) {
|
|
134732
134735
|
function fetchTree2(device, services, isTvOs, androidIsTv) {
|
|
134733
|
-
if (device.platform === "ios") {
|
|
134736
|
+
if (device.platform === "ios" || device.platform === "ios-remote") {
|
|
134734
134737
|
if (device.kind === "device") {
|
|
134735
134738
|
return describeIosDevice(registry2, device);
|
|
134736
134739
|
}
|
|
@@ -134769,6 +134772,7 @@ still before the timeout. Use after a launch/navigation to wait for the UI to re
|
|
|
134769
134772
|
const device = resolveDevice(params.udid);
|
|
134770
134773
|
assertSupported(AWAIT_SCREEN_IDLE_TOOL_ID, capability24, device);
|
|
134771
134774
|
if (device.platform === "ios") await ensureDeps(iosRequires);
|
|
134775
|
+
else if (device.platform === "ios-remote") await ensureDeps(["sim-remote"]);
|
|
134772
134776
|
else if (device.platform === "android") await ensureDeps(androidRequires);
|
|
134773
134777
|
const isTvOs = device.platform === "ios" && device.kind !== "device" && await isTvOsSimulator(device.id);
|
|
134774
134778
|
const androidIsTv = device.platform === "android" && await isAndroidTv(device.id);
|
package/package.json
CHANGED