appium-uiautomator2-driver 4.2.2 → 5.0.0-beta.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [4.2.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.2...v4.2.3) (2025-04-25)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * add deprecated: true for get clipboard ([#887](https://github.com/appium/appium-uiautomator2-driver/issues/887)) ([19c6417](https://github.com/appium/appium-uiautomator2-driver/commit/19c6417ccfc336899d09d6bdf9b4532ad625babe))
6
+
1
7
  ## [4.2.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.1...v4.2.2) (2025-04-23)
2
8
 
3
9
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -457,10 +457,14 @@ waitForLaunch | boolean | no | If `false` then ADB won't wait for the started ac
457
457
 
458
458
  Starts Android logcat broadcast websocket on the same host and port where Appium server is running at `/ws/session/:sessionId:/appium/logcat` endpoint. The method will return immediately if the web socket is already listening. Each connected webcoket listener will receive logcat log lines as soon as they are visible to Appium. Read [Using Mobile Execution Commands to Continuously Stream Device Logs with Appium](https://appiumpro.com/editions/55-using-mobile-execution-commands-to-continuously-stream-device-logs-with-appium) for more details.
459
459
 
460
+ Consider using [logs broadcast via BiDi](./docs/bidi.md#logentryadded) over this extension.
461
+
460
462
  ### mobile: stopLogsBroadcast
461
463
 
462
464
  Stops the previously started logcat broadcasting websocket server. This method will return immediately if no server is running. Read [Using Mobile Execution Commands to Continuously Stream Device Logs with Appium](https://appiumpro.com/editions/55-using-mobile-execution-commands-to-continuously-stream-device-logs-with-appium) for more details.
463
465
 
466
+ Consider using [logs broadcast via BiDi](./docs/bidi.md#logentryadded) over this extension.
467
+
464
468
  ### mobile: deviceidle
465
469
 
466
470
  This is a wrapper to 'adb shell dumpsys deviceidle' interface.
@@ -25,6 +25,20 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
25
25
  readonly payloadParams: {
26
26
  readonly optional: readonly ["contentType"];
27
27
  };
28
+ readonly deprecated: true;
29
+ };
30
+ };
31
+ readonly '/session/:sessionId/log': {
32
+ readonly POST: {
33
+ readonly command: "getLog";
34
+ readonly payloadParams: {
35
+ readonly required: readonly ["type"];
36
+ };
37
+ };
38
+ };
39
+ readonly '/session/:sessionId/log/types': {
40
+ readonly GET: {
41
+ readonly command: "getLogTypes";
28
42
  };
29
43
  };
30
44
  readonly '/session/:sessionId/timeouts/implicit_wait': {
@@ -33,6 +47,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
33
47
  readonly payloadParams: {
34
48
  readonly required: readonly ["ms"];
35
49
  };
50
+ readonly deprecated: true;
36
51
  };
37
52
  };
38
53
  readonly '/session/:sessionId/ime/available_engines': {
@@ -66,6 +81,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
66
81
  readonly '/session/:sessionId/window/:windowhandle/size': {
67
82
  readonly GET: {
68
83
  readonly command: "getWindowSize";
84
+ readonly deprecated: true;
69
85
  };
70
86
  };
71
87
  readonly '/session/:sessionId/keys': {
@@ -74,21 +90,25 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
74
90
  readonly payloadParams: {
75
91
  readonly required: readonly ["value"];
76
92
  };
93
+ readonly deprecated: true;
77
94
  };
78
95
  };
79
96
  readonly '/session/:sessionId/element/:elementId/location': {
80
97
  readonly GET: {
81
98
  readonly command: "getLocation";
99
+ readonly deprecated: true;
82
100
  };
83
101
  };
84
102
  readonly '/session/:sessionId/element/:elementId/location_in_view': {
85
103
  readonly GET: {
86
104
  readonly command: "getLocationInView";
105
+ readonly deprecated: true;
87
106
  };
88
107
  };
89
108
  readonly '/session/:sessionId/element/:elementId/size': {
90
109
  readonly GET: {
91
110
  readonly command: "getSize";
111
+ readonly deprecated: true;
92
112
  };
93
113
  };
94
114
  readonly '/session/:sessionId/appium/device/lock': {
@@ -97,16 +117,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
97
117
  readonly payloadParams: {
98
118
  readonly optional: readonly ["seconds"];
99
119
  };
120
+ readonly deprecated: true;
100
121
  };
101
122
  };
102
123
  readonly '/session/:sessionId/appium/device/unlock': {
103
124
  readonly POST: {
104
125
  readonly command: "unlock";
126
+ readonly deprecated: true;
105
127
  };
106
128
  };
107
129
  readonly '/session/:sessionId/appium/device/is_locked': {
108
130
  readonly POST: {
109
131
  readonly command: "isLocked";
132
+ readonly deprecated: true;
110
133
  };
111
134
  };
112
135
  readonly '/session/:sessionId/appium/start_recording_screen': {
@@ -128,6 +151,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
128
151
  readonly '/session/:sessionId/appium/performanceData/types': {
129
152
  readonly POST: {
130
153
  readonly command: "getPerformanceDataTypes";
154
+ readonly deprecated: true;
131
155
  };
132
156
  };
133
157
  readonly '/session/:sessionId/appium/getPerformanceData': {
@@ -137,6 +161,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
137
161
  readonly required: readonly ["packageName", "dataType"];
138
162
  readonly optional: readonly ["dataReadTimeout"];
139
163
  };
164
+ readonly deprecated: true;
140
165
  };
141
166
  };
142
167
  readonly '/session/:sessionId/appium/device/press_keycode': {
@@ -146,6 +171,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
146
171
  readonly required: readonly ["keycode"];
147
172
  readonly optional: readonly ["metastate", "flags"];
148
173
  };
174
+ readonly deprecated: true;
149
175
  };
