eas-cli 20.2.0 → 20.4.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 (47) hide show
  1. package/README.md +225 -110
  2. package/build/commandUtils/new/templates/AGENTS.md +25 -146
  3. package/build/commandUtils/new/templates/CLAUDE.md +1 -9
  4. package/build/commandUtils/posthog.d.ts +4 -0
  5. package/build/commandUtils/posthog.js +23 -0
  6. package/build/commands/account/audit.d.ts +17 -0
  7. package/build/commands/account/audit.js +112 -0
  8. package/build/commands/integrations/posthog/connect.d.ts +27 -0
  9. package/build/commands/integrations/posthog/connect.js +432 -0
  10. package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
  11. package/build/commands/integrations/posthog/dashboard.js +66 -0
  12. package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
  13. package/build/commands/integrations/posthog/disconnect.js +80 -0
  14. package/build/commands/observe/session.d.ts +18 -0
  15. package/build/commands/observe/session.js +65 -0
  16. package/build/commands/update/view.d.ts +7 -0
  17. package/build/commands/update/view.js +30 -3
  18. package/build/graphql/generated.d.ts +468 -2
  19. package/build/graphql/generated.js +28 -4
  20. package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
  21. package/build/graphql/mutations/PostHogMutation.js +55 -0
  22. package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
  23. package/build/graphql/queries/AuditLogQuery.js +57 -0
  24. package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
  25. package/build/graphql/queries/PostHogQuery.d.ts +6 -0
  26. package/build/graphql/queries/PostHogQuery.js +49 -0
  27. package/build/graphql/types/AuditLog.d.ts +1 -0
  28. package/build/graphql/types/AuditLog.js +18 -0
  29. package/build/graphql/types/Observe.js +1 -0
  30. package/build/graphql/types/PostHogConnection.d.ts +7 -0
  31. package/build/graphql/types/PostHogConnection.js +30 -0
  32. package/build/observe/fetchCustomEvents.d.ts +2 -2
  33. package/build/observe/fetchCustomEvents.js +2 -2
  34. package/build/observe/fetchEvents.d.ts +4 -3
  35. package/build/observe/fetchEvents.js +4 -3
  36. package/build/observe/fetchSessions.d.ts +51 -0
  37. package/build/observe/fetchSessions.js +86 -0
  38. package/build/observe/formatEvents.d.ts +1 -0
  39. package/build/observe/formatEvents.js +1 -0
  40. package/build/observe/formatSessions.d.ts +15 -0
  41. package/build/observe/formatSessions.js +100 -0
  42. package/build/simulator/utils.js +28 -5
  43. package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +23 -26
  44. package/build/user/SessionManager.d.ts +1 -22
  45. package/build/user/SessionManager.js +7 -89
  46. package/oclif.manifest.json +1583 -1108
  47. package/package.json +7 -3
@@ -676,6 +676,103 @@
676
676
  "upload.js"
677
677
  ]
678
678
  },
679
+ "account:audit": {
680
+ "aliases": [],
681
+ "args": {
682
+ "ACCOUNT_NAME": {
683
+ "description": "Account name to view audit logs for. If not provided, the account will be selected interactively (or defaults to the only account if there is just one)",
684
+ "name": "ACCOUNT_NAME"
685
+ }
686
+ },
687
+ "description": "view the audit logs for an account",
688
+ "flags": {
689
+ "limit": {
690
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
691
+ "name": "limit",
692
+ "hasDynamicHelp": false,
693
+ "multiple": false,
694
+ "type": "option"
695
+ },
696
+ "after": {
697
+ "description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
698
+ "name": "after",
699
+ "hasDynamicHelp": false,
700
+ "multiple": false,
701
+ "type": "option"
702
+ },
703
+ "json": {
704
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
705
+ "name": "json",
706
+ "allowNo": false,
707
+ "type": "boolean"
708
+ },
709
+ "non-interactive": {
710
+ "description": "Run the command in non-interactive mode.",
711
+ "name": "non-interactive",
712
+ "noCacheDefault": true,
713
+ "allowNo": false,
714
+ "type": "boolean"
715
+ }
716
+ },
717
+ "hasDynamicHelp": false,
718
+ "hiddenAliases": [],
719
+ "id": "account:audit",
720
+ "pluginAlias": "eas-cli",
721
+ "pluginName": "eas-cli",
722
+ "pluginType": "core",
723
+ "strict": true,
724
+ "enableJsonFlag": false,
725
+ "ContextOptions": {
726
+ "LoggedIn": {
727
+ "loggedIn": {}
728
+ },
729
+ "MaybeLoggedIn": {
730
+ "maybeLoggedIn": {}
731
+ },
732
+ "DynamicLoggedIn": {
733
+ "getDynamicLoggedInAsync": {}
734
+ },
735
+ "SessionManagment": {
736
+ "sessionManager": {}
737
+ },
738
+ "OptionalProjectConfig": {
739
+ "optionalPrivateProjectConfig": {}
740
+ },
741
+ "ProjectDir": {
742
+ "projectDir": {}
743
+ },
744
+ "DynamicProjectConfig": {
745
+ "getDynamicPublicProjectConfigAsync": {},
746
+ "getDynamicPrivateProjectConfigAsync": {}
747
+ },
748
+ "ProjectConfig": {
749
+ "loggedIn": {},
750
+ "privateProjectConfig": {}
751
+ },
752
+ "Analytics": {
753
+ "analytics": {}
754
+ },
755
+ "Vcs": {
756
+ "vcsClient": {}
757
+ },
758
+ "ServerSideEnvironmentVariables": {
759
+ "getServerSideEnvironmentVariablesAsync": {}
760
+ },
761
+ "ProjectId": {
762
+ "projectId": {}
763
+ }
764
+ },
765
+ "contextDefinition": {
766
+ "loggedIn": {}
767
+ },
768
+ "isESM": false,
769
+ "relativePath": [
770
+ "build",
771
+ "commands",
772
+ "account",
773
+ "audit.js"
774
+ ]
775
+ },
679
776
  "account:login": {
680
777
  "aliases": [
681
778
  "login"
@@ -1494,48 +1591,34 @@
1494
1591
  "view.js"
1495
1592
  ]
1496
1593
  },
