@exodus/xqa 8.1.0 → 8.2.0

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.
Files changed (2) hide show
  1. package/dist/xqa.cjs +8 -11
  2. package/package.json +3 -3
package/dist/xqa.cjs CHANGED
@@ -103752,23 +103752,20 @@ function createSwipeTool(udid = "booted") {
103752
103752
  );
103753
103753
  }
103754
103754
  var MOBILE_KEYS_SCRIPT = "mobile: keys";
103755
- function postKeys(input) {
103755
+ function typeText(input) {
103756
103756
  return wdaPost({
103757
103757
  baseUrl: input.baseUrl,
103758
- path: `/session/${input.sessionId}/execute/sync`,
103759
- body: { script: MOBILE_KEYS_SCRIPT, args: [{ keys: input.keys }] }
103758
+ path: `/session/${input.sessionId}/wda/keys`,
103759
+ body: { value: [input.text] }
103760
103760
  });
103761
103761
  }
103762
- function typeText(input) {
103763
- return postKeys({
103762
+ function pressEnter(input) {
103763
+ return wdaPost({
103764
103764
  baseUrl: input.baseUrl,
103765
- sessionId: input.sessionId,
103766
- keys: [input.text]
103765
+ path: `/session/${input.sessionId}/execute/sync`,
103766
+ body: { script: MOBILE_KEYS_SCRIPT, args: [{ keys: ["\n"] }] }
103767
103767
  });
103768
103768
  }
103769
- function pressEnter(input) {
103770
- return postKeys({ baseUrl: input.baseUrl, sessionId: input.sessionId, keys: ["\n"] });
103771
- }
103772
103769
  var TYPE_TEXT_SCHEMA = { text: external_exports.string(), submit: external_exports.boolean().optional() };
103773
103770
  async function handleTypeText({ udid, text, submit }) {
103774
103771
  const result = await getOrCreateSession(APPIUM_BASE_URL, udid).andThen((sessionId) => {
@@ -181018,7 +181015,7 @@ function buildProgram(options) {
181018
181015
 
181019
181016
  // src/index.ts
181020
181017
  process.title = "xqa";
181021
- var version2 = `${"8.1.0"}${false ? ` (dev build +${"c565fa3"})` : ""}`;
181018
+ var version2 = `${"8.2.0"}${false ? ` (dev build +${"36aae72"})` : ""}`;
181022
181019
  var program2 = buildProgram({ version: version2 });
181023
181020
  void program2.parseAsync(process.argv);
181024
181021
  /*! Bundled license information:
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@exodus/xqa",
3
3
  "description": "AI-powered QA CLI tool for autonomous mobile app testing",
4
4
  "license": "MIT",
5
- "version": "8.1.0",
5
+ "version": "8.2.0",
6
6
  "type": "module",
7
7
  "engines": {
8
8
  "node": ">=22"
@@ -50,18 +50,18 @@
50
50
  "typescript": "^5.8.3",
51
51
  "vitest": "^3.2.1",
52
52
  "zod": "^4.3.6",
53
+ "@qa-agents/analyser": "1.0.0",
53
54
  "@qa-agents/catalog": "1.0.0",
54
55
  "@qa-agents/config": "1.0.0",
55
56
  "@qa-agents/consolidator": "1.0.0",
56
57
  "@qa-agents/display": "1.0.0",
57
- "@qa-agents/analyser": "1.0.0",
58
58
  "@qa-agents/eslint-config": "1.0.0",
59
59
  "@qa-agents/explorer": "1.0.0",
60
60
  "@qa-agents/mobile-ios": "1.0.0",
61
+ "@qa-agents/pipeline": "1.0.0",
61
62
  "@qa-agents/planner": "1.0.0",
62
63
  "@qa-agents/reporter-github": "1.0.0",
63
64
  "@qa-agents/shared": "1.0.0",
64
- "@qa-agents/pipeline": "1.0.0",
65
65
  "@qa-agents/triager": "1.0.0",
66
66
  "@qa-agents/typescript-config": "1.0.0"
67
67
  },