150
176
  };
151
177
  readonly '/session/:sessionId/appium/device/long_press_keycode': {
@@ -155,6 +181,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
155
181
  readonly required: readonly ["keycode"];
156
182
  readonly optional: readonly ["metastate", "flags"];
157
183
  };
184
+ readonly deprecated: true;
158
185
  };
159
186
  };
160
187
  readonly '/session/:sessionId/appium/device/finger_print': {
@@ -163,6 +190,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
163
190
  readonly payloadParams: {
164
191
  readonly required: readonly ["fingerprintId"];
165
192
  };
193
+ readonly deprecated: true;
166
194
  };
167
195
  };
168
196
  readonly '/session/:sessionId/appium/device/send_sms': {
@@ -171,6 +199,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
171
199
  readonly payloadParams: {
172
200
  readonly required: readonly ["phoneNumber", "message"];
173
201
  };
202
+ readonly deprecated: true;
174
203
  };
175
204
  };
176
205
  readonly '/session/:sessionId/appium/device/gsm_call': {
@@ -179,6 +208,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
179
208
  readonly payloadParams: {
180
209
  readonly required: readonly ["phoneNumber", "action"];
181
210
  };
211
+ readonly deprecated: true;
182
212
  };
183
213
  };
184
214
  readonly '/session/:sessionId/appium/device/gsm_signal': {
@@ -187,6 +217,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
187
217
  readonly payloadParams: {
188
218
  readonly required: readonly ["signalStrength"];
189
219
  };
220
+ readonly deprecated: true;
190
221
  };
191
222
  };
192
223
  readonly '/session/:sessionId/appium/device/gsm_voice': {
@@ -195,6 +226,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
195
226
  readonly payloadParams: {
196
227
  readonly required: readonly ["state"];
197
228
  };
229
+ readonly deprecated: true;
198
230
  };
199
231
  };
200
232
  readonly '/session/:sessionId/appium/device/power_capacity': {
@@ -203,6 +235,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
203
235
  readonly payloadParams: {
204
236
  readonly required: readonly ["percent"];
205
237
  };
238
+ readonly deprecated: true;
206
239
  };