1497
- "build:cancel": {
1594
+ "channel:create": {
1498
1595
  "aliases": [],
1499
1596
  "args": {
1500
- "BUILD_ID": {
1501
- "name": "BUILD_ID"
1597
+ "name": {
1598
+ "description": "Name of the channel to create",
1599
+ "name": "name",
1600
+ "required": false
1502
1601
  }
1503
1602
  },
1504
- "description": "cancel a build",
1603
+ "description": "create a channel",
1505
1604
  "flags": {
1605
+ "json": {
1606
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1607
+ "name": "json",
1608
+ "allowNo": false,
1609
+ "type": "boolean"
1610
+ },
1506
1611
  "non-interactive": {
1507
1612
  "description": "Run the command in non-interactive mode.",
1508
1613
  "name": "non-interactive",
1509
1614
  "noCacheDefault": true,
1510
1615
  "allowNo": false,
1511
1616
  "type": "boolean"
1512
- },
1513
- "platform": {
1514
- "char": "p",
1515
- "description": "Filter builds by the platform if build ID is not provided",
1516
- "name": "platform",
1517
- "hasDynamicHelp": false,
1518
- "multiple": false,
1519
- "options": [
1520
- "android",
1521
- "ios",
1522
- "all"
1523
- ],
1524
- "type": "option"
1525
- },
1526
- "profile": {
1527
- "char": "e",
1528
- "description": "Filter builds by build profile if build ID is not provided",
1529
- "name": "profile",
1530
- "hasDynamicHelp": false,
1531
- "helpValue": "PROFILE_NAME",
1532
- "multiple": false,
1533
- "type": "option"
1534
1617
  }
1535
1618
  },
1536
1619
  "hasDynamicHelp": false,
1537
1620
  "hiddenAliases": [],
1538
- "id": "build:cancel",
1621
+ "id": "channel:create",
1539
1622
  "pluginAlias": "eas-cli",
1540
1623
  "pluginName": "eas-cli",
1541
1624
  "pluginType": "core",
@@ -1583,39 +1666,44 @@
1583
1666
  },
1584
1667
  "contextDefinition": {
1585
1668
  "projectId": {},
1586
- "loggedIn": {},
1587
- "vcsClient": {}
1669
+ "loggedIn": {}
1588
1670
  },
1589
1671
  "isESM": false,
1590
1672
  "relativePath": [
1591
1673
  "build",
1592
1674
  "commands",
1593
- "build",
1594
- "cancel.js"
1675
+ "channel",
1676
+ "create.js"
1595
1677
  ]
1596
1678
  },
1597
- "build:configure": {
1679
+ "channel:delete": {
1598
1680
  "aliases": [],
1599
- "args": {},
1600
- "description": "configure the project to support EAS Build",
1681
+ "args": {
1682
+ "name": {
1683
+ "description": "Name of the channel to delete",
1684
+ "name": "name",
1685
+ "required": false
1686
+ }
1687
+ },
1688
+ "description": "Delete a channel",
1601
1689
  "flags": {
1602
- "platform": {
1603
- "char": "p",
1604
- "description": "Platform to configure",
1605
- "name": "platform",
1606
- "hasDynamicHelp": false,
1607
- "multiple": false,
1608
- "options": [
1609
- "android",
1610
- "ios",
1611
- "all"
1612
- ],
1613
- "type": "option"
1690
+ "json": {
1691
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1692
+ "name": "json",
1693
+ "allowNo": false,
1694
+ "type": "boolean"
1695
+ },
1696
+ "non-interactive": {
1697
+ "description": "Run the command in non-interactive mode.",
1698
+ "name": "non-interactive",
1699
+ "noCacheDefault": true,
1700
+ "allowNo": false,
1701
+ "type": "boolean"
1614
1702
  }
1615
1703
  },
1616
1704
  "hasDynamicHelp": false,
1617
1705
  "hiddenAliases": [],
1618
- "id": "build:configure",
1706
+ "id": "channel:delete",
1619
1707
  "pluginAlias": "eas-cli",
1620
1708
  "pluginName": "eas-cli",
1621
1709
  "pluginType": "core",
@@ -1662,60 +1750,52 @@
1662
1750
  }
1663
1751
  },
1664
1752
  "contextDefinition": {
1665
- "loggedIn": {},
1666
- "privateProjectConfig": {},
1667
- "vcsClient": {}
1753
+ "projectId": {},
1754
+ "loggedIn": {}
1668
1755
  },
1669
1756
  "isESM": false,
1670
1757
  "relativePath": [
1671
1758
  "build",
1672
1759
  "commands",
1673
- "build",
1674
- "configure.js"
1760
+ "channel",
1761
+ "delete.js"
1675
1762
  ]
1676
1763
  },
1677
- "build:delete": {
1764
+ "channel:edit": {
1678
1765
  "aliases": [],
1679
1766
  "args": {
1680
- "BUILD_ID": {
1681
- "name": "BUILD_ID"
1767
+ "name": {
1768
+ "description": "Name of the channel to edit",
1769
+ "name": "name",
1770
+ "required": false
1682
1771
  }
1683
1772
  },
1684
- "description": "delete a build",
1773
+ "description": "point a channel at a new branch",
1685
1774
  "flags": {
1775
+ "branch": {
1776
+ "description": "Name of the branch to point to",
1777
+ "name": "branch",
1778
+ "hasDynamicHelp": false,
1779
+ "multiple": false,
1780
+ "type": "option"
1781
+ },
1782
+ "json": {
1783
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1784
+ "name": "json",
1785
+ "allowNo": false,
1786
+ "type": "boolean"
1787
+ },
1686
1788
  "non-interactive": {
1687
1789
  "description": "Run the command in non-interactive mode.",
1688
1790
  "name": "non-interactive",
1689
1791
  "noCacheDefault": true,
1690
1792
  "allowNo": false,
1691
1793
  "type": "boolean"
1692
- },
1693
- "platform": {
1694
- "char": "p",
1695
- "description": "Filter builds by the platform if build ID is not provided",
1696
- "name": "platform",
1697
- "hasDynamicHelp": false,
1698
- "multiple": false,
1699
- "options": [
1700
- "android",
1701
- "ios",
1702
- "all"
1703
- ],
1704
- "type": "option"
1705
- },
1706
- "profile": {
1707
- "char": "e",
1708
- "description": "Filter builds by build profile if build ID is not provided",
1709
- "name": "profile",
1710
- "hasDynamicHelp": false,
1711
- "helpValue": "PROFILE_NAME",
1712
- "multiple": false,
1713
- "type": "option"
1714
1794
  }
1715
1795
  },
1716
1796
  "hasDynamicHelp": false,
1717
1797
  "hiddenAliases": [],
1718
- "id": "build:delete",
1798
+ "id": "channel:edit",
1719
1799
  "pluginAlias": "eas-cli",
1720
1800
  "pluginName": "eas-cli",
1721
1801
  "pluginType": "core",
@@ -1763,65 +1843,85 @@
1763
1843
  },
1764
1844
  "contextDefinition": {
1765
1845
  "projectId": {},
1766
- "loggedIn": {},
1767
- "vcsClient": {}
1846
+ "loggedIn": {}
1768
1847
  },
1769
1848
  "isESM": false,
1770
1849
  "relativePath": [
1771
1850
  "build",
1772
1851
  "commands",
1773
- "build",
1774
- "delete.js"
1852
+ "channel",
1853
+ "edit.js"
1775
1854
  ]
1776
1855
  },
1777
- "build:dev": {
1856
+ "channel:insights": {
1778
1857
  "aliases": [],
1779
1858
  "args": {},
1780
- "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
1859
+ "description": "display adoption, crash, and unique-user insights for a channel + runtime version",
1781
1860
  "flags": {
1782
- "platform": {
1783
- "char": "p",
1784
- "name": "platform",
1861
+ "channel": {
1862
+ "description": "Name of the channel.",
1863
+ "name": "channel",
1864
+ "required": true,
1785
1865
  "hasDynamicHelp": false,
1786
1866
  "multiple": false,
1787
- "options": [
1788
- "ios",
1789
- "android"
1790
- ],
1791
1867
  "type": "option"
1792
1868
  },
1793
- "profile": {
1794
- "char": "e",
1795
- "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.",
1796
- "name": "profile",
1869
+ "runtime-version": {
1870
+ "description": "Runtime version to query insights for.",
1871
+ "name": "runtime-version",
1872
+ "required": true,
1797
1873
  "hasDynamicHelp": false,
1798
- "helpValue": "PROFILE_NAME",
1799
1874
  "multiple": false,
1800
1875
  "type": "option"
1801
1876
  },
1802
- "skip-build-if-not-found": {
1803
- "description": "Skip build if no successful build with matching fingerprint is found.",
1804
- "name": "skip-build-if-not-found",
1805
- "allowNo": false,
1806
- "type": "boolean"
1877
+ "days": {
1878
+ "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
1879
+ "exclusive": [
1880
+ "start",
1881
+ "end"
1882
+ ],
1883
+ "name": "days",
1884
+ "hasDynamicHelp": false,
1885
+ "multiple": false,
1886
+ "type": "option"
1807
1887
  },
1808
- "skip-bundler": {
1809
- "description": "Install and run the development build without starting the bundler server.",
1810
- "name": "skip-bundler",
1811
- "allowNo": false,
1812
- "type": "boolean"
1888
+ "start": {
1889
+ "description": "Start of insights time range (ISO date).",
1890
+ "exclusive": [
1891
+ "days"
1892
+ ],
1893
+ "name": "start",
1894
+ "hasDynamicHelp": false,
1895
+ "multiple": false,
1896
+ "type": "option"
1813
1897
  },
1814
- "simulator": {
1815
- "description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
1816
- "name": "simulator",
1898
+ "end": {
1899
+ "description": "End of insights time range (ISO date).",
1900
+ "exclusive": [
1901
+ "days"
1902
+ ],
1903
+ "name": "end",
1817
1904
  "hasDynamicHelp": false,
1818
1905
  "multiple": false,
1819
1906
  "type": "option"
1907
+ },
1908
+ "json": {
1909
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1910
+ "name": "json",
1911
+ "allowNo": false,
1912
+ "type": "boolean"
1913
+ },
1914
+ "non-interactive": {
1915
+ "description": "Run the command in non-interactive mode.",
1916
+ "name": "non-interactive",
1917
+ "noCacheDefault": true,
1918
+ "allowNo": false,
1919
+ "type": "boolean"
1820
1920
  }
1821
1921
  },
1822
1922
  "hasDynamicHelp": false,
1823
1923
  "hiddenAliases": [],
1824
- "id": "build:dev",
1924
+ "id": "channel:insights",
1825
1925
  "pluginAlias": "eas-cli",
1826
1926
  "pluginName": "eas-cli",
1827
1927
  "pluginType": "core",
@@ -1868,81 +1968,36 @@
1868
1968
  }
1869
1969
  },
1870
1970
  "contextDefinition": {
1871
- "loggedIn": {},
1872
- "getDynamicPublicProjectConfigAsync": {},
1873
- "getDynamicPrivateProjectConfigAsync": {},
1874
- "projectDir": {},
1875
- "vcsClient": {},
1876
- "analytics": {},
1877
- "projectId": {}
1971
+ "projectId": {},
1972
+ "loggedIn": {}
1878
1973
  },
1879
1974
  "isESM": false,
1880
1975
  "relativePath": [
1881
1976
  "build",
1882
1977
  "commands",
1883
- "build",
1884
- "dev.js"
1978
+ "channel",
1979
+ "insights.js"
1885
1980
  ]
1886
1981
  },
1887
- "build:download": {
1982
+ "channel:list": {
1888
1983
  "aliases": [],
1889
1984
  "args": {},
1890
- "description": "download a simulator/emulator build by build ID or fingerprint hash",
1985
+ "description": "list all channels",
1891
1986
  "flags": {
1892
- "build-id": {
1893
- "aliases": [
1894
- "id"
1895
- ],
1896
- "description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
1897
- "exclusive": [
1898
- "fingerprint",
1899
- "platform",
1900
- "dev-client"
1901
- ],
1902
- "name": "build-id",
1903
- "hasDynamicHelp": false,
1904
- "multiple": false,
1905
- "type": "option"
1906
- },
1907
- "fingerprint": {
1908
- "description": "Fingerprint hash of the build to download",
1909
- "exclusive": [
1910
- "build-id"
1911
- ],
1912
- "name": "fingerprint",
1987
+ "offset": {
1988
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
1989
+ "name": "offset",
1913
1990
  "hasDynamicHelp": false,
1914
1991
  "multiple": false,
1915
1992
  "type": "option"
1916
1993
  },
1917
- "platform": {
1918
- "char": "p",
1919
- "exclusive": [
1920
- "build-id"
1921
- ],
1922
- "name": "platform",
1994
+ "limit": {
1995
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
1996
+ "name": "limit",
1923
1997
  "hasDynamicHelp": false,
1924
1998
  "multiple": false,
1925
- "options": [
1926
- "ios",
1927
- "android"
1928
- ],
1929
1999
  "type": "option"
1930
2000
  },
1931
- "dev-client": {
1932
- "description": "Filter only dev-client builds.",
1933
- "exclusive": [
1934
- "build-id"
1935
- ],
1936
- "name": "dev-client",
1937
- "allowNo": true,
1938
- "type": "boolean"
1939
- },
1940
- "all-artifacts": {
1941
- "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.",
1942
- "name": "all-artifacts",
1943
- "allowNo": false,
1944
- "type": "boolean"
1945
- },
1946
2001
  "json": {
1947
2002
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
1948
2003
  "name": "json",
@@ -1959,7 +2014,7 @@
1959
2014
  },
1960
2015
  "hasDynamicHelp": false,
1961
2016
  "hiddenAliases": [],
1962
- "id": "build:download",
2017
+ "id": "channel:list",
1963
2018
  "pluginAlias": "eas-cli",
1964
2019
  "pluginName": "eas-cli",
1965
2020
  "pluginType": "core",
@@ -2006,171 +2061,127 @@
2006
2061
  }
2007
2062
  },
2008
2063
  "contextDefinition": {
2009
- "loggedIn": {},
2010
- "projectId": {}
2064
+ "projectId": {},
2065
+ "loggedIn": {}
2011
2066
  },
2012
2067
  "isESM": false,
2013
2068
  "relativePath": [
2014
2069
  "build",
2015
2070
  "commands",
2016
- "build",
2017
- "download.js"
2071
+ "channel",
2072
+ "list.js"
2018
2073
  ]
2019
2074
  },
2020
- "build": {
2075
+ "channel:pause": {
2021
2076
  "aliases": [],
2022
- "args": {},
2023
- "description": "start a build",
2077
+ "args": {
2078
+ "name": {
2079
+ "description": "Name of the channel to edit",
2080
+ "name": "name",
2081
+ "required": false
2082
+ }
2083
+ },
2084
+ "description": "pause a channel to stop it from sending updates",
2024
2085
  "flags": {
2025
- "platform": {
2026
- "char": "p",
2027
- "name": "platform",
2086
+ "branch": {
2087
+ "description": "Name of the branch to point to",
2088
+ "name": "branch",
2028
2089
  "hasDynamicHelp": false,
2029
2090
  "multiple": false,
2030
- "options": [
2031
- "android",
2032
- "ios",
2033
- "all"
2034
- ],
2035
2091
  "type": "option"
2036
2092
  },
2037
- "skip-credentials-check": {
2038
- "hidden": true,
2039
- "name": "skip-credentials-check",
2093
+ "json": {
2094
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2095
+ "name": "json",
2040
2096
  "allowNo": false,
2041
2097
  "type": "boolean"
2042
2098
  },
2043
- "skip-project-configuration": {
2044
- "hidden": true,
2045
- "name": "skip-project-configuration",
2099
+ "non-interactive": {
2100
+ "description": "Run the command in non-interactive mode.",
2101
+ "name": "non-interactive",
2102
+ "noCacheDefault": true,
2046
2103
  "allowNo": false,
2047
2104
  "type": "boolean"
2105
+ }
2106
+ },
2107
+ "hasDynamicHelp": false,
2108
+ "hiddenAliases": [],
2109
+ "id": "channel:pause",
2110
+ "pluginAlias": "eas-cli",
2111
+ "pluginName": "eas-cli",
2112
+ "pluginType": "core",
2113
+ "strict": true,
2114
+ "enableJsonFlag": false,
2115
+ "ContextOptions": {
2116
+ "LoggedIn": {
2117
+ "loggedIn": {}
2048
2118
  },
2049
- "profile": {
2050
- "char": "e",
2051
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2052
- "name": "profile",
2053
- "hasDynamicHelp": false,
2054
- "helpValue": "PROFILE_NAME",
2055
- "multiple": false,
2056
- "type": "option"
2119
+ "MaybeLoggedIn": {
2120
+ "maybeLoggedIn": {}
2057
2121
  },
2058
- "local": {
2059
- "description": "Run build locally [experimental]",
2060
- "name": "local",
2061
- "allowNo": false,
2062
- "type": "boolean"
2122
+ "DynamicLoggedIn": {
2123
+ "getDynamicLoggedInAsync": {}
2063
2124
  },
2064
- "output": {
2065
- "description": "Output path for local build",
2066
- "name": "output",
2067
- "hasDynamicHelp": false,
2068
- "multiple": false,
2069
- "type": "option"
2125
+ "SessionManagment": {
2126
+ "sessionManager": {}
2070
2127
  },
2071
- "wait": {
2072
- "description": "Wait for build(s) to complete",
2073
- "name": "wait",
2074
- "allowNo": true,
2075
- "type": "boolean"
2128
+ "OptionalProjectConfig": {
2129
+ "optionalPrivateProjectConfig": {}
2076
2130
  },
2077
- "clear-cache": {
2078
- "description": "Clear cache before the build",
2079
- "name": "clear-cache",
2080
- "allowNo": false,
2081
- "type": "boolean"
2131
+ "ProjectDir": {
2132
+ "projectDir": {}
2082
2133
  },
2083
- "auto-submit": {
2084
- "aliases": [
2085
- "submit"
2086
- ],
2087
- "char": "s",
2088
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
2089
- "exclusive": [
2090
- "auto-submit-with-profile"
2091
- ],
2092
- "name": "auto-submit",
2093
- "allowNo": false,
2094
- "type": "boolean"
2134
+ "DynamicProjectConfig": {
2135
+ "getDynamicPublicProjectConfigAsync": {},
2136
+ "getDynamicPrivateProjectConfigAsync": {}
2095
2137
  },
2096
- "auto-submit-with-profile": {
2097
- "description": "Submit on build complete using the submit profile with provided name",
2098
- "exclusive": [
2099
- "auto-submit"
2100
- ],
2101
- "name": "auto-submit-with-profile",
2102
- "hasDynamicHelp": false,
2103
- "helpValue": "PROFILE_NAME",
2104
- "multiple": false,
2105
- "type": "option"
2138
+ "ProjectConfig": {
2139
+ "loggedIn": {},
2140
+ "privateProjectConfig": {}
2106
2141
  },
2107
- "what-to-test": {
2108
- "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
2109
- "name": "what-to-test",
2110
- "hasDynamicHelp": false,
2111
- "multiple": false,
2112
- "type": "option"
2142
+ "Analytics": {
2143
+ "analytics": {}
2113
2144
  },
2114
- "resource-class": {
2115
- "deprecated": {
2116
- "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/"
2117
- },
2118
- "description": "The instance type that will be used to run this build [experimental]",
2119
- "hidden": true,
2120
- "name": "resource-class",
2121
- "hasDynamicHelp": false,
2122
- "multiple": false,
2123
- "options": [
2124
- "default",
2125
- "large",
2126
- "m1-medium",
2127
- "medium",
2128
- "m-medium",
2129
- "m-large"
2130
- ],
2131
- "type": "option"
2145
+ "Vcs": {
2146
+ "vcsClient": {}
2132
2147
  },
2133
- "message": {
2134
- "char": "m",
2135
- "description": "A short message describing the build",
2136
- "name": "message",
2137
- "hasDynamicHelp": false,
2138
- "multiple": false,
2139
- "type": "option"
2148
+ "ServerSideEnvironmentVariables": {
2149
+ "getServerSideEnvironmentVariablesAsync": {}
2140
2150
  },
2141
- "build-logger-level": {
2142
- "description": "The level of logs to output during the build process. Defaults to \"info\".",
2143
- "name": "build-logger-level",
2151
+ "ProjectId": {
2152
+ "projectId": {}
2153
+ }
2154
+ },
2155
+ "contextDefinition": {
2156
+ "projectId": {},
2157
+ "loggedIn": {}
2158
+ },
2159
+ "isESM": false,
2160
+ "relativePath": [
2161
+ "build",
2162
+ "commands",
2163
+ "channel",
2164
+ "pause.js"
2165
+ ]
2166
+ },
2167
+ "channel:resume": {
2168
+ "aliases": [],
2169
+ "args": {
2170
+ "name": {
2171
+ "description": "Name of the channel to edit",
2172
+ "name": "name",
2173
+ "required": false
2174
+ }
2175
+ },
2176
+ "description": "resume a channel to start sending updates",
2177
+ "flags": {
2178
+ "branch": {
2179
+ "description": "Name of the branch to point to",
2180
+ "name": "branch",
2144
2181
  "hasDynamicHelp": false,
2145
2182
  "multiple": false,
2146
- "options": [
2147
- "trace",
2148
- "debug",
2149
- "info",
2150
- "warn",
2151
- "error",
2152
- "fatal"
2153
- ],
2154
2183
  "type": "option"
2155
2184
  },
2156
- "freeze-credentials": {
2157
- "description": "Prevent the build from updating credentials in non-interactive mode",
2158
- "name": "freeze-credentials",
2159
- "allowNo": false,
2160
- "type": "boolean"
2161
- },
2162
- "refresh-ad-hoc-provisioning-profile": {
2163
- "description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
2164
- "name": "refresh-ad-hoc-provisioning-profile",
2165
- "allowNo": false,
2166
- "type": "boolean"
2167
- },
2168
- "verbose-logs": {
2169
- "description": "Use verbose logs for the build process",
2170
- "name": "verbose-logs",
2171
- "allowNo": false,
2172
- "type": "boolean"
2173
- },
2174
2185
  "json": {
2175
2186
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2176
2187
  "name": "json",
@@ -2187,7 +2198,7 @@
2187
2198
  },
2188
2199
  "hasDynamicHelp": false,
2189
2200
  "hiddenAliases": [],
2190
- "id": "build",
2201
+ "id": "channel:resume",
2191
2202
  "pluginAlias": "eas-cli",
2192
2203
  "pluginName": "eas-cli",
2193
2204
  "pluginType": "core",
@@ -2234,87 +2245,121 @@
2234
2245
  }
2235
2246
  },
2236
2247
  "contextDefinition": {
2237
- "loggedIn": {},
2238
- "getDynamicPublicProjectConfigAsync": {},
2239
- "getDynamicPrivateProjectConfigAsync": {},
2240
- "projectDir": {},
2241
- "analytics": {},
2242
- "vcsClient": {}
2248
+ "projectId": {},
2249
+ "loggedIn": {}
2243
2250
  },
2244
2251
  "isESM": false,
2245
2252
  "relativePath": [
2246
2253
  "build",
2247
2254
  "commands",
2248
- "build",
2249
- "index.js"
2255
+ "channel",
2256
+ "resume.js"
2250
2257
  ]
2251
2258
  },
2252
- "build:inspect": {
2259
+ "channel:rollout": {
2253
2260
  "aliases": [],
2254
- "args": {},
2255
- "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
2261
+ "args": {
2262
+ "channel": {
2263
+ "description": "channel on which the rollout should be done",
2264
+ "name": "channel"
2265
+ }
2266
+ },
2267
+ "description": "Roll a new branch out on a channel incrementally.",
2256
2268
  "flags": {
2257
- "platform": {
2258
- "char": "p",
2259
- "name": "platform",
2260
- "required": true,
2269
+ "action": {
2270
+ "description": "Rollout action to perform",
2271
+ "name": "action",
2272
+ "relationships": [
2273
+ {
2274
+ "type": "all",
2275
+ "flags": [
2276
+ {
2277
+ "name": "percent"
2278
+ },
2279
+ {
2280
+ "name": "outcome"
2281
+ },
2282
+ {
2283
+ "name": "branch"
2284
+ },
2285
+ {
2286
+ "name": "runtime-version"
2287
+ }
2288
+ ]
2289
+ }
2290
+ ],
2291
+ "required": false,
2261
2292
  "hasDynamicHelp": false,
2262
2293
  "multiple": false,
2263
2294
  "options": [
2264
- "android",
2265
- "ios"
2295
+ "create",
2296
+ "edit",
2297
+ "end",
2298
+ "view"
2266
2299
  ],
2267
2300
  "type": "option"
2268
2301
  },
2269
- "profile": {
2270
- "char": "e",
2271
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2272
- "name": "profile",
2302
+ "percent": {
2303
+ "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
2304
+ "name": "percent",
2305
+ "required": false,
2273
2306
  "hasDynamicHelp": false,
2274
- "helpValue": "PROFILE_NAME",
2275
2307
  "multiple": false,
2276
2308
  "type": "option"
2277
2309
  },
2278
- "stage": {
2279
- "char": "s",
2280
- "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",
2281
- "name": "stage",
2282
- "required": true,
2310
+ "outcome": {
2311
+ "description": "End outcome of rollout. Use with --action=end",
2312
+ "name": "outcome",
2313
+ "required": false,
2283
2314
  "hasDynamicHelp": false,
2284
2315
  "multiple": false,
2285
2316
  "options": [
2286
- "archive",
2287
- "pre-build",
2288
- "post-build"
2317
+ "republish-and-revert",
2318
+ "revert"
2289
2319
  ],
2290
2320
  "type": "option"
2291
2321
  },
2292
- "output": {
2293
- "char": "o",
2294
- "description": "Output directory.",
2295
- "name": "output",
2296
- "required": true,
2322
+ "branch": {
2323
+ "description": "Branch to roll out. Use with --action=create",
2324
+ "name": "branch",
2325
+ "required": false,
2297
2326
  "hasDynamicHelp": false,
2298
- "helpValue": "OUTPUT_DIRECTORY",
2299
2327
  "multiple": false,
2300
2328
  "type": "option"
2301
2329
  },
2302
- "force": {
2303
- "description": "Delete OUTPUT_DIRECTORY if it already exists.",
2304
- "name": "force",
2330
+ "runtime-version": {
2331
+ "description": "Runtime version to target. Use with --action=create",
2332
+ "name": "runtime-version",
2333
+ "required": false,
2334
+ "hasDynamicHelp": false,
2335
+ "multiple": false,
2336
+ "type": "option"
2337
+ },
2338
+ "private-key-path": {
2339
+ "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/",
2340
+ "name": "private-key-path",
2341
+ "required": false,
2342
+ "hasDynamicHelp": false,
2343
+ "multiple": false,
2344
+ "type": "option"
2345
+ },
2346
+ "json": {
2347
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2348
+ "name": "json",
2305
2349
  "allowNo": false,
2306
2350
  "type": "boolean"
2307
2351
  },
2308
- "verbose": {
2309
- "char": "v",
2310
- "name": "verbose",
2352
+ "non-interactive": {
2353
+ "description": "Run the command in non-interactive mode.",
2354
+ "name": "non-interactive",
2355
+ "noCacheDefault": true,
2311
2356
  "allowNo": false,
2312
2357
  "type": "boolean"
2313
2358
  }
2314
2359
  },
2315
2360
  "hasDynamicHelp": false,
2316
2361
  "hiddenAliases": [],
2317
- "id": "build:inspect",
2362
+ "id": "channel:rollout",
2318
2363
  "pluginAlias": "eas-cli",
2319
2364
  "pluginName": "eas-cli",
2320
2365
  "pluginType": "core",
@@ -2362,76 +2407,59 @@
2362
2407
  },
2363
2408
  "contextDefinition": {
2364
2409
  "loggedIn": {},
2365
- "getDynamicPublicProjectConfigAsync": {},
2366
- "getDynamicPrivateProjectConfigAsync": {},
2367
- "projectDir": {},
2368
- "analytics": {},
2410
+ "privateProjectConfig": {},
2369
2411
  "vcsClient": {}
2370
2412
  },
2371
2413
  "isESM": false,
2372
2414
  "relativePath": [
2373
2415
  "build",
2374
2416
  "commands",
2375
- "build",
2376
- "inspect.js"
2417
+ "channel",
2418
+ "rollout.js"
2377
2419
  ]
2378
2420
  },
2379
- "build:internal": {
2421
+ "channel:view": {
2380
2422
  "aliases": [],
2381
- "args": {},
2423
+ "args": {
2424
+ "name": {
2425
+ "description": "Name of the channel to view",
2426
+ "name": "name",
2427
+ "required": false
2428
+ }
2429
+ },
2430
+ "description": "view a channel",
2382
2431
  "flags": {
2383
- "platform": {
2384
- "char": "p",
2385
- "name": "platform",
2386
- "required": true,
2387
- "hasDynamicHelp": false,
2388
- "multiple": false,
2389
- "options": [
2390
- "android",
2391
- "ios"
2392
- ],
2393
- "type": "option"
2432
+ "json": {
2433
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2434
+ "name": "json",
2435
+ "allowNo": false,
2436
+ "type": "boolean"
2394
2437
  },
2395
- "profile": {
2396
- "char": "e",
2397
- "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
2398
- "name": "profile",
2399
- "hasDynamicHelp": false,
2400
- "helpValue": "PROFILE_NAME",
2401
- "multiple": false,
2402
- "type": "option"
2403
- },
2404
- "auto-submit": {
2405
- "description": "Submit on build complete using the submit profile with the same name as the build profile",
2406
- "exclusive": [
2407
- "auto-submit-with-profile"
2408
- ],
2409
- "name": "auto-submit",
2438
+ "non-interactive": {
2439
+ "description": "Run the command in non-interactive mode.",
2440
+ "name": "non-interactive",
2441
+ "noCacheDefault": true,
2410
2442
  "allowNo": false,
2411
2443
  "type": "boolean"
2412
2444
  },
2413
- "auto-submit-with-profile": {
2414
- "description": "Submit on build complete using the submit profile with provided name",
2415
- "exclusive": [
2416
- "auto-submit"
2417
- ],
2418
- "name": "auto-submit-with-profile",
2445
+ "offset": {
2446
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2447
+ "name": "offset",
2419
2448
  "hasDynamicHelp": false,
2420
- "helpValue": "PROFILE_NAME",
2421
2449
  "multiple": false,
2422
2450
  "type": "option"
2423
2451
  },
2424
- "refresh-ad-hoc-provisioning-profile": {
2425
- "description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
2426
- "name": "refresh-ad-hoc-provisioning-profile",
2427
- "allowNo": false,
2428
- "type": "boolean"
2452
+ "limit": {
2453
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2454
+ "name": "limit",
2455
+ "hasDynamicHelp": false,
2456
+ "multiple": false,
2457
+ "type": "option"
2429
2458
  }
2430
2459
  },
2431
2460
  "hasDynamicHelp": false,
2432
- "hidden": true,
2433
2461
  "hiddenAliases": [],
2434
- "id": "build:internal",
2462
+ "id": "channel:view",
2435
2463
  "pluginAlias": "eas-cli",
2436
2464
  "pluginName": "eas-cli",
2437
2465
  "pluginType": "core",
@@ -2478,28 +2506,36 @@
2478
2506
  }
2479
2507
  },
2480
2508
  "contextDefinition": {
2481
- "loggedIn": {},
2482
- "getDynamicPublicProjectConfigAsync": {},
2483
- "getDynamicPrivateProjectConfigAsync": {},
2484
- "projectDir": {},
2485
- "analytics": {},
2486
- "vcsClient": {}
2509
+ "projectId": {},
2510
+ "loggedIn": {}
2487
2511
  },
2488
2512
  "isESM": false,
2489
2513
  "relativePath": [
2490
2514
  "build",
2491
2515
  "commands",
2492
- "build",
2493
- "internal.js"
2516
+ "channel",
2517
+ "view.js"
2494
2518
  ]
2495
2519
  },
2496
- "build:list": {
2520
+ "build:cancel": {
2497
2521
  "aliases": [],
2498
- "args": {},
2499
- "description": "list all builds for your project",
2522
+ "args": {
2523
+ "BUILD_ID": {
2524
+ "name": "BUILD_ID"
2525
+ }
2526
+ },
2527
+ "description": "cancel a build",
2500
2528
  "flags": {
2529
+ "non-interactive": {
2530
+ "description": "Run the command in non-interactive mode.",
2531
+ "name": "non-interactive",
2532
+ "noCacheDefault": true,
2533
+ "allowNo": false,
2534
+ "type": "boolean"
2535
+ },
2501
2536
  "platform": {
2502
2537
  "char": "p",
2538
+ "description": "Filter builds by the platform if build ID is not provided",
2503
2539
  "name": "platform",
2504
2540
  "hasDynamicHelp": false,
2505
2541
  "multiple": false,
@@ -2510,156 +2546,19 @@
2510
2546
  ],
2511
2547
  "type": "option"
2512
2548
  },
2513
- "status": {
2514
- "description": "Filter only builds with the specified status",
2515
- "name": "status",
2516
- "hasDynamicHelp": false,
2517
- "multiple": false,
2518
- "options": [
2519
- "new",
2520
- "in-queue",
2521
- "in-progress",
2522
- "pending-cancel",
2523
- "errored",
2524
- "finished",
2525
- "canceled"
2526
- ],
2527
- "type": "option"
2528
- },
2529
- "distribution": {
2530
- "description": "Filter only builds with the specified distribution type",
2531
- "name": "distribution",
2532
- "hasDynamicHelp": false,
2533
- "multiple": false,
2534
- "options": [
2535
- "store",
2536
- "internal",
2537
- "simulator"
2538
- ],
2539
- "type": "option"
2540
- },
2541
- "channel": {
2542
- "name": "channel",
2543
- "hasDynamicHelp": false,
2544
- "multiple": false,
2545
- "type": "option"
2546
- },
2547
- "app-version": {
2548
- "aliases": [
2549
- "appVersion"
2550
- ],
2551
- "description": "Filter only builds created with the specified main app version",
2552
- "name": "app-version",
2553
- "hasDynamicHelp": false,
2554
- "multiple": false,
2555
- "type": "option"
2556
- },
2557
- "app-build-version": {
2558
- "aliases": [
2559
- "appBuildVersion"
2560
- ],
2561
- "description": "Filter only builds created with the specified app build version",
2562
- "name": "app-build-version",
2563
- "hasDynamicHelp": false,
2564
- "multiple": false,
2565
- "type": "option"
2566
- },
2567
- "sdk-version": {
2568
- "aliases": [
2569
- "sdkVersion"
2570
- ],
2571
- "description": "Filter only builds created with the specified Expo SDK version",
2572
- "name": "sdk-version",
2573
- "hasDynamicHelp": false,
2574
- "multiple": false,
2575
- "type": "option"
2576
- },
2577
- "runtime-version": {
2578
- "aliases": [
2579
- "runtimeVersion"
2580
- ],
2581
- "description": "Filter only builds created with the specified runtime version",
2582
- "name": "runtime-version",
2583
- "hasDynamicHelp": false,
2584
- "multiple": false,
2585
- "type": "option"
2586
- },
2587
- "app-identifier": {
2588
- "aliases": [
2589
- "appIdentifier"
2590
- ],
2591
- "description": "Filter only builds created with the specified app identifier",
2592
- "name": "app-identifier",
2593
- "hasDynamicHelp": false,
2594
- "multiple": false,
2595
- "type": "option"
2596
- },
2597
- "build-profile": {
2598
- "aliases": [
2599
- "profile",
2600
- "buildProfile"
2601
- ],
2549
+ "profile": {
2602
2550
  "char": "e",
2603
- "description": "Filter only builds created with the specified build profile",
2604
- "name": "build-profile",
2605
- "hasDynamicHelp": false,
2606
- "multiple": false,
2607
- "type": "option"
2608
- },
2609
- "git-commit-hash": {
2610
- "aliases": [
2611
- "gitCommitHash"
2612
- ],
2613
- "description": "Filter only builds created with the specified git commit hash",
2614
- "name": "git-commit-hash",
2615
- "hasDynamicHelp": false,
2616
- "multiple": false,
2617
- "type": "option"
2618
- },
2619
- "fingerprint-hash": {
2620
- "description": "Filter only builds with the specified fingerprint hash",
2621
- "name": "fingerprint-hash",
2622
- "hasDynamicHelp": false,
2623
- "multiple": false,
2624
- "type": "option"
2625
- },
2626
- "offset": {
2627
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2628
- "name": "offset",
2629
- "hasDynamicHelp": false,
2630
- "multiple": false,
2631
- "type": "option"
2632
- },
2633
- "limit": {
2634
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
2635
- "name": "limit",
2551
+ "description": "Filter builds by build profile if build ID is not provided",
2552
+ "name": "profile",
2636
2553
  "hasDynamicHelp": false,
2554
+ "helpValue": "PROFILE_NAME",
2637
2555
  "multiple": false,
2638
2556
  "type": "option"
2639
- },
2640
- "json": {
2641
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2642
- "name": "json",
2643
- "allowNo": false,
2644
- "type": "boolean"
2645
- },
2646
- "non-interactive": {
2647
- "description": "Run the command in non-interactive mode.",
2648
- "name": "non-interactive",
2649
- "noCacheDefault": true,
2650
- "allowNo": false,
2651
- "type": "boolean"
2652
- },
2653
- "simulator": {
2654
- "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
2655
- "name": "simulator",
2656
- "allowNo": false,
2657
- "type": "boolean"
2658
2557
  }
2659
2558
  },
2660
2559
  "hasDynamicHelp": false,
2661
2560
  "hiddenAliases": [],
2662
- "id": "build:list",
2561
+ "id": "build:cancel",
2663
2562
  "pluginAlias": "eas-cli",
2664
2563
  "pluginName": "eas-cli",
2665
2564
  "pluginType": "core",
@@ -2715,100 +2614,42 @@
2715
2614
  "build",
2716
2615
  "commands",
2717
2616
  "build",
2718
- "list.js"
2617
+ "cancel.js"
2719
2618
  ]
2720
2619
  },
2721
- "build:resign": {
2620
+ "build:configure": {
2722
2621
  "aliases": [],
2723
2622
  "args": {},
2724
- "description": "re-sign a build archive",
2623
+ "description": "configure the project to support EAS Build",
2725
2624
  "flags": {
2726
2625
  "platform": {
2727
2626
  "char": "p",
2627
+ "description": "Platform to configure",
2728
2628
  "name": "platform",
2729
2629
  "hasDynamicHelp": false,
2730
2630
  "multiple": false,
2731
2631
  "options": [
2732
2632
  "android",
2733
- "ios"
2633
+ "ios",
2634
+ "all"
2734
2635
  ],
2735
2636
  "type": "option"
2637
+ }
2638
+ },
2639
+ "hasDynamicHelp": false,
2640
+ "hiddenAliases": [],
2641
+ "id": "build:configure",
2642
+ "pluginAlias": "eas-cli",
2643
+ "pluginName": "eas-cli",
2644
+ "pluginType": "core",
2645
+ "strict": true,
2646
+ "enableJsonFlag": false,
2647
+ "ContextOptions": {
2648
+ "LoggedIn": {
2649
+ "loggedIn": {}
2736
2650
  },
2737
- "target-profile": {
2738
- "aliases": [
2739
- "profile"
2740
- ],
2741
- "char": "e",
2742
- "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.",
2743
- "name": "target-profile",
2744
- "hasDynamicHelp": false,
2745
- "helpValue": "PROFILE_NAME",
2746
- "multiple": false,
2747
- "type": "option"
2748
- },
2749
- "source-profile": {
2750
- "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
2751
- "name": "source-profile",
2752
- "hasDynamicHelp": false,
2753
- "helpValue": "PROFILE_NAME",
2754
- "multiple": false,
2755
- "type": "option"
2756
- },
2757
- "wait": {
2758
- "description": "Wait for build(s) to complete.",
2759
- "name": "wait",
2760
- "allowNo": true,
2761
- "type": "boolean"
2762
- },
2763
- "id": {
2764
- "description": "ID of the build to re-sign.",
2765
- "name": "id",
2766
- "hasDynamicHelp": false,
2767
- "multiple": false,
2768
- "type": "option"
2769
- },
2770
- "offset": {
2771
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2772
- "name": "offset",
2773
- "hasDynamicHelp": false,
2774
- "multiple": false,
2775
- "type": "option"
2776
- },
2777
- "limit": {
2778
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2779
- "name": "limit",
2780
- "hasDynamicHelp": false,
2781
- "multiple": false,
2782
- "type": "option"
2783
- },
2784
- "json": {
2785
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2786
- "name": "json",
2787
- "allowNo": false,
2788
- "type": "boolean"
2789
- },
2790
- "non-interactive": {
2791
- "description": "Run the command in non-interactive mode.",
2792
- "name": "non-interactive",
2793
- "noCacheDefault": true,
2794
- "allowNo": false,
2795
- "type": "boolean"
2796
- }
2797
- },
2798
- "hasDynamicHelp": false,
2799
- "hiddenAliases": [],
2800
- "id": "build:resign",
2801
- "pluginAlias": "eas-cli",
2802
- "pluginName": "eas-cli",
2803
- "pluginType": "core",
2804
- "strict": true,
2805
- "enableJsonFlag": false,
2806
- "ContextOptions": {
2807
- "LoggedIn": {
2808
- "loggedIn": {}
2809
- },
2810
- "MaybeLoggedIn": {
2811
- "maybeLoggedIn": {}
2651
+ "MaybeLoggedIn": {
2652
+ "maybeLoggedIn": {}
2812
2653
  },
2813
2654
  "DynamicLoggedIn": {
2814
2655
  "getDynamicLoggedInAsync": {}
@@ -2845,10 +2686,7 @@
2845
2686
  },
2846
2687
  "contextDefinition": {
2847
2688
  "loggedIn": {},
2848
- "getDynamicPublicProjectConfigAsync": {},
2849
- "getDynamicPrivateProjectConfigAsync": {},
2850
- "projectDir": {},
2851
- "analytics": {},
2689
+ "privateProjectConfig": {},
2852
2690
  "vcsClient": {}
2853
2691
  },
2854
2692
  "isESM": false,
@@ -2856,104 +2694,51 @@
2856
2694
  "build",
2857
2695
  "commands",
2858
2696
  "build",
2859
- "resign.js"
2697
+ "configure.js"
2860
2698
  ]
2861
2699
  },
2862
- "build:run": {
2700
+ "build:delete": {
2863
2701
  "aliases": [],
2864
- "args": {},
2865
- "description": "run simulator/emulator builds from eas-cli",
2702
+ "args": {
2703
+ "BUILD_ID": {
2704
+ "name": "BUILD_ID"
2705
+ }
2706
+ },
2707
+ "description": "delete a build",
2866
2708
  "flags": {
2867
- "latest": {
2868
- "description": "Run the latest simulator/emulator build for specified platform",
2869
- "exclusive": [
2870
- "id",
2871
- "path",
2872
- "url"
2873
- ],
2874
- "name": "latest",
2709
+ "non-interactive": {
2710
+ "description": "Run the command in non-interactive mode.",
2711
+ "name": "non-interactive",
2712
+ "noCacheDefault": true,
2875
2713
  "allowNo": false,
2876
2714
  "type": "boolean"
2877
2715
  },
2878
- "url": {
2879
- "description": "Simulator/Emulator build archive url",
2880
- "exclusive": [
2881
- "latest",
2882
- "id",
2883
- "path"
2884
- ],
2885
- "name": "url",
2886
- "hasDynamicHelp": false,
2887
- "multiple": false,
2888
- "type": "option"
2889
- },
2890
- "path": {
2891
- "description": "Path to the simulator/emulator build archive or app",
2892
- "exclusive": [
2893
- "latest",
2894
- "id",
2895
- "url"
2896
- ],
2897
- "name": "path",
2898
- "hasDynamicHelp": false,
2899
- "multiple": false,
2900
- "type": "option"
2901
- },
2902
- "id": {
2903
- "description": "ID of the simulator/emulator build to run",
2904
- "exclusive": [
2905
- "latest, path, url"
2906
- ],
2907
- "name": "id",
2908
- "hasDynamicHelp": false,
2909
- "multiple": false,
2910
- "type": "option"
2911
- },
2912
2716
  "platform": {
2913
2717
  "char": "p",
2718
+ "description": "Filter builds by the platform if build ID is not provided",
2914
2719
  "name": "platform",
2915
2720
  "hasDynamicHelp": false,
2916
2721
  "multiple": false,
2917
2722
  "options": [
2918
2723
  "android",
2919
- "ios"
2724
+ "ios",
2725
+ "all"
2920
2726
  ],
2921
2727
  "type": "option"
2922
2728
  },
2923
2729
  "profile": {
2924
2730
  "char": "e",
2925
- "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.",
2731
+ "description": "Filter builds by build profile if build ID is not provided",
2926
2732
  "name": "profile",
2927
2733
  "hasDynamicHelp": false,
2928
2734
  "helpValue": "PROFILE_NAME",
2929
2735
  "multiple": false,
2930
2736
  "type": "option"
2931
- },
2932
- "simulator": {
2933
- "description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
2934
- "name": "simulator",
2935
- "hasDynamicHelp": false,
2936
- "multiple": false,
2937
- "type": "option"
2938
- },
2939
- "offset": {
2940
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2941
- "name": "offset",
2942
- "hasDynamicHelp": false,
2943
- "multiple": false,
2944
- "type": "option"
2945
- },
2946
- "limit": {
2947
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
2948
- "name": "limit",
2949
- "hasDynamicHelp": false,
2950
- "multiple": false,
2951
- "type": "option"
2952
2737
  }
2953
2738
  },
2954
2739
  "hasDynamicHelp": false,
2955
2740
  "hiddenAliases": [],
2956
- "id": "build:run",
2741
+ "id": "build:delete",
2957
2742
  "pluginAlias": "eas-cli",
2958
2743
  "pluginName": "eas-cli",
2959
2744
  "pluginType": "core",
@@ -3000,8 +2785,8 @@
3000
2785
  }
3001
2786
  },
3002
2787
  "contextDefinition": {
3003
- "loggedIn": {},
3004
2788
  "projectId": {},
2789
+ "loggedIn": {},
3005
2790
  "vcsClient": {}
3006
2791
  },
3007
2792
  "isESM": false,
@@ -3009,28 +2794,57 @@
3009
2794
  "build",
3010
2795
  "commands",
3011
2796
  "build",
3012
- "run.js"
2797
+ "delete.js"
3013
2798
  ]
3014
2799
  },
3015
- "build:view": {
2800
+ "build:dev": {
3016
2801
  "aliases": [],
3017
- "args": {
3018
- "BUILD_ID": {
3019
- "name": "BUILD_ID"
3020
- }
3021
- },
3022
- "description": "view a build for your project",
2802
+ "args": {},
2803
+ "description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
3023
2804
  "flags": {
3024
- "json": {
3025
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
3026
- "name": "json",
2805
+ "platform": {
2806
+ "char": "p",
2807
+ "name": "platform",
2808
+ "hasDynamicHelp": false,
2809
+ "multiple": false,
2810
+ "options": [
2811
+ "ios",
2812
+ "android"
2813
+ ],
2814
+ "type": "option"
2815
+ },
2816
+ "profile": {
2817
+ "char": "e",
2818
+ "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.",
2819
+ "name": "profile",
2820
+ "hasDynamicHelp": false,
2821
+ "helpValue": "PROFILE_NAME",
2822
+ "multiple": false,
2823
+ "type": "option"
2824
+ },
2825
+ "skip-build-if-not-found": {
2826
+ "description": "Skip build if no successful build with matching fingerprint is found.",
2827
+ "name": "skip-build-if-not-found",
2828
+ "allowNo": false,
2829
+ "type": "boolean"
2830
+ },
2831
+ "skip-bundler": {
2832
+ "description": "Install and run the development build without starting the bundler server.",
2833
+ "name": "skip-bundler",
3027
2834
  "allowNo": false,
3028
2835
  "type": "boolean"
2836
+ },
2837
+ "simulator": {
2838
+ "description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
2839
+ "name": "simulator",
2840
+ "hasDynamicHelp": false,
2841
+ "multiple": false,
2842
+ "type": "option"
3029
2843
  }
3030
2844
  },
3031
2845
  "hasDynamicHelp": false,
3032
2846
  "hiddenAliases": [],
3033
- "id": "build:view",
2847
+ "id": "build:dev",
3034
2848
  "pluginAlias": "eas-cli",
3035
2849
  "pluginName": "eas-cli",
3036
2850
  "pluginType": "core",
@@ -3077,46 +2891,98 @@
3077
2891
  }
3078
2892
  },
3079
2893
  "contextDefinition": {
3080
- "projectId": {},
3081
2894
  "loggedIn": {},
3082
- "vcsClient": {}
2895
+ "getDynamicPublicProjectConfigAsync": {},
2896
+ "getDynamicPrivateProjectConfigAsync": {},
2897
+ "projectDir": {},
2898
+ "vcsClient": {},
2899
+ "analytics": {},
2900
+ "projectId": {}
3083
2901
  },
3084
2902
  "isESM": false,
3085
2903
  "relativePath": [
3086
2904
  "build",
3087
2905
  "commands",
3088
2906
  "build",
3089
- "view.js"
2907
+ "dev.js"
3090
2908
  ]
3091
2909
  },
3092
- "channel:create": {
2910
+ "build:download": {
3093
2911
  "aliases": [],
3094
- "args": {
3095
- "name": {
3096
- "description": "Name of the channel to create",
3097
- "name": "name",
3098
- "required": false
3099
- }
3100
- },
3101
- "description": "create a channel",
2912
+ "args": {},
2913
+ "description": "download a simulator/emulator build by build ID or fingerprint hash",
3102
2914
  "flags": {
3103
- "json": {
3104
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3105
- "name": "json",
3106
- "allowNo": false,
3107
- "type": "boolean"
2915
+ "build-id": {
2916
+ "aliases": [
2917
+ "id"
2918
+ ],
2919
+ "description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
2920
+ "exclusive": [
2921
+ "fingerprint",
2922
+ "platform",
2923
+ "dev-client"
2924
+ ],
2925
+ "name": "build-id",
2926
+ "hasDynamicHelp": false,
2927
+ "multiple": false,
2928
+ "type": "option"
3108
2929
  },
3109
- "non-interactive": {
3110
- "description": "Run the command in non-interactive mode.",
3111
- "name": "non-interactive",
3112
- "noCacheDefault": true,
3113
- "allowNo": false,
3114
- "type": "boolean"
2930
+ "fingerprint": {
2931
+ "description": "Fingerprint hash of the build to download",
2932
+ "exclusive": [
2933
+ "build-id"
2934
+ ],
2935
+ "name": "fingerprint",
2936
+ "hasDynamicHelp": false,
2937
+ "multiple": false,
2938
+ "type": "option"
2939
+ },
2940
+ "platform": {
2941
+ "char": "p",
2942
+ "exclusive": [
2943
+ "build-id"
2944
+ ],
2945
+ "name": "platform",
2946
+ "hasDynamicHelp": false,
2947
+ "multiple": false,
2948
+ "options": [
2949
+ "ios",
2950
+ "android"
2951
+ ],
2952
+ "type": "option"
2953
+ },
2954
+ "dev-client": {
2955
+ "description": "Filter only dev-client builds.",
2956
+ "exclusive": [
2957
+ "build-id"
2958
+ ],
2959
+ "name": "dev-client",
2960
+ "allowNo": true,
2961
+ "type": "boolean"
2962
+ },
2963
+ "all-artifacts": {
2964
+ "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.",
2965
+ "name": "all-artifacts",
2966
+ "allowNo": false,
2967
+ "type": "boolean"
2968
+ },
2969
+ "json": {
2970
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
2971
+ "name": "json",
2972
+ "allowNo": false,
2973
+ "type": "boolean"
2974
+ },
2975
+ "non-interactive": {
2976
+ "description": "Run the command in non-interactive mode.",
2977
+ "name": "non-interactive",
2978
+ "noCacheDefault": true,
2979
+ "allowNo": false,
2980
+ "type": "boolean"
3115
2981
  }
3116
2982
  },
3117
2983
  "hasDynamicHelp": false,
3118
2984
  "hiddenAliases": [],
3119
- "id": "channel:create",
2985
+ "id": "build:download",
3120
2986
  "pluginAlias": "eas-cli",
3121
2987
  "pluginName": "eas-cli",
3122
2988
  "pluginType": "core",
@@ -3158,50 +3024,320 @@
3158
3024
  "ServerSideEnvironmentVariables": {
3159
3025
  "getServerSideEnvironmentVariablesAsync": {}
3160
3026
  },
3161
- "ProjectId": {
3162
- "projectId": {}
3163
- }
3164
- },
3165
- "contextDefinition": {
3166
- "projectId": {},
3167
- "loggedIn": {}
3168
- },
3169
- "isESM": false,
3170
- "relativePath": [
3171
- "build",
3172
- "commands",
3173
- "channel",
3174
- "create.js"
3175
- ]
3176
- },
3177
- "channel:delete": {
3178
- "aliases": [],
3179
- "args": {
3180
- "name": {
3181
- "description": "Name of the channel to delete",
3182
- "name": "name",
3183
- "required": false
3184
- }
3185
- },
3186
- "description": "Delete a channel",
3187
- "flags": {
3188
- "json": {
3189
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3190
- "name": "json",
3027
+ "ProjectId": {
3028
+ "projectId": {}
3029
+ }
3030
+ },
3031
+ "contextDefinition": {
3032
+ "loggedIn": {},
3033
+ "projectId": {}
3034
+ },
3035
+ "isESM": false,
3036
+ "relativePath": [
3037
+ "build",
3038
+ "commands",
3039
+ "build",
3040
+ "download.js"
3041
+ ]
3042
+ },
3043
+ "build": {
3044
+ "aliases": [],
3045
+ "args": {},
3046
+ "description": "start a build",
3047
+ "flags": {
3048
+ "platform": {
3049
+ "char": "p",
3050
+ "name": "platform",
3051
+ "hasDynamicHelp": false,
3052
+ "multiple": false,
3053
+ "options": [
3054
+ "android",
3055
+ "ios",
3056
+ "all"
3057
+ ],
3058
+ "type": "option"
3059
+ },
3060
+ "skip-credentials-check": {
3061
+ "hidden": true,
3062
+ "name": "skip-credentials-check",
3063
+ "allowNo": false,
3064
+ "type": "boolean"
3065
+ },
3066
+ "skip-project-configuration": {
3067
+ "hidden": true,
3068
+ "name": "skip-project-configuration",
3069
+ "allowNo": false,
3070
+ "type": "boolean"
3071
+ },
3072
+ "profile": {
3073
+ "char": "e",
3074
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3075
+ "name": "profile",
3076
+ "hasDynamicHelp": false,
3077
+ "helpValue": "PROFILE_NAME",
3078
+ "multiple": false,
3079
+ "type": "option"
3080
+ },
3081
+ "local": {
3082
+ "description": "Run build locally [experimental]",
3083
+ "name": "local",
3084
+ "allowNo": false,
3085
+ "type": "boolean"
3086
+ },
3087
+ "output": {
3088
+ "description": "Output path for local build",
3089
+ "name": "output",
3090
+ "hasDynamicHelp": false,
3091
+ "multiple": false,
3092
+ "type": "option"
3093
+ },
3094
+ "wait": {
3095
+ "description": "Wait for build(s) to complete",
3096
+ "name": "wait",
3097
+ "allowNo": true,
3098
+ "type": "boolean"
3099
+ },
3100
+ "clear-cache": {
3101
+ "description": "Clear cache before the build",
3102
+ "name": "clear-cache",
3103
+ "allowNo": false,
3104
+ "type": "boolean"
3105
+ },
3106
+ "auto-submit": {
3107
+ "aliases": [
3108
+ "submit"
3109
+ ],
3110
+ "char": "s",
3111
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
3112
+ "exclusive": [
3113
+ "auto-submit-with-profile"
3114
+ ],
3115
+ "name": "auto-submit",
3116
+ "allowNo": false,
3117
+ "type": "boolean"
3118
+ },
3119
+ "auto-submit-with-profile": {
3120
+ "description": "Submit on build complete using the submit profile with provided name",
3121
+ "exclusive": [
3122
+ "auto-submit"
3123
+ ],
3124
+ "name": "auto-submit-with-profile",
3125
+ "hasDynamicHelp": false,
3126
+ "helpValue": "PROFILE_NAME",
3127
+ "multiple": false,
3128
+ "type": "option"
3129
+ },
3130
+ "what-to-test": {
3131
+ "description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
3132
+ "name": "what-to-test",
3133
+ "hasDynamicHelp": false,
3134
+ "multiple": false,
3135
+ "type": "option"
3136
+ },
3137
+ "resource-class": {
3138
+ "deprecated": {
3139
+ "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/"
3140
+ },
3141
+ "description": "The instance type that will be used to run this build [experimental]",
3142
+ "hidden": true,
3143
+ "name": "resource-class",
3144
+ "hasDynamicHelp": false,
3145
+ "multiple": false,
3146
+ "options": [
3147
+ "default",
3148
+ "large",
3149
+ "m1-medium",
3150
+ "medium",
3151
+ "m-medium",
3152
+ "m-large"
3153
+ ],
3154
+ "type": "option"
3155
+ },
3156
+ "message": {
3157
+ "char": "m",
3158
+ "description": "A short message describing the build",
3159
+ "name": "message",
3160
+ "hasDynamicHelp": false,
3161
+ "multiple": false,
3162
+ "type": "option"
3163
+ },
3164
+ "build-logger-level": {
3165
+ "description": "The level of logs to output during the build process. Defaults to \"info\".",
3166
+ "name": "build-logger-level",
3167
+ "hasDynamicHelp": false,
3168
+ "multiple": false,
3169
+ "options": [
3170
+ "trace",
3171
+ "debug",
3172
+ "info",
3173
+ "warn",
3174
+ "error",
3175
+ "fatal"
3176
+ ],
3177
+ "type": "option"
3178
+ },
3179
+ "freeze-credentials": {
3180
+ "description": "Prevent the build from updating credentials in non-interactive mode",
3181
+ "name": "freeze-credentials",
3182
+ "allowNo": false,
3183
+ "type": "boolean"
3184
+ },
3185
+ "refresh-ad-hoc-provisioning-profile": {
3186
+ "description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
3187
+ "name": "refresh-ad-hoc-provisioning-profile",
3188
+ "allowNo": false,
3189
+ "type": "boolean"
3190
+ },
3191
+ "verbose-logs": {
3192
+ "description": "Use verbose logs for the build process",
3193
+ "name": "verbose-logs",
3194
+ "allowNo": false,
3195
+ "type": "boolean"
3196
+ },
3197
+ "json": {
3198
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3199
+ "name": "json",
3200
+ "allowNo": false,
3201
+ "type": "boolean"
3202
+ },
3203
+ "non-interactive": {
3204
+ "description": "Run the command in non-interactive mode.",
3205
+ "name": "non-interactive",
3206
+ "noCacheDefault": true,
3207
+ "allowNo": false,
3208
+ "type": "boolean"
3209
+ }
3210
+ },
3211
+ "hasDynamicHelp": false,
3212
+ "hiddenAliases": [],
3213
+ "id": "build",
3214
+ "pluginAlias": "eas-cli",
3215
+ "pluginName": "eas-cli",
3216
+ "pluginType": "core",
3217
+ "strict": true,
3218
+ "enableJsonFlag": false,
3219
+ "ContextOptions": {
3220
+ "LoggedIn": {
3221
+ "loggedIn": {}
3222
+ },
3223
+ "MaybeLoggedIn": {
3224
+ "maybeLoggedIn": {}
3225
+ },
3226
+ "DynamicLoggedIn": {
3227
+ "getDynamicLoggedInAsync": {}
3228
+ },
3229
+ "SessionManagment": {
3230
+ "sessionManager": {}
3231
+ },
3232
+ "OptionalProjectConfig": {
3233
+ "optionalPrivateProjectConfig": {}
3234
+ },
3235
+ "ProjectDir": {
3236
+ "projectDir": {}
3237
+ },
3238
+ "DynamicProjectConfig": {
3239
+ "getDynamicPublicProjectConfigAsync": {},
3240
+ "getDynamicPrivateProjectConfigAsync": {}
3241
+ },
3242
+ "ProjectConfig": {
3243
+ "loggedIn": {},
3244
+ "privateProjectConfig": {}
3245
+ },
3246
+ "Analytics": {
3247
+ "analytics": {}
3248
+ },
3249
+ "Vcs": {
3250
+ "vcsClient": {}
3251
+ },
3252
+ "ServerSideEnvironmentVariables": {
3253
+ "getServerSideEnvironmentVariablesAsync": {}
3254
+ },
3255
+ "ProjectId": {
3256
+ "projectId": {}
3257
+ }
3258
+ },
3259
+ "contextDefinition": {
3260
+ "loggedIn": {},
3261
+ "getDynamicPublicProjectConfigAsync": {},
3262
+ "getDynamicPrivateProjectConfigAsync": {},
3263
+ "projectDir": {},
3264
+ "analytics": {},
3265
+ "vcsClient": {}
3266
+ },
3267
+ "isESM": false,
3268
+ "relativePath": [
3269
+ "build",
3270
+ "commands",
3271
+ "build",
3272
+ "index.js"
3273
+ ]
3274
+ },
3275
+ "build:inspect": {
3276
+ "aliases": [],
3277
+ "args": {},
3278
+ "description": "inspect the state of the project at specific build stages, useful for troubleshooting",
3279
+ "flags": {
3280
+ "platform": {
3281
+ "char": "p",
3282
+ "name": "platform",
3283
+ "required": true,
3284
+ "hasDynamicHelp": false,
3285
+ "multiple": false,
3286
+ "options": [
3287
+ "android",
3288
+ "ios"
3289
+ ],
3290
+ "type": "option"
3291
+ },
3292
+ "profile": {
3293
+ "char": "e",
3294
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3295
+ "name": "profile",
3296
+ "hasDynamicHelp": false,
3297
+ "helpValue": "PROFILE_NAME",
3298
+ "multiple": false,
3299
+ "type": "option"
3300
+ },
3301
+ "stage": {
3302
+ "char": "s",
3303
+ "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",
3304
+ "name": "stage",
3305
+ "required": true,
3306
+ "hasDynamicHelp": false,
3307
+ "multiple": false,
3308
+ "options": [
3309
+ "archive",
3310
+ "pre-build",
3311
+ "post-build"
3312
+ ],
3313
+ "type": "option"
3314
+ },
3315
+ "output": {
3316
+ "char": "o",
3317
+ "description": "Output directory.",
3318
+ "name": "output",
3319
+ "required": true,
3320
+ "hasDynamicHelp": false,
3321
+ "helpValue": "OUTPUT_DIRECTORY",
3322
+ "multiple": false,
3323
+ "type": "option"
3324
+ },
3325
+ "force": {
3326
+ "description": "Delete OUTPUT_DIRECTORY if it already exists.",
3327
+ "name": "force",
3191
3328
  "allowNo": false,
3192
3329
  "type": "boolean"
3193
3330
  },
3194
- "non-interactive": {
3195
- "description": "Run the command in non-interactive mode.",
3196
- "name": "non-interactive",
3197
- "noCacheDefault": true,
3331
+ "verbose": {
3332
+ "char": "v",
3333
+ "name": "verbose",
3198
3334
  "allowNo": false,
3199
3335
  "type": "boolean"
3200
3336
  }
3201
3337
  },
3202
3338
  "hasDynamicHelp": false,
3203
3339
  "hiddenAliases": [],
3204
- "id": "channel:delete",
3340
+ "id": "build:inspect",
3205
3341
  "pluginAlias": "eas-cli",
3206
3342
  "pluginName": "eas-cli",
3207
3343
  "pluginType": "core",
@@ -3248,52 +3384,77 @@
3248
3384
  }
3249
3385
  },
3250
3386
  "contextDefinition": {
3251
- "projectId": {},
3252
- "loggedIn": {}
3387
+ "loggedIn": {},
3388
+ "getDynamicPublicProjectConfigAsync": {},
3389
+ "getDynamicPrivateProjectConfigAsync": {},
3390
+ "projectDir": {},
3391
+ "analytics": {},
3392
+ "vcsClient": {}
3253
3393
  },
3254
3394
  "isESM": false,
3255
3395
  "relativePath": [
3256
3396
  "build",
3257
3397
  "commands",
3258
- "channel",
3259
- "delete.js"
3398
+ "build",
3399
+ "inspect.js"
3260
3400
  ]
3261
3401
  },
3262
- "channel:edit": {
3402
+ "build:internal": {
3263
3403
  "aliases": [],
3264
- "args": {
3265
- "name": {
3266
- "description": "Name of the channel to edit",
3267
- "name": "name",
3268
- "required": false
3269
- }
3270
- },
3271
- "description": "point a channel at a new branch",
3404
+ "args": {},
3272
3405
  "flags": {
3273
- "branch": {
3274
- "description": "Name of the branch to point to",
3275
- "name": "branch",
3406
+ "platform": {
3407
+ "char": "p",
3408
+ "name": "platform",
3409
+ "required": true,
3410
+ "hasDynamicHelp": false,
3411
+ "multiple": false,
3412
+ "options": [
3413
+ "android",
3414
+ "ios"
3415
+ ],
3416
+ "type": "option"
3417
+ },
3418
+ "profile": {
3419
+ "char": "e",
3420
+ "description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
3421
+ "name": "profile",
3276
3422
  "hasDynamicHelp": false,
3423
+ "helpValue": "PROFILE_NAME",
3277
3424
  "multiple": false,
3278
3425
  "type": "option"
3279
3426
  },
3280
- "json": {
3281
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3282
- "name": "json",
3427
+ "auto-submit": {
3428
+ "description": "Submit on build complete using the submit profile with the same name as the build profile",
3429
+ "exclusive": [
3430
+ "auto-submit-with-profile"
3431
+ ],
3432
+ "name": "auto-submit",
3283
3433
  "allowNo": false,
3284
3434
  "type": "boolean"
3285
3435
  },
3286
- "non-interactive": {
3287
- "description": "Run the command in non-interactive mode.",
3288
- "name": "non-interactive",
3289
- "noCacheDefault": true,
3436
+ "auto-submit-with-profile": {
3437
+ "description": "Submit on build complete using the submit profile with provided name",
3438
+ "exclusive": [
3439
+ "auto-submit"
3440
+ ],
3441
+ "name": "auto-submit-with-profile",
3442
+ "hasDynamicHelp": false,
3443
+ "helpValue": "PROFILE_NAME",
3444
+ "multiple": false,
3445
+ "type": "option"
3446
+ },
3447
+ "refresh-ad-hoc-provisioning-profile": {
3448
+ "description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
3449
+ "name": "refresh-ad-hoc-provisioning-profile",
3290
3450
  "allowNo": false,
3291
3451
  "type": "boolean"
3292
3452
  }
3293
3453
  },
3294
3454
  "hasDynamicHelp": false,
3455
+ "hidden": true,
3295
3456
  "hiddenAliases": [],
3296
- "id": "channel:edit",
3457
+ "id": "build:internal",
3297
3458
  "pluginAlias": "eas-cli",
3298
3459
  "pluginName": "eas-cli",
3299
3460
  "pluginType": "core",
@@ -3340,148 +3501,151 @@
3340
3501
  }
3341
3502
  },
3342
3503
  "contextDefinition": {
3343
- "projectId": {},
3344
- "loggedIn": {}
3504
+ "loggedIn": {},
3505
+ "getDynamicPublicProjectConfigAsync": {},
3506
+ "getDynamicPrivateProjectConfigAsync": {},
3507
+ "projectDir": {},
3508
+ "analytics": {},
3509
+ "vcsClient": {}
3345
3510
  },
3346
3511
  "isESM": false,
3347
3512
  "relativePath": [
3348
3513
  "build",
3349
3514
  "commands",
3350
- "channel",
3351
- "edit.js"
3515
+ "build",
3516
+ "internal.js"
3352
3517
  ]
3353
3518
  },
3354
- "channel:insights": {
3519
+ "build:list": {
3355
3520
  "aliases": [],
3356
3521
  "args": {},
3357
- "description": "display adoption, crash, and unique-user insights for a channel + runtime version",
3522
+ "description": "list all builds for your project",
3358
3523
  "flags": {
3359
- "channel": {
3360
- "description": "Name of the channel.",
3361
- "name": "channel",
3362
- "required": true,
3524
+ "platform": {
3525
+ "char": "p",
3526
+ "name": "platform",
3363
3527
  "hasDynamicHelp": false,
3364
3528
  "multiple": false,
3529
+ "options": [
3530
+ "android",
3531
+ "ios",
3532
+ "all"
3533
+ ],
3365
3534
  "type": "option"
3366
3535
  },
3367
- "runtime-version": {
3368
- "description": "Runtime version to query insights for.",
3369
- "name": "runtime-version",
3370
- "required": true,
3536
+ "status": {
3537
+ "description": "Filter only builds with the specified status",
3538
+ "name": "status",
3371
3539
  "hasDynamicHelp": false,
3372
3540
  "multiple": false,
3541
+ "options": [
3542
+ "new",
3543
+ "in-queue",
3544
+ "in-progress",
3545
+ "pending-cancel",
3546
+ "errored",
3547
+ "finished",
3548
+ "canceled"
3549
+ ],
3373
3550
  "type": "option"
3374
3551
  },
3375
- "days": {
3376
- "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
3377
- "exclusive": [
3378
- "start",
3379
- "end"
3552
+ "distribution": {
3553
+ "description": "Filter only builds with the specified distribution type",
3554
+ "name": "distribution",
3555
+ "hasDynamicHelp": false,
3556
+ "multiple": false,
3557
+ "options": [
3558
+ "store",
3559
+ "internal",
3560
+ "simulator"
3380
3561
  ],
3381
- "name": "days",
3562
+ "type": "option"
3563
+ },
3564
+ "channel": {
3565
+ "name": "channel",
3382
3566
  "hasDynamicHelp": false,
3383
3567
  "multiple": false,
3384
3568
  "type": "option"
3385
3569
  },
3386
- "start": {
3387
- "description": "Start of insights time range (ISO date).",
3388
- "exclusive": [
3389
- "days"
3570
+ "app-version": {
3571
+ "aliases": [
3572
+ "appVersion"
3390
3573
  ],
3391
- "name": "start",
3574
+ "description": "Filter only builds created with the specified main app version",
3575
+ "name": "app-version",
3392
3576
  "hasDynamicHelp": false,
3393
3577
  "multiple": false,
3394
3578
  "type": "option"
3395
3579
  },
3396
- "end": {
3397
- "description": "End of insights time range (ISO date).",
3398
- "exclusive": [
3399
- "days"
3580
+ "app-build-version": {
3581
+ "aliases": [
3582
+ "appBuildVersion"
3400
3583
  ],
3401
- "name": "end",
3584
+ "description": "Filter only builds created with the specified app build version",
3585
+ "name": "app-build-version",
3402
3586
  "hasDynamicHelp": false,
3403
3587
  "multiple": false,
3404
3588
  "type": "option"
3405
3589
  },
3406
- "json": {
3407
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3408
- "name": "json",
3409
- "allowNo": false,
3410
- "type": "boolean"
3411
- },
3412
- "non-interactive": {
3413
- "description": "Run the command in non-interactive mode.",
3414
- "name": "non-interactive",
3415
- "noCacheDefault": true,
3416
- "allowNo": false,
3417
- "type": "boolean"
3418
- }
3419
- },
3420
- "hasDynamicHelp": false,
3421
- "hiddenAliases": [],
3422
- "id": "channel:insights",
3423
- "pluginAlias": "eas-cli",
3424
- "pluginName": "eas-cli",
3425
- "pluginType": "core",
3426
- "strict": true,
3427
- "enableJsonFlag": false,
3428
- "ContextOptions": {
3429
- "LoggedIn": {
3430
- "loggedIn": {}
3431
- },
3432
- "MaybeLoggedIn": {
3433
- "maybeLoggedIn": {}
3434
- },
3435
- "DynamicLoggedIn": {
3436
- "getDynamicLoggedInAsync": {}
3437
- },
3438
- "SessionManagment": {
3439
- "sessionManager": {}
3440
- },
3441
- "OptionalProjectConfig": {
3442
- "optionalPrivateProjectConfig": {}
3443
- },
3444
- "ProjectDir": {
3445
- "projectDir": {}
3590
+ "sdk-version": {
3591
+ "aliases": [
3592
+ "sdkVersion"
3593
+ ],
3594
+ "description": "Filter only builds created with the specified Expo SDK version",
3595
+ "name": "sdk-version",
3596
+ "hasDynamicHelp": false,
3597
+ "multiple": false,
3598
+ "type": "option"
3446
3599
  },
3447
- "DynamicProjectConfig": {
3448
- "getDynamicPublicProjectConfigAsync": {},
3449
- "getDynamicPrivateProjectConfigAsync": {}
3600
+ "runtime-version": {
3601
+ "aliases": [
3602
+ "runtimeVersion"
3603
+ ],
3604
+ "description": "Filter only builds created with the specified runtime version",
3605
+ "name": "runtime-version",
3606
+ "hasDynamicHelp": false,
3607
+ "multiple": false,
3608
+ "type": "option"
3450
3609
  },
3451
- "ProjectConfig": {
3452
- "loggedIn": {},
3453
- "privateProjectConfig": {}
3610
+ "app-identifier": {
3611
+ "aliases": [
3612
+ "appIdentifier"
3613
+ ],
3614
+ "description": "Filter only builds created with the specified app identifier",
3615
+ "name": "app-identifier",
3616
+ "hasDynamicHelp": false,
3617
+ "multiple": false,
3618
+ "type": "option"
3454
3619
  },
3455
- "Analytics": {
3456
- "analytics": {}
3620
+ "build-profile": {
3621
+ "aliases": [
3622
+ "profile",
3623
+ "buildProfile"
3624
+ ],
3625
+ "char": "e",
3626
+ "description": "Filter only builds created with the specified build profile",
3627
+ "name": "build-profile",
3628
+ "hasDynamicHelp": false,
3629
+ "multiple": false,
3630
+ "type": "option"
3457
3631
  },
3458
- "Vcs": {
3459
- "vcsClient": {}
3632
+ "git-commit-hash": {
3633
+ "aliases": [
3634
+ "gitCommitHash"
3635
+ ],
3636
+ "description": "Filter only builds created with the specified git commit hash",
3637
+ "name": "git-commit-hash",
3638
+ "hasDynamicHelp": false,
3639
+ "multiple": false,
3640
+ "type": "option"
3460
3641
  },
3461
- "ServerSideEnvironmentVariables": {
3462
- "getServerSideEnvironmentVariablesAsync": {}
3642
+ "fingerprint-hash": {
3643
+ "description": "Filter only builds with the specified fingerprint hash",
3644
+ "name": "fingerprint-hash",
3645
+ "hasDynamicHelp": false,
3646
+ "multiple": false,
3647
+ "type": "option"
3463
3648
  },
3464
- "ProjectId": {
3465
- "projectId": {}
3466
- }
3467
- },
3468
- "contextDefinition": {
3469
- "projectId": {},
3470
- "loggedIn": {}
3471
- },
3472
- "isESM": false,
3473
- "relativePath": [
3474
- "build",
3475
- "commands",
3476
- "channel",
3477
- "insights.js"
3478
- ]
3479
- },
3480
- "channel:list": {
3481
- "aliases": [],
3482
- "args": {},
3483
- "description": "list all channels",
3484
- "flags": {
3485
3649
  "offset": {
3486
3650
  "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3487
3651
  "name": "offset",
@@ -3490,7 +3654,7 @@
3490
3654
  "type": "option"
3491
3655
  },
3492
3656
  "limit": {
3493
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
3657
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
3494
3658
  "name": "limit",
3495
3659
  "hasDynamicHelp": false,
3496
3660
  "multiple": false,
@@ -3508,11 +3672,17 @@
3508
3672
  "noCacheDefault": true,
3509
3673
  "allowNo": false,
3510
3674
  "type": "boolean"
3675
+ },
3676
+ "simulator": {
3677
+ "description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
3678
+ "name": "simulator",
3679
+ "allowNo": false,
3680
+ "type": "boolean"
3511
3681
  }
3512
3682
  },
3513
3683
  "hasDynamicHelp": false,
3514
3684
  "hiddenAliases": [],
3515
- "id": "channel:list",
3685
+ "id": "build:list",
3516
3686
  "pluginAlias": "eas-cli",
3517
3687
  "pluginName": "eas-cli",
3518
3688
  "pluginType": "core",
@@ -3560,122 +3730,76 @@
3560
3730
  },
3561
3731
  "contextDefinition": {
3562
3732
  "projectId": {},
3563
- "loggedIn": {}
3733
+ "loggedIn": {},
3734
+ "vcsClient": {}
3564
3735
  },
3565
3736
  "isESM": false,
3566
3737
  "relativePath": [
3567
3738
  "build",
3568
3739
  "commands",
3569
- "channel",
3740
+ "build",
3570
3741
  "list.js"
3571
3742
  ]
3572
3743
  },
3573
- "channel:pause": {
3744
+ "build:resign": {
3574
3745
  "aliases": [],
3575
- "args": {
3576
- "name": {
3577
- "description": "Name of the channel to edit",
3578
- "name": "name",
3579
- "required": false
3580
- }
3581
- },
3582
- "description": "pause a channel to stop it from sending updates",
3746
+ "args": {},
3747
+ "description": "re-sign a build archive",
3583
3748
  "flags": {
3584
- "branch": {
3585
- "description": "Name of the branch to point to",
3586
- "name": "branch",
3749
+ "platform": {
3750
+ "char": "p",
3751
+ "name": "platform",
3587
3752
  "hasDynamicHelp": false,
3588
3753
  "multiple": false,
3754
+ "options": [
3755
+ "android",
3756
+ "ios"
3757
+ ],
3589
3758
  "type": "option"
3590
3759
  },
3591
- "json": {
3592
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3593
- "name": "json",
3594
- "allowNo": false,
3595
- "type": "boolean"
3596
- },
3597
- "non-interactive": {
3598
- "description": "Run the command in non-interactive mode.",
3599
- "name": "non-interactive",
3600
- "noCacheDefault": true,
3601
- "allowNo": false,
3602
- "type": "boolean"
3603
- }
3604
- },
3605
- "hasDynamicHelp": false,
3606
- "hiddenAliases": [],
3607
- "id": "channel:pause",
3608
- "pluginAlias": "eas-cli",
3609
- "pluginName": "eas-cli",
3610
- "pluginType": "core",
3611
- "strict": true,
3612
- "enableJsonFlag": false,
3613
- "ContextOptions": {
3614
- "LoggedIn": {
3615
- "loggedIn": {}
3616
- },
3617
- "MaybeLoggedIn": {
3618
- "maybeLoggedIn": {}
3619
- },
3620
- "DynamicLoggedIn": {
3621
- "getDynamicLoggedInAsync": {}
3622
- },
3623
- "SessionManagment": {
3624
- "sessionManager": {}
3625
- },
3626
- "OptionalProjectConfig": {
3627
- "optionalPrivateProjectConfig": {}
3628
- },
3629
- "ProjectDir": {
3630
- "projectDir": {}
3631
- },
3632
- "DynamicProjectConfig": {
3633
- "getDynamicPublicProjectConfigAsync": {},
3634
- "getDynamicPrivateProjectConfigAsync": {}
3760
+ "target-profile": {
3761
+ "aliases": [
3762
+ "profile"
3763
+ ],
3764
+ "char": "e",
3765
+ "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.",
3766
+ "name": "target-profile",
3767
+ "hasDynamicHelp": false,
3768
+ "helpValue": "PROFILE_NAME",
3769
+ "multiple": false,
3770
+ "type": "option"
3635
3771
  },
3636
- "ProjectConfig": {
3637
- "loggedIn": {},
3638
- "privateProjectConfig": {}
3772
+ "source-profile": {
3773
+ "description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
3774
+ "name": "source-profile",
3775
+ "hasDynamicHelp": false,
3776
+ "helpValue": "PROFILE_NAME",
3777
+ "multiple": false,
3778
+ "type": "option"
3639
3779
  },
3640
- "Analytics": {
3641
- "analytics": {}
3780
+ "wait": {
3781
+ "description": "Wait for build(s) to complete.",
3782
+ "name": "wait",
3783
+ "allowNo": true,
3784
+ "type": "boolean"
3642
3785
  },
3643
- "Vcs": {
3644
- "vcsClient": {}
3786
+ "id": {
3787
+ "description": "ID of the build to re-sign.",
3788
+ "name": "id",
3789
+ "hasDynamicHelp": false,
3790
+ "multiple": false,
3791
+ "type": "option"
3645
3792
  },
3646
- "ServerSideEnvironmentVariables": {
3647
- "getServerSideEnvironmentVariablesAsync": {}
3793
+ "offset": {
3794
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3795
+ "name": "offset",
3796
+ "hasDynamicHelp": false,
3797
+ "multiple": false,
3798
+ "type": "option"
3648
3799
  },
3649
- "ProjectId": {
3650
- "projectId": {}
3651
- }
3652
- },
3653
- "contextDefinition": {
3654
- "projectId": {},
3655
- "loggedIn": {}
3656
- },
3657
- "isESM": false,
3658
- "relativePath": [
3659
- "build",
3660
- "commands",
3661
- "channel",
3662
- "pause.js"
3663
- ]
3664
- },
3665
- "channel:resume": {
3666
- "aliases": [],
3667
- "args": {
3668
- "name": {
3669
- "description": "Name of the channel to edit",
3670
- "name": "name",
3671
- "required": false
3672
- }
3673
- },
3674
- "description": "resume a channel to start sending updates",
3675
- "flags": {
3676
- "branch": {
3677
- "description": "Name of the branch to point to",
3678
- "name": "branch",
3800
+ "limit": {
3801
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3802
+ "name": "limit",
3679
3803
  "hasDynamicHelp": false,
3680
3804
  "multiple": false,
3681
3805
  "type": "option"
@@ -3696,7 +3820,7 @@
3696
3820
  },
3697
3821
  "hasDynamicHelp": false,
3698
3822
  "hiddenAliases": [],
3699
- "id": "channel:resume",
3823
+ "id": "build:resign",
3700
3824
  "pluginAlias": "eas-cli",
3701
3825
  "pluginName": "eas-cli",
3702
3826
  "pluginType": "core",
@@ -3743,121 +3867,116 @@
3743
3867
  }
3744
3868
  },
3745
3869
  "contextDefinition": {
3746
- "projectId": {},
3747
- "loggedIn": {}
3870
+ "loggedIn": {},
3871
+ "getDynamicPublicProjectConfigAsync": {},
3872
+ "getDynamicPrivateProjectConfigAsync": {},
3873
+ "projectDir": {},
3874
+ "analytics": {},
3875
+ "vcsClient": {}
3748
3876
  },
3749
3877
  "isESM": false,
3750
3878
  "relativePath": [
3751
3879
  "build",
3752
3880
  "commands",
3753
- "channel",
3754
- "resume.js"
3881
+ "build",
3882
+ "resign.js"
3755
3883
  ]
3756
3884
  },
3757
- "channel:rollout": {
3885
+ "build:run": {
3758
3886
  "aliases": [],
3759
- "args": {
3760
- "channel": {
3761
- "description": "channel on which the rollout should be done",
3762
- "name": "channel"
3763
- }
3764
- },
3765
- "description": "Roll a new branch out on a channel incrementally.",
3887
+ "args": {},
3888
+ "description": "run simulator/emulator builds from eas-cli",
3766
3889
  "flags": {
3767
- "action": {
3768
- "description": "Rollout action to perform",
3769
- "name": "action",
3770
- "relationships": [
3771
- {
3772
- "type": "all",
3773
- "flags": [
3774
- {
3775
- "name": "percent"
3776
- },
3777
- {
3778
- "name": "outcome"
3779
- },
3780
- {
3781
- "name": "branch"
3782
- },
3783
- {
3784
- "name": "runtime-version"
3785
- }
3786
- ]
3787
- }
3890
+ "latest": {
3891
+ "description": "Run the latest simulator/emulator build for specified platform",
3892
+ "exclusive": [
3893
+ "id",
3894
+ "path",
3895
+ "url"
3788
3896
  ],
3789
- "required": false,
3897
+ "name": "latest",
3898
+ "allowNo": false,
3899
+ "type": "boolean"
3900
+ },
3901
+ "url": {
3902
+ "description": "Simulator/Emulator build archive url",
3903
+ "exclusive": [
3904
+ "latest",
3905
+ "id",
3906
+ "path"
3907
+ ],
3908
+ "name": "url",
3790
3909
  "hasDynamicHelp": false,
3791
3910
  "multiple": false,
3792
- "options": [
3793
- "create",
3794
- "edit",
3795
- "end",
3796
- "view"
3911
+ "type": "option"
3912
+ },
3913
+ "path": {
3914
+ "description": "Path to the simulator/emulator build archive or app",
3915
+ "exclusive": [
3916
+ "latest",
3917
+ "id",
3918
+ "url"
3797
3919
  ],
3920
+ "name": "path",
3921
+ "hasDynamicHelp": false,
3922
+ "multiple": false,
3798
3923
  "type": "option"
3799
3924
  },
3800
- "percent": {
3801
- "description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
3802
- "name": "percent",
3803
- "required": false,
3925
+ "id": {
3926
+ "description": "ID of the simulator/emulator build to run",
3927
+ "exclusive": [
3928
+ "latest, path, url"
3929
+ ],
3930
+ "name": "id",
3804
3931
  "hasDynamicHelp": false,
3805
3932
  "multiple": false,
3806
3933
  "type": "option"
3807
3934
  },
3808
- "outcome": {
3809
- "description": "End outcome of rollout. Use with --action=end",
3810
- "name": "outcome",
3811
- "required": false,
3935
+ "platform": {
3936
+ "char": "p",
3937
+ "name": "platform",
3812
3938
  "hasDynamicHelp": false,
3813
3939
  "multiple": false,
3814
3940
  "options": [
3815
- "republish-and-revert",
3816
- "revert"
3941
+ "android",
3942
+ "ios"
3817
3943
  ],
3818
3944
  "type": "option"
3819
3945
  },
3820
- "branch": {
3821
- "description": "Branch to roll out. Use with --action=create",
3822
- "name": "branch",
3823
- "required": false,
3946
+ "profile": {
3947
+ "char": "e",
3948
+ "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.",
3949
+ "name": "profile",
3824
3950
  "hasDynamicHelp": false,
3951
+ "helpValue": "PROFILE_NAME",
3825
3952
  "multiple": false,
3826
3953
  "type": "option"
3827
3954
  },
3828
- "runtime-version": {
3829
- "description": "Runtime version to target. Use with --action=create",
3830
- "name": "runtime-version",
3831
- "required": false,
3955
+ "simulator": {
3956
+ "description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
3957
+ "name": "simulator",
3832
3958
  "hasDynamicHelp": false,
3833
3959
  "multiple": false,
3834
3960
  "type": "option"
3835
3961
  },
3836
- "private-key-path": {
3837
- "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/",
3838
- "name": "private-key-path",
3839
- "required": false,
3962
+ "offset": {
3963
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3964
+ "name": "offset",
3840
3965
  "hasDynamicHelp": false,
3841
3966
  "multiple": false,
3842
3967
  "type": "option"
3843
3968
  },
3844
- "json": {
3845
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3846
- "name": "json",
3847
- "allowNo": false,
3848
- "type": "boolean"
3849
- },
3850
- "non-interactive": {
3851
- "description": "Run the command in non-interactive mode.",
3852
- "name": "non-interactive",
3853
- "noCacheDefault": true,
3854
- "allowNo": false,
3855
- "type": "boolean"
3969
+ "limit": {
3970
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3971
+ "name": "limit",
3972
+ "hasDynamicHelp": false,
3973
+ "multiple": false,
3974
+ "type": "option"
3856
3975
  }
3857
3976
  },
3858
3977
  "hasDynamicHelp": false,
3859
3978
  "hiddenAliases": [],
3860
- "id": "channel:rollout",
3979
+ "id": "build:run",
3861
3980
  "pluginAlias": "eas-cli",
3862
3981
  "pluginName": "eas-cli",
3863
3982
  "pluginType": "core",
@@ -3905,59 +4024,36 @@
3905
4024
  },
3906
4025
  "contextDefinition": {
3907
4026
  "loggedIn": {},
3908
- "privateProjectConfig": {},
4027
+ "projectId": {},
3909
4028
  "vcsClient": {}
3910
4029
  },
3911
4030
  "isESM": false,
3912
4031
  "relativePath": [
3913
4032
  "build",
3914
4033
  "commands",
3915
- "channel",
3916
- "rollout.js"
4034
+ "build",
4035
+ "run.js"
3917
4036
  ]
3918
4037
  },
3919
- "channel:view": {
4038
+ "build:view": {
3920
4039
  "aliases": [],
3921
4040
  "args": {
3922
- "name": {
3923
- "description": "Name of the channel to view",
3924
- "name": "name",
3925
- "required": false
4041
+ "BUILD_ID": {
4042
+ "name": "BUILD_ID"
3926
4043
  }
3927
4044
  },
3928
- "description": "view a channel",
4045
+ "description": "view a build for your project",
3929
4046
  "flags": {
3930
4047
  "json": {
3931
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4048
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
3932
4049
  "name": "json",
3933
4050
  "allowNo": false,
3934
4051
  "type": "boolean"
3935
- },
3936
- "non-interactive": {
3937
- "description": "Run the command in non-interactive mode.",
3938
- "name": "non-interactive",
3939
- "noCacheDefault": true,
3940
- "allowNo": false,
3941
- "type": "boolean"
3942
- },
3943
- "offset": {
3944
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
3945
- "name": "offset",
3946
- "hasDynamicHelp": false,
3947
- "multiple": false,
3948
- "type": "option"
3949
- },
3950
- "limit": {
3951
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
3952
- "name": "limit",
3953
- "hasDynamicHelp": false,
3954
- "multiple": false,
3955
- "type": "option"
3956
4052
  }
3957
4053
  },
3958
4054
  "hasDynamicHelp": false,
3959
4055
  "hiddenAliases": [],
3960
- "id": "channel:view",
4056
+ "id": "build:view",
3961
4057
  "pluginAlias": "eas-cli",
3962
4058
  "pluginName": "eas-cli",
3963
4059
  "pluginType": "core",
@@ -4005,13 +4101,14 @@
4005
4101
  },
4006
4102
  "contextDefinition": {
4007
4103
  "projectId": {},
4008
- "loggedIn": {}
4104
+ "loggedIn": {},
4105
+ "vcsClient": {}
4009
4106
  },
4010
4107
  "isESM": false,
4011
4108
  "relativePath": [
4012
4109
  "build",
4013
4110
  "commands",
4014
- "channel",
4111
+ "build",
4015
4112
  "view.js"
4016
4113
  ]
4017
4114
  },
@@ -6973,6 +7070,101 @@
6973
7070
  "routes.js"
6974
7071
  ]
6975
7072
  },
7073
+ "observe:session": {
7074
+ "aliases": [],
7075
+ "args": {
7076
+ "sessionId": {
7077
+ "description": "Session ID to inspect",
7078
+ "name": "sessionId",
7079
+ "required": true
7080
+ }
7081
+ },
7082
+ "description": "display the timeline of metric and log events for a specific session",
7083
+ "flags": {
7084
+ "project-id": {
7085
+ "description": "EAS project ID (defaults to the project ID of the current directory)",
7086
+ "name": "project-id",
7087
+ "hasDynamicHelp": false,
7088
+ "multiple": false,
7089
+ "type": "option"
7090
+ },
7091
+ "json": {
7092
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
7093
+ "name": "json",
7094
+ "allowNo": false,
7095
+ "type": "boolean"
7096
+ },
7097
+ "non-interactive": {
7098
+ "description": "Run the command in non-interactive mode.",
7099
+ "name": "non-interactive",
7100
+ "noCacheDefault": true,
7101
+ "allowNo": false,
7102
+ "type": "boolean"
7103
+ }
7104
+ },
7105
+ "hasDynamicHelp": false,
7106
+ "hiddenAliases": [],
7107
+ "id": "observe:session",
7108
+ "pluginAlias": "eas-cli",
7109
+ "pluginName": "eas-cli",
7110
+ "pluginType": "core",
7111
+ "strict": true,
7112
+ "enableJsonFlag": false,
7113
+ "ContextOptions": {
7114
+ "LoggedIn": {
7115
+ "loggedIn": {}
7116
+ },
7117
+ "MaybeLoggedIn": {
7118
+ "maybeLoggedIn": {}
7119
+ },
7120
+ "DynamicLoggedIn": {
7121
+ "getDynamicLoggedInAsync": {}
7122
+ },
7123
+ "SessionManagment": {
7124
+ "sessionManager": {}
7125
+ },
7126
+ "OptionalProjectConfig": {
7127
+ "optionalPrivateProjectConfig": {}
7128
+ },
7129
+ "ProjectDir": {
7130
+ "projectDir": {}
7131
+ },
7132
+ "DynamicProjectConfig": {
7133
+ "getDynamicPublicProjectConfigAsync": {},
7134
+ "getDynamicPrivateProjectConfigAsync": {}
7135
+ },
7136
+ "ProjectConfig": {
7137
+ "loggedIn": {},
7138
+ "privateProjectConfig": {}
7139
+ },
7140
+ "Analytics": {
7141
+ "analytics": {}
7142
+ },
7143
+ "Vcs": {
7144
+ "vcsClient": {}
7145
+ },
7146
+ "ServerSideEnvironmentVariables": {
7147
+ "getServerSideEnvironmentVariablesAsync": {}
7148
+ },
7149
+ "ProjectId": {
7150
+ "projectId": {}
7151
+ }
7152
+ },
7153
+ "contextDefinition": {
7154
+ "projectId": {},
7155
+ "loggedIn": {}
7156
+ },
7157
+ "loggedInOnlyContextDefinition": {
7158
+ "loggedIn": {}
7159
+ },
7160
+ "isESM": false,
7161
+ "relativePath": [
7162
+ "build",
7163
+ "commands",
7164
+ "observe",
7165
+ "session.js"
7166
+ ]
7167
+ },
6976
7168
  "observe:versions": {
6977
7169
  "aliases": [],
6978
7170
  "args": {},
@@ -9669,7 +9861,7 @@
9669
9861
  "aliases": [],
9670
9862
  "args": {
9671
9863
  "groupId": {
9672
- "description": "The ID of an update group.",
9864
+ "description": "The ID of an update group, or the ID of a platform-specific update.",
9673
9865
  "name": "groupId",
9674
9866
  "required": true
9675
9867
  }
@@ -11766,6 +11958,289 @@
11766
11958
  "status.js"
11767
11959
  ]
11768
11960
  },
11961
+ "integrations:posthog:connect": {
11962
+ "aliases": [],
11963
+ "args": {},
11964
+ "description": "connect PostHog to your Expo project",
11965
+ "flags": {
11966
+ "json": {
11967
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
11968
+ "name": "json",
11969
+ "allowNo": false,
11970
+ "type": "boolean"
11971
+ },
11972
+ "non-interactive": {
11973
+ "description": "Run the command in non-interactive mode.",
11974
+ "name": "non-interactive",
11975
+ "noCacheDefault": true,
11976
+ "allowNo": false,
11977
+ "type": "boolean"
11978
+ },
11979
+ "region": {
11980
+ "description": "PostHog region",
11981
+ "name": "region",
11982
+ "hasDynamicHelp": false,
11983
+ "multiple": false,
11984
+ "options": [
11985
+ "US",
11986
+ "EU"
11987
+ ],
11988
+ "type": "option"
11989
+ },
11990
+ "session-replay": {
11991
+ "description": "Set up PostHog session replay (default: yes)",
11992
+ "name": "session-replay",
11993
+ "allowNo": true,
11994
+ "type": "boolean"
11995
+ },
11996
+ "error-tracking": {
11997
+ "description": "Set up PostHog error tracking / source maps (requires a personal API key)",
11998
+ "name": "error-tracking",
11999
+ "allowNo": true,
12000
+ "type": "boolean"
12001
+ },
12002
+ "posthog-cli-api-key": {
12003
+ "description": "PostHog personal API key for error-tracking source-map uploads (enables error tracking non-interactively)",
12004
+ "name": "posthog-cli-api-key",
12005
+ "hasDynamicHelp": false,
12006
+ "multiple": false,
12007
+ "type": "option"
12008
+ },
12009
+ "overwrite": {
12010
+ "description": "Overwrite existing PostHog environment variables without prompting",
12011
+ "name": "overwrite",
12012
+ "allowNo": false,
12013
+ "type": "boolean"
12014
+ }
12015
+ },
12016
+ "hasDynamicHelp": false,
12017
+ "hiddenAliases": [],
12018
+ "id": "integrations:posthog:connect",
12019
+ "pluginAlias": "eas-cli",
12020
+ "pluginName": "eas-cli",
12021
+ "pluginType": "core",
12022
+ "strict": true,
12023
+ "enableJsonFlag": false,
12024
+ "ContextOptions": {
12025
+ "LoggedIn": {
12026
+ "loggedIn": {}
12027
+ },
12028
+ "MaybeLoggedIn": {
12029
+ "maybeLoggedIn": {}
12030
+ },
12031
+ "DynamicLoggedIn": {
12032
+ "getDynamicLoggedInAsync": {}
12033
+ },
12034
+ "SessionManagment": {
12035
+ "sessionManager": {}
12036
+ },
12037
+ "OptionalProjectConfig": {
12038
+ "optionalPrivateProjectConfig": {}
12039
+ },
12040
+ "ProjectDir": {
12041
+ "projectDir": {}
12042
+ },
12043
+ "DynamicProjectConfig": {
12044
+ "getDynamicPublicProjectConfigAsync": {},
12045
+ "getDynamicPrivateProjectConfigAsync": {}
12046
+ },
12047
+ "ProjectConfig": {
12048
+ "loggedIn": {},
12049
+ "privateProjectConfig": {}
12050
+ },
12051
+ "Analytics": {
12052
+ "analytics": {}
12053
+ },
12054
+ "Vcs": {
12055
+ "vcsClient": {}
12056
+ },
12057
+ "ServerSideEnvironmentVariables": {
12058
+ "getServerSideEnvironmentVariablesAsync": {}
12059
+ },
12060
+ "ProjectId": {
12061
+ "projectId": {}
12062
+ }
12063
+ },
12064
+ "contextDefinition": {
12065
+ "loggedIn": {},
12066
+ "privateProjectConfig": {}
12067
+ },
12068
+ "isESM": false,
12069
+ "relativePath": [
12070
+ "build",
12071
+ "commands",
12072
+ "integrations",
12073
+ "posthog",
12074
+ "connect.js"
12075
+ ]
12076
+ },
12077
+ "integrations:posthog:dashboard": {
12078
+ "aliases": [],
12079
+ "args": {},
12080
+ "description": "open the PostHog dashboard for the linked PostHog project",
12081
+ "flags": {
12082
+ "json": {
12083
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
12084
+ "name": "json",
12085
+ "allowNo": false,
12086
+ "type": "boolean"
12087
+ },
12088
+ "non-interactive": {
12089
+ "description": "Run the command in non-interactive mode.",
12090
+ "name": "non-interactive",
12091
+ "noCacheDefault": true,
12092
+ "allowNo": false,
12093
+ "type": "boolean"
12094
+ }
12095
+ },
12096
+ "hasDynamicHelp": false,
12097
+ "hiddenAliases": [],
12098
+ "id": "integrations:posthog:dashboard",
12099
+ "pluginAlias": "eas-cli",
12100
+ "pluginName": "eas-cli",
12101
+ "pluginType": "core",
12102
+ "strict": true,
12103
+ "enableJsonFlag": false,
12104
+ "ContextOptions": {
12105
+ "LoggedIn": {
12106
+ "loggedIn": {}
12107
+ },
12108
+ "MaybeLoggedIn": {
12109
+ "maybeLoggedIn": {}
12110
+ },
12111
+ "DynamicLoggedIn": {
12112
+ "getDynamicLoggedInAsync": {}
12113
+ },
12114
+ "SessionManagment": {
12115
+ "sessionManager": {}
12116
+ },
12117
+ "OptionalProjectConfig": {
12118
+ "optionalPrivateProjectConfig": {}
12119
+ },
12120
+ "ProjectDir": {
12121
+ "projectDir": {}
12122
+ },
12123
+ "DynamicProjectConfig": {
12124
+ "getDynamicPublicProjectConfigAsync": {},
12125
+ "getDynamicPrivateProjectConfigAsync": {}
12126
+ },
12127
+ "ProjectConfig": {
12128
+ "loggedIn": {},
12129
+ "privateProjectConfig": {}
12130
+ },
12131
+ "Analytics": {
12132
+ "analytics": {}
12133
+ },
12134
+ "Vcs": {
12135
+ "vcsClient": {}
12136
+ },
12137
+ "ServerSideEnvironmentVariables": {
12138
+ "getServerSideEnvironmentVariablesAsync": {}
12139
+ },
12140
+ "ProjectId": {
12141
+ "projectId": {}
12142
+ }
12143
+ },
12144
+ "contextDefinition": {
12145
+ "loggedIn": {},
12146
+ "privateProjectConfig": {}
12147
+ },
12148
+ "isESM": false,
12149
+ "relativePath": [
12150
+ "build",
12151
+ "commands",
12152
+ "integrations",
12153
+ "posthog",
12154
+ "dashboard.js"
12155
+ ]
12156
+ },
12157
+ "integrations:posthog:disconnect": {
12158
+ "aliases": [],
12159
+ "args": {},
12160
+ "description": "remove the PostHog project link for the current Expo app from EAS servers",
12161
+ "flags": {
12162
+ "json": {
12163
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
12164
+ "name": "json",
12165
+ "allowNo": false,
12166
+ "type": "boolean"
12167
+ },
12168
+ "non-interactive": {
12169
+ "description": "Run the command in non-interactive mode.",
12170
+ "name": "non-interactive",
12171
+ "noCacheDefault": true,
12172
+ "allowNo": false,
12173
+ "type": "boolean"
12174
+ },
12175
+ "yes": {
12176
+ "char": "y",
12177
+ "description": "Skip confirmation prompt",
12178
+ "name": "yes",
12179
+ "allowNo": false,
12180
+ "type": "boolean"
12181
+ }
12182
+ },
12183
+ "hasDynamicHelp": false,
12184
+ "hiddenAliases": [],
12185
+ "id": "integrations:posthog:disconnect",
12186
+ "pluginAlias": "eas-cli",
12187
+ "pluginName": "eas-cli",
12188
+ "pluginType": "core",
12189
+ "strict": true,
12190
+ "enableJsonFlag": false,
12191
+ "ContextOptions": {
12192
+ "LoggedIn": {
12193
+ "loggedIn": {}
12194
+ },
12195
+ "MaybeLoggedIn": {
12196
+ "maybeLoggedIn": {}
12197
+ },
12198
+ "DynamicLoggedIn": {
12199
+ "getDynamicLoggedInAsync": {}
12200
+ },
12201
+ "SessionManagment": {
12202
+ "sessionManager": {}
12203
+ },
12204
+ "OptionalProjectConfig": {
12205
+ "optionalPrivateProjectConfig": {}
12206
+ },
12207
+ "ProjectDir": {
12208
+ "projectDir": {}
12209
+ },
12210
+ "DynamicProjectConfig": {
12211
+ "getDynamicPublicProjectConfigAsync": {},
12212
+ "getDynamicPrivateProjectConfigAsync": {}
12213
+ },
12214
+ "ProjectConfig": {
12215
+ "loggedIn": {},
12216
+ "privateProjectConfig": {}
12217
+ },
12218
+ "Analytics": {
12219
+ "analytics": {}
12220
+ },
12221
+ "Vcs": {
12222
+ "vcsClient": {}
12223
+ },
12224
+ "ServerSideEnvironmentVariables": {
12225
+ "getServerSideEnvironmentVariablesAsync": {}
12226
+ },
12227
+ "ProjectId": {
12228
+ "projectId": {}
12229
+ }
12230
+ },
12231
+ "contextDefinition": {
12232
+ "loggedIn": {},
12233
+ "privateProjectConfig": {}
12234
+ },
12235
+ "isESM": false,
12236
+ "relativePath": [
12237
+ "build",
12238
+ "commands",
12239
+ "integrations",
12240
+ "posthog",
12241
+ "disconnect.js"
12242
+ ]
12243
+ },
11769
12244
  "integrations:convex:connect": {
11770
12245
  "aliases": [],
11771
12246
  "args": {},
@@ -12728,5 +13203,5 @@
12728
13203
  ]
12729
13204
  }
12730
13205
  },
12731
- "version": "20.2.0"
13206
+ "version": "20.4.0"
12732
13207
  }