@mablhq/mabl-cli 2.8.25 → 2.12.7

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 (37) hide show
  1. package/api/mablApiClient.js +24 -0
  2. package/browserLauncher/playwrightBrowserLauncher/playwrightBrowser.js +2 -2
  3. package/browserLauncher/playwrightBrowserLauncher/playwrightPage.js +0 -3
  4. package/commands/environments/environments_cmds/create.js +3 -2
  5. package/commands/environments/environments_cmds/update.js +1 -1
  6. package/commands/tests/testsUtil.js +2 -0
  7. package/core/execution/newman-types.js +2 -1
  8. package/execution/index.js +9 -9
  9. package/execution/index.js.LICENSE.txt +60 -0
  10. package/execution/runAppiumServer.js +16 -4
  11. package/index.d.ts +2 -0
  12. package/mablApi/index.js +1 -1
  13. package/mablscript/importer.js +6 -0
  14. package/mablscript/mobile/steps/EnterTextStep.js +3 -0
  15. package/mablscript/mobile/steps/InstallAppStep.js +22 -0
  16. package/mablscript/mobile/steps/PrepareSessionStep.js +19 -0
  17. package/mablscript/mobile/steps/ScrollStep.js +52 -8
  18. package/mablscript/mobile/steps/UninstallAppStep.js +22 -0
  19. package/mablscript/mobile/steps/stepUtil.js +51 -12
  20. package/mablscript/mobile/tests/TestMobileFindDescriptors.js +72 -1
  21. package/mablscript/mobile/tests/steps/GeneralHumanization.mobiletest.js +144 -7
  22. package/mablscript/mobile/tests/steps/InstallAppStep.mobiletest.js +20 -0
  23. package/mablscript/mobile/tests/steps/ScrollStep.mobiletest.js +289 -78
  24. package/mablscript/mobile/tests/steps/UninstallAppStep.mobiletest.js +20 -0
  25. package/mablscript/steps/AwaitTabStep.js +36 -8
  26. package/mablscript/types/mobile/InstallAppStepDescriptor.js +2 -0
  27. package/mablscript/types/mobile/PrepareSessionStepDescriptor.js +2 -0
  28. package/mablscript/types/mobile/ScrollStepDescriptor.js +14 -0
  29. package/mablscript/types/mobile/UninstallAppStepDescriptor.js +2 -0
  30. package/mablscriptFind/index.js +1 -1
  31. package/package.json +2 -6
  32. package/resources/mablFind.js +1 -1
  33. package/resources/pdf-viewer/embeddedPdfDetection.js +22 -6
  34. package/socketTunnel/index.js +2 -0
  35. package/socketTunnel/index.js.LICENSE.txt +66 -0
  36. package/upload/index.js +1 -1
  37. package/util/downloadUtil.js +1 -1
@@ -0,0 +1,66 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ * accepts
9
+ * Copyright(c) 2014 Jonathan Ong
10
+ * Copyright(c) 2015 Douglas Christopher Wilson
11
+ * MIT Licensed
12
+ */
13
+
14
+ /*!
15
+ * base64id v0.1.0
16
+ */
17
+
18
+ /*!
19
+ * cookie
20
+ * Copyright(c) 2012-2014 Roman Shtylman
21
+ * Copyright(c) 2015 Douglas Christopher Wilson
22
+ * MIT Licensed
23
+ */
24
+
25
+ /*!
26
+ * mime-db
27
+ * Copyright(c) 2014 Jonathan Ong
28
+ * Copyright(c) 2015-2022 Douglas Christopher Wilson
29
+ * MIT Licensed
30
+ */
31
+
32
+ /*!
33
+ * mime-types
34
+ * Copyright(c) 2014 Jonathan Ong
35
+ * Copyright(c) 2015 Douglas Christopher Wilson
36
+ * MIT Licensed
37
+ */
38
+
39
+ /*!
40
+ * negotiator
41
+ * Copyright(c) 2012 Federico Romero
42
+ * Copyright(c) 2012-2014 Isaac Z. Schlueter
43
+ * Copyright(c) 2015 Douglas Christopher Wilson
44
+ * MIT Licensed
45
+ */
46
+
47
+ /*!
48
+ * vary
49
+ * Copyright(c) 2014-2017 Douglas Christopher Wilson
50
+ * MIT Licensed
51
+ */
52
+
53
+ /*! https://mths.be/utf8js v2.1.2 by @mathias */
54
+
55
+ /**
56
+ * Wrapper for built-in http.js to emulate the browser XMLHttpRequest object.
57
+ *
58
+ * This can be used with JS designed for browsers to improve reuse of code and
59
+ * allow the use of existing libraries.
60
+ *
61
+ * Usage: include("XMLHttpRequest.js") and use XMLHttpRequest per W3C specs.
62
+ *
63
+ * @author Dan DeFelippi <dan@driverdan.com>
64
+ * @contributor David Ellis <d.f.ellis@ieee.org>
65
+ * @license MIT
66
+ */