eas-cli 16.16.0 → 16.17.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 +166 -82
- package/build/commands/deploy/alias/delete.d.ts +21 -0
- package/build/commands/deploy/alias/delete.js +98 -0
- package/build/commands/deploy/alias/index.d.ts +21 -0
- package/build/commands/deploy/{alias.js → alias/index.js} +8 -8
- package/build/commands/deploy/{alias.d.ts → delete.d.ts} +4 -4
- package/build/commands/deploy/delete.js +84 -0
- package/build/credentials/ios/IosCredentialsProvider.js +1 -1
- package/build/graphql/generated.d.ts +72 -0
- package/build/worker/deployment.d.ts +23 -1
- package/build/worker/deployment.js +27 -1
- package/build/worker/mutations.d.ts +12 -1
- package/build/worker/mutations.js +33 -0
- package/build/worker/queries.d.ts +8 -1
- package/build/worker/queries.js +42 -0
- package/oclif.manifest.json +112 -32
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.
|
|
2
|
+
"version": "16.17.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -1937,44 +1937,18 @@
|
|
|
1937
1937
|
"vcsClient": {}
|
|
1938
1938
|
}
|
|
1939
1939
|
},
|
|
1940
|
-
"deploy:
|
|
1941
|
-
"id": "deploy:
|
|
1942
|
-
"description": "
|
|
1940
|
+
"deploy:delete": {
|
|
1941
|
+
"id": "deploy:delete",
|
|
1942
|
+
"description": "Delete a deployment.",
|
|
1943
1943
|
"strict": true,
|
|
1944
1944
|
"pluginName": "eas-cli",
|
|
1945
1945
|
"pluginAlias": "eas-cli",
|
|
1946
1946
|
"pluginType": "core",
|
|
1947
1947
|
"state": "preview",
|
|
1948
1948
|
"aliases": [
|
|
1949
|
-
"worker:
|
|
1950
|
-
"deploy:promote"
|
|
1949
|
+
"worker:delete"
|
|
1951
1950
|
],
|
|
1952
1951
|
"flags": {
|
|
1953
|
-
"prod": {
|
|
1954
|
-
"name": "prod",
|
|
1955
|
-
"type": "boolean",
|
|
1956
|
-
"description": "Promote an existing deployment to production.",
|
|
1957
|
-
"allowNo": false,
|
|
1958
|
-
"aliases": [
|
|
1959
|
-
"production"
|
|
1960
|
-
]
|
|
1961
|
-
},
|
|
1962
|
-
"alias": {
|
|
1963
|
-
"name": "alias",
|
|
1964
|
-
"type": "option",
|
|
1965
|
-
"description": "Custom alias to assign to the existing deployment.",
|
|
1966
|
-
"required": false,
|
|
1967
|
-
"helpValue": "name",
|
|
1968
|
-
"multiple": false
|
|
1969
|
-
},
|
|
1970
|
-
"id": {
|
|
1971
|
-
"name": "id",
|
|
1972
|
-
"type": "option",
|
|
1973
|
-
"description": "Unique identifier of an existing deployment.",
|
|
1974
|
-
"required": false,
|
|
1975
|
-
"helpValue": "xyz123",
|
|
1976
|
-
"multiple": false
|
|
1977
|
-
},
|
|
1978
1952
|
"json": {
|
|
1979
1953
|
"name": "json",
|
|
1980
1954
|
"type": "boolean",
|
|
@@ -1991,7 +1965,11 @@
|
|
|
1991
1965
|
"allowNo": false
|
|
1992
1966
|
}
|
|
1993
1967
|
},
|
|
1994
|
-
"args": {
|
|
1968
|
+
"args": {
|
|
1969
|
+
"DEPLOYMENT_ID": {
|
|
1970
|
+
"name": "DEPLOYMENT_ID"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1995
1973
|
"contextDefinition": {
|
|
1996
1974
|
"getDynamicPublicProjectConfigAsync": {},
|
|
1997
1975
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
@@ -4534,6 +4512,108 @@
|
|
|
4534
4512
|
"projectDir": {},
|
|
4535
4513
|
"vcsClient": {}
|
|
4536
4514
|
}
|
|
4515
|
+
},
|
|
4516
|
+
"deploy:alias:delete": {
|
|
4517
|
+
"id": "deploy:alias:delete",
|
|
4518
|
+
"description": "Delete deployment aliases.",
|
|
4519
|
+
"strict": true,
|
|
4520
|
+
"pluginName": "eas-cli",
|
|
4521
|
+
"pluginAlias": "eas-cli",
|
|
4522
|
+
"pluginType": "core",
|
|
4523
|
+
"state": "preview",
|
|
4524
|
+
"aliases": [
|
|
4525
|
+
"worker:alias:delete"
|
|
4526
|
+
],
|
|
4527
|
+
"flags": {
|
|
4528
|
+
"json": {
|
|
4529
|
+
"name": "json",
|
|
4530
|
+
"type": "boolean",
|
|
4531
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
4532
|
+
"allowNo": false,
|
|
4533
|
+
"dependsOn": [
|
|
4534
|
+
"non-interactive"
|
|
4535
|
+
]
|
|
4536
|
+
},
|
|
4537
|
+
"non-interactive": {
|
|
4538
|
+
"name": "non-interactive",
|
|
4539
|
+
"type": "boolean",
|
|
4540
|
+
"description": "Run the command in non-interactive mode.",
|
|
4541
|
+
"allowNo": false
|
|
4542
|
+
}
|
|
4543
|
+
},
|
|
4544
|
+
"args": {
|
|
4545
|
+
"ALIAS_NAME": {
|
|
4546
|
+
"name": "ALIAS_NAME"
|
|
4547
|
+
}
|
|
4548
|
+
},
|
|
4549
|
+
"contextDefinition": {
|
|
4550
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4551
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4552
|
+
"projectDir": {},
|
|
4553
|
+
"loggedIn": {}
|
|
4554
|
+
}
|
|
4555
|
+
},
|
|
4556
|
+
"deploy:alias": {
|
|
4557
|
+
"id": "deploy:alias",
|
|
4558
|
+
"description": "Assign deployment aliases.",
|
|
4559
|
+
"strict": true,
|
|
4560
|
+
"pluginName": "eas-cli",
|
|
4561
|
+
"pluginAlias": "eas-cli",
|
|
4562
|
+
"pluginType": "core",
|
|
4563
|
+
"state": "preview",
|
|
4564
|
+
"aliases": [
|
|
4565
|
+
"worker:alias",
|
|
4566
|
+
"deploy:promote"
|
|
4567
|
+
],
|
|
4568
|
+
"flags": {
|
|
4569
|
+
"prod": {
|
|
4570
|
+
"name": "prod",
|
|
4571
|
+
"type": "boolean",
|
|
4572
|
+
"description": "Promote an existing deployment to production.",
|
|
4573
|
+
"allowNo": false,
|
|
4574
|
+
"aliases": [
|
|
4575
|
+
"production"
|
|
4576
|
+
]
|
|
4577
|
+
},
|
|
4578
|
+
"alias": {
|
|
4579
|
+
"name": "alias",
|
|
4580
|
+
"type": "option",
|
|
4581
|
+
"description": "Custom alias to assign to the existing deployment.",
|
|
4582
|
+
"required": false,
|
|
4583
|
+
"helpValue": "name",
|
|
4584
|
+
"multiple": false
|
|
4585
|
+
},
|
|
4586
|
+
"id": {
|
|
4587
|
+
"name": "id",
|
|
4588
|
+
"type": "option",
|
|
4589
|
+
"description": "Unique identifier of an existing deployment.",
|
|
4590
|
+
"required": false,
|
|
4591
|
+
"helpValue": "xyz123",
|
|
4592
|
+
"multiple": false
|
|
4593
|
+
},
|
|
4594
|
+
"json": {
|
|
4595
|
+
"name": "json",
|
|
4596
|
+
"type": "boolean",
|
|
4597
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
4598
|
+
"allowNo": false,
|
|
4599
|
+
"dependsOn": [
|
|
4600
|
+
"non-interactive"
|
|
4601
|
+
]
|
|
4602
|
+
},
|
|
4603
|
+
"non-interactive": {
|
|
4604
|
+
"name": "non-interactive",
|
|
4605
|
+
"type": "boolean",
|
|
4606
|
+
"description": "Run the command in non-interactive mode.",
|
|
4607
|
+
"allowNo": false
|
|
4608
|
+
}
|
|
4609
|
+
},
|
|
4610
|
+
"args": {},
|
|
4611
|
+
"contextDefinition": {
|
|
4612
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4613
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4614
|
+
"projectDir": {},
|
|
4615
|
+
"loggedIn": {}
|
|
4616
|
+
}
|
|
4537
4617
|
}
|
|
4538
4618
|
}
|
|
4539
4619
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "16.
|
|
4
|
+
"version": "16.17.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -241,5 +241,5 @@
|
|
|
241
241
|
"node": "20.11.0",
|
|
242
242
|
"yarn": "1.22.21"
|
|
243
243
|
},
|
|
244
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "38e64cbd9a6670e52f189475d3ca835944756da5"
|
|
245
245
|
}
|