appium 2.0.0-beta.6 → 2.0.0-beta.61

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 (204) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +156 -65
  3. package/build/lib/appium.d.ts +229 -0
  4. package/build/lib/appium.d.ts.map +1 -0
  5. package/build/lib/appium.js +678 -439
  6. package/build/lib/appium.js.map +1 -0
  7. package/build/lib/cli/args.d.ts +17 -0
  8. package/build/lib/cli/args.d.ts.map +1 -0
  9. package/build/lib/cli/args.js +263 -319
  10. package/build/lib/cli/args.js.map +1 -0
  11. package/build/lib/cli/driver-command.d.ts +102 -0
  12. package/build/lib/cli/driver-command.d.ts.map +1 -0
  13. package/build/lib/cli/driver-command.js +131 -81
  14. package/build/lib/cli/driver-command.js.map +1 -0
  15. package/build/lib/cli/extension-command.d.ts +402 -0
  16. package/build/lib/cli/extension-command.d.ts.map +1 -0
  17. package/build/lib/cli/extension-command.js +799 -383
  18. package/build/lib/cli/extension-command.js.map +1 -0
  19. package/build/lib/cli/extension.d.ts +23 -0
  20. package/build/lib/cli/extension.d.ts.map +1 -0
  21. package/build/lib/cli/extension.js +71 -54
  22. package/build/lib/cli/extension.js.map +1 -0
  23. package/build/lib/cli/parser.d.ts +84 -0
  24. package/build/lib/cli/parser.d.ts.map +1 -0
  25. package/build/lib/cli/parser.js +240 -128
  26. package/build/lib/cli/parser.js.map +1 -0
  27. package/build/lib/cli/plugin-command.d.ts +99 -0
  28. package/build/lib/cli/plugin-command.d.ts.map +1 -0
  29. package/build/lib/cli/plugin-command.js +125 -81
  30. package/build/lib/cli/plugin-command.js.map +1 -0
  31. package/build/lib/cli/utils.d.ts +29 -0
  32. package/build/lib/cli/utils.d.ts.map +1 -0
  33. package/build/lib/cli/utils.js +72 -51
  34. package/build/lib/cli/utils.js.map +1 -0
  35. package/build/lib/config-file.d.ts +100 -0
  36. package/build/lib/config-file.d.ts.map +1 -0
  37. package/build/lib/config-file.js +207 -0
  38. package/build/lib/config-file.js.map +1 -0
  39. package/build/lib/config.d.ts +49 -0
  40. package/build/lib/config.d.ts.map +1 -0
  41. package/build/lib/config.js +267 -202
  42. package/build/lib/config.js.map +1 -0
  43. package/build/lib/constants.d.ts +56 -0
  44. package/build/lib/constants.d.ts.map +1 -0
  45. package/build/lib/constants.js +73 -0
  46. package/build/lib/constants.js.map +1 -0
  47. package/build/lib/extension/driver-config.d.ts +82 -0
  48. package/build/lib/extension/driver-config.d.ts.map +1 -0
  49. package/build/lib/extension/driver-config.js +210 -0
  50. package/build/lib/extension/driver-config.js.map +1 -0
  51. package/build/lib/extension/extension-config.d.ts +270 -0
  52. package/build/lib/extension/extension-config.d.ts.map +1 -0
  53. package/build/lib/extension/extension-config.js +601 -0
  54. package/build/lib/extension/extension-config.js.map +1 -0
  55. package/build/lib/extension/index.d.ts +48 -0
  56. package/build/lib/extension/index.d.ts.map +1 -0
  57. package/build/lib/extension/index.js +105 -0
  58. package/build/lib/extension/index.js.map +1 -0
  59. package/build/lib/extension/manifest-migrations.d.ts +27 -0
  60. package/build/lib/extension/manifest-migrations.d.ts.map +1 -0
  61. package/build/lib/extension/manifest-migrations.js +134 -0
  62. package/build/lib/extension/manifest-migrations.js.map +1 -0
  63. package/build/lib/extension/manifest.d.ts +145 -0
  64. package/build/lib/extension/manifest.d.ts.map +1 -0
  65. package/build/lib/extension/manifest.js +528 -0
  66. package/build/lib/extension/manifest.js.map +1 -0
  67. package/build/lib/extension/package-changed.d.ts +11 -0
  68. package/build/lib/extension/package-changed.d.ts.map +1 -0
  69. package/build/lib/extension/package-changed.js +62 -0
  70. package/build/lib/extension/package-changed.js.map +1 -0
  71. package/build/lib/extension/plugin-config.d.ts +56 -0
  72. package/build/lib/extension/plugin-config.d.ts.map +1 -0
  73. package/build/lib/extension/plugin-config.js +102 -0
  74. package/build/lib/extension/plugin-config.js.map +1 -0
  75. package/build/lib/grid-register.d.ts +10 -0
  76. package/build/lib/grid-register.d.ts.map +1 -0
  77. package/build/lib/grid-register.js +122 -144
  78. package/build/lib/grid-register.js.map +1 -0
  79. package/build/lib/logger.d.ts +3 -0
  80. package/build/lib/logger.d.ts.map +1 -0
  81. package/build/lib/logger.js +5 -17
  82. package/build/lib/logger.js.map +1 -0
  83. package/build/lib/logsink.d.ts +4 -0
  84. package/build/lib/logsink.d.ts.map +1 -0
  85. package/build/lib/logsink.js +190 -187
  86. package/build/lib/logsink.js.map +1 -0
  87. package/build/lib/main.d.ts +62 -0
  88. package/build/lib/main.d.ts.map +1 -0
  89. package/build/lib/main.js +339 -229
  90. package/build/lib/main.js.map +1 -0
  91. package/build/lib/schema/arg-spec.d.ts +143 -0
  92. package/build/lib/schema/arg-spec.d.ts.map +1 -0
  93. package/build/lib/schema/arg-spec.js +164 -0
  94. package/build/lib/schema/arg-spec.js.map +1 -0
  95. package/build/lib/schema/cli-args.d.ts +19 -0
  96. package/build/lib/schema/cli-args.d.ts.map +1 -0
  97. package/build/lib/schema/cli-args.js +217 -0
  98. package/build/lib/schema/cli-args.js.map +1 -0
  99. package/build/lib/schema/cli-transformers.d.ts +5 -0
  100. package/build/lib/schema/cli-transformers.d.ts.map +1 -0
  101. package/build/lib/schema/cli-transformers.js +124 -0
  102. package/build/lib/schema/cli-transformers.js.map +1 -0
  103. package/build/lib/schema/index.d.ts +3 -0
  104. package/build/lib/schema/index.d.ts.map +1 -0
  105. package/build/lib/schema/index.js +19 -0
  106. package/build/lib/schema/index.js.map +1 -0
  107. package/build/lib/schema/keywords.d.ts +24 -0
  108. package/build/lib/schema/keywords.d.ts.map +1 -0
  109. package/build/lib/schema/keywords.js +128 -0
  110. package/build/lib/schema/keywords.js.map +1 -0
  111. package/build/lib/schema/schema.d.ts +260 -0
  112. package/build/lib/schema/schema.d.ts.map +1 -0
  113. package/build/lib/schema/schema.js +640 -0
  114. package/build/lib/schema/schema.js.map +1 -0
  115. package/build/lib/utils.d.ts +266 -0
  116. package/build/lib/utils.d.ts.map +1 -0
  117. package/build/lib/utils.js +349 -273
  118. package/build/lib/utils.js.map +1 -0
  119. package/build/types/cli.d.ts +134 -0
  120. package/build/types/cli.d.ts.map +1 -0
  121. package/build/types/cli.js +3 -0
  122. package/build/types/cli.js.map +1 -0
  123. package/build/types/index.d.ts +15 -0
  124. package/build/types/index.d.ts.map +1 -0
  125. package/build/types/index.js +19 -0
  126. package/build/types/index.js.map +1 -0
  127. package/build/types/manifest/base.d.ts +135 -0
  128. package/build/types/manifest/base.d.ts.map +1 -0
  129. package/build/types/manifest/base.js +3 -0
  130. package/build/types/manifest/base.js.map +1 -0
  131. package/build/types/manifest/index.d.ts +21 -0
  132. package/build/types/manifest/index.d.ts.map +1 -0
  133. package/build/types/manifest/index.js +42 -0
  134. package/build/types/manifest/index.js.map +1 -0
  135. package/build/types/manifest/v3.d.ts +139 -0
  136. package/build/types/manifest/v3.d.ts.map +1 -0
  137. package/build/types/manifest/v3.js +3 -0
  138. package/build/types/manifest/v3.js.map +1 -0
  139. package/build/types/manifest/v4.d.ts +139 -0
  140. package/build/types/manifest/v4.d.ts.map +1 -0
  141. package/build/types/manifest/v4.js +3 -0
  142. package/build/types/manifest/v4.js.map +1 -0
  143. package/driver.d.ts +1 -0
  144. package/driver.js +14 -0
  145. package/index.js +11 -0
  146. package/lib/appium.js +558 -186
  147. package/lib/cli/args.js +277 -422
  148. package/lib/cli/driver-command.js +132 -24
  149. package/lib/cli/extension-command.js +751 -272
  150. package/lib/cli/extension.js +49 -18
  151. package/lib/cli/parser.js +263 -83
  152. package/lib/cli/plugin-command.js +122 -22
  153. package/lib/cli/utils.js +24 -10
  154. package/lib/config-file.js +220 -0
  155. package/lib/config.js +246 -111
  156. package/lib/constants.js +79 -0
  157. package/lib/extension/driver-config.js +247 -0
  158. package/lib/extension/extension-config.js +709 -0
  159. package/lib/extension/index.js +116 -0
  160. package/lib/extension/manifest-migrations.js +136 -0
  161. package/lib/extension/manifest.js +580 -0
  162. package/lib/extension/package-changed.js +64 -0
  163. package/lib/extension/plugin-config.js +112 -0
  164. package/lib/grid-register.js +49 -35
  165. package/lib/logger.js +1 -2
  166. package/lib/logsink.js +64 -38
  167. package/lib/main.js +318 -103
  168. package/lib/schema/arg-spec.js +229 -0
  169. package/lib/schema/cli-args.js +238 -0
  170. package/lib/schema/cli-transformers.js +119 -0
  171. package/lib/schema/index.js +2 -0
  172. package/lib/schema/keywords.js +136 -0
  173. package/lib/schema/schema.js +725 -0
  174. package/lib/utils.js +289 -167
  175. package/package.json +84 -84
  176. package/plugin.d.ts +1 -0
  177. package/plugin.js +13 -0
  178. package/scripts/autoinstall-extensions.js +243 -0
  179. package/support.d.ts +1 -0
  180. package/support.js +13 -0
  181. package/tsconfig.json +25 -0
  182. package/types/cli.ts +193 -0
  183. package/types/index.ts +20 -0
  184. package/types/manifest/README.md +30 -0
  185. package/types/manifest/base.ts +158 -0
  186. package/types/manifest/index.ts +28 -0
  187. package/types/manifest/v3.ts +161 -0
  188. package/types/manifest/v4.ts +161 -0
  189. package/CHANGELOG.md +0 -3515
  190. package/bin/ios-webkit-debug-proxy-launcher.js +0 -71
  191. package/build/lib/cli/npm.js +0 -208
  192. package/build/lib/cli/parser-helpers.js +0 -82
  193. package/build/lib/driver-config.js +0 -77
  194. package/build/lib/drivers.js +0 -96
  195. package/build/lib/extension-config.js +0 -253
  196. package/build/lib/plugin-config.js +0 -59
  197. package/build/lib/plugins.js +0 -14
  198. package/lib/cli/npm.js +0 -184
  199. package/lib/cli/parser-helpers.js +0 -79
  200. package/lib/driver-config.js +0 -46
  201. package/lib/drivers.js +0 -81
  202. package/lib/extension-config.js +0 -209
  203. package/lib/plugin-config.js +0 -34
  204. package/lib/plugins.js +0 -10