207
240
  };
208
241
  readonly '/session/:sessionId/appium/device/power_ac': {
@@ -211,6 +244,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
211
244
  readonly payloadParams: {
212
245
  readonly required: readonly ["state"];
213
246
  };
247
+ readonly deprecated: true;
214
248
  };
215
249
  };
216
250
  readonly '/session/:sessionId/appium/device/network_speed': {
@@ -219,6 +253,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
219
253
  readonly payloadParams: {
220
254
  readonly required: readonly ["netspeed"];
221
255
  };
256
+ readonly deprecated: true;
222
257
  };
223
258
  };
224
259
  readonly '/session/:sessionId/appium/device/keyevent': {
@@ -228,16 +263,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
228
263
  readonly required: readonly ["keycode"];
229
264
  readonly optional: readonly ["metastate"];
230
265
  };
266
+ readonly deprecated: true;
231
267
  };
232
268
  };
233
269
  readonly '/session/:sessionId/appium/device/current_activity': {
234
270
  readonly GET: {
235
271
  readonly command: "getCurrentActivity";
272
+ readonly deprecated: true;
236
273
  };
237
274
  };
238
275
  readonly '/session/:sessionId/appium/device/current_package': {
239
276
  readonly GET: {
240
277
  readonly command: "getCurrentPackage";
278
+ readonly deprecated: true;
241
279
  };
242
280
  };
243
281
  readonly '/session/:sessionId/appium/device/app_state': {
@@ -246,31 +284,37 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
246
284
  readonly payloadParams: {
247
285
  readonly required: readonly [readonly ["appId"], readonly ["bundleId"]];
248
286
  };
287
+ readonly deprecated: true;
249
288
  };
250
289
  };
251
290
  readonly '/session/:sessionId/appium/device/toggle_airplane_mode': {
252
291
  readonly POST: {
253
292
  readonly command: "toggleFlightMode";
293
+ readonly deprecated: true;
254
294
  };
255
295
  };
256
296
  readonly '/session/:sessionId/appium/device/toggle_data': {
257
297
  readonly POST: {
258
298
  readonly command: "toggleData";
299
+ readonly deprecated: true;
259
300
  };
260
301
  };
261
302
  readonly '/session/:sessionId/appium/device/toggle_wifi': {
262
303
  readonly POST: {
263
304
  readonly command: "toggleWiFi";
305
+ readonly deprecated: true;
264
306
  };
265
307
  };
266
308
  readonly '/session/:sessionId/appium/device/toggle_location_services': {
267
309
  readonly POST: {
268
310
  readonly command: "toggleLocationServices";
311
+ readonly deprecated: true;
269
312
  };
270
313
  };
271
314
  readonly '/session/:sessionId/appium/device/open_notifications': {
272
315
  readonly POST: {
273
316
  readonly command: "openNotifications";
317
+ readonly deprecated: true;
274
318
  };
275
319
  };
276
320
  readonly '/session/:sessionId/appium/device/start_activity': {
@@ -280,16 +324,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
280
324
  readonly required: readonly ["appPackage", "appActivity"];
281
325
  readonly optional: readonly ["appWaitPackage", "appWaitActivity", "intentAction", "intentCategory", "intentFlags", "optionalIntentArguments", "dontStopAppOnReset"];
282
326
  };
327
+ readonly deprecated: true;
283
328
  };
284
329
  };
285
330
  readonly '/session/:sessionId/appium/device/system_bars': {
286
331
  readonly GET: {
287
332
  readonly command: "getSystemBars";
333
+ readonly deprecated: true;
288
334
  };
289
335
  };
290
336
  readonly '/session/:sessionId/appium/device/display_density': {
291
337
  readonly GET: {
292
338
  readonly command: "getDisplayDensity";
339
+ readonly deprecated: true;
293
340
  };
294
341
  };
