eas-cli 18.5.0 → 18.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.
Files changed (55) hide show
  1. package/README.md +88 -88
  2. package/build/commandUtils/pagination.d.ts +2 -1
  3. package/build/commandUtils/pagination.js +3 -2
  4. package/build/commands/deploy/index.js +18 -2
  5. package/build/commands/metadata/pull.d.ts +1 -1
  6. package/build/commands/metadata/pull.js +2 -4
  7. package/build/commands/metadata/push.d.ts +1 -1
  8. package/build/commands/metadata/push.js +2 -4
  9. package/build/commands/observe/events.d.ts +27 -0
  10. package/build/commands/observe/events.js +140 -0
  11. package/build/commands/observe/metrics.d.ts +21 -0
  12. package/build/commands/observe/metrics.js +111 -0
  13. package/build/commands/observe/versions.d.ts +19 -0
  14. package/build/commands/observe/versions.js +69 -0
  15. package/build/credentials/ios/IosCredentialsProvider.js +8 -4
  16. package/build/credentials/ios/utils/provisioningProfile.d.ts +1 -0
  17. package/build/credentials/ios/utils/provisioningProfile.js +15 -1
  18. package/build/graphql/generated.d.ts +634 -61
  19. package/build/graphql/generated.js +11 -9
  20. package/build/graphql/queries/ObserveQuery.d.ts +35 -0
  21. package/build/graphql/queries/ObserveQuery.js +109 -0
  22. package/build/graphql/types/Observe.d.ts +3 -0
  23. package/build/graphql/types/Observe.js +84 -0
  24. package/build/metadata/apple/config/reader.d.ts +9 -1
  25. package/build/metadata/apple/config/reader.js +25 -0
  26. package/build/metadata/apple/config/writer.d.ts +7 -1
  27. package/build/metadata/apple/config/writer.js +44 -0
  28. package/build/metadata/apple/data.d.ts +2 -1
  29. package/build/metadata/apple/tasks/app-clip.d.ts +37 -0
  30. package/build/metadata/apple/tasks/app-clip.js +404 -0
  31. package/build/metadata/apple/tasks/index.js +2 -0
  32. package/build/metadata/apple/tasks/previews.js +16 -12
  33. package/build/metadata/apple/tasks/screenshots.js +15 -4
  34. package/build/metadata/apple/types.d.ts +28 -1
  35. package/build/observe/fetchEvents.d.ts +27 -0
  36. package/build/observe/fetchEvents.js +83 -0
  37. package/build/observe/fetchMetrics.d.ts +11 -0
  38. package/build/observe/fetchMetrics.js +78 -0
  39. package/build/observe/fetchVersions.d.ts +7 -0
  40. package/build/observe/fetchVersions.js +31 -0
  41. package/build/observe/formatEvents.d.ts +31 -0
  42. package/build/observe/formatEvents.js +99 -0
  43. package/build/observe/formatMetrics.d.ts +38 -0
  44. package/build/observe/formatMetrics.js +206 -0
  45. package/build/observe/formatVersions.d.ts +32 -0
  46. package/build/observe/formatVersions.js +92 -0
  47. package/build/observe/metricNames.d.ts +4 -0
  48. package/build/observe/metricNames.js +33 -0
  49. package/build/observe/startAndEndTime.d.ts +18 -0
  50. package/build/observe/startAndEndTime.js +36 -0
  51. package/build/user/SessionManager.js +11 -0
  52. package/build/worker/upload.js +15 -5
  53. package/oclif.manifest.json +1782 -1306
  54. package/package.json +9 -6
  55. package/schema/metadata-0.json +177 -0
@@ -1486,34 +1486,48 @@
1486
1486
  "view.js"
1487
1487
  ]
1488
1488
  },
