eas-cli 18.13.0 → 19.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -104
- package/build/build/metadata.js +10 -0
- package/build/commandUtils/new/commands.js +3 -10
- package/build/commands/account/login.js +4 -3
- package/build/commands/observe/routes.d.ts +1 -0
- package/build/commands/observe/routes.js +8 -0
- package/build/commands/project/onboarding.js +7 -17
- package/build/graphql/generated.d.ts +57 -0
- package/build/graphql/generated.js +1 -0
- package/build/log.js +4 -3
- package/build/observe/fetchNavigationRoutes.d.ts +1 -0
- package/build/observe/fetchNavigationRoutes.js +1 -0
- package/build/project/expoConfig.js +7 -26
- package/build/project/ios/entitlements.d.ts +1 -2
- package/build/project/ios/entitlements.js +7 -44
- package/build/project/ios/target.js +1 -1
- package/build/project/projectUtils.js +19 -1
- package/build/utils/expoCli.d.ts +4 -0
- package/build/utils/expoCli.js +20 -9
- package/oclif.manifest.json +1664 -1657
- package/package.json +8 -6
package/oclif.manifest.json
CHANGED
|
@@ -685,16 +685,16 @@
|
|
|
685
685
|
"flags": {
|
|
686
686
|
"sso": {
|
|
687
687
|
"char": "s",
|
|
688
|
-
"description": "
|
|
688
|
+
"description": "Log in with SSO",
|
|
689
689
|
"name": "sso",
|
|
690
690
|
"allowNo": false,
|
|
691
691
|
"type": "boolean"
|
|
692
692
|
},
|
|
693
693
|
"browser": {
|
|
694
694
|
"char": "b",
|
|
695
|
-
"description": "
|
|
695
|
+
"description": "Log in with your browser (default; use --no-browser for CLI-based login)",
|
|
696
696
|
"name": "browser",
|
|
697
|
-
"allowNo":
|
|
697
|
+
"allowNo": true,
|
|
698
698
|
"type": "boolean"
|
|
699
699
|
}
|
|
700
700
|
},
|
|
@@ -973,34 +973,48 @@
|
|
|
973
973
|
"view.js"
|
|
974
974
|
]
|
|
975
975
|
},
|
|
976
|
-
"
|
|
976
|
+
"build:cancel": {
|
|
977
977
|
"aliases": [],
|
|
978
978
|
"args": {
|
|
979
|
-
"
|
|
980
|
-
"
|
|
981
|
-
"name": "name",
|
|
982
|
-
"required": false
|
|
979
|
+
"BUILD_ID": {
|
|
980
|
+
"name": "BUILD_ID"
|
|
983
981
|
}
|
|
984
982
|
},
|
|
985
|
-
"description": "
|
|
983
|
+
"description": "cancel a build",
|
|
986
984
|
"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
|
-
},
|
|
993
985
|
"non-interactive": {
|
|
994
986
|
"description": "Run the command in non-interactive mode.",
|
|
995
987
|
"name": "non-interactive",
|
|
996
988
|
"noCacheDefault": true,
|
|
997
989
|
"allowNo": false,
|
|
998
990
|
"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"
|
|
999
1013
|
}
|
|
1000
1014
|
},
|
|
1001
1015
|
"hasDynamicHelp": false,
|
|
1002
1016
|
"hiddenAliases": [],
|
|
1003
|
-
"id": "
|
|
1017
|
+
"id": "build:cancel",
|
|
1004
1018
|
"pluginAlias": "eas-cli",
|
|
1005
1019
|
"pluginName": "eas-cli",
|
|
1006
1020
|
"pluginType": "core",
|
|
@@ -1055,38 +1069,32 @@
|
|
|
1055
1069
|
"relativePath": [
|
|
1056
1070
|
"build",
|
|
1057
1071
|
"commands",
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1072
|
+
"build",
|
|
1073
|
+
"cancel.js"
|
|
1060
1074
|
]
|
|
1061
1075
|
},
|
|
1062
|
-
"
|
|
1076
|
+
"build:configure": {
|
|
1063
1077
|
"aliases": [],
|
|
1064
|
-
"args": {
|
|
1065
|
-
|
|
1066
|
-
"description": "Name of the branch to delete",
|
|
1067
|
-
"name": "name",
|
|
1068
|
-
"required": false
|
|
1069
|
-
}
|
|
1070
|
-
},
|
|
1071
|
-
"description": "delete a branch",
|
|
1078
|
+
"args": {},
|
|
1079
|
+
"description": "configure the project to support EAS Build",
|
|
1072
1080
|
"flags": {
|
|
1073
|
-
"
|
|
1074
|
-
"
|
|
1075
|
-
"
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
"type": "
|
|
1081
|
+
"platform": {
|
|
1082
|
+
"char": "p",
|
|
1083
|
+
"description": "Platform to configure",
|
|
1084
|
+
"name": "platform",
|
|
1085
|
+
"hasDynamicHelp": false,
|
|
1086
|
+
"multiple": false,
|
|
1087
|
+
"options": [
|
|
1088
|
+
"android",
|
|
1089
|
+
"ios",
|
|
1090
|
+
"all"
|
|
1091
|
+
],
|
|
1092
|
+
"type": "option"
|
|
1085
1093
|
}
|
|
1086
1094
|
},
|
|
1087
1095
|
"hasDynamicHelp": false,
|
|
1088
1096
|
"hiddenAliases": [],
|
|
1089
|
-
"id": "
|
|
1097
|
+
"id": "build:configure",
|
|
1090
1098
|
"pluginAlias": "eas-cli",
|
|
1091
1099
|
"pluginName": "eas-cli",
|
|
1092
1100
|
"pluginType": "core",
|
|
@@ -1133,53 +1141,60 @@
|
|
|
1133
1141
|
}
|
|
1134
1142
|
},
|
|
1135
1143
|
"contextDefinition": {
|
|
1136
|
-
"
|
|
1137
|
-
"
|
|
1144
|
+
"loggedIn": {},
|
|
1145
|
+
"privateProjectConfig": {},
|
|
1146
|
+
"vcsClient": {}
|
|
1138
1147
|
},
|
|
1139
1148
|
"isESM": false,
|
|
1140
1149
|
"relativePath": [
|
|
1141
1150
|
"build",
|
|
1142
1151
|
"commands",
|
|
1143
|
-
"
|
|
1144
|
-
"
|
|
1152
|
+
"build",
|
|
1153
|
+
"configure.js"
|
|
1145
1154
|
]
|
|
1146
1155
|
},
|
|
1147
|
-
"
|
|
1156
|
+
"build:delete": {
|
|
1148
1157
|
"aliases": [],
|
|
1149
|
-
"args": {
|
|
1150
|
-
|
|
1158
|
+
"args": {
|
|
1159
|
+
"BUILD_ID": {
|
|
1160
|
+
"name": "BUILD_ID"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"description": "delete a build",
|
|
1151
1164
|
"flags": {
|
|
1152
|
-
"
|
|
1153
|
-
"description": "
|
|
1154
|
-
"name": "
|
|
1165
|
+
"non-interactive": {
|
|
1166
|
+
"description": "Run the command in non-interactive mode.",
|
|
1167
|
+
"name": "non-interactive",
|
|
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",
|
|
1155
1176
|
"hasDynamicHelp": false,
|
|
1156
1177
|
"multiple": false,
|
|
1178
|
+
"options": [
|
|
1179
|
+
"android",
|
|
1180
|
+
"ios",
|
|
1181
|
+
"all"
|
|
1182
|
+
],
|
|
1157
1183
|
"type": "option"
|
|
1158
1184
|
},
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1161
|
-
"
|
|
1185
|
+
"profile": {
|
|
1186
|
+
"char": "e",
|
|
1187
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
1188
|
+
"name": "profile",
|
|
1162
1189
|
"hasDynamicHelp": false,
|
|
1190
|
+
"helpValue": "PROFILE_NAME",
|
|
1163
1191
|
"multiple": false,
|
|
1164
1192
|
"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"
|
|
1178
1193
|
}
|
|
1179
1194
|
},
|
|
1180
1195
|
"hasDynamicHelp": false,
|
|
1181
1196
|
"hiddenAliases": [],
|
|
1182
|
-
"id": "
|
|
1197
|
+
"id": "build:delete",
|
|
1183
1198
|
"pluginAlias": "eas-cli",
|
|
1184
1199
|
"pluginName": "eas-cli",
|
|
1185
1200
|
"pluginType": "core",
|
|
@@ -1227,25 +1242,65 @@
|
|
|
1227
1242
|
},
|
|
1228
1243
|
"contextDefinition": {
|
|
1229
1244
|
"projectId": {},
|
|
1230
|
-
"loggedIn": {}
|
|
1245
|
+
"loggedIn": {},
|
|
1246
|
+
"vcsClient": {}
|
|
1231
1247
|
},
|
|
1232
1248
|
"isESM": false,
|
|
1233
1249
|
"relativePath": [
|
|
1234
1250
|
"build",
|
|
1235
1251
|
"commands",
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1252
|
+
"build",
|
|
1253
|
+
"delete.js"
|
|
1238
1254
|
]
|
|
1239
1255
|
},
|
|
1240
|
-
"
|
|
1256
|
+
"build:dev": {
|
|
1241
1257
|
"aliases": [],
|
|
1242
1258
|
"args": {},
|
|
1243
|
-
"description": "
|
|
1244
|
-
"flags": {
|
|
1259
|
+
"description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
|
|
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
|
+
},
|
|
1245
1301
|
"hasDynamicHelp": false,
|
|
1246
|
-
"hidden": true,
|
|
1247
1302
|
"hiddenAliases": [],
|
|
1248
|
-
"id": "
|
|
1303
|
+
"id": "build:dev",
|
|
1249
1304
|
"pluginAlias": "eas-cli",
|
|
1250
1305
|
"pluginName": "eas-cli",
|
|
1251
1306
|
"pluginType": "core",
|
|
@@ -1291,53 +1346,99 @@
|
|
|
1291
1346
|
"projectId": {}
|
|
1292
1347
|
}
|
|
1293
1348
|
},
|
|
1294
|
-
"contextDefinition": {
|
|
1349
|
+
"contextDefinition": {
|
|
1350
|
+
"loggedIn": {},
|
|
1351
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
1352
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
1353
|
+
"projectDir": {},
|
|
1354
|
+
"vcsClient": {},
|
|
1355
|
+
"analytics": {},
|
|
1356
|
+
"projectId": {}
|
|
1357
|
+
},
|
|
1295
1358
|
"isESM": false,
|
|
1296
1359
|
"relativePath": [
|
|
1297
1360
|
"build",
|
|
1298
1361
|
"commands",
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1362
|
+
"build",
|
|
1363
|
+
"dev.js"
|
|
1301
1364
|
]
|
|
1302
1365
|
},
|
|
1303
|
-
"
|
|
1366
|
+
"build:download": {
|
|
1304
1367
|
"aliases": [],
|
|
1305
1368
|
"args": {},
|
|
1306
|
-
"description": "
|
|
1369
|
+
"description": "download a simulator/emulator build by build ID or fingerprint hash",
|
|
1307
1370
|
"flags": {
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1310
|
-
|
|
1311
|
-
|
|
1371
|
+
"build-id": {
|
|
1372
|
+
"aliases": [
|
|
1373
|
+
"id"
|
|
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",
|
|
1312
1382
|
"hasDynamicHelp": false,
|
|
1313
1383
|
"multiple": false,
|
|
1314
1384
|
"type": "option"
|
|
1315
1385
|
},
|
|
1316
|
-
"
|
|
1317
|
-
"description": "
|
|
1318
|
-
"
|
|
1319
|
-
|
|
1386
|
+
"fingerprint": {
|
|
1387
|
+
"description": "Fingerprint hash of the build to download",
|
|
1388
|
+
"exclusive": [
|
|
1389
|
+
"build-id"
|
|
1390
|
+
],
|
|
1391
|
+
"name": "fingerprint",
|
|
1320
1392
|
"hasDynamicHelp": false,
|
|
1321
1393
|
"multiple": false,
|
|
1322
1394
|
"type": "option"
|
|
1323
1395
|
},
|
|
1324
|
-
"
|
|
1325
|
-
"
|
|
1326
|
-
"
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
"
|
|
1332
|
-
"
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1396
|
+
"platform": {
|
|
1397
|
+
"char": "p",
|
|
1398
|
+
"exclusive": [
|
|
1399
|
+
"build-id"
|
|
1400
|
+
],
|
|
1401
|
+
"name": "platform",
|
|
1402
|
+
"hasDynamicHelp": false,
|
|
1403
|
+
"multiple": false,
|
|
1404
|
+
"options": [
|
|
1405
|
+
"ios",
|
|
1406
|
+
"android"
|
|
1407
|
+
],
|
|
1408
|
+
"type": "option"
|
|
1409
|
+
},
|
|
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
|
+
"json": {
|
|
1426
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1427
|
+
"name": "json",
|
|
1428
|
+
"allowNo": false,
|
|
1429
|
+
"type": "boolean"
|
|
1430
|
+
},
|
|
1431
|
+
"non-interactive": {
|
|
1432
|
+
"description": "Run the command in non-interactive mode.",
|
|
1433
|
+
"name": "non-interactive",
|
|
1434
|
+
"noCacheDefault": true,
|
|
1435
|
+
"allowNo": false,
|
|
1436
|
+
"type": "boolean"
|
|
1336
1437
|
}
|
|
1337
1438
|
},
|
|
1338
1439
|
"hasDynamicHelp": false,
|
|
1339
1440
|
"hiddenAliases": [],
|
|
1340
|
-
"id": "
|
|
1441
|
+
"id": "build:download",
|
|
1341
1442
|
"pluginAlias": "eas-cli",
|
|
1342
1443
|
"pluginName": "eas-cli",
|
|
1343
1444
|
"pluginType": "core",
|
|
@@ -1384,42 +1485,165 @@
|
|
|
1384
1485
|
}
|
|
1385
1486
|
},
|
|
1386
1487
|
"contextDefinition": {
|
|
1387
|
-
"
|
|
1388
|
-
"
|
|
1488
|
+
"loggedIn": {},
|
|
1489
|
+
"projectId": {}
|
|
1389
1490
|
},
|
|
1390
1491
|
"isESM": false,
|
|
1391
1492
|
"relativePath": [
|
|
1392
1493
|
"build",
|
|
1393
1494
|
"commands",
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1495
|
+
"build",
|
|
1496
|
+
"download.js"
|
|
1396
1497
|
]
|
|
1397
1498
|
},
|
|
1398
|
-
"
|
|
1499
|
+
"build": {
|
|
1399
1500
|
"aliases": [],
|
|
1400
|
-
"args": {
|
|
1401
|
-
|
|
1402
|
-
"description": "Name of the branch to view",
|
|
1403
|
-
"name": "name",
|
|
1404
|
-
"required": false
|
|
1405
|
-
}
|
|
1406
|
-
},
|
|
1407
|
-
"description": "view a branch",
|
|
1501
|
+
"args": {},
|
|
1502
|
+
"description": "start a build",
|
|
1408
1503
|
"flags": {
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"name": "
|
|
1504
|
+
"platform": {
|
|
1505
|
+
"char": "p",
|
|
1506
|
+
"name": "platform",
|
|
1412
1507
|
"hasDynamicHelp": false,
|
|
1413
1508
|
"multiple": false,
|
|
1509
|
+
"options": [
|
|
1510
|
+
"android",
|
|
1511
|
+
"ios",
|
|
1512
|
+
"all"
|
|
1513
|
+
],
|
|
1414
1514
|
"type": "option"
|
|
1415
1515
|
},
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1418
|
-
"name": "
|
|
1516
|
+
"skip-credentials-check": {
|
|
1517
|
+
"hidden": true,
|
|
1518
|
+
"name": "skip-credentials-check",
|
|
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",
|
|
1532
|
+
"hasDynamicHelp": false,
|
|
1533
|
+
"helpValue": "PROFILE_NAME",
|
|
1534
|
+
"multiple": false,
|
|
1535
|
+
"type": "option"
|
|
1536
|
+
},
|
|
1537
|
+
"local": {
|
|
1538
|
+
"description": "Run build locally [experimental]",
|
|
1539
|
+
"name": "local",
|
|
1540
|
+
"allowNo": false,
|
|
1541
|
+
"type": "boolean"
|
|
1542
|
+
},
|
|
1543
|
+
"output": {
|
|
1544
|
+
"description": "Output path for local build",
|
|
1545
|
+
"name": "output",
|
|
1546
|
+
"hasDynamicHelp": false,
|
|
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",
|
|
1559
|
+
"allowNo": false,
|
|
1560
|
+
"type": "boolean"
|
|
1561
|
+
},
|
|
1562
|
+
"auto-submit": {
|
|
1563
|
+
"aliases": [
|
|
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"
|
|
1574
|
+
},
|
|
1575
|
+
"auto-submit-with-profile": {
|
|
1576
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
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"
|
|
1585
|
+
},
|
|
1586
|
+
"what-to-test": {
|
|
1587
|
+
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
1588
|
+
"name": "what-to-test",
|
|
1589
|
+
"hasDynamicHelp": false,
|
|
1590
|
+
"multiple": false,
|
|
1591
|
+
"type": "option"
|
|
1592
|
+
},
|
|
1593
|
+
"resource-class": {
|
|
1594
|
+
"deprecated": {
|
|
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",
|
|
1419
1600
|
"hasDynamicHelp": false,
|
|
1420
1601
|
"multiple": false,
|
|
1602
|
+
"options": [
|
|
1603
|
+
"default",
|
|
1604
|
+
"large",
|
|
1605
|
+
"m1-medium",
|
|
1606
|
+
"medium",
|
|
1607
|
+
"m-medium",
|
|
1608
|
+
"m-large"
|
|
1609
|
+
],
|
|
1610
|
+
"type": "option"
|
|
1611
|
+
},
|
|
1612
|
+
"message": {
|
|
1613
|
+
"char": "m",
|
|
1614
|
+
"description": "A short message describing the build",
|
|
1615
|
+
"name": "message",
|
|
1616
|
+
"hasDynamicHelp": false,
|
|
1617
|
+
"multiple": false,
|
|
1618
|
+
"type": "option"
|
|
1619
|
+
},
|
|
1620
|
+
"build-logger-level": {
|
|
1621
|
+
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
1622
|
+
"name": "build-logger-level",
|
|
1623
|
+
"hasDynamicHelp": false,
|
|
1624
|
+
"multiple": false,
|
|
1625
|
+
"options": [
|
|
1626
|
+
"trace",
|
|
1627
|
+
"debug",
|
|
1628
|
+
"info",
|
|
1629
|
+
"warn",
|
|
1630
|
+
"error",
|
|
1631
|
+
"fatal"
|
|
1632
|
+
],
|
|
1421
1633
|
"type": "option"
|
|
1422
1634
|
},
|
|
1635
|
+
"freeze-credentials": {
|
|
1636
|
+
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
1637
|
+
"name": "freeze-credentials",
|
|
1638
|
+
"allowNo": false,
|
|
1639
|
+
"type": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"verbose-logs": {
|
|
1642
|
+
"description": "Use verbose logs for the build process",
|
|
1643
|
+
"name": "verbose-logs",
|
|
1644
|
+
"allowNo": false,
|
|
1645
|
+
"type": "boolean"
|
|
1646
|
+
},
|
|
1423
1647
|
"json": {
|
|
1424
1648
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1425
1649
|
"name": "json",
|
|
@@ -1436,7 +1660,7 @@
|
|
|
1436
1660
|
},
|
|
1437
1661
|
"hasDynamicHelp": false,
|
|
1438
1662
|
"hiddenAliases": [],
|
|
1439
|
-
"id": "
|
|
1663
|
+
"id": "build",
|
|
1440
1664
|
"pluginAlias": "eas-cli",
|
|
1441
1665
|
"pluginName": "eas-cli",
|
|
1442
1666
|
"pluginType": "core",
|
|
@@ -1483,45 +1707,87 @@
|
|
|
1483
1707
|
}
|
|
1484
1708
|
},
|
|
1485
1709
|
"contextDefinition": {
|
|
1486
|
-
"
|
|
1487
|
-
"
|
|
1710
|
+
"loggedIn": {},
|
|
1711
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
1712
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
1713
|
+
"projectDir": {},
|
|
1714
|
+
"analytics": {},
|
|
1715
|
+
"vcsClient": {}
|
|
1488
1716
|
},
|
|
1489
1717
|
"isESM": false,
|
|
1490
1718
|
"relativePath": [
|
|
1491
1719
|
"build",
|
|
1492
1720
|
"commands",
|
|
1493
|
-
"
|
|
1494
|
-
"
|
|
1721
|
+
"build",
|
|
1722
|
+
"index.js"
|
|
1495
1723
|
]
|
|
1496
1724
|
},
|
|
1497
|
-
"
|
|
1725
|
+
"build:inspect": {
|
|
1498
1726
|
"aliases": [],
|
|
1499
|
-
"args": {
|
|
1500
|
-
|
|
1501
|
-
"description": "Name of the channel to create",
|
|
1502
|
-
"name": "name",
|
|
1503
|
-
"required": false
|
|
1504
|
-
}
|
|
1505
|
-
},
|
|
1506
|
-
"description": "create a channel",
|
|
1727
|
+
"args": {},
|
|
1728
|
+
"description": "inspect the state of the project at specific build stages, useful for troubleshooting",
|
|
1507
1729
|
"flags": {
|
|
1508
|
-
"
|
|
1509
|
-
"
|
|
1510
|
-
"name": "
|
|
1730
|
+
"platform": {
|
|
1731
|
+
"char": "p",
|
|
1732
|
+
"name": "platform",
|
|
1733
|
+
"required": true,
|
|
1734
|
+
"hasDynamicHelp": false,
|
|
1735
|
+
"multiple": false,
|
|
1736
|
+
"options": [
|
|
1737
|
+
"android",
|
|
1738
|
+
"ios"
|
|
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",
|
|
1511
1778
|
"allowNo": false,
|
|
1512
1779
|
"type": "boolean"
|
|
1513
1780
|
},
|
|
1514
|
-
"
|
|
1515
|
-
"
|
|
1516
|
-
"name": "
|
|
1517
|
-
"noCacheDefault": true,
|
|
1781
|
+
"verbose": {
|
|
1782
|
+
"char": "v",
|
|
1783
|
+
"name": "verbose",
|
|
1518
1784
|
"allowNo": false,
|
|
1519
1785
|
"type": "boolean"
|
|
1520
1786
|
}
|
|
1521
1787
|
},
|
|
1522
1788
|
"hasDynamicHelp": false,
|
|
1523
1789
|
"hiddenAliases": [],
|
|
1524
|
-
"id": "
|
|
1790
|
+
"id": "build:inspect",
|
|
1525
1791
|
"pluginAlias": "eas-cli",
|
|
1526
1792
|
"pluginName": "eas-cli",
|
|
1527
1793
|
"pluginType": "core",
|
|
@@ -1568,45 +1834,71 @@
|
|
|
1568
1834
|
}
|
|
1569
1835
|
},
|
|
1570
1836
|
"contextDefinition": {
|
|
1571
|
-
"
|
|
1572
|
-
"
|
|
1837
|
+
"loggedIn": {},
|
|
1838
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
1839
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
1840
|
+
"projectDir": {},
|
|
1841
|
+
"analytics": {},
|
|
1842
|
+
"vcsClient": {}
|
|
1573
1843
|
},
|
|
1574
1844
|
"isESM": false,
|
|
1575
1845
|
"relativePath": [
|
|
1576
1846
|
"build",
|
|
1577
1847
|
"commands",
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1848
|
+
"build",
|
|
1849
|
+
"inspect.js"
|
|
1580
1850
|
]
|
|
1581
1851
|
},
|
|
1582
|
-
"
|
|
1852
|
+
"build:internal": {
|
|
1583
1853
|
"aliases": [],
|
|
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",
|
|
1854
|
+
"args": {},
|
|
1592
1855
|
"flags": {
|
|
1593
|
-
"
|
|
1594
|
-
"
|
|
1595
|
-
"name": "
|
|
1596
|
-
"
|
|
1597
|
-
"
|
|
1856
|
+
"platform": {
|
|
1857
|
+
"char": "p",
|
|
1858
|
+
"name": "platform",
|
|
1859
|
+
"required": true,
|
|
1860
|
+
"hasDynamicHelp": false,
|
|
1861
|
+
"multiple": false,
|
|
1862
|
+
"options": [
|
|
1863
|
+
"android",
|
|
1864
|
+
"ios"
|
|
1865
|
+
],
|
|
1866
|
+
"type": "option"
|
|
1598
1867
|
},
|
|
1599
|
-
"
|
|
1600
|
-
"
|
|
1601
|
-
"
|
|
1602
|
-
"
|
|
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",
|
|
1872
|
+
"hasDynamicHelp": false,
|
|
1873
|
+
"helpValue": "PROFILE_NAME",
|
|
1874
|
+
"multiple": false,
|
|
1875
|
+
"type": "option"
|
|
1876
|
+
},
|
|
1877
|
+
"auto-submit": {
|
|
1878
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
1879
|
+
"exclusive": [
|
|
1880
|
+
"auto-submit-with-profile"
|
|
1881
|
+
],
|
|
1882
|
+
"name": "auto-submit",
|
|
1603
1883
|
"allowNo": false,
|
|
1604
1884
|
"type": "boolean"
|
|
1885
|
+
},
|
|
1886
|
+
"auto-submit-with-profile": {
|
|
1887
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
1888
|
+
"exclusive": [
|
|
1889
|
+
"auto-submit"
|
|
1890
|
+
],
|
|
1891
|
+
"name": "auto-submit-with-profile",
|
|
1892
|
+
"hasDynamicHelp": false,
|
|
1893
|
+
"helpValue": "PROFILE_NAME",
|
|
1894
|
+
"multiple": false,
|
|
1895
|
+
"type": "option"
|
|
1605
1896
|
}
|
|
1606
1897
|
},
|
|
1607
1898
|
"hasDynamicHelp": false,
|
|
1899
|
+
"hidden": true,
|
|
1608
1900
|
"hiddenAliases": [],
|
|
1609
|
-
"id": "
|
|
1901
|
+
"id": "build:internal",
|
|
1610
1902
|
"pluginAlias": "eas-cli",
|
|
1611
1903
|
"pluginName": "eas-cli",
|
|
1612
1904
|
"pluginType": "core",
|
|
@@ -1639,45 +1931,175 @@
|
|
|
1639
1931
|
"loggedIn": {},
|
|
1640
1932
|
"privateProjectConfig": {}
|
|
1641
1933
|
},
|
|
1642
|
-
"Analytics": {
|
|
1643
|
-
"analytics": {}
|
|
1934
|
+
"Analytics": {
|
|
1935
|
+
"analytics": {}
|
|
1936
|
+
},
|
|
1937
|
+
"Vcs": {
|
|
1938
|
+
"vcsClient": {}
|
|
1939
|
+
},
|
|
1940
|
+
"ServerSideEnvironmentVariables": {
|
|
1941
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
1942
|
+
},
|
|
1943
|
+
"ProjectId": {
|
|
1944
|
+
"projectId": {}
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
"contextDefinition": {
|
|
1948
|
+
"loggedIn": {},
|
|
1949
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
1950
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
1951
|
+
"projectDir": {},
|
|
1952
|
+
"analytics": {},
|
|
1953
|
+
"vcsClient": {}
|
|
1954
|
+
},
|
|
1955
|
+
"isESM": false,
|
|
1956
|
+
"relativePath": [
|
|
1957
|
+
"build",
|
|
1958
|
+
"commands",
|
|
1959
|
+
"build",
|
|
1960
|
+
"internal.js"
|
|
1961
|
+
]
|
|
1962
|
+
},
|
|
1963
|
+
"build:list": {
|
|
1964
|
+
"aliases": [],
|
|
1965
|
+
"args": {},
|
|
1966
|
+
"description": "list all builds for your project",
|
|
1967
|
+
"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
|
+
"channel": {
|
|
2009
|
+
"name": "channel",
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"type": "option"
|
|
2013
|
+
},
|
|
2014
|
+
"app-version": {
|
|
2015
|
+
"aliases": [
|
|
2016
|
+
"appVersion"
|
|
2017
|
+
],
|
|
2018
|
+
"description": "Filter only builds created with the specified main app version",
|
|
2019
|
+
"name": "app-version",
|
|
2020
|
+
"hasDynamicHelp": false,
|
|
2021
|
+
"multiple": false,
|
|
2022
|
+
"type": "option"
|
|
2023
|
+
},
|
|
2024
|
+
"app-build-version": {
|
|
2025
|
+
"aliases": [
|
|
2026
|
+
"appBuildVersion"
|
|
2027
|
+
],
|
|
2028
|
+
"description": "Filter only builds created with the specified app build version",
|
|
2029
|
+
"name": "app-build-version",
|
|
2030
|
+
"hasDynamicHelp": false,
|
|
2031
|
+
"multiple": false,
|
|
2032
|
+
"type": "option"
|
|
2033
|
+
},
|
|
2034
|
+
"sdk-version": {
|
|
2035
|
+
"aliases": [
|
|
2036
|
+
"sdkVersion"
|
|
2037
|
+
],
|
|
2038
|
+
"description": "Filter only builds created with the specified Expo SDK version",
|
|
2039
|
+
"name": "sdk-version",
|
|
2040
|
+
"hasDynamicHelp": false,
|
|
2041
|
+
"multiple": false,
|
|
2042
|
+
"type": "option"
|
|
2043
|
+
},
|
|
2044
|
+
"runtime-version": {
|
|
2045
|
+
"aliases": [
|
|
2046
|
+
"runtimeVersion"
|
|
2047
|
+
],
|
|
2048
|
+
"description": "Filter only builds created with the specified runtime version",
|
|
2049
|
+
"name": "runtime-version",
|
|
2050
|
+
"hasDynamicHelp": false,
|
|
2051
|
+
"multiple": false,
|
|
2052
|
+
"type": "option"
|
|
2053
|
+
},
|
|
2054
|
+
"app-identifier": {
|
|
2055
|
+
"aliases": [
|
|
2056
|
+
"appIdentifier"
|
|
2057
|
+
],
|
|
2058
|
+
"description": "Filter only builds created with the specified app identifier",
|
|
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"
|
|
1644
2085
|
},
|
|
1645
|
-
"
|
|
1646
|
-
"
|
|
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"
|
|
1647
2092
|
},
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
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"
|
|
1650
2099
|
},
|
|
1651
|
-
"
|
|
1652
|
-
"
|
|
1653
|
-
|
|
1654
|
-
},
|
|
1655
|
-
"contextDefinition": {
|
|
1656
|
-
"projectId": {},
|
|
1657
|
-
"loggedIn": {}
|
|
1658
|
-
},
|
|
1659
|
-
"isESM": false,
|
|
1660
|
-
"relativePath": [
|
|
1661
|
-
"build",
|
|
1662
|
-
"commands",
|
|
1663
|
-
"channel",
|
|
1664
|
-
"delete.js"
|
|
1665
|
-
]
|
|
1666
|
-
},
|
|
1667
|
-
"channel:edit": {
|
|
1668
|
-
"aliases": [],
|
|
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",
|
|
1677
|
-
"flags": {
|
|
1678
|
-
"branch": {
|
|
1679
|
-
"description": "Name of the branch to point to",
|
|
1680
|
-
"name": "branch",
|
|
2100
|
+
"limit": {
|
|
2101
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
2102
|
+
"name": "limit",
|
|
1681
2103
|
"hasDynamicHelp": false,
|
|
1682
2104
|
"multiple": false,
|
|
1683
2105
|
"type": "option"
|
|
@@ -1694,11 +2116,17 @@
|
|
|
1694
2116
|
"noCacheDefault": true,
|
|
1695
2117
|
"allowNo": false,
|
|
1696
2118
|
"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"
|
|
1697
2125
|
}
|
|
1698
2126
|
},
|
|
1699
2127
|
"hasDynamicHelp": false,
|
|
1700
2128
|
"hiddenAliases": [],
|
|
1701
|
-
"id": "
|
|
2129
|
+
"id": "build:list",
|
|
1702
2130
|
"pluginAlias": "eas-cli",
|
|
1703
2131
|
"pluginName": "eas-cli",
|
|
1704
2132
|
"pluginType": "core",
|
|
@@ -1746,64 +2174,76 @@
|
|
|
1746
2174
|
},
|
|
1747
2175
|
"contextDefinition": {
|
|
1748
2176
|
"projectId": {},
|
|
1749
|
-
"loggedIn": {}
|
|
2177
|
+
"loggedIn": {},
|
|
2178
|
+
"vcsClient": {}
|
|
1750
2179
|
},
|
|
1751
2180
|
"isESM": false,
|
|
1752
2181
|
"relativePath": [
|
|
1753
2182
|
"build",
|
|
1754
2183
|
"commands",
|
|
1755
|
-
"
|
|
1756
|
-
"
|
|
2184
|
+
"build",
|
|
2185
|
+
"list.js"
|
|
1757
2186
|
]
|
|
1758
2187
|
},
|
|
1759
|
-
"
|
|
2188
|
+
"build:resign": {
|
|
1760
2189
|
"aliases": [],
|
|
1761
2190
|
"args": {},
|
|
1762
|
-
"description": "
|
|
2191
|
+
"description": "re-sign a build archive",
|
|
1763
2192
|
"flags": {
|
|
1764
|
-
"
|
|
1765
|
-
"
|
|
1766
|
-
"name": "
|
|
1767
|
-
"required": true,
|
|
2193
|
+
"platform": {
|
|
2194
|
+
"char": "p",
|
|
2195
|
+
"name": "platform",
|
|
1768
2196
|
"hasDynamicHelp": false,
|
|
1769
2197
|
"multiple": false,
|
|
2198
|
+
"options": [
|
|
2199
|
+
"android",
|
|
2200
|
+
"ios"
|
|
2201
|
+
],
|
|
1770
2202
|
"type": "option"
|
|
1771
2203
|
},
|
|
1772
|
-
"
|
|
1773
|
-
"
|
|
1774
|
-
|
|
1775
|
-
|
|
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",
|
|
1776
2211
|
"hasDynamicHelp": false,
|
|
2212
|
+
"helpValue": "PROFILE_NAME",
|
|
1777
2213
|
"multiple": false,
|
|
1778
2214
|
"type": "option"
|
|
1779
2215
|
},
|
|
1780
|
-
"
|
|
1781
|
-
"description": "
|
|
1782
|
-
"
|
|
1783
|
-
"start",
|
|
1784
|
-
"end"
|
|
1785
|
-
],
|
|
1786
|
-
"name": "days",
|
|
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",
|
|
1787
2219
|
"hasDynamicHelp": false,
|
|
2220
|
+
"helpValue": "PROFILE_NAME",
|
|
1788
2221
|
"multiple": false,
|
|
1789
2222
|
"type": "option"
|
|
1790
2223
|
},
|
|
1791
|
-
"
|
|
1792
|
-
"description": "
|
|
1793
|
-
"
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
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",
|
|
1797
2233
|
"hasDynamicHelp": false,
|
|
1798
2234
|
"multiple": false,
|
|
1799
2235
|
"type": "option"
|
|
1800
2236
|
},
|
|
1801
|
-
"
|
|
1802
|
-
"description": "
|
|
1803
|
-
"
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
"
|
|
2237
|
+
"offset": {
|
|
2238
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2239
|
+
"name": "offset",
|
|
2240
|
+
"hasDynamicHelp": false,
|
|
2241
|
+
"multiple": false,
|
|
2242
|
+
"type": "option"
|
|
2243
|
+
},
|
|
2244
|
+
"limit": {
|
|
2245
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2246
|
+
"name": "limit",
|
|
1807
2247
|
"hasDynamicHelp": false,
|
|
1808
2248
|
"multiple": false,
|
|
1809
2249
|
"type": "option"
|
|
@@ -1824,7 +2264,7 @@
|
|
|
1824
2264
|
},
|
|
1825
2265
|
"hasDynamicHelp": false,
|
|
1826
2266
|
"hiddenAliases": [],
|
|
1827
|
-
"id": "
|
|
2267
|
+
"id": "build:resign",
|
|
1828
2268
|
"pluginAlias": "eas-cli",
|
|
1829
2269
|
"pluginName": "eas-cli",
|
|
1830
2270
|
"pluginType": "core",
|
|
@@ -1871,53 +2311,116 @@
|
|
|
1871
2311
|
}
|
|
1872
2312
|
},
|
|
1873
2313
|
"contextDefinition": {
|
|
1874
|
-
"
|
|
1875
|
-
"
|
|
2314
|
+
"loggedIn": {},
|
|
2315
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2316
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
2317
|
+
"projectDir": {},
|
|
2318
|
+
"analytics": {},
|
|
2319
|
+
"vcsClient": {}
|
|
1876
2320
|
},
|
|
1877
2321
|
"isESM": false,
|
|
1878
2322
|
"relativePath": [
|
|
1879
2323
|
"build",
|
|
1880
2324
|
"commands",
|
|
1881
|
-
"
|
|
1882
|
-
"
|
|
2325
|
+
"build",
|
|
2326
|
+
"resign.js"
|
|
1883
2327
|
]
|
|
1884
2328
|
},
|
|
1885
|
-
"
|
|
2329
|
+
"build:run": {
|
|
1886
2330
|
"aliases": [],
|
|
1887
2331
|
"args": {},
|
|
1888
|
-
"description": "
|
|
2332
|
+
"description": "run simulator/emulator builds from eas-cli",
|
|
1889
2333
|
"flags": {
|
|
1890
|
-
"
|
|
1891
|
-
"description": "
|
|
1892
|
-
"
|
|
2334
|
+
"latest": {
|
|
2335
|
+
"description": "Run the latest simulator/emulator build for specified platform",
|
|
2336
|
+
"exclusive": [
|
|
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",
|
|
1893
2353
|
"hasDynamicHelp": false,
|
|
1894
2354
|
"multiple": false,
|
|
1895
2355
|
"type": "option"
|
|
1896
2356
|
},
|
|
1897
|
-
"
|
|
1898
|
-
"description": "
|
|
1899
|
-
"
|
|
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",
|
|
1900
2365
|
"hasDynamicHelp": false,
|
|
1901
2366
|
"multiple": false,
|
|
1902
2367
|
"type": "option"
|
|
1903
2368
|
},
|
|
1904
|
-
"
|
|
1905
|
-
"description": "
|
|
1906
|
-
"
|
|
1907
|
-
|
|
1908
|
-
|
|
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"
|
|
1909
2378
|
},
|
|
1910
|
-
"
|
|
1911
|
-
"
|
|
1912
|
-
"name": "
|
|
1913
|
-
"
|
|
1914
|
-
"
|
|
1915
|
-
"
|
|
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",
|
|
2402
|
+
"hasDynamicHelp": false,
|
|
2403
|
+
"multiple": false,
|
|
2404
|
+
"type": "option"
|
|
2405
|
+
},
|
|
2406
|
+
"offset": {
|
|
2407
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2408
|
+
"name": "offset",
|
|
2409
|
+
"hasDynamicHelp": false,
|
|
2410
|
+
"multiple": false,
|
|
2411
|
+
"type": "option"
|
|
2412
|
+
},
|
|
2413
|
+
"limit": {
|
|
2414
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2415
|
+
"name": "limit",
|
|
2416
|
+
"hasDynamicHelp": false,
|
|
2417
|
+
"multiple": false,
|
|
2418
|
+
"type": "option"
|
|
1916
2419
|
}
|
|
1917
2420
|
},
|
|
1918
2421
|
"hasDynamicHelp": false,
|
|
1919
2422
|
"hiddenAliases": [],
|
|
1920
|
-
"id": "
|
|
2423
|
+
"id": "build:run",
|
|
1921
2424
|
"pluginAlias": "eas-cli",
|
|
1922
2425
|
"pluginName": "eas-cli",
|
|
1923
2426
|
"pluginType": "core",
|
|
@@ -1964,52 +2467,37 @@
|
|
|
1964
2467
|
}
|
|
1965
2468
|
},
|
|
1966
2469
|
"contextDefinition": {
|
|
2470
|
+
"loggedIn": {},
|
|
1967
2471
|
"projectId": {},
|
|
1968
|
-
"
|
|
2472
|
+
"vcsClient": {}
|
|
1969
2473
|
},
|
|
1970
2474
|
"isESM": false,
|
|
1971
2475
|
"relativePath": [
|
|
1972
2476
|
"build",
|
|
1973
2477
|
"commands",
|
|
1974
|
-
"
|
|
1975
|
-
"
|
|
2478
|
+
"build",
|
|
2479
|
+
"run.js"
|
|
1976
2480
|
]
|
|
1977
2481
|
},
|
|
1978
|
-
"
|
|
2482
|
+
"build:view": {
|
|
1979
2483
|
"aliases": [],
|
|
1980
2484
|
"args": {
|
|
1981
|
-
"
|
|
1982
|
-
"
|
|
1983
|
-
"name": "name",
|
|
1984
|
-
"required": false
|
|
2485
|
+
"BUILD_ID": {
|
|
2486
|
+
"name": "BUILD_ID"
|
|
1985
2487
|
}
|
|
1986
2488
|
},
|
|
1987
|
-
"description": "
|
|
2489
|
+
"description": "view a build for your project",
|
|
1988
2490
|
"flags": {
|
|
1989
|
-
"branch": {
|
|
1990
|
-
"description": "Name of the branch to point to",
|
|
1991
|
-
"name": "branch",
|
|
1992
|
-
"hasDynamicHelp": false,
|
|
1993
|
-
"multiple": false,
|
|
1994
|
-
"type": "option"
|
|
1995
|
-
},
|
|
1996
2491
|
"json": {
|
|
1997
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2492
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
1998
2493
|
"name": "json",
|
|
1999
2494
|
"allowNo": false,
|
|
2000
2495
|
"type": "boolean"
|
|
2001
|
-
},
|
|
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"
|
|
2008
2496
|
}
|
|
2009
2497
|
},
|
|
2010
2498
|
"hasDynamicHelp": false,
|
|
2011
2499
|
"hiddenAliases": [],
|
|
2012
|
-
"id": "
|
|
2500
|
+
"id": "build:view",
|
|
2013
2501
|
"pluginAlias": "eas-cli",
|
|
2014
2502
|
"pluginName": "eas-cli",
|
|
2015
2503
|
"pluginType": "core",
|
|
@@ -2057,34 +2545,28 @@
|
|
|
2057
2545
|
},
|
|
2058
2546
|
"contextDefinition": {
|
|
2059
2547
|
"projectId": {},
|
|
2060
|
-
"loggedIn": {}
|
|
2548
|
+
"loggedIn": {},
|
|
2549
|
+
"vcsClient": {}
|
|
2061
2550
|
},
|
|
2062
2551
|
"isESM": false,
|
|
2063
2552
|
"relativePath": [
|
|
2064
2553
|
"build",
|
|
2065
2554
|
"commands",
|
|
2066
|
-
"
|
|
2067
|
-
"
|
|
2555
|
+
"build",
|
|
2556
|
+
"view.js"
|
|
2068
2557
|
]
|
|
2069
2558
|
},
|
|
2070
|
-
"
|
|
2559
|
+
"branch:create": {
|
|
2071
2560
|
"aliases": [],
|
|
2072
2561
|
"args": {
|
|
2073
2562
|
"name": {
|
|
2074
|
-
"description": "Name of the
|
|
2563
|
+
"description": "Name of the branch to create",
|
|
2075
2564
|
"name": "name",
|
|
2076
2565
|
"required": false
|
|
2077
2566
|
}
|
|
2078
2567
|
},
|
|
2079
|
-
"description": "
|
|
2568
|
+
"description": "create a branch",
|
|
2080
2569
|
"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
|
-
},
|
|
2088
2570
|
"json": {
|
|
2089
2571
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2090
2572
|
"name": "json",
|
|
@@ -2101,7 +2583,7 @@
|
|
|
2101
2583
|
},
|
|
2102
2584
|
"hasDynamicHelp": false,
|
|
2103
2585
|
"hiddenAliases": [],
|
|
2104
|
-
"id": "
|
|
2586
|
+
"id": "branch:create",
|
|
2105
2587
|
"pluginAlias": "eas-cli",
|
|
2106
2588
|
"pluginName": "eas-cli",
|
|
2107
2589
|
"pluginType": "core",
|
|
@@ -2149,103 +2631,28 @@
|
|
|
2149
2631
|
},
|
|
2150
2632
|
"contextDefinition": {
|
|
2151
2633
|
"projectId": {},
|
|
2152
|
-
"loggedIn": {}
|
|
2634
|
+
"loggedIn": {},
|
|
2635
|
+
"vcsClient": {}
|
|
2153
2636
|
},
|
|
2154
2637
|
"isESM": false,
|
|
2155
2638
|
"relativePath": [
|
|
2156
2639
|
"build",
|
|
2157
2640
|
"commands",
|
|
2158
|
-
"
|
|
2159
|
-
"
|
|
2641
|
+
"branch",
|
|
2642
|
+
"create.js"
|
|
2160
2643
|
]
|
|
2161
2644
|
},
|
|
2162
|
-
"
|
|
2645
|
+
"branch:delete": {
|
|
2163
2646
|
"aliases": [],
|
|
2164
2647
|
"args": {
|
|
2165
|
-
"
|
|
2166
|
-
"description": "
|
|
2167
|
-
"name": "
|
|
2648
|
+
"name": {
|
|
2649
|
+
"description": "Name of the branch to delete",
|
|
2650
|
+
"name": "name",
|
|
2651
|
+
"required": false
|
|
2168
2652
|
}
|
|
2169
2653
|
},
|
|
2170
|
-
"description": "
|
|
2654
|
+
"description": "delete a branch",
|
|
2171
2655
|
"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
|
-
},
|
|
2249
2656
|
"json": {
|
|
2250
2657
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2251
2658
|
"name": "json",
|
|
@@ -2262,7 +2669,7 @@
|
|
|
2262
2669
|
},
|
|
2263
2670
|
"hasDynamicHelp": false,
|
|
2264
2671
|
"hiddenAliases": [],
|
|
2265
|
-
"id": "
|
|
2672
|
+
"id": "branch:delete",
|
|
2266
2673
|
"pluginAlias": "eas-cli",
|
|
2267
2674
|
"pluginName": "eas-cli",
|
|
2268
2675
|
"pluginType": "core",
|
|
@@ -2309,42 +2716,22 @@
|
|
|
2309
2716
|
}
|
|
2310
2717
|
},
|
|
2311
2718
|
"contextDefinition": {
|
|
2312
|
-
"
|
|
2313
|
-
"
|
|
2314
|
-
"vcsClient": {}
|
|
2719
|
+
"projectId": {},
|
|
2720
|
+
"loggedIn": {}
|
|
2315
2721
|
},
|
|
2316
2722
|
"isESM": false,
|
|
2317
2723
|
"relativePath": [
|
|
2318
2724
|
"build",
|
|
2319
2725
|
"commands",
|
|
2320
|
-
"
|
|
2321
|
-
"
|
|
2726
|
+
"branch",
|
|
2727
|
+
"delete.js"
|
|
2322
2728
|
]
|
|
2323
2729
|
},
|
|
2324
|
-
"
|
|
2730
|
+
"branch:list": {
|
|
2325
2731
|
"aliases": [],
|
|
2326
|
-
"args": {
|
|
2327
|
-
|
|
2328
|
-
"description": "Name of the channel to view",
|
|
2329
|
-
"name": "name",
|
|
2330
|
-
"required": false
|
|
2331
|
-
}
|
|
2332
|
-
},
|
|
2333
|
-
"description": "view a channel",
|
|
2732
|
+
"args": {},
|
|
2733
|
+
"description": "list all branches",
|
|
2334
2734
|
"flags": {
|
|
2335
|
-
"json": {
|
|
2336
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2337
|
-
"name": "json",
|
|
2338
|
-
"allowNo": false,
|
|
2339
|
-
"type": "boolean"
|
|
2340
|
-
},
|
|
2341
|
-
"non-interactive": {
|
|
2342
|
-
"description": "Run the command in non-interactive mode.",
|
|
2343
|
-
"name": "non-interactive",
|
|
2344
|
-
"noCacheDefault": true,
|
|
2345
|
-
"allowNo": false,
|
|
2346
|
-
"type": "boolean"
|
|
2347
|
-
},
|
|
2348
2735
|
"offset": {
|
|
2349
2736
|
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2350
2737
|
"name": "offset",
|
|
@@ -2358,11 +2745,24 @@
|
|
|
2358
2745
|
"hasDynamicHelp": false,
|
|
2359
2746
|
"multiple": false,
|
|
2360
2747
|
"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"
|
|
2361
2761
|
}
|
|
2362
2762
|
},
|
|
2363
2763
|
"hasDynamicHelp": false,
|
|
2364
2764
|
"hiddenAliases": [],
|
|
2365
|
-
"id": "
|
|
2765
|
+
"id": "branch:list",
|
|
2366
2766
|
"pluginAlias": "eas-cli",
|
|
2367
2767
|
"pluginName": "eas-cli",
|
|
2368
2768
|
"pluginType": "core",
|
|
@@ -2415,53 +2815,20 @@
|
|
|
2415
2815
|
"isESM": false,
|
|
2416
2816
|
"relativePath": [
|
|
2417
2817
|
"build",
|
|
2418
|
-
"commands",
|
|
2419
|
-
"
|
|
2420
|
-
"
|
|
2421
|
-
]
|
|
2422
|
-
},
|
|
2423
|
-
"
|
|
2424
|
-
"aliases": [],
|
|
2425
|
-
"args": {
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
}
|
|
2429
|
-
},
|
|
2430
|
-
"description": "cancel a build",
|
|
2431
|
-
"flags": {
|
|
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",
|
|
2443
|
-
"hasDynamicHelp": false,
|
|
2444
|
-
"multiple": false,
|
|
2445
|
-
"options": [
|
|
2446
|
-
"android",
|
|
2447
|
-
"ios",
|
|
2448
|
-
"all"
|
|
2449
|
-
],
|
|
2450
|
-
"type": "option"
|
|
2451
|
-
},
|
|
2452
|
-
"profile": {
|
|
2453
|
-
"char": "e",
|
|
2454
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
2455
|
-
"name": "profile",
|
|
2456
|
-
"hasDynamicHelp": false,
|
|
2457
|
-
"helpValue": "PROFILE_NAME",
|
|
2458
|
-
"multiple": false,
|
|
2459
|
-
"type": "option"
|
|
2460
|
-
}
|
|
2461
|
-
},
|
|
2818
|
+
"commands",
|
|
2819
|
+
"branch",
|
|
2820
|
+
"list.js"
|
|
2821
|
+
]
|
|
2822
|
+
},
|
|
2823
|
+
"branch:publish": {
|
|
2824
|
+
"aliases": [],
|
|
2825
|
+
"args": {},
|
|
2826
|
+
"description": "deprecated, use \"eas update\"",
|
|
2827
|
+
"flags": {},
|
|
2462
2828
|
"hasDynamicHelp": false,
|
|
2829
|
+
"hidden": true,
|
|
2463
2830
|
"hiddenAliases": [],
|
|
2464
|
-
"id": "
|
|
2831
|
+
"id": "branch:publish",
|
|
2465
2832
|
"pluginAlias": "eas-cli",
|
|
2466
2833
|
"pluginName": "eas-cli",
|
|
2467
2834
|
"pluginType": "core",
|
|
@@ -2507,41 +2874,53 @@
|
|
|
2507
2874
|
"projectId": {}
|
|
2508
2875
|
}
|
|
2509
2876
|
},
|
|
2510
|
-
"contextDefinition": {
|
|
2511
|
-
"projectId": {},
|
|
2512
|
-
"loggedIn": {},
|
|
2513
|
-
"vcsClient": {}
|
|
2514
|
-
},
|
|
2877
|
+
"contextDefinition": {},
|
|
2515
2878
|
"isESM": false,
|
|
2516
2879
|
"relativePath": [
|
|
2517
2880
|
"build",
|
|
2518
2881
|
"commands",
|
|
2519
|
-
"
|
|
2520
|
-
"
|
|
2882
|
+
"branch",
|
|
2883
|
+
"publish.js"
|
|
2521
2884
|
]
|
|
2522
2885
|
},
|
|
2523
|
-
"
|
|
2886
|
+
"branch:rename": {
|
|
2524
2887
|
"aliases": [],
|
|
2525
2888
|
"args": {},
|
|
2526
|
-
"description": "
|
|
2889
|
+
"description": "rename a branch",
|
|
2527
2890
|
"flags": {
|
|
2528
|
-
"
|
|
2529
|
-
"
|
|
2530
|
-
"
|
|
2531
|
-
"
|
|
2891
|
+
"from": {
|
|
2892
|
+
"description": "current name of the branch.",
|
|
2893
|
+
"name": "from",
|
|
2894
|
+
"required": false,
|
|
2895
|
+
"hasDynamicHelp": false,
|
|
2896
|
+
"multiple": false,
|
|
2897
|
+
"type": "option"
|
|
2898
|
+
},
|
|
2899
|
+
"to": {
|
|
2900
|
+
"description": "new name of the branch.",
|
|
2901
|
+
"name": "to",
|
|
2902
|
+
"required": false,
|
|
2532
2903
|
"hasDynamicHelp": false,
|
|
2533
2904
|
"multiple": false,
|
|
2534
|
-
"options": [
|
|
2535
|
-
"android",
|
|
2536
|
-
"ios",
|
|
2537
|
-
"all"
|
|
2538
|
-
],
|
|
2539
2905
|
"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"
|
|
2540
2919
|
}
|
|
2541
2920
|
},
|
|
2542
2921
|
"hasDynamicHelp": false,
|
|
2543
2922
|
"hiddenAliases": [],
|
|
2544
|
-
"id": "
|
|
2923
|
+
"id": "branch:rename",
|
|
2545
2924
|
"pluginAlias": "eas-cli",
|
|
2546
2925
|
"pluginName": "eas-cli",
|
|
2547
2926
|
"pluginType": "core",
|
|
@@ -2588,60 +2967,59 @@
|
|
|
2588
2967
|
}
|
|
2589
2968
|
},
|
|
2590
2969
|
"contextDefinition": {
|
|
2591
|
-
"
|
|
2592
|
-
"
|
|
2593
|
-
"vcsClient": {}
|
|
2970
|
+
"projectId": {},
|
|
2971
|
+
"loggedIn": {}
|
|
2594
2972
|
},
|
|
2595
2973
|
"isESM": false,
|
|
2596
2974
|
"relativePath": [
|
|
2597
2975
|
"build",
|
|
2598
2976
|
"commands",
|
|
2599
|
-
"
|
|
2600
|
-
"
|
|
2977
|
+
"branch",
|
|
2978
|
+
"rename.js"
|
|
2601
2979
|
]
|
|
2602
2980
|
},
|
|
2603
|
-
"
|
|
2981
|
+
"branch:view": {
|
|
2604
2982
|
"aliases": [],
|
|
2605
2983
|
"args": {
|
|
2606
|
-
"
|
|
2607
|
-
"
|
|
2984
|
+
"name": {
|
|
2985
|
+
"description": "Name of the branch to view",
|
|
2986
|
+
"name": "name",
|
|
2987
|
+
"required": false
|
|
2608
2988
|
}
|
|
2609
2989
|
},
|
|
2610
|
-
"description": "
|
|
2990
|
+
"description": "view a branch",
|
|
2611
2991
|
"flags": {
|
|
2612
|
-
"
|
|
2613
|
-
"description": "
|
|
2614
|
-
"name": "
|
|
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",
|
|
2992
|
+
"offset": {
|
|
2993
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2994
|
+
"name": "offset",
|
|
2623
2995
|
"hasDynamicHelp": false,
|
|
2624
2996
|
"multiple": false,
|
|
2625
|
-
"options": [
|
|
2626
|
-
"android",
|
|
2627
|
-
"ios",
|
|
2628
|
-
"all"
|
|
2629
|
-
],
|
|
2630
2997
|
"type": "option"
|
|
2631
2998
|
},
|
|
2632
|
-
"
|
|
2633
|
-
"
|
|
2634
|
-
"
|
|
2635
|
-
"name": "profile",
|
|
2999
|
+
"limit": {
|
|
3000
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
3001
|
+
"name": "limit",
|
|
2636
3002
|
"hasDynamicHelp": false,
|
|
2637
|
-
"helpValue": "PROFILE_NAME",
|
|
2638
3003
|
"multiple": false,
|
|
2639
3004
|
"type": "option"
|
|
3005
|
+
},
|
|
3006
|
+
"json": {
|
|
3007
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3008
|
+
"name": "json",
|
|
3009
|
+
"allowNo": false,
|
|
3010
|
+
"type": "boolean"
|
|
3011
|
+
},
|
|
3012
|
+
"non-interactive": {
|
|
3013
|
+
"description": "Run the command in non-interactive mode.",
|
|
3014
|
+
"name": "non-interactive",
|
|
3015
|
+
"noCacheDefault": true,
|
|
3016
|
+
"allowNo": false,
|
|
3017
|
+
"type": "boolean"
|
|
2640
3018
|
}
|
|
2641
3019
|
},
|
|
2642
3020
|
"hasDynamicHelp": false,
|
|
2643
3021
|
"hiddenAliases": [],
|
|
2644
|
-
"id": "
|
|
3022
|
+
"id": "branch:view",
|
|
2645
3023
|
"pluginAlias": "eas-cli",
|
|
2646
3024
|
"pluginName": "eas-cli",
|
|
2647
3025
|
"pluginType": "core",
|
|
@@ -2689,65 +3067,44 @@
|
|
|
2689
3067
|
},
|
|
2690
3068
|
"contextDefinition": {
|
|
2691
3069
|
"projectId": {},
|
|
2692
|
-
"loggedIn": {}
|
|
2693
|
-
"vcsClient": {}
|
|
3070
|
+
"loggedIn": {}
|
|
2694
3071
|
},
|
|
2695
3072
|
"isESM": false,
|
|
2696
3073
|
"relativePath": [
|
|
2697
3074
|
"build",
|
|
2698
3075
|
"commands",
|
|
2699
|
-
"
|
|
2700
|
-
"
|
|
3076
|
+
"branch",
|
|
3077
|
+
"view.js"
|
|
2701
3078
|
]
|
|
2702
3079
|
},
|
|
2703
|
-
"
|
|
3080
|
+
"channel:create": {
|
|
2704
3081
|
"aliases": [],
|
|
2705
|
-
"args": {
|
|
2706
|
-
|
|
3082
|
+
"args": {
|
|
3083
|
+
"name": {
|
|
3084
|
+
"description": "Name of the channel to create",
|
|
3085
|
+
"name": "name",
|
|
3086
|
+
"required": false
|
|
3087
|
+
}
|
|
3088
|
+
},
|
|
3089
|
+
"description": "create a channel",
|
|
2707
3090
|
"flags": {
|
|
2708
|
-
"
|
|
2709
|
-
"
|
|
2710
|
-
"name": "
|
|
2711
|
-
"hasDynamicHelp": false,
|
|
2712
|
-
"multiple": false,
|
|
2713
|
-
"options": [
|
|
2714
|
-
"ios",
|
|
2715
|
-
"android"
|
|
2716
|
-
],
|
|
2717
|
-
"type": "option"
|
|
2718
|
-
},
|
|
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",
|
|
2723
|
-
"hasDynamicHelp": false,
|
|
2724
|
-
"helpValue": "PROFILE_NAME",
|
|
2725
|
-
"multiple": false,
|
|
2726
|
-
"type": "option"
|
|
2727
|
-
},
|
|
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",
|
|
3091
|
+
"json": {
|
|
3092
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3093
|
+
"name": "json",
|
|
2731
3094
|
"allowNo": false,
|
|
2732
3095
|
"type": "boolean"
|
|
2733
3096
|
},
|
|
2734
|
-
"
|
|
2735
|
-
"description": "
|
|
2736
|
-
"name": "
|
|
3097
|
+
"non-interactive": {
|
|
3098
|
+
"description": "Run the command in non-interactive mode.",
|
|
3099
|
+
"name": "non-interactive",
|
|
3100
|
+
"noCacheDefault": true,
|
|
2737
3101
|
"allowNo": false,
|
|
2738
3102
|
"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"
|
|
2746
3103
|
}
|
|
2747
3104
|
},
|
|
2748
3105
|
"hasDynamicHelp": false,
|
|
2749
3106
|
"hiddenAliases": [],
|
|
2750
|
-
"id": "
|
|
3107
|
+
"id": "channel:create",
|
|
2751
3108
|
"pluginAlias": "eas-cli",
|
|
2752
3109
|
"pluginName": "eas-cli",
|
|
2753
3110
|
"pluginType": "core",
|
|
@@ -2783,92 +3140,39 @@
|
|
|
2783
3140
|
"Analytics": {
|
|
2784
3141
|
"analytics": {}
|
|
2785
3142
|
},
|
|
2786
|
-
"Vcs": {
|
|
2787
|
-
"vcsClient": {}
|
|
2788
|
-
},
|
|
2789
|
-
"ServerSideEnvironmentVariables": {
|
|
2790
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
2791
|
-
},
|
|
2792
|
-
"ProjectId": {
|
|
2793
|
-
"projectId": {}
|
|
2794
|
-
}
|
|
2795
|
-
},
|
|
2796
|
-
"contextDefinition": {
|
|
2797
|
-
"loggedIn": {},
|
|
2798
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
2799
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2800
|
-
"projectDir": {},
|
|
2801
|
-
"vcsClient": {},
|
|
2802
|
-
"analytics": {},
|
|
2803
|
-
"projectId": {}
|
|
2804
|
-
},
|
|
2805
|
-
"isESM": false,
|
|
2806
|
-
"relativePath": [
|
|
2807
|
-
"build",
|
|
2808
|
-
"commands",
|
|
2809
|
-
"build",
|
|
2810
|
-
"dev.js"
|
|
2811
|
-
]
|
|
2812
|
-
},
|
|
2813
|
-
"build:download": {
|
|
2814
|
-
"aliases": [],
|
|
2815
|
-
"args": {},
|
|
2816
|
-
"description": "download a simulator/emulator build by build ID or fingerprint hash",
|
|
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"
|
|
3143
|
+
"Vcs": {
|
|
3144
|
+
"vcsClient": {}
|
|
2865
3145
|
},
|
|
2866
|
-
"
|
|
2867
|
-
"
|
|
2868
|
-
"name": "all-artifacts",
|
|
2869
|
-
"allowNo": false,
|
|
2870
|
-
"type": "boolean"
|
|
3146
|
+
"ServerSideEnvironmentVariables": {
|
|
3147
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
2871
3148
|
},
|
|
3149
|
+
"ProjectId": {
|
|
3150
|
+
"projectId": {}
|
|
3151
|
+
}
|
|
3152
|
+
},
|
|
3153
|
+
"contextDefinition": {
|
|
3154
|
+
"projectId": {},
|
|
3155
|
+
"loggedIn": {}
|
|
3156
|
+
},
|
|
3157
|
+
"isESM": false,
|
|
3158
|
+
"relativePath": [
|
|
3159
|
+
"build",
|
|
3160
|
+
"commands",
|
|
3161
|
+
"channel",
|
|
3162
|
+
"create.js"
|
|
3163
|
+
]
|
|
3164
|
+
},
|
|
3165
|
+
"channel:delete": {
|
|
3166
|
+
"aliases": [],
|
|
3167
|
+
"args": {
|
|
3168
|
+
"name": {
|
|
3169
|
+
"description": "Name of the channel to delete",
|
|
3170
|
+
"name": "name",
|
|
3171
|
+
"required": false
|
|
3172
|
+
}
|
|
3173
|
+
},
|
|
3174
|
+
"description": "Delete a channel",
|
|
3175
|
+
"flags": {
|
|
2872
3176
|
"json": {
|
|
2873
3177
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2874
3178
|
"name": "json",
|
|
@@ -2885,7 +3189,7 @@
|
|
|
2885
3189
|
},
|
|
2886
3190
|
"hasDynamicHelp": false,
|
|
2887
3191
|
"hiddenAliases": [],
|
|
2888
|
-
"id": "
|
|
3192
|
+
"id": "channel:delete",
|
|
2889
3193
|
"pluginAlias": "eas-cli",
|
|
2890
3194
|
"pluginName": "eas-cli",
|
|
2891
3195
|
"pluginType": "core",
|
|
@@ -2932,165 +3236,35 @@
|
|
|
2932
3236
|
}
|
|
2933
3237
|
},
|
|
2934
3238
|
"contextDefinition": {
|
|
2935
|
-
"
|
|
2936
|
-
"
|
|
3239
|
+
"projectId": {},
|
|
3240
|
+
"loggedIn": {}
|
|
2937
3241
|
},
|
|
2938
3242
|
"isESM": false,
|
|
2939
3243
|
"relativePath": [
|
|
2940
3244
|
"build",
|
|
2941
3245
|
"commands",
|
|
2942
|
-
"
|
|
2943
|
-
"
|
|
3246
|
+
"channel",
|
|
3247
|
+
"delete.js"
|
|
2944
3248
|
]
|
|
2945
3249
|
},
|
|
2946
|
-
"
|
|
3250
|
+
"channel:edit": {
|
|
2947
3251
|
"aliases": [],
|
|
2948
|
-
"args": {
|
|
2949
|
-
|
|
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",
|
|
2950
3260
|
"flags": {
|
|
2951
|
-
"
|
|
2952
|
-
"
|
|
2953
|
-
"name": "
|
|
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",
|
|
2966
|
-
"allowNo": false,
|
|
2967
|
-
"type": "boolean"
|
|
2968
|
-
},
|
|
2969
|
-
"skip-project-configuration": {
|
|
2970
|
-
"hidden": true,
|
|
2971
|
-
"name": "skip-project-configuration",
|
|
2972
|
-
"allowNo": false,
|
|
2973
|
-
"type": "boolean"
|
|
2974
|
-
},
|
|
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"
|
|
2983
|
-
},
|
|
2984
|
-
"local": {
|
|
2985
|
-
"description": "Run build locally [experimental]",
|
|
2986
|
-
"name": "local",
|
|
2987
|
-
"allowNo": false,
|
|
2988
|
-
"type": "boolean"
|
|
2989
|
-
},
|
|
2990
|
-
"output": {
|
|
2991
|
-
"description": "Output path for local build",
|
|
2992
|
-
"name": "output",
|
|
2993
|
-
"hasDynamicHelp": false,
|
|
2994
|
-
"multiple": false,
|
|
2995
|
-
"type": "option"
|
|
2996
|
-
},
|
|
2997
|
-
"wait": {
|
|
2998
|
-
"description": "Wait for build(s) to complete",
|
|
2999
|
-
"name": "wait",
|
|
3000
|
-
"allowNo": true,
|
|
3001
|
-
"type": "boolean"
|
|
3002
|
-
},
|
|
3003
|
-
"clear-cache": {
|
|
3004
|
-
"description": "Clear cache before the build",
|
|
3005
|
-
"name": "clear-cache",
|
|
3006
|
-
"allowNo": false,
|
|
3007
|
-
"type": "boolean"
|
|
3008
|
-
},
|
|
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"
|
|
3021
|
-
},
|
|
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"
|
|
3032
|
-
},
|
|
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"
|
|
3039
|
-
},
|
|
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"
|
|
3058
|
-
},
|
|
3059
|
-
"message": {
|
|
3060
|
-
"char": "m",
|
|
3061
|
-
"description": "A short message describing the build",
|
|
3062
|
-
"name": "message",
|
|
3063
|
-
"hasDynamicHelp": false,
|
|
3064
|
-
"multiple": false,
|
|
3065
|
-
"type": "option"
|
|
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",
|
|
3261
|
+
"branch": {
|
|
3262
|
+
"description": "Name of the branch to point to",
|
|
3263
|
+
"name": "branch",
|
|
3070
3264
|
"hasDynamicHelp": false,
|
|
3071
3265
|
"multiple": false,
|
|
3072
|
-
"options": [
|
|
3073
|
-
"trace",
|
|
3074
|
-
"debug",
|
|
3075
|
-
"info",
|
|
3076
|
-
"warn",
|
|
3077
|
-
"error",
|
|
3078
|
-
"fatal"
|
|
3079
|
-
],
|
|
3080
3266
|
"type": "option"
|
|
3081
3267
|
},
|
|
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
|
-
},
|
|
3094
3268
|
"json": {
|
|
3095
3269
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3096
3270
|
"name": "json",
|
|
@@ -3107,7 +3281,7 @@
|
|
|
3107
3281
|
},
|
|
3108
3282
|
"hasDynamicHelp": false,
|
|
3109
3283
|
"hiddenAliases": [],
|
|
3110
|
-
"id": "
|
|
3284
|
+
"id": "channel:edit",
|
|
3111
3285
|
"pluginAlias": "eas-cli",
|
|
3112
3286
|
"pluginName": "eas-cli",
|
|
3113
3287
|
"pluginType": "core",
|
|
@@ -3154,87 +3328,86 @@
|
|
|
3154
3328
|
}
|
|
3155
3329
|
},
|
|
3156
3330
|
"contextDefinition": {
|
|
3157
|
-
"
|
|
3158
|
-
"
|
|
3159
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
3160
|
-
"projectDir": {},
|
|
3161
|
-
"analytics": {},
|
|
3162
|
-
"vcsClient": {}
|
|
3331
|
+
"projectId": {},
|
|
3332
|
+
"loggedIn": {}
|
|
3163
3333
|
},
|
|
3164
3334
|
"isESM": false,
|
|
3165
3335
|
"relativePath": [
|
|
3166
3336
|
"build",
|
|
3167
3337
|
"commands",
|
|
3168
|
-
"
|
|
3169
|
-
"
|
|
3338
|
+
"channel",
|
|
3339
|
+
"edit.js"
|
|
3170
3340
|
]
|
|
3171
3341
|
},
|
|
3172
|
-
"
|
|
3342
|
+
"channel:insights": {
|
|
3173
3343
|
"aliases": [],
|
|
3174
3344
|
"args": {},
|
|
3175
|
-
"description": "
|
|
3345
|
+
"description": "display adoption, crash, and unique-user insights for a channel + runtime version",
|
|
3176
3346
|
"flags": {
|
|
3177
|
-
"
|
|
3178
|
-
"
|
|
3179
|
-
"name": "
|
|
3347
|
+
"channel": {
|
|
3348
|
+
"description": "Name of the channel.",
|
|
3349
|
+
"name": "channel",
|
|
3180
3350
|
"required": true,
|
|
3181
3351
|
"hasDynamicHelp": false,
|
|
3182
3352
|
"multiple": false,
|
|
3183
|
-
"options": [
|
|
3184
|
-
"android",
|
|
3185
|
-
"ios"
|
|
3186
|
-
],
|
|
3187
3353
|
"type": "option"
|
|
3188
3354
|
},
|
|
3189
|
-
"
|
|
3190
|
-
"
|
|
3191
|
-
"
|
|
3192
|
-
"
|
|
3355
|
+
"runtime-version": {
|
|
3356
|
+
"description": "Runtime version to query insights for.",
|
|
3357
|
+
"name": "runtime-version",
|
|
3358
|
+
"required": true,
|
|
3193
3359
|
"hasDynamicHelp": false,
|
|
3194
|
-
"helpValue": "PROFILE_NAME",
|
|
3195
3360
|
"multiple": false,
|
|
3196
3361
|
"type": "option"
|
|
3197
3362
|
},
|
|
3198
|
-
"
|
|
3199
|
-
"
|
|
3200
|
-
"
|
|
3201
|
-
|
|
3202
|
-
|
|
3363
|
+
"days": {
|
|
3364
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
3365
|
+
"exclusive": [
|
|
3366
|
+
"start",
|
|
3367
|
+
"end"
|
|
3368
|
+
],
|
|
3369
|
+
"name": "days",
|
|
3203
3370
|
"hasDynamicHelp": false,
|
|
3204
3371
|
"multiple": false,
|
|
3205
|
-
"
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3372
|
+
"type": "option"
|
|
3373
|
+
},
|
|
3374
|
+
"start": {
|
|
3375
|
+
"description": "Start of insights time range (ISO date).",
|
|
3376
|
+
"exclusive": [
|
|
3377
|
+
"days"
|
|
3209
3378
|
],
|
|
3379
|
+
"name": "start",
|
|
3380
|
+
"hasDynamicHelp": false,
|
|
3381
|
+
"multiple": false,
|
|
3210
3382
|
"type": "option"
|
|
3211
3383
|
},
|
|
3212
|
-
"
|
|
3213
|
-
"
|
|
3214
|
-
"
|
|
3215
|
-
|
|
3216
|
-
|
|
3384
|
+
"end": {
|
|
3385
|
+
"description": "End of insights time range (ISO date).",
|
|
3386
|
+
"exclusive": [
|
|
3387
|
+
"days"
|
|
3388
|
+
],
|
|
3389
|
+
"name": "end",
|
|
3217
3390
|
"hasDynamicHelp": false,
|
|
3218
|
-
"helpValue": "OUTPUT_DIRECTORY",
|
|
3219
3391
|
"multiple": false,
|
|
3220
3392
|
"type": "option"
|
|
3221
3393
|
},
|
|
3222
|
-
"
|
|
3223
|
-
"description": "
|
|
3224
|
-
"name": "
|
|
3394
|
+
"json": {
|
|
3395
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3396
|
+
"name": "json",
|
|
3225
3397
|
"allowNo": false,
|
|
3226
3398
|
"type": "boolean"
|
|
3227
3399
|
},
|
|
3228
|
-
"
|
|
3229
|
-
"
|
|
3230
|
-
"name": "
|
|
3400
|
+
"non-interactive": {
|
|
3401
|
+
"description": "Run the command in non-interactive mode.",
|
|
3402
|
+
"name": "non-interactive",
|
|
3403
|
+
"noCacheDefault": true,
|
|
3231
3404
|
"allowNo": false,
|
|
3232
3405
|
"type": "boolean"
|
|
3233
3406
|
}
|
|
3234
3407
|
},
|
|
3235
3408
|
"hasDynamicHelp": false,
|
|
3236
3409
|
"hiddenAliases": [],
|
|
3237
|
-
"id": "
|
|
3410
|
+
"id": "channel:insights",
|
|
3238
3411
|
"pluginAlias": "eas-cli",
|
|
3239
3412
|
"pluginName": "eas-cli",
|
|
3240
3413
|
"pluginType": "core",
|
|
@@ -3281,71 +3454,53 @@
|
|
|
3281
3454
|
}
|
|
3282
3455
|
},
|
|
3283
3456
|
"contextDefinition": {
|
|
3284
|
-
"
|
|
3285
|
-
"
|
|
3286
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
3287
|
-
"projectDir": {},
|
|
3288
|
-
"analytics": {},
|
|
3289
|
-
"vcsClient": {}
|
|
3457
|
+
"projectId": {},
|
|
3458
|
+
"loggedIn": {}
|
|
3290
3459
|
},
|
|
3291
3460
|
"isESM": false,
|
|
3292
3461
|
"relativePath": [
|
|
3293
3462
|
"build",
|
|
3294
3463
|
"commands",
|
|
3295
|
-
"
|
|
3296
|
-
"
|
|
3464
|
+
"channel",
|
|
3465
|
+
"insights.js"
|
|
3297
3466
|
]
|
|
3298
3467
|
},
|
|
3299
|
-
"
|
|
3468
|
+
"channel:list": {
|
|
3300
3469
|
"aliases": [],
|
|
3301
3470
|
"args": {},
|
|
3471
|
+
"description": "list all channels",
|
|
3302
3472
|
"flags": {
|
|
3303
|
-
"
|
|
3304
|
-
"
|
|
3305
|
-
"name": "
|
|
3306
|
-
"required": true,
|
|
3473
|
+
"offset": {
|
|
3474
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3475
|
+
"name": "offset",
|
|
3307
3476
|
"hasDynamicHelp": false,
|
|
3308
3477
|
"multiple": false,
|
|
3309
|
-
"options": [
|
|
3310
|
-
"android",
|
|
3311
|
-
"ios"
|
|
3312
|
-
],
|
|
3313
3478
|
"type": "option"
|
|
3314
3479
|
},
|
|
3315
|
-
"
|
|
3316
|
-
"
|
|
3317
|
-
"
|
|
3318
|
-
"name": "profile",
|
|
3480
|
+
"limit": {
|
|
3481
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
|
|
3482
|
+
"name": "limit",
|
|
3319
3483
|
"hasDynamicHelp": false,
|
|
3320
|
-
"helpValue": "PROFILE_NAME",
|
|
3321
3484
|
"multiple": false,
|
|
3322
3485
|
"type": "option"
|
|
3323
3486
|
},
|
|
3324
|
-
"
|
|
3325
|
-
"description": "
|
|
3326
|
-
"
|
|
3327
|
-
"auto-submit-with-profile"
|
|
3328
|
-
],
|
|
3329
|
-
"name": "auto-submit",
|
|
3487
|
+
"json": {
|
|
3488
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3489
|
+
"name": "json",
|
|
3330
3490
|
"allowNo": false,
|
|
3331
3491
|
"type": "boolean"
|
|
3332
3492
|
},
|
|
3333
|
-
"
|
|
3334
|
-
"description": "
|
|
3335
|
-
"
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
"
|
|
3339
|
-
"hasDynamicHelp": false,
|
|
3340
|
-
"helpValue": "PROFILE_NAME",
|
|
3341
|
-
"multiple": false,
|
|
3342
|
-
"type": "option"
|
|
3493
|
+
"non-interactive": {
|
|
3494
|
+
"description": "Run the command in non-interactive mode.",
|
|
3495
|
+
"name": "non-interactive",
|
|
3496
|
+
"noCacheDefault": true,
|
|
3497
|
+
"allowNo": false,
|
|
3498
|
+
"type": "boolean"
|
|
3343
3499
|
}
|
|
3344
3500
|
},
|
|
3345
3501
|
"hasDynamicHelp": false,
|
|
3346
|
-
"hidden": true,
|
|
3347
3502
|
"hiddenAliases": [],
|
|
3348
|
-
"id": "
|
|
3503
|
+
"id": "channel:list",
|
|
3349
3504
|
"pluginAlias": "eas-cli",
|
|
3350
3505
|
"pluginName": "eas-cli",
|
|
3351
3506
|
"pluginType": "core",
|
|
@@ -3392,161 +3547,31 @@
|
|
|
3392
3547
|
}
|
|
3393
3548
|
},
|
|
3394
3549
|
"contextDefinition": {
|
|
3395
|
-
"
|
|
3396
|
-
"
|
|
3397
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
3398
|
-
"projectDir": {},
|
|
3399
|
-
"analytics": {},
|
|
3400
|
-
"vcsClient": {}
|
|
3550
|
+
"projectId": {},
|
|
3551
|
+
"loggedIn": {}
|
|
3401
3552
|
},
|
|
3402
3553
|
"isESM": false,
|
|
3403
3554
|
"relativePath": [
|
|
3404
3555
|
"build",
|
|
3405
3556
|
"commands",
|
|
3406
|
-
"
|
|
3407
|
-
"
|
|
3557
|
+
"channel",
|
|
3558
|
+
"list.js"
|
|
3408
3559
|
]
|
|
3409
3560
|
},
|
|
3410
|
-
"
|
|
3411
|
-
"aliases": [],
|
|
3412
|
-
"args": {
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
"
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
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",
|
|
3561
|
+
"channel:pause": {
|
|
3562
|
+
"aliases": [],
|
|
3563
|
+
"args": {
|
|
3564
|
+
"name": {
|
|
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",
|
|
3571
|
+
"flags": {
|
|
3572
|
+
"branch": {
|
|
3573
|
+
"description": "Name of the branch to point to",
|
|
3574
|
+
"name": "branch",
|
|
3550
3575
|
"hasDynamicHelp": false,
|
|
3551
3576
|
"multiple": false,
|
|
3552
3577
|
"type": "option"
|
|
@@ -3563,17 +3588,11 @@
|
|
|
3563
3588
|
"noCacheDefault": true,
|
|
3564
3589
|
"allowNo": false,
|
|
3565
3590
|
"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"
|
|
3572
3591
|
}
|
|
3573
3592
|
},
|
|
3574
3593
|
"hasDynamicHelp": false,
|
|
3575
3594
|
"hiddenAliases": [],
|
|
3576
|
-
"id": "
|
|
3595
|
+
"id": "channel:pause",
|
|
3577
3596
|
"pluginAlias": "eas-cli",
|
|
3578
3597
|
"pluginName": "eas-cli",
|
|
3579
3598
|
"pluginType": "core",
|
|
@@ -3621,76 +3640,30 @@
|
|
|
3621
3640
|
},
|
|
3622
3641
|
"contextDefinition": {
|
|
3623
3642
|
"projectId": {},
|
|
3624
|
-
"loggedIn": {}
|
|
3625
|
-
"vcsClient": {}
|
|
3643
|
+
"loggedIn": {}
|
|
3626
3644
|
},
|
|
3627
3645
|
"isESM": false,
|
|
3628
3646
|
"relativePath": [
|
|
3629
3647
|
"build",
|
|
3630
3648
|
"commands",
|
|
3631
|
-
"
|
|
3632
|
-
"
|
|
3649
|
+
"channel",
|
|
3650
|
+
"pause.js"
|
|
3633
3651
|
]
|
|
3634
3652
|
},
|
|
3635
|
-
"
|
|
3653
|
+
"channel:resume": {
|
|
3636
3654
|
"aliases": [],
|
|
3637
|
-
"args": {
|
|
3638
|
-
|
|
3655
|
+
"args": {
|
|
3656
|
+
"name": {
|
|
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",
|
|
3639
3663
|
"flags": {
|
|
3640
|
-
"
|
|
3641
|
-
"
|
|
3642
|
-
"name": "
|
|
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",
|
|
3664
|
+
"branch": {
|
|
3665
|
+
"description": "Name of the branch to point to",
|
|
3666
|
+
"name": "branch",
|
|
3694
3667
|
"hasDynamicHelp": false,
|
|
3695
3668
|
"multiple": false,
|
|
3696
3669
|
"type": "option"
|
|
@@ -3711,7 +3684,7 @@
|
|
|
3711
3684
|
},
|
|
3712
3685
|
"hasDynamicHelp": false,
|
|
3713
3686
|
"hiddenAliases": [],
|
|
3714
|
-
"id": "
|
|
3687
|
+
"id": "channel:resume",
|
|
3715
3688
|
"pluginAlias": "eas-cli",
|
|
3716
3689
|
"pluginName": "eas-cli",
|
|
3717
3690
|
"pluginType": "core",
|
|
@@ -3758,116 +3731,121 @@
|
|
|
3758
3731
|
}
|
|
3759
3732
|
},
|
|
3760
3733
|
"contextDefinition": {
|
|
3761
|
-
"
|
|
3762
|
-
"
|
|
3763
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
3764
|
-
"projectDir": {},
|
|
3765
|
-
"analytics": {},
|
|
3766
|
-
"vcsClient": {}
|
|
3734
|
+
"projectId": {},
|
|
3735
|
+
"loggedIn": {}
|
|
3767
3736
|
},
|
|
3768
3737
|
"isESM": false,
|
|
3769
3738
|
"relativePath": [
|
|
3770
3739
|
"build",
|
|
3771
3740
|
"commands",
|
|
3772
|
-
"
|
|
3773
|
-
"
|
|
3741
|
+
"channel",
|
|
3742
|
+
"resume.js"
|
|
3774
3743
|
]
|
|
3775
3744
|
},
|
|
3776
|
-
"
|
|
3745
|
+
"channel:rollout": {
|
|
3777
3746
|
"aliases": [],
|
|
3778
|
-
"args": {
|
|
3779
|
-
|
|
3747
|
+
"args": {
|
|
3748
|
+
"channel": {
|
|
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.",
|
|
3780
3754
|
"flags": {
|
|
3781
|
-
"
|
|
3782
|
-
"description": "
|
|
3783
|
-
"
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3755
|
+
"action": {
|
|
3756
|
+
"description": "Rollout action to perform",
|
|
3757
|
+
"name": "action",
|
|
3758
|
+
"relationships": [
|
|
3759
|
+
{
|
|
3760
|
+
"type": "all",
|
|
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
|
+
}
|
|
3798
3776
|
],
|
|
3799
|
-
"
|
|
3777
|
+
"required": false,
|
|
3800
3778
|
"hasDynamicHelp": false,
|
|
3801
3779
|
"multiple": false,
|
|
3802
|
-
"
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
"latest",
|
|
3808
|
-
"id",
|
|
3809
|
-
"url"
|
|
3780
|
+
"options": [
|
|
3781
|
+
"create",
|
|
3782
|
+
"edit",
|
|
3783
|
+
"end",
|
|
3784
|
+
"view"
|
|
3810
3785
|
],
|
|
3811
|
-
"name": "path",
|
|
3812
|
-
"hasDynamicHelp": false,
|
|
3813
|
-
"multiple": false,
|
|
3814
3786
|
"type": "option"
|
|
3815
3787
|
},
|
|
3816
|
-
"
|
|
3817
|
-
"description": "
|
|
3818
|
-
"
|
|
3819
|
-
|
|
3820
|
-
],
|
|
3821
|
-
"name": "id",
|
|
3788
|
+
"percent": {
|
|
3789
|
+
"description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
|
|
3790
|
+
"name": "percent",
|
|
3791
|
+
"required": false,
|
|
3822
3792
|
"hasDynamicHelp": false,
|
|
3823
3793
|
"multiple": false,
|
|
3824
3794
|
"type": "option"
|
|
3825
3795
|
},
|
|
3826
|
-
"
|
|
3827
|
-
"
|
|
3828
|
-
"name": "
|
|
3796
|
+
"outcome": {
|
|
3797
|
+
"description": "End outcome of rollout. Use with --action=end",
|
|
3798
|
+
"name": "outcome",
|
|
3799
|
+
"required": false,
|
|
3829
3800
|
"hasDynamicHelp": false,
|
|
3830
3801
|
"multiple": false,
|
|
3831
3802
|
"options": [
|
|
3832
|
-
"
|
|
3833
|
-
"
|
|
3803
|
+
"republish-and-revert",
|
|
3804
|
+
"revert"
|
|
3834
3805
|
],
|
|
3835
3806
|
"type": "option"
|
|
3836
3807
|
},
|
|
3837
|
-
"
|
|
3838
|
-
"
|
|
3839
|
-
"
|
|
3840
|
-
"
|
|
3808
|
+
"branch": {
|
|
3809
|
+
"description": "Branch to roll out. Use with --action=create",
|
|
3810
|
+
"name": "branch",
|
|
3811
|
+
"required": false,
|
|
3841
3812
|
"hasDynamicHelp": false,
|
|
3842
|
-
"helpValue": "PROFILE_NAME",
|
|
3843
3813
|
"multiple": false,
|
|
3844
3814
|
"type": "option"
|
|
3845
3815
|
},
|
|
3846
|
-
"
|
|
3847
|
-
"description": "
|
|
3848
|
-
"name": "
|
|
3816
|
+
"runtime-version": {
|
|
3817
|
+
"description": "Runtime version to target. Use with --action=create",
|
|
3818
|
+
"name": "runtime-version",
|
|
3819
|
+
"required": false,
|
|
3849
3820
|
"hasDynamicHelp": false,
|
|
3850
3821
|
"multiple": false,
|
|
3851
3822
|
"type": "option"
|
|
3852
3823
|
},
|
|
3853
|
-
"
|
|
3854
|
-
"description": "
|
|
3855
|
-
"name": "
|
|
3824
|
+
"private-key-path": {
|
|
3825
|
+
"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/",
|
|
3826
|
+
"name": "private-key-path",
|
|
3827
|
+
"required": false,
|
|
3856
3828
|
"hasDynamicHelp": false,
|
|
3857
3829
|
"multiple": false,
|
|
3858
3830
|
"type": "option"
|
|
3859
3831
|
},
|
|
3860
|
-
"
|
|
3861
|
-
"description": "
|
|
3862
|
-
"name": "
|
|
3863
|
-
"
|
|
3864
|
-
"
|
|
3865
|
-
|
|
3832
|
+
"json": {
|
|
3833
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3834
|
+
"name": "json",
|
|
3835
|
+
"allowNo": false,
|
|
3836
|
+
"type": "boolean"
|
|
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"
|
|
3866
3844
|
}
|
|
3867
3845
|
},
|
|
3868
3846
|
"hasDynamicHelp": false,
|
|
3869
3847
|
"hiddenAliases": [],
|
|
3870
|
-
"id": "
|
|
3848
|
+
"id": "channel:rollout",
|
|
3871
3849
|
"pluginAlias": "eas-cli",
|
|
3872
3850
|
"pluginName": "eas-cli",
|
|
3873
3851
|
"pluginType": "core",
|
|
@@ -3915,36 +3893,59 @@
|
|
|
3915
3893
|
},
|
|
3916
3894
|
"contextDefinition": {
|
|
3917
3895
|
"loggedIn": {},
|
|
3918
|
-
"
|
|
3896
|
+
"privateProjectConfig": {},
|
|
3919
3897
|
"vcsClient": {}
|
|
3920
3898
|
},
|
|
3921
3899
|
"isESM": false,
|
|
3922
3900
|
"relativePath": [
|
|
3923
3901
|
"build",
|
|
3924
3902
|
"commands",
|
|
3925
|
-
"
|
|
3926
|
-
"
|
|
3903
|
+
"channel",
|
|
3904
|
+
"rollout.js"
|
|
3927
3905
|
]
|
|
3928
3906
|
},
|
|
3929
|
-
"
|
|
3907
|
+
"channel:view": {
|
|
3930
3908
|
"aliases": [],
|
|
3931
3909
|
"args": {
|
|
3932
|
-
"
|
|
3933
|
-
"
|
|
3910
|
+
"name": {
|
|
3911
|
+
"description": "Name of the channel to view",
|
|
3912
|
+
"name": "name",
|
|
3913
|
+
"required": false
|
|
3934
3914
|
}
|
|
3935
3915
|
},
|
|
3936
|
-
"description": "view a
|
|
3916
|
+
"description": "view a channel",
|
|
3937
3917
|
"flags": {
|
|
3938
3918
|
"json": {
|
|
3939
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
3919
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3940
3920
|
"name": "json",
|
|
3941
3921
|
"allowNo": false,
|
|
3942
3922
|
"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"
|
|
3943
3944
|
}
|
|
3944
3945
|
},
|
|
3945
3946
|
"hasDynamicHelp": false,
|
|
3946
3947
|
"hiddenAliases": [],
|
|
3947
|
-
"id": "
|
|
3948
|
+
"id": "channel:view",
|
|
3948
3949
|
"pluginAlias": "eas-cli",
|
|
3949
3950
|
"pluginName": "eas-cli",
|
|
3950
3951
|
"pluginType": "core",
|
|
@@ -3992,14 +3993,13 @@
|
|
|
3992
3993
|
},
|
|
3993
3994
|
"contextDefinition": {
|
|
3994
3995
|
"projectId": {},
|
|
3995
|
-
"loggedIn": {}
|
|
3996
|
-
"vcsClient": {}
|
|
3996
|
+
"loggedIn": {}
|
|
3997
3997
|
},
|
|
3998
3998
|
"isESM": false,
|
|
3999
3999
|
"relativePath": [
|
|
4000
4000
|
"build",
|
|
4001
4001
|
"commands",
|
|
4002
|
-
"
|
|
4002
|
+
"channel",
|
|
4003
4003
|
"view.js"
|
|
4004
4004
|
]
|
|
4005
4005
|
},
|
|
@@ -6871,6 +6871,13 @@
|
|
|
6871
6871
|
"multiple": false,
|
|
6872
6872
|
"type": "option"
|
|
6873
6873
|
},
|
|
6874
|
+
"route-name": {
|
|
6875
|
+
"description": "Filter by route name (can be specified multiple times to include several routes)",
|
|
6876
|
+
"name": "route-name",
|
|
6877
|
+
"hasDynamicHelp": false,
|
|
6878
|
+
"multiple": true,
|
|
6879
|
+
"type": "option"
|
|
6880
|
+
},
|
|
6874
6881
|
"project-id": {
|
|
6875
6882
|
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6876
6883
|
"name": "project-id",
|
|
@@ -7401,54 +7408,19 @@
|
|
|
7401
7408
|
"onboarding.js"
|
|
7402
7409
|
]
|
|
7403
7410
|
},
|
|
7404
|
-
"
|
|
7411
|
+
"simulator:get": {
|
|
7405
7412
|
"aliases": [],
|
|
7406
7413
|
"args": {},
|
|
7407
|
-
"description": "
|
|
7414
|
+
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7408
7415
|
"flags": {
|
|
7409
|
-
"
|
|
7410
|
-
"description": "
|
|
7411
|
-
"name": "
|
|
7412
|
-
"
|
|
7413
|
-
"hasDynamicHelp": false,
|
|
7414
|
-
"multiple": false,
|
|
7415
|
-
"options": [
|
|
7416
|
-
"account",
|
|
7417
|
-
"project"
|
|
7418
|
-
],
|
|
7419
|
-
"type": "option"
|
|
7420
|
-
},
|
|
7421
|
-
"name": {
|
|
7422
|
-
"description": "Name of the secret",
|
|
7423
|
-
"name": "name",
|
|
7424
|
-
"hasDynamicHelp": false,
|
|
7425
|
-
"multiple": false,
|
|
7426
|
-
"type": "option"
|
|
7427
|
-
},
|
|
7428
|
-
"value": {
|
|
7429
|
-
"description": "Text value or path to a file to store in the secret",
|
|
7430
|
-
"name": "value",
|
|
7431
|
-
"hasDynamicHelp": false,
|
|
7432
|
-
"multiple": false,
|
|
7433
|
-
"type": "option"
|
|
7434
|
-
},
|
|
7435
|
-
"type": {
|
|
7436
|
-
"description": "The type of secret",
|
|
7437
|
-
"name": "type",
|
|
7416
|
+
"id": {
|
|
7417
|
+
"description": "Device run session ID",
|
|
7418
|
+
"name": "id",
|
|
7419
|
+
"required": true,
|
|
7438
7420
|
"hasDynamicHelp": false,
|
|
7439
7421
|
"multiple": false,
|
|
7440
|
-
"options": [
|
|
7441
|
-
"string",
|
|
7442
|
-
"file"
|
|
7443
|
-
],
|
|
7444
7422
|
"type": "option"
|
|
7445
7423
|
},
|
|
7446
|
-
"force": {
|
|
7447
|
-
"description": "Delete and recreate existing secrets",
|
|
7448
|
-
"name": "force",
|
|
7449
|
-
"allowNo": false,
|
|
7450
|
-
"type": "boolean"
|
|
7451
|
-
},
|
|
7452
7424
|
"non-interactive": {
|
|
7453
7425
|
"description": "Run the command in non-interactive mode.",
|
|
7454
7426
|
"name": "non-interactive",
|
|
@@ -7460,7 +7432,7 @@
|
|
|
7460
7432
|
"hasDynamicHelp": false,
|
|
7461
7433
|
"hidden": true,
|
|
7462
7434
|
"hiddenAliases": [],
|
|
7463
|
-
"id": "
|
|
7435
|
+
"id": "simulator:get",
|
|
7464
7436
|
"pluginAlias": "eas-cli",
|
|
7465
7437
|
"pluginName": "eas-cli",
|
|
7466
7438
|
"pluginType": "core",
|
|
@@ -7507,25 +7479,48 @@
|
|
|
7507
7479
|
}
|
|
7508
7480
|
},
|
|
7509
7481
|
"contextDefinition": {
|
|
7510
|
-
"projectId": {},
|
|
7511
7482
|
"loggedIn": {}
|
|
7512
7483
|
},
|
|
7513
7484
|
"isESM": false,
|
|
7514
7485
|
"relativePath": [
|
|
7515
7486
|
"build",
|
|
7516
7487
|
"commands",
|
|
7517
|
-
"
|
|
7518
|
-
"
|
|
7488
|
+
"simulator",
|
|
7489
|
+
"get.js"
|
|
7519
7490
|
]
|
|
7520
7491
|
},
|
|
7521
|
-
"
|
|
7492
|
+
"simulator:start": {
|
|
7522
7493
|
"aliases": [],
|
|
7523
7494
|
"args": {},
|
|
7524
|
-
"description": "
|
|
7495
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7525
7496
|
"flags": {
|
|
7526
|
-
"
|
|
7527
|
-
"description": "
|
|
7528
|
-
"name": "
|
|
7497
|
+
"platform": {
|
|
7498
|
+
"description": "Device platform",
|
|
7499
|
+
"name": "platform",
|
|
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",
|
|
7529
7524
|
"hasDynamicHelp": false,
|
|
7530
7525
|
"multiple": false,
|
|
7531
7526
|
"type": "option"
|
|
@@ -7541,7 +7536,7 @@
|
|
|
7541
7536
|
"hasDynamicHelp": false,
|
|
7542
7537
|
"hidden": true,
|
|
7543
7538
|
"hiddenAliases": [],
|
|
7544
|
-
"id": "
|
|
7539
|
+
"id": "simulator:start",
|
|
7545
7540
|
"pluginAlias": "eas-cli",
|
|
7546
7541
|
"pluginName": "eas-cli",
|
|
7547
7542
|
"pluginType": "core",
|
|
@@ -7595,19 +7590,35 @@
|
|
|
7595
7590
|
"relativePath": [
|
|
7596
7591
|
"build",
|
|
7597
7592
|
"commands",
|
|
7598
|
-
"
|
|
7599
|
-
"
|
|
7593
|
+
"simulator",
|
|
7594
|
+
"start.js"
|
|
7600
7595
|
]
|
|
7601
7596
|
},
|
|
7602
|
-
"
|
|
7597
|
+
"simulator:stop": {
|
|
7603
7598
|
"aliases": [],
|
|
7604
7599
|
"args": {},
|
|
7605
|
-
"description": "
|
|
7606
|
-
"flags": {
|
|
7600
|
+
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
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
|
+
},
|
|
7607
7618
|
"hasDynamicHelp": false,
|
|
7608
7619
|
"hidden": true,
|
|
7609
7620
|
"hiddenAliases": [],
|
|
7610
|
-
"id": "
|
|
7621
|
+
"id": "simulator:stop",
|
|
7611
7622
|
"pluginAlias": "eas-cli",
|
|
7612
7623
|
"pluginName": "eas-cli",
|
|
7613
7624
|
"pluginType": "core",
|
|
@@ -7654,24 +7665,23 @@
|
|
|
7654
7665
|
}
|
|
7655
7666
|
},
|
|
7656
7667
|
"contextDefinition": {
|
|
7657
|
-
"projectId": {},
|
|
7658
7668
|
"loggedIn": {}
|
|
7659
7669
|
},
|
|
7660
7670
|
"isESM": false,
|
|
7661
7671
|
"relativePath": [
|
|
7662
7672
|
"build",
|
|
7663
7673
|
"commands",
|
|
7664
|
-
"
|
|
7665
|
-
"
|
|
7674
|
+
"simulator",
|
|
7675
|
+
"stop.js"
|
|
7666
7676
|
]
|
|
7667
7677
|
},
|
|
7668
|
-
"secret:
|
|
7678
|
+
"secret:create": {
|
|
7669
7679
|
"aliases": [],
|
|
7670
7680
|
"args": {},
|
|
7671
|
-
"description": "
|
|
7681
|
+
"description": "create an environment secret on the current project or owner account",
|
|
7672
7682
|
"flags": {
|
|
7673
7683
|
"scope": {
|
|
7674
|
-
"description": "Scope for the
|
|
7684
|
+
"description": "Scope for the secret",
|
|
7675
7685
|
"name": "scope",
|
|
7676
7686
|
"default": "project",
|
|
7677
7687
|
"hasDynamicHelp": false,
|
|
@@ -7682,11 +7692,29 @@
|
|
|
7682
7692
|
],
|
|
7683
7693
|
"type": "option"
|
|
7684
7694
|
},
|
|
7685
|
-
"
|
|
7686
|
-
"description": "
|
|
7687
|
-
"name": "
|
|
7695
|
+
"name": {
|
|
7696
|
+
"description": "Name of the secret",
|
|
7697
|
+
"name": "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",
|
|
7688
7712
|
"hasDynamicHelp": false,
|
|
7689
7713
|
"multiple": false,
|
|
7714
|
+
"options": [
|
|
7715
|
+
"string",
|
|
7716
|
+
"file"
|
|
7717
|
+
],
|
|
7690
7718
|
"type": "option"
|
|
7691
7719
|
},
|
|
7692
7720
|
"force": {
|
|
@@ -7706,7 +7734,7 @@
|
|
|
7706
7734
|
"hasDynamicHelp": false,
|
|
7707
7735
|
"hidden": true,
|
|
7708
7736
|
"hiddenAliases": [],
|
|
7709
|
-
"id": "secret:
|
|
7737
|
+
"id": "secret:create",
|
|
7710
7738
|
"pluginAlias": "eas-cli",
|
|
7711
7739
|
"pluginName": "eas-cli",
|
|
7712
7740
|
"pluginType": "core",
|
|
@@ -7761,18 +7789,17 @@
|
|
|
7761
7789
|
"build",
|
|
7762
7790
|
"commands",
|
|
7763
7791
|
"secret",
|
|
7764
|
-
"
|
|
7792
|
+
"create.js"
|
|
7765
7793
|
]
|
|
7766
7794
|
},
|
|
7767
|
-
"
|
|
7795
|
+
"secret:delete": {
|
|
7768
7796
|
"aliases": [],
|
|
7769
7797
|
"args": {},
|
|
7770
|
-
"description": "
|
|
7798
|
+
"description": "delete an environment secret by ID",
|
|
7771
7799
|
"flags": {
|
|
7772
7800
|
"id": {
|
|
7773
|
-
"description": "
|
|
7801
|
+
"description": "ID of the secret to delete",
|
|
7774
7802
|
"name": "id",
|
|
7775
|
-
"required": true,
|
|
7776
7803
|
"hasDynamicHelp": false,
|
|
7777
7804
|
"multiple": false,
|
|
7778
7805
|
"type": "option"
|
|
@@ -7788,7 +7815,7 @@
|
|
|
7788
7815
|
"hasDynamicHelp": false,
|
|
7789
7816
|
"hidden": true,
|
|
7790
7817
|
"hiddenAliases": [],
|
|
7791
|
-
"id": "
|
|
7818
|
+
"id": "secret:delete",
|
|
7792
7819
|
"pluginAlias": "eas-cli",
|
|
7793
7820
|
"pluginName": "eas-cli",
|
|
7794
7821
|
"pluginType": "core",
|
|
@@ -7827,72 +7854,34 @@
|
|
|
7827
7854
|
"Vcs": {
|
|
7828
7855
|
"vcsClient": {}
|
|
7829
7856
|
},
|
|
7830
|
-
"ServerSideEnvironmentVariables": {
|
|
7831
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
7832
|
-
},
|
|
7833
|
-
"ProjectId": {
|
|
7834
|
-
"projectId": {}
|
|
7835
|
-
}
|
|
7836
|
-
},
|
|
7837
|
-
"contextDefinition": {
|
|
7838
|
-
"loggedIn": {}
|
|
7839
|
-
},
|
|
7840
|
-
"isESM": false,
|
|
7841
|
-
"relativePath": [
|
|
7842
|
-
"build",
|
|
7843
|
-
"commands",
|
|
7844
|
-
"simulator",
|
|
7845
|
-
"get.js"
|
|
7846
|
-
]
|
|
7847
|
-
},
|
|
7848
|
-
"simulator:start": {
|
|
7849
|
-
"aliases": [],
|
|
7850
|
-
"args": {},
|
|
7851
|
-
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7852
|
-
"flags": {
|
|
7853
|
-
"platform": {
|
|
7854
|
-
"description": "Device platform",
|
|
7855
|
-
"name": "platform",
|
|
7856
|
-
"required": true,
|
|
7857
|
-
"hasDynamicHelp": false,
|
|
7858
|
-
"multiple": false,
|
|
7859
|
-
"options": [
|
|
7860
|
-
"android",
|
|
7861
|
-
"ios"
|
|
7862
|
-
],
|
|
7863
|
-
"type": "option"
|
|
7864
|
-
},
|
|
7865
|
-
"type": {
|
|
7866
|
-
"description": "Type of device run session to create",
|
|
7867
|
-
"name": "type",
|
|
7868
|
-
"default": "agent-device",
|
|
7869
|
-
"hasDynamicHelp": false,
|
|
7870
|
-
"multiple": false,
|
|
7871
|
-
"options": [
|
|
7872
|
-
"agent-device",
|
|
7873
|
-
"serve-sim"
|
|
7874
|
-
],
|
|
7875
|
-
"type": "option"
|
|
7876
|
-
},
|
|
7877
|
-
"package-version": {
|
|
7878
|
-
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7879
|
-
"name": "package-version",
|
|
7880
|
-
"hasDynamicHelp": false,
|
|
7881
|
-
"multiple": false,
|
|
7882
|
-
"type": "option"
|
|
7883
|
-
},
|
|
7884
|
-
"non-interactive": {
|
|
7885
|
-
"description": "Run the command in non-interactive mode.",
|
|
7886
|
-
"name": "non-interactive",
|
|
7887
|
-
"noCacheDefault": true,
|
|
7888
|
-
"allowNo": false,
|
|
7889
|
-
"type": "boolean"
|
|
7857
|
+
"ServerSideEnvironmentVariables": {
|
|
7858
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
7859
|
+
},
|
|
7860
|
+
"ProjectId": {
|
|
7861
|
+
"projectId": {}
|
|
7890
7862
|
}
|
|
7891
7863
|
},
|
|
7864
|
+
"contextDefinition": {
|
|
7865
|
+
"projectId": {},
|
|
7866
|
+
"loggedIn": {}
|
|
7867
|
+
},
|
|
7868
|
+
"isESM": false,
|
|
7869
|
+
"relativePath": [
|
|
7870
|
+
"build",
|
|
7871
|
+
"commands",
|
|
7872
|
+
"secret",
|
|
7873
|
+
"delete.js"
|
|
7874
|
+
]
|
|
7875
|
+
},
|
|
7876
|
+
"secret:list": {
|
|
7877
|
+
"aliases": [],
|
|
7878
|
+
"args": {},
|
|
7879
|
+
"description": "list environment secrets available for your current app",
|
|
7880
|
+
"flags": {},
|
|
7892
7881
|
"hasDynamicHelp": false,
|
|
7893
7882
|
"hidden": true,
|
|
7894
7883
|
"hiddenAliases": [],
|
|
7895
|
-
"id": "
|
|
7884
|
+
"id": "secret:list",
|
|
7896
7885
|
"pluginAlias": "eas-cli",
|
|
7897
7886
|
"pluginName": "eas-cli",
|
|
7898
7887
|
"pluginType": "core",
|
|
@@ -7946,23 +7935,40 @@
|
|
|
7946
7935
|
"relativePath": [
|
|
7947
7936
|
"build",
|
|
7948
7937
|
"commands",
|
|
7949
|
-
"
|
|
7950
|
-
"
|
|
7938
|
+
"secret",
|
|
7939
|
+
"list.js"
|
|
7951
7940
|
]
|
|
7952
7941
|
},
|
|
7953
|
-
"
|
|
7942
|
+
"secret:push": {
|
|
7954
7943
|
"aliases": [],
|
|
7955
7944
|
"args": {},
|
|
7956
|
-
"description": "
|
|
7945
|
+
"description": "read environment secrets from env file and store on the server",
|
|
7957
7946
|
"flags": {
|
|
7958
|
-
"
|
|
7959
|
-
"description": "
|
|
7960
|
-
"name": "
|
|
7961
|
-
"
|
|
7947
|
+
"scope": {
|
|
7948
|
+
"description": "Scope for the secrets",
|
|
7949
|
+
"name": "scope",
|
|
7950
|
+
"default": "project",
|
|
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",
|
|
7962
7962
|
"hasDynamicHelp": false,
|
|
7963
7963
|
"multiple": false,
|
|
7964
7964
|
"type": "option"
|
|
7965
7965
|
},
|
|
7966
|
+
"force": {
|
|
7967
|
+
"description": "Delete and recreate existing secrets",
|
|
7968
|
+
"name": "force",
|
|
7969
|
+
"allowNo": false,
|
|
7970
|
+
"type": "boolean"
|
|
7971
|
+
},
|
|
7966
7972
|
"non-interactive": {
|
|
7967
7973
|
"description": "Run the command in non-interactive mode.",
|
|
7968
7974
|
"name": "non-interactive",
|
|
@@ -7974,7 +7980,7 @@
|
|
|
7974
7980
|
"hasDynamicHelp": false,
|
|
7975
7981
|
"hidden": true,
|
|
7976
7982
|
"hiddenAliases": [],
|
|
7977
|
-
"id": "
|
|
7983
|
+
"id": "secret:push",
|
|
7978
7984
|
"pluginAlias": "eas-cli",
|
|
7979
7985
|
"pluginName": "eas-cli",
|
|
7980
7986
|
"pluginType": "core",
|
|
@@ -8021,14 +8027,15 @@
|
|
|
8021
8027
|
}
|
|
8022
8028
|
},
|
|
8023
8029
|
"contextDefinition": {
|
|
8030
|
+
"projectId": {},
|
|
8024
8031
|
"loggedIn": {}
|
|
8025
8032
|
},
|
|
8026
8033
|
"isESM": false,
|
|
8027
8034
|
"relativePath": [
|
|
8028
8035
|
"build",
|
|
8029
8036
|
"commands",
|
|
8030
|
-
"
|
|
8031
|
-
"
|
|
8037
|
+
"secret",
|
|
8038
|
+
"push.js"
|
|
8032
8039
|
]
|
|
8033
8040
|
},
|
|
8034
8041
|
"submit:internal": {
|
|
@@ -9478,11 +9485,36 @@
|
|
|
9478
9485
|
"view.js"
|
|
9479
9486
|
]
|
|
9480
9487
|
},
|
|
9481
|
-
"
|
|
9488
|
+
"webhook:create": {
|
|
9482
9489
|
"aliases": [],
|
|
9483
9490
|
"args": {},
|
|
9484
|
-
"description": "
|
|
9491
|
+
"description": "create a webhook",
|
|
9485
9492
|
"flags": {
|
|
9493
|
+
"event": {
|
|
9494
|
+
"description": "Event type that triggers the webhook",
|
|
9495
|
+
"name": "event",
|
|
9496
|
+
"hasDynamicHelp": false,
|
|
9497
|
+
"multiple": false,
|
|
9498
|
+
"options": [
|
|
9499
|
+
"BUILD",
|
|
9500
|
+
"SUBMIT"
|
|
9501
|
+
],
|
|
9502
|
+
"type": "option"
|
|
9503
|
+
},
|
|
9504
|
+
"url": {
|
|
9505
|
+
"description": "Webhook URL",
|
|
9506
|
+
"name": "url",
|
|
9507
|
+
"hasDynamicHelp": false,
|
|
9508
|
+
"multiple": false,
|
|
9509
|
+
"type": "option"
|
|
9510
|
+
},
|
|
9511
|
+
"secret": {
|
|
9512
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
9513
|
+
"name": "secret",
|
|
9514
|
+
"hasDynamicHelp": false,
|
|
9515
|
+
"multiple": false,
|
|
9516
|
+
"type": "option"
|
|
9517
|
+
},
|
|
9486
9518
|
"non-interactive": {
|
|
9487
9519
|
"description": "Run the command in non-interactive mode.",
|
|
9488
9520
|
"name": "non-interactive",
|
|
@@ -9493,11 +9525,11 @@
|
|
|
9493
9525
|
},
|
|
9494
9526
|
"hasDynamicHelp": false,
|
|
9495
9527
|
"hiddenAliases": [],
|
|
9496
|
-
"id": "
|
|
9528
|
+
"id": "webhook:create",
|
|
9497
9529
|
"pluginAlias": "eas-cli",
|
|
9498
9530
|
"pluginName": "eas-cli",
|
|
9499
9531
|
"pluginType": "core",
|
|
9500
|
-
"strict":
|
|
9532
|
+
"strict": true,
|
|
9501
9533
|
"enableJsonFlag": false,
|
|
9502
9534
|
"ContextOptions": {
|
|
9503
9535
|
"LoggedIn": {
|
|
@@ -9547,31 +9579,32 @@
|
|
|
9547
9579
|
"relativePath": [
|
|
9548
9580
|
"build",
|
|
9549
9581
|
"commands",
|
|
9550
|
-
"
|
|
9551
|
-
"
|
|
9582
|
+
"webhook",
|
|
9583
|
+
"create.js"
|
|
9552
9584
|
]
|
|
9553
9585
|
},
|
|
9554
|
-
"
|
|
9586
|
+
"webhook:delete": {
|
|
9555
9587
|
"aliases": [],
|
|
9556
9588
|
"args": {
|
|
9557
|
-
"
|
|
9558
|
-
"description": "
|
|
9559
|
-
"name": "
|
|
9589
|
+
"ID": {
|
|
9590
|
+
"description": "ID of the webhook to delete",
|
|
9591
|
+
"name": "ID",
|
|
9560
9592
|
"required": false
|
|
9561
9593
|
}
|
|
9562
9594
|
},
|
|
9563
|
-
"description": "
|
|
9595
|
+
"description": "delete a webhook",
|
|
9564
9596
|
"flags": {
|
|
9565
|
-
"
|
|
9566
|
-
"description": "
|
|
9567
|
-
"name": "
|
|
9597
|
+
"non-interactive": {
|
|
9598
|
+
"description": "Run the command in non-interactive mode.",
|
|
9599
|
+
"name": "non-interactive",
|
|
9600
|
+
"noCacheDefault": true,
|
|
9568
9601
|
"allowNo": false,
|
|
9569
9602
|
"type": "boolean"
|
|
9570
9603
|
}
|
|
9571
9604
|
},
|
|
9572
9605
|
"hasDynamicHelp": false,
|
|
9573
9606
|
"hiddenAliases": [],
|
|
9574
|
-
"id": "
|
|
9607
|
+
"id": "webhook:delete",
|
|
9575
9608
|
"pluginAlias": "eas-cli",
|
|
9576
9609
|
"pluginName": "eas-cli",
|
|
9577
9610
|
"pluginType": "core",
|
|
@@ -9618,24 +9651,33 @@
|
|
|
9618
9651
|
}
|
|
9619
9652
|
},
|
|
9620
9653
|
"contextDefinition": {
|
|
9621
|
-
"
|
|
9622
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
9623
|
-
"projectDir": {},
|
|
9654
|
+
"projectId": {},
|
|
9624
9655
|
"loggedIn": {}
|
|
9625
9656
|
},
|
|
9626
9657
|
"isESM": false,
|
|
9627
9658
|
"relativePath": [
|
|
9628
9659
|
"build",
|
|
9629
9660
|
"commands",
|
|
9630
|
-
"
|
|
9631
|
-
"
|
|
9661
|
+
"webhook",
|
|
9662
|
+
"delete.js"
|
|
9632
9663
|
]
|
|
9633
9664
|
},
|
|
9634
|
-
"
|
|
9665
|
+
"webhook:list": {
|
|
9635
9666
|
"aliases": [],
|
|
9636
9667
|
"args": {},
|
|
9637
|
-
"description": "
|
|
9668
|
+
"description": "list webhooks",
|
|
9638
9669
|
"flags": {
|
|
9670
|
+
"event": {
|
|
9671
|
+
"description": "Event type that triggers the webhook",
|
|
9672
|
+
"name": "event",
|
|
9673
|
+
"hasDynamicHelp": false,
|
|
9674
|
+
"multiple": false,
|
|
9675
|
+
"options": [
|
|
9676
|
+
"BUILD",
|
|
9677
|
+
"SUBMIT"
|
|
9678
|
+
],
|
|
9679
|
+
"type": "option"
|
|
9680
|
+
},
|
|
9639
9681
|
"json": {
|
|
9640
9682
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9641
9683
|
"name": "json",
|
|
@@ -9644,9 +9686,8 @@
|
|
|
9644
9686
|
}
|
|
9645
9687
|
},
|
|
9646
9688
|
"hasDynamicHelp": false,
|
|
9647
|
-
"hidden": true,
|
|
9648
9689
|
"hiddenAliases": [],
|
|
9649
|
-
"id": "
|
|
9690
|
+
"id": "webhook:list",
|
|
9650
9691
|
"pluginAlias": "eas-cli",
|
|
9651
9692
|
"pluginName": "eas-cli",
|
|
9652
9693
|
"pluginType": "core",
|
|
@@ -9700,25 +9741,47 @@
|
|
|
9700
9741
|
"relativePath": [
|
|
9701
9742
|
"build",
|
|
9702
9743
|
"commands",
|
|
9703
|
-
"
|
|
9744
|
+
"webhook",
|
|
9704
9745
|
"list.js"
|
|
9705
9746
|
]
|
|
9706
9747
|
},
|
|
9707
|
-
"
|
|
9748
|
+
"webhook:update": {
|
|
9708
9749
|
"aliases": [],
|
|
9709
|
-
"args": {
|
|
9710
|
-
|
|
9711
|
-
"description": "ID of the workflow run or workflow job to view logs for",
|
|
9712
|
-
"name": "id"
|
|
9713
|
-
}
|
|
9714
|
-
},
|
|
9715
|
-
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
9750
|
+
"args": {},
|
|
9751
|
+
"description": "update a webhook",
|
|
9716
9752
|
"flags": {
|
|
9717
|
-
"
|
|
9718
|
-
"description": "
|
|
9719
|
-
"name": "
|
|
9720
|
-
"
|
|
9721
|
-
"
|
|
9753
|
+
"id": {
|
|
9754
|
+
"description": "Webhook ID",
|
|
9755
|
+
"name": "id",
|
|
9756
|
+
"required": true,
|
|
9757
|
+
"hasDynamicHelp": false,
|
|
9758
|
+
"multiple": false,
|
|
9759
|
+
"type": "option"
|
|
9760
|
+
},
|
|
9761
|
+
"event": {
|
|
9762
|
+
"description": "Event type that triggers the webhook",
|
|
9763
|
+
"name": "event",
|
|
9764
|
+
"hasDynamicHelp": false,
|
|
9765
|
+
"multiple": false,
|
|
9766
|
+
"options": [
|
|
9767
|
+
"BUILD",
|
|
9768
|
+
"SUBMIT"
|
|
9769
|
+
],
|
|
9770
|
+
"type": "option"
|
|
9771
|
+
},
|
|
9772
|
+
"url": {
|
|
9773
|
+
"description": "Webhook URL",
|
|
9774
|
+
"name": "url",
|
|
9775
|
+
"hasDynamicHelp": false,
|
|
9776
|
+
"multiple": false,
|
|
9777
|
+
"type": "option"
|
|
9778
|
+
},
|
|
9779
|
+
"secret": {
|
|
9780
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
9781
|
+
"name": "secret",
|
|
9782
|
+
"hasDynamicHelp": false,
|
|
9783
|
+
"multiple": false,
|
|
9784
|
+
"type": "option"
|
|
9722
9785
|
},
|
|
9723
9786
|
"non-interactive": {
|
|
9724
9787
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -9726,17 +9789,81 @@
|
|
|
9726
9789
|
"noCacheDefault": true,
|
|
9727
9790
|
"allowNo": false,
|
|
9728
9791
|
"type": "boolean"
|
|
9792
|
+
}
|
|
9793
|
+
},
|
|
9794
|
+
"hasDynamicHelp": false,
|
|
9795
|
+
"hiddenAliases": [],
|
|
9796
|
+
"id": "webhook:update",
|
|
9797
|
+
"pluginAlias": "eas-cli",
|
|
9798
|
+
"pluginName": "eas-cli",
|
|
9799
|
+
"pluginType": "core",
|
|
9800
|
+
"strict": true,
|
|
9801
|
+
"enableJsonFlag": false,
|
|
9802
|
+
"ContextOptions": {
|
|
9803
|
+
"LoggedIn": {
|
|
9804
|
+
"loggedIn": {}
|
|
9729
9805
|
},
|
|
9730
|
-
"
|
|
9731
|
-
"
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
"
|
|
9806
|
+
"MaybeLoggedIn": {
|
|
9807
|
+
"maybeLoggedIn": {}
|
|
9808
|
+
},
|
|
9809
|
+
"DynamicLoggedIn": {
|
|
9810
|
+
"getDynamicLoggedInAsync": {}
|
|
9811
|
+
},
|
|
9812
|
+
"SessionManagment": {
|
|
9813
|
+
"sessionManager": {}
|
|
9814
|
+
},
|
|
9815
|
+
"OptionalProjectConfig": {
|
|
9816
|
+
"optionalPrivateProjectConfig": {}
|
|
9817
|
+
},
|
|
9818
|
+
"ProjectDir": {
|
|
9819
|
+
"projectDir": {}
|
|
9820
|
+
},
|
|
9821
|
+
"DynamicProjectConfig": {
|
|
9822
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9823
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9824
|
+
},
|
|
9825
|
+
"ProjectConfig": {
|
|
9826
|
+
"loggedIn": {},
|
|
9827
|
+
"privateProjectConfig": {}
|
|
9828
|
+
},
|
|
9829
|
+
"Analytics": {
|
|
9830
|
+
"analytics": {}
|
|
9831
|
+
},
|
|
9832
|
+
"Vcs": {
|
|
9833
|
+
"vcsClient": {}
|
|
9834
|
+
},
|
|
9835
|
+
"ServerSideEnvironmentVariables": {
|
|
9836
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9837
|
+
},
|
|
9838
|
+
"ProjectId": {
|
|
9839
|
+
"projectId": {}
|
|
9840
|
+
}
|
|
9841
|
+
},
|
|
9842
|
+
"contextDefinition": {
|
|
9843
|
+
"loggedIn": {}
|
|
9844
|
+
},
|
|
9845
|
+
"isESM": false,
|
|
9846
|
+
"relativePath": [
|
|
9847
|
+
"build",
|
|
9848
|
+
"commands",
|
|
9849
|
+
"webhook",
|
|
9850
|
+
"update.js"
|
|
9851
|
+
]
|
|
9852
|
+
},
|
|
9853
|
+
"webhook:view": {
|
|
9854
|
+
"aliases": [],
|
|
9855
|
+
"args": {
|
|
9856
|
+
"ID": {
|
|
9857
|
+
"description": "ID of the webhook to view",
|
|
9858
|
+
"name": "ID",
|
|
9859
|
+
"required": true
|
|
9735
9860
|
}
|
|
9736
9861
|
},
|
|
9862
|
+
"description": "view a webhook",
|
|
9863
|
+
"flags": {},
|
|
9737
9864
|
"hasDynamicHelp": false,
|
|
9738
9865
|
"hiddenAliases": [],
|
|
9739
|
-
"id": "
|
|
9866
|
+
"id": "webhook:view",
|
|
9740
9867
|
"pluginAlias": "eas-cli",
|
|
9741
9868
|
"pluginName": "eas-cli",
|
|
9742
9869
|
"pluginType": "core",
|
|
@@ -9783,27 +9910,20 @@
|
|
|
9783
9910
|
}
|
|
9784
9911
|
},
|
|
9785
9912
|
"contextDefinition": {
|
|
9786
|
-
"projectId": {},
|
|
9787
9913
|
"loggedIn": {}
|
|
9788
9914
|
},
|
|
9789
9915
|
"isESM": false,
|
|
9790
9916
|
"relativePath": [
|
|
9791
9917
|
"build",
|
|
9792
9918
|
"commands",
|
|
9793
|
-
"
|
|
9794
|
-
"
|
|
9919
|
+
"webhook",
|
|
9920
|
+
"view.js"
|
|
9795
9921
|
]
|
|
9796
9922
|
},
|
|
9797
|
-
"workflow:
|
|
9923
|
+
"workflow:cancel": {
|
|
9798
9924
|
"aliases": [],
|
|
9799
|
-
"args": {
|
|
9800
|
-
|
|
9801
|
-
"description": "Path to the workflow file to run",
|
|
9802
|
-
"name": "file",
|
|
9803
|
-
"required": true
|
|
9804
|
-
}
|
|
9805
|
-
},
|
|
9806
|
-
"description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
|
|
9925
|
+
"args": {},
|
|
9926
|
+
"description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
|
|
9807
9927
|
"flags": {
|
|
9808
9928
|
"non-interactive": {
|
|
9809
9929
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -9811,49 +9931,15 @@
|
|
|
9811
9931
|
"noCacheDefault": true,
|
|
9812
9932
|
"allowNo": false,
|
|
9813
9933
|
"type": "boolean"
|
|
9814
|
-
},
|
|
9815
|
-
"wait": {
|
|
9816
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9817
|
-
"name": "wait",
|
|
9818
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9819
|
-
"allowNo": true,
|
|
9820
|
-
"type": "boolean"
|
|
9821
|
-
},
|
|
9822
|
-
"input": {
|
|
9823
|
-
"aliases": [
|
|
9824
|
-
"f",
|
|
9825
|
-
"field"
|
|
9826
|
-
],
|
|
9827
|
-
"char": "F",
|
|
9828
|
-
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9829
|
-
"name": "input",
|
|
9830
|
-
"summary": "Set workflow inputs",
|
|
9831
|
-
"hasDynamicHelp": false,
|
|
9832
|
-
"multiple": true,
|
|
9833
|
-
"type": "option"
|
|
9834
|
-
},
|
|
9835
|
-
"ref": {
|
|
9836
|
-
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
9837
|
-
"name": "ref",
|
|
9838
|
-
"summary": "Git reference to run the workflow on",
|
|
9839
|
-
"hasDynamicHelp": false,
|
|
9840
|
-
"multiple": false,
|
|
9841
|
-
"type": "option"
|
|
9842
|
-
},
|
|
9843
|
-
"json": {
|
|
9844
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9845
|
-
"name": "json",
|
|
9846
|
-
"allowNo": false,
|
|
9847
|
-
"type": "boolean"
|
|
9848
9934
|
}
|
|
9849
9935
|
},
|
|
9850
9936
|
"hasDynamicHelp": false,
|
|
9851
9937
|
"hiddenAliases": [],
|
|
9852
|
-
"id": "workflow:
|
|
9938
|
+
"id": "workflow:cancel",
|
|
9853
9939
|
"pluginAlias": "eas-cli",
|
|
9854
9940
|
"pluginName": "eas-cli",
|
|
9855
9941
|
"pluginType": "core",
|
|
9856
|
-
"strict":
|
|
9942
|
+
"strict": false,
|
|
9857
9943
|
"enableJsonFlag": false,
|
|
9858
9944
|
"ContextOptions": {
|
|
9859
9945
|
"LoggedIn": {
|
|
@@ -9896,10 +9982,7 @@
|
|
|
9896
9982
|
}
|
|
9897
9983
|
},
|
|
9898
9984
|
"contextDefinition": {
|
|
9899
|
-
"
|
|
9900
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
9901
|
-
"projectDir": {},
|
|
9902
|
-
"vcsClient": {},
|
|
9985
|
+
"projectId": {},
|
|
9903
9986
|
"loggedIn": {}
|
|
9904
9987
|
},
|
|
9905
9988
|
"isESM": false,
|
|
@@ -9907,55 +9990,30 @@
|
|
|
9907
9990
|
"build",
|
|
9908
9991
|
"commands",
|
|
9909
9992
|
"workflow",
|
|
9910
|
-
"
|
|
9993
|
+
"cancel.js"
|
|
9911
9994
|
]
|
|
9912
9995
|
},
|
|
9913
|
-
"workflow:
|
|
9996
|
+
"workflow:create": {
|
|
9914
9997
|
"aliases": [],
|
|
9915
|
-
"args": {
|
|
9916
|
-
|
|
9998
|
+
"args": {
|
|
9999
|
+
"name": {
|
|
10000
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
10001
|
+
"name": "name",
|
|
10002
|
+
"required": false
|
|
10003
|
+
}
|
|
10004
|
+
},
|
|
10005
|
+
"description": "create a new workflow configuration YAML file",
|
|
9917
10006
|
"flags": {
|
|
9918
|
-
"
|
|
9919
|
-
"description": "If
|
|
9920
|
-
"name": "
|
|
9921
|
-
"required": false,
|
|
9922
|
-
"hasDynamicHelp": false,
|
|
9923
|
-
"multiple": false,
|
|
9924
|
-
"type": "option"
|
|
9925
|
-
},
|
|
9926
|
-
"status": {
|
|
9927
|
-
"description": "If present, filter the returned runs to select those with the specified status",
|
|
9928
|
-
"name": "status",
|
|
9929
|
-
"required": false,
|
|
9930
|
-
"hasDynamicHelp": false,
|
|
9931
|
-
"multiple": false,
|
|
9932
|
-
"options": [
|
|
9933
|
-
"ACTION_REQUIRED",
|
|
9934
|
-
"CANCELED",
|
|
9935
|
-
"FAILURE",
|
|
9936
|
-
"IN_PROGRESS",
|
|
9937
|
-
"NEW",
|
|
9938
|
-
"SUCCESS"
|
|
9939
|
-
],
|
|
9940
|
-
"type": "option"
|
|
9941
|
-
},
|
|
9942
|
-
"json": {
|
|
9943
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9944
|
-
"name": "json",
|
|
10007
|
+
"skip-validation": {
|
|
10008
|
+
"description": "If set, the workflow file will not be validated before being created",
|
|
10009
|
+
"name": "skip-validation",
|
|
9945
10010
|
"allowNo": false,
|
|
9946
10011
|
"type": "boolean"
|
|
9947
|
-
},
|
|
9948
|
-
"limit": {
|
|
9949
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
9950
|
-
"name": "limit",
|
|
9951
|
-
"hasDynamicHelp": false,
|
|
9952
|
-
"multiple": false,
|
|
9953
|
-
"type": "option"
|
|
9954
10012
|
}
|
|
9955
10013
|
},
|
|
9956
10014
|
"hasDynamicHelp": false,
|
|
9957
10015
|
"hiddenAliases": [],
|
|
9958
|
-
"id": "workflow:
|
|
10016
|
+
"id": "workflow:create",
|
|
9959
10017
|
"pluginAlias": "eas-cli",
|
|
9960
10018
|
"pluginName": "eas-cli",
|
|
9961
10019
|
"pluginType": "core",
|
|
@@ -10002,7 +10060,9 @@
|
|
|
10002
10060
|
}
|
|
10003
10061
|
},
|
|
10004
10062
|
"contextDefinition": {
|
|
10005
|
-
"
|
|
10063
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10064
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10065
|
+
"projectDir": {},
|
|
10006
10066
|
"loggedIn": {}
|
|
10007
10067
|
},
|
|
10008
10068
|
"isESM": false,
|
|
@@ -10010,33 +10070,14 @@
|
|
|
10010
10070
|
"build",
|
|
10011
10071
|
"commands",
|
|
10012
10072
|
"workflow",
|
|
10013
|
-
"
|
|
10073
|
+
"create.js"
|
|
10014
10074
|
]
|
|
10015
10075
|
},
|
|
10016
|
-
"workflow:
|
|
10076
|
+
"workflow:list": {
|
|
10017
10077
|
"aliases": [],
|
|
10018
|
-
"args": {
|
|
10019
|
-
|
|
10020
|
-
"description": "A workflow run ID.",
|
|
10021
|
-
"name": "WORKFLOW_RUN_ID"
|
|
10022
|
-
}
|
|
10023
|
-
},
|
|
10024
|
-
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10078
|
+
"args": {},
|
|
10079
|
+
"description": "List workflows for the current project",
|
|
10025
10080
|
"flags": {
|
|
10026
|
-
"non-interactive": {
|
|
10027
|
-
"description": "Run the command in non-interactive mode.",
|
|
10028
|
-
"name": "non-interactive",
|
|
10029
|
-
"noCacheDefault": true,
|
|
10030
|
-
"allowNo": false,
|
|
10031
|
-
"type": "boolean"
|
|
10032
|
-
},
|
|
10033
|
-
"wait": {
|
|
10034
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10035
|
-
"name": "wait",
|
|
10036
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10037
|
-
"allowNo": true,
|
|
10038
|
-
"type": "boolean"
|
|
10039
|
-
},
|
|
10040
10081
|
"json": {
|
|
10041
10082
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10042
10083
|
"name": "json",
|
|
@@ -10045,8 +10086,9 @@
|
|
|
10045
10086
|
}
|
|
10046
10087
|
},
|
|
10047
10088
|
"hasDynamicHelp": false,
|
|
10089
|
+
"hidden": true,
|
|
10048
10090
|
"hiddenAliases": [],
|
|
10049
|
-
"id": "workflow:
|
|
10091
|
+
"id": "workflow:list",
|
|
10050
10092
|
"pluginAlias": "eas-cli",
|
|
10051
10093
|
"pluginName": "eas-cli",
|
|
10052
10094
|
"pluginType": "core",
|
|
@@ -10093,10 +10135,7 @@
|
|
|
10093
10135
|
}
|
|
10094
10136
|
},
|
|
10095
10137
|
"contextDefinition": {
|
|
10096
|
-
"
|
|
10097
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10098
|
-
"projectDir": {},
|
|
10099
|
-
"vcsClient": {},
|
|
10138
|
+
"projectId": {},
|
|
10100
10139
|
"loggedIn": {}
|
|
10101
10140
|
},
|
|
10102
10141
|
"isESM": false,
|
|
@@ -10104,31 +10143,42 @@
|
|
|
10104
10143
|
"build",
|
|
10105
10144
|
"commands",
|
|
10106
10145
|
"workflow",
|
|
10107
|
-
"
|
|
10146
|
+
"list.js"
|
|
10108
10147
|
]
|
|
10109
10148
|
},
|
|
10110
|
-
"workflow:
|
|
10149
|
+
"workflow:logs": {
|
|
10111
10150
|
"aliases": [],
|
|
10112
10151
|
"args": {
|
|
10113
|
-
"
|
|
10114
|
-
"description": "
|
|
10115
|
-
"name": "
|
|
10116
|
-
"required": true
|
|
10152
|
+
"id": {
|
|
10153
|
+
"description": "ID of the workflow run or workflow job to view logs for",
|
|
10154
|
+
"name": "id"
|
|
10117
10155
|
}
|
|
10118
10156
|
},
|
|
10119
|
-
"description": "
|
|
10157
|
+
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
10120
10158
|
"flags": {
|
|
10159
|
+
"json": {
|
|
10160
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10161
|
+
"name": "json",
|
|
10162
|
+
"allowNo": false,
|
|
10163
|
+
"type": "boolean"
|
|
10164
|
+
},
|
|
10121
10165
|
"non-interactive": {
|
|
10122
10166
|
"description": "Run the command in non-interactive mode.",
|
|
10123
10167
|
"name": "non-interactive",
|
|
10124
10168
|
"noCacheDefault": true,
|
|
10125
10169
|
"allowNo": false,
|
|
10126
10170
|
"type": "boolean"
|
|
10171
|
+
},
|
|
10172
|
+
"all-steps": {
|
|
10173
|
+
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
10174
|
+
"name": "all-steps",
|
|
10175
|
+
"allowNo": false,
|
|
10176
|
+
"type": "boolean"
|
|
10127
10177
|
}
|
|
10128
10178
|
},
|
|
10129
10179
|
"hasDynamicHelp": false,
|
|
10130
10180
|
"hiddenAliases": [],
|
|
10131
|
-
"id": "workflow:
|
|
10181
|
+
"id": "workflow:logs",
|
|
10132
10182
|
"pluginAlias": "eas-cli",
|
|
10133
10183
|
"pluginName": "eas-cli",
|
|
10134
10184
|
"pluginType": "core",
|
|
@@ -10175,9 +10225,6 @@
|
|
|
10175
10225
|
}
|
|
10176
10226
|
},
|
|
10177
10227
|
"contextDefinition": {
|
|
10178
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10179
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10180
|
-
"projectDir": {},
|
|
10181
10228
|
"projectId": {},
|
|
10182
10229
|
"loggedIn": {}
|
|
10183
10230
|
},
|
|
@@ -10186,36 +10233,65 @@
|
|
|
10186
10233
|
"build",
|
|
10187
10234
|
"commands",
|
|
10188
10235
|
"workflow",
|
|
10189
|
-
"
|
|
10236
|
+
"logs.js"
|
|
10190
10237
|
]
|
|
10191
10238
|
},
|
|
10192
|
-
"workflow:
|
|
10239
|
+
"workflow:run": {
|
|
10193
10240
|
"aliases": [],
|
|
10194
10241
|
"args": {
|
|
10195
|
-
"
|
|
10196
|
-
"description": "
|
|
10197
|
-
"name": "
|
|
10242
|
+
"file": {
|
|
10243
|
+
"description": "Path to the workflow file to run",
|
|
10244
|
+
"name": "file",
|
|
10245
|
+
"required": true
|
|
10198
10246
|
}
|
|
10199
10247
|
},
|
|
10200
|
-
"description": "
|
|
10248
|
+
"description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
|
|
10201
10249
|
"flags": {
|
|
10202
|
-
"json": {
|
|
10203
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10204
|
-
"name": "json",
|
|
10205
|
-
"allowNo": false,
|
|
10206
|
-
"type": "boolean"
|
|
10207
|
-
},
|
|
10208
10250
|
"non-interactive": {
|
|
10209
10251
|
"description": "Run the command in non-interactive mode.",
|
|
10210
10252
|
"name": "non-interactive",
|
|
10211
10253
|
"noCacheDefault": true,
|
|
10212
10254
|
"allowNo": false,
|
|
10213
10255
|
"type": "boolean"
|
|
10256
|
+
},
|
|
10257
|
+
"wait": {
|
|
10258
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10259
|
+
"name": "wait",
|
|
10260
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10261
|
+
"allowNo": true,
|
|
10262
|
+
"type": "boolean"
|
|
10263
|
+
},
|
|
10264
|
+
"input": {
|
|
10265
|
+
"aliases": [
|
|
10266
|
+
"f",
|
|
10267
|
+
"field"
|
|
10268
|
+
],
|
|
10269
|
+
"char": "F",
|
|
10270
|
+
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
10271
|
+
"name": "input",
|
|
10272
|
+
"summary": "Set workflow inputs",
|
|
10273
|
+
"hasDynamicHelp": false,
|
|
10274
|
+
"multiple": true,
|
|
10275
|
+
"type": "option"
|
|
10276
|
+
},
|
|
10277
|
+
"ref": {
|
|
10278
|
+
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
10279
|
+
"name": "ref",
|
|
10280
|
+
"summary": "Git reference to run the workflow on",
|
|
10281
|
+
"hasDynamicHelp": false,
|
|
10282
|
+
"multiple": false,
|
|
10283
|
+
"type": "option"
|
|
10284
|
+
},
|
|
10285
|
+
"json": {
|
|
10286
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10287
|
+
"name": "json",
|
|
10288
|
+
"allowNo": false,
|
|
10289
|
+
"type": "boolean"
|
|
10214
10290
|
}
|
|
10215
10291
|
},
|
|
10216
10292
|
"hasDynamicHelp": false,
|
|
10217
10293
|
"hiddenAliases": [],
|
|
10218
|
-
"id": "workflow:
|
|
10294
|
+
"id": "workflow:run",
|
|
10219
10295
|
"pluginAlias": "eas-cli",
|
|
10220
10296
|
"pluginName": "eas-cli",
|
|
10221
10297
|
"pluginType": "core",
|
|
@@ -10262,7 +10338,10 @@
|
|
|
10262
10338
|
}
|
|
10263
10339
|
},
|
|
10264
10340
|
"contextDefinition": {
|
|
10265
|
-
"
|
|
10341
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10342
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10343
|
+
"projectDir": {},
|
|
10344
|
+
"vcsClient": {},
|
|
10266
10345
|
"loggedIn": {}
|
|
10267
10346
|
},
|
|
10268
10347
|
"isESM": false,
|
|
@@ -10270,50 +10349,55 @@
|
|
|
10270
10349
|
"build",
|
|
10271
10350
|
"commands",
|
|
10272
10351
|
"workflow",
|
|
10273
|
-
"
|
|
10352
|
+
"run.js"
|
|
10274
10353
|
]
|
|
10275
10354
|
},
|
|
10276
|
-
"
|
|
10355
|
+
"workflow:runs": {
|
|
10277
10356
|
"aliases": [],
|
|
10278
10357
|
"args": {},
|
|
10279
|
-
"description": "
|
|
10358
|
+
"description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
|
|
10280
10359
|
"flags": {
|
|
10281
|
-
"
|
|
10282
|
-
"description": "
|
|
10283
|
-
"name": "
|
|
10360
|
+
"workflow": {
|
|
10361
|
+
"description": "If present, the query will only return runs for the specified workflow file name",
|
|
10362
|
+
"name": "workflow",
|
|
10363
|
+
"required": false,
|
|
10284
10364
|
"hasDynamicHelp": false,
|
|
10285
10365
|
"multiple": false,
|
|
10286
|
-
"options": [
|
|
10287
|
-
"BUILD",
|
|
10288
|
-
"SUBMIT"
|
|
10289
|
-
],
|
|
10290
10366
|
"type": "option"
|
|
10291
10367
|
},
|
|
10292
|
-
"
|
|
10293
|
-
"description": "
|
|
10294
|
-
"name": "
|
|
10368
|
+
"status": {
|
|
10369
|
+
"description": "If present, filter the returned runs to select those with the specified status",
|
|
10370
|
+
"name": "status",
|
|
10371
|
+
"required": false,
|
|
10295
10372
|
"hasDynamicHelp": false,
|
|
10296
10373
|
"multiple": false,
|
|
10374
|
+
"options": [
|
|
10375
|
+
"ACTION_REQUIRED",
|
|
10376
|
+
"CANCELED",
|
|
10377
|
+
"FAILURE",
|
|
10378
|
+
"IN_PROGRESS",
|
|
10379
|
+
"NEW",
|
|
10380
|
+
"SUCCESS"
|
|
10381
|
+
],
|
|
10297
10382
|
"type": "option"
|
|
10298
10383
|
},
|
|
10299
|
-
"
|
|
10300
|
-
"description": "
|
|
10301
|
-
"name": "
|
|
10384
|
+
"json": {
|
|
10385
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10386
|
+
"name": "json",
|
|
10387
|
+
"allowNo": false,
|
|
10388
|
+
"type": "boolean"
|
|
10389
|
+
},
|
|
10390
|
+
"limit": {
|
|
10391
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
10392
|
+
"name": "limit",
|
|
10302
10393
|
"hasDynamicHelp": false,
|
|
10303
10394
|
"multiple": false,
|
|
10304
10395
|
"type": "option"
|
|
10305
|
-
},
|
|
10306
|
-
"non-interactive": {
|
|
10307
|
-
"description": "Run the command in non-interactive mode.",
|
|
10308
|
-
"name": "non-interactive",
|
|
10309
|
-
"noCacheDefault": true,
|
|
10310
|
-
"allowNo": false,
|
|
10311
|
-
"type": "boolean"
|
|
10312
10396
|
}
|
|
10313
10397
|
},
|
|
10314
10398
|
"hasDynamicHelp": false,
|
|
10315
10399
|
"hiddenAliases": [],
|
|
10316
|
-
"id": "
|
|
10400
|
+
"id": "workflow:runs",
|
|
10317
10401
|
"pluginAlias": "eas-cli",
|
|
10318
10402
|
"pluginName": "eas-cli",
|
|
10319
10403
|
"pluginType": "core",
|
|
@@ -10367,20 +10451,19 @@
|
|
|
10367
10451
|
"relativePath": [
|
|
10368
10452
|
"build",
|
|
10369
10453
|
"commands",
|
|
10370
|
-
"
|
|
10371
|
-
"
|
|
10454
|
+
"workflow",
|
|
10455
|
+
"runs.js"
|
|
10372
10456
|
]
|
|
10373
10457
|
},
|
|
10374
|
-
"
|
|
10458
|
+
"workflow:status": {
|
|
10375
10459
|
"aliases": [],
|
|
10376
10460
|
"args": {
|
|
10377
|
-
"
|
|
10378
|
-
"description": "
|
|
10379
|
-
"name": "
|
|
10380
|
-
"required": false
|
|
10461
|
+
"WORKFLOW_RUN_ID": {
|
|
10462
|
+
"description": "A workflow run ID.",
|
|
10463
|
+
"name": "WORKFLOW_RUN_ID"
|
|
10381
10464
|
}
|
|
10382
10465
|
},
|
|
10383
|
-
"description": "
|
|
10466
|
+
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10384
10467
|
"flags": {
|
|
10385
10468
|
"non-interactive": {
|
|
10386
10469
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -10388,83 +10471,13 @@
|
|
|
10388
10471
|
"noCacheDefault": true,
|
|
10389
10472
|
"allowNo": false,
|
|
10390
10473
|
"type": "boolean"
|
|
10391
|
-
}
|
|
10392
|
-
},
|
|
10393
|
-
"hasDynamicHelp": false,
|
|
10394
|
-
"hiddenAliases": [],
|
|
10395
|
-
"id": "webhook:delete",
|
|
10396
|
-
"pluginAlias": "eas-cli",
|
|
10397
|
-
"pluginName": "eas-cli",
|
|
10398
|
-
"pluginType": "core",
|
|
10399
|
-
"strict": true,
|
|
10400
|
-
"enableJsonFlag": false,
|
|
10401
|
-
"ContextOptions": {
|
|
10402
|
-
"LoggedIn": {
|
|
10403
|
-
"loggedIn": {}
|
|
10404
|
-
},
|
|
10405
|
-
"MaybeLoggedIn": {
|
|
10406
|
-
"maybeLoggedIn": {}
|
|
10407
|
-
},
|
|
10408
|
-
"DynamicLoggedIn": {
|
|
10409
|
-
"getDynamicLoggedInAsync": {}
|
|
10410
|
-
},
|
|
10411
|
-
"SessionManagment": {
|
|
10412
|
-
"sessionManager": {}
|
|
10413
|
-
},
|
|
10414
|
-
"OptionalProjectConfig": {
|
|
10415
|
-
"optionalPrivateProjectConfig": {}
|
|
10416
|
-
},
|
|
10417
|
-
"ProjectDir": {
|
|
10418
|
-
"projectDir": {}
|
|
10419
|
-
},
|
|
10420
|
-
"DynamicProjectConfig": {
|
|
10421
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10422
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
10423
|
-
},
|
|
10424
|
-
"ProjectConfig": {
|
|
10425
|
-
"loggedIn": {},
|
|
10426
|
-
"privateProjectConfig": {}
|
|
10427
10474
|
},
|
|
10428
|
-
"
|
|
10429
|
-
"
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
"
|
|
10433
|
-
|
|
10434
|
-
"ServerSideEnvironmentVariables": {
|
|
10435
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
10436
|
-
},
|
|
10437
|
-
"ProjectId": {
|
|
10438
|
-
"projectId": {}
|
|
10439
|
-
}
|
|
10440
|
-
},
|
|
10441
|
-
"contextDefinition": {
|
|
10442
|
-
"projectId": {},
|
|
10443
|
-
"loggedIn": {}
|
|
10444
|
-
},
|
|
10445
|
-
"isESM": false,
|
|
10446
|
-
"relativePath": [
|
|
10447
|
-
"build",
|
|
10448
|
-
"commands",
|
|
10449
|
-
"webhook",
|
|
10450
|
-
"delete.js"
|
|
10451
|
-
]
|
|
10452
|
-
},
|
|
10453
|
-
"webhook:list": {
|
|
10454
|
-
"aliases": [],
|
|
10455
|
-
"args": {},
|
|
10456
|
-
"description": "list webhooks",
|
|
10457
|
-
"flags": {
|
|
10458
|
-
"event": {
|
|
10459
|
-
"description": "Event type that triggers the webhook",
|
|
10460
|
-
"name": "event",
|
|
10461
|
-
"hasDynamicHelp": false,
|
|
10462
|
-
"multiple": false,
|
|
10463
|
-
"options": [
|
|
10464
|
-
"BUILD",
|
|
10465
|
-
"SUBMIT"
|
|
10466
|
-
],
|
|
10467
|
-
"type": "option"
|
|
10475
|
+
"wait": {
|
|
10476
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10477
|
+
"name": "wait",
|
|
10478
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10479
|
+
"allowNo": true,
|
|
10480
|
+
"type": "boolean"
|
|
10468
10481
|
},
|
|
10469
10482
|
"json": {
|
|
10470
10483
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
@@ -10475,7 +10488,7 @@
|
|
|
10475
10488
|
},
|
|
10476
10489
|
"hasDynamicHelp": false,
|
|
10477
10490
|
"hiddenAliases": [],
|
|
10478
|
-
"id": "
|
|
10491
|
+
"id": "workflow:status",
|
|
10479
10492
|
"pluginAlias": "eas-cli",
|
|
10480
10493
|
"pluginName": "eas-cli",
|
|
10481
10494
|
"pluginType": "core",
|
|
@@ -10522,55 +10535,31 @@
|
|
|
10522
10535
|
}
|
|
10523
10536
|
},
|
|
10524
10537
|
"contextDefinition": {
|
|
10525
|
-
"
|
|
10538
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10539
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10540
|
+
"projectDir": {},
|
|
10541
|
+
"vcsClient": {},
|
|
10526
10542
|
"loggedIn": {}
|
|
10527
10543
|
},
|
|
10528
10544
|
"isESM": false,
|
|
10529
10545
|
"relativePath": [
|
|
10530
10546
|
"build",
|
|
10531
10547
|
"commands",
|
|
10532
|
-
"
|
|
10533
|
-
"
|
|
10548
|
+
"workflow",
|
|
10549
|
+
"status.js"
|
|
10534
10550
|
]
|
|
10535
10551
|
},
|
|
10536
|
-
"
|
|
10552
|
+
"workflow:validate": {
|
|
10537
10553
|
"aliases": [],
|
|
10538
|
-
"args": {
|
|
10539
|
-
|
|
10554
|
+
"args": {
|
|
10555
|
+
"path": {
|
|
10556
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
10557
|
+
"name": "path",
|
|
10558
|
+
"required": true
|
|
10559
|
+
}
|
|
10560
|
+
},
|
|
10561
|
+
"description": "validate a workflow configuration yaml file",
|
|
10540
10562
|
"flags": {
|
|
10541
|
-
"id": {
|
|
10542
|
-
"description": "Webhook ID",
|
|
10543
|
-
"name": "id",
|
|
10544
|
-
"required": true,
|
|
10545
|
-
"hasDynamicHelp": false,
|
|
10546
|
-
"multiple": false,
|
|
10547
|
-
"type": "option"
|
|
10548
|
-
},
|
|
10549
|
-
"event": {
|
|
10550
|
-
"description": "Event type that triggers the webhook",
|
|
10551
|
-
"name": "event",
|
|
10552
|
-
"hasDynamicHelp": false,
|
|
10553
|
-
"multiple": false,
|
|
10554
|
-
"options": [
|
|
10555
|
-
"BUILD",
|
|
10556
|
-
"SUBMIT"
|
|
10557
|
-
],
|
|
10558
|
-
"type": "option"
|
|
10559
|
-
},
|
|
10560
|
-
"url": {
|
|
10561
|
-
"description": "Webhook URL",
|
|
10562
|
-
"name": "url",
|
|
10563
|
-
"hasDynamicHelp": false,
|
|
10564
|
-
"multiple": false,
|
|
10565
|
-
"type": "option"
|
|
10566
|
-
},
|
|
10567
|
-
"secret": {
|
|
10568
|
-
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
10569
|
-
"name": "secret",
|
|
10570
|
-
"hasDynamicHelp": false,
|
|
10571
|
-
"multiple": false,
|
|
10572
|
-
"type": "option"
|
|
10573
|
-
},
|
|
10574
10563
|
"non-interactive": {
|
|
10575
10564
|
"description": "Run the command in non-interactive mode.",
|
|
10576
10565
|
"name": "non-interactive",
|
|
@@ -10581,7 +10570,7 @@
|
|
|
10581
10570
|
},
|
|
10582
10571
|
"hasDynamicHelp": false,
|
|
10583
10572
|
"hiddenAliases": [],
|
|
10584
|
-
"id": "
|
|
10573
|
+
"id": "workflow:validate",
|
|
10585
10574
|
"pluginAlias": "eas-cli",
|
|
10586
10575
|
"pluginName": "eas-cli",
|
|
10587
10576
|
"pluginType": "core",
|
|
@@ -10628,30 +10617,47 @@
|
|
|
10628
10617
|
}
|
|
10629
10618
|
},
|
|
10630
10619
|
"contextDefinition": {
|
|
10620
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10621
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10622
|
+
"projectDir": {},
|
|
10623
|
+
"projectId": {},
|
|
10631
10624
|
"loggedIn": {}
|
|
10632
10625
|
},
|
|
10633
10626
|
"isESM": false,
|
|
10634
10627
|
"relativePath": [
|
|
10635
10628
|
"build",
|
|
10636
10629
|
"commands",
|
|
10637
|
-
"
|
|
10638
|
-
"
|
|
10630
|
+
"workflow",
|
|
10631
|
+
"validate.js"
|
|
10639
10632
|
]
|
|
10640
10633
|
},
|
|
10641
|
-
"
|
|
10634
|
+
"workflow:view": {
|
|
10642
10635
|
"aliases": [],
|
|
10643
10636
|
"args": {
|
|
10644
|
-
"
|
|
10645
|
-
"description": "ID of the
|
|
10646
|
-
"name": "
|
|
10647
|
-
|
|
10637
|
+
"id": {
|
|
10638
|
+
"description": "ID of the workflow run to view",
|
|
10639
|
+
"name": "id"
|
|
10640
|
+
}
|
|
10641
|
+
},
|
|
10642
|
+
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10643
|
+
"flags": {
|
|
10644
|
+
"json": {
|
|
10645
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10646
|
+
"name": "json",
|
|
10647
|
+
"allowNo": false,
|
|
10648
|
+
"type": "boolean"
|
|
10649
|
+
},
|
|
10650
|
+
"non-interactive": {
|
|
10651
|
+
"description": "Run the command in non-interactive mode.",
|
|
10652
|
+
"name": "non-interactive",
|
|
10653
|
+
"noCacheDefault": true,
|
|
10654
|
+
"allowNo": false,
|
|
10655
|
+
"type": "boolean"
|
|
10648
10656
|
}
|
|
10649
10657
|
},
|
|
10650
|
-
"description": "view a webhook",
|
|
10651
|
-
"flags": {},
|
|
10652
10658
|
"hasDynamicHelp": false,
|
|
10653
10659
|
"hiddenAliases": [],
|
|
10654
|
-
"id": "
|
|
10660
|
+
"id": "workflow:view",
|
|
10655
10661
|
"pluginAlias": "eas-cli",
|
|
10656
10662
|
"pluginName": "eas-cli",
|
|
10657
10663
|
"pluginType": "core",
|
|
@@ -10698,13 +10704,14 @@
|
|
|
10698
10704
|
}
|
|
10699
10705
|
},
|
|
10700
10706
|
"contextDefinition": {
|
|
10707
|
+
"projectId": {},
|
|
10701
10708
|
"loggedIn": {}
|
|
10702
10709
|
},
|
|
10703
10710
|
"isESM": false,
|
|
10704
10711
|
"relativePath": [
|
|
10705
10712
|
"build",
|
|
10706
10713
|
"commands",
|
|
10707
|
-
"
|
|
10714
|
+
"workflow",
|
|
10708
10715
|
"view.js"
|
|
10709
10716
|
]
|
|
10710
10717
|
},
|
|
@@ -12014,5 +12021,5 @@
|
|
|
12014
12021
|
]
|
|
12015
12022
|
}
|
|
12016
12023
|
},
|
|
12017
|
-
"version": "
|
|
12024
|
+
"version": "19.0.0"
|
|
12018
12025
|
}
|