295
342
  readonly '/session/:sessionId/appium/app/background': {
@@ -298,6 +345,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
298
345
  readonly payloadParams: {
299
346
  readonly required: readonly ["seconds"];
300
347
  };
348
+ readonly deprecated: true;
301
349
  };
302
350
  };
303
351
  readonly '/session/:sessionId/appium/app/strings': {
@@ -306,6 +354,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
306
354
  readonly payloadParams: {
307
355
  readonly optional: readonly ["language", "stringFile"];
308
356
  };
357
+ readonly deprecated: true;
309
358
  };
310
359
  };
311
360
  readonly '/session/:sessionId/appium/element/:elementId/value': {
@@ -314,6 +363,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
314
363
  readonly payloadParams: {
315
364
  readonly required: readonly ["text"];
316
365
  };
366
+ readonly deprecated: true;
317
367
  };
318
368
  };
319
369
  readonly '/session/:sessionId/appium/element/:elementId/replace_value': {
@@ -322,11 +372,13 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
322
372
  readonly payloadParams: {
323
373
  readonly required: readonly ["text"];
324
374
  };
375
+ readonly deprecated: true;
325
376
  };
326
377
  };
327
378
  readonly '/session/:sessionId/network_connection': {
328
379
  readonly GET: {
329
380
  readonly command: "getNetworkConnection";
381
+ readonly deprecated: true;
330
382
  };
331
383
  readonly POST: {
332
384
  readonly command: "setNetworkConnection";
@@ -334,6 +386,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
334
386
  readonly unwrap: "parameters";
335
387
  readonly required: readonly ["type"];
336
388
  };
389
+ readonly deprecated: true;
337
390
  };
338
391
  };
339
392
  };
@@ -1 +1 @@
1
- {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"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"}
@@ -5,6 +5,20 @@ export declare const newMethodMap: {
5
5
  readonly payloadParams: {
6
6
  readonly optional: readonly ["contentType"];
7
7
  };
8
+ readonly deprecated: true;
9
+ };
10
+ };
11
+ readonly '/session/:sessionId/log': {
12
+ readonly POST: {
13
+ readonly command: "getLog";
14
+ readonly payloadParams: {
15
+ readonly required: readonly ["type"];
16
+ };
17
+ };
18
+ };
19
+ readonly '/session/:sessionId/log/types': {
20
+ readonly GET: {
21
+ readonly command: "getLogTypes";
8
22
  };
9
23
  };
10
24
  readonly '/session/:sessionId/timeouts/implicit_wait': {
@@ -13,6 +27,7 @@ export declare const newMethodMap: {
13
27
  readonly payloadParams: {
14
28
  readonly required: readonly ["ms"];
15
29
  };
30
+ readonly deprecated: true;
16
31
  };
17
32
  };
