eas-cli 12.5.3 → 12.6.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 +131 -60
- package/build/channel/queries.js +12 -3
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +1 -1
- package/build/commandUtils/context/OptionalPrivateProjectConfigContextField.d.ts +1 -1
- package/build/commandUtils/context/PrivateProjectConfigContextField.d.ts +1 -1
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +1 -1
- package/build/commandUtils/flags.d.ts +2 -2
- package/build/commandUtils/flags.js +1 -6
- package/build/commands/channel/pause.d.ts +22 -0
- package/build/commands/channel/pause.js +90 -0
- package/build/commands/channel/resume.d.ts +22 -0
- package/build/commands/channel/resume.js +90 -0
- package/build/commands/env/create.d.ts +2 -2
- package/build/commands/env/create.js +13 -4
- package/build/commands/env/get.js +7 -11
- package/build/commands/env/link.js +3 -0
- package/build/commands/env/list.js +5 -1
- package/build/commands/env/pull.js +1 -1
- package/build/commands/env/push.d.ts +1 -2
- package/build/commands/env/push.js +86 -80
- package/build/commands/env/update.d.ts +2 -2
- package/build/commands/env/update.js +11 -7
- package/build/commands/update/edit.d.ts +2 -2
- package/build/commands/update/edit.js +41 -4
- package/build/eas-update/utils.d.ts +1 -1
- package/build/graphql/generated.d.ts +147 -19
- package/build/graphql/generated.js +19 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +1 -1
- package/build/graphql/queries/ChannelQuery.js +2 -0
- package/build/metadata/download.d.ts +1 -1
- package/build/metadata/upload.d.ts +1 -1
- package/build/update/configure.d.ts +1 -1
- package/build/utils/expoCli.d.ts +1 -1
- package/build/utils/prompts.d.ts +3 -1
- package/build/utils/prompts.js +36 -12
- package/oclif.manifest.json +103 -12
- package/package.json +3 -4
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "12.
|
|
2
|
+
"version": "12.6.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -1447,6 +1447,92 @@
|
|
|
1447
1447
|
"privateProjectConfig": {}
|
|
1448
1448
|
}
|
|
1449
1449
|
},
|
|
1450
|
+
"channel:pause": {
|
|
1451
|
+
"id": "channel:pause",
|
|
1452
|
+
"description": "pause a channel to stop it from sending updates",
|
|
1453
|
+
"strict": true,
|
|
1454
|
+
"pluginName": "eas-cli",
|
|
1455
|
+
"pluginAlias": "eas-cli",
|
|
1456
|
+
"pluginType": "core",
|
|
1457
|
+
"aliases": [],
|
|
1458
|
+
"flags": {
|
|
1459
|
+
"branch": {
|
|
1460
|
+
"name": "branch",
|
|
1461
|
+
"type": "option",
|
|
1462
|
+
"description": "Name of the branch to point to",
|
|
1463
|
+
"multiple": false
|
|
1464
|
+
},
|
|
1465
|
+
"json": {
|
|
1466
|
+
"name": "json",
|
|
1467
|
+
"type": "boolean",
|
|
1468
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
1469
|
+
"allowNo": false,
|
|
1470
|
+
"dependsOn": [
|
|
1471
|
+
"non-interactive"
|
|
1472
|
+
]
|
|
1473
|
+
},
|
|
1474
|
+
"non-interactive": {
|
|
1475
|
+
"name": "non-interactive",
|
|
1476
|
+
"type": "boolean",
|
|
1477
|
+
"description": "Run the command in non-interactive mode.",
|
|
1478
|
+
"allowNo": false
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"args": {
|
|
1482
|
+
"name": {
|
|
1483
|
+
"name": "name",
|
|
1484
|
+
"description": "Name of the channel to edit",
|
|
1485
|
+
"required": false
|
|
1486
|
+
}
|
|
1487
|
+
},
|
|
1488
|
+
"contextDefinition": {
|
|
1489
|
+
"loggedIn": {},
|
|
1490
|
+
"privateProjectConfig": {}
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
"channel:resume": {
|
|
1494
|
+
"id": "channel:resume",
|
|
1495
|
+
"description": "resume a channel to start sending updates",
|
|
1496
|
+
"strict": true,
|
|
1497
|
+
"pluginName": "eas-cli",
|
|
1498
|
+
"pluginAlias": "eas-cli",
|
|
1499
|
+
"pluginType": "core",
|
|
1500
|
+
"aliases": [],
|
|
1501
|
+
"flags": {
|
|
1502
|
+
"branch": {
|
|
1503
|
+
"name": "branch",
|
|
1504
|
+
"type": "option",
|
|
1505
|
+
"description": "Name of the branch to point to",
|
|
1506
|
+
"multiple": false
|
|
1507
|
+
},
|
|
1508
|
+
"json": {
|
|
1509
|
+
"name": "json",
|
|
1510
|
+
"type": "boolean",
|
|
1511
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
1512
|
+
"allowNo": false,
|
|
1513
|
+
"dependsOn": [
|
|
1514
|
+
"non-interactive"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
"non-interactive": {
|
|
1518
|
+
"name": "non-interactive",
|
|
1519
|
+
"type": "boolean",
|
|
1520
|
+
"description": "Run the command in non-interactive mode.",
|
|
1521
|
+
"allowNo": false
|
|
1522
|
+
}
|
|
1523
|
+
},
|
|
1524
|
+
"args": {
|
|
1525
|
+
"name": {
|
|
1526
|
+
"name": "name",
|
|
1527
|
+
"description": "Name of the channel to edit",
|
|
1528
|
+
"required": false
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
"contextDefinition": {
|
|
1532
|
+
"loggedIn": {},
|
|
1533
|
+
"privateProjectConfig": {}
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1450
1536
|
"channel:rollout": {
|
|
1451
1537
|
"id": "channel:rollout",
|
|
1452
1538
|
"description": "Roll a new branch out on a channel incrementally.",
|
|
@@ -1899,12 +1985,12 @@
|
|
|
1899
1985
|
"name": "visibility",
|
|
1900
1986
|
"type": "option",
|
|
1901
1987
|
"description": "Visibility of the variable",
|
|
1902
|
-
"helpValue": "(
|
|
1988
|
+
"helpValue": "(plaintext|sensitive|encrypted)",
|
|
1903
1989
|
"multiple": false,
|
|
1904
1990
|
"options": [
|
|
1905
|
-
"
|
|
1991
|
+
"plaintext",
|
|
1906
1992
|
"sensitive",
|
|
1907
|
-
"
|
|
1993
|
+
"encrypted"
|
|
1908
1994
|
]
|
|
1909
1995
|
},
|
|
1910
1996
|
"scope": {
|
|
@@ -2279,7 +2365,7 @@
|
|
|
2279
2365
|
"type": "option",
|
|
2280
2366
|
"description": "Environment variable's environment",
|
|
2281
2367
|
"helpValue": "(development|preview|production)",
|
|
2282
|
-
"multiple":
|
|
2368
|
+
"multiple": true,
|
|
2283
2369
|
"options": [
|
|
2284
2370
|
"development",
|
|
2285
2371
|
"preview",
|
|
@@ -2396,12 +2482,12 @@
|
|
|
2396
2482
|
"name": "visibility",
|
|
2397
2483
|
"type": "option",
|
|
2398
2484
|
"description": "Visibility of the variable",
|
|
2399
|
-
"helpValue": "(
|
|
2485
|
+
"helpValue": "(plaintext|sensitive|encrypted)",
|
|
2400
2486
|
"multiple": false,
|
|
2401
2487
|
"options": [
|
|
2402
|
-
"
|
|
2488
|
+
"plaintext",
|
|
2403
2489
|
"sensitive",
|
|
2404
|
-
"
|
|
2490
|
+
"encrypted"
|
|
2405
2491
|
]
|
|
2406
2492
|
},
|
|
2407
2493
|
"scope": {
|
|
@@ -2867,7 +2953,6 @@
|
|
|
2867
2953
|
"pluginName": "eas-cli",
|
|
2868
2954
|
"pluginAlias": "eas-cli",
|
|
2869
2955
|
"pluginType": "core",
|
|
2870
|
-
"hidden": true,
|
|
2871
2956
|
"aliases": [],
|
|
2872
2957
|
"flags": {
|
|
2873
2958
|
"rollout-percentage": {
|
|
@@ -2877,6 +2962,12 @@
|
|
|
2877
2962
|
"required": false,
|
|
2878
2963
|
"multiple": false
|
|
2879
2964
|
},
|
|
2965
|
+
"branch": {
|
|
2966
|
+
"name": "branch",
|
|
2967
|
+
"type": "option",
|
|
2968
|
+
"description": "Branch for which to list updates to select from",
|
|
2969
|
+
"multiple": false
|
|
2970
|
+
},
|
|
2880
2971
|
"json": {
|
|
2881
2972
|
"name": "json",
|
|
2882
2973
|
"type": "boolean",
|
|
@@ -2896,12 +2987,12 @@
|
|
|
2896
2987
|
"args": {
|
|
2897
2988
|
"groupId": {
|
|
2898
2989
|
"name": "groupId",
|
|
2899
|
-
"description": "The ID of an update group to edit."
|
|
2900
|
-
"required": true
|
|
2990
|
+
"description": "The ID of an update group to edit."
|
|
2901
2991
|
}
|
|
2902
2992
|
},
|
|
2903
2993
|
"contextDefinition": {
|
|
2904
|
-
"loggedIn": {}
|
|
2994
|
+
"loggedIn": {},
|
|
2995
|
+
"privateProjectConfig": {}
|
|
2905
2996
|
}
|
|
2906
2997
|
},
|
|
2907
2998
|
"update": {
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "12.
|
|
4
|
+
"version": "12.6.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@expo/apple-utils": "
|
|
11
|
+
"@expo/apple-utils": "2.0.2",
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
13
|
"@expo/config": "8.5.4",
|
|
14
14
|
"@expo/config-plugins": "7.8.4",
|
|
15
|
-
"@expo/config-types": "50.0.0",
|
|
16
15
|
"@expo/eas-build-job": "1.0.136",
|
|
17
16
|
"@expo/eas-json": "12.5.2",
|
|
18
17
|
"@expo/env": "^0.3.0",
|
|
@@ -228,5 +227,5 @@
|
|
|
228
227
|
"node": "20.11.0",
|
|
229
228
|
"yarn": "1.22.21"
|
|
230
229
|
},
|
|
231
|
-
"gitHead": "
|
|
230
|
+
"gitHead": "367b763adffe71d64789d3432337ddb96df25015"
|
|
232
231
|
}
|