eas-cli 18.8.1 → 18.9.1

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 (32) hide show
  1. package/README.md +162 -94
  2. package/build/commands/build/download.d.ts +6 -2
  3. package/build/commands/build/download.js +130 -18
  4. package/build/commands/integrations/asc/connect.d.ts +19 -0
  5. package/build/commands/integrations/asc/connect.js +159 -0
  6. package/build/commands/integrations/asc/disconnect.d.ts +15 -0
  7. package/build/commands/integrations/asc/disconnect.js +115 -0
  8. package/build/commands/integrations/asc/status.d.ts +14 -0
  9. package/build/commands/integrations/asc/status.js +65 -0
  10. package/build/commands/simulator/start.js +2 -0
  11. package/build/commands/simulator/stop.d.ts +13 -0
  12. package/build/commands/simulator/stop.js +38 -0
  13. package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +2 -1
  14. package/build/credentials/ios/actions/AscApiKeyUtils.js +16 -0
  15. package/build/credentials/ios/appstore/AppStoreApi.d.ts +3 -1
  16. package/build/credentials/ios/appstore/AppStoreApi.js +2 -2
  17. package/build/graphql/generated.d.ts +243 -0
  18. package/build/graphql/generated.js +11 -3
  19. package/build/graphql/mutations/AscAppLinkMutation.d.ts +12 -0
  20. package/build/graphql/mutations/AscAppLinkMutation.js +36 -0
  21. package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +2 -1
  22. package/build/graphql/mutations/DeviceRunSessionMutation.js +15 -0
  23. package/build/graphql/queries/AscAppLinkQuery.d.ts +8 -0
  24. package/build/graphql/queries/AscAppLinkQuery.js +67 -0
  25. package/build/integrations/asc/ascApiKey.d.ts +7 -0
  26. package/build/integrations/asc/ascApiKey.js +26 -0
  27. package/build/integrations/asc/utils.d.ts +21 -0
  28. package/build/integrations/asc/utils.js +56 -0
  29. package/build/utils/download.d.ts +1 -0
  30. package/build/utils/download.js +1 -0
  31. package/oclif.manifest.json +1342 -962
  32. package/package.json +6 -3
@@ -1486,48 +1486,34 @@
1486
1486
  "view.js"
1487
1487
  ]
1488
1488
  },
1489
- "build:cancel": {
1489
+ "channel:create": {
1490
1490
  "aliases": [],
1491
1491
  "args": {
1492
- "BUILD_ID": {
1493
- "name": "BUILD_ID"
1492
+ "name": {
1493
+ "description": "Name of the channel to create",
1494
+ "name": "name",
1495
+ "required": false
1494
1496
  }
1495
1497
  },
1496
- "description": "cancel a build",
1498
+ "description": "create a channel",
1497
1499
  "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
+ },
1498
1506
  "non-interactive": {
1499
1507
  "description": "Run the command in non-interactive mode.",
1500
1508
  "name": "non-interactive",
1501
1509
  "noCacheDefault": true,
1502
1510
  "allowNo": false,
1503
1511
  "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"
1526
1512
  }
1527
1513
  },
1528
1514
  "hasDynamicHelp": false,
1529
1515
  "hiddenAliases": [],
1530
- "id": "build:cancel",
1516
+ "id": "channel:create",
1531
1517
  "pluginAlias": "eas-cli",
1532
1518
  "pluginName": "eas-cli",
1533
1519
  "pluginType": "core",
@@ -1575,39 +1561,44 @@
1575
1561
  },
1576
1562
  "contextDefinition": {
1577
1563
  "projectId": {},
1578
- "loggedIn": {},
1579
- "vcsClient": {}
1564
+ "loggedIn": {}
1580
1565
  },
1581
1566
  "isESM": false,
1582
1567
  "relativePath": [
1583
1568
  "build",
1584
1569
  "commands",
1585
- "build",
1586
- "cancel.js"
1570
+ "channel",
1571
+ "create.js"
1587
1572
  ]
1588
1573
  },
1589
- "build:configure": {
1574
+ "channel:delete": {
1590
1575
  "aliases": [],
1591
- "args": {},
1592
- "description": "configure the project to support EAS Build",
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",
1593
1584
  "flags": {
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"
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"
1606
1597
  }
1607
1598
  },
1608
1599
  "hasDynamicHelp": false,
1609
1600
  "hiddenAliases": [],
1610
- "id": "build:configure",
1601
+ "id": "channel:delete",
1611
1602
  "pluginAlias": "eas-cli",
1612
1603
  "pluginName": "eas-cli",
1613
1604
  "pluginType": "core",
@@ -1654,60 +1645,52 @@
1654
1645
  }
1655
1646
  },
1656
1647
  "contextDefinition": {
1657
- "loggedIn": {},
1658
- "privateProjectConfig": {},
1659
- "vcsClient": {}
1648
+ "projectId": {},
1649
+ "loggedIn": {}
1660
1650
  },
1661
1651
  "isESM": false,
1662
1652
  "relativePath": [
1663
1653
  "build",
1664
1654
  "commands",
1665
- "build",
1666
- "configure.js"
1655
+ "channel",
1656
+ "delete.js"
1667
1657
  ]
1668
1658
  },
1669
- "build:delete": {
1659
+ "channel:edit": {
1670
1660
  "aliases": [],
1671
1661
  "args": {
1672
- "BUILD_ID": {
1673
- "name": "BUILD_ID"
1662
+ "name": {
1663
+ "description": "Name of the channel to edit",
1664
+ "name": "name",
1665
+ "required": false
1674
1666
  }
1675
1667
  },
1676
- "description": "delete a build",
1668
+ "description": "point a channel at a new branch",
1677
1669
  "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
+ },
1678
1683
  "non-interactive": {
1679
1684
  "description": "Run the command in non-interactive mode.",
1680
1685
  "name": "non-interactive",
1681
1686
  "noCacheDefault": true,
1682
1687
  "allowNo": false,
1683
1688
  "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"
1706
1689
  }
1707
1690
  },
1708
1691
  "hasDynamicHelp": false,
1709
1692
  "hiddenAliases": [],
1710
- "id": "build:delete",
1693
+ "id": "channel:edit",
1711
1694
  "pluginAlias": "eas-cli",
1712
1695
  "pluginName": "eas-cli",
1713
1696
  "pluginType": "core",
@@ -1755,58 +1738,85 @@
1755
1738
  },
1756
1739
  "contextDefinition": {
1757
1740
  "projectId": {},
1758
- "loggedIn": {},
1759
- "vcsClient": {}
1741
+ "loggedIn": {}
1760
1742
  },
1761
1743
  "isESM": false,
1762
1744
  "relativePath": [
1763
1745
  "build",
1764
1746
  "commands",
1765
- "build",
1766
- "delete.js"
1747
+ "channel",
1748
+ "edit.js"
1767
1749
  ]
1768
1750
  },