18
33
  readonly '/session/:sessionId/ime/available_engines': {
@@ -46,6 +61,7 @@ export declare const newMethodMap: {
46
61
  readonly '/session/:sessionId/window/:windowhandle/size': {
47
62
  readonly GET: {
48
63
  readonly command: "getWindowSize";
64
+ readonly deprecated: true;
49
65
  };
50
66
  };
51
67
  readonly '/session/:sessionId/keys': {
@@ -54,21 +70,25 @@ export declare const newMethodMap: {
54
70
  readonly payloadParams: {
55
71
  readonly required: readonly ["value"];
56
72
  };
73
+ readonly deprecated: true;
57
74
  };
58
75
  };
59
76
  readonly '/session/:sessionId/element/:elementId/location': {
60
77
  readonly GET: {
61
78
  readonly command: "getLocation";
79
+ readonly deprecated: true;
62
80
  };
63
81
  };
64
82
  readonly '/session/:sessionId/element/:elementId/location_in_view': {
65
83
  readonly GET: {
66
84
  readonly command: "getLocationInView";
85
+ readonly deprecated: true;
67
86
  };
68
87
  };
69
88
  readonly '/session/:sessionId/element/:elementId/size': {
70
89
  readonly GET: {
71
90
  readonly command: "getSize";
91
+ readonly deprecated: true;
72
92
  };
73
93
  };
74
94
  readonly '/session/:sessionId/appium/device/lock': {
@@ -77,16 +97,19 @@ export declare const newMethodMap: {
77
97
  readonly payloadParams: {
78
98
  readonly optional: readonly ["seconds"];
79
99
  };
100
+ readonly deprecated: true;
80
101
  };
81
102
  };
82
103
  readonly '/session/:sessionId/appium/device/unlock': {
83
104
  readonly POST: {
84
105
  readonly command: "unlock";
106
+ readonly deprecated: true;
85
107
  };
86
108
  };
87
109
  readonly '/session/:sessionId/appium/device/is_locked': {
88
110
  readonly POST: {
89
111
  readonly command: "isLocked";
112
+ readonly deprecated: true;
90
113
  };
91
114
  };
92
115
  readonly '/session/:sessionId/appium/start_recording_screen': {
@@ -108,6 +131,7 @@ export declare const newMethodMap: {
108
131
  readonly '/session/:sessionId/appium/performanceData/types': {
109
132
  readonly POST: {
110
133
  readonly command: "getPerformanceDataTypes";
134
+ readonly deprecated: true;
111
135
  };
112
136
  };
113
137
  readonly '/session/:sessionId/appium/getPerformanceData': {
@@ -117,6 +141,7 @@ export declare const newMethodMap: {
117
141
  readonly required: readonly ["packageName", "dataType"];
118
142
  readonly optional: readonly ["dataReadTimeout"];
119
143
  };
144
+ readonly deprecated: true;
120
145
  };
121
146
  };
122
147
  readonly '/session/:sessionId/appium/device/press_keycode': {
@@ -126,6 +151,7 @@ export declare const newMethodMap: {
126
151
  readonly required: readonly ["keycode"];
127
152
  readonly optional: readonly ["metastate", "flags"];
128
153
  };
154
+ readonly deprecated: true;
129
155
  };
130
156
  };
131
157
  readonly '/session/:sessionId/appium/device/long_press_keycode': {
@@ -135,6 +161,7 @@ export declare const newMethodMap: {
135
161
  readonly required: readonly ["keycode"];
136
162
  readonly optional: readonly ["metastate", "flags"];
137
163
  };
164
+ readonly deprecated: true;
138
165
  };
139
166
  };
140
167
  readonly '/session/:sessionId/appium/device/finger_print': {
@@ -143,6 +170,7 @@ export declare const newMethodMap: {
143
170
  readonly payloadParams: {
144
171
  readonly required: readonly ["fingerprintId"];
145
172
  };
173
+ readonly deprecated: true;
146
174
  };
147
175
  };
148
176
  readonly '/session/:sessionId/appium/device/send_sms': {
@@ -151,6 +179,7 @@ export declare const newMethodMap: {
151
179
  readonly payloadParams: {
152
180
  readonly required: readonly ["phoneNumber", "message"];
153
181
  };
182
+ readonly deprecated: true;
154
183
  };
155
184
  };
156
185
  readonly '/session/:sessionId/appium/device/gsm_call': {
@@ -159,6 +188,7 @@ export declare const newMethodMap: {
159
188
  readonly payloadParams: {
160
189
  readonly required: readonly ["phoneNumber", "action"];
161
190
  };
191
+ readonly deprecated: true;
162
192
  };
163
193
  };
164
194
  readonly '/session/:sessionId/appium/device/gsm_signal': {
@@ -167,6 +197,7 @@ export declare const newMethodMap: {
167
197
  readonly payloadParams: {
168
198
  readonly required: readonly ["signalStrength"];
169
199
  };
200
+ readonly deprecated: true;
170
201
  };
171
202
  };
172
203
  readonly '/session/:sessionId/appium/device/gsm_voice': {
@@ -175,6 +206,7 @@ export declare const newMethodMap: {
175
206
  readonly payloadParams: {
176
207
  readonly required: readonly ["state"];
177
208
  };
209
+ readonly deprecated: true;
178
210
  };
179
211
  };
180
212
  readonly '/session/:sessionId/appium/device/power_capacity': {
@@ -183,6 +215,7 @@ export declare const newMethodMap: {
183
215
  readonly payloadParams: {
184
216
  readonly required: readonly ["percent"];
185
217
  };
218
+ readonly deprecated: true;
186
219
  };
187
220
  };
188
221
  readonly '/session/:sessionId/appium/device/power_ac': {
@@ -191,6 +224,7 @@ export declare const newMethodMap: {
191
224
  readonly payloadParams: {
192
225
  readonly required: readonly ["state"];
193
226
  };
227
+ readonly deprecated: true;
194
228
  };
195
229
  };
196
230
  readonly '/session/:sessionId/appium/device/network_speed': {
@@ -199,6 +233,7 @@ export declare const newMethodMap: {
199
233
  readonly payloadParams: {
200
234
  readonly required: readonly ["netspeed"];
201
235
  };
236
+ readonly deprecated: true;
202
237
  };
203
238
  };
204
239
  readonly '/session/:sessionId/appium/device/keyevent': {
@@ -208,16 +243,19 @@ export declare const newMethodMap: {
208
243
  readonly required: readonly ["keycode"];
209
244
  readonly optional: readonly ["metastate"];
210
245
  };
246
+ readonly deprecated: true;
211
247
  };
212
248
  };
