eas-cli 19.0.0 → 19.0.2
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/README.md +100 -100
- package/build/commands/simulator/start.d.ts +1 -0
- package/build/commands/simulator/start.js +18 -3
- package/build/graphql/generated.d.ts +58 -1
- package/build/graphql/generated.js +2 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +4 -0
- package/build/project/ios/entitlements.d.ts +2 -1
- package/build/project/ios/entitlements.js +75 -6
- package/build/project/ios/target.js +1 -1
- package/build/simulator/utils.js +11 -0
- package/oclif.manifest.json +1283 -1276
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -973,48 +973,34 @@
|
|
|
973
973
|
"view.js"
|
|
974
974
|
]
|
|
975
975
|
},
|
|
976
|
-
"
|
|
976
|
+
"branch:create": {
|
|
977
977
|
"aliases": [],
|
|
978
978
|
"args": {
|
|
979
|
-
"
|
|
980
|
-
"
|
|
979
|
+
"name": {
|
|
980
|
+
"description": "Name of the branch to create",
|
|
981
|
+
"name": "name",
|
|
982
|
+
"required": false
|
|
981
983
|
}
|
|
982
984
|
},
|
|
983
|
-
"description": "
|
|
985
|
+
"description": "create a branch",
|
|
984
986
|
"flags": {
|
|
987
|
+
"json": {
|
|
988
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
989
|
+
"name": "json",
|
|
990
|
+
"allowNo": false,
|
|
991
|
+
"type": "boolean"
|
|
992
|
+
},
|
|
985
993
|
"non-interactive": {
|
|
986
994
|
"description": "Run the command in non-interactive mode.",
|
|
987
995
|
"name": "non-interactive",
|
|
988
996
|
"noCacheDefault": true,
|
|
989
997
|
"allowNo": false,
|
|
990
998
|
"type": "boolean"
|
|
991
|
-
},
|
|
992
|
-
"platform": {
|
|
993
|
-
"char": "p",
|
|
994
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
995
|
-
"name": "platform",
|
|
996
|
-
"hasDynamicHelp": false,
|
|
997
|
-
"multiple": false,
|
|
998
|
-
"options": [
|
|
999
|
-
"android",
|
|
1000
|
-
"ios",
|
|
1001
|
-
"all"
|
|
1002
|
-
],
|
|
1003
|
-
"type": "option"
|
|
1004
|
-
},
|
|
1005
|
-
"profile": {
|
|
1006
|
-
"char": "e",
|
|
1007
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
1008
|
-
"name": "profile",
|
|
1009
|
-
"hasDynamicHelp": false,
|
|
1010
|
-
"helpValue": "PROFILE_NAME",
|
|
1011
|
-
"multiple": false,
|
|
1012
|
-
"type": "option"
|
|
1013
999
|
}
|
|
1014
1000
|
},
|
|
1015
1001
|
"hasDynamicHelp": false,
|
|
1016
1002
|
"hiddenAliases": [],
|
|
1017
|
-
"id": "
|
|
1003
|
+
"id": "branch:create",
|
|
1018
1004
|
"pluginAlias": "eas-cli",
|
|
1019
1005
|
"pluginName": "eas-cli",
|
|
1020
1006
|
"pluginType": "core",
|
|
@@ -1069,32 +1055,38 @@
|
|
|
1069
1055
|
"relativePath": [
|
|
1070
1056
|
"build",
|
|
1071
1057
|
"commands",
|
|
1072
|
-
"
|
|
1073
|
-
"
|
|
1058
|
+
"branch",
|
|
1059
|
+
"create.js"
|
|
1074
1060
|
]
|
|
1075
1061
|
},
|
|
1076
|
-
"
|
|
1062
|
+
"branch:delete": {
|
|
1077
1063
|
"aliases": [],
|
|
1078
|
-
"args": {
|
|
1079
|
-
|
|
1064
|
+
"args": {
|
|
1065
|
+
"name": {
|
|
1066
|
+
"description": "Name of the branch to delete",
|
|
1067
|
+
"name": "name",
|
|
1068
|
+
"required": false
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
"description": "delete a branch",
|
|
1080
1072
|
"flags": {
|
|
1081
|
-
"
|
|
1082
|
-
"
|
|
1083
|
-
"
|
|
1084
|
-
"
|
|
1085
|
-
"
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
"type": "
|
|
1073
|
+
"json": {
|
|
1074
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1075
|
+
"name": "json",
|
|
1076
|
+
"allowNo": false,
|
|
1077
|
+
"type": "boolean"
|
|
1078
|
+
},
|
|
1079
|
+
"non-interactive": {
|
|
1080
|
+
"description": "Run the command in non-interactive mode.",
|
|
1081
|
+
"name": "non-interactive",
|
|
1082
|
+
"noCacheDefault": true,
|
|
1083
|
+
"allowNo": false,
|
|
1084
|
+
"type": "boolean"
|
|
1093
1085
|
}
|
|
1094
1086
|
},
|
|
1095
1087
|
"hasDynamicHelp": false,
|
|
1096
1088
|
"hiddenAliases": [],
|
|
1097
|
-
"id": "
|
|
1089
|
+
"id": "branch:delete",
|
|
1098
1090
|
"pluginAlias": "eas-cli",
|
|
1099
1091
|
"pluginName": "eas-cli",
|
|
1100
1092
|
"pluginType": "core",
|
|
@@ -1141,60 +1133,53 @@
|
|
|
1141
1133
|
}
|
|
1142
1134
|
},
|
|
1143
1135
|
"contextDefinition": {
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"vcsClient": {}
|
|
1136
|
+
"projectId": {},
|
|
1137
|
+
"loggedIn": {}
|
|
1147
1138
|
},
|
|
1148
1139
|
"isESM": false,
|
|
1149
1140
|
"relativePath": [
|
|
1150
1141
|
"build",
|
|
1151
1142
|
"commands",
|
|
1152
|
-
"
|
|
1153
|
-
"
|
|
1143
|
+
"branch",
|
|
1144
|
+
"delete.js"
|
|
1154
1145
|
]
|
|
1155
1146
|
},
|
|
1156
|
-
"
|
|
1147
|
+
"branch:list": {
|
|
1157
1148
|
"aliases": [],
|
|
1158
|
-
"args": {
|
|
1159
|
-
|
|
1160
|
-
"name": "BUILD_ID"
|
|
1161
|
-
}
|
|
1162
|
-
},
|
|
1163
|
-
"description": "delete a build",
|
|
1149
|
+
"args": {},
|
|
1150
|
+
"description": "list all branches",
|
|
1164
1151
|
"flags": {
|
|
1165
|
-
"
|
|
1166
|
-
"description": "
|
|
1167
|
-
"name": "
|
|
1168
|
-
"noCacheDefault": true,
|
|
1169
|
-
"allowNo": false,
|
|
1170
|
-
"type": "boolean"
|
|
1171
|
-
},
|
|
1172
|
-
"platform": {
|
|
1173
|
-
"char": "p",
|
|
1174
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
1175
|
-
"name": "platform",
|
|
1152
|
+
"offset": {
|
|
1153
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
1154
|
+
"name": "offset",
|
|
1176
1155
|
"hasDynamicHelp": false,
|
|
1177
1156
|
"multiple": false,
|
|
1178
|
-
"options": [
|
|
1179
|
-
"android",
|
|
1180
|
-
"ios",
|
|
1181
|
-
"all"
|
|
1182
|
-
],
|
|
1183
1157
|
"type": "option"
|
|
1184
1158
|
},
|
|
1185
|
-
"
|
|
1186
|
-
"
|
|
1187
|
-
"
|
|
1188
|
-
"name": "profile",
|
|
1159
|
+
"limit": {
|
|
1160
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
1161
|
+
"name": "limit",
|
|
1189
1162
|
"hasDynamicHelp": false,
|
|
1190
|
-
"helpValue": "PROFILE_NAME",
|
|
1191
1163
|
"multiple": false,
|
|
1192
1164
|
"type": "option"
|
|
1165
|
+
},
|
|
1166
|
+
"json": {
|
|
1167
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1168
|
+
"name": "json",
|
|
1169
|
+
"allowNo": false,
|
|
1170
|
+
"type": "boolean"
|
|
1171
|
+
},
|
|
1172
|
+
"non-interactive": {
|
|
1173
|
+
"description": "Run the command in non-interactive mode.",
|
|
1174
|
+
"name": "non-interactive",
|
|
1175
|
+
"noCacheDefault": true,
|
|
1176
|
+
"allowNo": false,
|
|
1177
|
+
"type": "boolean"
|
|
1193
1178
|
}
|
|
1194
1179
|
},
|
|
1195
1180
|
"hasDynamicHelp": false,
|
|
1196
1181
|
"hiddenAliases": [],
|
|
1197
|
-
"id": "
|
|
1182
|
+
"id": "branch:list",
|
|
1198
1183
|
"pluginAlias": "eas-cli",
|
|
1199
1184
|
"pluginName": "eas-cli",
|
|
1200
1185
|
"pluginType": "core",
|
|
@@ -1242,65 +1227,25 @@
|
|
|
1242
1227
|
},
|
|
1243
1228
|
"contextDefinition": {
|
|
1244
1229
|
"projectId": {},
|
|
1245
|
-
"loggedIn": {}
|
|
1246
|
-
"vcsClient": {}
|
|
1230
|
+
"loggedIn": {}
|
|
1247
1231
|
},
|
|
1248
1232
|
"isESM": false,
|
|
1249
1233
|
"relativePath": [
|
|
1250
1234
|
"build",
|
|
1251
1235
|
"commands",
|
|
1252
|
-
"
|
|
1253
|
-
"
|
|
1236
|
+
"branch",
|
|
1237
|
+
"list.js"
|
|
1254
1238
|
]
|
|
1255
1239
|
},
|
|
1256
|
-
"
|
|
1240
|
+
"branch:publish": {
|
|
1257
1241
|
"aliases": [],
|
|
1258
1242
|
"args": {},
|
|
1259
|
-
"description": "
|
|
1260
|
-
"flags": {
|
|
1261
|
-
"platform": {
|
|
1262
|
-
"char": "p",
|
|
1263
|
-
"name": "platform",
|
|
1264
|
-
"hasDynamicHelp": false,
|
|
1265
|
-
"multiple": false,
|
|
1266
|
-
"options": [
|
|
1267
|
-
"ios",
|
|
1268
|
-
"android"
|
|
1269
|
-
],
|
|
1270
|
-
"type": "option"
|
|
1271
|
-
},
|
|
1272
|
-
"profile": {
|
|
1273
|
-
"char": "e",
|
|
1274
|
-
"description": "Name of the build profile from eas.json. It must be a profile allowing to create emulator/simulator internal distribution dev client builds. The \"development-simulator\" build profile will be selected by default.",
|
|
1275
|
-
"name": "profile",
|
|
1276
|
-
"hasDynamicHelp": false,
|
|
1277
|
-
"helpValue": "PROFILE_NAME",
|
|
1278
|
-
"multiple": false,
|
|
1279
|
-
"type": "option"
|
|
1280
|
-
},
|
|
1281
|
-
"skip-build-if-not-found": {
|
|
1282
|
-
"description": "Skip build if no successful build with matching fingerprint is found.",
|
|
1283
|
-
"name": "skip-build-if-not-found",
|
|
1284
|
-
"allowNo": false,
|
|
1285
|
-
"type": "boolean"
|
|
1286
|
-
},
|
|
1287
|
-
"skip-bundler": {
|
|
1288
|
-
"description": "Install and run the development build without starting the bundler server.",
|
|
1289
|
-
"name": "skip-bundler",
|
|
1290
|
-
"allowNo": false,
|
|
1291
|
-
"type": "boolean"
|
|
1292
|
-
},
|
|
1293
|
-
"simulator": {
|
|
1294
|
-
"description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
|
|
1295
|
-
"name": "simulator",
|
|
1296
|
-
"hasDynamicHelp": false,
|
|
1297
|
-
"multiple": false,
|
|
1298
|
-
"type": "option"
|
|
1299
|
-
}
|
|
1300
|
-
},
|
|
1243
|
+
"description": "deprecated, use \"eas update\"",
|
|
1244
|
+
"flags": {},
|
|
1301
1245
|
"hasDynamicHelp": false,
|
|
1246
|
+
"hidden": true,
|
|
1302
1247
|
"hiddenAliases": [],
|
|
1303
|
-
"id": "
|
|
1248
|
+
"id": "branch:publish",
|
|
1304
1249
|
"pluginAlias": "eas-cli",
|
|
1305
1250
|
"pluginName": "eas-cli",
|
|
1306
1251
|
"pluginType": "core",
|
|
@@ -1346,82 +1291,36 @@
|
|
|
1346
1291
|
"projectId": {}
|
|
1347
1292
|
}
|
|
1348
1293
|
},
|
|
1349
|
-
"contextDefinition": {
|
|
1350
|
-
"loggedIn": {},
|
|
1351
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
1352
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1353
|
-
"projectDir": {},
|
|
1354
|
-
"vcsClient": {},
|
|
1355
|
-
"analytics": {},
|
|
1356
|
-
"projectId": {}
|
|
1357
|
-
},
|
|
1294
|
+
"contextDefinition": {},
|
|
1358
1295
|
"isESM": false,
|
|
1359
1296
|
"relativePath": [
|
|
1360
1297
|
"build",
|
|
1361
1298
|
"commands",
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1299
|
+
"branch",
|
|
1300
|
+
"publish.js"
|
|
1364
1301
|
]
|
|
1365
1302
|
},
|
|
1366
|
-
"
|
|
1303
|
+
"branch:rename": {
|
|
1367
1304
|
"aliases": [],
|
|
1368
1305
|
"args": {},
|
|
1369
|
-
"description": "
|
|
1306
|
+
"description": "rename a branch",
|
|
1370
1307
|
"flags": {
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
"description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
|
|
1376
|
-
"exclusive": [
|
|
1377
|
-
"fingerprint",
|
|
1378
|
-
"platform",
|
|
1379
|
-
"dev-client"
|
|
1380
|
-
],
|
|
1381
|
-
"name": "build-id",
|
|
1382
|
-
"hasDynamicHelp": false,
|
|
1383
|
-
"multiple": false,
|
|
1384
|
-
"type": "option"
|
|
1385
|
-
},
|
|
1386
|
-
"fingerprint": {
|
|
1387
|
-
"description": "Fingerprint hash of the build to download",
|
|
1388
|
-
"exclusive": [
|
|
1389
|
-
"build-id"
|
|
1390
|
-
],
|
|
1391
|
-
"name": "fingerprint",
|
|
1308
|
+
"from": {
|
|
1309
|
+
"description": "current name of the branch.",
|
|
1310
|
+
"name": "from",
|
|
1311
|
+
"required": false,
|
|
1392
1312
|
"hasDynamicHelp": false,
|
|
1393
1313
|
"multiple": false,
|
|
1394
1314
|
"type": "option"
|
|
1395
1315
|
},
|
|
1396
|
-
"
|
|
1397
|
-
"
|
|
1398
|
-
"
|
|
1399
|
-
|
|
1400
|
-
],
|
|
1401
|
-
"name": "platform",
|
|
1316
|
+
"to": {
|
|
1317
|
+
"description": "new name of the branch.",
|
|
1318
|
+
"name": "to",
|
|
1319
|
+
"required": false,
|
|
1402
1320
|
"hasDynamicHelp": false,
|
|
1403
1321
|
"multiple": false,
|
|
1404
|
-
"options": [
|
|
1405
|
-
"ios",
|
|
1406
|
-
"android"
|
|
1407
|
-
],
|
|
1408
1322
|
"type": "option"
|
|
1409
1323
|
},
|
|
1410
|
-
"dev-client": {
|
|
1411
|
-
"description": "Filter only dev-client builds.",
|
|
1412
|
-
"exclusive": [
|
|
1413
|
-
"build-id"
|
|
1414
|
-
],
|
|
1415
|
-
"name": "dev-client",
|
|
1416
|
-
"allowNo": true,
|
|
1417
|
-
"type": "boolean"
|
|
1418
|
-
},
|
|
1419
|
-
"all-artifacts": {
|
|
1420
|
-
"description": "Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in addition to the application archive. Without this flag, only the application archive is downloaded and the command errors if it is missing.",
|
|
1421
|
-
"name": "all-artifacts",
|
|
1422
|
-
"allowNo": false,
|
|
1423
|
-
"type": "boolean"
|
|
1424
|
-
},
|
|
1425
1324
|
"json": {
|
|
1426
1325
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1427
1326
|
"name": "json",
|
|
@@ -1438,7 +1337,7 @@
|
|
|
1438
1337
|
},
|
|
1439
1338
|
"hasDynamicHelp": false,
|
|
1440
1339
|
"hiddenAliases": [],
|
|
1441
|
-
"id": "
|
|
1340
|
+
"id": "branch:rename",
|
|
1442
1341
|
"pluginAlias": "eas-cli",
|
|
1443
1342
|
"pluginName": "eas-cli",
|
|
1444
1343
|
"pluginType": "core",
|
|
@@ -1485,165 +1384,127 @@
|
|
|
1485
1384
|
}
|
|
1486
1385
|
},
|
|
1487
1386
|
"contextDefinition": {
|
|
1488
|
-
"
|
|
1489
|
-
"
|
|
1387
|
+
"projectId": {},
|
|
1388
|
+
"loggedIn": {}
|
|
1490
1389
|
},
|
|
1491
1390
|
"isESM": false,
|
|
1492
1391
|
"relativePath": [
|
|
1493
1392
|
"build",
|
|
1494
1393
|
"commands",
|
|
1495
|
-
"
|
|
1496
|
-
"
|
|
1394
|
+
"branch",
|
|
1395
|
+
"rename.js"
|
|
1497
1396
|
]
|
|
1498
1397
|
},
|
|
1499
|
-
"
|
|
1398
|
+
"branch:view": {
|
|
1500
1399
|
"aliases": [],
|
|
1501
|
-
"args": {
|
|
1502
|
-
|
|
1400
|
+
"args": {
|
|
1401
|
+
"name": {
|
|
1402
|
+
"description": "Name of the branch to view",
|
|
1403
|
+
"name": "name",
|
|
1404
|
+
"required": false
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
"description": "view a branch",
|
|
1503
1408
|
"flags": {
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1506
|
-
"name": "
|
|
1409
|
+
"offset": {
|
|
1410
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
1411
|
+
"name": "offset",
|
|
1507
1412
|
"hasDynamicHelp": false,
|
|
1508
1413
|
"multiple": false,
|
|
1509
|
-
"options": [
|
|
1510
|
-
"android",
|
|
1511
|
-
"ios",
|
|
1512
|
-
"all"
|
|
1513
|
-
],
|
|
1514
1414
|
"type": "option"
|
|
1515
1415
|
},
|
|
1516
|
-
"
|
|
1517
|
-
"
|
|
1518
|
-
"name": "
|
|
1519
|
-
"allowNo": false,
|
|
1520
|
-
"type": "boolean"
|
|
1521
|
-
},
|
|
1522
|
-
"skip-project-configuration": {
|
|
1523
|
-
"hidden": true,
|
|
1524
|
-
"name": "skip-project-configuration",
|
|
1525
|
-
"allowNo": false,
|
|
1526
|
-
"type": "boolean"
|
|
1527
|
-
},
|
|
1528
|
-
"profile": {
|
|
1529
|
-
"char": "e",
|
|
1530
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
1531
|
-
"name": "profile",
|
|
1416
|
+
"limit": {
|
|
1417
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
1418
|
+
"name": "limit",
|
|
1532
1419
|
"hasDynamicHelp": false,
|
|
1533
|
-
"helpValue": "PROFILE_NAME",
|
|
1534
1420
|
"multiple": false,
|
|
1535
1421
|
"type": "option"
|
|
1536
1422
|
},
|
|
1537
|
-
"
|
|
1538
|
-
"description": "
|
|
1539
|
-
"name": "
|
|
1423
|
+
"json": {
|
|
1424
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1425
|
+
"name": "json",
|
|
1540
1426
|
"allowNo": false,
|
|
1541
1427
|
"type": "boolean"
|
|
1542
1428
|
},
|
|
1543
|
-
"
|
|
1544
|
-
"description": "
|
|
1545
|
-
"name": "
|
|
1546
|
-
"
|
|
1547
|
-
"multiple": false,
|
|
1548
|
-
"type": "option"
|
|
1549
|
-
},
|
|
1550
|
-
"wait": {
|
|
1551
|
-
"description": "Wait for build(s) to complete",
|
|
1552
|
-
"name": "wait",
|
|
1553
|
-
"allowNo": true,
|
|
1554
|
-
"type": "boolean"
|
|
1555
|
-
},
|
|
1556
|
-
"clear-cache": {
|
|
1557
|
-
"description": "Clear cache before the build",
|
|
1558
|
-
"name": "clear-cache",
|
|
1429
|
+
"non-interactive": {
|
|
1430
|
+
"description": "Run the command in non-interactive mode.",
|
|
1431
|
+
"name": "non-interactive",
|
|
1432
|
+
"noCacheDefault": true,
|
|
1559
1433
|
"allowNo": false,
|
|
1560
1434
|
"type": "boolean"
|
|
1435
|
+
}
|
|
1436
|
+
},
|
|
1437
|
+
"hasDynamicHelp": false,
|
|
1438
|
+
"hiddenAliases": [],
|
|
1439
|
+
"id": "branch:view",
|
|
1440
|
+
"pluginAlias": "eas-cli",
|
|
1441
|
+
"pluginName": "eas-cli",
|
|
1442
|
+
"pluginType": "core",
|
|
1443
|
+
"strict": true,
|
|
1444
|
+
"enableJsonFlag": false,
|
|
1445
|
+
"ContextOptions": {
|
|
1446
|
+
"LoggedIn": {
|
|
1447
|
+
"loggedIn": {}
|
|
1561
1448
|
},
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1564
|
-
"submit"
|
|
1565
|
-
],
|
|
1566
|
-
"char": "s",
|
|
1567
|
-
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
1568
|
-
"exclusive": [
|
|
1569
|
-
"auto-submit-with-profile"
|
|
1570
|
-
],
|
|
1571
|
-
"name": "auto-submit",
|
|
1572
|
-
"allowNo": false,
|
|
1573
|
-
"type": "boolean"
|
|
1449
|
+
"MaybeLoggedIn": {
|
|
1450
|
+
"maybeLoggedIn": {}
|
|
1574
1451
|
},
|
|
1575
|
-
"
|
|
1576
|
-
"
|
|
1577
|
-
"exclusive": [
|
|
1578
|
-
"auto-submit"
|
|
1579
|
-
],
|
|
1580
|
-
"name": "auto-submit-with-profile",
|
|
1581
|
-
"hasDynamicHelp": false,
|
|
1582
|
-
"helpValue": "PROFILE_NAME",
|
|
1583
|
-
"multiple": false,
|
|
1584
|
-
"type": "option"
|
|
1452
|
+
"DynamicLoggedIn": {
|
|
1453
|
+
"getDynamicLoggedInAsync": {}
|
|
1585
1454
|
},
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1588
|
-
"name": "what-to-test",
|
|
1589
|
-
"hasDynamicHelp": false,
|
|
1590
|
-
"multiple": false,
|
|
1591
|
-
"type": "option"
|
|
1455
|
+
"SessionManagment": {
|
|
1456
|
+
"sessionManager": {}
|
|
1592
1457
|
},
|
|
1593
|
-
"
|
|
1594
|
-
"
|
|
1595
|
-
"message": "The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"
|
|
1596
|
-
},
|
|
1597
|
-
"description": "The instance type that will be used to run this build [experimental]",
|
|
1598
|
-
"hidden": true,
|
|
1599
|
-
"name": "resource-class",
|
|
1600
|
-
"hasDynamicHelp": false,
|
|
1601
|
-
"multiple": false,
|
|
1602
|
-
"options": [
|
|
1603
|
-
"default",
|
|
1604
|
-
"large",
|
|
1605
|
-
"m1-medium",
|
|
1606
|
-
"medium",
|
|
1607
|
-
"m-medium",
|
|
1608
|
-
"m-large"
|
|
1609
|
-
],
|
|
1610
|
-
"type": "option"
|
|
1458
|
+
"OptionalProjectConfig": {
|
|
1459
|
+
"optionalPrivateProjectConfig": {}
|
|
1611
1460
|
},
|
|
1612
|
-
"
|
|
1613
|
-
"
|
|
1614
|
-
"description": "A short message describing the build",
|
|
1615
|
-
"name": "message",
|
|
1616
|
-
"hasDynamicHelp": false,
|
|
1617
|
-
"multiple": false,
|
|
1618
|
-
"type": "option"
|
|
1461
|
+
"ProjectDir": {
|
|
1462
|
+
"projectDir": {}
|
|
1619
1463
|
},
|
|
1620
|
-
"
|
|
1621
|
-
"
|
|
1622
|
-
"
|
|
1623
|
-
"hasDynamicHelp": false,
|
|
1624
|
-
"multiple": false,
|
|
1625
|
-
"options": [
|
|
1626
|
-
"trace",
|
|
1627
|
-
"debug",
|
|
1628
|
-
"info",
|
|
1629
|
-
"warn",
|
|
1630
|
-
"error",
|
|
1631
|
-
"fatal"
|
|
1632
|
-
],
|
|
1633
|
-
"type": "option"
|
|
1464
|
+
"DynamicProjectConfig": {
|
|
1465
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
1466
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
1634
1467
|
},
|
|
1635
|
-
"
|
|
1636
|
-
"
|
|
1637
|
-
"
|
|
1638
|
-
"allowNo": false,
|
|
1639
|
-
"type": "boolean"
|
|
1468
|
+
"ProjectConfig": {
|
|
1469
|
+
"loggedIn": {},
|
|
1470
|
+
"privateProjectConfig": {}
|
|
1640
1471
|
},
|
|
1641
|
-
"
|
|
1642
|
-
"
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
"
|
|
1472
|
+
"Analytics": {
|
|
1473
|
+
"analytics": {}
|
|
1474
|
+
},
|
|
1475
|
+
"Vcs": {
|
|
1476
|
+
"vcsClient": {}
|
|
1477
|
+
},
|
|
1478
|
+
"ServerSideEnvironmentVariables": {
|
|
1479
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
1646
1480
|
},
|
|
1481
|
+
"ProjectId": {
|
|
1482
|
+
"projectId": {}
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
"contextDefinition": {
|
|
1486
|
+
"projectId": {},
|
|
1487
|
+
"loggedIn": {}
|
|
1488
|
+
},
|
|
1489
|
+
"isESM": false,
|
|
1490
|
+
"relativePath": [
|
|
1491
|
+
"build",
|
|
1492
|
+
"commands",
|
|
1493
|
+
"branch",
|
|
1494
|
+
"view.js"
|
|
1495
|
+
]
|
|
1496
|
+
},
|
|
1497
|
+
"channel:create": {
|
|
1498
|
+
"aliases": [],
|
|
1499
|
+
"args": {
|
|
1500
|
+
"name": {
|
|
1501
|
+
"description": "Name of the channel to create",
|
|
1502
|
+
"name": "name",
|
|
1503
|
+
"required": false
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
"description": "create a channel",
|
|
1507
|
+
"flags": {
|
|
1647
1508
|
"json": {
|
|
1648
1509
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1649
1510
|
"name": "json",
|
|
@@ -1660,7 +1521,7 @@
|
|
|
1660
1521
|
},
|
|
1661
1522
|
"hasDynamicHelp": false,
|
|
1662
1523
|
"hiddenAliases": [],
|
|
1663
|
-
"id": "
|
|
1524
|
+
"id": "channel:create",
|
|
1664
1525
|
"pluginAlias": "eas-cli",
|
|
1665
1526
|
"pluginName": "eas-cli",
|
|
1666
1527
|
"pluginType": "core",
|
|
@@ -1707,87 +1568,45 @@
|
|
|
1707
1568
|
}
|
|
1708
1569
|
},
|
|
1709
1570
|
"contextDefinition": {
|
|
1710
|
-
"
|
|
1711
|
-
"
|
|
1712
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1713
|
-
"projectDir": {},
|
|
1714
|
-
"analytics": {},
|
|
1715
|
-
"vcsClient": {}
|
|
1571
|
+
"projectId": {},
|
|
1572
|
+
"loggedIn": {}
|
|
1716
1573
|
},
|
|
1717
1574
|
"isESM": false,
|
|
1718
1575
|
"relativePath": [
|
|
1719
1576
|
"build",
|
|
1720
1577
|
"commands",
|
|
1721
|
-
"
|
|
1722
|
-
"
|
|
1578
|
+
"channel",
|
|
1579
|
+
"create.js"
|
|
1723
1580
|
]
|
|
1724
1581
|
},
|
|
1725
|
-
"
|
|
1582
|
+
"channel:delete": {
|
|
1726
1583
|
"aliases": [],
|
|
1727
|
-
"args": {
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
"
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
],
|
|
1740
|
-
"type": "option"
|
|
1741
|
-
},
|
|
1742
|
-
"profile": {
|
|
1743
|
-
"char": "e",
|
|
1744
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
1745
|
-
"name": "profile",
|
|
1746
|
-
"hasDynamicHelp": false,
|
|
1747
|
-
"helpValue": "PROFILE_NAME",
|
|
1748
|
-
"multiple": false,
|
|
1749
|
-
"type": "option"
|
|
1750
|
-
},
|
|
1751
|
-
"stage": {
|
|
1752
|
-
"char": "s",
|
|
1753
|
-
"description": "Stage of the build you want to inspect.\n archive - builds the project archive that would be uploaded to EAS when building\n pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.\n post-build - builds the native project and leaves the output directory for inspection",
|
|
1754
|
-
"name": "stage",
|
|
1755
|
-
"required": true,
|
|
1756
|
-
"hasDynamicHelp": false,
|
|
1757
|
-
"multiple": false,
|
|
1758
|
-
"options": [
|
|
1759
|
-
"archive",
|
|
1760
|
-
"pre-build",
|
|
1761
|
-
"post-build"
|
|
1762
|
-
],
|
|
1763
|
-
"type": "option"
|
|
1764
|
-
},
|
|
1765
|
-
"output": {
|
|
1766
|
-
"char": "o",
|
|
1767
|
-
"description": "Output directory.",
|
|
1768
|
-
"name": "output",
|
|
1769
|
-
"required": true,
|
|
1770
|
-
"hasDynamicHelp": false,
|
|
1771
|
-
"helpValue": "OUTPUT_DIRECTORY",
|
|
1772
|
-
"multiple": false,
|
|
1773
|
-
"type": "option"
|
|
1774
|
-
},
|
|
1775
|
-
"force": {
|
|
1776
|
-
"description": "Delete OUTPUT_DIRECTORY if it already exists.",
|
|
1777
|
-
"name": "force",
|
|
1584
|
+
"args": {
|
|
1585
|
+
"name": {
|
|
1586
|
+
"description": "Name of the channel to delete",
|
|
1587
|
+
"name": "name",
|
|
1588
|
+
"required": false
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
"description": "Delete a channel",
|
|
1592
|
+
"flags": {
|
|
1593
|
+
"json": {
|
|
1594
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1595
|
+
"name": "json",
|
|
1778
1596
|
"allowNo": false,
|
|
1779
1597
|
"type": "boolean"
|
|
1780
1598
|
},
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
1783
|
-
"name": "
|
|
1599
|
+
"non-interactive": {
|
|
1600
|
+
"description": "Run the command in non-interactive mode.",
|
|
1601
|
+
"name": "non-interactive",
|
|
1602
|
+
"noCacheDefault": true,
|
|
1784
1603
|
"allowNo": false,
|
|
1785
1604
|
"type": "boolean"
|
|
1786
1605
|
}
|
|
1787
1606
|
},
|
|
1788
1607
|
"hasDynamicHelp": false,
|
|
1789
1608
|
"hiddenAliases": [],
|
|
1790
|
-
"id": "
|
|
1609
|
+
"id": "channel:delete",
|
|
1791
1610
|
"pluginAlias": "eas-cli",
|
|
1792
1611
|
"pluginName": "eas-cli",
|
|
1793
1612
|
"pluginType": "core",
|
|
@@ -1834,71 +1653,52 @@
|
|
|
1834
1653
|
}
|
|
1835
1654
|
},
|
|
1836
1655
|
"contextDefinition": {
|
|
1837
|
-
"
|
|
1838
|
-
"
|
|
1839
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1840
|
-
"projectDir": {},
|
|
1841
|
-
"analytics": {},
|
|
1842
|
-
"vcsClient": {}
|
|
1656
|
+
"projectId": {},
|
|
1657
|
+
"loggedIn": {}
|
|
1843
1658
|
},
|
|
1844
1659
|
"isESM": false,
|
|
1845
1660
|
"relativePath": [
|
|
1846
1661
|
"build",
|
|
1847
1662
|
"commands",
|
|
1848
|
-
"
|
|
1849
|
-
"
|
|
1663
|
+
"channel",
|
|
1664
|
+
"delete.js"
|
|
1850
1665
|
]
|
|
1851
1666
|
},
|
|
1852
|
-
"
|
|
1667
|
+
"channel:edit": {
|
|
1853
1668
|
"aliases": [],
|
|
1854
|
-
"args": {
|
|
1669
|
+
"args": {
|
|
1670
|
+
"name": {
|
|
1671
|
+
"description": "Name of the channel to edit",
|
|
1672
|
+
"name": "name",
|
|
1673
|
+
"required": false
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
"description": "point a channel at a new branch",
|
|
1855
1677
|
"flags": {
|
|
1856
|
-
"
|
|
1857
|
-
"
|
|
1858
|
-
"name": "
|
|
1859
|
-
"required": true,
|
|
1860
|
-
"hasDynamicHelp": false,
|
|
1861
|
-
"multiple": false,
|
|
1862
|
-
"options": [
|
|
1863
|
-
"android",
|
|
1864
|
-
"ios"
|
|
1865
|
-
],
|
|
1866
|
-
"type": "option"
|
|
1867
|
-
},
|
|
1868
|
-
"profile": {
|
|
1869
|
-
"char": "e",
|
|
1870
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
1871
|
-
"name": "profile",
|
|
1678
|
+
"branch": {
|
|
1679
|
+
"description": "Name of the branch to point to",
|
|
1680
|
+
"name": "branch",
|
|
1872
1681
|
"hasDynamicHelp": false,
|
|
1873
|
-
"helpValue": "PROFILE_NAME",
|
|
1874
1682
|
"multiple": false,
|
|
1875
1683
|
"type": "option"
|
|
1876
1684
|
},
|
|
1877
|
-
"
|
|
1878
|
-
"description": "
|
|
1879
|
-
"
|
|
1880
|
-
"auto-submit-with-profile"
|
|
1881
|
-
],
|
|
1882
|
-
"name": "auto-submit",
|
|
1685
|
+
"json": {
|
|
1686
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1687
|
+
"name": "json",
|
|
1883
1688
|
"allowNo": false,
|
|
1884
1689
|
"type": "boolean"
|
|
1885
1690
|
},
|
|
1886
|
-
"
|
|
1887
|
-
"description": "
|
|
1888
|
-
"
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
"
|
|
1892
|
-
"hasDynamicHelp": false,
|
|
1893
|
-
"helpValue": "PROFILE_NAME",
|
|
1894
|
-
"multiple": false,
|
|
1895
|
-
"type": "option"
|
|
1691
|
+
"non-interactive": {
|
|
1692
|
+
"description": "Run the command in non-interactive mode.",
|
|
1693
|
+
"name": "non-interactive",
|
|
1694
|
+
"noCacheDefault": true,
|
|
1695
|
+
"allowNo": false,
|
|
1696
|
+
"type": "boolean"
|
|
1896
1697
|
}
|
|
1897
1698
|
},
|
|
1898
1699
|
"hasDynamicHelp": false,
|
|
1899
|
-
"hidden": true,
|
|
1900
1700
|
"hiddenAliases": [],
|
|
1901
|
-
"id": "
|
|
1701
|
+
"id": "channel:edit",
|
|
1902
1702
|
"pluginAlias": "eas-cli",
|
|
1903
1703
|
"pluginName": "eas-cli",
|
|
1904
1704
|
"pluginType": "core",
|
|
@@ -1945,170 +1745,74 @@
|
|
|
1945
1745
|
}
|
|
1946
1746
|
},
|
|
1947
1747
|
"contextDefinition": {
|
|
1948
|
-
"
|
|
1949
|
-
"
|
|
1950
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1951
|
-
"projectDir": {},
|
|
1952
|
-
"analytics": {},
|
|
1953
|
-
"vcsClient": {}
|
|
1748
|
+
"projectId": {},
|
|
1749
|
+
"loggedIn": {}
|
|
1954
1750
|
},
|
|
1955
1751
|
"isESM": false,
|
|
1956
1752
|
"relativePath": [
|
|
1957
1753
|
"build",
|
|
1958
1754
|
"commands",
|
|
1959
|
-
"
|
|
1960
|
-
"
|
|
1755
|
+
"channel",
|
|
1756
|
+
"edit.js"
|
|
1961
1757
|
]
|
|
1962
1758
|
},
|
|
1963
|
-
"
|
|
1759
|
+
"channel:insights": {
|
|
1964
1760
|
"aliases": [],
|
|
1965
1761
|
"args": {},
|
|
1966
|
-
"description": "
|
|
1762
|
+
"description": "display adoption, crash, and unique-user insights for a channel + runtime version",
|
|
1967
1763
|
"flags": {
|
|
1968
|
-
"platform": {
|
|
1969
|
-
"char": "p",
|
|
1970
|
-
"name": "platform",
|
|
1971
|
-
"hasDynamicHelp": false,
|
|
1972
|
-
"multiple": false,
|
|
1973
|
-
"options": [
|
|
1974
|
-
"android",
|
|
1975
|
-
"ios",
|
|
1976
|
-
"all"
|
|
1977
|
-
],
|
|
1978
|
-
"type": "option"
|
|
1979
|
-
},
|
|
1980
|
-
"status": {
|
|
1981
|
-
"description": "Filter only builds with the specified status",
|
|
1982
|
-
"name": "status",
|
|
1983
|
-
"hasDynamicHelp": false,
|
|
1984
|
-
"multiple": false,
|
|
1985
|
-
"options": [
|
|
1986
|
-
"new",
|
|
1987
|
-
"in-queue",
|
|
1988
|
-
"in-progress",
|
|
1989
|
-
"pending-cancel",
|
|
1990
|
-
"errored",
|
|
1991
|
-
"finished",
|
|
1992
|
-
"canceled"
|
|
1993
|
-
],
|
|
1994
|
-
"type": "option"
|
|
1995
|
-
},
|
|
1996
|
-
"distribution": {
|
|
1997
|
-
"description": "Filter only builds with the specified distribution type",
|
|
1998
|
-
"name": "distribution",
|
|
1999
|
-
"hasDynamicHelp": false,
|
|
2000
|
-
"multiple": false,
|
|
2001
|
-
"options": [
|
|
2002
|
-
"store",
|
|
2003
|
-
"internal",
|
|
2004
|
-
"simulator"
|
|
2005
|
-
],
|
|
2006
|
-
"type": "option"
|
|
2007
|
-
},
|
|
2008
1764
|
"channel": {
|
|
1765
|
+
"description": "Name of the channel.",
|
|
2009
1766
|
"name": "channel",
|
|
1767
|
+
"required": true,
|
|
2010
1768
|
"hasDynamicHelp": false,
|
|
2011
1769
|
"multiple": false,
|
|
2012
1770
|
"type": "option"
|
|
2013
1771
|
},
|
|
2014
|
-
"
|
|
2015
|
-
"
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
"description": "Filter only builds created with the specified main app version",
|
|
2019
|
-
"name": "app-version",
|
|
1772
|
+
"runtime-version": {
|
|
1773
|
+
"description": "Runtime version to query insights for.",
|
|
1774
|
+
"name": "runtime-version",
|
|
1775
|
+
"required": true,
|
|
2020
1776
|
"hasDynamicHelp": false,
|
|
2021
1777
|
"multiple": false,
|
|
2022
1778
|
"type": "option"
|
|
2023
1779
|
},
|
|
2024
|
-
"
|
|
2025
|
-
"
|
|
2026
|
-
|
|
1780
|
+
"days": {
|
|
1781
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
1782
|
+
"exclusive": [
|
|
1783
|
+
"start",
|
|
1784
|
+
"end"
|
|
2027
1785
|
],
|
|
2028
|
-
"
|
|
2029
|
-
"name": "app-build-version",
|
|
1786
|
+
"name": "days",
|
|
2030
1787
|
"hasDynamicHelp": false,
|
|
2031
1788
|
"multiple": false,
|
|
2032
1789
|
"type": "option"
|
|
2033
1790
|
},
|
|
2034
|
-
"
|
|
2035
|
-
"
|
|
2036
|
-
|
|
1791
|
+
"start": {
|
|
1792
|
+
"description": "Start of insights time range (ISO date).",
|
|
1793
|
+
"exclusive": [
|
|
1794
|
+
"days"
|
|
2037
1795
|
],
|
|
2038
|
-
"
|
|
2039
|
-
"name": "sdk-version",
|
|
1796
|
+
"name": "start",
|
|
2040
1797
|
"hasDynamicHelp": false,
|
|
2041
1798
|
"multiple": false,
|
|
2042
1799
|
"type": "option"
|
|
2043
1800
|
},
|
|
2044
|
-
"
|
|
2045
|
-
"
|
|
2046
|
-
|
|
1801
|
+
"end": {
|
|
1802
|
+
"description": "End of insights time range (ISO date).",
|
|
1803
|
+
"exclusive": [
|
|
1804
|
+
"days"
|
|
2047
1805
|
],
|
|
2048
|
-
"
|
|
2049
|
-
"name": "runtime-version",
|
|
1806
|
+
"name": "end",
|
|
2050
1807
|
"hasDynamicHelp": false,
|
|
2051
1808
|
"multiple": false,
|
|
2052
1809
|
"type": "option"
|
|
2053
1810
|
},
|
|
2054
|
-
"
|
|
2055
|
-
"
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
"
|
|
2059
|
-
"name": "app-identifier",
|
|
2060
|
-
"hasDynamicHelp": false,
|
|
2061
|
-
"multiple": false,
|
|
2062
|
-
"type": "option"
|
|
2063
|
-
},
|
|
2064
|
-
"build-profile": {
|
|
2065
|
-
"aliases": [
|
|
2066
|
-
"profile",
|
|
2067
|
-
"buildProfile"
|
|
2068
|
-
],
|
|
2069
|
-
"char": "e",
|
|
2070
|
-
"description": "Filter only builds created with the specified build profile",
|
|
2071
|
-
"name": "build-profile",
|
|
2072
|
-
"hasDynamicHelp": false,
|
|
2073
|
-
"multiple": false,
|
|
2074
|
-
"type": "option"
|
|
2075
|
-
},
|
|
2076
|
-
"git-commit-hash": {
|
|
2077
|
-
"aliases": [
|
|
2078
|
-
"gitCommitHash"
|
|
2079
|
-
],
|
|
2080
|
-
"description": "Filter only builds created with the specified git commit hash",
|
|
2081
|
-
"name": "git-commit-hash",
|
|
2082
|
-
"hasDynamicHelp": false,
|
|
2083
|
-
"multiple": false,
|
|
2084
|
-
"type": "option"
|
|
2085
|
-
},
|
|
2086
|
-
"fingerprint-hash": {
|
|
2087
|
-
"description": "Filter only builds with the specified fingerprint hash",
|
|
2088
|
-
"name": "fingerprint-hash",
|
|
2089
|
-
"hasDynamicHelp": false,
|
|
2090
|
-
"multiple": false,
|
|
2091
|
-
"type": "option"
|
|
2092
|
-
},
|
|
2093
|
-
"offset": {
|
|
2094
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2095
|
-
"name": "offset",
|
|
2096
|
-
"hasDynamicHelp": false,
|
|
2097
|
-
"multiple": false,
|
|
2098
|
-
"type": "option"
|
|
2099
|
-
},
|
|
2100
|
-
"limit": {
|
|
2101
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
2102
|
-
"name": "limit",
|
|
2103
|
-
"hasDynamicHelp": false,
|
|
2104
|
-
"multiple": false,
|
|
2105
|
-
"type": "option"
|
|
2106
|
-
},
|
|
2107
|
-
"json": {
|
|
2108
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2109
|
-
"name": "json",
|
|
2110
|
-
"allowNo": false,
|
|
2111
|
-
"type": "boolean"
|
|
1811
|
+
"json": {
|
|
1812
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1813
|
+
"name": "json",
|
|
1814
|
+
"allowNo": false,
|
|
1815
|
+
"type": "boolean"
|
|
2112
1816
|
},
|
|
2113
1817
|
"non-interactive": {
|
|
2114
1818
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -2116,17 +1820,11 @@
|
|
|
2116
1820
|
"noCacheDefault": true,
|
|
2117
1821
|
"allowNo": false,
|
|
2118
1822
|
"type": "boolean"
|
|
2119
|
-
},
|
|
2120
|
-
"simulator": {
|
|
2121
|
-
"description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
|
|
2122
|
-
"name": "simulator",
|
|
2123
|
-
"allowNo": false,
|
|
2124
|
-
"type": "boolean"
|
|
2125
1823
|
}
|
|
2126
1824
|
},
|
|
2127
1825
|
"hasDynamicHelp": false,
|
|
2128
1826
|
"hiddenAliases": [],
|
|
2129
|
-
"id": "
|
|
1827
|
+
"id": "channel:insights",
|
|
2130
1828
|
"pluginAlias": "eas-cli",
|
|
2131
1829
|
"pluginName": "eas-cli",
|
|
2132
1830
|
"pluginType": "core",
|
|
@@ -2174,66 +1872,21 @@
|
|
|
2174
1872
|
},
|
|
2175
1873
|
"contextDefinition": {
|
|
2176
1874
|
"projectId": {},
|
|
2177
|
-
"loggedIn": {}
|
|
2178
|
-
"vcsClient": {}
|
|
1875
|
+
"loggedIn": {}
|
|
2179
1876
|
},
|
|
2180
1877
|
"isESM": false,
|
|
2181
1878
|
"relativePath": [
|
|
2182
1879
|
"build",
|
|
2183
1880
|
"commands",
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
1881
|
+
"channel",
|
|
1882
|
+
"insights.js"
|
|
2186
1883
|
]
|
|
2187
1884
|
},
|
|
2188
|
-
"
|
|
1885
|
+
"channel:list": {
|
|
2189
1886
|
"aliases": [],
|
|
2190
1887
|
"args": {},
|
|
2191
|
-
"description": "
|
|
1888
|
+
"description": "list all channels",
|
|
2192
1889
|
"flags": {
|
|
2193
|
-
"platform": {
|
|
2194
|
-
"char": "p",
|
|
2195
|
-
"name": "platform",
|
|
2196
|
-
"hasDynamicHelp": false,
|
|
2197
|
-
"multiple": false,
|
|
2198
|
-
"options": [
|
|
2199
|
-
"android",
|
|
2200
|
-
"ios"
|
|
2201
|
-
],
|
|
2202
|
-
"type": "option"
|
|
2203
|
-
},
|
|
2204
|
-
"target-profile": {
|
|
2205
|
-
"aliases": [
|
|
2206
|
-
"profile"
|
|
2207
|
-
],
|
|
2208
|
-
"char": "e",
|
|
2209
|
-
"description": "Name of the target build profile from eas.json. Credentials and environment variables from this profile will be used when re-signing. Defaults to \"production\" if defined in eas.json.",
|
|
2210
|
-
"name": "target-profile",
|
|
2211
|
-
"hasDynamicHelp": false,
|
|
2212
|
-
"helpValue": "PROFILE_NAME",
|
|
2213
|
-
"multiple": false,
|
|
2214
|
-
"type": "option"
|
|
2215
|
-
},
|
|
2216
|
-
"source-profile": {
|
|
2217
|
-
"description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
|
|
2218
|
-
"name": "source-profile",
|
|
2219
|
-
"hasDynamicHelp": false,
|
|
2220
|
-
"helpValue": "PROFILE_NAME",
|
|
2221
|
-
"multiple": false,
|
|
2222
|
-
"type": "option"
|
|
2223
|
-
},
|
|
2224
|
-
"wait": {
|
|
2225
|
-
"description": "Wait for build(s) to complete.",
|
|
2226
|
-
"name": "wait",
|
|
2227
|
-
"allowNo": true,
|
|
2228
|
-
"type": "boolean"
|
|
2229
|
-
},
|
|
2230
|
-
"id": {
|
|
2231
|
-
"description": "ID of the build to re-sign.",
|
|
2232
|
-
"name": "id",
|
|
2233
|
-
"hasDynamicHelp": false,
|
|
2234
|
-
"multiple": false,
|
|
2235
|
-
"type": "option"
|
|
2236
|
-
},
|
|
2237
1890
|
"offset": {
|
|
2238
1891
|
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2239
1892
|
"name": "offset",
|
|
@@ -2242,7 +1895,7 @@
|
|
|
2242
1895
|
"type": "option"
|
|
2243
1896
|
},
|
|
2244
1897
|
"limit": {
|
|
2245
|
-
"description": "The number of items to fetch each query. Defaults to
|
|
1898
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
|
|
2246
1899
|
"name": "limit",
|
|
2247
1900
|
"hasDynamicHelp": false,
|
|
2248
1901
|
"multiple": false,
|
|
@@ -2264,7 +1917,7 @@
|
|
|
2264
1917
|
},
|
|
2265
1918
|
"hasDynamicHelp": false,
|
|
2266
1919
|
"hiddenAliases": [],
|
|
2267
|
-
"id": "
|
|
1920
|
+
"id": "channel:list",
|
|
2268
1921
|
"pluginAlias": "eas-cli",
|
|
2269
1922
|
"pluginName": "eas-cli",
|
|
2270
1923
|
"pluginType": "core",
|
|
@@ -2311,116 +1964,52 @@
|
|
|
2311
1964
|
}
|
|
2312
1965
|
},
|
|
2313
1966
|
"contextDefinition": {
|
|
2314
|
-
"
|
|
2315
|
-
"
|
|
2316
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2317
|
-
"projectDir": {},
|
|
2318
|
-
"analytics": {},
|
|
2319
|
-
"vcsClient": {}
|
|
1967
|
+
"projectId": {},
|
|
1968
|
+
"loggedIn": {}
|
|
2320
1969
|
},
|
|
2321
1970
|
"isESM": false,
|
|
2322
1971
|
"relativePath": [
|
|
2323
1972
|
"build",
|
|
2324
1973
|
"commands",
|
|
2325
|
-
"
|
|
2326
|
-
"
|
|
1974
|
+
"channel",
|
|
1975
|
+
"list.js"
|
|
2327
1976
|
]
|
|
2328
1977
|
},
|
|
2329
|
-
"
|
|
1978
|
+
"channel:pause": {
|
|
2330
1979
|
"aliases": [],
|
|
2331
|
-
"args": {
|
|
2332
|
-
|
|
1980
|
+
"args": {
|
|
1981
|
+
"name": {
|
|
1982
|
+
"description": "Name of the channel to edit",
|
|
1983
|
+
"name": "name",
|
|
1984
|
+
"required": false
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"description": "pause a channel to stop it from sending updates",
|
|
2333
1988
|
"flags": {
|
|
2334
|
-
"
|
|
2335
|
-
"description": "
|
|
2336
|
-
"
|
|
2337
|
-
"id",
|
|
2338
|
-
"path",
|
|
2339
|
-
"url"
|
|
2340
|
-
],
|
|
2341
|
-
"name": "latest",
|
|
2342
|
-
"allowNo": false,
|
|
2343
|
-
"type": "boolean"
|
|
2344
|
-
},
|
|
2345
|
-
"url": {
|
|
2346
|
-
"description": "Simulator/Emulator build archive url",
|
|
2347
|
-
"exclusive": [
|
|
2348
|
-
"latest",
|
|
2349
|
-
"id",
|
|
2350
|
-
"path"
|
|
2351
|
-
],
|
|
2352
|
-
"name": "url",
|
|
2353
|
-
"hasDynamicHelp": false,
|
|
2354
|
-
"multiple": false,
|
|
2355
|
-
"type": "option"
|
|
2356
|
-
},
|
|
2357
|
-
"path": {
|
|
2358
|
-
"description": "Path to the simulator/emulator build archive or app",
|
|
2359
|
-
"exclusive": [
|
|
2360
|
-
"latest",
|
|
2361
|
-
"id",
|
|
2362
|
-
"url"
|
|
2363
|
-
],
|
|
2364
|
-
"name": "path",
|
|
2365
|
-
"hasDynamicHelp": false,
|
|
2366
|
-
"multiple": false,
|
|
2367
|
-
"type": "option"
|
|
2368
|
-
},
|
|
2369
|
-
"id": {
|
|
2370
|
-
"description": "ID of the simulator/emulator build to run",
|
|
2371
|
-
"exclusive": [
|
|
2372
|
-
"latest, path, url"
|
|
2373
|
-
],
|
|
2374
|
-
"name": "id",
|
|
2375
|
-
"hasDynamicHelp": false,
|
|
2376
|
-
"multiple": false,
|
|
2377
|
-
"type": "option"
|
|
2378
|
-
},
|
|
2379
|
-
"platform": {
|
|
2380
|
-
"char": "p",
|
|
2381
|
-
"name": "platform",
|
|
2382
|
-
"hasDynamicHelp": false,
|
|
2383
|
-
"multiple": false,
|
|
2384
|
-
"options": [
|
|
2385
|
-
"android",
|
|
2386
|
-
"ios"
|
|
2387
|
-
],
|
|
2388
|
-
"type": "option"
|
|
2389
|
-
},
|
|
2390
|
-
"profile": {
|
|
2391
|
-
"char": "e",
|
|
2392
|
-
"description": "Name of the build profile used to create the build to run. When specified, only builds created with the specified build profile will be queried.",
|
|
2393
|
-
"name": "profile",
|
|
2394
|
-
"hasDynamicHelp": false,
|
|
2395
|
-
"helpValue": "PROFILE_NAME",
|
|
2396
|
-
"multiple": false,
|
|
2397
|
-
"type": "option"
|
|
2398
|
-
},
|
|
2399
|
-
"simulator": {
|
|
2400
|
-
"description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
|
|
2401
|
-
"name": "simulator",
|
|
1989
|
+
"branch": {
|
|
1990
|
+
"description": "Name of the branch to point to",
|
|
1991
|
+
"name": "branch",
|
|
2402
1992
|
"hasDynamicHelp": false,
|
|
2403
1993
|
"multiple": false,
|
|
2404
1994
|
"type": "option"
|
|
2405
1995
|
},
|
|
2406
|
-
"
|
|
2407
|
-
"description": "
|
|
2408
|
-
"name": "
|
|
2409
|
-
"
|
|
2410
|
-
"
|
|
2411
|
-
"type": "option"
|
|
1996
|
+
"json": {
|
|
1997
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1998
|
+
"name": "json",
|
|
1999
|
+
"allowNo": false,
|
|
2000
|
+
"type": "boolean"
|
|
2412
2001
|
},
|
|
2413
|
-
"
|
|
2414
|
-
"description": "
|
|
2415
|
-
"name": "
|
|
2416
|
-
"
|
|
2417
|
-
"
|
|
2418
|
-
"type": "
|
|
2002
|
+
"non-interactive": {
|
|
2003
|
+
"description": "Run the command in non-interactive mode.",
|
|
2004
|
+
"name": "non-interactive",
|
|
2005
|
+
"noCacheDefault": true,
|
|
2006
|
+
"allowNo": false,
|
|
2007
|
+
"type": "boolean"
|
|
2419
2008
|
}
|
|
2420
2009
|
},
|
|
2421
2010
|
"hasDynamicHelp": false,
|
|
2422
2011
|
"hiddenAliases": [],
|
|
2423
|
-
"id": "
|
|
2012
|
+
"id": "channel:pause",
|
|
2424
2013
|
"pluginAlias": "eas-cli",
|
|
2425
2014
|
"pluginName": "eas-cli",
|
|
2426
2015
|
"pluginType": "core",
|
|
@@ -2467,37 +2056,52 @@
|
|
|
2467
2056
|
}
|
|
2468
2057
|
},
|
|
2469
2058
|
"contextDefinition": {
|
|
2470
|
-
"loggedIn": {},
|
|
2471
2059
|
"projectId": {},
|
|
2472
|
-
"
|
|
2060
|
+
"loggedIn": {}
|
|
2473
2061
|
},
|
|
2474
2062
|
"isESM": false,
|
|
2475
2063
|
"relativePath": [
|
|
2476
2064
|
"build",
|
|
2477
2065
|
"commands",
|
|
2478
|
-
"
|
|
2479
|
-
"
|
|
2066
|
+
"channel",
|
|
2067
|
+
"pause.js"
|
|
2480
2068
|
]
|
|
2481
2069
|
},
|
|
2482
|
-
"
|
|
2070
|
+
"channel:resume": {
|
|
2483
2071
|
"aliases": [],
|
|
2484
2072
|
"args": {
|
|
2485
|
-
"
|
|
2486
|
-
"
|
|
2073
|
+
"name": {
|
|
2074
|
+
"description": "Name of the channel to edit",
|
|
2075
|
+
"name": "name",
|
|
2076
|
+
"required": false
|
|
2487
2077
|
}
|
|
2488
2078
|
},
|
|
2489
|
-
"description": "
|
|
2079
|
+
"description": "resume a channel to start sending updates",
|
|
2490
2080
|
"flags": {
|
|
2081
|
+
"branch": {
|
|
2082
|
+
"description": "Name of the branch to point to",
|
|
2083
|
+
"name": "branch",
|
|
2084
|
+
"hasDynamicHelp": false,
|
|
2085
|
+
"multiple": false,
|
|
2086
|
+
"type": "option"
|
|
2087
|
+
},
|
|
2491
2088
|
"json": {
|
|
2492
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
2089
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2493
2090
|
"name": "json",
|
|
2494
2091
|
"allowNo": false,
|
|
2495
2092
|
"type": "boolean"
|
|
2093
|
+
},
|
|
2094
|
+
"non-interactive": {
|
|
2095
|
+
"description": "Run the command in non-interactive mode.",
|
|
2096
|
+
"name": "non-interactive",
|
|
2097
|
+
"noCacheDefault": true,
|
|
2098
|
+
"allowNo": false,
|
|
2099
|
+
"type": "boolean"
|
|
2496
2100
|
}
|
|
2497
2101
|
},
|
|
2498
2102
|
"hasDynamicHelp": false,
|
|
2499
2103
|
"hiddenAliases": [],
|
|
2500
|
-
"id": "
|
|
2104
|
+
"id": "channel:resume",
|
|
2501
2105
|
"pluginAlias": "eas-cli",
|
|
2502
2106
|
"pluginName": "eas-cli",
|
|
2503
2107
|
"pluginType": "core",
|
|
@@ -2545,28 +2149,103 @@
|
|
|
2545
2149
|
},
|
|
2546
2150
|
"contextDefinition": {
|
|
2547
2151
|
"projectId": {},
|
|
2548
|
-
"loggedIn": {}
|
|
2549
|
-
"vcsClient": {}
|
|
2152
|
+
"loggedIn": {}
|
|
2550
2153
|
},
|
|
2551
2154
|
"isESM": false,
|
|
2552
2155
|
"relativePath": [
|
|
2553
2156
|
"build",
|
|
2554
2157
|
"commands",
|
|
2555
|
-
"
|
|
2556
|
-
"
|
|
2158
|
+
"channel",
|
|
2159
|
+
"resume.js"
|
|
2557
2160
|
]
|
|
2558
2161
|
},
|
|
2559
|
-
"
|
|
2162
|
+
"channel:rollout": {
|
|
2560
2163
|
"aliases": [],
|
|
2561
2164
|
"args": {
|
|
2562
|
-
"
|
|
2563
|
-
"description": "
|
|
2564
|
-
"name": "
|
|
2565
|
-
"required": false
|
|
2165
|
+
"channel": {
|
|
2166
|
+
"description": "channel on which the rollout should be done",
|
|
2167
|
+
"name": "channel"
|
|
2566
2168
|
}
|
|
2567
2169
|
},
|
|
2568
|
-
"description": "
|
|
2170
|
+
"description": "Roll a new branch out on a channel incrementally.",
|
|
2569
2171
|
"flags": {
|
|
2172
|
+
"action": {
|
|
2173
|
+
"description": "Rollout action to perform",
|
|
2174
|
+
"name": "action",
|
|
2175
|
+
"relationships": [
|
|
2176
|
+
{
|
|
2177
|
+
"type": "all",
|
|
2178
|
+
"flags": [
|
|
2179
|
+
{
|
|
2180
|
+
"name": "percent"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"name": "outcome"
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
"name": "branch"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"name": "runtime-version"
|
|
2190
|
+
}
|
|
2191
|
+
]
|
|
2192
|
+
}
|
|
2193
|
+
],
|
|
2194
|
+
"required": false,
|
|
2195
|
+
"hasDynamicHelp": false,
|
|
2196
|
+
"multiple": false,
|
|
2197
|
+
"options": [
|
|
2198
|
+
"create",
|
|
2199
|
+
"edit",
|
|
2200
|
+
"end",
|
|
2201
|
+
"view"
|
|
2202
|
+
],
|
|
2203
|
+
"type": "option"
|
|
2204
|
+
},
|
|
2205
|
+
"percent": {
|
|
2206
|
+
"description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
|
|
2207
|
+
"name": "percent",
|
|
2208
|
+
"required": false,
|
|
2209
|
+
"hasDynamicHelp": false,
|
|
2210
|
+
"multiple": false,
|
|
2211
|
+
"type": "option"
|
|
2212
|
+
},
|
|
2213
|
+
"outcome": {
|
|
2214
|
+
"description": "End outcome of rollout. Use with --action=end",
|
|
2215
|
+
"name": "outcome",
|
|
2216
|
+
"required": false,
|
|
2217
|
+
"hasDynamicHelp": false,
|
|
2218
|
+
"multiple": false,
|
|
2219
|
+
"options": [
|
|
2220
|
+
"republish-and-revert",
|
|
2221
|
+
"revert"
|
|
2222
|
+
],
|
|
2223
|
+
"type": "option"
|
|
2224
|
+
},
|
|
2225
|
+
"branch": {
|
|
2226
|
+
"description": "Branch to roll out. Use with --action=create",
|
|
2227
|
+
"name": "branch",
|
|
2228
|
+
"required": false,
|
|
2229
|
+
"hasDynamicHelp": false,
|
|
2230
|
+
"multiple": false,
|
|
2231
|
+
"type": "option"
|
|
2232
|
+
},
|
|
2233
|
+
"runtime-version": {
|
|
2234
|
+
"description": "Runtime version to target. Use with --action=create",
|
|
2235
|
+
"name": "runtime-version",
|
|
2236
|
+
"required": false,
|
|
2237
|
+
"hasDynamicHelp": false,
|
|
2238
|
+
"multiple": false,
|
|
2239
|
+
"type": "option"
|
|
2240
|
+
},
|
|
2241
|
+
"private-key-path": {
|
|
2242
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
2243
|
+
"name": "private-key-path",
|
|
2244
|
+
"required": false,
|
|
2245
|
+
"hasDynamicHelp": false,
|
|
2246
|
+
"multiple": false,
|
|
2247
|
+
"type": "option"
|
|
2248
|
+
},
|
|
2570
2249
|
"json": {
|
|
2571
2250
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2572
2251
|
"name": "json",
|
|
@@ -2583,7 +2262,7 @@
|
|
|
2583
2262
|
},
|
|
2584
2263
|
"hasDynamicHelp": false,
|
|
2585
2264
|
"hiddenAliases": [],
|
|
2586
|
-
"id": "
|
|
2265
|
+
"id": "channel:rollout",
|
|
2587
2266
|
"pluginAlias": "eas-cli",
|
|
2588
2267
|
"pluginName": "eas-cli",
|
|
2589
2268
|
"pluginType": "core",
|
|
@@ -2630,28 +2309,28 @@
|
|
|
2630
2309
|
}
|
|
2631
2310
|
},
|
|
2632
2311
|
"contextDefinition": {
|
|
2633
|
-
"projectId": {},
|
|
2634
2312
|
"loggedIn": {},
|
|
2313
|
+
"privateProjectConfig": {},
|
|
2635
2314
|
"vcsClient": {}
|
|
2636
2315
|
},
|
|
2637
2316
|
"isESM": false,
|
|
2638
2317
|
"relativePath": [
|
|
2639
2318
|
"build",
|
|
2640
2319
|
"commands",
|
|
2641
|
-
"
|
|
2642
|
-
"
|
|
2320
|
+
"channel",
|
|
2321
|
+
"rollout.js"
|
|
2643
2322
|
]
|
|
2644
2323
|
},
|
|
2645
|
-
"
|
|
2324
|
+
"channel:view": {
|
|
2646
2325
|
"aliases": [],
|
|
2647
2326
|
"args": {
|
|
2648
2327
|
"name": {
|
|
2649
|
-
"description": "Name of the
|
|
2328
|
+
"description": "Name of the channel to view",
|
|
2650
2329
|
"name": "name",
|
|
2651
2330
|
"required": false
|
|
2652
2331
|
}
|
|
2653
2332
|
},
|
|
2654
|
-
"description": "
|
|
2333
|
+
"description": "view a channel",
|
|
2655
2334
|
"flags": {
|
|
2656
2335
|
"json": {
|
|
2657
2336
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
@@ -2665,11 +2344,25 @@
|
|
|
2665
2344
|
"noCacheDefault": true,
|
|
2666
2345
|
"allowNo": false,
|
|
2667
2346
|
"type": "boolean"
|
|
2347
|
+
},
|
|
2348
|
+
"offset": {
|
|
2349
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2350
|
+
"name": "offset",
|
|
2351
|
+
"hasDynamicHelp": false,
|
|
2352
|
+
"multiple": false,
|
|
2353
|
+
"type": "option"
|
|
2354
|
+
},
|
|
2355
|
+
"limit": {
|
|
2356
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2357
|
+
"name": "limit",
|
|
2358
|
+
"hasDynamicHelp": false,
|
|
2359
|
+
"multiple": false,
|
|
2360
|
+
"type": "option"
|
|
2668
2361
|
}
|
|
2669
2362
|
},
|
|
2670
2363
|
"hasDynamicHelp": false,
|
|
2671
2364
|
"hiddenAliases": [],
|
|
2672
|
-
"id": "
|
|
2365
|
+
"id": "channel:view",
|
|
2673
2366
|
"pluginAlias": "eas-cli",
|
|
2674
2367
|
"pluginName": "eas-cli",
|
|
2675
2368
|
"pluginType": "core",
|
|
@@ -2723,46 +2416,52 @@
|
|
|
2723
2416
|
"relativePath": [
|
|
2724
2417
|
"build",
|
|
2725
2418
|
"commands",
|
|
2726
|
-
"
|
|
2727
|
-
"
|
|
2419
|
+
"channel",
|
|
2420
|
+
"view.js"
|
|
2728
2421
|
]
|
|
2729
2422
|
},
|
|
2730
|
-
"
|
|
2423
|
+
"build:cancel": {
|
|
2731
2424
|
"aliases": [],
|
|
2732
|
-
"args": {
|
|
2733
|
-
|
|
2425
|
+
"args": {
|
|
2426
|
+
"BUILD_ID": {
|
|
2427
|
+
"name": "BUILD_ID"
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
"description": "cancel a build",
|
|
2734
2431
|
"flags": {
|
|
2735
|
-
"
|
|
2736
|
-
"description": "
|
|
2737
|
-
"name": "
|
|
2432
|
+
"non-interactive": {
|
|
2433
|
+
"description": "Run the command in non-interactive mode.",
|
|
2434
|
+
"name": "non-interactive",
|
|
2435
|
+
"noCacheDefault": true,
|
|
2436
|
+
"allowNo": false,
|
|
2437
|
+
"type": "boolean"
|
|
2438
|
+
},
|
|
2439
|
+
"platform": {
|
|
2440
|
+
"char": "p",
|
|
2441
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2442
|
+
"name": "platform",
|
|
2738
2443
|
"hasDynamicHelp": false,
|
|
2739
2444
|
"multiple": false,
|
|
2445
|
+
"options": [
|
|
2446
|
+
"android",
|
|
2447
|
+
"ios",
|
|
2448
|
+
"all"
|
|
2449
|
+
],
|
|
2740
2450
|
"type": "option"
|
|
2741
2451
|
},
|
|
2742
|
-
"
|
|
2743
|
-
"
|
|
2744
|
-
"
|
|
2452
|
+
"profile": {
|
|
2453
|
+
"char": "e",
|
|
2454
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2455
|
+
"name": "profile",
|
|
2745
2456
|
"hasDynamicHelp": false,
|
|
2457
|
+
"helpValue": "PROFILE_NAME",
|
|
2746
2458
|
"multiple": false,
|
|
2747
2459
|
"type": "option"
|
|
2748
|
-
},
|
|
2749
|
-
"json": {
|
|
2750
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2751
|
-
"name": "json",
|
|
2752
|
-
"allowNo": false,
|
|
2753
|
-
"type": "boolean"
|
|
2754
|
-
},
|
|
2755
|
-
"non-interactive": {
|
|
2756
|
-
"description": "Run the command in non-interactive mode.",
|
|
2757
|
-
"name": "non-interactive",
|
|
2758
|
-
"noCacheDefault": true,
|
|
2759
|
-
"allowNo": false,
|
|
2760
|
-
"type": "boolean"
|
|
2761
2460
|
}
|
|
2762
2461
|
},
|
|
2763
2462
|
"hasDynamicHelp": false,
|
|
2764
2463
|
"hiddenAliases": [],
|
|
2765
|
-
"id": "
|
|
2464
|
+
"id": "build:cancel",
|
|
2766
2465
|
"pluginAlias": "eas-cli",
|
|
2767
2466
|
"pluginName": "eas-cli",
|
|
2768
2467
|
"pluginType": "core",
|
|
@@ -2810,25 +2509,39 @@
|
|
|
2810
2509
|
},
|
|
2811
2510
|
"contextDefinition": {
|
|
2812
2511
|
"projectId": {},
|
|
2813
|
-
"loggedIn": {}
|
|
2512
|
+
"loggedIn": {},
|
|
2513
|
+
"vcsClient": {}
|
|
2814
2514
|
},
|
|
2815
2515
|
"isESM": false,
|
|
2816
2516
|
"relativePath": [
|
|
2817
2517
|
"build",
|
|
2818
2518
|
"commands",
|
|
2819
|
-
"
|
|
2820
|
-
"
|
|
2519
|
+
"build",
|
|
2520
|
+
"cancel.js"
|
|
2821
2521
|
]
|
|
2822
2522
|
},
|
|
2823
|
-
"
|
|
2523
|
+
"build:configure": {
|
|
2824
2524
|
"aliases": [],
|
|
2825
2525
|
"args": {},
|
|
2826
|
-
"description": "
|
|
2827
|
-
"flags": {
|
|
2526
|
+
"description": "configure the project to support EAS Build",
|
|
2527
|
+
"flags": {
|
|
2528
|
+
"platform": {
|
|
2529
|
+
"char": "p",
|
|
2530
|
+
"description": "Platform to configure",
|
|
2531
|
+
"name": "platform",
|
|
2532
|
+
"hasDynamicHelp": false,
|
|
2533
|
+
"multiple": false,
|
|
2534
|
+
"options": [
|
|
2535
|
+
"android",
|
|
2536
|
+
"ios",
|
|
2537
|
+
"all"
|
|
2538
|
+
],
|
|
2539
|
+
"type": "option"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2828
2542
|
"hasDynamicHelp": false,
|
|
2829
|
-
"hidden": true,
|
|
2830
2543
|
"hiddenAliases": [],
|
|
2831
|
-
"id": "
|
|
2544
|
+
"id": "build:configure",
|
|
2832
2545
|
"pluginAlias": "eas-cli",
|
|
2833
2546
|
"pluginName": "eas-cli",
|
|
2834
2547
|
"pluginType": "core",
|
|
@@ -2874,53 +2587,61 @@
|
|
|
2874
2587
|
"projectId": {}
|
|
2875
2588
|
}
|
|
2876
2589
|
},
|
|
2877
|
-
"contextDefinition": {
|
|
2590
|
+
"contextDefinition": {
|
|
2591
|
+
"loggedIn": {},
|
|
2592
|
+
"privateProjectConfig": {},
|
|
2593
|
+
"vcsClient": {}
|
|
2594
|
+
},
|
|
2878
2595
|
"isESM": false,
|
|
2879
2596
|
"relativePath": [
|
|
2880
2597
|
"build",
|
|
2881
2598
|
"commands",
|
|
2882
|
-
"
|
|
2883
|
-
"
|
|
2599
|
+
"build",
|
|
2600
|
+
"configure.js"
|
|
2884
2601
|
]
|
|
2885
2602
|
},
|
|
2886
|
-
"
|
|
2603
|
+
"build:delete": {
|
|
2887
2604
|
"aliases": [],
|
|
2888
|
-
"args": {
|
|
2889
|
-
|
|
2605
|
+
"args": {
|
|
2606
|
+
"BUILD_ID": {
|
|
2607
|
+
"name": "BUILD_ID"
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"description": "delete a build",
|
|
2890
2611
|
"flags": {
|
|
2891
|
-
"
|
|
2892
|
-
"description": "
|
|
2893
|
-
"name": "
|
|
2894
|
-
"
|
|
2612
|
+
"non-interactive": {
|
|
2613
|
+
"description": "Run the command in non-interactive mode.",
|
|
2614
|
+
"name": "non-interactive",
|
|
2615
|
+
"noCacheDefault": true,
|
|
2616
|
+
"allowNo": false,
|
|
2617
|
+
"type": "boolean"
|
|
2618
|
+
},
|
|
2619
|
+
"platform": {
|
|
2620
|
+
"char": "p",
|
|
2621
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2622
|
+
"name": "platform",
|
|
2895
2623
|
"hasDynamicHelp": false,
|
|
2896
2624
|
"multiple": false,
|
|
2625
|
+
"options": [
|
|
2626
|
+
"android",
|
|
2627
|
+
"ios",
|
|
2628
|
+
"all"
|
|
2629
|
+
],
|
|
2897
2630
|
"type": "option"
|
|
2898
2631
|
},
|
|
2899
|
-
"
|
|
2900
|
-
"
|
|
2901
|
-
"
|
|
2902
|
-
"
|
|
2632
|
+
"profile": {
|
|
2633
|
+
"char": "e",
|
|
2634
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2635
|
+
"name": "profile",
|
|
2903
2636
|
"hasDynamicHelp": false,
|
|
2637
|
+
"helpValue": "PROFILE_NAME",
|
|
2904
2638
|
"multiple": false,
|
|
2905
2639
|
"type": "option"
|
|
2906
|
-
},
|
|
2907
|
-
"json": {
|
|
2908
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2909
|
-
"name": "json",
|
|
2910
|
-
"allowNo": false,
|
|
2911
|
-
"type": "boolean"
|
|
2912
|
-
},
|
|
2913
|
-
"non-interactive": {
|
|
2914
|
-
"description": "Run the command in non-interactive mode.",
|
|
2915
|
-
"name": "non-interactive",
|
|
2916
|
-
"noCacheDefault": true,
|
|
2917
|
-
"allowNo": false,
|
|
2918
|
-
"type": "boolean"
|
|
2919
2640
|
}
|
|
2920
2641
|
},
|
|
2921
2642
|
"hasDynamicHelp": false,
|
|
2922
2643
|
"hiddenAliases": [],
|
|
2923
|
-
"id": "
|
|
2644
|
+
"id": "build:delete",
|
|
2924
2645
|
"pluginAlias": "eas-cli",
|
|
2925
2646
|
"pluginName": "eas-cli",
|
|
2926
2647
|
"pluginType": "core",
|
|
@@ -2968,58 +2689,65 @@
|
|
|
2968
2689
|
},
|
|
2969
2690
|
"contextDefinition": {
|
|
2970
2691
|
"projectId": {},
|
|
2971
|
-
"loggedIn": {}
|
|
2692
|
+
"loggedIn": {},
|
|
2693
|
+
"vcsClient": {}
|
|
2972
2694
|
},
|
|
2973
2695
|
"isESM": false,
|
|
2974
2696
|
"relativePath": [
|
|
2975
2697
|
"build",
|
|
2976
2698
|
"commands",
|
|
2977
|
-
"
|
|
2978
|
-
"
|
|
2699
|
+
"build",
|
|
2700
|
+
"delete.js"
|
|
2979
2701
|
]
|
|
2980
2702
|
},
|
|
2981
|
-
"
|
|
2703
|
+
"build:dev": {
|
|
2982
2704
|
"aliases": [],
|
|
2983
|
-
"args": {
|
|
2984
|
-
|
|
2985
|
-
"description": "Name of the branch to view",
|
|
2986
|
-
"name": "name",
|
|
2987
|
-
"required": false
|
|
2988
|
-
}
|
|
2989
|
-
},
|
|
2990
|
-
"description": "view a branch",
|
|
2705
|
+
"args": {},
|
|
2706
|
+
"description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
|
|
2991
2707
|
"flags": {
|
|
2992
|
-
"
|
|
2993
|
-
"
|
|
2994
|
-
"name": "
|
|
2708
|
+
"platform": {
|
|
2709
|
+
"char": "p",
|
|
2710
|
+
"name": "platform",
|
|
2995
2711
|
"hasDynamicHelp": false,
|
|
2996
2712
|
"multiple": false,
|
|
2713
|
+
"options": [
|
|
2714
|
+
"ios",
|
|
2715
|
+
"android"
|
|
2716
|
+
],
|
|
2997
2717
|
"type": "option"
|
|
2998
2718
|
},
|
|
2999
|
-
"
|
|
3000
|
-
"
|
|
3001
|
-
"
|
|
2719
|
+
"profile": {
|
|
2720
|
+
"char": "e",
|
|
2721
|
+
"description": "Name of the build profile from eas.json. It must be a profile allowing to create emulator/simulator internal distribution dev client builds. The \"development-simulator\" build profile will be selected by default.",
|
|
2722
|
+
"name": "profile",
|
|
3002
2723
|
"hasDynamicHelp": false,
|
|
2724
|
+
"helpValue": "PROFILE_NAME",
|
|
3003
2725
|
"multiple": false,
|
|
3004
2726
|
"type": "option"
|
|
3005
2727
|
},
|
|
3006
|
-
"
|
|
3007
|
-
"description": "
|
|
3008
|
-
"name": "
|
|
2728
|
+
"skip-build-if-not-found": {
|
|
2729
|
+
"description": "Skip build if no successful build with matching fingerprint is found.",
|
|
2730
|
+
"name": "skip-build-if-not-found",
|
|
3009
2731
|
"allowNo": false,
|
|
3010
2732
|
"type": "boolean"
|
|
3011
2733
|
},
|
|
3012
|
-
"
|
|
3013
|
-
"description": "
|
|
3014
|
-
"name": "
|
|
3015
|
-
"noCacheDefault": true,
|
|
2734
|
+
"skip-bundler": {
|
|
2735
|
+
"description": "Install and run the development build without starting the bundler server.",
|
|
2736
|
+
"name": "skip-bundler",
|
|
3016
2737
|
"allowNo": false,
|
|
3017
2738
|
"type": "boolean"
|
|
2739
|
+
},
|
|
2740
|
+
"simulator": {
|
|
2741
|
+
"description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
|
|
2742
|
+
"name": "simulator",
|
|
2743
|
+
"hasDynamicHelp": false,
|
|
2744
|
+
"multiple": false,
|
|
2745
|
+
"type": "option"
|
|
3018
2746
|
}
|
|
3019
2747
|
},
|
|
3020
2748
|
"hasDynamicHelp": false,
|
|
3021
2749
|
"hiddenAliases": [],
|
|
3022
|
-
"id": "
|
|
2750
|
+
"id": "build:dev",
|
|
3023
2751
|
"pluginAlias": "eas-cli",
|
|
3024
2752
|
"pluginName": "eas-cli",
|
|
3025
2753
|
"pluginType": "core",
|
|
@@ -3066,28 +2794,81 @@
|
|
|
3066
2794
|
}
|
|
3067
2795
|
},
|
|
3068
2796
|
"contextDefinition": {
|
|
3069
|
-
"
|
|
3070
|
-
"
|
|
2797
|
+
"loggedIn": {},
|
|
2798
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2799
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
2800
|
+
"projectDir": {},
|
|
2801
|
+
"vcsClient": {},
|
|
2802
|
+
"analytics": {},
|
|
2803
|
+
"projectId": {}
|
|
3071
2804
|
},
|
|
3072
2805
|
"isESM": false,
|
|
3073
2806
|
"relativePath": [
|
|
3074
2807
|
"build",
|
|
3075
2808
|
"commands",
|
|
3076
|
-
"
|
|
3077
|
-
"
|
|
2809
|
+
"build",
|
|
2810
|
+
"dev.js"
|
|
3078
2811
|
]
|
|
3079
2812
|
},
|
|
3080
|
-
"
|
|
2813
|
+
"build:download": {
|
|
3081
2814
|
"aliases": [],
|
|
3082
|
-
"args": {
|
|
3083
|
-
|
|
3084
|
-
"description": "Name of the channel to create",
|
|
3085
|
-
"name": "name",
|
|
3086
|
-
"required": false
|
|
3087
|
-
}
|
|
3088
|
-
},
|
|
3089
|
-
"description": "create a channel",
|
|
2815
|
+
"args": {},
|
|
2816
|
+
"description": "download a simulator/emulator build by build ID or fingerprint hash",
|
|
3090
2817
|
"flags": {
|
|
2818
|
+
"build-id": {
|
|
2819
|
+
"aliases": [
|
|
2820
|
+
"id"
|
|
2821
|
+
],
|
|
2822
|
+
"description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
|
|
2823
|
+
"exclusive": [
|
|
2824
|
+
"fingerprint",
|
|
2825
|
+
"platform",
|
|
2826
|
+
"dev-client"
|
|
2827
|
+
],
|
|
2828
|
+
"name": "build-id",
|
|
2829
|
+
"hasDynamicHelp": false,
|
|
2830
|
+
"multiple": false,
|
|
2831
|
+
"type": "option"
|
|
2832
|
+
},
|
|
2833
|
+
"fingerprint": {
|
|
2834
|
+
"description": "Fingerprint hash of the build to download",
|
|
2835
|
+
"exclusive": [
|
|
2836
|
+
"build-id"
|
|
2837
|
+
],
|
|
2838
|
+
"name": "fingerprint",
|
|
2839
|
+
"hasDynamicHelp": false,
|
|
2840
|
+
"multiple": false,
|
|
2841
|
+
"type": "option"
|
|
2842
|
+
},
|
|
2843
|
+
"platform": {
|
|
2844
|
+
"char": "p",
|
|
2845
|
+
"exclusive": [
|
|
2846
|
+
"build-id"
|
|
2847
|
+
],
|
|
2848
|
+
"name": "platform",
|
|
2849
|
+
"hasDynamicHelp": false,
|
|
2850
|
+
"multiple": false,
|
|
2851
|
+
"options": [
|
|
2852
|
+
"ios",
|
|
2853
|
+
"android"
|
|
2854
|
+
],
|
|
2855
|
+
"type": "option"
|
|
2856
|
+
},
|
|
2857
|
+
"dev-client": {
|
|
2858
|
+
"description": "Filter only dev-client builds.",
|
|
2859
|
+
"exclusive": [
|
|
2860
|
+
"build-id"
|
|
2861
|
+
],
|
|
2862
|
+
"name": "dev-client",
|
|
2863
|
+
"allowNo": true,
|
|
2864
|
+
"type": "boolean"
|
|
2865
|
+
},
|
|
2866
|
+
"all-artifacts": {
|
|
2867
|
+
"description": "Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in addition to the application archive. Without this flag, only the application archive is downloaded and the command errors if it is missing.",
|
|
2868
|
+
"name": "all-artifacts",
|
|
2869
|
+
"allowNo": false,
|
|
2870
|
+
"type": "boolean"
|
|
2871
|
+
},
|
|
3091
2872
|
"json": {
|
|
3092
2873
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3093
2874
|
"name": "json",
|
|
@@ -3104,7 +2885,7 @@
|
|
|
3104
2885
|
},
|
|
3105
2886
|
"hasDynamicHelp": false,
|
|
3106
2887
|
"hiddenAliases": [],
|
|
3107
|
-
"id": "
|
|
2888
|
+
"id": "build:download",
|
|
3108
2889
|
"pluginAlias": "eas-cli",
|
|
3109
2890
|
"pluginName": "eas-cli",
|
|
3110
2891
|
"pluginType": "core",
|
|
@@ -3151,120 +2932,165 @@
|
|
|
3151
2932
|
}
|
|
3152
2933
|
},
|
|
3153
2934
|
"contextDefinition": {
|
|
3154
|
-
"
|
|
3155
|
-
"
|
|
2935
|
+
"loggedIn": {},
|
|
2936
|
+
"projectId": {}
|
|
3156
2937
|
},
|
|
3157
2938
|
"isESM": false,
|
|
3158
2939
|
"relativePath": [
|
|
3159
2940
|
"build",
|
|
3160
2941
|
"commands",
|
|
3161
|
-
"
|
|
3162
|
-
"
|
|
2942
|
+
"build",
|
|
2943
|
+
"download.js"
|
|
3163
2944
|
]
|
|
3164
2945
|
},
|
|
3165
|
-
"
|
|
2946
|
+
"build": {
|
|
3166
2947
|
"aliases": [],
|
|
3167
|
-
"args": {
|
|
3168
|
-
|
|
3169
|
-
"description": "Name of the channel to delete",
|
|
3170
|
-
"name": "name",
|
|
3171
|
-
"required": false
|
|
3172
|
-
}
|
|
3173
|
-
},
|
|
3174
|
-
"description": "Delete a channel",
|
|
2948
|
+
"args": {},
|
|
2949
|
+
"description": "start a build",
|
|
3175
2950
|
"flags": {
|
|
3176
|
-
"
|
|
3177
|
-
"
|
|
3178
|
-
"name": "
|
|
2951
|
+
"platform": {
|
|
2952
|
+
"char": "p",
|
|
2953
|
+
"name": "platform",
|
|
2954
|
+
"hasDynamicHelp": false,
|
|
2955
|
+
"multiple": false,
|
|
2956
|
+
"options": [
|
|
2957
|
+
"android",
|
|
2958
|
+
"ios",
|
|
2959
|
+
"all"
|
|
2960
|
+
],
|
|
2961
|
+
"type": "option"
|
|
2962
|
+
},
|
|
2963
|
+
"skip-credentials-check": {
|
|
2964
|
+
"hidden": true,
|
|
2965
|
+
"name": "skip-credentials-check",
|
|
3179
2966
|
"allowNo": false,
|
|
3180
2967
|
"type": "boolean"
|
|
3181
2968
|
},
|
|
3182
|
-
"
|
|
3183
|
-
"
|
|
3184
|
-
"name": "
|
|
3185
|
-
"noCacheDefault": true,
|
|
2969
|
+
"skip-project-configuration": {
|
|
2970
|
+
"hidden": true,
|
|
2971
|
+
"name": "skip-project-configuration",
|
|
3186
2972
|
"allowNo": false,
|
|
3187
2973
|
"type": "boolean"
|
|
3188
|
-
}
|
|
3189
|
-
},
|
|
3190
|
-
"hasDynamicHelp": false,
|
|
3191
|
-
"hiddenAliases": [],
|
|
3192
|
-
"id": "channel:delete",
|
|
3193
|
-
"pluginAlias": "eas-cli",
|
|
3194
|
-
"pluginName": "eas-cli",
|
|
3195
|
-
"pluginType": "core",
|
|
3196
|
-
"strict": true,
|
|
3197
|
-
"enableJsonFlag": false,
|
|
3198
|
-
"ContextOptions": {
|
|
3199
|
-
"LoggedIn": {
|
|
3200
|
-
"loggedIn": {}
|
|
3201
|
-
},
|
|
3202
|
-
"MaybeLoggedIn": {
|
|
3203
|
-
"maybeLoggedIn": {}
|
|
3204
2974
|
},
|
|
3205
|
-
"
|
|
3206
|
-
"
|
|
2975
|
+
"profile": {
|
|
2976
|
+
"char": "e",
|
|
2977
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2978
|
+
"name": "profile",
|
|
2979
|
+
"hasDynamicHelp": false,
|
|
2980
|
+
"helpValue": "PROFILE_NAME",
|
|
2981
|
+
"multiple": false,
|
|
2982
|
+
"type": "option"
|
|
3207
2983
|
},
|
|
3208
|
-
"
|
|
3209
|
-
"
|
|
2984
|
+
"local": {
|
|
2985
|
+
"description": "Run build locally [experimental]",
|
|
2986
|
+
"name": "local",
|
|
2987
|
+
"allowNo": false,
|
|
2988
|
+
"type": "boolean"
|
|
3210
2989
|
},
|
|
3211
|
-
"
|
|
3212
|
-
"
|
|
2990
|
+
"output": {
|
|
2991
|
+
"description": "Output path for local build",
|
|
2992
|
+
"name": "output",
|
|
2993
|
+
"hasDynamicHelp": false,
|
|
2994
|
+
"multiple": false,
|
|
2995
|
+
"type": "option"
|
|
3213
2996
|
},
|
|
3214
|
-
"
|
|
3215
|
-
"
|
|
2997
|
+
"wait": {
|
|
2998
|
+
"description": "Wait for build(s) to complete",
|
|
2999
|
+
"name": "wait",
|
|
3000
|
+
"allowNo": true,
|
|
3001
|
+
"type": "boolean"
|
|
3216
3002
|
},
|
|
3217
|
-
"
|
|
3218
|
-
"
|
|
3219
|
-
"
|
|
3003
|
+
"clear-cache": {
|
|
3004
|
+
"description": "Clear cache before the build",
|
|
3005
|
+
"name": "clear-cache",
|
|
3006
|
+
"allowNo": false,
|
|
3007
|
+
"type": "boolean"
|
|
3220
3008
|
},
|
|
3221
|
-
"
|
|
3222
|
-
"
|
|
3223
|
-
|
|
3009
|
+
"auto-submit": {
|
|
3010
|
+
"aliases": [
|
|
3011
|
+
"submit"
|
|
3012
|
+
],
|
|
3013
|
+
"char": "s",
|
|
3014
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
3015
|
+
"exclusive": [
|
|
3016
|
+
"auto-submit-with-profile"
|
|
3017
|
+
],
|
|
3018
|
+
"name": "auto-submit",
|
|
3019
|
+
"allowNo": false,
|
|
3020
|
+
"type": "boolean"
|
|
3224
3021
|
},
|
|
3225
|
-
"
|
|
3226
|
-
"
|
|
3022
|
+
"auto-submit-with-profile": {
|
|
3023
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
3024
|
+
"exclusive": [
|
|
3025
|
+
"auto-submit"
|
|
3026
|
+
],
|
|
3027
|
+
"name": "auto-submit-with-profile",
|
|
3028
|
+
"hasDynamicHelp": false,
|
|
3029
|
+
"helpValue": "PROFILE_NAME",
|
|
3030
|
+
"multiple": false,
|
|
3031
|
+
"type": "option"
|
|
3227
3032
|
},
|
|
3228
|
-
"
|
|
3229
|
-
"
|
|
3033
|
+
"what-to-test": {
|
|
3034
|
+
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
3035
|
+
"name": "what-to-test",
|
|
3036
|
+
"hasDynamicHelp": false,
|
|
3037
|
+
"multiple": false,
|
|
3038
|
+
"type": "option"
|
|
3230
3039
|
},
|
|
3231
|
-
"
|
|
3232
|
-
"
|
|
3040
|
+
"resource-class": {
|
|
3041
|
+
"deprecated": {
|
|
3042
|
+
"message": "The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"
|
|
3043
|
+
},
|
|
3044
|
+
"description": "The instance type that will be used to run this build [experimental]",
|
|
3045
|
+
"hidden": true,
|
|
3046
|
+
"name": "resource-class",
|
|
3047
|
+
"hasDynamicHelp": false,
|
|
3048
|
+
"multiple": false,
|
|
3049
|
+
"options": [
|
|
3050
|
+
"default",
|
|
3051
|
+
"large",
|
|
3052
|
+
"m1-medium",
|
|
3053
|
+
"medium",
|
|
3054
|
+
"m-medium",
|
|
3055
|
+
"m-large"
|
|
3056
|
+
],
|
|
3057
|
+
"type": "option"
|
|
3233
3058
|
},
|
|
3234
|
-
"
|
|
3235
|
-
"
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
"contextDefinition": {
|
|
3239
|
-
"projectId": {},
|
|
3240
|
-
"loggedIn": {}
|
|
3241
|
-
},
|
|
3242
|
-
"isESM": false,
|
|
3243
|
-
"relativePath": [
|
|
3244
|
-
"build",
|
|
3245
|
-
"commands",
|
|
3246
|
-
"channel",
|
|
3247
|
-
"delete.js"
|
|
3248
|
-
]
|
|
3249
|
-
},
|
|
3250
|
-
"channel:edit": {
|
|
3251
|
-
"aliases": [],
|
|
3252
|
-
"args": {
|
|
3253
|
-
"name": {
|
|
3254
|
-
"description": "Name of the channel to edit",
|
|
3255
|
-
"name": "name",
|
|
3256
|
-
"required": false
|
|
3257
|
-
}
|
|
3258
|
-
},
|
|
3259
|
-
"description": "point a channel at a new branch",
|
|
3260
|
-
"flags": {
|
|
3261
|
-
"branch": {
|
|
3262
|
-
"description": "Name of the branch to point to",
|
|
3263
|
-
"name": "branch",
|
|
3059
|
+
"message": {
|
|
3060
|
+
"char": "m",
|
|
3061
|
+
"description": "A short message describing the build",
|
|
3062
|
+
"name": "message",
|
|
3264
3063
|
"hasDynamicHelp": false,
|
|
3265
3064
|
"multiple": false,
|
|
3266
3065
|
"type": "option"
|
|
3267
3066
|
},
|
|
3067
|
+
"build-logger-level": {
|
|
3068
|
+
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
3069
|
+
"name": "build-logger-level",
|
|
3070
|
+
"hasDynamicHelp": false,
|
|
3071
|
+
"multiple": false,
|
|
3072
|
+
"options": [
|
|
3073
|
+
"trace",
|
|
3074
|
+
"debug",
|
|
3075
|
+
"info",
|
|
3076
|
+
"warn",
|
|
3077
|
+
"error",
|
|
3078
|
+
"fatal"
|
|
3079
|
+
],
|
|
3080
|
+
"type": "option"
|
|
3081
|
+
},
|
|
3082
|
+
"freeze-credentials": {
|
|
3083
|
+
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
3084
|
+
"name": "freeze-credentials",
|
|
3085
|
+
"allowNo": false,
|
|
3086
|
+
"type": "boolean"
|
|
3087
|
+
},
|
|
3088
|
+
"verbose-logs": {
|
|
3089
|
+
"description": "Use verbose logs for the build process",
|
|
3090
|
+
"name": "verbose-logs",
|
|
3091
|
+
"allowNo": false,
|
|
3092
|
+
"type": "boolean"
|
|
3093
|
+
},
|
|
3268
3094
|
"json": {
|
|
3269
3095
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3270
3096
|
"name": "json",
|
|
@@ -3281,7 +3107,7 @@
|
|
|
3281
3107
|
},
|
|
3282
3108
|
"hasDynamicHelp": false,
|
|
3283
3109
|
"hiddenAliases": [],
|
|
3284
|
-
"id": "
|
|
3110
|
+
"id": "build",
|
|
3285
3111
|
"pluginAlias": "eas-cli",
|
|
3286
3112
|
"pluginName": "eas-cli",
|
|
3287
3113
|
"pluginType": "core",
|
|
@@ -3328,86 +3154,87 @@
|
|
|
3328
3154
|
}
|
|
3329
3155
|
},
|
|
3330
3156
|
"contextDefinition": {
|
|
3331
|
-
"
|
|
3332
|
-
"
|
|
3157
|
+
"loggedIn": {},
|
|
3158
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3159
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3160
|
+
"projectDir": {},
|
|
3161
|
+
"analytics": {},
|
|
3162
|
+
"vcsClient": {}
|
|
3333
3163
|
},
|
|
3334
3164
|
"isESM": false,
|
|
3335
3165
|
"relativePath": [
|
|
3336
3166
|
"build",
|
|
3337
3167
|
"commands",
|
|
3338
|
-
"
|
|
3339
|
-
"
|
|
3168
|
+
"build",
|
|
3169
|
+
"index.js"
|
|
3340
3170
|
]
|
|
3341
3171
|
},
|
|
3342
|
-
"
|
|
3172
|
+
"build:inspect": {
|
|
3343
3173
|
"aliases": [],
|
|
3344
3174
|
"args": {},
|
|
3345
|
-
"description": "
|
|
3175
|
+
"description": "inspect the state of the project at specific build stages, useful for troubleshooting",
|
|
3346
3176
|
"flags": {
|
|
3347
|
-
"
|
|
3348
|
-
"
|
|
3349
|
-
"name": "
|
|
3177
|
+
"platform": {
|
|
3178
|
+
"char": "p",
|
|
3179
|
+
"name": "platform",
|
|
3350
3180
|
"required": true,
|
|
3351
3181
|
"hasDynamicHelp": false,
|
|
3352
3182
|
"multiple": false,
|
|
3183
|
+
"options": [
|
|
3184
|
+
"android",
|
|
3185
|
+
"ios"
|
|
3186
|
+
],
|
|
3353
3187
|
"type": "option"
|
|
3354
3188
|
},
|
|
3355
|
-
"
|
|
3356
|
-
"
|
|
3357
|
-
"
|
|
3358
|
-
"
|
|
3189
|
+
"profile": {
|
|
3190
|
+
"char": "e",
|
|
3191
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3192
|
+
"name": "profile",
|
|
3359
3193
|
"hasDynamicHelp": false,
|
|
3194
|
+
"helpValue": "PROFILE_NAME",
|
|
3360
3195
|
"multiple": false,
|
|
3361
3196
|
"type": "option"
|
|
3362
3197
|
},
|
|
3363
|
-
"
|
|
3364
|
-
"
|
|
3365
|
-
"
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
],
|
|
3369
|
-
"name": "days",
|
|
3198
|
+
"stage": {
|
|
3199
|
+
"char": "s",
|
|
3200
|
+
"description": "Stage of the build you want to inspect.\n archive - builds the project archive that would be uploaded to EAS when building\n pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.\n post-build - builds the native project and leaves the output directory for inspection",
|
|
3201
|
+
"name": "stage",
|
|
3202
|
+
"required": true,
|
|
3370
3203
|
"hasDynamicHelp": false,
|
|
3371
3204
|
"multiple": false,
|
|
3372
|
-
"
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
"exclusive": [
|
|
3377
|
-
"days"
|
|
3205
|
+
"options": [
|
|
3206
|
+
"archive",
|
|
3207
|
+
"pre-build",
|
|
3208
|
+
"post-build"
|
|
3378
3209
|
],
|
|
3379
|
-
"name": "start",
|
|
3380
|
-
"hasDynamicHelp": false,
|
|
3381
|
-
"multiple": false,
|
|
3382
3210
|
"type": "option"
|
|
3383
3211
|
},
|
|
3384
|
-
"
|
|
3385
|
-
"
|
|
3386
|
-
"
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
"name": "end",
|
|
3212
|
+
"output": {
|
|
3213
|
+
"char": "o",
|
|
3214
|
+
"description": "Output directory.",
|
|
3215
|
+
"name": "output",
|
|
3216
|
+
"required": true,
|
|
3390
3217
|
"hasDynamicHelp": false,
|
|
3218
|
+
"helpValue": "OUTPUT_DIRECTORY",
|
|
3391
3219
|
"multiple": false,
|
|
3392
3220
|
"type": "option"
|
|
3393
3221
|
},
|
|
3394
|
-
"
|
|
3395
|
-
"description": "
|
|
3396
|
-
"name": "
|
|
3222
|
+
"force": {
|
|
3223
|
+
"description": "Delete OUTPUT_DIRECTORY if it already exists.",
|
|
3224
|
+
"name": "force",
|
|
3397
3225
|
"allowNo": false,
|
|
3398
3226
|
"type": "boolean"
|
|
3399
3227
|
},
|
|
3400
|
-
"
|
|
3401
|
-
"
|
|
3402
|
-
"name": "
|
|
3403
|
-
"noCacheDefault": true,
|
|
3228
|
+
"verbose": {
|
|
3229
|
+
"char": "v",
|
|
3230
|
+
"name": "verbose",
|
|
3404
3231
|
"allowNo": false,
|
|
3405
3232
|
"type": "boolean"
|
|
3406
3233
|
}
|
|
3407
3234
|
},
|
|
3408
3235
|
"hasDynamicHelp": false,
|
|
3409
3236
|
"hiddenAliases": [],
|
|
3410
|
-
"id": "
|
|
3237
|
+
"id": "build:inspect",
|
|
3411
3238
|
"pluginAlias": "eas-cli",
|
|
3412
3239
|
"pluginName": "eas-cli",
|
|
3413
3240
|
"pluginType": "core",
|
|
@@ -3454,53 +3281,71 @@
|
|
|
3454
3281
|
}
|
|
3455
3282
|
},
|
|
3456
3283
|
"contextDefinition": {
|
|
3457
|
-
"
|
|
3458
|
-
"
|
|
3284
|
+
"loggedIn": {},
|
|
3285
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3286
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3287
|
+
"projectDir": {},
|
|
3288
|
+
"analytics": {},
|
|
3289
|
+
"vcsClient": {}
|
|
3459
3290
|
},
|
|
3460
3291
|
"isESM": false,
|
|
3461
3292
|
"relativePath": [
|
|
3462
3293
|
"build",
|
|
3463
3294
|
"commands",
|
|
3464
|
-
"
|
|
3465
|
-
"
|
|
3295
|
+
"build",
|
|
3296
|
+
"inspect.js"
|
|
3466
3297
|
]
|
|
3467
3298
|
},
|
|
3468
|
-
"
|
|
3299
|
+
"build:internal": {
|
|
3469
3300
|
"aliases": [],
|
|
3470
3301
|
"args": {},
|
|
3471
|
-
"description": "list all channels",
|
|
3472
3302
|
"flags": {
|
|
3473
|
-
"
|
|
3474
|
-
"
|
|
3475
|
-
"name": "
|
|
3303
|
+
"platform": {
|
|
3304
|
+
"char": "p",
|
|
3305
|
+
"name": "platform",
|
|
3306
|
+
"required": true,
|
|
3476
3307
|
"hasDynamicHelp": false,
|
|
3477
3308
|
"multiple": false,
|
|
3309
|
+
"options": [
|
|
3310
|
+
"android",
|
|
3311
|
+
"ios"
|
|
3312
|
+
],
|
|
3478
3313
|
"type": "option"
|
|
3479
3314
|
},
|
|
3480
|
-
"
|
|
3481
|
-
"
|
|
3482
|
-
"
|
|
3315
|
+
"profile": {
|
|
3316
|
+
"char": "e",
|
|
3317
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3318
|
+
"name": "profile",
|
|
3483
3319
|
"hasDynamicHelp": false,
|
|
3320
|
+
"helpValue": "PROFILE_NAME",
|
|
3484
3321
|
"multiple": false,
|
|
3485
3322
|
"type": "option"
|
|
3486
3323
|
},
|
|
3487
|
-
"
|
|
3488
|
-
"description": "
|
|
3489
|
-
"
|
|
3324
|
+
"auto-submit": {
|
|
3325
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
3326
|
+
"exclusive": [
|
|
3327
|
+
"auto-submit-with-profile"
|
|
3328
|
+
],
|
|
3329
|
+
"name": "auto-submit",
|
|
3490
3330
|
"allowNo": false,
|
|
3491
3331
|
"type": "boolean"
|
|
3492
3332
|
},
|
|
3493
|
-
"
|
|
3494
|
-
"description": "
|
|
3495
|
-
"
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
"
|
|
3333
|
+
"auto-submit-with-profile": {
|
|
3334
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
3335
|
+
"exclusive": [
|
|
3336
|
+
"auto-submit"
|
|
3337
|
+
],
|
|
3338
|
+
"name": "auto-submit-with-profile",
|
|
3339
|
+
"hasDynamicHelp": false,
|
|
3340
|
+
"helpValue": "PROFILE_NAME",
|
|
3341
|
+
"multiple": false,
|
|
3342
|
+
"type": "option"
|
|
3499
3343
|
}
|
|
3500
3344
|
},
|
|
3501
3345
|
"hasDynamicHelp": false,
|
|
3346
|
+
"hidden": true,
|
|
3502
3347
|
"hiddenAliases": [],
|
|
3503
|
-
"id": "
|
|
3348
|
+
"id": "build:internal",
|
|
3504
3349
|
"pluginAlias": "eas-cli",
|
|
3505
3350
|
"pluginName": "eas-cli",
|
|
3506
3351
|
"pluginType": "core",
|
|
@@ -3547,31 +3392,161 @@
|
|
|
3547
3392
|
}
|
|
3548
3393
|
},
|
|
3549
3394
|
"contextDefinition": {
|
|
3550
|
-
"
|
|
3551
|
-
"
|
|
3395
|
+
"loggedIn": {},
|
|
3396
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3397
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3398
|
+
"projectDir": {},
|
|
3399
|
+
"analytics": {},
|
|
3400
|
+
"vcsClient": {}
|
|
3552
3401
|
},
|
|
3553
3402
|
"isESM": false,
|
|
3554
3403
|
"relativePath": [
|
|
3555
3404
|
"build",
|
|
3556
3405
|
"commands",
|
|
3557
|
-
"
|
|
3558
|
-
"
|
|
3406
|
+
"build",
|
|
3407
|
+
"internal.js"
|
|
3559
3408
|
]
|
|
3560
3409
|
},
|
|
3561
|
-
"
|
|
3410
|
+
"build:list": {
|
|
3562
3411
|
"aliases": [],
|
|
3563
|
-
"args": {
|
|
3564
|
-
|
|
3565
|
-
"description": "Name of the channel to edit",
|
|
3566
|
-
"name": "name",
|
|
3567
|
-
"required": false
|
|
3568
|
-
}
|
|
3569
|
-
},
|
|
3570
|
-
"description": "pause a channel to stop it from sending updates",
|
|
3412
|
+
"args": {},
|
|
3413
|
+
"description": "list all builds for your project",
|
|
3571
3414
|
"flags": {
|
|
3572
|
-
"
|
|
3573
|
-
"
|
|
3574
|
-
"name": "
|
|
3415
|
+
"platform": {
|
|
3416
|
+
"char": "p",
|
|
3417
|
+
"name": "platform",
|
|
3418
|
+
"hasDynamicHelp": false,
|
|
3419
|
+
"multiple": false,
|
|
3420
|
+
"options": [
|
|
3421
|
+
"android",
|
|
3422
|
+
"ios",
|
|
3423
|
+
"all"
|
|
3424
|
+
],
|
|
3425
|
+
"type": "option"
|
|
3426
|
+
},
|
|
3427
|
+
"status": {
|
|
3428
|
+
"description": "Filter only builds with the specified status",
|
|
3429
|
+
"name": "status",
|
|
3430
|
+
"hasDynamicHelp": false,
|
|
3431
|
+
"multiple": false,
|
|
3432
|
+
"options": [
|
|
3433
|
+
"new",
|
|
3434
|
+
"in-queue",
|
|
3435
|
+
"in-progress",
|
|
3436
|
+
"pending-cancel",
|
|
3437
|
+
"errored",
|
|
3438
|
+
"finished",
|
|
3439
|
+
"canceled"
|
|
3440
|
+
],
|
|
3441
|
+
"type": "option"
|
|
3442
|
+
},
|
|
3443
|
+
"distribution": {
|
|
3444
|
+
"description": "Filter only builds with the specified distribution type",
|
|
3445
|
+
"name": "distribution",
|
|
3446
|
+
"hasDynamicHelp": false,
|
|
3447
|
+
"multiple": false,
|
|
3448
|
+
"options": [
|
|
3449
|
+
"store",
|
|
3450
|
+
"internal",
|
|
3451
|
+
"simulator"
|
|
3452
|
+
],
|
|
3453
|
+
"type": "option"
|
|
3454
|
+
},
|
|
3455
|
+
"channel": {
|
|
3456
|
+
"name": "channel",
|
|
3457
|
+
"hasDynamicHelp": false,
|
|
3458
|
+
"multiple": false,
|
|
3459
|
+
"type": "option"
|
|
3460
|
+
},
|
|
3461
|
+
"app-version": {
|
|
3462
|
+
"aliases": [
|
|
3463
|
+
"appVersion"
|
|
3464
|
+
],
|
|
3465
|
+
"description": "Filter only builds created with the specified main app version",
|
|
3466
|
+
"name": "app-version",
|
|
3467
|
+
"hasDynamicHelp": false,
|
|
3468
|
+
"multiple": false,
|
|
3469
|
+
"type": "option"
|
|
3470
|
+
},
|
|
3471
|
+
"app-build-version": {
|
|
3472
|
+
"aliases": [
|
|
3473
|
+
"appBuildVersion"
|
|
3474
|
+
],
|
|
3475
|
+
"description": "Filter only builds created with the specified app build version",
|
|
3476
|
+
"name": "app-build-version",
|
|
3477
|
+
"hasDynamicHelp": false,
|
|
3478
|
+
"multiple": false,
|
|
3479
|
+
"type": "option"
|
|
3480
|
+
},
|
|
3481
|
+
"sdk-version": {
|
|
3482
|
+
"aliases": [
|
|
3483
|
+
"sdkVersion"
|
|
3484
|
+
],
|
|
3485
|
+
"description": "Filter only builds created with the specified Expo SDK version",
|
|
3486
|
+
"name": "sdk-version",
|
|
3487
|
+
"hasDynamicHelp": false,
|
|
3488
|
+
"multiple": false,
|
|
3489
|
+
"type": "option"
|
|
3490
|
+
},
|
|
3491
|
+
"runtime-version": {
|
|
3492
|
+
"aliases": [
|
|
3493
|
+
"runtimeVersion"
|
|
3494
|
+
],
|
|
3495
|
+
"description": "Filter only builds created with the specified runtime version",
|
|
3496
|
+
"name": "runtime-version",
|
|
3497
|
+
"hasDynamicHelp": false,
|
|
3498
|
+
"multiple": false,
|
|
3499
|
+
"type": "option"
|
|
3500
|
+
},
|
|
3501
|
+
"app-identifier": {
|
|
3502
|
+
"aliases": [
|
|
3503
|
+
"appIdentifier"
|
|
3504
|
+
],
|
|
3505
|
+
"description": "Filter only builds created with the specified app identifier",
|
|
3506
|
+
"name": "app-identifier",
|
|
3507
|
+
"hasDynamicHelp": false,
|
|
3508
|
+
"multiple": false,
|
|
3509
|
+
"type": "option"
|
|
3510
|
+
},
|
|
3511
|
+
"build-profile": {
|
|
3512
|
+
"aliases": [
|
|
3513
|
+
"profile",
|
|
3514
|
+
"buildProfile"
|
|
3515
|
+
],
|
|
3516
|
+
"char": "e",
|
|
3517
|
+
"description": "Filter only builds created with the specified build profile",
|
|
3518
|
+
"name": "build-profile",
|
|
3519
|
+
"hasDynamicHelp": false,
|
|
3520
|
+
"multiple": false,
|
|
3521
|
+
"type": "option"
|
|
3522
|
+
},
|
|
3523
|
+
"git-commit-hash": {
|
|
3524
|
+
"aliases": [
|
|
3525
|
+
"gitCommitHash"
|
|
3526
|
+
],
|
|
3527
|
+
"description": "Filter only builds created with the specified git commit hash",
|
|
3528
|
+
"name": "git-commit-hash",
|
|
3529
|
+
"hasDynamicHelp": false,
|
|
3530
|
+
"multiple": false,
|
|
3531
|
+
"type": "option"
|
|
3532
|
+
},
|
|
3533
|
+
"fingerprint-hash": {
|
|
3534
|
+
"description": "Filter only builds with the specified fingerprint hash",
|
|
3535
|
+
"name": "fingerprint-hash",
|
|
3536
|
+
"hasDynamicHelp": false,
|
|
3537
|
+
"multiple": false,
|
|
3538
|
+
"type": "option"
|
|
3539
|
+
},
|
|
3540
|
+
"offset": {
|
|
3541
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3542
|
+
"name": "offset",
|
|
3543
|
+
"hasDynamicHelp": false,
|
|
3544
|
+
"multiple": false,
|
|
3545
|
+
"type": "option"
|
|
3546
|
+
},
|
|
3547
|
+
"limit": {
|
|
3548
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
3549
|
+
"name": "limit",
|
|
3575
3550
|
"hasDynamicHelp": false,
|
|
3576
3551
|
"multiple": false,
|
|
3577
3552
|
"type": "option"
|
|
@@ -3588,11 +3563,17 @@
|
|
|
3588
3563
|
"noCacheDefault": true,
|
|
3589
3564
|
"allowNo": false,
|
|
3590
3565
|
"type": "boolean"
|
|
3566
|
+
},
|
|
3567
|
+
"simulator": {
|
|
3568
|
+
"description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
|
|
3569
|
+
"name": "simulator",
|
|
3570
|
+
"allowNo": false,
|
|
3571
|
+
"type": "boolean"
|
|
3591
3572
|
}
|
|
3592
3573
|
},
|
|
3593
3574
|
"hasDynamicHelp": false,
|
|
3594
3575
|
"hiddenAliases": [],
|
|
3595
|
-
"id": "
|
|
3576
|
+
"id": "build:list",
|
|
3596
3577
|
"pluginAlias": "eas-cli",
|
|
3597
3578
|
"pluginName": "eas-cli",
|
|
3598
3579
|
"pluginType": "core",
|
|
@@ -3640,30 +3621,76 @@
|
|
|
3640
3621
|
},
|
|
3641
3622
|
"contextDefinition": {
|
|
3642
3623
|
"projectId": {},
|
|
3643
|
-
"loggedIn": {}
|
|
3624
|
+
"loggedIn": {},
|
|
3625
|
+
"vcsClient": {}
|
|
3644
3626
|
},
|
|
3645
3627
|
"isESM": false,
|
|
3646
3628
|
"relativePath": [
|
|
3647
3629
|
"build",
|
|
3648
3630
|
"commands",
|
|
3649
|
-
"
|
|
3650
|
-
"
|
|
3631
|
+
"build",
|
|
3632
|
+
"list.js"
|
|
3651
3633
|
]
|
|
3652
3634
|
},
|
|
3653
|
-
"
|
|
3635
|
+
"build:resign": {
|
|
3654
3636
|
"aliases": [],
|
|
3655
|
-
"args": {
|
|
3656
|
-
|
|
3657
|
-
"description": "Name of the channel to edit",
|
|
3658
|
-
"name": "name",
|
|
3659
|
-
"required": false
|
|
3660
|
-
}
|
|
3661
|
-
},
|
|
3662
|
-
"description": "resume a channel to start sending updates",
|
|
3637
|
+
"args": {},
|
|
3638
|
+
"description": "re-sign a build archive",
|
|
3663
3639
|
"flags": {
|
|
3664
|
-
"
|
|
3665
|
-
"
|
|
3666
|
-
"name": "
|
|
3640
|
+
"platform": {
|
|
3641
|
+
"char": "p",
|
|
3642
|
+
"name": "platform",
|
|
3643
|
+
"hasDynamicHelp": false,
|
|
3644
|
+
"multiple": false,
|
|
3645
|
+
"options": [
|
|
3646
|
+
"android",
|
|
3647
|
+
"ios"
|
|
3648
|
+
],
|
|
3649
|
+
"type": "option"
|
|
3650
|
+
},
|
|
3651
|
+
"target-profile": {
|
|
3652
|
+
"aliases": [
|
|
3653
|
+
"profile"
|
|
3654
|
+
],
|
|
3655
|
+
"char": "e",
|
|
3656
|
+
"description": "Name of the target build profile from eas.json. Credentials and environment variables from this profile will be used when re-signing. Defaults to \"production\" if defined in eas.json.",
|
|
3657
|
+
"name": "target-profile",
|
|
3658
|
+
"hasDynamicHelp": false,
|
|
3659
|
+
"helpValue": "PROFILE_NAME",
|
|
3660
|
+
"multiple": false,
|
|
3661
|
+
"type": "option"
|
|
3662
|
+
},
|
|
3663
|
+
"source-profile": {
|
|
3664
|
+
"description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
|
|
3665
|
+
"name": "source-profile",
|
|
3666
|
+
"hasDynamicHelp": false,
|
|
3667
|
+
"helpValue": "PROFILE_NAME",
|
|
3668
|
+
"multiple": false,
|
|
3669
|
+
"type": "option"
|
|
3670
|
+
},
|
|
3671
|
+
"wait": {
|
|
3672
|
+
"description": "Wait for build(s) to complete.",
|
|
3673
|
+
"name": "wait",
|
|
3674
|
+
"allowNo": true,
|
|
3675
|
+
"type": "boolean"
|
|
3676
|
+
},
|
|
3677
|
+
"id": {
|
|
3678
|
+
"description": "ID of the build to re-sign.",
|
|
3679
|
+
"name": "id",
|
|
3680
|
+
"hasDynamicHelp": false,
|
|
3681
|
+
"multiple": false,
|
|
3682
|
+
"type": "option"
|
|
3683
|
+
},
|
|
3684
|
+
"offset": {
|
|
3685
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3686
|
+
"name": "offset",
|
|
3687
|
+
"hasDynamicHelp": false,
|
|
3688
|
+
"multiple": false,
|
|
3689
|
+
"type": "option"
|
|
3690
|
+
},
|
|
3691
|
+
"limit": {
|
|
3692
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3693
|
+
"name": "limit",
|
|
3667
3694
|
"hasDynamicHelp": false,
|
|
3668
3695
|
"multiple": false,
|
|
3669
3696
|
"type": "option"
|
|
@@ -3684,7 +3711,7 @@
|
|
|
3684
3711
|
},
|
|
3685
3712
|
"hasDynamicHelp": false,
|
|
3686
3713
|
"hiddenAliases": [],
|
|
3687
|
-
"id": "
|
|
3714
|
+
"id": "build:resign",
|
|
3688
3715
|
"pluginAlias": "eas-cli",
|
|
3689
3716
|
"pluginName": "eas-cli",
|
|
3690
3717
|
"pluginType": "core",
|
|
@@ -3731,121 +3758,116 @@
|
|
|
3731
3758
|
}
|
|
3732
3759
|
},
|
|
3733
3760
|
"contextDefinition": {
|
|
3734
|
-
"
|
|
3735
|
-
"
|
|
3761
|
+
"loggedIn": {},
|
|
3762
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3763
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3764
|
+
"projectDir": {},
|
|
3765
|
+
"analytics": {},
|
|
3766
|
+
"vcsClient": {}
|
|
3736
3767
|
},
|
|
3737
3768
|
"isESM": false,
|
|
3738
3769
|
"relativePath": [
|
|
3739
3770
|
"build",
|
|
3740
3771
|
"commands",
|
|
3741
|
-
"
|
|
3742
|
-
"
|
|
3772
|
+
"build",
|
|
3773
|
+
"resign.js"
|
|
3743
3774
|
]
|
|
3744
3775
|
},
|
|
3745
|
-
"
|
|
3776
|
+
"build:run": {
|
|
3746
3777
|
"aliases": [],
|
|
3747
|
-
"args": {
|
|
3748
|
-
|
|
3749
|
-
"description": "channel on which the rollout should be done",
|
|
3750
|
-
"name": "channel"
|
|
3751
|
-
}
|
|
3752
|
-
},
|
|
3753
|
-
"description": "Roll a new branch out on a channel incrementally.",
|
|
3778
|
+
"args": {},
|
|
3779
|
+
"description": "run simulator/emulator builds from eas-cli",
|
|
3754
3780
|
"flags": {
|
|
3755
|
-
"
|
|
3756
|
-
"description": "
|
|
3757
|
-
"
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
"flags": [
|
|
3762
|
-
{
|
|
3763
|
-
"name": "percent"
|
|
3764
|
-
},
|
|
3765
|
-
{
|
|
3766
|
-
"name": "outcome"
|
|
3767
|
-
},
|
|
3768
|
-
{
|
|
3769
|
-
"name": "branch"
|
|
3770
|
-
},
|
|
3771
|
-
{
|
|
3772
|
-
"name": "runtime-version"
|
|
3773
|
-
}
|
|
3774
|
-
]
|
|
3775
|
-
}
|
|
3781
|
+
"latest": {
|
|
3782
|
+
"description": "Run the latest simulator/emulator build for specified platform",
|
|
3783
|
+
"exclusive": [
|
|
3784
|
+
"id",
|
|
3785
|
+
"path",
|
|
3786
|
+
"url"
|
|
3776
3787
|
],
|
|
3777
|
-
"
|
|
3788
|
+
"name": "latest",
|
|
3789
|
+
"allowNo": false,
|
|
3790
|
+
"type": "boolean"
|
|
3791
|
+
},
|
|
3792
|
+
"url": {
|
|
3793
|
+
"description": "Simulator/Emulator build archive url",
|
|
3794
|
+
"exclusive": [
|
|
3795
|
+
"latest",
|
|
3796
|
+
"id",
|
|
3797
|
+
"path"
|
|
3798
|
+
],
|
|
3799
|
+
"name": "url",
|
|
3778
3800
|
"hasDynamicHelp": false,
|
|
3779
3801
|
"multiple": false,
|
|
3780
|
-
"
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3802
|
+
"type": "option"
|
|
3803
|
+
},
|
|
3804
|
+
"path": {
|
|
3805
|
+
"description": "Path to the simulator/emulator build archive or app",
|
|
3806
|
+
"exclusive": [
|
|
3807
|
+
"latest",
|
|
3808
|
+
"id",
|
|
3809
|
+
"url"
|
|
3785
3810
|
],
|
|
3811
|
+
"name": "path",
|
|
3812
|
+
"hasDynamicHelp": false,
|
|
3813
|
+
"multiple": false,
|
|
3786
3814
|
"type": "option"
|
|
3787
3815
|
},
|
|
3788
|
-
"
|
|
3789
|
-
"description": "
|
|
3790
|
-
"
|
|
3791
|
-
|
|
3816
|
+
"id": {
|
|
3817
|
+
"description": "ID of the simulator/emulator build to run",
|
|
3818
|
+
"exclusive": [
|
|
3819
|
+
"latest, path, url"
|
|
3820
|
+
],
|
|
3821
|
+
"name": "id",
|
|
3792
3822
|
"hasDynamicHelp": false,
|
|
3793
3823
|
"multiple": false,
|
|
3794
3824
|
"type": "option"
|
|
3795
3825
|
},
|
|
3796
|
-
"
|
|
3797
|
-
"
|
|
3798
|
-
"name": "
|
|
3799
|
-
"required": false,
|
|
3826
|
+
"platform": {
|
|
3827
|
+
"char": "p",
|
|
3828
|
+
"name": "platform",
|
|
3800
3829
|
"hasDynamicHelp": false,
|
|
3801
3830
|
"multiple": false,
|
|
3802
3831
|
"options": [
|
|
3803
|
-
"
|
|
3804
|
-
"
|
|
3832
|
+
"android",
|
|
3833
|
+
"ios"
|
|
3805
3834
|
],
|
|
3806
3835
|
"type": "option"
|
|
3807
3836
|
},
|
|
3808
|
-
"
|
|
3809
|
-
"
|
|
3810
|
-
"
|
|
3811
|
-
"
|
|
3837
|
+
"profile": {
|
|
3838
|
+
"char": "e",
|
|
3839
|
+
"description": "Name of the build profile used to create the build to run. When specified, only builds created with the specified build profile will be queried.",
|
|
3840
|
+
"name": "profile",
|
|
3812
3841
|
"hasDynamicHelp": false,
|
|
3842
|
+
"helpValue": "PROFILE_NAME",
|
|
3813
3843
|
"multiple": false,
|
|
3814
3844
|
"type": "option"
|
|
3815
3845
|
},
|
|
3816
|
-
"
|
|
3817
|
-
"description": "
|
|
3818
|
-
"name": "
|
|
3819
|
-
"required": false,
|
|
3846
|
+
"simulator": {
|
|
3847
|
+
"description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
|
|
3848
|
+
"name": "simulator",
|
|
3820
3849
|
"hasDynamicHelp": false,
|
|
3821
3850
|
"multiple": false,
|
|
3822
3851
|
"type": "option"
|
|
3823
3852
|
},
|
|
3824
|
-
"
|
|
3825
|
-
"description": "
|
|
3826
|
-
"name": "
|
|
3827
|
-
"required": false,
|
|
3853
|
+
"offset": {
|
|
3854
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3855
|
+
"name": "offset",
|
|
3828
3856
|
"hasDynamicHelp": false,
|
|
3829
3857
|
"multiple": false,
|
|
3830
3858
|
"type": "option"
|
|
3831
3859
|
},
|
|
3832
|
-
"
|
|
3833
|
-
"description": "
|
|
3834
|
-
"name": "
|
|
3835
|
-
"
|
|
3836
|
-
"
|
|
3837
|
-
|
|
3838
|
-
"non-interactive": {
|
|
3839
|
-
"description": "Run the command in non-interactive mode.",
|
|
3840
|
-
"name": "non-interactive",
|
|
3841
|
-
"noCacheDefault": true,
|
|
3842
|
-
"allowNo": false,
|
|
3843
|
-
"type": "boolean"
|
|
3860
|
+
"limit": {
|
|
3861
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3862
|
+
"name": "limit",
|
|
3863
|
+
"hasDynamicHelp": false,
|
|
3864
|
+
"multiple": false,
|
|
3865
|
+
"type": "option"
|
|
3844
3866
|
}
|
|
3845
3867
|
},
|
|
3846
3868
|
"hasDynamicHelp": false,
|
|
3847
3869
|
"hiddenAliases": [],
|
|
3848
|
-
"id": "
|
|
3870
|
+
"id": "build:run",
|
|
3849
3871
|
"pluginAlias": "eas-cli",
|
|
3850
3872
|
"pluginName": "eas-cli",
|
|
3851
3873
|
"pluginType": "core",
|
|
@@ -3893,59 +3915,36 @@
|
|
|
3893
3915
|
},
|
|
3894
3916
|
"contextDefinition": {
|
|
3895
3917
|
"loggedIn": {},
|
|
3896
|
-
"
|
|
3918
|
+
"projectId": {},
|
|
3897
3919
|
"vcsClient": {}
|
|
3898
3920
|
},
|
|
3899
3921
|
"isESM": false,
|
|
3900
3922
|
"relativePath": [
|
|
3901
3923
|
"build",
|
|
3902
3924
|
"commands",
|
|
3903
|
-
"
|
|
3904
|
-
"
|
|
3925
|
+
"build",
|
|
3926
|
+
"run.js"
|
|
3905
3927
|
]
|
|
3906
3928
|
},
|
|
3907
|
-
"
|
|
3929
|
+
"build:view": {
|
|
3908
3930
|
"aliases": [],
|
|
3909
3931
|
"args": {
|
|
3910
|
-
"
|
|
3911
|
-
"
|
|
3912
|
-
"name": "name",
|
|
3913
|
-
"required": false
|
|
3932
|
+
"BUILD_ID": {
|
|
3933
|
+
"name": "BUILD_ID"
|
|
3914
3934
|
}
|
|
3915
3935
|
},
|
|
3916
|
-
"description": "view a
|
|
3936
|
+
"description": "view a build for your project",
|
|
3917
3937
|
"flags": {
|
|
3918
3938
|
"json": {
|
|
3919
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
3939
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
3920
3940
|
"name": "json",
|
|
3921
3941
|
"allowNo": false,
|
|
3922
3942
|
"type": "boolean"
|
|
3923
|
-
},
|
|
3924
|
-
"non-interactive": {
|
|
3925
|
-
"description": "Run the command in non-interactive mode.",
|
|
3926
|
-
"name": "non-interactive",
|
|
3927
|
-
"noCacheDefault": true,
|
|
3928
|
-
"allowNo": false,
|
|
3929
|
-
"type": "boolean"
|
|
3930
|
-
},
|
|
3931
|
-
"offset": {
|
|
3932
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3933
|
-
"name": "offset",
|
|
3934
|
-
"hasDynamicHelp": false,
|
|
3935
|
-
"multiple": false,
|
|
3936
|
-
"type": "option"
|
|
3937
|
-
},
|
|
3938
|
-
"limit": {
|
|
3939
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3940
|
-
"name": "limit",
|
|
3941
|
-
"hasDynamicHelp": false,
|
|
3942
|
-
"multiple": false,
|
|
3943
|
-
"type": "option"
|
|
3944
3943
|
}
|
|
3945
3944
|
},
|
|
3946
3945
|
"hasDynamicHelp": false,
|
|
3947
3946
|
"hiddenAliases": [],
|
|
3948
|
-
"id": "
|
|
3947
|
+
"id": "build:view",
|
|
3949
3948
|
"pluginAlias": "eas-cli",
|
|
3950
3949
|
"pluginName": "eas-cli",
|
|
3951
3950
|
"pluginType": "core",
|
|
@@ -3993,13 +3992,14 @@
|
|
|
3993
3992
|
},
|
|
3994
3993
|
"contextDefinition": {
|
|
3995
3994
|
"projectId": {},
|
|
3996
|
-
"loggedIn": {}
|
|
3995
|
+
"loggedIn": {},
|
|
3996
|
+
"vcsClient": {}
|
|
3997
3997
|
},
|
|
3998
3998
|
"isESM": false,
|
|
3999
3999
|
"relativePath": [
|
|
4000
4000
|
"build",
|
|
4001
4001
|
"commands",
|
|
4002
|
-
"
|
|
4002
|
+
"build",
|
|
4003
4003
|
"view.js"
|
|
4004
4004
|
]
|
|
4005
4005
|
},
|
|
@@ -7392,35 +7392,70 @@
|
|
|
7392
7392
|
"ServerSideEnvironmentVariables": {
|
|
7393
7393
|
"getServerSideEnvironmentVariablesAsync": {}
|
|
7394
7394
|
},
|
|
7395
|
-
"ProjectId": {
|
|
7396
|
-
"projectId": {}
|
|
7397
|
-
}
|
|
7398
|
-
},
|
|
7399
|
-
"contextDefinition": {
|
|
7400
|
-
"loggedIn": {},
|
|
7401
|
-
"analytics": {}
|
|
7402
|
-
},
|
|
7403
|
-
"isESM": false,
|
|
7404
|
-
"relativePath": [
|
|
7405
|
-
"build",
|
|
7406
|
-
"commands",
|
|
7407
|
-
"project",
|
|
7408
|
-
"onboarding.js"
|
|
7409
|
-
]
|
|
7410
|
-
},
|
|
7411
|
-
"
|
|
7412
|
-
"aliases": [],
|
|
7413
|
-
"args": {},
|
|
7414
|
-
"description": "
|
|
7415
|
-
"flags": {
|
|
7416
|
-
"
|
|
7417
|
-
"description": "
|
|
7418
|
-
"name": "
|
|
7419
|
-
"
|
|
7395
|
+
"ProjectId": {
|
|
7396
|
+
"projectId": {}
|
|
7397
|
+
}
|
|
7398
|
+
},
|
|
7399
|
+
"contextDefinition": {
|
|
7400
|
+
"loggedIn": {},
|
|
7401
|
+
"analytics": {}
|
|
7402
|
+
},
|
|
7403
|
+
"isESM": false,
|
|
7404
|
+
"relativePath": [
|
|
7405
|
+
"build",
|
|
7406
|
+
"commands",
|
|
7407
|
+
"project",
|
|
7408
|
+
"onboarding.js"
|
|
7409
|
+
]
|
|
7410
|
+
},
|
|
7411
|
+
"secret:create": {
|
|
7412
|
+
"aliases": [],
|
|
7413
|
+
"args": {},
|
|
7414
|
+
"description": "create an environment secret on the current project or owner account",
|
|
7415
|
+
"flags": {
|
|
7416
|
+
"scope": {
|
|
7417
|
+
"description": "Scope for the secret",
|
|
7418
|
+
"name": "scope",
|
|
7419
|
+
"default": "project",
|
|
7420
|
+
"hasDynamicHelp": false,
|
|
7421
|
+
"multiple": false,
|
|
7422
|
+
"options": [
|
|
7423
|
+
"account",
|
|
7424
|
+
"project"
|
|
7425
|
+
],
|
|
7426
|
+
"type": "option"
|
|
7427
|
+
},
|
|
7428
|
+
"name": {
|
|
7429
|
+
"description": "Name of the secret",
|
|
7430
|
+
"name": "name",
|
|
7431
|
+
"hasDynamicHelp": false,
|
|
7432
|
+
"multiple": false,
|
|
7433
|
+
"type": "option"
|
|
7434
|
+
},
|
|
7435
|
+
"value": {
|
|
7436
|
+
"description": "Text value or path to a file to store in the secret",
|
|
7437
|
+
"name": "value",
|
|
7438
|
+
"hasDynamicHelp": false,
|
|
7439
|
+
"multiple": false,
|
|
7440
|
+
"type": "option"
|
|
7441
|
+
},
|
|
7442
|
+
"type": {
|
|
7443
|
+
"description": "The type of secret",
|
|
7444
|
+
"name": "type",
|
|
7420
7445
|
"hasDynamicHelp": false,
|
|
7421
7446
|
"multiple": false,
|
|
7447
|
+
"options": [
|
|
7448
|
+
"string",
|
|
7449
|
+
"file"
|
|
7450
|
+
],
|
|
7422
7451
|
"type": "option"
|
|
7423
7452
|
},
|
|
7453
|
+
"force": {
|
|
7454
|
+
"description": "Delete and recreate existing secrets",
|
|
7455
|
+
"name": "force",
|
|
7456
|
+
"allowNo": false,
|
|
7457
|
+
"type": "boolean"
|
|
7458
|
+
},
|
|
7424
7459
|
"non-interactive": {
|
|
7425
7460
|
"description": "Run the command in non-interactive mode.",
|
|
7426
7461
|
"name": "non-interactive",
|
|
@@ -7432,7 +7467,7 @@
|
|
|
7432
7467
|
"hasDynamicHelp": false,
|
|
7433
7468
|
"hidden": true,
|
|
7434
7469
|
"hiddenAliases": [],
|
|
7435
|
-
"id": "
|
|
7470
|
+
"id": "secret:create",
|
|
7436
7471
|
"pluginAlias": "eas-cli",
|
|
7437
7472
|
"pluginName": "eas-cli",
|
|
7438
7473
|
"pluginType": "core",
|
|
@@ -7479,48 +7514,25 @@
|
|
|
7479
7514
|
}
|
|
7480
7515
|
},
|
|
7481
7516
|
"contextDefinition": {
|
|
7517
|
+
"projectId": {},
|
|
7482
7518
|
"loggedIn": {}
|
|
7483
7519
|
},
|
|
7484
7520
|
"isESM": false,
|
|
7485
7521
|
"relativePath": [
|
|
7486
7522
|
"build",
|
|
7487
7523
|
"commands",
|
|
7488
|
-
"
|
|
7489
|
-
"
|
|
7524
|
+
"secret",
|
|
7525
|
+
"create.js"
|
|
7490
7526
|
]
|
|
7491
7527
|
},
|
|
7492
|
-
"
|
|
7528
|
+
"secret:delete": {
|
|
7493
7529
|
"aliases": [],
|
|
7494
7530
|
"args": {},
|
|
7495
|
-
"description": "
|
|
7531
|
+
"description": "delete an environment secret by ID",
|
|
7496
7532
|
"flags": {
|
|
7497
|
-
"
|
|
7498
|
-
"description": "
|
|
7499
|
-
"name": "
|
|
7500
|
-
"required": true,
|
|
7501
|
-
"hasDynamicHelp": false,
|
|
7502
|
-
"multiple": false,
|
|
7503
|
-
"options": [
|
|
7504
|
-
"android",
|
|
7505
|
-
"ios"
|
|
7506
|
-
],
|
|
7507
|
-
"type": "option"
|
|
7508
|
-
},
|
|
7509
|
-
"type": {
|
|
7510
|
-
"description": "Type of device run session to create",
|
|
7511
|
-
"name": "type",
|
|
7512
|
-
"default": "agent-device",
|
|
7513
|
-
"hasDynamicHelp": false,
|
|
7514
|
-
"multiple": false,
|
|
7515
|
-
"options": [
|
|
7516
|
-
"agent-device",
|
|
7517
|
-
"serve-sim"
|
|
7518
|
-
],
|
|
7519
|
-
"type": "option"
|
|
7520
|
-
},
|
|
7521
|
-
"package-version": {
|
|
7522
|
-
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7523
|
-
"name": "package-version",
|
|
7533
|
+
"id": {
|
|
7534
|
+
"description": "ID of the secret to delete",
|
|
7535
|
+
"name": "id",
|
|
7524
7536
|
"hasDynamicHelp": false,
|
|
7525
7537
|
"multiple": false,
|
|
7526
7538
|
"type": "option"
|
|
@@ -7536,7 +7548,7 @@
|
|
|
7536
7548
|
"hasDynamicHelp": false,
|
|
7537
7549
|
"hidden": true,
|
|
7538
7550
|
"hiddenAliases": [],
|
|
7539
|
-
"id": "
|
|
7551
|
+
"id": "secret:delete",
|
|
7540
7552
|
"pluginAlias": "eas-cli",
|
|
7541
7553
|
"pluginName": "eas-cli",
|
|
7542
7554
|
"pluginType": "core",
|
|
@@ -7590,35 +7602,19 @@
|
|
|
7590
7602
|
"relativePath": [
|
|
7591
7603
|
"build",
|
|
7592
7604
|
"commands",
|
|
7593
|
-
"
|
|
7594
|
-
"
|
|
7605
|
+
"secret",
|
|
7606
|
+
"delete.js"
|
|
7595
7607
|
]
|
|
7596
7608
|
},
|
|
7597
|
-
"
|
|
7609
|
+
"secret:list": {
|
|
7598
7610
|
"aliases": [],
|
|
7599
7611
|
"args": {},
|
|
7600
|
-
"description": "
|
|
7601
|
-
"flags": {
|
|
7602
|
-
"id": {
|
|
7603
|
-
"description": "Device run session ID",
|
|
7604
|
-
"name": "id",
|
|
7605
|
-
"required": true,
|
|
7606
|
-
"hasDynamicHelp": false,
|
|
7607
|
-
"multiple": false,
|
|
7608
|
-
"type": "option"
|
|
7609
|
-
},
|
|
7610
|
-
"non-interactive": {
|
|
7611
|
-
"description": "Run the command in non-interactive mode.",
|
|
7612
|
-
"name": "non-interactive",
|
|
7613
|
-
"noCacheDefault": true,
|
|
7614
|
-
"allowNo": false,
|
|
7615
|
-
"type": "boolean"
|
|
7616
|
-
}
|
|
7617
|
-
},
|
|
7612
|
+
"description": "list environment secrets available for your current app",
|
|
7613
|
+
"flags": {},
|
|
7618
7614
|
"hasDynamicHelp": false,
|
|
7619
7615
|
"hidden": true,
|
|
7620
7616
|
"hiddenAliases": [],
|
|
7621
|
-
"id": "
|
|
7617
|
+
"id": "secret:list",
|
|
7622
7618
|
"pluginAlias": "eas-cli",
|
|
7623
7619
|
"pluginName": "eas-cli",
|
|
7624
7620
|
"pluginType": "core",
|
|
@@ -7665,23 +7661,24 @@
|
|
|
7665
7661
|
}
|
|
7666
7662
|
},
|
|
7667
7663
|
"contextDefinition": {
|
|
7664
|
+
"projectId": {},
|
|
7668
7665
|
"loggedIn": {}
|
|
7669
7666
|
},
|
|
7670
7667
|
"isESM": false,
|
|
7671
7668
|
"relativePath": [
|
|
7672
7669
|
"build",
|
|
7673
7670
|
"commands",
|
|
7674
|
-
"
|
|
7675
|
-
"
|
|
7671
|
+
"secret",
|
|
7672
|
+
"list.js"
|
|
7676
7673
|
]
|
|
7677
7674
|
},
|
|
7678
|
-
"secret:
|
|
7675
|
+
"secret:push": {
|
|
7679
7676
|
"aliases": [],
|
|
7680
7677
|
"args": {},
|
|
7681
|
-
"description": "
|
|
7678
|
+
"description": "read environment secrets from env file and store on the server",
|
|
7682
7679
|
"flags": {
|
|
7683
7680
|
"scope": {
|
|
7684
|
-
"description": "Scope for the
|
|
7681
|
+
"description": "Scope for the secrets",
|
|
7685
7682
|
"name": "scope",
|
|
7686
7683
|
"default": "project",
|
|
7687
7684
|
"hasDynamicHelp": false,
|
|
@@ -7692,29 +7689,11 @@
|
|
|
7692
7689
|
],
|
|
7693
7690
|
"type": "option"
|
|
7694
7691
|
},
|
|
7695
|
-
"
|
|
7696
|
-
"description": "
|
|
7697
|
-
"name": "
|
|
7698
|
-
"hasDynamicHelp": false,
|
|
7699
|
-
"multiple": false,
|
|
7700
|
-
"type": "option"
|
|
7701
|
-
},
|
|
7702
|
-
"value": {
|
|
7703
|
-
"description": "Text value or path to a file to store in the secret",
|
|
7704
|
-
"name": "value",
|
|
7705
|
-
"hasDynamicHelp": false,
|
|
7706
|
-
"multiple": false,
|
|
7707
|
-
"type": "option"
|
|
7708
|
-
},
|
|
7709
|
-
"type": {
|
|
7710
|
-
"description": "The type of secret",
|
|
7711
|
-
"name": "type",
|
|
7692
|
+
"env-file": {
|
|
7693
|
+
"description": "Env file with secrets",
|
|
7694
|
+
"name": "env-file",
|
|
7712
7695
|
"hasDynamicHelp": false,
|
|
7713
7696
|
"multiple": false,
|
|
7714
|
-
"options": [
|
|
7715
|
-
"string",
|
|
7716
|
-
"file"
|
|
7717
|
-
],
|
|
7718
7697
|
"type": "option"
|
|
7719
7698
|
},
|
|
7720
7699
|
"force": {
|
|
@@ -7734,7 +7713,7 @@
|
|
|
7734
7713
|
"hasDynamicHelp": false,
|
|
7735
7714
|
"hidden": true,
|
|
7736
7715
|
"hiddenAliases": [],
|
|
7737
|
-
"id": "secret:
|
|
7716
|
+
"id": "secret:push",
|
|
7738
7717
|
"pluginAlias": "eas-cli",
|
|
7739
7718
|
"pluginName": "eas-cli",
|
|
7740
7719
|
"pluginType": "core",
|
|
@@ -7789,17 +7768,18 @@
|
|
|
7789
7768
|
"build",
|
|
7790
7769
|
"commands",
|
|
7791
7770
|
"secret",
|
|
7792
|
-
"
|
|
7771
|
+
"push.js"
|
|
7793
7772
|
]
|
|
7794
7773
|
},
|
|
7795
|
-
"
|
|
7774
|
+
"simulator:get": {
|
|
7796
7775
|
"aliases": [],
|
|
7797
7776
|
"args": {},
|
|
7798
|
-
"description": "
|
|
7777
|
+
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7799
7778
|
"flags": {
|
|
7800
7779
|
"id": {
|
|
7801
|
-
"description": "
|
|
7780
|
+
"description": "Device run session ID",
|
|
7802
7781
|
"name": "id",
|
|
7782
|
+
"required": true,
|
|
7803
7783
|
"hasDynamicHelp": false,
|
|
7804
7784
|
"multiple": false,
|
|
7805
7785
|
"type": "option"
|
|
@@ -7815,7 +7795,7 @@
|
|
|
7815
7795
|
"hasDynamicHelp": false,
|
|
7816
7796
|
"hidden": true,
|
|
7817
7797
|
"hiddenAliases": [],
|
|
7818
|
-
"id": "
|
|
7798
|
+
"id": "simulator:get",
|
|
7819
7799
|
"pluginAlias": "eas-cli",
|
|
7820
7800
|
"pluginName": "eas-cli",
|
|
7821
7801
|
"pluginType": "core",
|
|
@@ -7862,26 +7842,71 @@
|
|
|
7862
7842
|
}
|
|
7863
7843
|
},
|
|
7864
7844
|
"contextDefinition": {
|
|
7865
|
-
"projectId": {},
|
|
7866
7845
|
"loggedIn": {}
|
|
7867
7846
|
},
|
|
7868
7847
|
"isESM": false,
|
|
7869
7848
|
"relativePath": [
|
|
7870
7849
|
"build",
|
|
7871
7850
|
"commands",
|
|
7872
|
-
"
|
|
7873
|
-
"
|
|
7851
|
+
"simulator",
|
|
7852
|
+
"get.js"
|
|
7874
7853
|
]
|
|
7875
7854
|
},
|
|
7876
|
-
"
|
|
7855
|
+
"simulator:start": {
|
|
7877
7856
|
"aliases": [],
|
|
7878
7857
|
"args": {},
|
|
7879
|
-
"description": "
|
|
7880
|
-
"flags": {
|
|
7858
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7859
|
+
"flags": {
|
|
7860
|
+
"platform": {
|
|
7861
|
+
"description": "Device platform",
|
|
7862
|
+
"name": "platform",
|
|
7863
|
+
"required": true,
|
|
7864
|
+
"hasDynamicHelp": false,
|
|
7865
|
+
"multiple": false,
|
|
7866
|
+
"options": [
|
|
7867
|
+
"android",
|
|
7868
|
+
"ios"
|
|
7869
|
+
],
|
|
7870
|
+
"type": "option"
|
|
7871
|
+
},
|
|
7872
|
+
"type": {
|
|
7873
|
+
"description": "Type of device run session to create",
|
|
7874
|
+
"name": "type",
|
|
7875
|
+
"default": "agent-device",
|
|
7876
|
+
"hasDynamicHelp": false,
|
|
7877
|
+
"multiple": false,
|
|
7878
|
+
"options": [
|
|
7879
|
+
"agent-device",
|
|
7880
|
+
"argent",
|
|
7881
|
+
"serve-sim"
|
|
7882
|
+
],
|
|
7883
|
+
"type": "option"
|
|
7884
|
+
},
|
|
7885
|
+
"package-version": {
|
|
7886
|
+
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7887
|
+
"name": "package-version",
|
|
7888
|
+
"hasDynamicHelp": false,
|
|
7889
|
+
"multiple": false,
|
|
7890
|
+
"type": "option"
|
|
7891
|
+
},
|
|
7892
|
+
"json": {
|
|
7893
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
7894
|
+
"name": "json",
|
|
7895
|
+
"allowNo": false,
|
|
7896
|
+
"type": "boolean"
|
|
7897
|
+
},
|
|
7898
|
+
"non-interactive": {
|
|
7899
|
+
"description": "Run the command in non-interactive mode.",
|
|
7900
|
+
"name": "non-interactive",
|
|
7901
|
+
"noCacheDefault": true,
|
|
7902
|
+
"allowNo": false,
|
|
7903
|
+
"type": "boolean"
|
|
7904
|
+
}
|
|
7905
|
+
},
|
|
7881
7906
|
"hasDynamicHelp": false,
|
|
7882
7907
|
"hidden": true,
|
|
7883
7908
|
"hiddenAliases": [],
|
|
7884
|
-
"id": "
|
|
7909
|
+
"id": "simulator:start",
|
|
7885
7910
|
"pluginAlias": "eas-cli",
|
|
7886
7911
|
"pluginName": "eas-cli",
|
|
7887
7912
|
"pluginType": "core",
|
|
@@ -7935,40 +7960,23 @@
|
|
|
7935
7960
|
"relativePath": [
|
|
7936
7961
|
"build",
|
|
7937
7962
|
"commands",
|
|
7938
|
-
"
|
|
7939
|
-
"
|
|
7963
|
+
"simulator",
|
|
7964
|
+
"start.js"
|
|
7940
7965
|
]
|
|
7941
7966
|
},
|
|
7942
|
-
"
|
|
7967
|
+
"simulator:stop": {
|
|
7943
7968
|
"aliases": [],
|
|
7944
7969
|
"args": {},
|
|
7945
|
-
"description": "
|
|
7970
|
+
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
7946
7971
|
"flags": {
|
|
7947
|
-
"
|
|
7948
|
-
"description": "
|
|
7949
|
-
"name": "
|
|
7950
|
-
"
|
|
7951
|
-
"hasDynamicHelp": false,
|
|
7952
|
-
"multiple": false,
|
|
7953
|
-
"options": [
|
|
7954
|
-
"account",
|
|
7955
|
-
"project"
|
|
7956
|
-
],
|
|
7957
|
-
"type": "option"
|
|
7958
|
-
},
|
|
7959
|
-
"env-file": {
|
|
7960
|
-
"description": "Env file with secrets",
|
|
7961
|
-
"name": "env-file",
|
|
7972
|
+
"id": {
|
|
7973
|
+
"description": "Device run session ID",
|
|
7974
|
+
"name": "id",
|
|
7975
|
+
"required": true,
|
|
7962
7976
|
"hasDynamicHelp": false,
|
|
7963
7977
|
"multiple": false,
|
|
7964
7978
|
"type": "option"
|
|
7965
7979
|
},
|
|
7966
|
-
"force": {
|
|
7967
|
-
"description": "Delete and recreate existing secrets",
|
|
7968
|
-
"name": "force",
|
|
7969
|
-
"allowNo": false,
|
|
7970
|
-
"type": "boolean"
|
|
7971
|
-
},
|
|
7972
7980
|
"non-interactive": {
|
|
7973
7981
|
"description": "Run the command in non-interactive mode.",
|
|
7974
7982
|
"name": "non-interactive",
|
|
@@ -7980,7 +7988,7 @@
|
|
|
7980
7988
|
"hasDynamicHelp": false,
|
|
7981
7989
|
"hidden": true,
|
|
7982
7990
|
"hiddenAliases": [],
|
|
7983
|
-
"id": "
|
|
7991
|
+
"id": "simulator:stop",
|
|
7984
7992
|
"pluginAlias": "eas-cli",
|
|
7985
7993
|
"pluginName": "eas-cli",
|
|
7986
7994
|
"pluginType": "core",
|
|
@@ -8027,15 +8035,14 @@
|
|
|
8027
8035
|
}
|
|
8028
8036
|
},
|
|
8029
8037
|
"contextDefinition": {
|
|
8030
|
-
"projectId": {},
|
|
8031
8038
|
"loggedIn": {}
|
|
8032
8039
|
},
|
|
8033
8040
|
"isESM": false,
|
|
8034
8041
|
"relativePath": [
|
|
8035
8042
|
"build",
|
|
8036
8043
|
"commands",
|
|
8037
|
-
"
|
|
8038
|
-
"
|
|
8044
|
+
"simulator",
|
|
8045
|
+
"stop.js"
|
|
8039
8046
|
]
|
|
8040
8047
|
},
|
|
8041
8048
|
"submit:internal": {
|
|
@@ -12021,5 +12028,5 @@
|
|
|
12021
12028
|
]
|
|
12022
12029
|
}
|
|
12023
12030
|
},
|
|
12024
|
-
"version": "19.0.
|
|
12031
|
+
"version": "19.0.2"
|
|
12025
12032
|
}
|