1769
- "build:dev": {
1751
+ "channel:insights": {
1770
1752
  "aliases": [],
1771
1753
  "args": {},
1772
- "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
1754
+ "description": "display adoption, crash, and unique-user insights for a channel + runtime version",
1773
1755
  "flags": {
1774
- "platform": {
1775
- "char": "p",
1776
- "name": "platform",
1756
+ "channel": {
1757
+ "description": "Name of the channel.",
1758
+ "name": "channel",
1759
+ "required": true,
1777
1760
  "hasDynamicHelp": false,
1778
1761
  "multiple": false,
1779
- "options": [
1780
- "ios",
1781
- "android"
1762
+ "type": "option"
1763
+ },
1764
+ "runtime-version": {
1765
+ "description": "Runtime version to query insights for.",
1766
+ "name": "runtime-version",
1767
+ "required": true,
1768
+ "hasDynamicHelp": false,
1769
+ "multiple": false,
1770
+ "type": "option"
1771
+ },
1772
+ "days": {
1773
+ "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
1774
+ "exclusive": [
1775
+ "start",
1776
+ "end"
1782
1777
  ],
1778
+ "name": "days",
1779
+ "hasDynamicHelp": false,
1780
+ "multiple": false,
1783
1781
  "type": "option"
1784
1782
  },
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",
1783
+ "start": {
1784
+ "description": "Start of insights time range (ISO date).",
1785
+ "exclusive": [
1786
+ "days"
1787
+ ],
1788
+ "name": "start",
1789
1789
  "hasDynamicHelp": false,
1790
- "helpValue": "PROFILE_NAME",
1791
1790
  "multiple": false,
1792
1791
  "type": "option"
1793
1792
  },
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",
1793
+ "end": {
1794
+ "description": "End of insights time range (ISO date).",
1795
+ "exclusive": [
1796
+ "days"
1797
+ ],
1798
+ "name": "end",
1799
+ "hasDynamicHelp": false,
1800
+ "multiple": false,
1801
+ "type": "option"
1802
+ },
1803
+ "json": {
1804
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1805
+ "name": "json",
1797
1806
  "allowNo": false,
1798
1807
  "type": "boolean"
1799
1808
  },
1800
- "skip-bundler": {
1801
- "description": "Install and run the development build without starting the bundler server.",
1802
- "name": "skip-bundler",
1809
+ "non-interactive": {
1810
+ "description": "Run the command in non-interactive mode.",
1811
+ "name": "non-interactive",
1812
+ "noCacheDefault": true,
1803
1813
  "allowNo": false,
1804
1814
  "type": "boolean"
1805
1815
  }
1806
1816
  },
1807
1817
  "hasDynamicHelp": false,
1808
1818
  "hiddenAliases": [],
1809
- "id": "build:dev",
1819
+ "id": "channel:insights",
1810
1820
  "pluginAlias": "eas-cli",
1811
1821
  "pluginName": "eas-cli",
1812
1822
  "pluginType": "core",
@@ -1853,52 +1863,36 @@
1853
1863
  }
1854
1864
  },
1855
1865
  "contextDefinition": {
1856
- "loggedIn": {},
1857
- "getDynamicPublicProjectConfigAsync": {},
1858
- "getDynamicPrivateProjectConfigAsync": {},
1859
- "projectDir": {},
1860
- "vcsClient": {},
1861
- "analytics": {},
1862
- "projectId": {}
1866
+ "projectId": {},
1867
+ "loggedIn": {}
1863
1868
  },
1864
1869
  "isESM": false,
1865
1870
  "relativePath": [
1866
1871
  "build",
1867
1872
  "commands",
1868
- "build",
1869
- "dev.js"
1873
+ "channel",
1874
+ "insights.js"
1870
1875
  ]
1871
1876
  },
1872
- "build:download": {
1877
+ "channel:list": {
1873
1878
  "aliases": [],
1874
1879
  "args": {},
1875
- "description": "download simulator/emulator builds for a given fingerprint hash",
1880
+ "description": "list all channels",
1876
1881
  "flags": {
1877
- "fingerprint": {
1878
- "description": "Fingerprint hash of the build to download",
1879
- "name": "fingerprint",
1880
- "required": true,
1882
+ "offset": {
1883
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
1884
+ "name": "offset",
1881
1885
  "hasDynamicHelp": false,
1882
1886
  "multiple": false,
1883
1887
  "type": "option"
1884
1888
  },
1885
- "platform": {
1886
- "char": "p",
1887
- "name": "platform",
1889
+ "limit": {
1890
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
1891
+ "name": "limit",
1888
1892
  "hasDynamicHelp": false,
1889
1893
  "multiple": false,
1890
- "options": [
1891
- "ios",
1892
- "android"
1893
- ],
1894
1894
  "type": "option"
1895
1895
  },
1896
- "dev-client": {
1897
- "description": "Filter only dev-client builds.",
1898
- "name": "dev-client",
1899
- "allowNo": true,
1900
- "type": "boolean"
1901
- },
1902
1896
  "json": {
1903
1897
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1904
1898
  "name": "json",
@@ -1915,7 +1909,7 @@
1915
1909
  },
1916
1910
  "hasDynamicHelp": false,
1917
1911
  "hiddenAliases": [],
1918
- "id": "build:download",
1912
+ "id": "channel:list",
1919
1913
  "pluginAlias": "eas-cli",
1920
1914
  "pluginName": "eas-cli",
1921
1915
  "pluginType": "core",
@@ -1962,165 +1956,35 @@
1962
1956
  }
1963
1957
  },
1964
1958
  "contextDefinition": {
1965
- "loggedIn": {},
1966
- "projectId": {}
1959
+ "projectId": {},
1960
+ "loggedIn": {}
1967
1961
  },
1968
1962
  "isESM": false,
1969
1963
  "relativePath": [
1970
1964
  "build",
1971
1965
  "commands",
1972
- "build",
1973
- "download.js"
1966
+ "channel",
1967
+ "list.js"
1974
1968
  ]
1975
1969
  },
1976
- "build": {
1970
+ "channel:pause": {
1977
1971
  "aliases": [],
1978
- "args": {},
1979
- "description": "start a build",
1972
+ "args": {
1973
+ "name": {
1974
+ "description": "Name of the channel to edit",
1975
+ "name": "name",
1976
+ "required": false
1977
+ }
1978
+ },
1979
+ "description": "pause a channel to stop it from sending updates",
1980
1980
  "flags": {
1981
- "platform": {
1982
- "char": "p",
1983
- "name": "platform",
1984
- "hasDynamicHelp": false,
1985
- "multiple": false,
1986
- "options": [
1987
- "android",
1988
- "ios",
1989
- "all"
1990
- ],
1991
- "type": "option"
1992
- },
1993
- "skip-credentials-check": {
1994
- "hidden": true,
1995
- "name": "skip-credentials-check",
1996
- "allowNo": false,
1997
- "type": "boolean"
1998
- },
1999
- "skip-project-configuration": {
2000
- "hidden": true,
2001
- "name": "skip-project-configuration",
2002
- "allowNo": false,
2003
- "type": "boolean"
2004
- },
2005
- "profile": {
2006
- "char": "e",
2007
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2008
- "name": "profile",
2009
- "hasDynamicHelp": false,
2010
- "helpValue": "PROFILE_NAME",
2011
- "multiple": false,
2012
- "type": "option"
2013
- },
2014
- "local": {
2015
- "description": "Run build locally [experimental]",
2016
- "name": "local",
2017
- "allowNo": false,
2018
- "type": "boolean"
2019
- },
2020
- "output": {
2021
- "description": "Output path for local build",
2022
- "name": "output",
2023
- "hasDynamicHelp": false,
2024
- "multiple": false,
2025
- "type": "option"
2026
- },
2027
- "wait": {
2028
- "description": "Wait for build(s) to complete",
2029
- "name": "wait",
2030
- "allowNo": true,
2031
- "type": "boolean"
2032
- },
2033
- "clear-cache": {
2034
- "description": "Clear cache before the build",
2035
- "name": "clear-cache",
2036
- "allowNo": false,
2037
- "type": "boolean"
2038
- },
2039
- "auto-submit": {
2040
- "aliases": [
2041
- "submit"
2042
- ],
2043
- "char": "s",
2044
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
2045
- "exclusive": [
2046
- "auto-submit-with-profile"
2047
- ],
2048
- "name": "auto-submit",
2049
- "allowNo": false,
2050
- "type": "boolean"
2051
- },
2052
- "auto-submit-with-profile": {
2053
- "description": "Submit on build complete using the submit profile with provided name",
2054
- "exclusive": [
2055
- "auto-submit"
2056
- ],
2057
- "name": "auto-submit-with-profile",
2058
- "hasDynamicHelp": false,
2059
- "helpValue": "PROFILE_NAME",
2060
- "multiple": false,
2061
- "type": "option"
2062
- },
2063
- "what-to-test": {
2064
- "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
2065
- "name": "what-to-test",
2066
- "hasDynamicHelp": false,
2067
- "multiple": false,
2068
- "type": "option"
2069
- },
2070
- "resource-class": {
2071
- "deprecated": {
2072
- "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/"
2073
- },
2074
- "description": "The instance type that will be used to run this build [experimental]",
2075
- "hidden": true,
2076
- "name": "resource-class",
2077
- "hasDynamicHelp": false,
2078
- "multiple": false,
2079
- "options": [
2080
- "default",
2081
- "large",
2082
- "m1-medium",
2083
- "medium",
2084
- "m-medium",
2085
- "m-large"
2086
- ],
2087
- "type": "option"
2088
- },
2089
- "message": {
2090
- "char": "m",
2091
- "description": "A short message describing the build",
2092
- "name": "message",
2093
- "hasDynamicHelp": false,
2094
- "multiple": false,
2095
- "type": "option"
2096
- },
2097
- "build-logger-level": {
2098
- "description": "The level of logs to output during the build process. Defaults to \"info\".",
2099
- "name": "build-logger-level",
1981
+ "branch": {
1982
+ "description": "Name of the branch to point to",
1983
+ "name": "branch",
2100
1984
  "hasDynamicHelp": false,
2101
1985
  "multiple": false,
2102
- "options": [
2103
- "trace",
2104
- "debug",
2105
- "info",
2106
- "warn",
2107
- "error",
2108
- "fatal"
2109
- ],
2110
1986
  "type": "option"
2111
1987
  },
2112
- "freeze-credentials": {
2113
- "description": "Prevent the build from updating credentials in non-interactive mode",
2114
- "name": "freeze-credentials",
2115
- "allowNo": false,
2116
- "type": "boolean"
2117
- },
2118
- "verbose-logs": {
2119
- "description": "Use verbose logs for the build process",
2120
- "name": "verbose-logs",
2121
- "allowNo": false,
2122
- "type": "boolean"
2123
- },
2124
1988
  "json": {
2125
1989
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2126
1990
  "name": "json",
@@ -2137,7 +2001,7 @@
2137
2001
  },
2138
2002
  "hasDynamicHelp": false,
2139
2003
  "hiddenAliases": [],
2140
- "id": "build",
2004
+ "id": "channel:pause",
2141
2005
  "pluginAlias": "eas-cli",
2142
2006
  "pluginName": "eas-cli",
2143
2007
  "pluginType": "core",
@@ -2184,87 +2048,52 @@
2184
2048
  }
2185
2049
  },
2186
2050
  "contextDefinition": {
2187
- "loggedIn": {},
2188
- "getDynamicPublicProjectConfigAsync": {},
2189
- "getDynamicPrivateProjectConfigAsync": {},
2190
- "projectDir": {},
2191
- "analytics": {},
2192
- "vcsClient": {}
2051
+ "projectId": {},
2052
+ "loggedIn": {}
2193
2053
  },
2194
2054
  "isESM": false,
2195
2055
  "relativePath": [
2196
2056
  "build",
2197
2057
  "commands",
2198
- "build",
2199
- "index.js"
2058
+ "channel",
2059
+ "pause.js"
2200
2060
  ]
2201
2061
  },
2202
- "build:inspect": {
2062
+ "channel:resume": {
2203
2063
  "aliases": [],
2204
- "args": {},
2205
- "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
2064
+ "args": {
2065
+ "name": {
2066
+ "description": "Name of the channel to edit",
2067
+ "name": "name",
2068
+ "required": false
2069
+ }
2070
+ },
2071
+ "description": "resume a channel to start sending updates",
2206
2072
  "flags": {
2207
- "platform": {
2208
- "char": "p",
2209
- "name": "platform",
2210
- "required": true,
2211
- "hasDynamicHelp": false,
2212
- "multiple": false,
2213
- "options": [
2214
- "android",
2215
- "ios"
2216
- ],
2217
- "type": "option"
2218
- },
2219
- "profile": {
2220
- "char": "e",
2221
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2222
- "name": "profile",
2223
- "hasDynamicHelp": false,
2224
- "helpValue": "PROFILE_NAME",
2225
- "multiple": false,
2226
- "type": "option"
2227
- },
2228
- "stage": {
2229
- "char": "s",
2230
- "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",
2231
- "name": "stage",
2232
- "required": true,
2233
- "hasDynamicHelp": false,
2234
- "multiple": false,
2235
- "options": [
2236
- "archive",
2237
- "pre-build",
2238
- "post-build"
2239
- ],
2240
- "type": "option"
2241
- },
2242
- "output": {
2243
- "char": "o",
2244
- "description": "Output directory.",
2245
- "name": "output",
2246
- "required": true,
2073
+ "branch": {
2074
+ "description": "Name of the branch to point to",
2075
+ "name": "branch",
2247
2076
  "hasDynamicHelp": false,
2248
- "helpValue": "OUTPUT_DIRECTORY",
2249
2077
  "multiple": false,
2250
2078
  "type": "option"
2251
2079
  },
2252
- "force": {
2253
- "description": "Delete OUTPUT_DIRECTORY if it already exists.",
2254
- "name": "force",
2080
+ "json": {
2081
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2082
+ "name": "json",
2255
2083
  "allowNo": false,
2256
2084
  "type": "boolean"
2257
2085
  },
2258
- "verbose": {
2259
- "char": "v",
2260
- "name": "verbose",
2086
+ "non-interactive": {
2087
+ "description": "Run the command in non-interactive mode.",
2088
+ "name": "non-interactive",
2089
+ "noCacheDefault": true,
2261
2090
  "allowNo": false,
2262
2091
  "type": "boolean"
2263
2092
  }
2264
2093
  },
2265
2094
  "hasDynamicHelp": false,
2266
2095
  "hiddenAliases": [],
2267
- "id": "build:inspect",
2096
+ "id": "channel:resume",
2268
2097
  "pluginAlias": "eas-cli",
2269
2098
  "pluginName": "eas-cli",
2270
2099
  "pluginType": "core",
@@ -2311,71 +2140,121 @@
2311
2140
  }
2312
2141
  },
2313
2142
  "contextDefinition": {
2314
- "loggedIn": {},
2315
- "getDynamicPublicProjectConfigAsync": {},
2316
- "getDynamicPrivateProjectConfigAsync": {},
2317
- "projectDir": {},
2318
- "analytics": {},
2319
- "vcsClient": {}
2143
+ "projectId": {},
2144
+ "loggedIn": {}
2320
2145
  },
2321
2146
  "isESM": false,
2322
2147
  "relativePath": [
2323
2148
  "build",
2324
2149
  "commands",
2325
- "build",
2326
- "inspect.js"
2150
+ "channel",
2151
+ "resume.js"
2327
2152
  ]
2328
2153
  },
2329
- "build:internal": {
2154
+ "channel:rollout": {
2330
2155
  "aliases": [],
2331
- "args": {},
2156
+ "args": {
2157
+ "channel": {
2158
+ "description": "channel on which the rollout should be done",
2159
+ "name": "channel"
2160
+ }
2161
+ },
2162
+ "description": "Roll a new branch out on a channel incrementally.",
2332
2163
  "flags": {
2333
- "platform": {
2334
- "char": "p",
2335
- "name": "platform",
2336
- "required": true,
2164
+ "action": {
2165
+ "description": "Rollout action to perform",
2166
+ "name": "action",
2167
+ "relationships": [
2168
+ {
2169
+ "type": "all",
2170
+ "flags": [
2171
+ {
2172
+ "name": "percent"
2173
+ },
2174
+ {
2175
+ "name": "outcome"
2176
+ },
2177
+ {
2178
+ "name": "branch"
2179
+ },
2180
+ {
2181
+ "name": "runtime-version"
2182
+ }
2183
+ ]
2184
+ }
2185
+ ],
2186
+ "required": false,
2337
2187
  "hasDynamicHelp": false,
2338
2188
  "multiple": false,
2339
2189
  "options": [
2340
- "android",
2341
- "ios"
2190
+ "create",
2191
+ "edit",
2192
+ "end",
2193
+ "view"
2342
2194
  ],
2343
2195
  "type": "option"
2344
2196
  },
2345
- "profile": {
2346
- "char": "e",
2347
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2348
- "name": "profile",
2197
+ "percent": {
2198
+ "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
2199
+ "name": "percent",
2200
+ "required": false,
2349
2201
  "hasDynamicHelp": false,
2350
- "helpValue": "PROFILE_NAME",
2351
2202
  "multiple": false,
2352
2203
  "type": "option"
2353
2204
  },
2354
- "auto-submit": {
2355
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
2356
- "exclusive": [
2357
- "auto-submit-with-profile"
2205
+ "outcome": {
2206
+ "description": "End outcome of rollout. Use with --action=end",
2207
+ "name": "outcome",
2208
+ "required": false,
2209
+ "hasDynamicHelp": false,
2210
+ "multiple": false,
2211
+ "options": [
2212
+ "republish-and-revert",
2213
+ "revert"
2358
2214
  ],
2359
- "name": "auto-submit",
2360
- "allowNo": false,
2361
- "type": "boolean"
2215
+ "type": "option"
2362
2216
  },
2363
- "auto-submit-with-profile": {
2364
- "description": "Submit on build complete using the submit profile with provided name",
2365
- "exclusive": [
2366
- "auto-submit"
2367
- ],
2368
- "name": "auto-submit-with-profile",
2217
+ "branch": {
2218
+ "description": "Branch to roll out. Use with --action=create",
2219
+ "name": "branch",
2220
+ "required": false,
2221
+ "hasDynamicHelp": false,
2222
+ "multiple": false,
2223
+ "type": "option"
2224
+ },
2225
+ "runtime-version": {
2226
+ "description": "Runtime version to target. Use with --action=create",
2227
+ "name": "runtime-version",
2228
+ "required": false,
2369
2229
  "hasDynamicHelp": false,
2370
- "helpValue": "PROFILE_NAME",
2371
2230
  "multiple": false,
2372
2231
  "type": "option"
2232
+ },
2233
+ "private-key-path": {
2234
+ "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/",
2235
+ "name": "private-key-path",
2236
+ "required": false,
2237
+ "hasDynamicHelp": false,
2238
+ "multiple": false,
2239
+ "type": "option"
2240
+ },
2241
+ "json": {
2242
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2243
+ "name": "json",
2244
+ "allowNo": false,
2245
+ "type": "boolean"
2246
+ },
2247
+ "non-interactive": {
2248
+ "description": "Run the command in non-interactive mode.",
2249
+ "name": "non-interactive",
2250
+ "noCacheDefault": true,
2251
+ "allowNo": false,
2252
+ "type": "boolean"
2373
2253
  }
2374
2254
  },
2375
2255
  "hasDynamicHelp": false,
2376
- "hidden": true,
2377
2256
  "hiddenAliases": [],
2378
- "id": "build:internal",
2257
+ "id": "channel:rollout",
2379
2258
  "pluginAlias": "eas-cli",
2380
2259
  "pluginName": "eas-cli",
2381
2260
  "pluginType": "core",
@@ -2423,149 +2302,40 @@
2423
2302
  },
2424
2303
  "contextDefinition": {
2425
2304
  "loggedIn": {},
2426
- "getDynamicPublicProjectConfigAsync": {},
2427
- "getDynamicPrivateProjectConfigAsync": {},
2428
- "projectDir": {},
2429
- "analytics": {},
2305
+ "privateProjectConfig": {},
2430
2306
  "vcsClient": {}
2431
2307
  },
2432
2308
  "isESM": false,
2433
2309
  "relativePath": [
2434
2310
  "build",
2435
2311
  "commands",
2436
- "build",
2437
- "internal.js"
2312
+ "channel",
2313
+ "rollout.js"
2438
2314
  ]
2439
2315
  },
2440
- "build:list": {
2316
+ "channel:view": {
2441
2317
  "aliases": [],
2442
- "args": {},
2443
- "description": "list all builds for your project",
2318
+ "args": {
2319
+ "name": {
2320
+ "description": "Name of the channel to view",
2321
+ "name": "name",
2322
+ "required": false
2323
+ }
2324
+ },
2325
+ "description": "view a channel",
2444
2326
  "flags": {
2445
- "platform": {
2446
- "char": "p",
2447
- "name": "platform",
2448
- "hasDynamicHelp": false,
2449
- "multiple": false,
2450
- "options": [
2451
- "android",
2452
- "ios",
2453
- "all"
2454
- ],
2455
- "type": "option"
2456
- },
2457
- "status": {
2458
- "description": "Filter only builds with the specified status",
2459
- "name": "status",
2460
- "hasDynamicHelp": false,
2461
- "multiple": false,
2462
- "options": [
2463
- "new",
2464
- "in-queue",
2465
- "in-progress",
2466
- "pending-cancel",
2467
- "errored",
2468
- "finished",
2469
- "canceled"
2470
- ],
2471
- "type": "option"
2472
- },
2473
- "distribution": {
2474
- "description": "Filter only builds with the specified distribution type",
2475
- "name": "distribution",
2476
- "hasDynamicHelp": false,
2477
- "multiple": false,
2478
- "options": [
2479
- "store",
2480
- "internal",
2481
- "simulator"
2482
- ],
2483
- "type": "option"
2484
- },
2485
- "channel": {
2486
- "name": "channel",
2487
- "hasDynamicHelp": false,
2488
- "multiple": false,
2489
- "type": "option"
2490
- },
2491
- "app-version": {
2492
- "aliases": [
2493
- "appVersion"
2494
- ],
2495
- "description": "Filter only builds created with the specified main app version",
2496
- "name": "app-version",
2497
- "hasDynamicHelp": false,
2498
- "multiple": false,
2499
- "type": "option"
2500
- },
2501
- "app-build-version": {
2502
- "aliases": [
2503
- "appBuildVersion"
2504
- ],
2505
- "description": "Filter only builds created with the specified app build version",
2506
- "name": "app-build-version",
2507
- "hasDynamicHelp": false,
2508
- "multiple": false,
2509
- "type": "option"
2510
- },
2511
- "sdk-version": {
2512
- "aliases": [
2513
- "sdkVersion"
2514
- ],
2515
- "description": "Filter only builds created with the specified Expo SDK version",
2516
- "name": "sdk-version",
2517
- "hasDynamicHelp": false,
2518
- "multiple": false,
2519
- "type": "option"
2520
- },
2521
- "runtime-version": {
2522
- "aliases": [
2523
- "runtimeVersion"
2524
- ],
2525
- "description": "Filter only builds created with the specified runtime version",
2526
- "name": "runtime-version",
2527
- "hasDynamicHelp": false,
2528
- "multiple": false,
2529
- "type": "option"
2530
- },
2531
- "app-identifier": {
2532
- "aliases": [
2533
- "appIdentifier"
2534
- ],
2535
- "description": "Filter only builds created with the specified app identifier",
2536
- "name": "app-identifier",
2537
- "hasDynamicHelp": false,
2538
- "multiple": false,
2539
- "type": "option"
2540
- },
2541
- "build-profile": {
2542
- "aliases": [
2543
- "profile",
2544
- "buildProfile"
2545
- ],
2546
- "char": "e",
2547
- "description": "Filter only builds created with the specified build profile",
2548
- "name": "build-profile",
2549
- "hasDynamicHelp": false,
2550
- "multiple": false,
2551
- "type": "option"
2552
- },
2553
- "git-commit-hash": {
2554
- "aliases": [
2555
- "gitCommitHash"
2556
- ],
2557
- "description": "Filter only builds created with the specified git commit hash",
2558
- "name": "git-commit-hash",
2559
- "hasDynamicHelp": false,
2560
- "multiple": false,
2561
- "type": "option"
2327
+ "json": {
2328
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2329
+ "name": "json",
2330
+ "allowNo": false,
2331
+ "type": "boolean"
2562
2332
  },
2563
- "fingerprint-hash": {
2564
- "description": "Filter only builds with the specified fingerprint hash",
2565
- "name": "fingerprint-hash",
2566
- "hasDynamicHelp": false,
2567
- "multiple": false,
2568
- "type": "option"
2333
+ "non-interactive": {
2334
+ "description": "Run the command in non-interactive mode.",
2335
+ "name": "non-interactive",
2336
+ "noCacheDefault": true,
2337
+ "allowNo": false,
2338
+ "type": "boolean"
2569
2339
  },
2570
2340
  "offset": {
2571
2341
  "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
@@ -2575,35 +2345,16 @@
2575
2345
  "type": "option"
2576
2346
  },
2577
2347
  "limit": {
2578
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
2348
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2579
2349
  "name": "limit",
2580
2350
  "hasDynamicHelp": false,
2581
2351
  "multiple": false,
2582
2352
  "type": "option"
2583
- },
2584
- "json": {
2585
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2586
- "name": "json",
2587
- "allowNo": false,
2588
- "type": "boolean"
2589
- },
2590
- "non-interactive": {
2591
- "description": "Run the command in non-interactive mode.",
2592
- "name": "non-interactive",
2593
- "noCacheDefault": true,
2594
- "allowNo": false,
2595
- "type": "boolean"
2596
- },
2597
- "simulator": {
2598
- "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
2599
- "name": "simulator",
2600
- "allowNo": false,
2601
- "type": "boolean"
2602
2353
  }
2603
2354
  },
2604
2355
  "hasDynamicHelp": false,
2605
2356
  "hiddenAliases": [],
2606
- "id": "build:list",
2357
+ "id": "channel:view",
2607
2358
  "pluginAlias": "eas-cli",
2608
2359
  "pluginName": "eas-cli",
2609
2360
  "pluginType": "core",
@@ -2651,97 +2402,58 @@
2651
2402
  },
2652
2403
  "contextDefinition": {
2653
2404
  "projectId": {},
2654
- "loggedIn": {},
2655
- "vcsClient": {}
2405
+ "loggedIn": {}
2656
2406
  },
2657
2407
  "isESM": false,
2658
2408
  "relativePath": [
2659
2409
  "build",
2660
2410
  "commands",
2661
- "build",
2662
- "list.js"
2411
+ "channel",
2412
+ "view.js"
2663
2413
  ]
2664
2414
  },
2665
- "build:resign": {
2415
+ "build:cancel": {
2666
2416
  "aliases": [],
2667
- "args": {},
2668
- "description": "re-sign a build archive",
2417
+ "args": {
2418
+ "BUILD_ID": {
2419
+ "name": "BUILD_ID"
2420
+ }
2421
+ },
2422
+ "description": "cancel a build",
2669
2423
  "flags": {
2424
+ "non-interactive": {
2425
+ "description": "Run the command in non-interactive mode.",
2426
+ "name": "non-interactive",
2427
+ "noCacheDefault": true,
2428
+ "allowNo": false,
2429
+ "type": "boolean"
2430
+ },
2670
2431
  "platform": {
2671
2432
  "char": "p",
2433
+ "description": "Filter builds by the platform if build ID is not provided",
2672
2434
  "name": "platform",
2673
2435
  "hasDynamicHelp": false,
2674
2436
  "multiple": false,
2675
2437
  "options": [
2676
2438
  "android",
2677
- "ios"
2439
+ "ios",
2440
+ "all"
2678
2441
  ],
2679
2442
  "type": "option"
2680
2443
  },
2681
- "target-profile": {
2682
- "aliases": [
2683
- "profile"
2684
- ],
2444
+ "profile": {
2685
2445
  "char": "e",
2686
- "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.",
2687
- "name": "target-profile",
2688
- "hasDynamicHelp": false,
2689
- "helpValue": "PROFILE_NAME",
2690
- "multiple": false,
2691
- "type": "option"
2692
- },
2693
- "source-profile": {
2694
- "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
2695
- "name": "source-profile",
2446
+ "description": "Filter builds by build profile if build ID is not provided",
2447
+ "name": "profile",
2696
2448
  "hasDynamicHelp": false,
2697
2449
  "helpValue": "PROFILE_NAME",
2698
2450
  "multiple": false,
2699
2451
  "type": "option"
2700
- },
2701
- "wait": {
2702
- "description": "Wait for build(s) to complete.",
2703
- "name": "wait",
2704
- "allowNo": true,
2705
- "type": "boolean"
2706
- },
2707
- "id": {
2708
- "description": "ID of the build to re-sign.",
2709
- "name": "id",
2710
- "hasDynamicHelp": false,
2711
- "multiple": false,
2712
- "type": "option"
2713
- },
2714
- "offset": {
2715
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2716
- "name": "offset",
2717
- "hasDynamicHelp": false,
2718
- "multiple": false,
2719
- "type": "option"
2720
- },
2721
- "limit": {
2722
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2723
- "name": "limit",
2724
- "hasDynamicHelp": false,
2725
- "multiple": false,
2726
- "type": "option"
2727
- },
2728
- "json": {
2729
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2730
- "name": "json",
2731
- "allowNo": false,
2732
- "type": "boolean"
2733
- },
2734
- "non-interactive": {
2735
- "description": "Run the command in non-interactive mode.",
2736
- "name": "non-interactive",
2737
- "noCacheDefault": true,
2738
- "allowNo": false,
2739
- "type": "boolean"
2740
2452
  }
2741
2453
  },
2742
2454
  "hasDynamicHelp": false,
2743
2455
  "hiddenAliases": [],
2744
- "id": "build:resign",
2456
+ "id": "build:cancel",
2745
2457
  "pluginAlias": "eas-cli",
2746
2458
  "pluginName": "eas-cli",
2747
2459
  "pluginType": "core",
@@ -2788,11 +2500,8 @@
2788
2500
  }
2789
2501
  },
2790
2502
  "contextDefinition": {
2503
+ "projectId": {},
2791
2504
  "loggedIn": {},
2792
- "getDynamicPublicProjectConfigAsync": {},
2793
- "getDynamicPrivateProjectConfigAsync": {},
2794
- "projectDir": {},
2795
- "analytics": {},
2796
2505
  "vcsClient": {}
2797
2506
  },
2798
2507
  "isESM": false,
@@ -2800,97 +2509,31 @@
2800
2509
  "build",
2801
2510
  "commands",
2802
2511
  "build",
2803
- "resign.js"
2512
+ "cancel.js"
2804
2513
  ]
2805
2514
  },
2806
- "build:run": {
2515
+ "build:configure": {
2807
2516
  "aliases": [],
2808
2517
  "args": {},
2809
- "description": "run simulator/emulator builds from eas-cli",
2518
+ "description": "configure the project to support EAS Build",
2810
2519
  "flags": {
2811
- "latest": {
2812
- "description": "Run the latest simulator/emulator build for specified platform",
2813
- "exclusive": [
2814
- "id",
2815
- "path",
2816
- "url"
2817
- ],
2818
- "name": "latest",
2819
- "allowNo": false,
2820
- "type": "boolean"
2821
- },
2822
- "url": {
2823
- "description": "Simulator/Emulator build archive url",
2824
- "exclusive": [
2825
- "latest",
2826
- "id",
2827
- "path"
2828
- ],
2829
- "name": "url",
2830
- "hasDynamicHelp": false,
2831
- "multiple": false,
2832
- "type": "option"
2833
- },
2834
- "path": {
2835
- "description": "Path to the simulator/emulator build archive or app",
2836
- "exclusive": [
2837
- "latest",
2838
- "id",
2839
- "url"
2840
- ],
2841
- "name": "path",
2842
- "hasDynamicHelp": false,
2843
- "multiple": false,
2844
- "type": "option"
2845
- },
2846
- "id": {
2847
- "description": "ID of the simulator/emulator build to run",
2848
- "exclusive": [
2849
- "latest, path, url"
2850
- ],
2851
- "name": "id",
2852
- "hasDynamicHelp": false,
2853
- "multiple": false,
2854
- "type": "option"
2855
- },
2856
2520
  "platform": {
2857
2521
  "char": "p",
2522
+ "description": "Platform to configure",
2858
2523
  "name": "platform",
2859
2524
  "hasDynamicHelp": false,
2860
2525
  "multiple": false,
2861
- "options": [
2862
- "android",
2863
- "ios"
2864
- ],
2865
- "type": "option"
2866
- },
2867
- "profile": {
2868
- "char": "e",
2869
- "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.",
2870
- "name": "profile",
2871
- "hasDynamicHelp": false,
2872
- "helpValue": "PROFILE_NAME",
2873
- "multiple": false,
2874
- "type": "option"
2875
- },
2876
- "offset": {
2877
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2878
- "name": "offset",
2879
- "hasDynamicHelp": false,
2880
- "multiple": false,
2881
- "type": "option"
2882
- },
2883
- "limit": {
2884
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2885
- "name": "limit",
2886
- "hasDynamicHelp": false,
2887
- "multiple": false,
2526
+ "options": [
2527
+ "android",
2528
+ "ios",
2529
+ "all"
2530
+ ],
2888
2531
  "type": "option"
2889
2532
  }
2890
2533
  },
2891
2534
  "hasDynamicHelp": false,
2892
2535
  "hiddenAliases": [],
2893
- "id": "build:run",
2536
+ "id": "build:configure",
2894
2537
  "pluginAlias": "eas-cli",
2895
2538
  "pluginName": "eas-cli",
2896
2539
  "pluginType": "core",
@@ -2938,7 +2581,7 @@
2938
2581
  },
2939
2582
  "contextDefinition": {
2940
2583
  "loggedIn": {},
2941
- "projectId": {},
2584
+ "privateProjectConfig": {},
2942
2585
  "vcsClient": {}
2943
2586
  },
2944
2587
  "isESM": false,
@@ -2946,28 +2589,51 @@
2946
2589
  "build",
2947
2590
  "commands",
2948
2591
  "build",
2949
- "run.js"
2592
+ "configure.js"
2950
2593
  ]
2951
2594
  },
2952
- "build:view": {
2595
+ "build:delete": {
2953
2596
  "aliases": [],
2954
2597
  "args": {
2955
2598
  "BUILD_ID": {
2956
2599
  "name": "BUILD_ID"
2957
2600
  }
2958
2601
  },
2959
- "description": "view a build for your project",
2602
+ "description": "delete a build",
2960
2603
  "flags": {
2961
- "json": {
2962
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
2963
- "name": "json",
2604
+ "non-interactive": {
2605
+ "description": "Run the command in non-interactive mode.",
2606
+ "name": "non-interactive",
2607
+ "noCacheDefault": true,
2964
2608
  "allowNo": false,
2965
2609
  "type": "boolean"
2610
+ },
2611
+ "platform": {
2612
+ "char": "p",
2613
+ "description": "Filter builds by the platform if build ID is not provided",
2614
+ "name": "platform",
2615
+ "hasDynamicHelp": false,
2616
+ "multiple": false,
2617
+ "options": [
2618
+ "android",
2619
+ "ios",
2620
+ "all"
2621
+ ],
2622
+ "type": "option"
2623
+ },
2624
+ "profile": {
2625
+ "char": "e",
2626
+ "description": "Filter builds by build profile if build ID is not provided",
2627
+ "name": "profile",
2628
+ "hasDynamicHelp": false,
2629
+ "helpValue": "PROFILE_NAME",
2630
+ "multiple": false,
2631
+ "type": "option"
2966
2632
  }
2967
2633
  },
2968
2634
  "hasDynamicHelp": false,
2969
2635
  "hiddenAliases": [],
2970
- "id": "build:view",
2636
+ "id": "build:delete",
2971
2637
  "pluginAlias": "eas-cli",
2972
2638
  "pluginName": "eas-cli",
2973
2639
  "pluginType": "core",
@@ -3023,37 +2689,50 @@
3023
2689
  "build",
3024
2690
  "commands",
3025
2691
  "build",
3026
- "view.js"
2692
+ "delete.js"
3027
2693
  ]
3028
2694
  },
3029
- "channel:create": {
2695
+ "build:dev": {
3030
2696
  "aliases": [],
3031
- "args": {
3032
- "name": {
3033
- "description": "Name of the channel to create",
3034
- "name": "name",
3035
- "required": false
3036
- }
3037
- },
3038
- "description": "create a channel",
2697
+ "args": {},
2698
+ "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
3039
2699
  "flags": {
3040
- "json": {
3041
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3042
- "name": "json",
2700
+ "platform": {
2701
+ "char": "p",
2702
+ "name": "platform",
2703
+ "hasDynamicHelp": false,
2704
+ "multiple": false,
2705
+ "options": [
2706
+ "ios",
2707
+ "android"
2708
+ ],
2709
+ "type": "option"
2710
+ },
2711
+ "profile": {
2712
+ "char": "e",
2713
+ "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.",
2714
+ "name": "profile",
2715
+ "hasDynamicHelp": false,
2716
+ "helpValue": "PROFILE_NAME",
2717
+ "multiple": false,
2718
+ "type": "option"
2719
+ },
2720
+ "skip-build-if-not-found": {
2721
+ "description": "Skip build if no successful build with matching fingerprint is found.",
2722
+ "name": "skip-build-if-not-found",
3043
2723
  "allowNo": false,
3044
2724
  "type": "boolean"
3045
2725
  },
3046
- "non-interactive": {
3047
- "description": "Run the command in non-interactive mode.",
3048
- "name": "non-interactive",
3049
- "noCacheDefault": true,
2726
+ "skip-bundler": {
2727
+ "description": "Install and run the development build without starting the bundler server.",
2728
+ "name": "skip-bundler",
3050
2729
  "allowNo": false,
3051
2730
  "type": "boolean"
3052
2731
  }
3053
2732
  },
3054
2733
  "hasDynamicHelp": false,
3055
2734
  "hiddenAliases": [],
3056
- "id": "channel:create",
2735
+ "id": "build:dev",
3057
2736
  "pluginAlias": "eas-cli",
3058
2737
  "pluginName": "eas-cli",
3059
2738
  "pluginType": "core",
@@ -3100,28 +2779,81 @@
3100
2779
  }
3101
2780
  },
3102
2781
  "contextDefinition": {
3103
- "projectId": {},
3104
- "loggedIn": {}
2782
+ "loggedIn": {},
2783
+ "getDynamicPublicProjectConfigAsync": {},
2784
+ "getDynamicPrivateProjectConfigAsync": {},
2785
+ "projectDir": {},
2786
+ "vcsClient": {},
2787
+ "analytics": {},
2788
+ "projectId": {}
3105
2789
  },
3106
2790
  "isESM": false,
3107
2791
  "relativePath": [
3108
2792
  "build",
3109
2793
  "commands",
3110
- "channel",
3111
- "create.js"
2794
+ "build",
2795
+ "dev.js"
3112
2796
  ]
3113
2797
  },
3114
- "channel:delete": {
2798
+ "build:download": {
3115
2799
  "aliases": [],
3116
- "args": {
3117
- "name": {
3118
- "description": "Name of the channel to delete",
3119
- "name": "name",
3120
- "required": false
3121
- }
3122
- },
3123
- "description": "Delete a channel",
2800
+ "args": {},
2801
+ "description": "download a simulator/emulator build by build ID or fingerprint hash",
3124
2802
  "flags": {
2803
+ "build-id": {
2804
+ "aliases": [
2805
+ "id"
2806
+ ],
2807
+ "description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
2808
+ "exclusive": [
2809
+ "fingerprint",
2810
+ "platform",
2811
+ "dev-client"
2812
+ ],
2813
+ "name": "build-id",
2814
+ "hasDynamicHelp": false,
2815
+ "multiple": false,
2816
+ "type": "option"
2817
+ },
2818
+ "fingerprint": {
2819
+ "description": "Fingerprint hash of the build to download",
2820
+ "exclusive": [
2821
+ "build-id"
2822
+ ],
2823
+ "name": "fingerprint",
2824
+ "hasDynamicHelp": false,
2825
+ "multiple": false,
2826
+ "type": "option"
2827
+ },
2828
+ "platform": {
2829
+ "char": "p",
2830
+ "exclusive": [
2831
+ "build-id"
2832
+ ],
2833
+ "name": "platform",
2834
+ "hasDynamicHelp": false,
2835
+ "multiple": false,
2836
+ "options": [
2837
+ "ios",
2838
+ "android"
2839
+ ],
2840
+ "type": "option"
2841
+ },
2842
+ "dev-client": {
2843
+ "description": "Filter only dev-client builds.",
2844
+ "exclusive": [
2845
+ "build-id"
2846
+ ],
2847
+ "name": "dev-client",
2848
+ "allowNo": true,
2849
+ "type": "boolean"
2850
+ },
2851
+ "all-artifacts": {
2852
+ "description": "Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in addition to the application archive. Without this flag, only the application archive is downloaded and the command errors if it is missing.",
2853
+ "name": "all-artifacts",
2854
+ "allowNo": false,
2855
+ "type": "boolean"
2856
+ },
3125
2857
  "json": {
3126
2858
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3127
2859
  "name": "json",
@@ -3138,7 +2870,7 @@
3138
2870
  },
3139
2871
  "hasDynamicHelp": false,
3140
2872
  "hiddenAliases": [],
3141
- "id": "channel:delete",
2873
+ "id": "build:download",
3142
2874
  "pluginAlias": "eas-cli",
3143
2875
  "pluginName": "eas-cli",
3144
2876
  "pluginType": "core",
@@ -3167,53 +2899,183 @@
3167
2899
  "getDynamicPublicProjectConfigAsync": {},
3168
2900
  "getDynamicPrivateProjectConfigAsync": {}
3169
2901
  },
3170
- "ProjectConfig": {
3171
- "loggedIn": {},
3172
- "privateProjectConfig": {}
2902
+ "ProjectConfig": {
2903
+ "loggedIn": {},
2904
+ "privateProjectConfig": {}
2905
+ },
2906
+ "Analytics": {
2907
+ "analytics": {}
2908
+ },
2909
+ "Vcs": {
2910
+ "vcsClient": {}
2911
+ },
2912
+ "ServerSideEnvironmentVariables": {
2913
+ "getServerSideEnvironmentVariablesAsync": {}
2914
+ },
2915
+ "ProjectId": {
2916
+ "projectId": {}
2917
+ }
2918
+ },
2919
+ "contextDefinition": {
2920
+ "loggedIn": {},
2921
+ "projectId": {}
2922
+ },
2923
+ "isESM": false,
2924
+ "relativePath": [
2925
+ "build",
2926
+ "commands",
2927
+ "build",
2928
+ "download.js"
2929
+ ]
2930
+ },
2931
+ "build": {
2932
+ "aliases": [],
2933
+ "args": {},
2934
+ "description": "start a build",
2935
+ "flags": {
2936
+ "platform": {
2937
+ "char": "p",
2938
+ "name": "platform",
2939
+ "hasDynamicHelp": false,
2940
+ "multiple": false,
2941
+ "options": [
2942
+ "android",
2943
+ "ios",
2944
+ "all"
2945
+ ],
2946
+ "type": "option"
2947
+ },
2948
+ "skip-credentials-check": {
2949
+ "hidden": true,
2950
+ "name": "skip-credentials-check",
2951
+ "allowNo": false,
2952
+ "type": "boolean"
2953
+ },
2954
+ "skip-project-configuration": {
2955
+ "hidden": true,
2956
+ "name": "skip-project-configuration",
2957
+ "allowNo": false,
2958
+ "type": "boolean"
2959
+ },
2960
+ "profile": {
2961
+ "char": "e",
2962
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2963
+ "name": "profile",
2964
+ "hasDynamicHelp": false,
2965
+ "helpValue": "PROFILE_NAME",
2966
+ "multiple": false,
2967
+ "type": "option"
2968
+ },
2969
+ "local": {
2970
+ "description": "Run build locally [experimental]",
2971
+ "name": "local",
2972
+ "allowNo": false,
2973
+ "type": "boolean"
2974
+ },
2975
+ "output": {
2976
+ "description": "Output path for local build",
2977
+ "name": "output",
2978
+ "hasDynamicHelp": false,
2979
+ "multiple": false,
2980
+ "type": "option"
2981
+ },
2982
+ "wait": {
2983
+ "description": "Wait for build(s) to complete",
2984
+ "name": "wait",
2985
+ "allowNo": true,
2986
+ "type": "boolean"
2987
+ },
2988
+ "clear-cache": {
2989
+ "description": "Clear cache before the build",
2990
+ "name": "clear-cache",
2991
+ "allowNo": false,
2992
+ "type": "boolean"
2993
+ },
2994
+ "auto-submit": {
2995
+ "aliases": [
2996
+ "submit"
2997
+ ],
2998
+ "char": "s",
2999
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
3000
+ "exclusive": [
3001
+ "auto-submit-with-profile"
3002
+ ],
3003
+ "name": "auto-submit",
3004
+ "allowNo": false,
3005
+ "type": "boolean"
3173
3006
  },
3174
- "Analytics": {
3175
- "analytics": {}
3007
+ "auto-submit-with-profile": {
3008
+ "description": "Submit on build complete using the submit profile with provided name",
3009
+ "exclusive": [
3010
+ "auto-submit"
3011
+ ],
3012
+ "name": "auto-submit-with-profile",
3013
+ "hasDynamicHelp": false,
3014
+ "helpValue": "PROFILE_NAME",
3015
+ "multiple": false,
3016
+ "type": "option"
3176
3017
  },
3177
- "Vcs": {
3178
- "vcsClient": {}
3018
+ "what-to-test": {
3019
+ "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
3020
+ "name": "what-to-test",
3021
+ "hasDynamicHelp": false,
3022
+ "multiple": false,
3023
+ "type": "option"
3179
3024
  },
3180
- "ServerSideEnvironmentVariables": {
3181
- "getServerSideEnvironmentVariablesAsync": {}
3025
+ "resource-class": {
3026
+ "deprecated": {
3027
+ "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/"
3028
+ },
3029
+ "description": "The instance type that will be used to run this build [experimental]",
3030
+ "hidden": true,
3031
+ "name": "resource-class",
3032
+ "hasDynamicHelp": false,
3033
+ "multiple": false,
3034
+ "options": [
3035
+ "default",
3036
+ "large",
3037
+ "m1-medium",
3038
+ "medium",
3039
+ "m-medium",
3040
+ "m-large"
3041
+ ],
3042
+ "type": "option"
3182
3043
  },
3183
- "ProjectId": {
3184
- "projectId": {}
3185
- }
3186
- },
3187
- "contextDefinition": {
3188
- "projectId": {},
3189
- "loggedIn": {}
3190
- },
3191
- "isESM": false,
3192
- "relativePath": [
3193
- "build",
3194
- "commands",
3195
- "channel",
3196
- "delete.js"
3197
- ]
3198
- },
3199
- "channel:edit": {
3200
- "aliases": [],
3201
- "args": {
3202
- "name": {
3203
- "description": "Name of the channel to edit",
3204
- "name": "name",
3205
- "required": false
3206
- }
3207
- },
3208
- "description": "point a channel at a new branch",
3209
- "flags": {
3210
- "branch": {
3211
- "description": "Name of the branch to point to",
3212
- "name": "branch",
3044
+ "message": {
3045
+ "char": "m",
3046
+ "description": "A short message describing the build",
3047
+ "name": "message",
3048
+ "hasDynamicHelp": false,
3049
+ "multiple": false,
3050
+ "type": "option"
3051
+ },
3052
+ "build-logger-level": {
3053
+ "description": "The level of logs to output during the build process. Defaults to \"info\".",
3054
+ "name": "build-logger-level",
3213
3055
  "hasDynamicHelp": false,
3214
3056
  "multiple": false,
3057
+ "options": [
3058
+ "trace",
3059
+ "debug",
3060
+ "info",
3061
+ "warn",
3062
+ "error",
3063
+ "fatal"
3064
+ ],
3215
3065
  "type": "option"
3216
3066
  },
3067
+ "freeze-credentials": {
3068
+ "description": "Prevent the build from updating credentials in non-interactive mode",
3069
+ "name": "freeze-credentials",
3070
+ "allowNo": false,
3071
+ "type": "boolean"
3072
+ },
3073
+ "verbose-logs": {
3074
+ "description": "Use verbose logs for the build process",
3075
+ "name": "verbose-logs",
3076
+ "allowNo": false,
3077
+ "type": "boolean"
3078
+ },
3217
3079
  "json": {
3218
3080
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3219
3081
  "name": "json",
@@ -3230,7 +3092,7 @@
3230
3092
  },
3231
3093
  "hasDynamicHelp": false,
3232
3094
  "hiddenAliases": [],
3233
- "id": "channel:edit",
3095
+ "id": "build",
3234
3096
  "pluginAlias": "eas-cli",
3235
3097
  "pluginName": "eas-cli",
3236
3098
  "pluginType": "core",
@@ -3277,86 +3139,87 @@
3277
3139
  }
3278
3140
  },
3279
3141
  "contextDefinition": {
3280
- "projectId": {},
3281
- "loggedIn": {}
3142
+ "loggedIn": {},
3143
+ "getDynamicPublicProjectConfigAsync": {},
3144
+ "getDynamicPrivateProjectConfigAsync": {},
3145
+ "projectDir": {},
3146
+ "analytics": {},
3147
+ "vcsClient": {}
3282
3148
  },
3283
3149
  "isESM": false,
3284
3150
  "relativePath": [
3285
3151
  "build",
3286
3152
  "commands",
3287
- "channel",
3288
- "edit.js"
3153
+ "build",
3154
+ "index.js"
3289
3155
  ]
3290
3156
  },
3291
- "channel:insights": {
3157
+ "build:inspect": {
3292
3158
  "aliases": [],
3293
3159
  "args": {},
3294
- "description": "display adoption, crash, and unique-user insights for a channel + runtime version",
3160
+ "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
3295
3161
  "flags": {
3296
- "channel": {
3297
- "description": "Name of the channel.",
3298
- "name": "channel",
3162
+ "platform": {
3163
+ "char": "p",
3164
+ "name": "platform",
3299
3165
  "required": true,
3300
3166
  "hasDynamicHelp": false,
3301
3167
  "multiple": false,
3168
+ "options": [
3169
+ "android",
3170
+ "ios"
3171
+ ],
3302
3172
  "type": "option"
3303
3173
  },
3304
- "runtime-version": {
3305
- "description": "Runtime version to query insights for.",
3306
- "name": "runtime-version",
3307
- "required": true,
3174
+ "profile": {
3175
+ "char": "e",
3176
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3177
+ "name": "profile",
3308
3178
  "hasDynamicHelp": false,
3179
+ "helpValue": "PROFILE_NAME",
3309
3180
  "multiple": false,
3310
3181
  "type": "option"
3311
3182
  },
3312
- "days": {
3313
- "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
3314
- "exclusive": [
3315
- "start",
3316
- "end"
3317
- ],
3318
- "name": "days",
3183
+ "stage": {
3184
+ "char": "s",
3185
+ "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",
3186
+ "name": "stage",
3187
+ "required": true,
3319
3188
  "hasDynamicHelp": false,
3320
3189
  "multiple": false,
3321
- "type": "option"
3322
- },
3323
- "start": {
3324
- "description": "Start of insights time range (ISO date).",
3325
- "exclusive": [
3326
- "days"
3190
+ "options": [
3191
+ "archive",
3192
+ "pre-build",
3193
+ "post-build"
3327
3194
  ],
3328
- "name": "start",
3329
- "hasDynamicHelp": false,
3330
- "multiple": false,
3331
3195
  "type": "option"
3332
3196
  },
3333
- "end": {
3334
- "description": "End of insights time range (ISO date).",
3335
- "exclusive": [
3336
- "days"
3337
- ],
3338
- "name": "end",
3197
+ "output": {
3198
+ "char": "o",
3199
+ "description": "Output directory.",
3200
+ "name": "output",
3201
+ "required": true,
3339
3202
  "hasDynamicHelp": false,
3203
+ "helpValue": "OUTPUT_DIRECTORY",
3340
3204
  "multiple": false,
3341
3205
  "type": "option"
3342
3206
  },
3343
- "json": {
3344
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3345
- "name": "json",
3207
+ "force": {
3208
+ "description": "Delete OUTPUT_DIRECTORY if it already exists.",
3209
+ "name": "force",
3346
3210
  "allowNo": false,
3347
3211
  "type": "boolean"
3348
3212
  },
3349
- "non-interactive": {
3350
- "description": "Run the command in non-interactive mode.",
3351
- "name": "non-interactive",
3352
- "noCacheDefault": true,
3213
+ "verbose": {
3214
+ "char": "v",
3215
+ "name": "verbose",
3353
3216
  "allowNo": false,
3354
3217
  "type": "boolean"
3355
3218
  }
3356
3219
  },
3357
3220
  "hasDynamicHelp": false,
3358
3221
  "hiddenAliases": [],
3359
- "id": "channel:insights",
3222
+ "id": "build:inspect",
3360
3223
  "pluginAlias": "eas-cli",
3361
3224
  "pluginName": "eas-cli",
3362
3225
  "pluginType": "core",
@@ -3403,53 +3266,71 @@
3403
3266
  }
3404
3267
  },
3405
3268
  "contextDefinition": {
3406
- "projectId": {},
3407
- "loggedIn": {}
3269
+ "loggedIn": {},
3270
+ "getDynamicPublicProjectConfigAsync": {},
3271
+ "getDynamicPrivateProjectConfigAsync": {},
3272
+ "projectDir": {},
3273
+ "analytics": {},
3274
+ "vcsClient": {}
3408
3275
  },
3409
3276
  "isESM": false,
3410
3277
  "relativePath": [
3411
3278
  "build",
3412
3279
  "commands",
3413
- "channel",
3414
- "insights.js"
3280
+ "build",
3281
+ "inspect.js"
3415
3282
  ]
3416
3283
  },
3417
- "channel:list": {
3284
+ "build:internal": {
3418
3285
  "aliases": [],
3419
3286
  "args": {},
3420
- "description": "list all channels",
3421
3287
  "flags": {
3422
- "offset": {
3423
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3424
- "name": "offset",
3288
+ "platform": {
3289
+ "char": "p",
3290
+ "name": "platform",
3291
+ "required": true,
3425
3292
  "hasDynamicHelp": false,
3426
3293
  "multiple": false,
3294
+ "options": [
3295
+ "android",
3296
+ "ios"
3297
+ ],
3427
3298
  "type": "option"
3428
3299
  },
3429
- "limit": {
3430
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
3431
- "name": "limit",
3300
+ "profile": {
3301
+ "char": "e",
3302
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3303
+ "name": "profile",
3432
3304
  "hasDynamicHelp": false,
3305
+ "helpValue": "PROFILE_NAME",
3433
3306
  "multiple": false,
3434
3307
  "type": "option"
3435
3308
  },
3436
- "json": {
3437
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3438
- "name": "json",
3309
+ "auto-submit": {
3310
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
3311
+ "exclusive": [
3312
+ "auto-submit-with-profile"
3313
+ ],
3314
+ "name": "auto-submit",
3439
3315
  "allowNo": false,
3440
3316
  "type": "boolean"
3441
3317
  },
3442
- "non-interactive": {
3443
- "description": "Run the command in non-interactive mode.",
3444
- "name": "non-interactive",
3445
- "noCacheDefault": true,
3446
- "allowNo": false,
3447
- "type": "boolean"
3318
+ "auto-submit-with-profile": {
3319
+ "description": "Submit on build complete using the submit profile with provided name",
3320
+ "exclusive": [
3321
+ "auto-submit"
3322
+ ],
3323
+ "name": "auto-submit-with-profile",
3324
+ "hasDynamicHelp": false,
3325
+ "helpValue": "PROFILE_NAME",
3326
+ "multiple": false,
3327
+ "type": "option"
3448
3328
  }
3449
3329
  },
3450
3330
  "hasDynamicHelp": false,
3331
+ "hidden": true,
3451
3332
  "hiddenAliases": [],
3452
- "id": "channel:list",
3333
+ "id": "build:internal",
3453
3334
  "pluginAlias": "eas-cli",
3454
3335
  "pluginName": "eas-cli",
3455
3336
  "pluginType": "core",
@@ -3496,31 +3377,161 @@
3496
3377
  }
3497
3378
  },
3498
3379
  "contextDefinition": {
3499
- "projectId": {},
3500
- "loggedIn": {}
3380
+ "loggedIn": {},
3381
+ "getDynamicPublicProjectConfigAsync": {},
3382
+ "getDynamicPrivateProjectConfigAsync": {},
3383
+ "projectDir": {},
3384
+ "analytics": {},
3385
+ "vcsClient": {}
3501
3386
  },
3502
3387
  "isESM": false,
3503
3388
  "relativePath": [
3504
3389
  "build",
3505
3390
  "commands",
3506
- "channel",
3507
- "list.js"
3391
+ "build",
3392
+ "internal.js"
3508
3393
  ]
3509
3394
  },
3510
- "channel:pause": {
3395
+ "build:list": {
3511
3396
  "aliases": [],
3512
- "args": {
3513
- "name": {
3514
- "description": "Name of the channel to edit",
3515
- "name": "name",
3516
- "required": false
3517
- }
3518
- },
3519
- "description": "pause a channel to stop it from sending updates",
3397
+ "args": {},
3398
+ "description": "list all builds for your project",
3520
3399
  "flags": {
3521
- "branch": {
3522
- "description": "Name of the branch to point to",
3523
- "name": "branch",
3400
+ "platform": {
3401
+ "char": "p",
3402
+ "name": "platform",
3403
+ "hasDynamicHelp": false,
3404
+ "multiple": false,
3405
+ "options": [
3406
+ "android",
3407
+ "ios",
3408
+ "all"
3409
+ ],
3410
+ "type": "option"
3411
+ },
3412
+ "status": {
3413
+ "description": "Filter only builds with the specified status",
3414
+ "name": "status",
3415
+ "hasDynamicHelp": false,
3416
+ "multiple": false,
3417
+ "options": [
3418
+ "new",
3419
+ "in-queue",
3420
+ "in-progress",
3421
+ "pending-cancel",
3422
+ "errored",
3423
+ "finished",
3424
+ "canceled"
3425
+ ],
3426
+ "type": "option"
3427
+ },
3428
+ "distribution": {
3429
+ "description": "Filter only builds with the specified distribution type",
3430
+ "name": "distribution",
3431
+ "hasDynamicHelp": false,
3432
+ "multiple": false,
3433
+ "options": [
3434
+ "store",
3435
+ "internal",
3436
+ "simulator"
3437
+ ],
3438
+ "type": "option"
3439
+ },
3440
+ "channel": {
3441
+ "name": "channel",
3442
+ "hasDynamicHelp": false,
3443
+ "multiple": false,
3444
+ "type": "option"
3445
+ },
3446
+ "app-version": {
3447
+ "aliases": [
3448
+ "appVersion"
3449
+ ],
3450
+ "description": "Filter only builds created with the specified main app version",
3451
+ "name": "app-version",
3452
+ "hasDynamicHelp": false,
3453
+ "multiple": false,
3454
+ "type": "option"
3455
+ },
3456
+ "app-build-version": {
3457
+ "aliases": [
3458
+ "appBuildVersion"
3459
+ ],
3460
+ "description": "Filter only builds created with the specified app build version",
3461
+ "name": "app-build-version",
3462
+ "hasDynamicHelp": false,
3463
+ "multiple": false,
3464
+ "type": "option"
3465
+ },
3466
+ "sdk-version": {
3467
+ "aliases": [
3468
+ "sdkVersion"
3469
+ ],
3470
+ "description": "Filter only builds created with the specified Expo SDK version",
3471
+ "name": "sdk-version",
3472
+ "hasDynamicHelp": false,
3473
+ "multiple": false,
3474
+ "type": "option"
3475
+ },
3476
+ "runtime-version": {
3477
+ "aliases": [
3478
+ "runtimeVersion"
3479
+ ],
3480
+ "description": "Filter only builds created with the specified runtime version",
3481
+ "name": "runtime-version",
3482
+ "hasDynamicHelp": false,
3483
+ "multiple": false,
3484
+ "type": "option"
3485
+ },
3486
+ "app-identifier": {
3487
+ "aliases": [
3488
+ "appIdentifier"
3489
+ ],
3490
+ "description": "Filter only builds created with the specified app identifier",
3491
+ "name": "app-identifier",
3492
+ "hasDynamicHelp": false,
3493
+ "multiple": false,
3494
+ "type": "option"
3495
+ },
3496
+ "build-profile": {
3497
+ "aliases": [
3498
+ "profile",
3499
+ "buildProfile"
3500
+ ],
3501
+ "char": "e",
3502
+ "description": "Filter only builds created with the specified build profile",
3503
+ "name": "build-profile",
3504
+ "hasDynamicHelp": false,
3505
+ "multiple": false,
3506
+ "type": "option"
3507
+ },
3508
+ "git-commit-hash": {
3509
+ "aliases": [
3510
+ "gitCommitHash"
3511
+ ],
3512
+ "description": "Filter only builds created with the specified git commit hash",
3513
+ "name": "git-commit-hash",
3514
+ "hasDynamicHelp": false,
3515
+ "multiple": false,
3516
+ "type": "option"
3517
+ },
3518
+ "fingerprint-hash": {
3519
+ "description": "Filter only builds with the specified fingerprint hash",
3520
+ "name": "fingerprint-hash",
3521
+ "hasDynamicHelp": false,
3522
+ "multiple": false,
3523
+ "type": "option"
3524
+ },
3525
+ "offset": {
3526
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3527
+ "name": "offset",
3528
+ "hasDynamicHelp": false,
3529
+ "multiple": false,
3530
+ "type": "option"
3531
+ },
3532
+ "limit": {
3533
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
3534
+ "name": "limit",
3524
3535
  "hasDynamicHelp": false,
3525
3536
  "multiple": false,
3526
3537
  "type": "option"
@@ -3537,11 +3548,17 @@
3537
3548
  "noCacheDefault": true,
3538
3549
  "allowNo": false,
3539
3550
  "type": "boolean"
3551
+ },
3552
+ "simulator": {
3553
+ "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
3554
+ "name": "simulator",
3555
+ "allowNo": false,
3556
+ "type": "boolean"
3540
3557
  }
3541
3558
  },
3542
3559
  "hasDynamicHelp": false,
3543
3560
  "hiddenAliases": [],
3544
- "id": "channel:pause",
3561
+ "id": "build:list",
3545
3562
  "pluginAlias": "eas-cli",
3546
3563
  "pluginName": "eas-cli",
3547
3564
  "pluginType": "core",
@@ -3589,30 +3606,76 @@
3589
3606
  },
3590
3607
  "contextDefinition": {
3591
3608
  "projectId": {},
3592
- "loggedIn": {}
3609
+ "loggedIn": {},
3610
+ "vcsClient": {}
3593
3611
  },
3594
3612
  "isESM": false,
3595
3613
  "relativePath": [
3596
3614
  "build",
3597
3615
  "commands",
3598
- "channel",
3599
- "pause.js"
3616
+ "build",
3617
+ "list.js"
3600
3618
  ]
3601
3619
  },
3602
- "channel:resume": {
3620
+ "build:resign": {
3603
3621
  "aliases": [],
3604
- "args": {
3605
- "name": {
3606
- "description": "Name of the channel to edit",
3607
- "name": "name",
3608
- "required": false
3609
- }
3610
- },
3611
- "description": "resume a channel to start sending updates",
3622
+ "args": {},
3623
+ "description": "re-sign a build archive",
3612
3624
  "flags": {
3613
- "branch": {
3614
- "description": "Name of the branch to point to",
3615
- "name": "branch",
3625
+ "platform": {
3626
+ "char": "p",
3627
+ "name": "platform",
3628
+ "hasDynamicHelp": false,
3629
+ "multiple": false,
3630
+ "options": [
3631
+ "android",
3632
+ "ios"
3633
+ ],
3634
+ "type": "option"
3635
+ },
3636
+ "target-profile": {
3637
+ "aliases": [
3638
+ "profile"
3639
+ ],
3640
+ "char": "e",
3641
+ "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.",
3642
+ "name": "target-profile",
3643
+ "hasDynamicHelp": false,
3644
+ "helpValue": "PROFILE_NAME",
3645
+ "multiple": false,
3646
+ "type": "option"
3647
+ },
3648
+ "source-profile": {
3649
+ "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
3650
+ "name": "source-profile",
3651
+ "hasDynamicHelp": false,
3652
+ "helpValue": "PROFILE_NAME",
3653
+ "multiple": false,
3654
+ "type": "option"
3655
+ },
3656
+ "wait": {
3657
+ "description": "Wait for build(s) to complete.",
3658
+ "name": "wait",
3659
+ "allowNo": true,
3660
+ "type": "boolean"
3661
+ },
3662
+ "id": {
3663
+ "description": "ID of the build to re-sign.",
3664
+ "name": "id",
3665
+ "hasDynamicHelp": false,
3666
+ "multiple": false,
3667
+ "type": "option"
3668
+ },
3669
+ "offset": {
3670
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3671
+ "name": "offset",
3672
+ "hasDynamicHelp": false,
3673
+ "multiple": false,
3674
+ "type": "option"
3675
+ },
3676
+ "limit": {
3677
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3678
+ "name": "limit",
3616
3679
  "hasDynamicHelp": false,
3617
3680
  "multiple": false,
3618
3681
  "type": "option"
@@ -3633,7 +3696,7 @@
3633
3696
  },
3634
3697
  "hasDynamicHelp": false,
3635
3698
  "hiddenAliases": [],
3636
- "id": "channel:resume",
3699
+ "id": "build:resign",
3637
3700
  "pluginAlias": "eas-cli",
3638
3701
  "pluginName": "eas-cli",
3639
3702
  "pluginType": "core",
@@ -3680,121 +3743,109 @@
3680
3743
  }
3681
3744
  },
3682
3745
  "contextDefinition": {
3683
- "projectId": {},
3684
- "loggedIn": {}
3746
+ "loggedIn": {},
3747
+ "getDynamicPublicProjectConfigAsync": {},
3748
+ "getDynamicPrivateProjectConfigAsync": {},
3749
+ "projectDir": {},
3750
+ "analytics": {},
3751
+ "vcsClient": {}
3685
3752
  },
3686
3753
  "isESM": false,
3687
3754
  "relativePath": [
3688
3755
  "build",
3689
3756
  "commands",
3690
- "channel",
3691
- "resume.js"
3757
+ "build",
3758
+ "resign.js"
3692
3759
  ]
3693
3760
  },
3694
- "channel:rollout": {
3761
+ "build:run": {
3695
3762
  "aliases": [],
3696
- "args": {
3697
- "channel": {
3698
- "description": "channel on which the rollout should be done",
3699
- "name": "channel"
3700
- }
3701
- },
3702
- "description": "Roll a new branch out on a channel incrementally.",
3763
+ "args": {},
3764
+ "description": "run simulator/emulator builds from eas-cli",
3703
3765
  "flags": {
3704
- "action": {
3705
- "description": "Rollout action to perform",
3706
- "name": "action",
3707
- "relationships": [
3708
- {
3709
- "type": "all",
3710
- "flags": [
3711
- {
3712
- "name": "percent"
3713
- },
3714
- {
3715
- "name": "outcome"
3716
- },
3717
- {
3718
- "name": "branch"
3719
- },
3720
- {
3721
- "name": "runtime-version"
3722
- }
3723
- ]
3724
- }
3766
+ "latest": {
3767
+ "description": "Run the latest simulator/emulator build for specified platform",
3768
+ "exclusive": [
3769
+ "id",
3770
+ "path",
3771
+ "url"
3725
3772
  ],
3726
- "required": false,
3773
+ "name": "latest",
3774
+ "allowNo": false,
3775
+ "type": "boolean"
3776
+ },
3777
+ "url": {
3778
+ "description": "Simulator/Emulator build archive url",
3779
+ "exclusive": [
3780
+ "latest",
3781
+ "id",
3782
+ "path"
3783
+ ],
3784
+ "name": "url",
3727
3785
  "hasDynamicHelp": false,
3728
3786
  "multiple": false,
3729
- "options": [
3730
- "create",
3731
- "edit",
3732
- "end",
3733
- "view"
3787
+ "type": "option"
3788
+ },
3789
+ "path": {
3790
+ "description": "Path to the simulator/emulator build archive or app",
3791
+ "exclusive": [
3792
+ "latest",
3793
+ "id",
3794
+ "url"
3734
3795
  ],
3796
+ "name": "path",
3797
+ "hasDynamicHelp": false,
3798
+ "multiple": false,
3735
3799
  "type": "option"
3736
3800
  },
3737
- "percent": {
3738
- "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
3739
- "name": "percent",
3740
- "required": false,
3801
+ "id": {
3802
+ "description": "ID of the simulator/emulator build to run",
3803
+ "exclusive": [
3804
+ "latest, path, url"
3805
+ ],
3806
+ "name": "id",
3741
3807
  "hasDynamicHelp": false,
3742
3808
  "multiple": false,
3743
3809
  "type": "option"
3744
3810
  },
3745
- "outcome": {
3746
- "description": "End outcome of rollout. Use with --action=end",
3747
- "name": "outcome",
3748
- "required": false,
3811
+ "platform": {
3812
+ "char": "p",
3813
+ "name": "platform",
3749
3814
  "hasDynamicHelp": false,
3750
3815
  "multiple": false,
3751
3816
  "options": [
3752
- "republish-and-revert",
3753
- "revert"
3817
+ "android",
3818
+ "ios"
3754
3819
  ],
3755
3820
  "type": "option"
3756
3821
  },
3757
- "branch": {
3758
- "description": "Branch to roll out. Use with --action=create",
3759
- "name": "branch",
3760
- "required": false,
3822
+ "profile": {
3823
+ "char": "e",
3824
+ "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.",
3825
+ "name": "profile",
3761
3826
  "hasDynamicHelp": false,
3827
+ "helpValue": "PROFILE_NAME",
3762
3828
  "multiple": false,
3763
3829
  "type": "option"
3764
3830
  },
3765
- "runtime-version": {
3766
- "description": "Runtime version to target. Use with --action=create",
3767
- "name": "runtime-version",
3768
- "required": false,
3831
+ "offset": {
3832
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3833
+ "name": "offset",
3769
3834
  "hasDynamicHelp": false,
3770
3835
  "multiple": false,
3771
3836
  "type": "option"
3772
3837
  },
3773
- "private-key-path": {
3774
- "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/",
3775
- "name": "private-key-path",
3776
- "required": false,
3838
+ "limit": {
3839
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3840
+ "name": "limit",
3777
3841
  "hasDynamicHelp": false,
3778
3842
  "multiple": false,
3779
3843
  "type": "option"
3780
- },
3781
- "json": {
3782
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3783
- "name": "json",
3784
- "allowNo": false,
3785
- "type": "boolean"
3786
- },
3787
- "non-interactive": {
3788
- "description": "Run the command in non-interactive mode.",
3789
- "name": "non-interactive",
3790
- "noCacheDefault": true,
3791
- "allowNo": false,
3792
- "type": "boolean"
3793
3844
  }
3794
3845
  },
3795
3846
  "hasDynamicHelp": false,
3796
3847
  "hiddenAliases": [],
3797
- "id": "channel:rollout",
3848
+ "id": "build:run",
3798
3849
  "pluginAlias": "eas-cli",
3799
3850
  "pluginName": "eas-cli",
3800
3851
  "pluginType": "core",
@@ -3842,59 +3893,36 @@
3842
3893
  },
3843
3894
  "contextDefinition": {
3844
3895
  "loggedIn": {},
3845
- "privateProjectConfig": {},
3896
+ "projectId": {},
3846
3897
  "vcsClient": {}
3847
3898
  },
3848
3899
  "isESM": false,
3849
3900
  "relativePath": [
3850
3901
  "build",
3851
3902
  "commands",
3852
- "channel",
3853
- "rollout.js"
3903
+ "build",
3904
+ "run.js"
3854
3905
  ]
3855
3906
  },
3856
- "channel:view": {
3907
+ "build:view": {
3857
3908
  "aliases": [],
3858
3909
  "args": {
3859
- "name": {
3860
- "description": "Name of the channel to view",
3861
- "name": "name",
3862
- "required": false
3910
+ "BUILD_ID": {
3911
+ "name": "BUILD_ID"
3863
3912
  }
3864
3913
  },
3865
- "description": "view a channel",
3914
+ "description": "view a build for your project",
3866
3915
  "flags": {
3867
3916
  "json": {
3868
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3917
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
3869
3918
  "name": "json",
3870
3919
  "allowNo": false,
3871
3920
  "type": "boolean"
3872
- },
3873
- "non-interactive": {
3874
- "description": "Run the command in non-interactive mode.",
3875
- "name": "non-interactive",
3876
- "noCacheDefault": true,
3877
- "allowNo": false,
3878
- "type": "boolean"
3879
- },
3880
- "offset": {
3881
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3882
- "name": "offset",
3883
- "hasDynamicHelp": false,
3884
- "multiple": false,
3885
- "type": "option"
3886
- },
3887
- "limit": {
3888
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3889
- "name": "limit",
3890
- "hasDynamicHelp": false,
3891
- "multiple": false,
3892
- "type": "option"
3893
3921
  }
3894
3922
  },
3895
3923
  "hasDynamicHelp": false,
3896
3924
  "hiddenAliases": [],
3897
- "id": "channel:view",
3925
+ "id": "build:view",
3898
3926
  "pluginAlias": "eas-cli",
3899
3927
  "pluginName": "eas-cli",
3900
3928
  "pluginType": "core",
@@ -3942,13 +3970,14 @@
3942
3970
  },
3943
3971
  "contextDefinition": {
3944
3972
  "projectId": {},
3945
- "loggedIn": {}
3973
+ "loggedIn": {},
3974
+ "vcsClient": {}
3946
3975
  },
3947
3976
  "isESM": false,
3948
3977
  "relativePath": [
3949
3978
  "build",
3950
3979
  "commands",
3951
- "channel",
3980
+ "build",
3952
3981
  "view.js"
3953
3982
  ]
3954
3983
  },
@@ -7386,7 +7415,89 @@
7386
7415
  "hasDynamicHelp": false,
7387
7416
  "hidden": true,
7388
7417
  "hiddenAliases": [],
7389
- "id": "simulator:start",
7418
+ "id": "simulator:start",
7419
+ "pluginAlias": "eas-cli",
7420
+ "pluginName": "eas-cli",
7421
+ "pluginType": "core",
7422
+ "strict": true,
7423
+ "enableJsonFlag": false,
7424
+ "ContextOptions": {
7425
+ "LoggedIn": {
7426
+ "loggedIn": {}
7427
+ },
7428
+ "MaybeLoggedIn": {
7429
+ "maybeLoggedIn": {}
7430
+ },
7431
+ "DynamicLoggedIn": {
7432
+ "getDynamicLoggedInAsync": {}
7433
+ },
7434
+ "SessionManagment": {
7435
+ "sessionManager": {}
7436
+ },
7437
+ "OptionalProjectConfig": {
7438
+ "optionalPrivateProjectConfig": {}
7439
+ },
7440
+ "ProjectDir": {
7441
+ "projectDir": {}
7442
+ },
7443
+ "DynamicProjectConfig": {
7444
+ "getDynamicPublicProjectConfigAsync": {},
7445
+ "getDynamicPrivateProjectConfigAsync": {}
7446
+ },
7447
+ "ProjectConfig": {
7448
+ "loggedIn": {},
7449
+ "privateProjectConfig": {}
7450
+ },
7451
+ "Analytics": {
7452
+ "analytics": {}
7453
+ },
7454
+ "Vcs": {
7455
+ "vcsClient": {}
7456
+ },
7457
+ "ServerSideEnvironmentVariables": {
7458
+ "getServerSideEnvironmentVariablesAsync": {}
7459
+ },
7460
+ "ProjectId": {
7461
+ "projectId": {}
7462
+ }
7463
+ },
7464
+ "contextDefinition": {
7465
+ "projectId": {},
7466
+ "loggedIn": {}
7467
+ },
7468
+ "isESM": false,
7469
+ "relativePath": [
7470
+ "build",
7471
+ "commands",
7472
+ "simulator",
7473
+ "start.js"
7474
+ ]
7475
+ },
7476
+ "simulator:stop": {
7477
+ "aliases": [],
7478
+ "args": {},
7479
+ "description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
7480
+ "flags": {
7481
+ "id": {
7482
+ "description": "Device run session ID",
7483
+ "name": "id",
7484
+ "required": true,
7485
+ "hasDynamicHelp": false,
7486
+ "multiple": false,
7487
+ "type": "option"
7488
+ },
7489
+ "non-interactive": {
7490
+ "description": "Run the command in non-interactive mode.",
7491
+ "name": "non-interactive",
7492
+ "noCacheDefault": true,
7493
+ "allowNo": false,
7494
+ "type": "boolean"
7495
+ }
7496
+ },
7497
+ "hasDynamicHelp": false,
7498
+ "hidden": true,
7499
+ "hiddenAliases": [],
7500
+ "id": "simulator:stop",
7390
7501
  "pluginAlias": "eas-cli",
7391
7502
  "pluginName": "eas-cli",
7392
7503
  "pluginType": "core",
@@ -7433,7 +7544,6 @@
7433
7544
  }
7434
7545
  },
7435
7546
  "contextDefinition": {
7436
- "projectId": {},
7437
7547
  "loggedIn": {}
7438
7548
  },
7439
7549
  "isESM": false,
@@ -7441,7 +7551,7 @@
7441
7551
  "build",
7442
7552
  "commands",
7443
7553
  "simulator",
7444
- "start.js"
7554
+ "stop.js"
7445
7555
  ]
7446
7556
  },
7447
7557
  "submit:internal": {
@@ -10607,7 +10717,277 @@
10607
10717
  "alias",
10608
10718
  "index.js"
10609
10719
  ]
10720
+ },
10721
+ "integrations:asc:connect": {
10722
+ "aliases": [],
10723
+ "args": {},
10724
+ "description": "connect a project to an App Store Connect app",
10725
+ "flags": {
10726
+ "api-key-id": {
10727
+ "description": "Apple App Store Connect API Key ID",
10728
+ "name": "api-key-id",
10729
+ "hasDynamicHelp": false,
10730
+ "multiple": false,
10731
+ "type": "option"
10732
+ },
10733
+ "asc-app-id": {
10734
+ "description": "App Store Connect app identifier",
10735
+ "name": "asc-app-id",
10736
+ "hasDynamicHelp": false,
10737
+ "multiple": false,
10738
+ "type": "option"
10739
+ },
10740
+ "bundle-id": {
10741
+ "description": "Filter discovered apps by bundle identifier",
10742
+ "name": "bundle-id",
10743
+ "hasDynamicHelp": false,
10744
+ "multiple": false,
10745
+ "type": "option"
10746
+ },
10747
+ "json": {
10748
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10749
+ "name": "json",
10750
+ "allowNo": false,
10751
+ "type": "boolean"
10752
+ },
10753
+ "non-interactive": {
10754
+ "description": "Run the command in non-interactive mode.",
10755
+ "name": "non-interactive",
10756
+ "noCacheDefault": true,
10757
+ "allowNo": false,
10758
+ "type": "boolean"
10759
+ }
10760
+ },
10761
+ "hasDynamicHelp": false,
10762
+ "hiddenAliases": [],
10763
+ "id": "integrations:asc:connect",
10764
+ "pluginAlias": "eas-cli",
10765
+ "pluginName": "eas-cli",
10766
+ "pluginType": "core",
10767
+ "strict": true,
10768
+ "enableJsonFlag": false,
10769
+ "ContextOptions": {
10770
+ "LoggedIn": {
10771
+ "loggedIn": {}
10772
+ },
10773
+ "MaybeLoggedIn": {
10774
+ "maybeLoggedIn": {}
10775
+ },
10776
+ "DynamicLoggedIn": {
10777
+ "getDynamicLoggedInAsync": {}
10778
+ },
10779
+ "SessionManagment": {
10780
+ "sessionManager": {}
10781
+ },
10782
+ "OptionalProjectConfig": {
10783
+ "optionalPrivateProjectConfig": {}
10784
+ },
10785
+ "ProjectDir": {
10786
+ "projectDir": {}
10787
+ },
10788
+ "DynamicProjectConfig": {
10789
+ "getDynamicPublicProjectConfigAsync": {},
10790
+ "getDynamicPrivateProjectConfigAsync": {}
10791
+ },
10792
+ "ProjectConfig": {
10793
+ "loggedIn": {},
10794
+ "privateProjectConfig": {}
10795
+ },
10796
+ "Analytics": {
10797
+ "analytics": {}
10798
+ },
10799
+ "Vcs": {
10800
+ "vcsClient": {}
10801
+ },
10802
+ "ServerSideEnvironmentVariables": {
10803
+ "getServerSideEnvironmentVariablesAsync": {}
10804
+ },
10805
+ "ProjectId": {
10806
+ "projectId": {}
10807
+ }
10808
+ },
10809
+ "contextDefinition": {
10810
+ "projectId": {},
10811
+ "projectDir": {},
10812
+ "loggedIn": {},
10813
+ "analytics": {},
10814
+ "vcsClient": {}
10815
+ },
10816
+ "isESM": false,
10817
+ "relativePath": [
10818
+ "build",
10819
+ "commands",
10820
+ "integrations",
10821
+ "asc",
10822
+ "connect.js"
10823
+ ]
10824
+ },
10825
+ "integrations:asc:disconnect": {
10826
+ "aliases": [],
10827
+ "args": {},
10828
+ "description": "disconnect the current project from its App Store Connect app",
10829
+ "flags": {
10830
+ "yes": {
10831
+ "description": "Skip confirmation prompt",
10832
+ "name": "yes",
10833
+ "allowNo": false,
10834
+ "type": "boolean"
10835
+ },
10836
+ "json": {
10837
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10838
+ "name": "json",
10839
+ "allowNo": false,
10840
+ "type": "boolean"
10841
+ },
10842
+ "non-interactive": {
10843
+ "description": "Run the command in non-interactive mode.",
10844
+ "name": "non-interactive",
10845
+ "noCacheDefault": true,
10846
+ "allowNo": false,
10847
+ "type": "boolean"
10848
+ }
10849
+ },
10850
+ "hasDynamicHelp": false,
10851
+ "hiddenAliases": [],
10852
+ "id": "integrations:asc:disconnect",
10853
+ "pluginAlias": "eas-cli",
10854
+ "pluginName": "eas-cli",
10855
+ "pluginType": "core",
10856
+ "strict": true,
10857
+ "enableJsonFlag": false,
10858
+ "ContextOptions": {
10859
+ "LoggedIn": {
10860
+ "loggedIn": {}
10861
+ },
10862
+ "MaybeLoggedIn": {
10863
+ "maybeLoggedIn": {}
10864
+ },
10865
+ "DynamicLoggedIn": {
10866
+ "getDynamicLoggedInAsync": {}
10867
+ },
10868
+ "SessionManagment": {
10869
+ "sessionManager": {}
10870
+ },
10871
+ "OptionalProjectConfig": {
10872
+ "optionalPrivateProjectConfig": {}
10873
+ },
10874
+ "ProjectDir": {
10875
+ "projectDir": {}
10876
+ },
10877
+ "DynamicProjectConfig": {
10878
+ "getDynamicPublicProjectConfigAsync": {},
10879
+ "getDynamicPrivateProjectConfigAsync": {}
10880
+ },
10881
+ "ProjectConfig": {
10882
+ "loggedIn": {},
10883
+ "privateProjectConfig": {}
10884
+ },
10885
+ "Analytics": {
10886
+ "analytics": {}
10887
+ },
10888
+ "Vcs": {
10889
+ "vcsClient": {}
10890
+ },
10891
+ "ServerSideEnvironmentVariables": {
10892
+ "getServerSideEnvironmentVariablesAsync": {}
10893
+ },
10894
+ "ProjectId": {
10895
+ "projectId": {}
10896
+ }
10897
+ },
10898
+ "contextDefinition": {
10899
+ "projectId": {},
10900
+ "loggedIn": {}
10901
+ },
10902
+ "isESM": false,
10903
+ "relativePath": [
10904
+ "build",
10905
+ "commands",
10906
+ "integrations",
10907
+ "asc",
10908
+ "disconnect.js"
10909
+ ]
10910
+ },
10911
+ "integrations:asc:status": {
10912
+ "aliases": [],
10913
+ "args": {},
10914
+ "description": "show the App Store Connect app link status for the current project",
10915
+ "flags": {
10916
+ "json": {
10917
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10918
+ "name": "json",
10919
+ "allowNo": false,
10920
+ "type": "boolean"
10921
+ },
10922
+ "non-interactive": {
10923
+ "description": "Run the command in non-interactive mode.",
10924
+ "name": "non-interactive",
10925
+ "noCacheDefault": true,
10926
+ "allowNo": false,
10927
+ "type": "boolean"
10928
+ }
10929
+ },
10930
+ "hasDynamicHelp": false,
10931
+ "hiddenAliases": [],
10932
+ "id": "integrations:asc:status",
10933
+ "pluginAlias": "eas-cli",
10934
+ "pluginName": "eas-cli",
10935
+ "pluginType": "core",
10936
+ "strict": true,
10937
+ "enableJsonFlag": false,
10938
+ "ContextOptions": {
10939
+ "LoggedIn": {
10940
+ "loggedIn": {}
10941
+ },
10942
+ "MaybeLoggedIn": {
10943
+ "maybeLoggedIn": {}
10944
+ },
10945
+ "DynamicLoggedIn": {
10946
+ "getDynamicLoggedInAsync": {}
10947
+ },
10948
+ "SessionManagment": {
10949
+ "sessionManager": {}
10950
+ },
10951
+ "OptionalProjectConfig": {
10952
+ "optionalPrivateProjectConfig": {}
10953
+ },
10954
+ "ProjectDir": {
10955
+ "projectDir": {}
10956
+ },
10957
+ "DynamicProjectConfig": {
10958
+ "getDynamicPublicProjectConfigAsync": {},
10959
+ "getDynamicPrivateProjectConfigAsync": {}
10960
+ },
10961
+ "ProjectConfig": {
10962
+ "loggedIn": {},
10963
+ "privateProjectConfig": {}
10964
+ },
10965
+ "Analytics": {
10966
+ "analytics": {}
10967
+ },
10968
+ "Vcs": {
10969
+ "vcsClient": {}
10970
+ },
10971
+ "ServerSideEnvironmentVariables": {
10972
+ "getServerSideEnvironmentVariablesAsync": {}
10973
+ },
10974
+ "ProjectId": {
10975
+ "projectId": {}
10976
+ }
10977
+ },
10978
+ "contextDefinition": {
10979
+ "projectId": {},
10980
+ "loggedIn": {}
10981
+ },
10982
+ "isESM": false,
10983
+ "relativePath": [
10984
+ "build",
10985
+ "commands",
10986
+ "integrations",
10987
+ "asc",
10988
+ "status.js"
10989
+ ]
10610
10990
  }
10611
10991
  },
10612
- "version": "18.8.1"
10992
+ "version": "18.9.1"
10613
10993
  }