213
249
  readonly '/session/:sessionId/appium/device/current_activity': {
214
250
  readonly GET: {
215
251
  readonly command: "getCurrentActivity";
252
+ readonly deprecated: true;
216
253
  };
217
254
  };
218
255
  readonly '/session/:sessionId/appium/device/current_package': {
219
256
  readonly GET: {
220
257
  readonly command: "getCurrentPackage";
258
+ readonly deprecated: true;
221
259
  };
222
260
  };
223
261
  readonly '/session/:sessionId/appium/device/app_state': {
@@ -226,31 +264,37 @@ export declare const newMethodMap: {
226
264
  readonly payloadParams: {
227
265
  readonly required: readonly [readonly ["appId"], readonly ["bundleId"]];
228
266
  };
267
+ readonly deprecated: true;
229
268
  };
230
269
  };
231
270
  readonly '/session/:sessionId/appium/device/toggle_airplane_mode': {
232
271
  readonly POST: {
233
272
  readonly command: "toggleFlightMode";
273
+ readonly deprecated: true;
234
274
  };
235
275
  };
236
276
  readonly '/session/:sessionId/appium/device/toggle_data': {
237
277
  readonly POST: {
238
278
  readonly command: "toggleData";
279
+ readonly deprecated: true;
239
280
  };
240
281
  };
241
282
  readonly '/session/:sessionId/appium/device/toggle_wifi': {
242
283
  readonly POST: {
243
284
  readonly command: "toggleWiFi";
285
+ readonly deprecated: true;
244
286
  };
245
287
  };
246
288
  readonly '/session/:sessionId/appium/device/toggle_location_services': {
247
289
  readonly POST: {
248
290
  readonly command: "toggleLocationServices";
291
+ readonly deprecated: true;
249
292
  };
250
293
  };
251
294
  readonly '/session/:sessionId/appium/device/open_notifications': {
252
295
  readonly POST: {
253
296
  readonly command: "openNotifications";
297
+ readonly deprecated: true;
254
298
  };
255
299
  };
256
300
  readonly '/session/:sessionId/appium/device/start_activity': {
@@ -260,16 +304,19 @@ export declare const newMethodMap: {
260
304
  readonly required: readonly ["appPackage", "appActivity"];
261
305
  readonly optional: readonly ["appWaitPackage", "appWaitActivity", "intentAction", "intentCategory", "intentFlags", "optionalIntentArguments", "dontStopAppOnReset"];
262
306
  };
307
+ readonly deprecated: true;
263
308
  };
264
309
  };