@@ -0,0 +1,266 @@
1
+ /**
2
+ * @template {CliCommand} [Cmd=ServerCommand]
3
+ * @template {CliExtensionSubcommand|void} [SubCmd=void]
4
+ * @param {Args<Cmd, SubCmd>} args
5
+ * @returns {args is Args<ServerCommand>}
6
+ */
7
+ export function isServerCommandArgs<Cmd extends import("appium/types").CliCommand = "server", SubCmd extends void | import("appium/types").CliExtensionSubcommand = void>(args: import("appium/types").Args<Cmd, SubCmd>): args is {
8
+ subcommand?: import("appium/types").CliCommand | undefined;
9
+ configFile?: string | undefined;
10
+ showConfig?: boolean | undefined;
11
+ shell?: boolean | undefined;
12
+ throwInsteadOfExit?: boolean | undefined;
13
+ logHandler?: ((...args: any[]) => void) | undefined;
14
+ appiumHome?: string | undefined;
15
+ showBuildInfo?: boolean | undefined;
16
+ driver?: import("@appium/types").DriverConfig | undefined;
17
+ plugin?: import("@appium/types").PluginConfig | undefined;
18
+ address?: string | undefined;
19
+ nodeconfig?: import("@appium/types").NodeconfigConfig | undefined;
20
+ port?: number | undefined;
21
+ webhook?: string | undefined;
22
+ allowCors?: NonNullable<boolean | undefined> | undefined;
23
+ allowInsecure?: import("@appium/types").AllowInsecureConfig | undefined;
24
+ basePath?: string | undefined;
25
+ callbackAddress?: string | undefined;
26
+ callbackPort?: number | undefined;
27
+ debugLogSpacing?: NonNullable<boolean | undefined> | undefined;
28
+ defaultCapabilities?: import("@appium/types").DefaultCapabilitiesConfig | undefined;
29
+ denyInsecure?: import("@appium/types").DenyInsecureConfig | undefined;
30
+ keepAliveTimeout?: number | undefined;
31
+ localTimezone?: NonNullable<boolean | undefined> | undefined;
32
+ logFilters?: import("@appium/types").LogFiltersConfig | undefined;
33
+ logNoColors?: NonNullable<boolean | undefined> | undefined;
34
+ logTimestamp?: NonNullable<boolean | undefined> | undefined;
35
+ longStacktrace?: NonNullable<boolean | undefined> | undefined;
36
+ noPermsCheck?: NonNullable<boolean | undefined> | undefined;
37
+ sessionOverride?: NonNullable<boolean | undefined> | undefined;
38
+ strictCaps?: NonNullable<boolean | undefined> | undefined;
39
+ traceDir?: string | undefined;
40
+ useDrivers?: import("@appium/types").UseDriversConfig | undefined;
41
+ usePlugins?: import("@appium/types").UsePluginsConfig | undefined;
42
+ logFile?: string | undefined;
43
+ loglevel?: NonNullable<import("@appium/types").LogLevelConfig | undefined> | undefined;
44
+ relaxedSecurityEnabled?: NonNullable<boolean | undefined> | undefined;
45
+ tmpDir?: string | undefined;
46
+ };
47
+ /**
48
+ * @template {CliCommand} [Cmd=ServerCommand]
49
+ * @template {CliExtensionSubcommand|void} [SubCmd=void]
50
+ * @param {Args<Cmd, SubCmd>} args
51
+ * @returns {args is Args<CliExtensionCommand, SubCmd>}
52
+ */
53
+ export function isExtensionCommandArgs<Cmd extends import("appium/types").CliCommand = "server", SubCmd extends void | import("appium/types").CliExtensionSubcommand = void>(args: import("appium/types").Args<Cmd, SubCmd>): args is import("appium/types").ParsedArgs<"driver", SubCmd> | import("appium/types").ParsedArgs<"plugin", SubCmd>;
54
+ /**
55
+ * @template {CliCommand} Cmd
56
+ * @template {CliExtensionSubcommand} SubCmd
57
+ * @param {Args<Cmd, SubCmd>} args
58
+ * @returns {args is Args<DriverCommand, SubCmd>}
59
+ */
60
+ export function isDriverCommandArgs<Cmd extends import("appium/types").CliCommand, SubCmd extends import("appium/types").CliExtensionSubcommand>(args: import("appium/types").Args<Cmd, SubCmd>): args is import("appium/types").ParsedArgs<"driver", SubCmd>;
61
+ /**
62
+ * @template {CliCommand} Cmd
63
+ * @template {CliExtensionSubcommand} SubCmd
64
+ * @param {Args<Cmd, SubCmd>} args
65
+ * @returns {args is Args<PluginCommand, SubCmd>}
66
+ */
67
+ export function isPluginCommandArgs<Cmd extends import("appium/types").CliCommand, SubCmd extends import("appium/types").CliExtensionSubcommand>(args: import("appium/types").Args<Cmd, SubCmd>): args is import("appium/types").ParsedArgs<"plugin", SubCmd>;
68
+ export type StringRecord = import('@appium/types').StringRecord;
69
+ export type BaseDriverCapConstraints = import('@appium/types').BaseDriverCapConstraints;
70
+ export type ParsedDriverCaps<C extends import("@appium/types").Constraints = {
71
+ readonly platformName: {
72
+ readonly presence: true;
73
+ readonly isString: true;
74
+ };
75
+ readonly app: {
76
+ readonly isString: true;
77
+ };
78
+ readonly deviceName: {
79
+ readonly isString: true;
80
+ };
81
+ readonly platformVersion: {
82
+ readonly isString: true;
83
+ };
84
+ readonly webSocketUrl: {
85
+ readonly isBoolean: true;
86
+ };
87
+ readonly newCommandTimeout: {
88
+ readonly isNumber: true;
89
+ };
90
+ readonly automationName: {
91
+ readonly isString: true;
92
+ };
93
+ readonly autoLaunch: {
94
+ readonly isBoolean: true;
95
+ };
96
+ readonly udid: {
97
+ readonly isString: true;
98
+ };
99
+ readonly orientation: {
100
+ readonly inclusion: readonly ["LANDSCAPE", "PORTRAIT"];
101
+ }; /** @type {(object: any, options: import('util').InspectOptions) => string} */
102
+ readonly autoWebview: {
103
+ readonly isBoolean: true;
104
+ };
105
+ readonly noReset: {
106
+ readonly isBoolean: true;
107
+ };
108
+ readonly fullReset: {
109
+ readonly isBoolean: true;
110
+ };
111
+ readonly language: {
112
+ readonly isString: true;
113
+ };
114
+ readonly locale: {
115
+ readonly isString: true;
116
+ };
117
+ readonly eventTimings: {
118
+ readonly isBoolean: true;
119
+ };
120
+ readonly printPageSourceOnFindFailure: {
121
+ readonly isBoolean: true;
122
+ };
123
+ }, J = any> = {
124
+ desiredCaps: Capabilities<C>;
125
+ protocol: string;
126
+ processedJsonwpCapabilities?: J | undefined;
127
+ processedW3CCapabilities?: import("@appium/types").W3CCapabilities<C> | undefined;
128
+ };
129
+ export type InvalidCaps<C extends import("@appium/types").Constraints = {
130
+ readonly platformName: {
131
+ readonly presence: true;
132
+ readonly isString: true;
133
+ };
134
+ readonly app: {
135
+ readonly isString: true;
136
+ };
137
+ readonly deviceName: {
138
+ readonly isString: true;
139
+ };
140
+ readonly platformVersion: {
141
+ readonly isString: true;
142
+ };
143
+ readonly webSocketUrl: {
144
+ readonly isBoolean: true;
145
+ };
146
+ readonly newCommandTimeout: {
147
+ readonly isNumber: true;
148
+ };
149
+ readonly automationName: {
150
+ readonly isString: true;
151
+ };
152
+ readonly autoLaunch: {
153
+ readonly isBoolean: true;
154
+ };
155
+ readonly udid: {
156
+ readonly isString: true;
157
+ };
158
+ readonly orientation: {
159
+ readonly inclusion: readonly ["LANDSCAPE", "PORTRAIT"];
160
+ }; /** @type {(object: any, options: import('util').InspectOptions) => string} */
161
+ readonly autoWebview: {
162
+ readonly isBoolean: true;
163
+ };
164
+ readonly noReset: {
165
+ readonly isBoolean: true;
166
+ };
167
+ readonly fullReset: {
168
+ readonly isBoolean: true;
169
+ };
170
+ readonly language: {
171
+ readonly isString: true;
172
+ };
173
+ readonly locale: {
174
+ readonly isString: true;
175
+ };
176
+ readonly eventTimings: {
177
+ readonly isBoolean: true;
178
+ };
179
+ readonly printPageSourceOnFindFailure: {
180
+ readonly isBoolean: true;
181
+ };
182
+ }, J = any> = {
183
+ error: Error;
184
+ protocol: string;
185
+ desiredCaps?: import("@appium/types").ConstraintsToCaps<C> | undefined;
186
+ processedJsonwpCapabilities?: J | undefined;
187
+ processedW3CCapabilities?: import("@appium/types").W3CCapabilities<C> | undefined;
188
+ };
189
+ export type Capabilities<C extends import("@appium/types").Constraints> = import('@appium/types').Capabilities<C>;
190
+ export type W3CCapabilities<C extends import("@appium/types").Constraints> = import('@appium/types').W3CCapabilities<C>;
191
+ export type NSCapabilities<C extends import("@appium/types").Constraints> = import('@appium/types').NSCapabilities<C>;
192
+ export type ConstraintsToCaps<C extends import("@appium/types").Constraints> = import('@appium/types').ConstraintsToCaps<C>;
193
+ export type StringKeyOf<T> = import('type-fest').StringKeyOf<T>;
194
+ export type Constraints = import('@appium/types').Constraints;
195
+ export type CliCommand = import('appium/types').CliCommand;
196
+ export type CliExtensionSubcommand = import('appium/types').CliExtensionSubcommand;
197
+ export type CliExtensionCommand = import('appium/types').CliExtensionCommand;
198
+ export type ServerCommand = import('appium/types').CliCommandServer;
199
+ export type DriverCommand = import('appium/types').CliCommandDriver;
200
+ export type PluginCommand = import('appium/types').CliCommandPlugin;
201
+ export type Args<Cmd extends import("appium/types").CliCommand = "server", SubCmd extends void | import("appium/types").CliExtensionSubcommand = void> = import('appium/types').Args<Cmd, SubCmd>;
202
+ export type ParsedArgs<Cmd extends import("appium/types").CliCommand = "server", SubCmd extends void | import("appium/types").CliExtensionSubcommand = void> = import('appium/types').ParsedArgs<Cmd, SubCmd>;
203
+ /**
204
+ * Dumps to value to the console using `info` logger.
205
+ *
206
+ * @todo May want to force color to be `false` if {@link isStdoutTTY} is `false`.
207
+ */
208
+ export const inspect: (t1: any) => void;
209
+ /**
210
+ * Takes the caps that were provided in the request and translates them
211
+ * into caps that can be used by the inner drivers.
212
+ *
213
+ * @template {Constraints} C
214
+ * @template [J=any]
215
+ * @param {J} jsonwpCapabilities
216
+ * @param {W3CCapabilities<C>} w3cCapabilities
217
+ * @param {C} constraints
218
+ * @param {NSCapabilities<C>} [defaultCapabilities]
219
+ * @returns {ParsedDriverCaps<C,J>|InvalidCaps<C,J>}
220
+ */
221
+ export function parseCapsForInnerDriver<C extends import("@appium/types").Constraints, J = any>(jsonwpCapabilities: J, w3cCapabilities: import("@appium/types").W3CCapabilities<C>, constraints?: C, defaultCapabilities?: Partial<import("@appium/types").CapsToNSCaps<import("@appium/types").ConstraintsToCaps<C>, "appium">> | undefined): ParsedDriverCaps<C, J> | InvalidCaps<C, J>;
222
+ /**
223
+ * Takes a capabilities objects and prefixes capabilities with `appium:`
224
+ * @template {Constraints} [C={}]
225
+ * @param {Capabilities<C>} caps - Desired capabilities object
226
+ * @returns {NSCapabilities<C>}
227
+ */
228
+ export function insertAppiumPrefixes<C extends import("@appium/types").Constraints = {}>(caps: import("@appium/types").ConstraintsToCaps<C>): Partial<import("@appium/types").CapsToNSCaps<import("@appium/types").ConstraintsToCaps<C>, "appium">>;
229
+ /**
230
+ *
231
+ * @param {string} pkgName
232
+ * @returns {string|undefined}
233
+ */
234
+ export function getPackageVersion(pkgName: string): string | undefined;
235
+ /**
236
+ * Pulls the initial values of Appium settings from the given capabilities argument.
237
+ * Each setting item must satisfy the following format:
238
+ * `setting[setting_name]: setting_value`
239
+ * The capabilities argument itself gets mutated, so it does not contain parsed
240
+ * settings anymore to avoid further parsing issues.
241
+ * Check
242
+ * https://github.com/appium/appium/blob/master/docs/en/advanced-concepts/settings.md
243
+ * for more details on the available settings.
244
+ *
245
+ * @param {?Object} caps - Capabilities dictionary. It is mutated if
246
+ * one or more settings have been pulled from it
247
+ * @return {Object} - An empty dictionary if the given caps contains no
248
+ * setting items or a dictionary containing parsed Appium setting names along with
249
+ * their values.
250
+ */
251
+ export function pullSettings(caps: any | null): any;
252
+ /**
253
+ * @template {Constraints} [C={}]
254
+ * @param {NSCapabilities<C>} caps
255
+ * @returns {Capabilities<C>}
256
+ */
257
+ export function removeAppiumPrefixes<C extends import("@appium/types").Constraints = {}>(caps: Partial<import("@appium/types").CapsToNSCaps<import("@appium/types").ConstraintsToCaps<C>, "appium">>): import("@appium/types").ConstraintsToCaps<C>;
258
+ /**
259
+ * Adjusts NODE_PATH environment variable,
260
+ * so drivers and plugins could load their peer dependencies.
261
+ * Read https://nodejs.org/api/modules.html#loading-from-the-global-folders
262
+ * for more details.
263
+ * @returns {void}
264
+ */
265
+ export function adjustNodePath(): void;
266
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.js"],"names":[],"mappings":"AAqSA;;;;;GAKG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEC;AAED;;;;;GAKG;AACH,gVAEC;AAED;;;;;GAKG;AACH,8PAEC;AAED;;;;;GAKG;AACH,8PAEC;2BAaY,OAAO,eAAe,EAAE,YAAY;uCACpC,OAAO,eAAe,EAAE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA9TzD,8EAA8E;;;;;;;;;;;;;;;;;;;;;;;iBAqUpE,aAAa,CAAC,CAAC;cACf,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAtUhB,8EAA8E;;;;;;;;;;;;;;;;;;;;;;;WAgVpE,KAAK;cACL,MAAM;;;;;0EAQP,OAAO,eAAe,EAAE,YAAY,CAAC,CAAC,CAAC;6EAKvC,OAAO,eAAe,EAAE,eAAe,CAAC,CAAC,CAAC;4EAK1C,OAAO,eAAe,EAAE,cAAc,CAAC,CAAC,CAAC;+EAKzC,OAAO,eAAe,EAAE,iBAAiB,CAAC,CAAC,CAAC;6BAK5C,OAAO,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC;0BAIlC,OAAO,eAAe,EAAE,WAAW;yBAInC,OAAO,cAAc,EAAE,UAAU;qCACjC,OAAO,cAAc,EAAE,sBAAsB;kCAC7C,OAAO,cAAc,EAAE,mBAAmB;4BAC1C,OAAO,cAAc,EAAE,gBAAgB;4BACvC,OAAO,cAAc,EAAE,gBAAgB;4BACvC,OAAO,cAAc,EAAE,gBAAgB;yJAMvC,OAAO,cAAc,EAAE,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC;+JAMxC,OAAO,cAAc,EAAE,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;AA7Y3D;;;;GAIG;AACH,wCAQE;AAEF;;;;;;;;;;;GAWG;AACH,0XAgHC;AAED;;;;;GAKG;AACH,oPAQC;AAoBD;;;;GAIG;AACH,2CAHW,MAAM,GACJ,MAAM,GAAC,SAAS,CAK5B;AAwDD;;;;;;;;;;;;;;;GAeG;AACH,oDAgBC;AAlHD;;;;GAIG;AACH,oPAEC;AAqBD;;;;;;GAMG;AACH,kCAFa,IAAI,CA+ChB"}