1489
- "channel:create": {
1489
+ "build:cancel": {
1490
1490
  "aliases": [],
1491
1491
  "args": {
1492
- "name": {
1493
- "description": "Name of the channel to create",
1494
- "name": "name",
1495
- "required": false
1492
+ "BUILD_ID": {
1493
+ "name": "BUILD_ID"
1496
1494
  }
1497
1495
  },
1498
- "description": "create a channel",
1496
+ "description": "cancel a build",
1499
1497
  "flags": {
1500
- "json": {
1501
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1502
- "name": "json",
1503
- "allowNo": false,
1504
- "type": "boolean"
1505
- },
1506
1498
  "non-interactive": {
1507
1499
  "description": "Run the command in non-interactive mode.",
1508
1500
  "name": "non-interactive",
1509
1501
  "noCacheDefault": true,
1510
1502
  "allowNo": false,
1511
1503
  "type": "boolean"
1504
+ },
1505
+ "platform": {
1506
+ "char": "p",
1507
+ "description": "Filter builds by the platform if build ID is not provided",
1508
+ "name": "platform",
1509
+ "hasDynamicHelp": false,
1510
+ "multiple": false,
1511
+ "options": [
1512
+ "android",
1513
+ "ios",
1514
+ "all"
1515
+ ],
1516
+ "type": "option"
1517
+ },
1518
+ "profile": {
1519
+ "char": "e",
1520
+ "description": "Filter builds by build profile if build ID is not provided",
1521
+ "name": "profile",
1522
+ "hasDynamicHelp": false,
1523
+ "helpValue": "PROFILE_NAME",
1524
+ "multiple": false,
1525
+ "type": "option"
1512
1526
  }
1513
1527
  },
1514
1528
  "hasDynamicHelp": false,
1515
1529
  "hiddenAliases": [],
1516
- "id": "channel:create",
1530
+ "id": "build:cancel",
1517
1531
  "pluginAlias": "eas-cli",
1518
1532
  "pluginName": "eas-cli",
1519
1533
  "pluginType": "core",
@@ -1561,44 +1575,39 @@
1561
1575
  },
1562
1576
  "contextDefinition": {
1563
1577
  "projectId": {},
1564
- "loggedIn": {}
1578
+ "loggedIn": {},
1579
+ "vcsClient": {}
1565
1580
  },
1566
1581
  "isESM": false,
1567
1582
  "relativePath": [
1568
1583
  "build",
1569
1584
  "commands",
1570
- "channel",
1571
- "create.js"
1585
+ "build",
1586
+ "cancel.js"
1572
1587
  ]
1573
1588
  },
1574
- "channel:delete": {
1589
+ "build:configure": {
1575
1590
  "aliases": [],
1576
- "args": {
1577
- "name": {
1578
- "description": "Name of the channel to delete",
1579
- "name": "name",
1580
- "required": false
1581
- }
1582
- },
1583
- "description": "Delete a channel",
1591
+ "args": {},
1592
+ "description": "configure the project to support EAS Build",
1584
1593
  "flags": {
1585
- "json": {
1586
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1587
- "name": "json",
1588
- "allowNo": false,
1589
- "type": "boolean"
1590
- },
1591
- "non-interactive": {
1592
- "description": "Run the command in non-interactive mode.",
1593
- "name": "non-interactive",
1594
- "noCacheDefault": true,
1595
- "allowNo": false,
1596
- "type": "boolean"
1594
+ "platform": {
1595
+ "char": "p",
1596
+ "description": "Platform to configure",
1597
+ "name": "platform",
1598
+ "hasDynamicHelp": false,
1599
+ "multiple": false,
1600
+ "options": [
1601
+ "android",
1602
+ "ios",
1603
+ "all"
1604
+ ],
1605
+ "type": "option"
1597
1606
  }
1598
1607
  },
1599
1608
  "hasDynamicHelp": false,
1600
1609
  "hiddenAliases": [],
1601
- "id": "channel:delete",
1610
+ "id": "build:configure",
1602
1611
  "pluginAlias": "eas-cli",
1603
1612
  "pluginName": "eas-cli",
1604
1613
  "pluginType": "core",
@@ -1645,52 +1654,60 @@
1645
1654
  }
1646
1655
  },
1647
1656
  "contextDefinition": {
1648
- "projectId": {},
1649
- "loggedIn": {}
1657
+ "loggedIn": {},
1658
+ "privateProjectConfig": {},
1659
+ "vcsClient": {}
1650
1660
  },
1651
1661
  "isESM": false,
1652
1662
  "relativePath": [
1653
1663
  "build",
1654
1664
  "commands",
1655
- "channel",
1656
- "delete.js"
1665
+ "build",
1666
+ "configure.js"
1657
1667
  ]
1658
1668
  },
1659
- "channel:edit": {
1669
+ "build:delete": {
1660
1670
  "aliases": [],
1661
1671
  "args": {
1662
- "name": {
1663
- "description": "Name of the channel to edit",
1664
- "name": "name",
1665
- "required": false
1672
+ "BUILD_ID": {
1673
+ "name": "BUILD_ID"
1666
1674
  }
1667
1675
  },
1668
- "description": "point a channel at a new branch",
1676
+ "description": "delete a build",
1669
1677
  "flags": {
1670
- "branch": {
1671
- "description": "Name of the branch to point to",
1672
- "name": "branch",
1673
- "hasDynamicHelp": false,
1674
- "multiple": false,
1675
- "type": "option"
1676
- },
1677
- "json": {
1678
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1679
- "name": "json",
1680
- "allowNo": false,
1681
- "type": "boolean"
1682
- },
1683
1678
  "non-interactive": {
1684
1679
  "description": "Run the command in non-interactive mode.",
1685
1680
  "name": "non-interactive",
1686
1681
  "noCacheDefault": true,
1687
1682
  "allowNo": false,
1688
1683
  "type": "boolean"
1684
+ },
1685
+ "platform": {
1686
+ "char": "p",
1687
+ "description": "Filter builds by the platform if build ID is not provided",
1688
+ "name": "platform",
1689
+ "hasDynamicHelp": false,
1690
+ "multiple": false,
1691
+ "options": [
1692
+ "android",
1693
+ "ios",
1694
+ "all"
1695
+ ],
1696
+ "type": "option"
1697
+ },
1698
+ "profile": {
1699
+ "char": "e",
1700
+ "description": "Filter builds by build profile if build ID is not provided",
1701
+ "name": "profile",
1702
+ "hasDynamicHelp": false,
1703
+ "helpValue": "PROFILE_NAME",
1704
+ "multiple": false,
1705
+ "type": "option"
1689
1706
  }
1690
1707
  },
1691
1708
  "hasDynamicHelp": false,
1692
1709
  "hiddenAliases": [],
1693
- "id": "channel:edit",
1710
+ "id": "build:delete",
1694
1711
  "pluginAlias": "eas-cli",
1695
1712
  "pluginName": "eas-cli",
1696
1713
  "pluginType": "core",
@@ -1738,52 +1755,52 @@
1738
1755
  },
1739
1756
  "contextDefinition": {
1740
1757
  "projectId": {},
1741
- "loggedIn": {}
1758
+ "loggedIn": {},
1759
+ "vcsClient": {}
1742
1760
  },
1743
1761
  "isESM": false,
1744
1762
  "relativePath": [
1745
1763
  "build",
1746
1764
  "commands",
1747
- "channel",
1748
- "edit.js"
1765
+ "build",
1766
+ "delete.js"
1749
1767
  ]
1750
1768
  },
1751
- "channel:list": {
1769
+ "build:dev": {
1752
1770
  "aliases": [],
1753
1771
  "args": {},
1754
- "description": "list all channels",
1772
+ "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
1755
1773
  "flags": {
1756
- "offset": {
1757
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
1758
- "name": "offset",
1774
+ "platform": {
1775
+ "char": "p",
1776
+ "name": "platform",
1759
1777
  "hasDynamicHelp": false,
1760
1778
  "multiple": false,
1779
+ "options": [
1780
+ "ios",
1781
+ "android"
1782
+ ],
1761
1783
  "type": "option"
1762
1784
  },
1763
- "limit": {
1764
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
1765
- "name": "limit",
1785
+ "profile": {
1786
+ "char": "e",
1787
+ "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.",
1788
+ "name": "profile",
1766
1789
  "hasDynamicHelp": false,
1790
+ "helpValue": "PROFILE_NAME",
1767
1791
  "multiple": false,
1768
1792
  "type": "option"
1769
1793
  },
1770
- "json": {
1771
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1772
- "name": "json",
1773
- "allowNo": false,
1774
- "type": "boolean"
1775
- },
1776
- "non-interactive": {
1777
- "description": "Run the command in non-interactive mode.",
1778
- "name": "non-interactive",
1779
- "noCacheDefault": true,
1794
+ "skip-build-if-not-found": {
1795
+ "description": "Skip build if no successful build with matching fingerprint is found.",
1796
+ "name": "skip-build-if-not-found",
1780
1797
  "allowNo": false,
1781
1798
  "type": "boolean"
1782
1799
  }
1783
1800
  },
1784
1801
  "hasDynamicHelp": false,
1785
1802
  "hiddenAliases": [],
1786
- "id": "channel:list",
1803
+ "id": "build:dev",
1787
1804
  "pluginAlias": "eas-cli",
1788
1805
  "pluginName": "eas-cli",
1789
1806
  "pluginType": "core",
@@ -1830,35 +1847,52 @@
1830
1847
  }
1831
1848
  },
1832
1849
  "contextDefinition": {
1833
- "projectId": {},
1834
- "loggedIn": {}
1850
+ "loggedIn": {},
1851
+ "getDynamicPublicProjectConfigAsync": {},
1852
+ "getDynamicPrivateProjectConfigAsync": {},
1853
+ "projectDir": {},
1854
+ "vcsClient": {},
1855
+ "analytics": {},
1856
+ "projectId": {}
1835
1857
  },
1836
1858
  "isESM": false,
1837
1859
  "relativePath": [
1838
1860
  "build",
1839
1861
  "commands",
1840
- "channel",
1841
- "list.js"
1862
+ "build",
1863
+ "dev.js"
1842
1864
  ]
1843
1865
  },
1844
- "channel:pause": {
1866
+ "build:download": {
1845
1867
  "aliases": [],
1846
- "args": {
1847
- "name": {
1848
- "description": "Name of the channel to edit",
1849
- "name": "name",
1850
- "required": false
1851
- }
1852
- },
1853
- "description": "pause a channel to stop it from sending updates",
1868
+ "args": {},
1869
+ "description": "download simulator/emulator builds for a given fingerprint hash",
1854
1870
  "flags": {
1855
- "branch": {
1856
- "description": "Name of the branch to point to",
1857
- "name": "branch",
1871
+ "fingerprint": {
1872
+ "description": "Fingerprint hash of the build to download",
1873
+ "name": "fingerprint",
1874
+ "required": true,
1875
+ "hasDynamicHelp": false,
1876
+ "multiple": false,
1877
+ "type": "option"
1878
+ },
1879
+ "platform": {
1880
+ "char": "p",
1881
+ "name": "platform",
1858
1882
  "hasDynamicHelp": false,
1859
1883
  "multiple": false,
1884
+ "options": [
1885
+ "ios",
1886
+ "android"
1887
+ ],
1860
1888
  "type": "option"
1861
1889
  },
1890
+ "dev-client": {
1891
+ "description": "Filter only dev-client builds.",
1892
+ "name": "dev-client",
1893
+ "allowNo": true,
1894
+ "type": "boolean"
1895
+ },
1862
1896
  "json": {
1863
1897
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1864
1898
  "name": "json",
@@ -1875,7 +1909,7 @@
1875
1909
  },
1876
1910
  "hasDynamicHelp": false,
1877
1911
  "hiddenAliases": [],
1878
- "id": "channel:pause",
1912
+ "id": "build:download",
1879
1913
  "pluginAlias": "eas-cli",
1880
1914
  "pluginName": "eas-cli",
1881
1915
  "pluginType": "core",
@@ -1922,412 +1956,182 @@
1922
1956
  }
1923
1957
  },
1924
1958
  "contextDefinition": {
1925
- "projectId": {},
1926
- "loggedIn": {}
1959
+ "loggedIn": {},
1960
+ "projectId": {}
1927
1961
  },
1928
1962
  "isESM": false,
1929
1963
  "relativePath": [
1930
1964
  "build",
1931
1965
  "commands",
1932
- "channel",
1933
- "pause.js"
1966
+ "build",
1967
+ "download.js"
1934
1968
  ]
1935
1969
  },
1936
- "channel:resume": {
1970
+ "build": {
1937
1971
  "aliases": [],
1938
- "args": {
1939
- "name": {
1940
- "description": "Name of the channel to edit",
1941
- "name": "name",
1942
- "required": false
1943
- }
1944
- },
1945
- "description": "resume a channel to start sending updates",
1972
+ "args": {},
1973
+ "description": "start a build",
1946
1974
  "flags": {
1947
- "branch": {
1948
- "description": "Name of the branch to point to",
1949
- "name": "branch",
1975
+ "platform": {
1976
+ "char": "p",
1977
+ "name": "platform",
1950
1978
  "hasDynamicHelp": false,
1951
1979
  "multiple": false,
1980
+ "options": [
1981
+ "android",
1982
+ "ios",
1983
+ "all"
1984
+ ],
1952
1985
  "type": "option"
1953
1986
  },
1954
- "json": {
1955
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1956
- "name": "json",
1987
+ "skip-credentials-check": {
1988
+ "hidden": true,
1989
+ "name": "skip-credentials-check",
1957
1990
  "allowNo": false,
1958
1991
  "type": "boolean"
1959
1992
  },
1960
- "non-interactive": {
1961
- "description": "Run the command in non-interactive mode.",
1962
- "name": "non-interactive",
1963
- "noCacheDefault": true,
1993
+ "skip-project-configuration": {
1994
+ "hidden": true,
1995
+ "name": "skip-project-configuration",
1964
1996
  "allowNo": false,
1965
1997
  "type": "boolean"
1966
- }
1967
- },
1968
- "hasDynamicHelp": false,
1969
- "hiddenAliases": [],
1970
- "id": "channel:resume",
1971
- "pluginAlias": "eas-cli",
1972
- "pluginName": "eas-cli",
1973
- "pluginType": "core",
1974
- "strict": true,
1975
- "enableJsonFlag": false,
1976
- "ContextOptions": {
1977
- "LoggedIn": {
1978
- "loggedIn": {}
1979
- },
1980
- "MaybeLoggedIn": {
1981
- "maybeLoggedIn": {}
1982
1998
  },
1983
- "DynamicLoggedIn": {
1984
- "getDynamicLoggedInAsync": {}
1985
- },
1986
- "SessionManagment": {
1987
- "sessionManager": {}
1988
- },
1989
- "OptionalProjectConfig": {
1990
- "optionalPrivateProjectConfig": {}
1991
- },
1992
- "ProjectDir": {
1993
- "projectDir": {}
1999
+ "profile": {
2000
+ "char": "e",
2001
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2002
+ "name": "profile",
2003
+ "hasDynamicHelp": false,
2004
+ "helpValue": "PROFILE_NAME",
2005
+ "multiple": false,
2006
+ "type": "option"
1994
2007
  },
1995
- "DynamicProjectConfig": {
1996
- "getDynamicPublicProjectConfigAsync": {},
1997
- "getDynamicPrivateProjectConfigAsync": {}
2008
+ "local": {
2009
+ "description": "Run build locally [experimental]",
2010
+ "name": "local",
2011
+ "allowNo": false,
2012
+ "type": "boolean"
1998
2013
  },
1999
- "ProjectConfig": {
2000
- "loggedIn": {},
2001
- "privateProjectConfig": {}
2014
+ "output": {
2015
+ "description": "Output path for local build",
2016
+ "name": "output",
2017
+ "hasDynamicHelp": false,
2018
+ "multiple": false,
2019
+ "type": "option"
2002
2020
  },
2003
- "Analytics": {
2004
- "analytics": {}
2021
+ "wait": {
2022
+ "description": "Wait for build(s) to complete",
2023
+ "name": "wait",
2024
+ "allowNo": true,
2025
+ "type": "boolean"
2005
2026
  },
2006
- "Vcs": {
2007
- "vcsClient": {}
2027
+ "clear-cache": {
2028
+ "description": "Clear cache before the build",
2029
+ "name": "clear-cache",
2030
+ "allowNo": false,
2031
+ "type": "boolean"
2008
2032
  },
2009
- "ServerSideEnvironmentVariables": {
2010
- "getServerSideEnvironmentVariablesAsync": {}
2033
+ "auto-submit": {
2034
+ "aliases": [
2035
+ "submit"
2036
+ ],
2037
+ "char": "s",
2038
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
2039
+ "exclusive": [
2040
+ "auto-submit-with-profile"
2041
+ ],
2042
+ "name": "auto-submit",
2043
+ "allowNo": false,
2044
+ "type": "boolean"
2011
2045
  },
2012
- "ProjectId": {
2013
- "projectId": {}
2014
- }
2015
- },
2016
- "contextDefinition": {
2017
- "projectId": {},
2018
- "loggedIn": {}
2019
- },
2020
- "isESM": false,
2021
- "relativePath": [
2022
- "build",
2023
- "commands",
2024
- "channel",
2025
- "resume.js"
2026
- ]
2027
- },
2028
- "channel:rollout": {
2029
- "aliases": [],
2030
- "args": {
2031
- "channel": {
2032
- "description": "channel on which the rollout should be done",
2033
- "name": "channel"
2034
- }
2035
- },
2036
- "description": "Roll a new branch out on a channel incrementally.",
2037
- "flags": {
2038
- "action": {
2039
- "description": "Rollout action to perform",
2040
- "name": "action",
2041
- "relationships": [
2042
- {
2043
- "type": "all",
2044
- "flags": [
2045
- {
2046
- "name": "percent"
2047
- },
2048
- {
2049
- "name": "outcome"
2050
- },
2051
- {
2052
- "name": "branch"
2053
- },
2054
- {
2055
- "name": "runtime-version"
2056
- }
2057
- ]
2058
- }
2046
+ "auto-submit-with-profile": {
2047
+ "description": "Submit on build complete using the submit profile with provided name",
2048
+ "exclusive": [
2049
+ "auto-submit"
2059
2050
  ],
2060
- "required": false,
2051
+ "name": "auto-submit-with-profile",
2061
2052
  "hasDynamicHelp": false,
2053
+ "helpValue": "PROFILE_NAME",
2062
2054
  "multiple": false,
2063
- "options": [
2064
- "create",
2065
- "edit",
2066
- "end",
2067
- "view"
2068
- ],
2069
2055
  "type": "option"
2070
2056
  },
2071
- "percent": {
2072
- "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
2073
- "name": "percent",
2074
- "required": false,
2057
+ "what-to-test": {
2058
+ "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
2059
+ "name": "what-to-test",
2075
2060
  "hasDynamicHelp": false,
2076
2061
  "multiple": false,
2077
2062
  "type": "option"
2078
2063
  },
2079
- "outcome": {
2080
- "description": "End outcome of rollout. Use with --action=end",
2081
- "name": "outcome",
2082
- "required": false,
2064
+ "resource-class": {
2065
+ "deprecated": {
2066
+ "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/"
2067
+ },
2068
+ "description": "The instance type that will be used to run this build [experimental]",
2069
+ "hidden": true,
2070
+ "name": "resource-class",
2083
2071
  "hasDynamicHelp": false,
2084
2072
  "multiple": false,
2085
2073
  "options": [
2086
- "republish-and-revert",
2087
- "revert"
2074
+ "default",
2075
+ "large",
2076
+ "m1-medium",
2077
+ "medium",
2078
+ "m-medium",
2079
+ "m-large"
2088
2080
  ],
2089
2081
  "type": "option"
2090
2082
  },
2091
- "branch": {
2092
- "description": "Branch to roll out. Use with --action=create",
2093
- "name": "branch",
2094
- "required": false,
2095
- "hasDynamicHelp": false,
2096
- "multiple": false,
2097
- "type": "option"
2098
- },
2099
- "runtime-version": {
2100
- "description": "Runtime version to target. Use with --action=create",
2101
- "name": "runtime-version",
2102
- "required": false,
2083
+ "message": {
2084
+ "char": "m",
2085
+ "description": "A short message describing the build",
2086
+ "name": "message",
2103
2087
  "hasDynamicHelp": false,
2104
2088
  "multiple": false,
2105
2089
  "type": "option"
2106
2090
  },
2107
- "private-key-path": {
2108
- "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/",
2109
- "name": "private-key-path",
2110
- "required": false,
2091
+ "build-logger-level": {
2092
+ "description": "The level of logs to output during the build process. Defaults to \"info\".",
2093
+ "name": "build-logger-level",
2111
2094
  "hasDynamicHelp": false,
2112
2095
  "multiple": false,
2096
+ "options": [
2097
+ "trace",
2098
+ "debug",
2099
+ "info",
2100
+ "warn",
2101
+ "error",
2102
+ "fatal"
2103
+ ],
2113
2104
  "type": "option"
2114
2105
  },
2115
- "json": {
2116
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2117
- "name": "json",
2106
+ "freeze-credentials": {
2107
+ "description": "Prevent the build from updating credentials in non-interactive mode",
2108
+ "name": "freeze-credentials",
2118
2109
  "allowNo": false,
2119
2110
  "type": "boolean"
2120
2111
  },
2121
- "non-interactive": {
2122
- "description": "Run the command in non-interactive mode.",
2123
- "name": "non-interactive",
2124
- "noCacheDefault": true,
2112
+ "verbose-logs": {
2113
+ "description": "Use verbose logs for the build process",
2114
+ "name": "verbose-logs",
2125
2115
  "allowNo": false,
2126
2116
  "type": "boolean"
2127
- }
2128
- },
2129
- "hasDynamicHelp": false,
2130
- "hiddenAliases": [],
2131
- "id": "channel:rollout",
2132
- "pluginAlias": "eas-cli",
2133
- "pluginName": "eas-cli",
2134
- "pluginType": "core",
2135
- "strict": true,
2136
- "enableJsonFlag": false,
2137
- "ContextOptions": {
2138
- "LoggedIn": {
2139
- "loggedIn": {}
2140
- },
2141
- "MaybeLoggedIn": {
2142
- "maybeLoggedIn": {}
2143
2117
  },
2144
- "DynamicLoggedIn": {
2145
- "getDynamicLoggedInAsync": {}
2146
- },
2147
- "SessionManagment": {
2148
- "sessionManager": {}
2149
- },
2150
- "OptionalProjectConfig": {
2151
- "optionalPrivateProjectConfig": {}
2152
- },
2153
- "ProjectDir": {
2154
- "projectDir": {}
2155
- },
2156
- "DynamicProjectConfig": {
2157
- "getDynamicPublicProjectConfigAsync": {},
2158
- "getDynamicPrivateProjectConfigAsync": {}
2159
- },
2160
- "ProjectConfig": {
2161
- "loggedIn": {},
2162
- "privateProjectConfig": {}
2163
- },
2164
- "Analytics": {
2165
- "analytics": {}
2166
- },
2167
- "Vcs": {
2168
- "vcsClient": {}
2169
- },
2170
- "ServerSideEnvironmentVariables": {
2171
- "getServerSideEnvironmentVariablesAsync": {}
2172
- },
2173
- "ProjectId": {
2174
- "projectId": {}
2175
- }
2176
- },
2177
- "contextDefinition": {
2178
- "loggedIn": {},
2179
- "privateProjectConfig": {},
2180
- "vcsClient": {}
2181
- },
2182
- "isESM": false,
2183
- "relativePath": [
2184
- "build",
2185
- "commands",
2186
- "channel",
2187
- "rollout.js"
2188
- ]
2189
- },
2190
- "channel:view": {
2191
- "aliases": [],
2192
- "args": {
2193
- "name": {
2194
- "description": "Name of the channel to view",
2195
- "name": "name",
2196
- "required": false
2197
- }
2198
- },
2199
- "description": "view a channel",
2200
- "flags": {
2201
2118
  "json": {
2202
2119
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2203
2120
  "name": "json",
2204
- "allowNo": false,
2205
- "type": "boolean"
2206
- },
2207
- "non-interactive": {
2208
- "description": "Run the command in non-interactive mode.",
2209
- "name": "non-interactive",
2210
- "noCacheDefault": true,
2211
- "allowNo": false,
2212
- "type": "boolean"
2213
- },
2214
- "offset": {
2215
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2216
- "name": "offset",
2217
- "hasDynamicHelp": false,
2218
- "multiple": false,
2219
- "type": "option"
2220
- },
2221
- "limit": {
2222
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2223
- "name": "limit",
2224
- "hasDynamicHelp": false,
2225
- "multiple": false,
2226
- "type": "option"
2227
- }
2228
- },
2229
- "hasDynamicHelp": false,
2230
- "hiddenAliases": [],
2231
- "id": "channel:view",
2232
- "pluginAlias": "eas-cli",
2233
- "pluginName": "eas-cli",
2234
- "pluginType": "core",
2235
- "strict": true,
2236
- "enableJsonFlag": false,
2237
- "ContextOptions": {
2238
- "LoggedIn": {
2239
- "loggedIn": {}
2240
- },
2241
- "MaybeLoggedIn": {
2242
- "maybeLoggedIn": {}
2243
- },
2244
- "DynamicLoggedIn": {
2245
- "getDynamicLoggedInAsync": {}
2246
- },
2247
- "SessionManagment": {
2248
- "sessionManager": {}
2249
- },
2250
- "OptionalProjectConfig": {
2251
- "optionalPrivateProjectConfig": {}
2252
- },
2253
- "ProjectDir": {
2254
- "projectDir": {}
2255
- },
2256
- "DynamicProjectConfig": {
2257
- "getDynamicPublicProjectConfigAsync": {},
2258
- "getDynamicPrivateProjectConfigAsync": {}
2259
- },
2260
- "ProjectConfig": {
2261
- "loggedIn": {},
2262
- "privateProjectConfig": {}
2263
- },
2264
- "Analytics": {
2265
- "analytics": {}
2266
- },
2267
- "Vcs": {
2268
- "vcsClient": {}
2269
- },
2270
- "ServerSideEnvironmentVariables": {
2271
- "getServerSideEnvironmentVariablesAsync": {}
2272
- },
2273
- "ProjectId": {
2274
- "projectId": {}
2275
- }
2276
- },
2277
- "contextDefinition": {
2278
- "projectId": {},
2279
- "loggedIn": {}
2280
- },
2281
- "isESM": false,
2282
- "relativePath": [
2283
- "build",
2284
- "commands",
2285
- "channel",
2286
- "view.js"
2287
- ]
2288
- },
2289
- "build:cancel": {
2290
- "aliases": [],
2291
- "args": {
2292
- "BUILD_ID": {
2293
- "name": "BUILD_ID"
2294
- }
2295
- },
2296
- "description": "cancel a build",
2297
- "flags": {
2298
- "non-interactive": {
2299
- "description": "Run the command in non-interactive mode.",
2300
- "name": "non-interactive",
2301
- "noCacheDefault": true,
2302
- "allowNo": false,
2303
- "type": "boolean"
2304
- },
2305
- "platform": {
2306
- "char": "p",
2307
- "description": "Filter builds by the platform if build ID is not provided",
2308
- "name": "platform",
2309
- "hasDynamicHelp": false,
2310
- "multiple": false,
2311
- "options": [
2312
- "android",
2313
- "ios",
2314
- "all"
2315
- ],
2316
- "type": "option"
2121
+ "allowNo": false,
2122
+ "type": "boolean"
2317
2123
  },
2318
- "profile": {
2319
- "char": "e",
2320
- "description": "Filter builds by build profile if build ID is not provided",
2321
- "name": "profile",
2322
- "hasDynamicHelp": false,
2323
- "helpValue": "PROFILE_NAME",
2324
- "multiple": false,
2325
- "type": "option"
2124
+ "non-interactive": {
2125
+ "description": "Run the command in non-interactive mode.",
2126
+ "name": "non-interactive",
2127
+ "noCacheDefault": true,
2128
+ "allowNo": false,
2129
+ "type": "boolean"
2326
2130
  }
2327
2131
  },
2328
2132
  "hasDynamicHelp": false,
2329
2133
  "hiddenAliases": [],
2330
- "id": "build:cancel",
2134
+ "id": "build",
2331
2135
  "pluginAlias": "eas-cli",
2332
2136
  "pluginName": "eas-cli",
2333
2137
  "pluginType": "core",
@@ -2374,8 +2178,11 @@
2374
2178
  }
2375
2179
  },
2376
2180
  "contextDefinition": {
2377
- "projectId": {},
2378
2181
  "loggedIn": {},
2182
+ "getDynamicPublicProjectConfigAsync": {},
2183
+ "getDynamicPrivateProjectConfigAsync": {},
2184
+ "projectDir": {},
2185
+ "analytics": {},
2379
2186
  "vcsClient": {}
2380
2187
  },
2381
2188
  "isESM": false,
@@ -2383,31 +2190,75 @@
2383
2190
  "build",
2384
2191
  "commands",
2385
2192
  "build",
2386
- "cancel.js"
2193
+ "index.js"
2387
2194
  ]
2388
2195
  },
2389
- "build:configure": {
2196
+ "build:inspect": {
2390
2197
  "aliases": [],
2391
2198
  "args": {},
2392
- "description": "configure the project to support EAS Build",
2199
+ "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
2393
2200
  "flags": {
2394
2201
  "platform": {
2395
2202
  "char": "p",
2396
- "description": "Platform to configure",
2397
2203
  "name": "platform",
2204
+ "required": true,
2398
2205
  "hasDynamicHelp": false,
2399
2206
  "multiple": false,
2400
2207
  "options": [
2401
2208
  "android",
2402
- "ios",
2403
- "all"
2209
+ "ios"
2210
+ ],
2211
+ "type": "option"
2212
+ },
2213
+ "profile": {
2214
+ "char": "e",
2215
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2216
+ "name": "profile",
2217
+ "hasDynamicHelp": false,
2218
+ "helpValue": "PROFILE_NAME",
2219
+ "multiple": false,
2220
+ "type": "option"
2221
+ },
2222
+ "stage": {
2223
+ "char": "s",
2224
+ "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",
2225
+ "name": "stage",
2226
+ "required": true,
2227
+ "hasDynamicHelp": false,
2228
+ "multiple": false,
2229
+ "options": [
2230
+ "archive",
2231
+ "pre-build",
2232
+ "post-build"
2404
2233
  ],
2405
2234
  "type": "option"
2235
+ },
2236
+ "output": {
2237
+ "char": "o",
2238
+ "description": "Output directory.",
2239
+ "name": "output",
2240
+ "required": true,
2241
+ "hasDynamicHelp": false,
2242
+ "helpValue": "OUTPUT_DIRECTORY",
2243
+ "multiple": false,
2244
+ "type": "option"
2245
+ },
2246
+ "force": {
2247
+ "description": "Delete OUTPUT_DIRECTORY if it already exists.",
2248
+ "name": "force",
2249
+ "allowNo": false,
2250
+ "type": "boolean"
2251
+ },
2252
+ "verbose": {
2253
+ "char": "v",
2254
+ "name": "verbose",
2255
+ "allowNo": false,
2256
+ "type": "boolean"
2406
2257
  }
2407
2258
  },
2408
2259
  "hasDynamicHelp": false,
2409
2260
  "hiddenAliases": [],
2410
- "id": "build:configure",
2261
+ "id": "build:inspect",
2411
2262
  "pluginAlias": "eas-cli",
2412
2263
  "pluginName": "eas-cli",
2413
2264
  "pluginType": "core",
@@ -2455,7 +2306,10 @@
2455
2306
  },
2456
2307
  "contextDefinition": {
2457
2308
  "loggedIn": {},
2458
- "privateProjectConfig": {},
2309
+ "getDynamicPublicProjectConfigAsync": {},
2310
+ "getDynamicPrivateProjectConfigAsync": {},
2311
+ "projectDir": {},
2312
+ "analytics": {},
2459
2313
  "vcsClient": {}
2460
2314
  },
2461
2315
  "isESM": false,
@@ -2463,51 +2317,59 @@
2463
2317
  "build",
2464
2318
  "commands",
2465
2319
  "build",
2466
- "configure.js"
2320
+ "inspect.js"
2467
2321
  ]
2468
2322
  },
2469
- "build:delete": {
2323
+ "build:internal": {
2470
2324
  "aliases": [],
2471
- "args": {
2472
- "BUILD_ID": {
2473
- "name": "BUILD_ID"
2474
- }
2475
- },
2476
- "description": "delete a build",
2325
+ "args": {},
2477
2326
  "flags": {
2478
- "non-interactive": {
2479
- "description": "Run the command in non-interactive mode.",
2480
- "name": "non-interactive",
2481
- "noCacheDefault": true,
2482
- "allowNo": false,
2483
- "type": "boolean"
2484
- },
2485
2327
  "platform": {
2486
2328
  "char": "p",
2487
- "description": "Filter builds by the platform if build ID is not provided",
2488
2329
  "name": "platform",
2330
+ "required": true,
2489
2331
  "hasDynamicHelp": false,
2490
2332
  "multiple": false,
2491
2333
  "options": [
2492
2334
  "android",
2493
- "ios",
2494
- "all"
2335
+ "ios"
2495
2336
  ],
2496
2337
  "type": "option"
2497
2338
  },
2498
2339
  "profile": {
2499
2340
  "char": "e",
2500
- "description": "Filter builds by build profile if build ID is not provided",
2341
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2501
2342
  "name": "profile",
2502
2343
  "hasDynamicHelp": false,
2503
2344
  "helpValue": "PROFILE_NAME",
2504
2345
  "multiple": false,
2505
2346
  "type": "option"
2347
+ },
2348
+ "auto-submit": {
2349
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
2350
+ "exclusive": [
2351
+ "auto-submit-with-profile"
2352
+ ],
2353
+ "name": "auto-submit",
2354
+ "allowNo": false,
2355
+ "type": "boolean"
2356
+ },
2357
+ "auto-submit-with-profile": {
2358
+ "description": "Submit on build complete using the submit profile with provided name",
2359
+ "exclusive": [
2360
+ "auto-submit"
2361
+ ],
2362
+ "name": "auto-submit-with-profile",
2363
+ "hasDynamicHelp": false,
2364
+ "helpValue": "PROFILE_NAME",
2365
+ "multiple": false,
2366
+ "type": "option"
2506
2367
  }
2507
2368
  },
2508
2369
  "hasDynamicHelp": false,
2370
+ "hidden": true,
2509
2371
  "hiddenAliases": [],
2510
- "id": "build:delete",
2372
+ "id": "build:internal",
2511
2373
  "pluginAlias": "eas-cli",
2512
2374
  "pluginName": "eas-cli",
2513
2375
  "pluginType": "core",
@@ -2554,8 +2416,11 @@
2554
2416
  }
2555
2417
  },
2556
2418
  "contextDefinition": {
2557
- "projectId": {},
2558
2419
  "loggedIn": {},
2420
+ "getDynamicPublicProjectConfigAsync": {},
2421
+ "getDynamicPrivateProjectConfigAsync": {},
2422
+ "projectDir": {},
2423
+ "analytics": {},
2559
2424
  "vcsClient": {}
2560
2425
  },
2561
2426
  "isESM": false,
@@ -2563,44 +2428,176 @@
2563
2428
  "build",
2564
2429
  "commands",
2565
2430
  "build",
2566
- "delete.js"
2431
+ "internal.js"
2567
2432
  ]
2568
2433
  },
2569
- "build:dev": {
2434
+ "build:list": {
2570
2435
  "aliases": [],
2571
2436
  "args": {},
2572
- "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
2437
+ "description": "list all builds for your project",
2573
2438
  "flags": {
2574
2439
  "platform": {
2575
2440
  "char": "p",
2576
2441
  "name": "platform",
2577
2442
  "hasDynamicHelp": false,
2578
2443
  "multiple": false,
2579
- "options": [
2580
- "ios",
2581
- "android"
2582
- ],
2444
+ "options": [
2445
+ "android",
2446
+ "ios",
2447
+ "all"
2448
+ ],
2449
+ "type": "option"
2450
+ },
2451
+ "status": {
2452
+ "description": "Filter only builds with the specified status",
2453
+ "name": "status",
2454
+ "hasDynamicHelp": false,
2455
+ "multiple": false,
2456
+ "options": [
2457
+ "new",
2458
+ "in-queue",
2459
+ "in-progress",
2460
+ "pending-cancel",
2461
+ "errored",
2462
+ "finished",
2463
+ "canceled"
2464
+ ],
2465
+ "type": "option"
2466
+ },
2467
+ "distribution": {
2468
+ "description": "Filter only builds with the specified distribution type",
2469
+ "name": "distribution",
2470
+ "hasDynamicHelp": false,
2471
+ "multiple": false,
2472
+ "options": [
2473
+ "store",
2474
+ "internal",
2475
+ "simulator"
2476
+ ],
2477
+ "type": "option"
2478
+ },
2479
+ "channel": {
2480
+ "name": "channel",
2481
+ "hasDynamicHelp": false,
2482
+ "multiple": false,
2483
+ "type": "option"
2484
+ },
2485
+ "app-version": {
2486
+ "aliases": [
2487
+ "appVersion"
2488
+ ],
2489
+ "description": "Filter only builds created with the specified main app version",
2490
+ "name": "app-version",
2491
+ "hasDynamicHelp": false,
2492
+ "multiple": false,
2493
+ "type": "option"
2494
+ },
2495
+ "app-build-version": {
2496
+ "aliases": [
2497
+ "appBuildVersion"
2498
+ ],
2499
+ "description": "Filter only builds created with the specified app build version",
2500
+ "name": "app-build-version",
2501
+ "hasDynamicHelp": false,
2502
+ "multiple": false,
2503
+ "type": "option"
2504
+ },
2505
+ "sdk-version": {
2506
+ "aliases": [
2507
+ "sdkVersion"
2508
+ ],
2509
+ "description": "Filter only builds created with the specified Expo SDK version",
2510
+ "name": "sdk-version",
2511
+ "hasDynamicHelp": false,
2512
+ "multiple": false,
2513
+ "type": "option"
2514
+ },
2515
+ "runtime-version": {
2516
+ "aliases": [
2517
+ "runtimeVersion"
2518
+ ],
2519
+ "description": "Filter only builds created with the specified runtime version",
2520
+ "name": "runtime-version",
2521
+ "hasDynamicHelp": false,
2522
+ "multiple": false,
2523
+ "type": "option"
2524
+ },
2525
+ "app-identifier": {
2526
+ "aliases": [
2527
+ "appIdentifier"
2528
+ ],
2529
+ "description": "Filter only builds created with the specified app identifier",
2530
+ "name": "app-identifier",
2531
+ "hasDynamicHelp": false,
2532
+ "multiple": false,
2533
+ "type": "option"
2534
+ },
2535
+ "build-profile": {
2536
+ "aliases": [
2537
+ "profile",
2538
+ "buildProfile"
2539
+ ],
2540
+ "char": "e",
2541
+ "description": "Filter only builds created with the specified build profile",
2542
+ "name": "build-profile",
2543
+ "hasDynamicHelp": false,
2544
+ "multiple": false,
2545
+ "type": "option"
2546
+ },
2547
+ "git-commit-hash": {
2548
+ "aliases": [
2549
+ "gitCommitHash"
2550
+ ],
2551
+ "description": "Filter only builds created with the specified git commit hash",
2552
+ "name": "git-commit-hash",
2553
+ "hasDynamicHelp": false,
2554
+ "multiple": false,
2583
2555
  "type": "option"
2584
2556
  },
2585
- "profile": {
2586
- "char": "e",
2587
- "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.",
2588
- "name": "profile",
2557
+ "fingerprint-hash": {
2558
+ "description": "Filter only builds with the specified fingerprint hash",
2559
+ "name": "fingerprint-hash",
2589
2560
  "hasDynamicHelp": false,
2590
- "helpValue": "PROFILE_NAME",
2591
2561
  "multiple": false,
2592
2562
  "type": "option"
2593
2563
  },
2594
- "skip-build-if-not-found": {
2595
- "description": "Skip build if no successful build with matching fingerprint is found.",
2596
- "name": "skip-build-if-not-found",
2564
+ "offset": {
2565
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2566
+ "name": "offset",
2567
+ "hasDynamicHelp": false,
2568
+ "multiple": false,
2569
+ "type": "option"
2570
+ },
2571
+ "limit": {
2572
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
2573
+ "name": "limit",
2574
+ "hasDynamicHelp": false,
2575
+ "multiple": false,
2576
+ "type": "option"
2577
+ },
2578
+ "json": {
2579
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2580
+ "name": "json",
2581
+ "allowNo": false,
2582
+ "type": "boolean"
2583
+ },
2584
+ "non-interactive": {
2585
+ "description": "Run the command in non-interactive mode.",
2586
+ "name": "non-interactive",
2587
+ "noCacheDefault": true,
2588
+ "allowNo": false,
2589
+ "type": "boolean"
2590
+ },
2591
+ "simulator": {
2592
+ "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
2593
+ "name": "simulator",
2597
2594
  "allowNo": false,
2598
2595
  "type": "boolean"
2599
2596
  }
2600
2597
  },
2601
2598
  "hasDynamicHelp": false,
2602
2599
  "hiddenAliases": [],
2603
- "id": "build:dev",
2600
+ "id": "build:list",
2604
2601
  "pluginAlias": "eas-cli",
2605
2602
  "pluginName": "eas-cli",
2606
2603
  "pluginType": "core",
@@ -2647,52 +2644,81 @@
2647
2644
  }
2648
2645
  },
2649
2646
  "contextDefinition": {
2647
+ "projectId": {},
2650
2648
  "loggedIn": {},
2651
- "getDynamicPublicProjectConfigAsync": {},
2652
- "getDynamicPrivateProjectConfigAsync": {},
2653
- "projectDir": {},
2654
- "vcsClient": {},
2655
- "analytics": {},
2656
- "projectId": {}
2649
+ "vcsClient": {}
2657
2650
  },
2658
2651
  "isESM": false,
2659
2652
  "relativePath": [
2660
2653
  "build",
2661
2654
  "commands",
2662
2655
  "build",
2663
- "dev.js"
2656
+ "list.js"
2664
2657
  ]
2665
2658
  },
2666
- "build:download": {
2659
+ "build:resign": {
2667
2660
  "aliases": [],
2668
2661
  "args": {},
2669
- "description": "download simulator/emulator builds for a given fingerprint hash",
2662
+ "description": "re-sign a build archive",
2670
2663
  "flags": {
2671
- "fingerprint": {
2672
- "description": "Fingerprint hash of the build to download",
2673
- "name": "fingerprint",
2674
- "required": true,
2675
- "hasDynamicHelp": false,
2676
- "multiple": false,
2677
- "type": "option"
2678
- },
2679
2664
  "platform": {
2680
2665
  "char": "p",
2681
2666
  "name": "platform",
2682
2667
  "hasDynamicHelp": false,
2683
2668
  "multiple": false,
2684
2669
  "options": [
2685
- "ios",
2686
- "android"
2670
+ "android",
2671
+ "ios"
2687
2672
  ],
2688
2673
  "type": "option"
2689
2674
  },
2690
- "dev-client": {
2691
- "description": "Filter only dev-client builds.",
2692
- "name": "dev-client",
2675
+ "target-profile": {
2676
+ "aliases": [
2677
+ "profile"
2678
+ ],
2679
+ "char": "e",
2680
+ "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.",
2681
+ "name": "target-profile",
2682
+ "hasDynamicHelp": false,
2683
+ "helpValue": "PROFILE_NAME",
2684
+ "multiple": false,
2685
+ "type": "option"
2686
+ },
2687
+ "source-profile": {
2688
+ "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
2689
+ "name": "source-profile",
2690
+ "hasDynamicHelp": false,
2691
+ "helpValue": "PROFILE_NAME",
2692
+ "multiple": false,
2693
+ "type": "option"
2694
+ },
2695
+ "wait": {
2696
+ "description": "Wait for build(s) to complete.",
2697
+ "name": "wait",
2693
2698
  "allowNo": true,
2694
2699
  "type": "boolean"
2695
2700
  },
2701
+ "id": {
2702
+ "description": "ID of the build to re-sign.",
2703
+ "name": "id",
2704
+ "hasDynamicHelp": false,
2705
+ "multiple": false,
2706
+ "type": "option"
2707
+ },
2708
+ "offset": {
2709
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2710
+ "name": "offset",
2711
+ "hasDynamicHelp": false,
2712
+ "multiple": false,
2713
+ "type": "option"
2714
+ },
2715
+ "limit": {
2716
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2717
+ "name": "limit",
2718
+ "hasDynamicHelp": false,
2719
+ "multiple": false,
2720
+ "type": "option"
2721
+ },
2696
2722
  "json": {
2697
2723
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2698
2724
  "name": "json",
@@ -2709,7 +2735,7 @@
2709
2735
  },
2710
2736
  "hasDynamicHelp": false,
2711
2737
  "hiddenAliases": [],
2712
- "id": "build:download",
2738
+ "id": "build:resign",
2713
2739
  "pluginAlias": "eas-cli",
2714
2740
  "pluginName": "eas-cli",
2715
2741
  "pluginType": "core",
@@ -2757,181 +2783,185 @@
2757
2783
  },
2758
2784
  "contextDefinition": {
2759
2785
  "loggedIn": {},
2760
- "projectId": {}
2786
+ "getDynamicPublicProjectConfigAsync": {},
2787
+ "getDynamicPrivateProjectConfigAsync": {},
2788
+ "projectDir": {},
2789
+ "analytics": {},
2790
+ "vcsClient": {}
2761
2791
  },
2762
2792
  "isESM": false,
2763
2793
  "relativePath": [
2764
2794
  "build",
2765
2795
  "commands",
2766
2796
  "build",
2767
- "download.js"
2797
+ "resign.js"
2768
2798
  ]
2769
2799
  },
2770
- "build": {
2800
+ "build:run": {
2771
2801
  "aliases": [],
2772
2802
  "args": {},
2773
- "description": "start a build",
2803
+ "description": "run simulator/emulator builds from eas-cli",
2774
2804
  "flags": {
2775
- "platform": {
2776
- "char": "p",
2777
- "name": "platform",
2778
- "hasDynamicHelp": false,
2779
- "multiple": false,
2780
- "options": [
2781
- "android",
2782
- "ios",
2783
- "all"
2805
+ "latest": {
2806
+ "description": "Run the latest simulator/emulator build for specified platform",
2807
+ "exclusive": [
2808
+ "id",
2809
+ "path",
2810
+ "url"
2784
2811
  ],
2785
- "type": "option"
2786
- },
2787
- "skip-credentials-check": {
2788
- "hidden": true,
2789
- "name": "skip-credentials-check",
2790
- "allowNo": false,
2791
- "type": "boolean"
2792
- },
2793
- "skip-project-configuration": {
2794
- "hidden": true,
2795
- "name": "skip-project-configuration",
2796
- "allowNo": false,
2797
- "type": "boolean"
2798
- },
2799
- "profile": {
2800
- "char": "e",
2801
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2802
- "name": "profile",
2803
- "hasDynamicHelp": false,
2804
- "helpValue": "PROFILE_NAME",
2805
- "multiple": false,
2806
- "type": "option"
2807
- },
2808
- "local": {
2809
- "description": "Run build locally [experimental]",
2810
- "name": "local",
2812
+ "name": "latest",
2811
2813
  "allowNo": false,
2812
2814
  "type": "boolean"
2813
2815
  },
2814
- "output": {
2815
- "description": "Output path for local build",
2816
- "name": "output",
2816
+ "url": {
2817
+ "description": "Simulator/Emulator build archive url",
2818
+ "exclusive": [
2819
+ "latest",
2820
+ "id",
2821
+ "path"
2822
+ ],
2823
+ "name": "url",
2817
2824
  "hasDynamicHelp": false,
2818
2825
  "multiple": false,
2819
2826
  "type": "option"
2820
2827
  },
2821
- "wait": {
2822
- "description": "Wait for build(s) to complete",
2823
- "name": "wait",
2824
- "allowNo": true,
2825
- "type": "boolean"
2826
- },
2827
- "clear-cache": {
2828
- "description": "Clear cache before the build",
2829
- "name": "clear-cache",
2830
- "allowNo": false,
2831
- "type": "boolean"
2832
- },
2833
- "auto-submit": {
2834
- "aliases": [
2835
- "submit"
2836
- ],
2837
- "char": "s",
2838
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
2839
- "exclusive": [
2840
- "auto-submit-with-profile"
2841
- ],
2842
- "name": "auto-submit",
2843
- "allowNo": false,
2844
- "type": "boolean"
2845
- },
2846
- "auto-submit-with-profile": {
2847
- "description": "Submit on build complete using the submit profile with provided name",
2828
+ "path": {
2829
+ "description": "Path to the simulator/emulator build archive or app",
2848
2830
  "exclusive": [
2849
- "auto-submit"
2831
+ "latest",
2832
+ "id",
2833
+ "url"
2850
2834
  ],
2851
- "name": "auto-submit-with-profile",
2835
+ "name": "path",
2852
2836
  "hasDynamicHelp": false,
2853
- "helpValue": "PROFILE_NAME",
2854
2837
  "multiple": false,
2855
2838
  "type": "option"
2856
2839
  },
2857
- "what-to-test": {
2858
- "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
2859
- "name": "what-to-test",
2840
+ "id": {
2841
+ "description": "ID of the simulator/emulator build to run",
2842
+ "exclusive": [
2843
+ "latest, path, url"
2844
+ ],
2845
+ "name": "id",
2860
2846
  "hasDynamicHelp": false,
2861
2847
  "multiple": false,
2862
2848
  "type": "option"
2863
2849
  },
2864
- "resource-class": {
2865
- "deprecated": {
2866
- "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/"
2867
- },
2868
- "description": "The instance type that will be used to run this build [experimental]",
2869
- "hidden": true,
2870
- "name": "resource-class",
2850
+ "platform": {
2851
+ "char": "p",
2852
+ "name": "platform",
2871
2853
  "hasDynamicHelp": false,
2872
2854
  "multiple": false,
2873
2855
  "options": [
2874
- "default",
2875
- "large",
2876
- "m1-medium",
2877
- "medium",
2878
- "m-medium",
2879
- "m-large"
2856
+ "android",
2857
+ "ios"
2880
2858
  ],
2881
2859
  "type": "option"
2882
2860
  },
2883
- "message": {
2884
- "char": "m",
2885
- "description": "A short message describing the build",
2886
- "name": "message",
2861
+ "profile": {
2862
+ "char": "e",
2863
+ "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.",
2864
+ "name": "profile",
2865
+ "hasDynamicHelp": false,
2866
+ "helpValue": "PROFILE_NAME",
2867
+ "multiple": false,
2868
+ "type": "option"
2869
+ },
2870
+ "offset": {
2871
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2872
+ "name": "offset",
2887
2873
  "hasDynamicHelp": false,
2888
2874
  "multiple": false,
2889
2875
  "type": "option"
2890
2876
  },
2891
- "build-logger-level": {
2892
- "description": "The level of logs to output during the build process. Defaults to \"info\".",
2893
- "name": "build-logger-level",
2877
+ "limit": {
2878
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2879
+ "name": "limit",
2894
2880
  "hasDynamicHelp": false,
2895
2881
  "multiple": false,
2896
- "options": [
2897
- "trace",
2898
- "debug",
2899
- "info",
2900
- "warn",
2901
- "error",
2902
- "fatal"
2903
- ],
2904
2882
  "type": "option"
2883
+ }
2884
+ },
2885
+ "hasDynamicHelp": false,
2886
+ "hiddenAliases": [],
2887
+ "id": "build:run",
2888
+ "pluginAlias": "eas-cli",
2889
+ "pluginName": "eas-cli",
2890
+ "pluginType": "core",
2891
+ "strict": true,
2892
+ "enableJsonFlag": false,
2893
+ "ContextOptions": {
2894
+ "LoggedIn": {
2895
+ "loggedIn": {}
2905
2896
  },
2906
- "freeze-credentials": {
2907
- "description": "Prevent the build from updating credentials in non-interactive mode",
2908
- "name": "freeze-credentials",
2909
- "allowNo": false,
2910
- "type": "boolean"
2897
+ "MaybeLoggedIn": {
2898
+ "maybeLoggedIn": {}
2911
2899
  },
2912
- "verbose-logs": {
2913
- "description": "Use verbose logs for the build process",
2914
- "name": "verbose-logs",
2915
- "allowNo": false,
2916
- "type": "boolean"
2900
+ "DynamicLoggedIn": {
2901
+ "getDynamicLoggedInAsync": {}
2902
+ },
2903
+ "SessionManagment": {
2904
+ "sessionManager": {}
2905
+ },
2906
+ "OptionalProjectConfig": {
2907
+ "optionalPrivateProjectConfig": {}
2908
+ },
2909
+ "ProjectDir": {
2910
+ "projectDir": {}
2911
+ },
2912
+ "DynamicProjectConfig": {
2913
+ "getDynamicPublicProjectConfigAsync": {},
2914
+ "getDynamicPrivateProjectConfigAsync": {}
2917
2915
  },
2916
+ "ProjectConfig": {
2917
+ "loggedIn": {},
2918
+ "privateProjectConfig": {}
2919
+ },
2920
+ "Analytics": {
2921
+ "analytics": {}
2922
+ },
2923
+ "Vcs": {
2924
+ "vcsClient": {}
2925
+ },
2926
+ "ServerSideEnvironmentVariables": {
2927
+ "getServerSideEnvironmentVariablesAsync": {}
2928
+ },
2929
+ "ProjectId": {
2930
+ "projectId": {}
2931
+ }
2932
+ },
2933
+ "contextDefinition": {
2934
+ "loggedIn": {},
2935
+ "projectId": {},
2936
+ "vcsClient": {}
2937
+ },
2938
+ "isESM": false,
2939
+ "relativePath": [
2940
+ "build",
2941
+ "commands",
2942
+ "build",
2943
+ "run.js"
2944
+ ]
2945
+ },
2946
+ "build:view": {
2947
+ "aliases": [],
2948
+ "args": {
2949
+ "BUILD_ID": {
2950
+ "name": "BUILD_ID"
2951
+ }
2952
+ },
2953
+ "description": "view a build for your project",
2954
+ "flags": {
2918
2955
  "json": {
2919
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2956
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
2920
2957
  "name": "json",
2921
2958
  "allowNo": false,
2922
2959
  "type": "boolean"
2923
- },
2924
- "non-interactive": {
2925
- "description": "Run the command in non-interactive mode.",
2926
- "name": "non-interactive",
2927
- "noCacheDefault": true,
2928
- "allowNo": false,
2929
- "type": "boolean"
2930
2960
  }
2931
2961
  },
2932
2962
  "hasDynamicHelp": false,
2933
2963
  "hiddenAliases": [],
2934
- "id": "build",
2964
+ "id": "build:view",
2935
2965
  "pluginAlias": "eas-cli",
2936
2966
  "pluginName": "eas-cli",
2937
2967
  "pluginType": "core",
@@ -2978,11 +3008,8 @@
2978
3008
  }
2979
3009
  },
2980
3010
  "contextDefinition": {
3011
+ "projectId": {},
2981
3012
  "loggedIn": {},
2982
- "getDynamicPublicProjectConfigAsync": {},
2983
- "getDynamicPrivateProjectConfigAsync": {},
2984
- "projectDir": {},
2985
- "analytics": {},
2986
3013
  "vcsClient": {}
2987
3014
  },
2988
3015
  "isESM": false,
@@ -2990,75 +3017,37 @@
2990
3017
  "build",
2991
3018
  "commands",
2992
3019
  "build",
2993
- "index.js"
3020
+ "view.js"
2994
3021
  ]
2995
3022
  },
2996
- "build:inspect": {
3023
+ "channel:create": {
2997
3024
  "aliases": [],
2998
- "args": {},
2999
- "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
3025
+ "args": {
3026
+ "name": {
3027
+ "description": "Name of the channel to create",
3028
+ "name": "name",
3029
+ "required": false
3030
+ }
3031
+ },
3032
+ "description": "create a channel",
3000
3033
  "flags": {
3001
- "platform": {
3002
- "char": "p",
3003
- "name": "platform",
3004
- "required": true,
3005
- "hasDynamicHelp": false,
3006
- "multiple": false,
3007
- "options": [
3008
- "android",
3009
- "ios"
3010
- ],
3011
- "type": "option"
3012
- },
3013
- "profile": {
3014
- "char": "e",
3015
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3016
- "name": "profile",
3017
- "hasDynamicHelp": false,
3018
- "helpValue": "PROFILE_NAME",
3019
- "multiple": false,
3020
- "type": "option"
3021
- },
3022
- "stage": {
3023
- "char": "s",
3024
- "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",
3025
- "name": "stage",
3026
- "required": true,
3027
- "hasDynamicHelp": false,
3028
- "multiple": false,
3029
- "options": [
3030
- "archive",
3031
- "pre-build",
3032
- "post-build"
3033
- ],
3034
- "type": "option"
3035
- },
3036
- "output": {
3037
- "char": "o",
3038
- "description": "Output directory.",
3039
- "name": "output",
3040
- "required": true,
3041
- "hasDynamicHelp": false,
3042
- "helpValue": "OUTPUT_DIRECTORY",
3043
- "multiple": false,
3044
- "type": "option"
3045
- },
3046
- "force": {
3047
- "description": "Delete OUTPUT_DIRECTORY if it already exists.",
3048
- "name": "force",
3034
+ "json": {
3035
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3036
+ "name": "json",
3049
3037
  "allowNo": false,
3050
3038
  "type": "boolean"
3051
3039
  },
3052
- "verbose": {
3053
- "char": "v",
3054
- "name": "verbose",
3040
+ "non-interactive": {
3041
+ "description": "Run the command in non-interactive mode.",
3042
+ "name": "non-interactive",
3043
+ "noCacheDefault": true,
3055
3044
  "allowNo": false,
3056
3045
  "type": "boolean"
3057
3046
  }
3058
3047
  },
3059
3048
  "hasDynamicHelp": false,
3060
3049
  "hiddenAliases": [],
3061
- "id": "build:inspect",
3050
+ "id": "channel:create",
3062
3051
  "pluginAlias": "eas-cli",
3063
3052
  "pluginName": "eas-cli",
3064
3053
  "pluginType": "core",
@@ -3105,71 +3094,45 @@
3105
3094
  }
3106
3095
  },
3107
3096
  "contextDefinition": {
3108
- "loggedIn": {},
3109
- "getDynamicPublicProjectConfigAsync": {},
3110
- "getDynamicPrivateProjectConfigAsync": {},
3111
- "projectDir": {},
3112
- "analytics": {},
3113
- "vcsClient": {}
3097
+ "projectId": {},
3098
+ "loggedIn": {}
3114
3099
  },
3115
3100
  "isESM": false,
3116
3101
  "relativePath": [
3117
3102
  "build",
3118
3103
  "commands",
3119
- "build",
3120
- "inspect.js"
3104
+ "channel",
3105
+ "create.js"
3121
3106
  ]
3122
3107
  },
3123
- "build:internal": {
3108
+ "channel:delete": {
3124
3109
  "aliases": [],
3125
- "args": {},
3110
+ "args": {
3111
+ "name": {
3112
+ "description": "Name of the channel to delete",
3113
+ "name": "name",
3114
+ "required": false
3115
+ }
3116
+ },
3117
+ "description": "Delete a channel",
3126
3118
  "flags": {
3127
- "platform": {
3128
- "char": "p",
3129
- "name": "platform",
3130
- "required": true,
3131
- "hasDynamicHelp": false,
3132
- "multiple": false,
3133
- "options": [
3134
- "android",
3135
- "ios"
3136
- ],
3137
- "type": "option"
3138
- },
3139
- "profile": {
3140
- "char": "e",
3141
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3142
- "name": "profile",
3143
- "hasDynamicHelp": false,
3144
- "helpValue": "PROFILE_NAME",
3145
- "multiple": false,
3146
- "type": "option"
3147
- },
3148
- "auto-submit": {
3149
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
3150
- "exclusive": [
3151
- "auto-submit-with-profile"
3152
- ],
3153
- "name": "auto-submit",
3119
+ "json": {
3120
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3121
+ "name": "json",
3154
3122
  "allowNo": false,
3155
3123
  "type": "boolean"
3156
3124
  },
3157
- "auto-submit-with-profile": {
3158
- "description": "Submit on build complete using the submit profile with provided name",
3159
- "exclusive": [
3160
- "auto-submit"
3161
- ],
3162
- "name": "auto-submit-with-profile",
3163
- "hasDynamicHelp": false,
3164
- "helpValue": "PROFILE_NAME",
3165
- "multiple": false,
3166
- "type": "option"
3125
+ "non-interactive": {
3126
+ "description": "Run the command in non-interactive mode.",
3127
+ "name": "non-interactive",
3128
+ "noCacheDefault": true,
3129
+ "allowNo": false,
3130
+ "type": "boolean"
3167
3131
  }
3168
3132
  },
3169
3133
  "hasDynamicHelp": false,
3170
- "hidden": true,
3171
3134
  "hiddenAliases": [],
3172
- "id": "build:internal",
3135
+ "id": "channel:delete",
3173
3136
  "pluginAlias": "eas-cli",
3174
3137
  "pluginName": "eas-cli",
3175
3138
  "pluginType": "core",
@@ -3216,161 +3179,31 @@
3216
3179
  }
3217
3180
  },
3218
3181
  "contextDefinition": {
3219
- "loggedIn": {},
3220
- "getDynamicPublicProjectConfigAsync": {},
3221
- "getDynamicPrivateProjectConfigAsync": {},
3222
- "projectDir": {},
3223
- "analytics": {},
3224
- "vcsClient": {}
3182
+ "projectId": {},
3183
+ "loggedIn": {}
3225
3184
  },
3226
3185
  "isESM": false,
3227
3186
  "relativePath": [
3228
3187
  "build",
3229
3188
  "commands",
3230
- "build",
3231
- "internal.js"
3189
+ "channel",
3190
+ "delete.js"
3232
3191
  ]
3233
3192
  },
3234
- "build:list": {
3193
+ "channel:edit": {
3235
3194
  "aliases": [],
3236
- "args": {},
3237
- "description": "list all builds for your project",
3195
+ "args": {
3196
+ "name": {
3197
+ "description": "Name of the channel to edit",
3198
+ "name": "name",
3199
+ "required": false
3200
+ }
3201
+ },
3202
+ "description": "point a channel at a new branch",
3238
3203
  "flags": {
3239
- "platform": {
3240
- "char": "p",
3241
- "name": "platform",
3242
- "hasDynamicHelp": false,
3243
- "multiple": false,
3244
- "options": [
3245
- "android",
3246
- "ios",
3247
- "all"
3248
- ],
3249
- "type": "option"
3250
- },
3251
- "status": {
3252
- "description": "Filter only builds with the specified status",
3253
- "name": "status",
3254
- "hasDynamicHelp": false,
3255
- "multiple": false,
3256
- "options": [
3257
- "new",
3258
- "in-queue",
3259
- "in-progress",
3260
- "pending-cancel",
3261
- "errored",
3262
- "finished",
3263
- "canceled"
3264
- ],
3265
- "type": "option"
3266
- },
3267
- "distribution": {
3268
- "description": "Filter only builds with the specified distribution type",
3269
- "name": "distribution",
3270
- "hasDynamicHelp": false,
3271
- "multiple": false,
3272
- "options": [
3273
- "store",
3274
- "internal",
3275
- "simulator"
3276
- ],
3277
- "type": "option"
3278
- },
3279
- "channel": {
3280
- "name": "channel",
3281
- "hasDynamicHelp": false,
3282
- "multiple": false,
3283
- "type": "option"
3284
- },
3285
- "app-version": {
3286
- "aliases": [
3287
- "appVersion"
3288
- ],
3289
- "description": "Filter only builds created with the specified main app version",
3290
- "name": "app-version",
3291
- "hasDynamicHelp": false,
3292
- "multiple": false,
3293
- "type": "option"
3294
- },
3295
- "app-build-version": {
3296
- "aliases": [
3297
- "appBuildVersion"
3298
- ],
3299
- "description": "Filter only builds created with the specified app build version",
3300
- "name": "app-build-version",
3301
- "hasDynamicHelp": false,
3302
- "multiple": false,
3303
- "type": "option"
3304
- },
3305
- "sdk-version": {
3306
- "aliases": [
3307
- "sdkVersion"
3308
- ],
3309
- "description": "Filter only builds created with the specified Expo SDK version",
3310
- "name": "sdk-version",
3311
- "hasDynamicHelp": false,
3312
- "multiple": false,
3313
- "type": "option"
3314
- },
3315
- "runtime-version": {
3316
- "aliases": [
3317
- "runtimeVersion"
3318
- ],
3319
- "description": "Filter only builds created with the specified runtime version",
3320
- "name": "runtime-version",
3321
- "hasDynamicHelp": false,
3322
- "multiple": false,
3323
- "type": "option"
3324
- },
3325
- "app-identifier": {
3326
- "aliases": [
3327
- "appIdentifier"
3328
- ],
3329
- "description": "Filter only builds created with the specified app identifier",
3330
- "name": "app-identifier",
3331
- "hasDynamicHelp": false,
3332
- "multiple": false,
3333
- "type": "option"
3334
- },
3335
- "build-profile": {
3336
- "aliases": [
3337
- "profile",
3338
- "buildProfile"
3339
- ],
3340
- "char": "e",
3341
- "description": "Filter only builds created with the specified build profile",
3342
- "name": "build-profile",
3343
- "hasDynamicHelp": false,
3344
- "multiple": false,
3345
- "type": "option"
3346
- },
3347
- "git-commit-hash": {
3348
- "aliases": [
3349
- "gitCommitHash"
3350
- ],
3351
- "description": "Filter only builds created with the specified git commit hash",
3352
- "name": "git-commit-hash",
3353
- "hasDynamicHelp": false,
3354
- "multiple": false,
3355
- "type": "option"
3356
- },
3357
- "fingerprint-hash": {
3358
- "description": "Filter only builds with the specified fingerprint hash",
3359
- "name": "fingerprint-hash",
3360
- "hasDynamicHelp": false,
3361
- "multiple": false,
3362
- "type": "option"
3363
- },
3364
- "offset": {
3365
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3366
- "name": "offset",
3367
- "hasDynamicHelp": false,
3368
- "multiple": false,
3369
- "type": "option"
3370
- },
3371
- "limit": {
3372
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
3373
- "name": "limit",
3204
+ "branch": {
3205
+ "description": "Name of the branch to point to",
3206
+ "name": "branch",
3374
3207
  "hasDynamicHelp": false,
3375
3208
  "multiple": false,
3376
3209
  "type": "option"
@@ -3387,17 +3220,11 @@
3387
3220
  "noCacheDefault": true,
3388
3221
  "allowNo": false,
3389
3222
  "type": "boolean"
3390
- },
3391
- "simulator": {
3392
- "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
3393
- "name": "simulator",
3394
- "allowNo": false,
3395
- "type": "boolean"
3396
3223
  }
3397
3224
  },
3398
3225
  "hasDynamicHelp": false,
3399
3226
  "hiddenAliases": [],
3400
- "id": "build:list",
3227
+ "id": "channel:edit",
3401
3228
  "pluginAlias": "eas-cli",
3402
3229
  "pluginName": "eas-cli",
3403
3230
  "pluginType": "core",
@@ -3445,76 +3272,123 @@
3445
3272
  },
3446
3273
  "contextDefinition": {
3447
3274
  "projectId": {},
3448
- "loggedIn": {},
3449
- "vcsClient": {}
3275
+ "loggedIn": {}
3450
3276
  },
3451
3277
  "isESM": false,
3452
3278
  "relativePath": [
3453
3279
  "build",
3454
3280
  "commands",
3455
- "build",
3456
- "list.js"
3281
+ "channel",
3282
+ "edit.js"
3457
3283
  ]
3458
3284
  },
3459
- "build:resign": {
3285
+ "channel:list": {
3460
3286
  "aliases": [],
3461
3287
  "args": {},
3462
- "description": "re-sign a build archive",
3288
+ "description": "list all channels",
3463
3289
  "flags": {
3464
- "platform": {
3465
- "char": "p",
3466
- "name": "platform",
3290
+ "offset": {
3291
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3292
+ "name": "offset",
3467
3293
  "hasDynamicHelp": false,
3468
3294
  "multiple": false,
3469
- "options": [
3470
- "android",
3471
- "ios"
3472
- ],
3473
3295
  "type": "option"
3474
3296
  },
3475
- "target-profile": {
3476
- "aliases": [
3477
- "profile"
3478
- ],
3479
- "char": "e",
3480
- "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.",
3481
- "name": "target-profile",
3297
+ "limit": {
3298
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
3299
+ "name": "limit",
3482
3300
  "hasDynamicHelp": false,
3483
- "helpValue": "PROFILE_NAME",
3484
3301
  "multiple": false,
3485
3302
  "type": "option"
3486
3303
  },
3487
- "source-profile": {
3488
- "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
3489
- "name": "source-profile",
3490
- "hasDynamicHelp": false,
3491
- "helpValue": "PROFILE_NAME",
3492
- "multiple": false,
3493
- "type": "option"
3304
+ "json": {
3305
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3306
+ "name": "json",
3307
+ "allowNo": false,
3308
+ "type": "boolean"
3309
+ },
3310
+ "non-interactive": {
3311
+ "description": "Run the command in non-interactive mode.",
3312
+ "name": "non-interactive",
3313
+ "noCacheDefault": true,
3314
+ "allowNo": false,
3315
+ "type": "boolean"
3316
+ }
3317
+ },
3318
+ "hasDynamicHelp": false,
3319
+ "hiddenAliases": [],
3320
+ "id": "channel:list",
3321
+ "pluginAlias": "eas-cli",
3322
+ "pluginName": "eas-cli",
3323
+ "pluginType": "core",
3324
+ "strict": true,
3325
+ "enableJsonFlag": false,
3326
+ "ContextOptions": {
3327
+ "LoggedIn": {
3328
+ "loggedIn": {}
3329
+ },
3330
+ "MaybeLoggedIn": {
3331
+ "maybeLoggedIn": {}
3332
+ },
3333
+ "DynamicLoggedIn": {
3334
+ "getDynamicLoggedInAsync": {}
3335
+ },
3336
+ "SessionManagment": {
3337
+ "sessionManager": {}
3338
+ },
3339
+ "OptionalProjectConfig": {
3340
+ "optionalPrivateProjectConfig": {}
3341
+ },
3342
+ "ProjectDir": {
3343
+ "projectDir": {}
3344
+ },
3345
+ "DynamicProjectConfig": {
3346
+ "getDynamicPublicProjectConfigAsync": {},
3347
+ "getDynamicPrivateProjectConfigAsync": {}
3348
+ },
3349
+ "ProjectConfig": {
3350
+ "loggedIn": {},
3351
+ "privateProjectConfig": {}
3494
3352
  },
3495
- "wait": {
3496
- "description": "Wait for build(s) to complete.",
3497
- "name": "wait",
3498
- "allowNo": true,
3499
- "type": "boolean"
3353
+ "Analytics": {
3354
+ "analytics": {}
3500
3355
  },
3501
- "id": {
3502
- "description": "ID of the build to re-sign.",
3503
- "name": "id",
3504
- "hasDynamicHelp": false,
3505
- "multiple": false,
3506
- "type": "option"
3356
+ "Vcs": {
3357
+ "vcsClient": {}
3507
3358
  },
3508
- "offset": {
3509
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3510
- "name": "offset",
3511
- "hasDynamicHelp": false,
3512
- "multiple": false,
3513
- "type": "option"
3359
+ "ServerSideEnvironmentVariables": {
3360
+ "getServerSideEnvironmentVariablesAsync": {}
3514
3361
  },
3515
- "limit": {
3516
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3517
- "name": "limit",
3362
+ "ProjectId": {
3363
+ "projectId": {}
3364
+ }
3365
+ },
3366
+ "contextDefinition": {
3367
+ "projectId": {},
3368
+ "loggedIn": {}
3369
+ },
3370
+ "isESM": false,
3371
+ "relativePath": [
3372
+ "build",
3373
+ "commands",
3374
+ "channel",
3375
+ "list.js"
3376
+ ]
3377
+ },
3378
+ "channel:pause": {
3379
+ "aliases": [],
3380
+ "args": {
3381
+ "name": {
3382
+ "description": "Name of the channel to edit",
3383
+ "name": "name",
3384
+ "required": false
3385
+ }
3386
+ },
3387
+ "description": "pause a channel to stop it from sending updates",
3388
+ "flags": {
3389
+ "branch": {
3390
+ "description": "Name of the branch to point to",
3391
+ "name": "branch",
3518
3392
  "hasDynamicHelp": false,
3519
3393
  "multiple": false,
3520
3394
  "type": "option"
@@ -3535,7 +3409,7 @@
3535
3409
  },
3536
3410
  "hasDynamicHelp": false,
3537
3411
  "hiddenAliases": [],
3538
- "id": "build:resign",
3412
+ "id": "channel:pause",
3539
3413
  "pluginAlias": "eas-cli",
3540
3414
  "pluginName": "eas-cli",
3541
3415
  "pluginType": "core",
@@ -3582,109 +3456,52 @@
3582
3456
  }
3583
3457
  },
3584
3458
  "contextDefinition": {
3585
- "loggedIn": {},
3586
- "getDynamicPublicProjectConfigAsync": {},
3587
- "getDynamicPrivateProjectConfigAsync": {},
3588
- "projectDir": {},
3589
- "analytics": {},
3590
- "vcsClient": {}
3459
+ "projectId": {},
3460
+ "loggedIn": {}
3591
3461
  },
3592
3462
  "isESM": false,
3593
3463
  "relativePath": [
3594
3464
  "build",
3595
3465
  "commands",
3596
- "build",
3597
- "resign.js"
3466
+ "channel",
3467
+ "pause.js"
3598
3468
  ]
3599
3469
  },
3600
- "build:run": {
3470
+ "channel:resume": {
3601
3471
  "aliases": [],
3602
- "args": {},
3603
- "description": "run simulator/emulator builds from eas-cli",
3472
+ "args": {
3473
+ "name": {
3474
+ "description": "Name of the channel to edit",
3475
+ "name": "name",
3476
+ "required": false
3477
+ }
3478
+ },
3479
+ "description": "resume a channel to start sending updates",
3604
3480
  "flags": {
3605
- "latest": {
3606
- "description": "Run the latest simulator/emulator build for specified platform",
3607
- "exclusive": [
3608
- "id",
3609
- "path",
3610
- "url"
3611
- ],
3612
- "name": "latest",
3613
- "allowNo": false,
3614
- "type": "boolean"
3615
- },
3616
- "url": {
3617
- "description": "Simulator/Emulator build archive url",
3618
- "exclusive": [
3619
- "latest",
3620
- "id",
3621
- "path"
3622
- ],
3623
- "name": "url",
3624
- "hasDynamicHelp": false,
3625
- "multiple": false,
3626
- "type": "option"
3627
- },
3628
- "path": {
3629
- "description": "Path to the simulator/emulator build archive or app",
3630
- "exclusive": [
3631
- "latest",
3632
- "id",
3633
- "url"
3634
- ],
3635
- "name": "path",
3636
- "hasDynamicHelp": false,
3637
- "multiple": false,
3638
- "type": "option"
3639
- },
3640
- "id": {
3641
- "description": "ID of the simulator/emulator build to run",
3642
- "exclusive": [
3643
- "latest, path, url"
3644
- ],
3645
- "name": "id",
3646
- "hasDynamicHelp": false,
3647
- "multiple": false,
3648
- "type": "option"
3649
- },
3650
- "platform": {
3651
- "char": "p",
3652
- "name": "platform",
3653
- "hasDynamicHelp": false,
3654
- "multiple": false,
3655
- "options": [
3656
- "android",
3657
- "ios"
3658
- ],
3659
- "type": "option"
3660
- },
3661
- "profile": {
3662
- "char": "e",
3663
- "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.",
3664
- "name": "profile",
3481
+ "branch": {
3482
+ "description": "Name of the branch to point to",
3483
+ "name": "branch",
3665
3484
  "hasDynamicHelp": false,
3666
- "helpValue": "PROFILE_NAME",
3667
3485
  "multiple": false,
3668
3486
  "type": "option"
3669
3487
  },
3670
- "offset": {
3671
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3672
- "name": "offset",
3673
- "hasDynamicHelp": false,
3674
- "multiple": false,
3675
- "type": "option"
3488
+ "json": {
3489
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3490
+ "name": "json",
3491
+ "allowNo": false,
3492
+ "type": "boolean"
3676
3493
  },
3677
- "limit": {
3678
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3679
- "name": "limit",
3680
- "hasDynamicHelp": false,
3681
- "multiple": false,
3682
- "type": "option"
3494
+ "non-interactive": {
3495
+ "description": "Run the command in non-interactive mode.",
3496
+ "name": "non-interactive",
3497
+ "noCacheDefault": true,
3498
+ "allowNo": false,
3499
+ "type": "boolean"
3683
3500
  }
3684
3501
  },
3685
3502
  "hasDynamicHelp": false,
3686
3503
  "hiddenAliases": [],
3687
- "id": "build:run",
3504
+ "id": "channel:resume",
3688
3505
  "pluginAlias": "eas-cli",
3689
3506
  "pluginName": "eas-cli",
3690
3507
  "pluginType": "core",
@@ -3731,37 +3548,121 @@
3731
3548
  }
3732
3549
  },
3733
3550
  "contextDefinition": {
3734
- "loggedIn": {},
3735
3551
  "projectId": {},
3736
- "vcsClient": {}
3552
+ "loggedIn": {}
3737
3553
  },
3738
3554
  "isESM": false,
3739
3555
  "relativePath": [
3740
3556
  "build",
3741
3557
  "commands",
3742
- "build",
3743
- "run.js"
3558
+ "channel",
3559
+ "resume.js"
3744
3560
  ]
3745
3561
  },
3746
- "build:view": {
3562
+ "channel:rollout": {
3747
3563
  "aliases": [],
3748
3564
  "args": {
3749
- "BUILD_ID": {
3750
- "name": "BUILD_ID"
3565
+ "channel": {
3566
+ "description": "channel on which the rollout should be done",
3567
+ "name": "channel"
3751
3568
  }
3752
3569
  },
3753
- "description": "view a build for your project",
3570
+ "description": "Roll a new branch out on a channel incrementally.",
3754
3571
  "flags": {
3572
+ "action": {
3573
+ "description": "Rollout action to perform",
3574
+ "name": "action",
3575
+ "relationships": [
3576
+ {
3577
+ "type": "all",
3578
+ "flags": [
3579
+ {
3580
+ "name": "percent"
3581
+ },
3582
+ {
3583
+ "name": "outcome"
3584
+ },
3585
+ {
3586
+ "name": "branch"
3587
+ },
3588
+ {
3589
+ "name": "runtime-version"
3590
+ }
3591
+ ]
3592
+ }
3593
+ ],
3594
+ "required": false,
3595
+ "hasDynamicHelp": false,
3596
+ "multiple": false,
3597
+ "options": [
3598
+ "create",
3599
+ "edit",
3600
+ "end",
3601
+ "view"
3602
+ ],
3603
+ "type": "option"
3604
+ },
3605
+ "percent": {
3606
+ "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
3607
+ "name": "percent",
3608
+ "required": false,
3609
+ "hasDynamicHelp": false,
3610
+ "multiple": false,
3611
+ "type": "option"
3612
+ },
3613
+ "outcome": {
3614
+ "description": "End outcome of rollout. Use with --action=end",
3615
+ "name": "outcome",
3616
+ "required": false,
3617
+ "hasDynamicHelp": false,
3618
+ "multiple": false,
3619
+ "options": [
3620
+ "republish-and-revert",
3621
+ "revert"
3622
+ ],
3623
+ "type": "option"
3624
+ },
3625
+ "branch": {
3626
+ "description": "Branch to roll out. Use with --action=create",
3627
+ "name": "branch",
3628
+ "required": false,
3629
+ "hasDynamicHelp": false,
3630
+ "multiple": false,
3631
+ "type": "option"
3632
+ },
3633
+ "runtime-version": {
3634
+ "description": "Runtime version to target. Use with --action=create",
3635
+ "name": "runtime-version",
3636
+ "required": false,
3637
+ "hasDynamicHelp": false,
3638
+ "multiple": false,
3639
+ "type": "option"
3640
+ },
3641
+ "private-key-path": {
3642
+ "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/",
3643
+ "name": "private-key-path",
3644
+ "required": false,
3645
+ "hasDynamicHelp": false,
3646
+ "multiple": false,
3647
+ "type": "option"
3648
+ },
3755
3649
  "json": {
3756
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
3650
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3757
3651
  "name": "json",
3758
3652
  "allowNo": false,
3759
3653
  "type": "boolean"
3654
+ },
3655
+ "non-interactive": {
3656
+ "description": "Run the command in non-interactive mode.",
3657
+ "name": "non-interactive",
3658
+ "noCacheDefault": true,
3659
+ "allowNo": false,
3660
+ "type": "boolean"
3760
3661
  }
3761
3662
  },
3762
3663
  "hasDynamicHelp": false,
3763
3664
  "hiddenAliases": [],
3764
- "id": "build:view",
3665
+ "id": "channel:rollout",
3765
3666
  "pluginAlias": "eas-cli",
3766
3667
  "pluginName": "eas-cli",
3767
3668
  "pluginType": "core",
@@ -3808,47 +3709,60 @@
3808
3709
  }
3809
3710
  },
3810
3711
  "contextDefinition": {
3811
- "projectId": {},
3812
3712
  "loggedIn": {},
3713
+ "privateProjectConfig": {},
3813
3714
  "vcsClient": {}
3814
3715
  },
3815
3716
  "isESM": false,
3816
3717
  "relativePath": [
3817
3718
  "build",
3818
3719
  "commands",
3819
- "build",
3820
- "view.js"
3720
+ "channel",
3721
+ "rollout.js"
3821
3722
  ]
3822
3723
  },
3823
- "credentials:configure-build": {
3724
+ "channel:view": {
3824
3725
  "aliases": [],
3825
- "args": {},
3826
- "description": "Set up credentials for building your project.",
3726
+ "args": {
3727
+ "name": {
3728
+ "description": "Name of the channel to view",
3729
+ "name": "name",
3730
+ "required": false
3731
+ }
3732
+ },
3733
+ "description": "view a channel",
3827
3734
  "flags": {
3828
- "platform": {
3829
- "char": "p",
3830
- "name": "platform",
3735
+ "json": {
3736
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3737
+ "name": "json",
3738
+ "allowNo": false,
3739
+ "type": "boolean"
3740
+ },
3741
+ "non-interactive": {
3742
+ "description": "Run the command in non-interactive mode.",
3743
+ "name": "non-interactive",
3744
+ "noCacheDefault": true,
3745
+ "allowNo": false,
3746
+ "type": "boolean"
3747
+ },
3748
+ "offset": {
3749
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3750
+ "name": "offset",
3831
3751
  "hasDynamicHelp": false,
3832
3752
  "multiple": false,
3833
- "options": [
3834
- "android",
3835
- "ios"
3836
- ],
3837
3753
  "type": "option"
3838
3754
  },
3839
- "profile": {
3840
- "char": "e",
3841
- "description": "The name of the build profile in eas.json.",
3842
- "name": "profile",
3755
+ "limit": {
3756
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3757
+ "name": "limit",
3843
3758
  "hasDynamicHelp": false,
3844
- "helpValue": "PROFILE_NAME",
3845
3759
  "multiple": false,
3846
3760
  "type": "option"
3847
3761
  }
3848
3762
  },
3849
3763
  "hasDynamicHelp": false,
3850
3764
  "hiddenAliases": [],
3851
- "id": "credentials:configure-build",
3765
+ "id": "channel:view",
3852
3766
  "pluginAlias": "eas-cli",
3853
3767
  "pluginName": "eas-cli",
3854
3768
  "pluginType": "core",
@@ -3895,25 +3809,21 @@
3895
3809
  }
3896
3810
  },
3897
3811
  "contextDefinition": {
3898
- "loggedIn": {},
3899
- "privateProjectConfig": {},
3900
- "getDynamicPublicProjectConfigAsync": {},
3901
- "getDynamicPrivateProjectConfigAsync": {},
3902
- "analytics": {},
3903
- "vcsClient": {}
3812
+ "projectId": {},
3813
+ "loggedIn": {}
3904
3814
  },
3905
3815
  "isESM": false,
3906
3816
  "relativePath": [
3907
3817
  "build",
3908
3818
  "commands",
3909
- "credentials",
3910
- "configure-build.js"
3819
+ "channel",
3820
+ "view.js"
3911
3821
  ]
3912
3822
  },
3913
- "credentials": {
3823
+ "credentials:configure-build": {
3914
3824
  "aliases": [],
3915
3825
  "args": {},
3916
- "description": "manage credentials",
3826
+ "description": "Set up credentials for building your project.",
3917
3827
  "flags": {
3918
3828
  "platform": {
3919
3829
  "char": "p",
@@ -3925,11 +3835,20 @@
3925
3835
  "ios"
3926
3836
  ],
3927
3837
  "type": "option"
3838
+ },
3839
+ "profile": {
3840
+ "char": "e",
3841
+ "description": "The name of the build profile in eas.json.",
3842
+ "name": "profile",
3843
+ "hasDynamicHelp": false,
3844
+ "helpValue": "PROFILE_NAME",
3845
+ "multiple": false,
3846
+ "type": "option"
3928
3847
  }
3929
3848
  },
3930
3849
  "hasDynamicHelp": false,
3931
3850
  "hiddenAliases": [],
3932
- "id": "credentials",
3851
+ "id": "credentials:configure-build",
3933
3852
  "pluginAlias": "eas-cli",
3934
3853
  "pluginName": "eas-cli",
3935
3854
  "pluginType": "core",
@@ -3977,7 +3896,7 @@
3977
3896
  },
3978
3897
  "contextDefinition": {
3979
3898
  "loggedIn": {},
3980
- "optionalPrivateProjectConfig": {},
3899
+ "privateProjectConfig": {},
3981
3900
  "getDynamicPublicProjectConfigAsync": {},
3982
3901
  "getDynamicPrivateProjectConfigAsync": {},
3983
3902
  "analytics": {},
@@ -3988,183 +3907,33 @@
3988
3907
  "build",
3989
3908
  "commands",
3990
3909
  "credentials",
3991
- "index.js"
3992
- ]
3993
- },
3994
- "deploy:delete": {
3995
- "aliases": [
3996
- "worker:delete"
3997
- ],
3998
- "args": {
3999
- "DEPLOYMENT_ID": {
4000
- "name": "DEPLOYMENT_ID"
4001
- }
4002
- },
4003
- "description": "Delete a deployment.",
4004
- "flags": {
4005
- "json": {
4006
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4007
- "name": "json",
4008
- "allowNo": false,
4009
- "type": "boolean"
4010
- },
4011
- "non-interactive": {
4012
- "description": "Run the command in non-interactive mode.",
4013
- "name": "non-interactive",
4014
- "noCacheDefault": true,
4015
- "allowNo": false,
4016
- "type": "boolean"
4017
- }
4018
- },
4019
- "hasDynamicHelp": false,
4020
- "hiddenAliases": [],
4021
- "id": "deploy:delete",
4022
- "pluginAlias": "eas-cli",
4023
- "pluginName": "eas-cli",
4024
- "pluginType": "core",
4025
- "state": "preview",
4026
- "strict": true,
4027
- "enableJsonFlag": false,
4028
- "ContextOptions": {
4029
- "LoggedIn": {
4030
- "loggedIn": {}
4031
- },
4032
- "MaybeLoggedIn": {
4033
- "maybeLoggedIn": {}
4034
- },
4035
- "DynamicLoggedIn": {
4036
- "getDynamicLoggedInAsync": {}
4037
- },
4038
- "SessionManagment": {
4039
- "sessionManager": {}
4040
- },
4041
- "OptionalProjectConfig": {
4042
- "optionalPrivateProjectConfig": {}
4043
- },
4044
- "ProjectDir": {
4045
- "projectDir": {}
4046
- },
4047
- "DynamicProjectConfig": {
4048
- "getDynamicPublicProjectConfigAsync": {},
4049
- "getDynamicPrivateProjectConfigAsync": {}
4050
- },
4051
- "ProjectConfig": {
4052
- "loggedIn": {},
4053
- "privateProjectConfig": {}
4054
- },
4055
- "Analytics": {
4056
- "analytics": {}
4057
- },
4058
- "Vcs": {
4059
- "vcsClient": {}
4060
- },
4061
- "ServerSideEnvironmentVariables": {
4062
- "getServerSideEnvironmentVariablesAsync": {}
4063
- },
4064
- "ProjectId": {
4065
- "projectId": {}
4066
- }
4067
- },
4068
- "contextDefinition": {
4069
- "getDynamicPublicProjectConfigAsync": {},
4070
- "getDynamicPrivateProjectConfigAsync": {},
4071
- "projectDir": {},
4072
- "loggedIn": {}
4073
- },
4074
- "isESM": false,
4075
- "relativePath": [
4076
- "build",
4077
- "commands",
4078
- "deploy",
4079
- "delete.js"
3910
+ "configure-build.js"
4080
3911
  ]
4081
3912
  },
4082
- "deploy": {
4083
- "aliases": [
4084
- "worker:deploy"
4085
- ],
3913
+ "credentials": {
3914
+ "aliases": [],
4086
3915
  "args": {},
4087
- "description": "deploy your Expo Router web build and API Routes",
4088
- "flags": {
4089
- "prod": {
4090
- "aliases": [
4091
- "production"
4092
- ],
4093
- "description": "Create a new production deployment.",
4094
- "name": "prod",
4095
- "allowNo": false,
4096
- "type": "boolean"
4097
- },
4098
- "alias": {
4099
- "description": "Custom alias to assign to the new deployment.",
4100
- "name": "alias",
4101
- "hasDynamicHelp": false,
4102
- "helpValue": "name",
4103
- "multiple": false,
4104
- "type": "option"
4105
- },
4106
- "id": {
4107
- "description": "Custom unique identifier for the new deployment.",
4108
- "name": "id",
4109
- "hasDynamicHelp": false,
4110
- "helpValue": "xyz123",
4111
- "multiple": false,
4112
- "type": "option"
4113
- },
4114
- "export-dir": {
4115
- "description": "Directory where the Expo project was exported.",
4116
- "name": "export-dir",
4117
- "default": "dist",
4118
- "hasDynamicHelp": false,
4119
- "helpValue": "dir",
4120
- "multiple": false,
4121
- "type": "option"
4122
- },
4123
- "dry-run": {
4124
- "description": "Outputs a tarball of the new deployment instead of uploading it.",
4125
- "name": "dry-run",
4126
- "allowNo": false,
4127
- "type": "boolean"
4128
- },
4129
- "source-maps": {
4130
- "description": "Include source maps in the deployment.",
4131
- "name": "source-maps",
4132
- "allowNo": true,
4133
- "type": "boolean"
4134
- },
4135
- "environment": {
4136
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4137
- "name": "environment",
3916
+ "description": "manage credentials",
3917
+ "flags": {
3918
+ "platform": {
3919
+ "char": "p",
3920
+ "name": "platform",
4138
3921
  "hasDynamicHelp": false,
4139
3922
  "multiple": false,
3923
+ "options": [
3924
+ "android",
3925
+ "ios"
3926
+ ],
4140
3927
  "type": "option"
4141
- },
4142
- "json": {
4143
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4144
- "name": "json",
4145
- "allowNo": false,
4146
- "type": "boolean"
4147
- },
4148
- "non-interactive": {
4149
- "description": "Run the command in non-interactive mode.",
4150
- "name": "non-interactive",
4151
- "noCacheDefault": true,
4152
- "allowNo": false,
4153
- "type": "boolean"
4154
3928
  }
4155
3929
  },
4156
3930
  "hasDynamicHelp": false,
4157
3931
  "hiddenAliases": [],
4158
- "id": "deploy",
3932
+ "id": "credentials",
4159
3933
  "pluginAlias": "eas-cli",
4160
3934
  "pluginName": "eas-cli",
4161
3935
  "pluginType": "core",
4162
- "state": "preview",
4163
3936
  "strict": true,
4164
- "usage": [
4165
- "deploy [options]",
4166
- "deploy --prod"
4167
- ],
4168
3937
  "enableJsonFlag": false,
4169
3938
  "ContextOptions": {
4170
3939
  "LoggedIn": {
@@ -4207,16 +3976,18 @@
4207
3976
  }
4208
3977
  },
4209
3978
  "contextDefinition": {
3979
+ "loggedIn": {},
3980
+ "optionalPrivateProjectConfig": {},
4210
3981
  "getDynamicPublicProjectConfigAsync": {},
4211
3982
  "getDynamicPrivateProjectConfigAsync": {},
4212
- "projectDir": {},
4213
- "loggedIn": {}
3983
+ "analytics": {},
3984
+ "vcsClient": {}
4214
3985
  },
4215
3986
  "isESM": false,
4216
3987
  "relativePath": [
4217
3988
  "build",
4218
3989
  "commands",
4219
- "deploy",
3990
+ "credentials",
4220
3991
  "index.js"
4221
3992
  ]
4222
3993
  },
@@ -4584,15 +4355,242 @@
4584
4355
  "name": "UDID"
4585
4356
  }
4586
4357
  },
4587
- "description": "view a device for your project",
4588
- "flags": {},
4358
+ "description": "view a device for your project",
4359
+ "flags": {},
4360
+ "hasDynamicHelp": false,
4361
+ "hiddenAliases": [],
4362
+ "id": "device:view",
4363
+ "pluginAlias": "eas-cli",
4364
+ "pluginName": "eas-cli",
4365
+ "pluginType": "core",
4366
+ "strict": true,
4367
+ "enableJsonFlag": false,
4368
+ "ContextOptions": {
4369
+ "LoggedIn": {
4370
+ "loggedIn": {}
4371
+ },
4372
+ "MaybeLoggedIn": {
4373
+ "maybeLoggedIn": {}
4374
+ },
4375
+ "DynamicLoggedIn": {
4376
+ "getDynamicLoggedInAsync": {}
4377
+ },
4378
+ "SessionManagment": {
4379
+ "sessionManager": {}
4380
+ },
4381
+ "OptionalProjectConfig": {
4382
+ "optionalPrivateProjectConfig": {}
4383
+ },
4384
+ "ProjectDir": {
4385
+ "projectDir": {}
4386
+ },
4387
+ "DynamicProjectConfig": {
4388
+ "getDynamicPublicProjectConfigAsync": {},
4389
+ "getDynamicPrivateProjectConfigAsync": {}
4390
+ },
4391
+ "ProjectConfig": {
4392
+ "loggedIn": {},
4393
+ "privateProjectConfig": {}
4394
+ },
4395
+ "Analytics": {
4396
+ "analytics": {}
4397
+ },
4398
+ "Vcs": {
4399
+ "vcsClient": {}
4400
+ },
4401
+ "ServerSideEnvironmentVariables": {
4402
+ "getServerSideEnvironmentVariablesAsync": {}
4403
+ },
4404
+ "ProjectId": {
4405
+ "projectId": {}
4406
+ }
4407
+ },
4408
+ "contextDefinition": {
4409
+ "projectId": {},
4410
+ "loggedIn": {}
4411
+ },
4412
+ "isESM": false,
4413
+ "relativePath": [
4414
+ "build",
4415
+ "commands",
4416
+ "device",
4417
+ "view.js"
4418
+ ]
4419
+ },
4420
+ "deploy:delete": {
4421
+ "aliases": [
4422
+ "worker:delete"
4423
+ ],
4424
+ "args": {
4425
+ "DEPLOYMENT_ID": {
4426
+ "name": "DEPLOYMENT_ID"
4427
+ }
4428
+ },
4429
+ "description": "Delete a deployment.",
4430
+ "flags": {
4431
+ "json": {
4432
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4433
+ "name": "json",
4434
+ "allowNo": false,
4435
+ "type": "boolean"
4436
+ },
4437
+ "non-interactive": {
4438
+ "description": "Run the command in non-interactive mode.",
4439
+ "name": "non-interactive",
4440
+ "noCacheDefault": true,
4441
+ "allowNo": false,
4442
+ "type": "boolean"
4443
+ }
4444
+ },
4445
+ "hasDynamicHelp": false,
4446
+ "hiddenAliases": [],
4447
+ "id": "deploy:delete",
4448
+ "pluginAlias": "eas-cli",
4449
+ "pluginName": "eas-cli",
4450
+ "pluginType": "core",
4451
+ "state": "preview",
4452
+ "strict": true,
4453
+ "enableJsonFlag": false,
4454
+ "ContextOptions": {
4455
+ "LoggedIn": {
4456
+ "loggedIn": {}
4457
+ },
4458
+ "MaybeLoggedIn": {
4459
+ "maybeLoggedIn": {}
4460
+ },
4461
+ "DynamicLoggedIn": {
4462
+ "getDynamicLoggedInAsync": {}
4463
+ },
4464
+ "SessionManagment": {
4465
+ "sessionManager": {}
4466
+ },
4467
+ "OptionalProjectConfig": {
4468
+ "optionalPrivateProjectConfig": {}
4469
+ },
4470
+ "ProjectDir": {
4471
+ "projectDir": {}
4472
+ },
4473
+ "DynamicProjectConfig": {
4474
+ "getDynamicPublicProjectConfigAsync": {},
4475
+ "getDynamicPrivateProjectConfigAsync": {}
4476
+ },
4477
+ "ProjectConfig": {
4478
+ "loggedIn": {},
4479
+ "privateProjectConfig": {}
4480
+ },
4481
+ "Analytics": {
4482
+ "analytics": {}
4483
+ },
4484
+ "Vcs": {
4485
+ "vcsClient": {}
4486
+ },
4487
+ "ServerSideEnvironmentVariables": {
4488
+ "getServerSideEnvironmentVariablesAsync": {}
4489
+ },
4490
+ "ProjectId": {
4491
+ "projectId": {}
4492
+ }
4493
+ },
4494
+ "contextDefinition": {
4495
+ "getDynamicPublicProjectConfigAsync": {},
4496
+ "getDynamicPrivateProjectConfigAsync": {},
4497
+ "projectDir": {},
4498
+ "loggedIn": {}
4499
+ },
4500
+ "isESM": false,
4501
+ "relativePath": [
4502
+ "build",
4503
+ "commands",
4504
+ "deploy",
4505
+ "delete.js"
4506
+ ]
4507
+ },
4508
+ "deploy": {
4509
+ "aliases": [
4510
+ "worker:deploy"
4511
+ ],
4512
+ "args": {},
4513
+ "description": "deploy your Expo Router web build and API Routes",
4514
+ "flags": {
4515
+ "prod": {
4516
+ "aliases": [
4517
+ "production"
4518
+ ],
4519
+ "description": "Create a new production deployment.",
4520
+ "name": "prod",
4521
+ "allowNo": false,
4522
+ "type": "boolean"
4523
+ },
4524
+ "alias": {
4525
+ "description": "Custom alias to assign to the new deployment.",
4526
+ "name": "alias",
4527
+ "hasDynamicHelp": false,
4528
+ "helpValue": "name",
4529
+ "multiple": false,
4530
+ "type": "option"
4531
+ },
4532
+ "id": {
4533
+ "description": "Custom unique identifier for the new deployment.",
4534
+ "name": "id",
4535
+ "hasDynamicHelp": false,
4536
+ "helpValue": "xyz123",
4537
+ "multiple": false,
4538
+ "type": "option"
4539
+ },
4540
+ "export-dir": {
4541
+ "description": "Directory where the Expo project was exported.",
4542
+ "name": "export-dir",
4543
+ "default": "dist",
4544
+ "hasDynamicHelp": false,
4545
+ "helpValue": "dir",
4546
+ "multiple": false,
4547
+ "type": "option"
4548
+ },
4549
+ "dry-run": {
4550
+ "description": "Outputs a tarball of the new deployment instead of uploading it.",
4551
+ "name": "dry-run",
4552
+ "allowNo": false,
4553
+ "type": "boolean"
4554
+ },
4555
+ "source-maps": {
4556
+ "description": "Include source maps in the deployment.",
4557
+ "name": "source-maps",
4558
+ "allowNo": true,
4559
+ "type": "boolean"
4560
+ },
4561
+ "environment": {
4562
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4563
+ "name": "environment",
4564
+ "hasDynamicHelp": false,
4565
+ "multiple": false,
4566
+ "type": "option"
4567
+ },
4568
+ "json": {
4569
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4570
+ "name": "json",
4571
+ "allowNo": false,
4572
+ "type": "boolean"
4573
+ },
4574
+ "non-interactive": {
4575
+ "description": "Run the command in non-interactive mode.",
4576
+ "name": "non-interactive",
4577
+ "noCacheDefault": true,
4578
+ "allowNo": false,
4579
+ "type": "boolean"
4580
+ }
4581
+ },
4589
4582
  "hasDynamicHelp": false,
4590
4583
  "hiddenAliases": [],
4591
- "id": "device:view",
4584
+ "id": "deploy",
4592
4585
  "pluginAlias": "eas-cli",
4593
4586
  "pluginName": "eas-cli",
4594
4587
  "pluginType": "core",
4588
+ "state": "preview",
4595
4589
  "strict": true,
4590
+ "usage": [
4591
+ "deploy [options]",
4592
+ "deploy --prod"
4593
+ ],
4596
4594
  "enableJsonFlag": false,
4597
4595
  "ContextOptions": {
4598
4596
  "LoggedIn": {
@@ -4635,15 +4633,17 @@
4635
4633
  }
4636
4634
  },
4637
4635
  "contextDefinition": {
4638
- "projectId": {},
4636
+ "getDynamicPublicProjectConfigAsync": {},
4637
+ "getDynamicPrivateProjectConfigAsync": {},
4638
+ "projectDir": {},
4639
4639
  "loggedIn": {}
4640
4640
  },
4641
4641
  "isESM": false,
4642
4642
  "relativePath": [
4643
4643
  "build",
4644
4644
  "commands",
4645
- "device",
4646
- "view.js"
4645
+ "deploy",
4646
+ "index.js"
4647
4647
  ]
4648
4648
  },
4649
4649
  "env:create": {
@@ -5717,21 +5717,268 @@
5717
5717
  },
5718
5718
  "build-profile": {
5719
5719
  "char": "e",
5720
- "description": "Name of the build profile from eas.json.",
5721
- "exclusive": [
5722
- "environment"
5723
- ],
5724
- "name": "build-profile",
5720
+ "description": "Name of the build profile from eas.json.",
5721
+ "exclusive": [
5722
+ "environment"
5723
+ ],
5724
+ "name": "build-profile",
5725
+ "hasDynamicHelp": false,
5726
+ "multiple": false,
5727
+ "type": "option"
5728
+ },
5729
+ "json": {
5730
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5731
+ "name": "json",
5732
+ "allowNo": false,
5733
+ "type": "boolean"
5734
+ },
5735
+ "non-interactive": {
5736
+ "description": "Run the command in non-interactive mode.",
5737
+ "name": "non-interactive",
5738
+ "noCacheDefault": true,
5739
+ "allowNo": false,
5740
+ "type": "boolean"
5741
+ }
5742
+ },
5743
+ "hasDynamicHelp": false,
5744
+ "hiddenAliases": [],
5745
+ "id": "fingerprint:generate",
5746
+ "pluginAlias": "eas-cli",
5747
+ "pluginName": "eas-cli",
5748
+ "pluginType": "core",
5749
+ "strict": false,
5750
+ "enableJsonFlag": false,
5751
+ "ContextOptions": {
5752
+ "LoggedIn": {
5753
+ "loggedIn": {}
5754
+ },
5755
+ "MaybeLoggedIn": {
5756
+ "maybeLoggedIn": {}
5757
+ },
5758
+ "DynamicLoggedIn": {
5759
+ "getDynamicLoggedInAsync": {}
5760
+ },
5761
+ "SessionManagment": {
5762
+ "sessionManager": {}
5763
+ },
5764
+ "OptionalProjectConfig": {
5765
+ "optionalPrivateProjectConfig": {}
5766
+ },
5767
+ "ProjectDir": {
5768
+ "projectDir": {}
5769
+ },
5770
+ "DynamicProjectConfig": {
5771
+ "getDynamicPublicProjectConfigAsync": {},
5772
+ "getDynamicPrivateProjectConfigAsync": {}
5773
+ },
5774
+ "ProjectConfig": {
5775
+ "loggedIn": {},
5776
+ "privateProjectConfig": {}
5777
+ },
5778
+ "Analytics": {
5779
+ "analytics": {}
5780
+ },
5781
+ "Vcs": {
5782
+ "vcsClient": {}
5783
+ },
5784
+ "ServerSideEnvironmentVariables": {
5785
+ "getServerSideEnvironmentVariablesAsync": {}
5786
+ },
5787
+ "ProjectId": {
5788
+ "projectId": {}
5789
+ }
5790
+ },
5791
+ "contextDefinition": {
5792
+ "projectId": {},
5793
+ "loggedIn": {},
5794
+ "privateProjectConfig": {},
5795
+ "vcsClient": {},
5796
+ "getServerSideEnvironmentVariablesAsync": {},
5797
+ "getDynamicPublicProjectConfigAsync": {},
5798
+ "getDynamicPrivateProjectConfigAsync": {}
5799
+ },
5800
+ "isESM": false,
5801
+ "relativePath": [
5802
+ "build",
5803
+ "commands",
5804
+ "fingerprint",
5805
+ "generate.js"
5806
+ ]
5807
+ },
5808
+ "metadata:lint": {
5809
+ "aliases": [],
5810
+ "args": {},
5811
+ "description": "validate the local store configuration",
5812
+ "flags": {
5813
+ "json": {
5814
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr",
5815
+ "name": "json",
5816
+ "allowNo": false,
5817
+ "type": "boolean"
5818
+ },
5819
+ "profile": {
5820
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5821
+ "name": "profile",
5822
+ "hasDynamicHelp": false,
5823
+ "multiple": false,
5824
+ "type": "option"
5825
+ }
5826
+ },
5827
+ "hasDynamicHelp": false,
5828
+ "hiddenAliases": [],
5829
+ "id": "metadata:lint",
5830
+ "pluginAlias": "eas-cli",
5831
+ "pluginName": "eas-cli",
5832
+ "pluginType": "core",
5833
+ "strict": true,
5834
+ "enableJsonFlag": false,
5835
+ "ContextOptions": {
5836
+ "LoggedIn": {
5837
+ "loggedIn": {}
5838
+ },
5839
+ "MaybeLoggedIn": {
5840
+ "maybeLoggedIn": {}
5841
+ },
5842
+ "DynamicLoggedIn": {
5843
+ "getDynamicLoggedInAsync": {}
5844
+ },
5845
+ "SessionManagment": {
5846
+ "sessionManager": {}
5847
+ },
5848
+ "OptionalProjectConfig": {
5849
+ "optionalPrivateProjectConfig": {}
5850
+ },
5851
+ "ProjectDir": {
5852
+ "projectDir": {}
5853
+ },
5854
+ "DynamicProjectConfig": {
5855
+ "getDynamicPublicProjectConfigAsync": {},
5856
+ "getDynamicPrivateProjectConfigAsync": {}
5857
+ },
5858
+ "ProjectConfig": {
5859
+ "loggedIn": {},
5860
+ "privateProjectConfig": {}
5861
+ },
5862
+ "Analytics": {
5863
+ "analytics": {}
5864
+ },
5865
+ "Vcs": {
5866
+ "vcsClient": {}
5867
+ },
5868
+ "ServerSideEnvironmentVariables": {
5869
+ "getServerSideEnvironmentVariablesAsync": {}
5870
+ },
5871
+ "ProjectId": {
5872
+ "projectId": {}
5873
+ }
5874
+ },
5875
+ "contextDefinition": {
5876
+ "projectDir": {}
5877
+ },
5878
+ "isESM": false,
5879
+ "relativePath": [
5880
+ "build",
5881
+ "commands",
5882
+ "metadata",
5883
+ "lint.js"
5884
+ ]
5885
+ },
5886
+ "metadata:pull": {
5887
+ "aliases": [],
5888
+ "args": {},
5889
+ "description": "generate the local store configuration from the app stores",
5890
+ "flags": {
5891
+ "profile": {
5892
+ "char": "e",
5893
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5894
+ "name": "profile",
5895
+ "hasDynamicHelp": false,
5896
+ "multiple": false,
5897
+ "type": "option"
5898
+ },
5899
+ "non-interactive": {
5900
+ "description": "Run the command in non-interactive mode.",
5901
+ "name": "non-interactive",
5902
+ "noCacheDefault": true,
5903
+ "allowNo": false,
5904
+ "type": "boolean"
5905
+ }
5906
+ },
5907
+ "hasDynamicHelp": false,
5908
+ "hiddenAliases": [],
5909
+ "id": "metadata:pull",
5910
+ "pluginAlias": "eas-cli",
5911
+ "pluginName": "eas-cli",
5912
+ "pluginType": "core",
5913
+ "strict": true,
5914
+ "enableJsonFlag": false,
5915
+ "ContextOptions": {
5916
+ "LoggedIn": {
5917
+ "loggedIn": {}
5918
+ },
5919
+ "MaybeLoggedIn": {
5920
+ "maybeLoggedIn": {}
5921
+ },
5922
+ "DynamicLoggedIn": {
5923
+ "getDynamicLoggedInAsync": {}
5924
+ },
5925
+ "SessionManagment": {
5926
+ "sessionManager": {}
5927
+ },
5928
+ "OptionalProjectConfig": {
5929
+ "optionalPrivateProjectConfig": {}
5930
+ },
5931
+ "ProjectDir": {
5932
+ "projectDir": {}
5933
+ },
5934
+ "DynamicProjectConfig": {
5935
+ "getDynamicPublicProjectConfigAsync": {},
5936
+ "getDynamicPrivateProjectConfigAsync": {}
5937
+ },
5938
+ "ProjectConfig": {
5939
+ "loggedIn": {},
5940
+ "privateProjectConfig": {}
5941
+ },
5942
+ "Analytics": {
5943
+ "analytics": {}
5944
+ },
5945
+ "Vcs": {
5946
+ "vcsClient": {}
5947
+ },
5948
+ "ServerSideEnvironmentVariables": {
5949
+ "getServerSideEnvironmentVariablesAsync": {}
5950
+ },
5951
+ "ProjectId": {
5952
+ "projectId": {}
5953
+ }
5954
+ },
5955
+ "contextDefinition": {
5956
+ "loggedIn": {},
5957
+ "privateProjectConfig": {},
5958
+ "analytics": {},
5959
+ "vcsClient": {}
5960
+ },
5961
+ "isESM": false,
5962
+ "relativePath": [
5963
+ "build",
5964
+ "commands",
5965
+ "metadata",
5966
+ "pull.js"
5967
+ ]
5968
+ },
5969
+ "metadata:push": {
5970
+ "aliases": [],
5971
+ "args": {},
5972
+ "description": "sync the local store configuration to the app stores",
5973
+ "flags": {
5974
+ "profile": {
5975
+ "char": "e",
5976
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5977
+ "name": "profile",
5725
5978
  "hasDynamicHelp": false,
5726
5979
  "multiple": false,
5727
5980
  "type": "option"
5728
5981
  },
5729
- "json": {
5730
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5731
- "name": "json",
5732
- "allowNo": false,
5733
- "type": "boolean"
5734
- },
5735
5982
  "non-interactive": {
5736
5983
  "description": "Run the command in non-interactive mode.",
5737
5984
  "name": "non-interactive",
@@ -5742,11 +5989,11 @@
5742
5989
  },
5743
5990
  "hasDynamicHelp": false,
5744
5991
  "hiddenAliases": [],
5745
- "id": "fingerprint:generate",
5992
+ "id": "metadata:push",
5746
5993
  "pluginAlias": "eas-cli",
5747
5994
  "pluginName": "eas-cli",
5748
5995
  "pluginType": "core",
5749
- "strict": false,
5996
+ "strict": true,
5750
5997
  "enableJsonFlag": false,
5751
5998
  "ContextOptions": {
5752
5999
  "LoggedIn": {
@@ -5789,44 +6036,147 @@
5789
6036
  }
5790
6037
  },
5791
6038
  "contextDefinition": {
5792
- "projectId": {},
5793
6039
  "loggedIn": {},
5794
6040
  "privateProjectConfig": {},
5795
- "vcsClient": {},
5796
- "getServerSideEnvironmentVariablesAsync": {},
5797
- "getDynamicPublicProjectConfigAsync": {},
5798
- "getDynamicPrivateProjectConfigAsync": {}
6041
+ "analytics": {},
6042
+ "vcsClient": {}
5799
6043
  },
5800
6044
  "isESM": false,
5801
6045
  "relativePath": [
5802
6046
  "build",
5803
6047
  "commands",
5804
- "fingerprint",
5805
- "generate.js"
6048
+ "metadata",
6049
+ "push.js"
5806
6050
  ]
5807
6051
  },
5808
- "metadata:lint": {
6052
+ "observe:events": {
5809
6053
  "aliases": [],
5810
- "args": {},
5811
- "description": "validate the local store configuration",
6054
+ "args": {
6055
+ "metric": {
6056
+ "description": "Metric to query (e.g. tti, cold_launch)",
6057
+ "name": "metric",
6058
+ "options": [
6059
+ "tti",
6060
+ "ttr",
6061
+ "cold_launch",
6062
+ "warm_launch",
6063
+ "bundle_load"
6064
+ ],
6065
+ "required": false
6066
+ }
6067
+ },
6068
+ "description": "display individual app performance events ordered by metric value",
5812
6069
  "flags": {
6070
+ "sort": {
6071
+ "description": "Sort order for events",
6072
+ "name": "sort",
6073
+ "required": false,
6074
+ "default": "oldest",
6075
+ "hasDynamicHelp": false,
6076
+ "multiple": false,
6077
+ "options": [
6078
+ "slowest",
6079
+ "fastest",
6080
+ "newest",
6081
+ "oldest"
6082
+ ],
6083
+ "type": "option"
6084
+ },
6085
+ "platform": {
6086
+ "description": "Filter by platform",
6087
+ "name": "platform",
6088
+ "hasDynamicHelp": false,
6089
+ "multiple": false,
6090
+ "options": [
6091
+ "android",
6092
+ "ios"
6093
+ ],
6094
+ "type": "option"
6095
+ },
6096
+ "after": {
6097
+ "description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
6098
+ "name": "after",
6099
+ "hasDynamicHelp": false,
6100
+ "multiple": false,
6101
+ "type": "option"
6102
+ },
6103
+ "limit": {
6104
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
6105
+ "name": "limit",
6106
+ "hasDynamicHelp": false,
6107
+ "multiple": false,
6108
+ "type": "option"
6109
+ },
6110
+ "start": {
6111
+ "description": "Start of time range (ISO date)",
6112
+ "exclusive": [
6113
+ "days"
6114
+ ],
6115
+ "name": "start",
6116
+ "hasDynamicHelp": false,
6117
+ "multiple": false,
6118
+ "type": "option"
6119
+ },
6120
+ "end": {
6121
+ "description": "End of time range (ISO date)",
6122
+ "exclusive": [
6123
+ "days"
6124
+ ],
6125
+ "name": "end",
6126
+ "hasDynamicHelp": false,
6127
+ "multiple": false,
6128
+ "type": "option"
6129
+ },
6130
+ "days": {
6131
+ "description": "Show events from the last N days (mutually exclusive with --start/--end)",
6132
+ "exclusive": [
6133
+ "start",
6134
+ "end"
6135
+ ],
6136
+ "name": "days",
6137
+ "hasDynamicHelp": false,
6138
+ "multiple": false,
6139
+ "type": "option"
6140
+ },
6141
+ "app-version": {
6142
+ "description": "Filter by app version",
6143
+ "name": "app-version",
6144
+ "hasDynamicHelp": false,
6145
+ "multiple": false,
6146
+ "type": "option"
6147
+ },
6148
+ "update-id": {
6149
+ "description": "Filter by EAS update ID",
6150
+ "name": "update-id",
6151
+ "hasDynamicHelp": false,
6152
+ "multiple": false,
6153
+ "type": "option"
6154
+ },
6155
+ "project-id": {
6156
+ "description": "EAS project ID (defaults to the project ID of the current directory)",
6157
+ "name": "project-id",
6158
+ "hasDynamicHelp": false,
6159
+ "multiple": false,
6160
+ "type": "option"
6161
+ },
5813
6162
  "json": {
5814
- "description": "Enable JSON output, non-JSON messages will be printed to stderr",
6163
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5815
6164
  "name": "json",
5816
6165
  "allowNo": false,
5817
6166
  "type": "boolean"
5818
6167
  },
5819
- "profile": {
5820
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5821
- "name": "profile",
5822
- "hasDynamicHelp": false,
5823
- "multiple": false,
5824
- "type": "option"
6168
+ "non-interactive": {
6169
+ "description": "Run the command in non-interactive mode.",
6170
+ "name": "non-interactive",
6171
+ "noCacheDefault": true,
6172
+ "allowNo": false,
6173
+ "type": "boolean"
5825
6174
  }
5826
6175
  },
5827
6176
  "hasDynamicHelp": false,
6177
+ "hidden": true,
5828
6178
  "hiddenAliases": [],
5829
- "id": "metadata:lint",
6179
+ "id": "observe:events",
5830
6180
  "pluginAlias": "eas-cli",
5831
6181
  "pluginName": "eas-cli",
5832
6182
  "pluginType": "core",
@@ -5873,39 +6223,120 @@
5873
6223
  }
5874
6224
  },
5875
6225
  "contextDefinition": {
5876
- "projectDir": {}
6226
+ "projectId": {},
6227
+ "loggedIn": {}
5877
6228
  },
5878
6229
  "isESM": false,
5879
6230
  "relativePath": [
5880
6231
  "build",
5881
6232
  "commands",
5882
- "metadata",
5883
- "lint.js"
6233
+ "observe",
6234
+ "events.js"
5884
6235
  ]
5885
6236
  },
5886
- "metadata:pull": {
6237
+ "observe:metrics": {
5887
6238
  "aliases": [],
5888
6239
  "args": {},
5889
- "description": "generate the local store configuration from the app stores",
6240
+ "description": "display app performance metrics grouped by app version",
5890
6241
  "flags": {
5891
- "profile": {
5892
- "char": "e",
5893
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5894
- "name": "profile",
6242
+ "platform": {
6243
+ "description": "Filter by platform",
6244
+ "name": "platform",
6245
+ "hasDynamicHelp": false,
6246
+ "multiple": false,
6247
+ "options": [
6248
+ "android",
6249
+ "ios"
6250
+ ],
6251
+ "type": "option"
6252
+ },
6253
+ "metric": {
6254
+ "description": "Metric name to display (can be specified multiple times).",
6255
+ "name": "metric",
6256
+ "hasDynamicHelp": false,
6257
+ "multiple": true,
6258
+ "options": [
6259
+ "tti",
6260
+ "ttr",
6261
+ "cold_launch",
6262
+ "warm_launch",
6263
+ "bundle_load"
6264
+ ],
6265
+ "type": "option"
6266
+ },
6267
+ "stat": {
6268
+ "description": "Statistic to display per metric (can be specified multiple times)",
6269
+ "name": "stat",
6270
+ "hasDynamicHelp": false,
6271
+ "multiple": true,
6272
+ "options": [
6273
+ "min",
6274
+ "median",
6275
+ "max",
6276
+ "average",
6277
+ "p80",
6278
+ "p90",
6279
+ "p99",
6280
+ "eventCount"
6281
+ ],
6282
+ "type": "option"
6283
+ },
6284
+ "start": {
6285
+ "description": "Start of time range for metrics data (ISO date).",
6286
+ "exclusive": [
6287
+ "days"
6288
+ ],
6289
+ "name": "start",
6290
+ "hasDynamicHelp": false,
6291
+ "multiple": false,
6292
+ "type": "option"
6293
+ },
6294
+ "end": {
6295
+ "description": "End of time range for metrics data (ISO date).",
6296
+ "exclusive": [
6297
+ "days"
6298
+ ],
6299
+ "name": "end",
6300
+ "hasDynamicHelp": false,
6301
+ "multiple": false,
6302
+ "type": "option"
6303
+ },
6304
+ "days": {
6305
+ "description": "Show metrics from the last N days (mutually exclusive with --start/--end)",
6306
+ "exclusive": [
6307
+ "start",
6308
+ "end"
6309
+ ],
6310
+ "name": "days",
5895
6311
  "hasDynamicHelp": false,
5896
6312
  "multiple": false,
5897
6313
  "type": "option"
5898
6314
  },
6315
+ "project-id": {
6316
+ "description": "EAS project ID (defaults to the project ID of the current directory)",
6317
+ "name": "project-id",
6318
+ "hasDynamicHelp": false,
6319
+ "multiple": false,
6320
+ "type": "option"
6321
+ },
6322
+ "json": {
6323
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
6324
+ "name": "json",
6325
+ "allowNo": false,
6326
+ "type": "boolean"
6327
+ },
5899
6328
  "non-interactive": {
5900
6329
  "description": "Run the command in non-interactive mode.",
5901
6330
  "name": "non-interactive",
6331
+ "noCacheDefault": true,
5902
6332
  "allowNo": false,
5903
6333
  "type": "boolean"
5904
6334
  }
5905
6335
  },
5906
6336
  "hasDynamicHelp": false,
6337
+ "hidden": true,
5907
6338
  "hiddenAliases": [],
5908
- "id": "metadata:pull",
6339
+ "id": "observe:metrics",
5909
6340
  "pluginAlias": "eas-cli",
5910
6341
  "pluginName": "eas-cli",
5911
6342
  "pluginType": "core",
@@ -5952,42 +6383,89 @@
5952
6383
  }
5953
6384
  },
5954
6385
  "contextDefinition": {
5955
- "loggedIn": {},
5956
- "privateProjectConfig": {},
5957
- "analytics": {},
5958
- "vcsClient": {}
6386
+ "projectId": {},
6387
+ "loggedIn": {}
5959
6388
  },
5960
6389
  "isESM": false,
5961
6390
  "relativePath": [
5962
6391
  "build",
5963
6392
  "commands",
5964
- "metadata",
5965
- "pull.js"
6393
+ "observe",
6394
+ "metrics.js"
5966
6395
  ]
5967
6396
  },
5968
- "metadata:push": {
6397
+ "observe:versions": {
5969
6398
  "aliases": [],
5970
6399
  "args": {},
5971
- "description": "sync the local store configuration to the app stores",
6400
+ "description": "display app versions with build and update details",
5972
6401
  "flags": {
5973
- "profile": {
5974
- "char": "e",
5975
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5976
- "name": "profile",
6402
+ "platform": {
6403
+ "description": "Filter by platform",
6404
+ "name": "platform",
6405
+ "hasDynamicHelp": false,
6406
+ "multiple": false,
6407
+ "options": [
6408
+ "android",
6409
+ "ios"
6410
+ ],
6411
+ "type": "option"
6412
+ },
6413
+ "start": {
6414
+ "description": "Start of time range (ISO date)",
6415
+ "exclusive": [
6416
+ "days"
6417
+ ],
6418
+ "name": "start",
6419
+ "hasDynamicHelp": false,
6420
+ "multiple": false,
6421
+ "type": "option"
6422
+ },
6423
+ "end": {
6424
+ "description": "End of time range (ISO date)",
6425
+ "exclusive": [
6426
+ "days"
6427
+ ],
6428
+ "name": "end",
6429
+ "hasDynamicHelp": false,
6430
+ "multiple": false,
6431
+ "type": "option"
6432
+ },
6433
+ "days": {
6434
+ "description": "Show versions from the last N days (mutually exclusive with --start/--end)",
6435
+ "exclusive": [
6436
+ "start",
6437
+ "end"
6438
+ ],
6439
+ "name": "days",
6440
+ "hasDynamicHelp": false,
6441
+ "multiple": false,
6442
+ "type": "option"
6443
+ },
6444
+ "project-id": {
6445
+ "description": "EAS project ID (defaults to the project ID of the current directory)",
6446
+ "name": "project-id",
5977
6447
  "hasDynamicHelp": false,
5978
6448
  "multiple": false,
5979
6449
  "type": "option"
5980
6450
  },
6451
+ "json": {
6452
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
6453
+ "name": "json",
6454
+ "allowNo": false,
6455
+ "type": "boolean"
6456
+ },
5981
6457
  "non-interactive": {
5982
6458
  "description": "Run the command in non-interactive mode.",
5983
6459
  "name": "non-interactive",
6460
+ "noCacheDefault": true,
5984
6461
  "allowNo": false,
5985
6462
  "type": "boolean"
5986
6463
  }
5987
6464
  },
5988
6465
  "hasDynamicHelp": false,
6466
+ "hidden": true,
5989
6467
  "hiddenAliases": [],
5990
- "id": "metadata:push",
6468
+ "id": "observe:versions",
5991
6469
  "pluginAlias": "eas-cli",
5992
6470
  "pluginName": "eas-cli",
5993
6471
  "pluginType": "core",
@@ -6034,17 +6512,15 @@
6034
6512
  }
6035
6513
  },
6036
6514
  "contextDefinition": {
6037
- "loggedIn": {},
6038
- "privateProjectConfig": {},
6039
- "analytics": {},
6040
- "vcsClient": {}
6515
+ "projectId": {},
6516
+ "loggedIn": {}
6041
6517
  },
6042
6518
  "isESM": false,
6043
6519
  "relativePath": [
6044
6520
  "build",
6045
6521
  "commands",
6046
- "metadata",
6047
- "push.js"
6522
+ "observe",
6523
+ "versions.js"
6048
6524
  ]
6049
6525
  },
6050
6526
  "project:info": {
@@ -9725,5 +10201,5 @@
9725
10201
  ]
9726
10202
  }
9727
10203
  },
9728
- "version": "18.5.0"
10204
+ "version": "18.6.0"
9729
10205
  }