265
310
  readonly '/session/:sessionId/appium/device/system_bars': {
266
311
  readonly GET: {
267
312
  readonly command: "getSystemBars";
313
+ readonly deprecated: true;
268
314
  };
269
315
  };
270
316
  readonly '/session/:sessionId/appium/device/display_density': {
271
317
  readonly GET: {
272
318
  readonly command: "getDisplayDensity";
319
+ readonly deprecated: true;
273
320
  };
274
321
  };
275
322
  readonly '/session/:sessionId/appium/app/background': {
@@ -278,6 +325,7 @@ export declare const newMethodMap: {
278
325
  readonly payloadParams: {
279
326
  readonly required: readonly ["seconds"];
280
327
  };
328
+ readonly deprecated: true;
281
329
  };
282
330
  };
283
331
  readonly '/session/:sessionId/appium/app/strings': {
@@ -286,6 +334,7 @@ export declare const newMethodMap: {
286
334
  readonly payloadParams: {
287
335
  readonly optional: readonly ["language", "stringFile"];
288
336
  };
337
+ readonly deprecated: true;
289
338
  };
290
339
  };
291
340
  readonly '/session/:sessionId/appium/element/:elementId/value': {
@@ -294,6 +343,7 @@ export declare const newMethodMap: {
294
343
  readonly payloadParams: {
295
344
  readonly required: readonly ["text"];
296
345
  };
346
+ readonly deprecated: true;
297
347
  };
298
348
  };
299
349
  readonly '/session/:sessionId/appium/element/:elementId/replace_value': {
@@ -302,11 +352,13 @@ export declare const newMethodMap: {
302
352
  readonly payloadParams: {
303
353
  readonly required: readonly ["text"];
304
354
  };
355
+ readonly deprecated: true;
305
356
  };
306
357
  };
307
358
  readonly '/session/:sessionId/network_connection': {
308
359
  readonly GET: {
309
360
  readonly command: "getNetworkConnection";
361
+ readonly deprecated: true;
310
362
  };
311
363
  readonly POST: {
312
364
  readonly command: "setNetworkConnection";
@@ -314,6 +366,7 @@ export declare const newMethodMap: {
314
366
  readonly unwrap: "parameters";
315
367
  readonly required: readonly ["type"];
316
368
  };
369
+ readonly deprecated: true;
317
370
  };
318
371
  };
319
372
  };
@@ -1 +1 @@
1
- {"version":3,"file":"method-map.d.ts","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQf,CAAC"}
1
+ {"version":3,"file":"method-map.d.ts","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBf,CAAC"}
@@ -8,6 +8,18 @@ exports.newMethodMap = {
8
8
  POST: {
9
9
  command: 'getClipboard',
10
10
  payloadParams: { optional: ['contentType'] },
11
+ deprecated: true
12
+ },
13
+ },
14
+ '/session/:sessionId/log': {
15
+ POST: {
16
+ command: 'getLog',
17
+ payloadParams: { required: ['type'] },
18
+ },
19
+ },
20
+ '/session/:sessionId/log/types': {
21
+ GET: {
22
+ command: 'getLogTypes',
11
23
  },
12
24
  },
13
25
  };
@@ -1 +1 @@
1
- {"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":";;;AAAA,iEAAoD;AAEvC,QAAA,YAAY,GAAG;IAC1B,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAC,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAC;SAC3C;KACF;CACO,CAAC"}
1
+ {"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":";;;AAAA,iEAAoD;AAEvC,QAAA,YAAY,GAAG;IAC1B,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAC,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAC;YAC1C,UAAU,EAAE,IAAI;SACjB;KACF;IACD,yBAAyB,EAAE;QACzB,IAAI,EAAE;YACJ,OAAO,EAAE,QAAQ;YACjB,aAAa,EAAE,EAAC,QAAQ,EAAE,CAAC,MAAM,CAAC,EAAC;SACpC;KACF;IACD,+BAA+B,EAAE;QAC/B,GAAG,EAAE;YACH,OAAO,EAAE,aAAa;SACvB;KACF;CACO,CAAC"}