eas-cli 16.27.0 → 16.30.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 (357) hide show
  1. package/README.md +97 -94
  2. package/build/analytics/AnalyticsManager.js +4 -4
  3. package/build/analytics/common.js +1 -2
  4. package/build/api.js +5 -5
  5. package/build/branch/delete.d.ts +5 -0
  6. package/build/branch/delete.js +23 -0
  7. package/build/branch/queries.js +5 -5
  8. package/build/branch/utils.js +2 -2
  9. package/build/build/android/build.js +3 -4
  10. package/build/build/android/graphql.js +1 -2
  11. package/build/build/android/prepareJob.js +1 -2
  12. package/build/build/android/syncProjectConfiguration.js +2 -3
  13. package/build/build/android/version.js +6 -6
  14. package/build/build/build.js +3 -4
  15. package/build/build/configure.js +4 -5
  16. package/build/build/context.d.ts +1 -0
  17. package/build/build/createContext.js +2 -2
  18. package/build/build/evaluateConfigWithEnvVarsAsync.js +1 -2
  19. package/build/build/graphql.js +7 -7
  20. package/build/build/ios/build.js +2 -3
  21. package/build/build/ios/credentials.js +2 -3
  22. package/build/build/ios/graphql.js +2 -3
  23. package/build/build/ios/prepareJob.js +2 -3
  24. package/build/build/ios/syncProjectConfiguration.js +1 -2
  25. package/build/build/ios/version.js +10 -10
  26. package/build/build/local.js +2 -2
  27. package/build/build/metadata.js +3 -4
  28. package/build/build/queries.js +4 -4
  29. package/build/build/runBuildAndSubmit.js +12 -3
  30. package/build/build/utils/appJson.js +2 -3
  31. package/build/build/utils/credentials.js +1 -2
  32. package/build/build/utils/devClient.js +1 -2
  33. package/build/build/utils/formatBuild.js +2 -3
  34. package/build/build/utils/printBuildInfo.js +4 -5
  35. package/build/build/utils/repository.js +8 -9
  36. package/build/build/utils/resourceClass.js +1 -2
  37. package/build/build/utils/url.js +8 -9
  38. package/build/build/utils/version.js +2 -3
  39. package/build/build/validate.js +3 -4
  40. package/build/channel/branch-mapping.js +24 -24
  41. package/build/channel/delete.d.ts +5 -0
  42. package/build/channel/delete.js +23 -0
  43. package/build/channel/print-utils.js +2 -3
  44. package/build/channel/queries.js +8 -8
  45. package/build/channel/utils.js +1 -2
  46. package/build/commandUtils/builds.js +3 -4
  47. package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -2
  48. package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +2 -3
  49. package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -4
  50. package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +1 -2
  51. package/build/commandUtils/experienceParser.d.ts +6 -0
  52. package/build/commandUtils/experienceParser.js +42 -0
  53. package/build/commandUtils/new/commands.js +3 -4
  54. package/build/commandUtils/new/configs.js +11 -9
  55. package/build/commandUtils/new/projectFiles.js +6 -7
  56. package/build/commandUtils/new/utils.js +1 -2
  57. package/build/commandUtils/projectNameValidation.d.ts +8 -0
  58. package/build/commandUtils/projectNameValidation.js +30 -0
  59. package/build/commandUtils/workflow/buildProfileUtils.js +12 -13
  60. package/build/commandUtils/workflow/creation.js +5 -5
  61. package/build/commandUtils/workflow/fetchLogs.js +2 -3
  62. package/build/commandUtils/workflow/inputs.js +5 -5
  63. package/build/commandUtils/workflow/stateMachine.js +7 -7
  64. package/build/commandUtils/workflow/utils.js +12 -12
  65. package/build/commandUtils/workflow/validation.js +4 -5
  66. package/build/commands/branch/delete.js +6 -20
  67. package/build/commands/build/cancel.js +1 -2
  68. package/build/commands/build/delete.js +1 -2
  69. package/build/commands/build/index.js +1 -10
  70. package/build/commands/channel/delete.js +7 -23
  71. package/build/commands/channel/edit.js +1 -2
  72. package/build/commands/channel/pause.js +1 -2
  73. package/build/commands/channel/resume.js +1 -2
  74. package/build/commands/deploy/index.js +1 -1
  75. package/build/commands/project/init.js +3 -1
  76. package/build/commands/project/new.js +3 -4
  77. package/build/commands/update/index.d.ts +8 -0
  78. package/build/commands/update/index.js +39 -2
  79. package/build/commands/update/list.d.ts +3 -0
  80. package/build/commands/update/list.js +30 -1
  81. package/build/commands/update/revert-update-rollout.js +1 -2
  82. package/build/credentials/android/actions/BuildCredentialsUtils.js +6 -7
  83. package/build/credentials/android/api/GraphqlClient.js +21 -21
  84. package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.d.ts +2 -2
  85. package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +5 -5
  86. package/build/credentials/android/utils/googleServiceAccountKey.js +4 -4
  87. package/build/credentials/android/utils/keystore.js +2 -3
  88. package/build/credentials/android/utils/keystoreNew.js +3 -4
  89. package/build/credentials/android/utils/printCredentials.js +3 -4
  90. package/build/credentials/credentialsJson/read.js +3 -4
  91. package/build/credentials/credentialsJson/update.js +2 -3
  92. package/build/credentials/credentialsJson/utils.js +2 -3
  93. package/build/credentials/ios/actions/AppleTeamFormatting.js +1 -2
  94. package/build/credentials/ios/actions/AppleTeamUtils.js +1 -2
  95. package/build/credentials/ios/actions/AscApiKeyUtils.js +10 -10
  96. package/build/credentials/ios/actions/BuildCredentialsUtils.js +7 -8
  97. package/build/credentials/ios/actions/DeviceUtils.js +2 -3
  98. package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -5
  99. package/build/credentials/ios/actions/ProvisioningProfileUtils.js +2 -3
  100. package/build/credentials/ios/actions/PushKeyUtils.js +5 -6
  101. package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +2 -2
  102. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +6 -2
  103. package/build/credentials/ios/api/GraphqlClient.js +24 -25
  104. package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +5 -5
  105. package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +8 -8
  106. package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +5 -5
  107. package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +5 -5
  108. package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.d.ts +1 -1
  109. package/build/credentials/ios/appstore/AppStoreApi.d.ts +0 -2
  110. package/build/credentials/ios/appstore/Credentials.js +4 -5
  111. package/build/credentials/ios/appstore/Credentials.types.d.ts +0 -1
  112. package/build/credentials/ios/appstore/CredentialsUtils.js +6 -7
  113. package/build/credentials/ios/appstore/ascApiKey.d.ts +0 -1
  114. package/build/credentials/ios/appstore/ascApiKey.js +6 -7
  115. package/build/credentials/ios/appstore/authenticate.d.ts +0 -1
  116. package/build/credentials/ios/appstore/authenticate.js +4 -5
  117. package/build/credentials/ios/appstore/authenticateTypes.d.ts +0 -1
  118. package/build/credentials/ios/appstore/bundleId.d.ts +0 -1
  119. package/build/credentials/ios/appstore/bundleId.js +2 -3
  120. package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +0 -1
  121. package/build/credentials/ios/appstore/bundleIdCapabilities.js +3 -3
  122. package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +0 -1
  123. package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -2
  124. package/build/credentials/ios/appstore/capabilityList.d.ts +0 -1
  125. package/build/credentials/ios/appstore/contractMessages.d.ts +0 -1
  126. package/build/credentials/ios/appstore/contractMessages.js +2 -3
  127. package/build/credentials/ios/appstore/distributionCertificate.d.ts +0 -1
  128. package/build/credentials/ios/appstore/distributionCertificate.js +7 -7
  129. package/build/credentials/ios/appstore/ensureAppExists.d.ts +6 -1
  130. package/build/credentials/ios/appstore/ensureAppExists.js +55 -18
  131. package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +0 -1
  132. package/build/credentials/ios/appstore/ensureTestFlightGroup.js +1 -2
  133. package/build/credentials/ios/appstore/keychain.js +4 -4
  134. package/build/credentials/ios/appstore/provisioningProfile.d.ts +0 -1
  135. package/build/credentials/ios/appstore/provisioningProfile.js +5 -5
  136. package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +0 -1
  137. package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +1 -2
  138. package/build/credentials/ios/appstore/pushKey.js +4 -4
  139. package/build/credentials/ios/appstore/resolveCredentials.d.ts +0 -1
  140. package/build/credentials/ios/appstore/resolveCredentials.js +6 -7
  141. package/build/credentials/ios/credentials.d.ts +0 -1
  142. package/build/credentials/ios/credentials.js +2 -2
  143. package/build/credentials/ios/utils/authType.d.ts +0 -1
  144. package/build/credentials/ios/utils/authType.js +1 -2
  145. package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -2
  146. package/build/credentials/ios/utils/p12Certificate.d.ts +0 -1
  147. package/build/credentials/ios/utils/p12Certificate.js +3 -4
  148. package/build/credentials/ios/utils/printCredentials.js +3 -4
  149. package/build/credentials/ios/utils/provisioningProfile.js +5 -6
  150. package/build/credentials/ios/validators/validateAscApiKey.js +2 -3
  151. package/build/credentials/ios/validators/validateDistributionCertificate.js +1 -2
  152. package/build/credentials/ios/validators/validateProvisioningProfile.js +1 -2
  153. package/build/credentials/ios/validators/validatePushKey.js +1 -2
  154. package/build/credentials/manager/IosActions.js +4 -4
  155. package/build/credentials/manager/SelectPlatform.js +1 -1
  156. package/build/credentials/utils/promptForCredentials.js +3 -4
  157. package/build/devices/actions/create/currentMachineMethod.js +1 -2
  158. package/build/devices/actions/create/developerPortalMethod.d.ts +0 -1
  159. package/build/devices/actions/create/developerPortalMethod.js +2 -3
  160. package/build/devices/actions/create/inputMethod.js +1 -2
  161. package/build/devices/actions/create/registrationUrlMethod.js +1 -2
  162. package/build/devices/actions/create/utils.js +4 -5
  163. package/build/devices/context.js +1 -2
  164. package/build/devices/queries.js +4 -4
  165. package/build/devices/udids.js +2 -3
  166. package/build/devices/utils/formatDevice.js +2 -3
  167. package/build/fetch.d.ts +0 -1
  168. package/build/fetch.js +1 -1
  169. package/build/fingerprint/cli.js +3 -4
  170. package/build/fingerprint/diff.js +1 -2
  171. package/build/fingerprint/types.d.ts +0 -1
  172. package/build/fingerprint/utils.js +4 -5
  173. package/build/graphql/client.js +2 -2
  174. package/build/graphql/generated.d.ts +331 -103
  175. package/build/graphql/generated.js +45 -3
  176. package/build/graphql/mutations/PublishMutation.d.ts +2 -2
  177. package/build/graphql/queries/AccountUsageQuery.d.ts +1 -1
  178. package/build/graphql/queries/AppVersionQuery.d.ts +1 -1
  179. package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +1 -1
  180. package/build/graphql/queries/BranchQuery.d.ts +3 -3
  181. package/build/graphql/queries/BuildQuery.d.ts +3 -3
  182. package/build/graphql/queries/ChannelQuery.d.ts +2 -2
  183. package/build/graphql/queries/ChannelQuery.js +2 -2
  184. package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +12 -12
  185. package/build/graphql/queries/FingerprintQuery.d.ts +6 -6
  186. package/build/graphql/queries/PublishQuery.d.ts +1 -1
  187. package/build/graphql/queries/SubmissionQuery.d.ts +1 -1
  188. package/build/graphql/queries/UserQuery.d.ts +1 -1
  189. package/build/graphql/queries/WorkflowJobQuery.d.ts +2 -2
  190. package/build/graphql/queries/WorkflowRunQuery.d.ts +4 -4
  191. package/build/graphql/types/AppPlatform.js +2 -3
  192. package/build/log.js +2 -3
  193. package/build/metadata/apple/config/reader.d.ts +0 -1
  194. package/build/metadata/apple/config/writer.d.ts +0 -1
  195. package/build/metadata/apple/data.d.ts +0 -1
  196. package/build/metadata/apple/tasks/age-rating.d.ts +0 -1
  197. package/build/metadata/apple/tasks/age-rating.js +0 -1
  198. package/build/metadata/apple/tasks/app-info.d.ts +0 -1
  199. package/build/metadata/apple/tasks/app-info.js +15 -4
  200. package/build/metadata/apple/tasks/app-review-detail.d.ts +0 -1
  201. package/build/metadata/apple/tasks/app-review-detail.js +0 -1
  202. package/build/metadata/apple/tasks/app-version.d.ts +0 -1
  203. package/build/metadata/apple/tasks/app-version.js +15 -3
  204. package/build/metadata/apple/tasks/index.js +1 -2
  205. package/build/metadata/apple/types.d.ts +0 -1
  206. package/build/metadata/auth.d.ts +0 -1
  207. package/build/metadata/auth.js +1 -2
  208. package/build/metadata/config/resolve.js +4 -5
  209. package/build/metadata/config/validate.js +1 -2
  210. package/build/metadata/download.js +1 -2
  211. package/build/metadata/errors.js +3 -3
  212. package/build/metadata/upload.js +1 -2
  213. package/build/metadata/utils/ajv.js +2 -3
  214. package/build/metadata/utils/asc.d.ts +0 -1
  215. package/build/metadata/utils/date.js +1 -2
  216. package/build/metadata/utils/log.js +1 -2
  217. package/build/metadata/utils/retry.js +2 -3
  218. package/build/metadata/utils/telemetry.d.ts +0 -1
  219. package/build/metadata/utils/telemetry.js +2 -3
  220. package/build/onboarding/git.js +3 -4
  221. package/build/onboarding/installDependencies.js +3 -3
  222. package/build/onboarding/runCommand.js +1 -2
  223. package/build/ora.js +1 -2
  224. package/build/platform.d.ts +1 -0
  225. package/build/platform.js +28 -10
  226. package/build/project/android/applicationId.js +6 -6
  227. package/build/project/android/gradle.js +1 -2
  228. package/build/project/android/gradleUtils.js +4 -4
  229. package/build/project/android/versions.js +3 -3
  230. package/build/project/applicationIdentifier.js +1 -2
  231. package/build/project/customBuildConfig.js +3 -4
  232. package/build/project/expoConfig.js +5 -6
  233. package/build/project/expoSdk.js +1 -2
  234. package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +2 -3
  235. package/build/project/ios/bundleIdentifier.js +6 -6
  236. package/build/project/ios/entitlements.js +2 -3
  237. package/build/project/ios/exemptEncryption.js +1 -2
  238. package/build/project/ios/scheme.js +2 -3
  239. package/build/project/ios/target.d.ts +0 -1
  240. package/build/project/ios/target.js +8 -9
  241. package/build/project/ios/versions.js +3 -3
  242. package/build/project/maybeUploadAssetMapAsync.js +1 -2
  243. package/build/project/maybeUploadFingerprintAsync.js +1 -2
  244. package/build/project/metroConfig.js +1 -2
  245. package/build/project/projectUtils.js +15 -16
  246. package/build/project/publish.d.ts +15 -2
  247. package/build/project/publish.js +56 -29
  248. package/build/project/remoteVersionSource.js +6 -6
  249. package/build/project/resolveRuntimeVersionAsync.js +2 -3
  250. package/build/project/uploadAccountScopedFileAsync.js +1 -2
  251. package/build/project/uploadAccountScopedProjectSourceAsync.js +1 -2
  252. package/build/project/workflow.js +3 -4
  253. package/build/prompts.js +5 -6
  254. package/build/rollout/branch-mapping.js +14 -15
  255. package/build/rollout/utils.js +5 -6
  256. package/build/run/android/aapt.js +2 -3
  257. package/build/run/android/adb.js +8 -9
  258. package/build/run/android/emulator.js +6 -6
  259. package/build/run/android/run.js +1 -2
  260. package/build/run/android/sdk.d.ts +0 -1
  261. package/build/run/android/sdk.js +2 -2
  262. package/build/run/android/systemRequirements.js +1 -2
  263. package/build/run/ios/run.js +1 -2
  264. package/build/run/ios/simctl.js +1 -2
  265. package/build/run/ios/simulator.js +9 -10
  266. package/build/run/ios/systemRequirements.js +1 -2
  267. package/build/run/ios/xcode.js +5 -5
  268. package/build/run/ios/xcrun.js +3 -4
  269. package/build/run/run.js +2 -3
  270. package/build/run/utils.js +1 -2
  271. package/build/submit/ArchiveSource.js +3 -3
  272. package/build/submit/android/ServiceAccountSource.js +4 -4
  273. package/build/submit/commons.js +2 -3
  274. package/build/submit/context.js +1 -2
  275. package/build/submit/ios/AppProduce.js +1 -2
  276. package/build/submit/ios/AppSpecificPasswordSource.js +3 -3
  277. package/build/submit/ios/AscApiKeySource.js +4 -4
  278. package/build/submit/ios/utils/language.js +1 -2
  279. package/build/submit/submit.js +3 -4
  280. package/build/submit/utils/builds.js +1 -2
  281. package/build/submit/utils/errors.js +1 -2
  282. package/build/submit/utils/files.js +2 -3
  283. package/build/submit/utils/logs.js +1 -2
  284. package/build/submit/utils/summary.js +2 -3
  285. package/build/submit/utils/urls.js +2 -3
  286. package/build/submit/utils/wait.js +2 -3
  287. package/build/update/android/UpdatesModule.js +2 -3
  288. package/build/update/configure.js +4 -4
  289. package/build/update/delete.js +1 -2
  290. package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +1 -2
  291. package/build/update/ios/UpdatesModule.js +2 -3
  292. package/build/update/queries.d.ts +5 -3
  293. package/build/update/queries.js +12 -9
  294. package/build/update/republish.js +5 -6
  295. package/build/update/roll-back-to-embedded.js +1 -2
  296. package/build/update/utils.js +15 -15
  297. package/build/uploads.js +3 -4
  298. package/build/user/User.js +2 -3
  299. package/build/user/actions.js +1 -2
  300. package/build/user/expoSsoLauncher.js +1 -2
  301. package/build/user/fetchSessionSecretAndSsoUser.js +1 -2
  302. package/build/user/fetchSessionSecretAndUser.js +1 -2
  303. package/build/user/fetchUser.js +1 -2
  304. package/build/utils/code-signing.d.ts +0 -1
  305. package/build/utils/code-signing.js +7 -8
  306. package/build/utils/date.js +1 -2
  307. package/build/utils/download.js +2 -3
  308. package/build/utils/expoCli.js +4 -4
  309. package/build/utils/expoUpdatesCli.js +2 -2
  310. package/build/utils/expodash/areSetsEqual.js +1 -1
  311. package/build/utils/expodash/capitalize.js +1 -1
  312. package/build/utils/expodash/chunk.js +1 -1
  313. package/build/utils/expodash/differenceBy.js +1 -1
  314. package/build/utils/expodash/filter.js +1 -2
  315. package/build/utils/expodash/groupBy.js +1 -1
  316. package/build/utils/expodash/intersection.js +1 -1
  317. package/build/utils/expodash/mapMapAsync.js +1 -1
  318. package/build/utils/expodash/memoize.js +1 -2
  319. package/build/utils/expodash/pick.js +1 -1
  320. package/build/utils/expodash/sortBy.js +1 -1
  321. package/build/utils/expodash/uniq.js +1 -1
  322. package/build/utils/expodash/uniqBy.js +1 -1
  323. package/build/utils/expodash/zipObject.js +1 -1
  324. package/build/utils/files.js +2 -3
  325. package/build/utils/formatFields.js +1 -1
  326. package/build/utils/image.js +3 -3
  327. package/build/utils/json.js +2 -3
  328. package/build/utils/plist.d.ts +0 -1
  329. package/build/utils/plist.js +3 -4
  330. package/build/utils/pollForBackgroundJobReceiptAsync.js +2 -2
  331. package/build/utils/profiles.js +3 -4
  332. package/build/utils/progress.js +1 -2
  333. package/build/utils/promise.js +1 -2
  334. package/build/utils/prompts.js +8 -9
  335. package/build/utils/queries.js +2 -3
  336. package/build/utils/relay.js +4 -4
  337. package/build/utils/statuspageService.js +1 -2
  338. package/build/utils/timer.js +4 -5
  339. package/build/utils/usage/checkForOverages.js +4 -6
  340. package/build/utils/variableUtils.js +4 -5
  341. package/build/vcs/clients/git.js +1 -2
  342. package/build/vcs/git.js +5 -6
  343. package/build/vcs/index.js +1 -2
  344. package/build/vcs/local.js +2 -2
  345. package/build/webhooks/formatWebhook.js +1 -2
  346. package/build/webhooks/input.js +3 -4
  347. package/build/worker/assets.d.ts +0 -1
  348. package/build/worker/assets.js +6 -7
  349. package/build/worker/deployment.js +8 -9
  350. package/build/worker/mutations.d.ts +1 -1
  351. package/build/worker/queries.d.ts +4 -4
  352. package/build/worker/upload.d.ts +0 -2
  353. package/build/worker/upload.js +5 -6
  354. package/build/worker/utils/logs.js +5 -5
  355. package/build/worker/utils/multipart.js +3 -3
  356. package/oclif.manifest.json +35 -1
  357. package/package.json +13 -11
@@ -640,12 +640,6 @@ export type AccountNotificationPreferenceInput = {
640
640
  event: NotificationEvent;
641
641
  type: NotificationType;
642
642
  };
643
- export type AccountNotificationSubscriptionInput = {
644
- accountId: Scalars['ID']['input'];
645
- event: NotificationEvent;
646
- type: NotificationType;
647
- userId: Scalars['ID']['input'];
648
- };
649
643
  export type AccountQuery = {
650
644
  __typename?: 'AccountQuery';
651
645
  /** Query an Account by ID */
@@ -1161,6 +1155,7 @@ export type App = Project & {
1161
1155
  appStoreUrl?: Maybe<Scalars['String']['output']>;
1162
1156
  assetLimitPerUpdateGroup: Scalars['Int']['output'];
1163
1157
  branchesPaginated: AppBranchesConnection;
1158
+ buildProfiles: Array<Scalars['String']['output']>;
1164
1159
  /** (EAS Build) Builds associated with this app */
1165
1160
  builds: Array<Build>;
1166
1161
  buildsPaginated: AppBuildsConnection;
@@ -1235,6 +1230,7 @@ export type App = Project & {
1235
1230
  likedBy: Array<Maybe<User>>;
1236
1231
  logRocketProject?: Maybe<LogRocketProject>;
1237
1232
  name: Scalars['String']['output'];
1233
+ observe: AppObserve;
1238
1234
  ownerAccount: Account;
1239
1235
  /** @deprecated No longer supported */
1240
1236
  packageName: Scalars['String']['output'];
@@ -1325,6 +1321,7 @@ export type App = Project & {
1325
1321
  workflowRunGitBranchesPaginated: AppWorkflowRunGitBranchesConnection;
1326
1322
  workflowRunsPaginated: AppWorkflowRunsConnection;
1327
1323
  workflows: Array<Workflow>;
1324
+ workflowsInsights: AppWorkflowsInsights;
1328
1325
  };
1329
1326
  /** Represents an Exponent App (or Experience in legacy terms) */
1330
1327
  export type AppActivityTimelineProjectActivitiesArgs = {
@@ -1425,6 +1422,10 @@ export type AppLikedByArgs = {
1425
1422
  offset?: InputMaybe<Scalars['Int']['input']>;
1426
1423
  };
1427
1424
  /** Represents an Exponent App (or Experience in legacy terms) */
1425
+ export type AppProfileImageUrlArgs = {
1426
+ width?: InputMaybe<AppProfileImageWidth>;
1427
+ };
1428
+ /** Represents an Exponent App (or Experience in legacy terms) */
1428
1429
  export type AppRuntimesArgs = {
1429
1430
  after?: InputMaybe<Scalars['String']['input']>;
1430
1431
  before?: InputMaybe<Scalars['String']['input']>;
@@ -1709,12 +1710,88 @@ export type AppNotificationPreferenceInput = {
1709
1710
  event: NotificationEvent;
1710
1711
  type: NotificationType;
1711
1712
  };
1712
- export type AppNotificationSubscriptionInput = {
1713
- appId: Scalars['ID']['input'];
1714
- event: NotificationEvent;
1715
- type: NotificationType;
1716
- userId: Scalars['ID']['input'];
1713
+ export type AppObserve = {
1714
+ __typename?: 'AppObserve';
1715
+ byAppVersion: Array<AppVersionMetrics>;
1716
+ events: AppObserveEventsConnection;
1717
+ };
1718
+ export type AppObserveByAppVersionArgs = {
1719
+ eventNames?: InputMaybe<Array<AppObserveEventName>>;
1720
+ };
1721
+ export type AppObserveEventsArgs = {
1722
+ after?: InputMaybe<Scalars['String']['input']>;
1723
+ before?: InputMaybe<Scalars['String']['input']>;
1724
+ filter?: InputMaybe<AppObserveEventsFilter>;
1725
+ first?: InputMaybe<Scalars['Int']['input']>;
1726
+ last?: InputMaybe<Scalars['Int']['input']>;
1727
+ orderBy?: InputMaybe<AppObserveEventsOrderBy>;
1728
+ };
1729
+ export type AppObserveEvent = {
1730
+ __typename?: 'AppObserveEvent';
1731
+ appBuildNumber: Scalars['String']['output'];
1732
+ appIdentifier: Scalars['String']['output'];
1733
+ appName: Scalars['String']['output'];
1734
+ appVersion: Scalars['String']['output'];
1735
+ category: Scalars['String']['output'];
1736
+ clientVersion?: Maybe<Scalars['String']['output']>;
1737
+ countryCode?: Maybe<Scalars['String']['output']>;
1738
+ deviceLanguageTag?: Maybe<Scalars['String']['output']>;
1739
+ deviceModel: Scalars['String']['output'];
1740
+ deviceName?: Maybe<Scalars['String']['output']>;
1741
+ deviceOs: Scalars['String']['output'];
1742
+ deviceOsVersion: Scalars['String']['output'];
1743
+ easClientId: Scalars['String']['output'];
1744
+ eventBatchId: Scalars['ID']['output'];
1745
+ expoSdkVersion?: Maybe<Scalars['String']['output']>;
1746
+ id: Scalars['ID']['output'];
1747
+ ingestedAt?: Maybe<Scalars['DateTime']['output']>;
1748
+ metricName: Scalars['String']['output'];
1749
+ metricValue: Scalars['Float']['output'];
1750
+ name: Scalars['String']['output'];
1751
+ parentSessionId?: Maybe<Scalars['String']['output']>;
1752
+ reactNativeVersion?: Maybe<Scalars['String']['output']>;
1753
+ sessionId?: Maybe<Scalars['String']['output']>;
1754
+ tags: Scalars['JSON']['output'];
1755
+ timestamp: Scalars['DateTime']['output'];
1717
1756
  };
1757
+ export type AppObserveEventEdge = {
1758
+ __typename?: 'AppObserveEventEdge';
1759
+ cursor: Scalars['String']['output'];
1760
+ node: AppObserveEvent;
1761
+ };
1762
+ export declare enum AppObserveEventName {
1763
+ BundleLoadTime = "BUNDLE_LOAD_TIME",
1764
+ LaunchTime = "LAUNCH_TIME",
1765
+ LoadTime = "LOAD_TIME",
1766
+ TimeToFirstRender = "TIME_TO_FIRST_RENDER",
1767
+ TimeToInteractive = "TIME_TO_INTERACTIVE"
1768
+ }
1769
+ export type AppObserveEventsConnection = {
1770
+ __typename?: 'AppObserveEventsConnection';
1771
+ edges: Array<AppObserveEventEdge>;
1772
+ pageInfo: PageInfo;
1773
+ };
1774
+ export type AppObserveEventsFilter = {
1775
+ appVersion?: InputMaybe<Scalars['String']['input']>;
1776
+ eventName?: InputMaybe<AppObserveEventName>;
1777
+ platform?: InputMaybe<AppObservePlatform>;
1778
+ };
1779
+ export type AppObserveEventsOrderBy = {
1780
+ direction: AppObserveEventsOrderByDirection;
1781
+ field: AppObserveEventsOrderByField;
1782
+ };
1783
+ export declare enum AppObserveEventsOrderByDirection {
1784
+ Asc = "ASC",
1785
+ Desc = "DESC"
1786
+ }
1787
+ export declare enum AppObserveEventsOrderByField {
1788
+ MetricValue = "METRIC_VALUE",
1789
+ Timestamp = "TIMESTAMP"
1790
+ }
1791
+ export declare enum AppObservePlatform {
1792
+ Android = "ANDROID",
1793
+ Ios = "IOS"
1794
+ }
1718
1795
  export declare enum AppPlatform {
1719
1796
  Android = "ANDROID",
1720
1797
  Ios = "IOS"
@@ -1724,6 +1801,12 @@ export declare enum AppPrivacy {
1724
1801
  Public = "PUBLIC",
1725
1802
  Unlisted = "UNLISTED"
1726
1803
  }
1804
+ export declare enum AppProfileImageWidth {
1805
+ ExtraLarge = "EXTRA_LARGE",
1806
+ Large = "LARGE",
1807
+ Medium = "MEDIUM",
1808
+ Small = "SMALL"
1809
+ }
1727
1810
  export type AppPushNotifications = {
1728
1811
  __typename?: 'AppPushNotifications';
1729
1812
  id: Scalars['ID']['output'];
@@ -1949,6 +2032,12 @@ export type AppVersionInput = {
1949
2032
  runtimeVersion?: InputMaybe<Scalars['String']['input']>;
1950
2033
  storeVersion: Scalars['String']['input'];
1951
2034
  };
2035
+ export type AppVersionMetrics = {
2036
+ __typename?: 'AppVersionMetrics';
2037
+ android: Array<PlatformMetrics>;
2038
+ appVersion: Scalars['String']['output'];
2039
+ ios: Array<PlatformMetrics>;
2040
+ };
1952
2041
  export type AppVersionMutation = {
1953
2042
  __typename?: 'AppVersionMutation';
1954
2043
  /** Create an app version */
@@ -1971,6 +2060,7 @@ export type AppWorkflowRunEdge = {
1971
2060
  export type AppWorkflowRunFilterInput = {
1972
2061
  requestedGitRef?: InputMaybe<Scalars['String']['input']>;
1973
2062
  status?: InputMaybe<WorkflowRunStatus>;
2063
+ timeRange?: InputMaybe<WorkflowRunTimeRangeInput>;
1974
2064
  };
1975
2065
  export type AppWorkflowRunGitBranchEdge = {
1976
2066
  __typename?: 'AppWorkflowRunGitBranchEdge';
@@ -1987,11 +2077,36 @@ export type AppWorkflowRunGitBranchesConnection = {
1987
2077
  edges: Array<AppWorkflowRunGitBranchEdge>;
1988
2078
  pageInfo: PageInfo;
1989
2079
  };
2080
+ export type AppWorkflowRunTimeRangeInput = {
2081
+ earliest?: InputMaybe<Scalars['DateTime']['input']>;
2082
+ latest?: InputMaybe<Scalars['DateTime']['input']>;
2083
+ };
1990
2084
  export type AppWorkflowRunsConnection = {
1991
2085
  __typename?: 'AppWorkflowRunsConnection';
1992
2086
  edges: Array<AppWorkflowRunEdge>;
1993
2087
  pageInfo: PageInfo;
1994
2088
  };
2089
+ export type AppWorkflowsInsights = {
2090
+ __typename?: 'AppWorkflowsInsights';
2091
+ overviewMetrics: WorkflowsInsightsOverviewMetrics;
2092
+ runsOverTime: WorkflowsInsightsRunsOverTimeData;
2093
+ workflows: WorkflowsInsightsWorkflowConnection;
2094
+ };
2095
+ export type AppWorkflowsInsightsOverviewMetricsArgs = {
2096
+ filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
2097
+ timespan: WorkflowsInsightsTimespanInput;
2098
+ };
2099
+ export type AppWorkflowsInsightsRunsOverTimeArgs = {
2100
+ filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
2101
+ granularity: WorkflowsInsightsRunsOverTimeGranularity;
2102
+ timespan: WorkflowsInsightsTimespanInput;
2103
+ };
2104
+ export type AppWorkflowsInsightsWorkflowsArgs = {
2105
+ after?: InputMaybe<Scalars['String']['input']>;
2106
+ filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
2107
+ first: Scalars['Int']['input'];
2108
+ timespan: WorkflowsInsightsTimespanInput;
2109
+ };
1995
2110
  export type AppleAppIdentifier = {
1996
2111
  __typename?: 'AppleAppIdentifier';
1997
2112
  account: Account;
@@ -2230,6 +2345,7 @@ export type AppleTeam = {
2230
2345
  appleTeamName?: Maybe<Scalars['String']['output']>;
2231
2346
  appleTeamType?: Maybe<AppleTeamType>;
2232
2347
  id: Scalars['ID']['output'];
2348
+ lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
2233
2349
  };
2234
2350
  export type AppleTeamAppleAppIdentifiersArgs = {
2235
2351
  bundleIdentifier?: InputMaybe<Scalars['String']['input']>;
@@ -2253,6 +2369,8 @@ export type AppleTeamMutation = {
2253
2369
  __typename?: 'AppleTeamMutation';
2254
2370
  /** Create an Apple Team */
2255
2371
  createAppleTeam: AppleTeam;
2372
+ /** Delete an Apple Team in the background */
2373
+ scheduleAppleTeamDeletion: BackgroundJobReceipt;
2256
2374
  /** Update an Apple Team */
2257
2375
  updateAppleTeam: AppleTeam;
2258
2376
  };
@@ -2260,6 +2378,9 @@ export type AppleTeamMutationCreateAppleTeamArgs = {
2260
2378
  accountId: Scalars['ID']['input'];
2261
2379
  appleTeamInput: AppleTeamInput;
2262
2380
  };
2381
+ export type AppleTeamMutationScheduleAppleTeamDeletionArgs = {
2382
+ id: Scalars['ID']['input'];
2383
+ };
2263
2384
  export type AppleTeamMutationUpdateAppleTeamArgs = {
2264
2385
  appleTeamUpdateInput: AppleTeamUpdateInput;
2265
2386
  id: Scalars['ID']['input'];
@@ -2461,7 +2582,8 @@ export declare enum BackgroundJobResultType {
2461
2582
  AuditLogsExport = "AUDIT_LOGS_EXPORT",
2462
2583
  GithubBuild = "GITHUB_BUILD",
2463
2584
  UserAuditLogsExport = "USER_AUDIT_LOGS_EXPORT",
2464
- Void = "VOID"
2585
+ Void = "VOID",
2586
+ WorkflowsInsightsExport = "WORKFLOWS_INSIGHTS_EXPORT"
2465
2587
  }
2466
2588
  export declare enum BackgroundJobState {
2467
2589
  Failure = "FAILURE",
@@ -4877,6 +4999,17 @@ export type MeteredBillingStatus = {
4877
4999
  EAS_BUILD: Scalars['Boolean']['output'];
4878
5000
  EAS_UPDATE: Scalars['Boolean']['output'];
4879
5001
  };
5002
+ export type MetricStatistics = {
5003
+ __typename?: 'MetricStatistics';
5004
+ average?: Maybe<Scalars['Float']['output']>;
5005
+ count?: Maybe<Scalars['Int']['output']>;
5006
+ max?: Maybe<Scalars['Float']['output']>;
5007
+ median?: Maybe<Scalars['Float']['output']>;
5008
+ min?: Maybe<Scalars['Float']['output']>;
5009
+ p80?: Maybe<Scalars['Float']['output']>;
5010
+ p95?: Maybe<Scalars['Float']['output']>;
5011
+ p99?: Maybe<Scalars['Float']['output']>;
5012
+ };
4880
5013
  export type Notification = {
4881
5014
  __typename?: 'Notification';
4882
5015
  accountName: Scalars['String']['output'];
@@ -4918,37 +5051,6 @@ export type NotificationPreferenceMutationSetAccountNotificationPreferenceArgs =
4918
5051
  export type NotificationPreferenceMutationSetAppNotificationPreferenceArgs = {
4919
5052
  input: AppNotificationPreferenceInput;
4920
5053
  };
4921
- export type NotificationSubscription = {
4922
- __typename?: 'NotificationSubscription';
4923
- account?: Maybe<Account>;
4924
- actor?: Maybe<Actor>;
4925
- app?: Maybe<App>;
4926
- createdAt: Scalars['DateTime']['output'];
4927
- event: NotificationEvent;
4928
- id: Scalars['ID']['output'];
4929
- type: NotificationType;
4930
- };
4931
- export type NotificationSubscriptionFilter = {
4932
- accountId?: InputMaybe<Scalars['ID']['input']>;
4933
- appId?: InputMaybe<Scalars['ID']['input']>;
4934
- event?: InputMaybe<NotificationEvent>;
4935
- type?: InputMaybe<NotificationType>;
4936
- };
4937
- export type NotificationSubscriptionMutation = {
4938
- __typename?: 'NotificationSubscriptionMutation';
4939
- subscribeToEventForAccount: SubscribeToNotificationResult;
4940
- subscribeToEventForApp: SubscribeToNotificationResult;
4941
- unsubscribe: UnsubscribeFromNotificationResult;
4942
- };
4943
- export type NotificationSubscriptionMutationSubscribeToEventForAccountArgs = {
4944
- input: AccountNotificationSubscriptionInput;
4945
- };
4946
- export type NotificationSubscriptionMutationSubscribeToEventForAppArgs = {
4947
- input: AppNotificationSubscriptionInput;
4948
- };
4949
- export type NotificationSubscriptionMutationUnsubscribeArgs = {
4950
- id: Scalars['ID']['input'];
4951
- };
4952
5054
  export type NotificationThresholdExceeded = {
4953
5055
  __typename?: 'NotificationThresholdExceeded';
4954
5056
  count: Scalars['Int']['output'];
@@ -5045,6 +5147,12 @@ export type PinnedDashboardView = {
5045
5147
  view: DashboardViewPin;
5046
5148
  };
5047
5149
  export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
5150
+ export type PlatformMetrics = {
5151
+ __typename?: 'PlatformMetrics';
5152
+ category: Scalars['String']['output'];
5153
+ name: Scalars['String']['output'];
5154
+ statistics?: Maybe<MetricStatistics>;
5155
+ };
5048
5156
  export type Project = {
5049
5157
  description: Scalars['String']['output'];
5050
5158
  fullName: Scalars['String']['output'];
@@ -5337,11 +5445,6 @@ export type RootMutation = {
5337
5445
  me: MeMutation;
5338
5446
  /** Notification preference management */
5339
5447
  notificationPreference: NotificationPreferenceMutation;
5340
- /**
5341
- * Mutations that modify a NotificationSubscription
5342
- * @deprecated Use notificationPreference mutation instead
5343
- */
5344
- notificationSubscription: NotificationSubscriptionMutation;
5345
5448
  /** Mutations that create, update, and delete Robots */
5346
5449
  robot: RobotMutation;
5347
5450
  /** Mutations for Sentry installations */
@@ -5374,6 +5477,7 @@ export type RootMutation = {
5374
5477
  workflowJobApproval: WorkflowJobApprovalMutation;
5375
5478
  workflowRevision: WorkflowRevisionMutation;
5376
5479
  workflowRun: WorkflowRunMutation;
5480
+ workflowsInsights: WorkflowsInsightsMutation;
5377
5481
  };
5378
5482
  export type RootMutationAccountArgs = {
5379
5483
  accountName?: InputMaybe<Scalars['ID']['input']>;
@@ -5654,8 +5758,6 @@ export type SsoUser = Actor & UserActor & {
5654
5758
  lastName?: Maybe<Scalars['String']['output']>;
5655
5759
  /** @deprecated No longer supported */
5656
5760
  location?: Maybe<Scalars['String']['output']>;
5657
- /** @deprecated Use Account/App.viewerNotificationPreferences instead */
5658
- notificationSubscriptions: Array<NotificationSubscription>;
5659
5761
  pinnedApps: Array<App>;
5660
5762
  pinnedDashboardViews: Array<PinnedDashboardView>;
5661
5763
  preferences: UserPreferences;
@@ -5687,10 +5789,6 @@ export type SsoUserFeatureGatesArgs = {
5687
5789
  filter?: InputMaybe<Array<Scalars['String']['input']>>;
5688
5790
  };
5689
5791
  /** Represents a human SSO (not robot) actor. */
5690
- export type SsoUserNotificationSubscriptionsArgs = {
5691
- filter?: InputMaybe<NotificationSubscriptionFilter>;
5692
- };
5693
- /** Represents a human SSO (not robot) actor. */
5694
5792
  export type SsoUserSnacksArgs = {
5695
5793
  limit: Scalars['Int']['input'];
5696
5794
  offset: Scalars['Int']['input'];
@@ -6046,10 +6144,6 @@ export declare enum SubmissionStatus {
6046
6144
  InProgress = "IN_PROGRESS",
6047
6145
  InQueue = "IN_QUEUE"
6048
6146
  }
6049
- export type SubscribeToNotificationResult = {
6050
- __typename?: 'SubscribeToNotificationResult';
6051
- notificationSubscription: NotificationSubscription;
6052
- };
6053
6147
  export type SubscriptionDetails = {
6054
6148
  __typename?: 'SubscriptionDetails';
6055
6149
  addons: Array<AddonDetails>;
@@ -6105,10 +6199,6 @@ export type UniqueUsersOverTimeData = {
6105
6199
  __typename?: 'UniqueUsersOverTimeData';
6106
6200
  data: LineChartData;
6107
6201
  };
6108
- export type UnsubscribeFromNotificationResult = {
6109
- __typename?: 'UnsubscribeFromNotificationResult';
6110
- notificationSubscription: NotificationSubscription;
6111
- };
6112
6202
  export type Update = ActivityTimelineProjectActivity & {
6113
6203
  __typename?: 'Update';
6114
6204
  activityTimestamp: Scalars['DateTime']['output'];
@@ -6158,10 +6248,12 @@ export type UpdateBranch = {
6158
6248
  appId: Scalars['ID']['output'];
6159
6249
  createdAt: Scalars['DateTime']['output'];
6160
6250
  id: Scalars['ID']['output'];
6251
+ lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
6161
6252
  latestActivity: Scalars['DateTime']['output'];
6162
6253
  name: Scalars['String']['output'];
6163
6254
  runtimes: RuntimesConnection;
6164
6255
  updateGroups: Array<Array<Update>>;
6256
+ updateGroupsPaginated: UpdateGroupsConnection;
6165
6257
  updatedAt: Scalars['DateTime']['output'];
6166
6258
  updates: Array<Update>;
6167
6259
  };
@@ -6177,6 +6269,13 @@ export type UpdateBranchUpdateGroupsArgs = {
6177
6269
  limit: Scalars['Int']['input'];
6178
6270
  offset: Scalars['Int']['input'];
6179
6271
  };
6272
+ export type UpdateBranchUpdateGroupsPaginatedArgs = {
6273
+ after?: InputMaybe<Scalars['String']['input']>;
6274
+ before?: InputMaybe<Scalars['String']['input']>;
6275
+ filter?: InputMaybe<UpdatesFilterV2>;
6276
+ first?: InputMaybe<Scalars['Int']['input']>;
6277
+ last?: InputMaybe<Scalars['Int']['input']>;
6278
+ };
6180
6279
  export type UpdateBranchUpdatesArgs = {
6181
6280
  filter?: InputMaybe<UpdatesFilter>;
6182
6281
  limit: Scalars['Int']['input'];
@@ -6186,7 +6285,10 @@ export type UpdateBranchMutation = {
6186
6285
  __typename?: 'UpdateBranchMutation';
6187
6286
  /** Create an EAS branch for an app */
6188
6287
  createUpdateBranchForApp: UpdateBranch;
6189
- /** Delete an EAS branch and all of its updates as long as the branch is not being used by any channels */
6288
+ /**
6289
+ * Delete an EAS branch and all of its updates as long as the branch is not being used by any channels
6290
+ * @deprecated Use scheduleUpdateBranchDeletion instead
6291
+ */
6190
6292
  deleteUpdateBranch: DeleteUpdateBranchResult;
6191
6293
  /**
6192
6294
  * Edit an EAS branch. The branch can be specified either by its ID or
@@ -6195,6 +6297,8 @@ export type UpdateBranchMutation = {
6195
6297
  editUpdateBranch: UpdateBranch;
6196
6298
  /** Publish an update group to a branch */
6197
6299
  publishUpdateGroups: Array<Update>;
6300
+ /** Delete an EAS branch and all of its updates in the background */
6301
+ scheduleUpdateBranchDeletion: BackgroundJobReceipt;
6198
6302
  };
6199
6303
  export type UpdateBranchMutationCreateUpdateBranchForAppArgs = {
6200
6304
  appId: Scalars['ID']['input'];
@@ -6209,6 +6313,9 @@ export type UpdateBranchMutationEditUpdateBranchArgs = {
6209
6313
  export type UpdateBranchMutationPublishUpdateGroupsArgs = {
6210
6314
  publishUpdateGroupsInput: Array<PublishUpdateGroupInput>;
6211
6315
  };
6316
+ export type UpdateBranchMutationScheduleUpdateBranchDeletionArgs = {
6317
+ branchId: Scalars['ID']['input'];
6318
+ };
6212
6319
  export type UpdateChannel = {
6213
6320
  __typename?: 'UpdateChannel';
6214
6321
  app: App;
@@ -6217,6 +6324,7 @@ export type UpdateChannel = {
6217
6324
  createdAt: Scalars['DateTime']['output'];
6218
6325
  id: Scalars['ID']['output'];
6219
6326
  isPaused: Scalars['Boolean']['output'];
6327
+ lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
6220
6328
  latestRuntimes: ChannelRuntimesConnection;
6221
6329
  name: Scalars['String']['output'];
6222
6330
  runtimeInsights: UpdateChannelRuntimeInsights;
@@ -6242,7 +6350,10 @@ export type UpdateChannelMutation = {
6242
6350
  * stringified JSON supplied to the mutation as a variable.
6243
6351
  */
6244
6352
  createUpdateChannelForApp: UpdateChannel;
6245
- /** delete an EAS channel that doesn't point to any branches */
6353
+ /**
6354
+ * delete an EAS channel that doesn't point to any branches
6355
+ * @deprecated Use scheduleUpdateChannelDeletion instead
6356
+ */
6246
6357
  deleteUpdateChannel: DeleteUpdateChannelResult;
6247
6358
  /**
6248
6359
  * Edit an EAS channel.
@@ -6255,6 +6366,8 @@ export type UpdateChannelMutation = {
6255
6366
  pauseUpdateChannel: UpdateChannel;
6256
6367
  /** Resume updates for an EAS channel. */
6257
6368
  resumeUpdateChannel: UpdateChannel;
6369
+ /** Delete an EAS channel and all of its builds in the background */
6370
+ scheduleUpdateChannelDeletion: BackgroundJobReceipt;
6258
6371
  };
6259
6372
  export type UpdateChannelMutationCreateUpdateChannelForAppArgs = {
6260
6373
  appId: Scalars['ID']['input'];
@@ -6274,6 +6387,9 @@ export type UpdateChannelMutationPauseUpdateChannelArgs = {
6274
6387
  export type UpdateChannelMutationResumeUpdateChannelArgs = {
6275
6388
  channelId: Scalars['ID']['input'];
6276
6389
  };
6390
+ export type UpdateChannelMutationScheduleUpdateChannelDeletionArgs = {
6391
+ channelId: Scalars['ID']['input'];
6392
+ };
6277
6393
  export type UpdateChannelRuntimeInsights = {
6278
6394
  __typename?: 'UpdateChannelRuntimeInsights';
6279
6395
  cumulativeMetricsOverTime: ChannelRuntimeCumulativeMetricsOverTimeData;
@@ -6342,6 +6458,16 @@ export type UpdateGitHubJobRunTriggerInput = {
6342
6458
  export type UpdateGitHubRepositorySettingsInput = {
6343
6459
  baseDirectory: Scalars['String']['input'];
6344
6460
  };
6461
+ export type UpdateGroupEdge = {
6462
+ __typename?: 'UpdateGroupEdge';
6463
+ cursor: Scalars['String']['output'];
6464
+ node: Array<Update>;
6465
+ };
6466
+ export type UpdateGroupsConnection = {
6467
+ __typename?: 'UpdateGroupsConnection';
6468
+ edges: Array<UpdateGroupEdge>;
6469
+ pageInfo: PageInfo;
6470
+ };
6345
6471
  export type UpdateInfoGroup = {
6346
6472
  android?: InputMaybe<PartialManifest>;
6347
6473
  ios?: InputMaybe<PartialManifest>;
@@ -6421,7 +6547,10 @@ export type UpdateVexoAppInput = {
6421
6547
  export type UpdatesFilter = {
6422
6548
  platform?: InputMaybe<AppPlatform>;
6423
6549
  runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
6424
- sdkVersions?: InputMaybe<Array<Scalars['String']['input']>>;
6550
+ };
6551
+ export type UpdatesFilterV2 = {
6552
+ platform?: InputMaybe<AppPlatform>;
6553
+ runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
6425
6554
  };
6426
6555
  export type UpdatesMetricsData = {
6427
6556
  __typename?: 'UpdatesMetricsData';
@@ -6538,8 +6667,7 @@ export type User = Actor & UserActor & {
6538
6667
  lastName?: Maybe<Scalars['String']['output']>;
6539
6668
  /** @deprecated No longer supported */
6540
6669
  location?: Maybe<Scalars['String']['output']>;
6541
- /** @deprecated Use Account/App.viewerNotificationPreferences instead */
6542
- notificationSubscriptions: Array<NotificationSubscription>;
6670
+ newEmailPendingVerification?: Maybe<Scalars['String']['output']>;
6543
6671
  /** Pending UserInvitations for this user. Only resolves for the viewer. */
6544
6672
  pendingUserInvitations: Array<UserInvitation>;
6545
6673
  pinnedApps: Array<App>;
@@ -6575,10 +6703,6 @@ export type UserFeatureGatesArgs = {
6575
6703
  filter?: InputMaybe<Array<Scalars['String']['input']>>;
6576
6704
  };
6577
6705
  /** Represents a human (not robot) actor. */
6578
- export type UserNotificationSubscriptionsArgs = {
6579
- filter?: InputMaybe<NotificationSubscriptionFilter>;
6580
- };
6581
- /** Represents a human (not robot) actor. */
6582
6706
  export type UserSnacksArgs = {
6583
6707
  limit: Scalars['Int']['input'];
6584
6708
  offset: Scalars['Int']['input'];
@@ -6638,8 +6762,6 @@ export type UserActor = {
6638
6762
  lastName?: Maybe<Scalars['String']['output']>;
6639
6763
  /** @deprecated No longer supported */
6640
6764
  location?: Maybe<Scalars['String']['output']>;
6641
- /** @deprecated Use Account/App.viewerNotificationPreferences instead */
6642
- notificationSubscriptions: Array<NotificationSubscription>;
6643
6765
  pinnedApps: Array<App>;
6644
6766
  preferences: UserPreferences;
6645
6767
  /** Associated accounts */
@@ -6670,10 +6792,6 @@ export type UserActorFeatureGatesArgs = {
6670
6792
  filter?: InputMaybe<Array<Scalars['String']['input']>>;
6671
6793
  };
6672
6794
  /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
6673
- export type UserActorNotificationSubscriptionsArgs = {
6674
- filter?: InputMaybe<NotificationSubscriptionFilter>;
6675
- };
6676
- /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
6677
6795
  export type UserActorSnacksArgs = {
6678
6796
  limit: Scalars['Int']['input'];
6679
6797
  offset: Scalars['Int']['input'];
@@ -7604,11 +7722,16 @@ export type Workflow = {
7604
7722
  createdAt: Scalars['DateTime']['output'];
7605
7723
  fileName: Scalars['String']['output'];
7606
7724
  id: Scalars['ID']['output'];
7725
+ insights: WorkflowsInsightsWorkflowMetrics;
7607
7726
  name?: Maybe<Scalars['String']['output']>;
7608
7727
  revisionsPaginated: WorkflowRevisionsConnection;
7609
7728
  runsPaginated: WorkflowRunsConnection;
7610
7729
  updatedAt: Scalars['DateTime']['output'];
7611
7730
  };
7731
+ export type WorkflowInsightsArgs = {
7732
+ filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
7733
+ timespan: WorkflowsInsightsTimespanInput;
7734
+ };
7612
7735
  export type WorkflowRevisionsPaginatedArgs = {
7613
7736
  after?: InputMaybe<Scalars['String']['input']>;
7614
7737
  before?: InputMaybe<Scalars['String']['input']>;
@@ -7765,6 +7888,7 @@ export type WorkflowRevisionInput = {
7765
7888
  export type WorkflowRevisionMutation = {
7766
7889
  __typename?: 'WorkflowRevisionMutation';
7767
7890
  getOrCreateWorkflowRevisionFromGitRef: WorkflowRevision;
7891
+ getWorkflowRevisionsFromGitRef: Array<WorkflowRevision>;
7768
7892
  validateWorkflowYamlConfig: Scalars['Boolean']['output'];
7769
7893
  };
7770
7894
  export type WorkflowRevisionMutationGetOrCreateWorkflowRevisionFromGitRefArgs = {
@@ -7772,6 +7896,10 @@ export type WorkflowRevisionMutationGetOrCreateWorkflowRevisionFromGitRefArgs =
7772
7896
  fileName: Scalars['String']['input'];
7773
7897
  gitRef: Scalars['String']['input'];
7774
7898
  };
7899
+ export type WorkflowRevisionMutationGetWorkflowRevisionsFromGitRefArgs = {
7900
+ appId: Scalars['ID']['input'];
7901
+ gitRef: Scalars['String']['input'];
7902
+ };
7775
7903
  export type WorkflowRevisionMutationValidateWorkflowYamlConfigArgs = {
7776
7904
  appId: Scalars['ID']['input'];
7777
7905
  yamlConfig: Scalars['String']['input'];
@@ -7800,6 +7928,7 @@ export type WorkflowRun = ActivityTimelineProjectActivity & {
7800
7928
  gitCommitMessage?: Maybe<Scalars['String']['output']>;
7801
7929
  githubRepository?: Maybe<GitHubRepository>;
7802
7930
  id: Scalars['ID']['output'];
7931
+ inputs?: Maybe<Scalars['JSONObject']['output']>;
7803
7932
  jobs: Array<WorkflowJob>;
7804
7933
  name: Scalars['String']['output'];
7805
7934
  pullRequestNumber?: Maybe<Scalars['Int']['output']>;
@@ -7828,6 +7957,7 @@ export type WorkflowRunError = {
7828
7957
  export type WorkflowRunFilterInput = {
7829
7958
  requestedGitRef?: InputMaybe<Scalars['String']['input']>;
7830
7959
  status?: InputMaybe<WorkflowRunStatus>;
7960
+ timeRange?: InputMaybe<WorkflowRunTimeRangeInput>;
7831
7961
  };
7832
7962
  export type WorkflowRunGitBranchFilterInput = {
7833
7963
  searchTerm?: InputMaybe<Scalars['String']['input']>;
@@ -7875,6 +8005,10 @@ export declare enum WorkflowRunStatus {
7875
8005
  New = "NEW",
7876
8006
  Success = "SUCCESS"
7877
8007
  }
8008
+ export type WorkflowRunTimeRangeInput = {
8009
+ earliest?: InputMaybe<Scalars['DateTime']['input']>;
8010
+ latest?: InputMaybe<Scalars['DateTime']['input']>;
8011
+ };
7878
8012
  export declare enum WorkflowRunTriggerEventType {
7879
8013
  GithubPullRequestLabeled = "GITHUB_PULL_REQUEST_LABELED",
7880
8014
  GithubPullRequestOpened = "GITHUB_PULL_REQUEST_OPENED",
@@ -7889,6 +8023,80 @@ export type WorkflowRunsConnection = {
7889
8023
  edges: Array<WorkflowRunEdge>;
7890
8024
  pageInfo: PageInfo;
7891
8025
  };
8026
+ export declare enum WorkflowsInsightsExportFormat {
8027
+ Csv = "CSV",
8028
+ Ndjson = "NDJSON"
8029
+ }
8030
+ export type WorkflowsInsightsExportInput = {
8031
+ appId: Scalars['ID']['input'];
8032
+ filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
8033
+ format: WorkflowsInsightsExportFormat;
8034
+ timespan: WorkflowsInsightsTimespanInput;
8035
+ };
8036
+ export type WorkflowsInsightsFiltersInput = {
8037
+ gitRefRequested?: InputMaybe<Array<Scalars['String']['input']>>;
8038
+ statuses?: InputMaybe<Array<WorkflowRunStatus>>;
8039
+ triggerEventTypes?: InputMaybe<Array<WorkflowRunTriggerEventType>>;
8040
+ workflowIds?: InputMaybe<Array<Scalars['ID']['input']>>;
8041
+ };
8042
+ export type WorkflowsInsightsMetric = {
8043
+ __typename?: 'WorkflowsInsightsMetric';
8044
+ currentValue: Scalars['Float']['output'];
8045
+ previousValue: Scalars['Float']['output'];
8046
+ };
8047
+ export type WorkflowsInsightsMutation = {
8048
+ __typename?: 'WorkflowsInsightsMutation';
8049
+ exportWorkflowRuns: BackgroundJobReceipt;
8050
+ };
8051
+ export type WorkflowsInsightsMutationExportWorkflowRunsArgs = {
8052
+ input: WorkflowsInsightsExportInput;
8053
+ };
8054
+ export type WorkflowsInsightsOverviewMetrics = {
8055
+ __typename?: 'WorkflowsInsightsOverviewMetrics';
8056
+ activeWorkflows: WorkflowsInsightsMetric;
8057
+ failedRuns: WorkflowsInsightsMetric;
8058
+ successfulRuns: WorkflowsInsightsMetric;
8059
+ totalRuns: WorkflowsInsightsMetric;
8060
+ };
8061
+ export type WorkflowsInsightsRunsOverTimeData = {
8062
+ __typename?: 'WorkflowsInsightsRunsOverTimeData';
8063
+ lineChart: LineChartData;
8064
+ };
8065
+ export declare enum WorkflowsInsightsRunsOverTimeGranularity {
8066
+ Day = "DAY",
8067
+ Hour = "HOUR",
8068
+ Minute = "MINUTE"
8069
+ }
8070
+ export type WorkflowsInsightsTimespanInput = {
8071
+ end: Scalars['DateTime']['input'];
8072
+ start: Scalars['DateTime']['input'];
8073
+ };
8074
+ export type WorkflowsInsightsWorkflowConnection = {
8075
+ __typename?: 'WorkflowsInsightsWorkflowConnection';
8076
+ edges: Array<WorkflowsInsightsWorkflowEdge>;
8077
+ pageInfo: PageInfo;
8078
+ };
8079
+ export type WorkflowsInsightsWorkflowEdge = {
8080
+ __typename?: 'WorkflowsInsightsWorkflowEdge';
8081
+ cursor: Scalars['String']['output'];
8082
+ node: WorkflowsInsightsWorkflowNode;
8083
+ };
8084
+ export type WorkflowsInsightsWorkflowMetrics = {
8085
+ __typename?: 'WorkflowsInsightsWorkflowMetrics';
8086
+ failedRuns: WorkflowsInsightsMetric;
8087
+ lastRunAt?: Maybe<Scalars['DateTime']['output']>;
8088
+ successfulRuns: WorkflowsInsightsMetric;
8089
+ totalRuns: WorkflowsInsightsMetric;
8090
+ };
8091
+ export type WorkflowsInsightsWorkflowNode = {
8092
+ __typename?: 'WorkflowsInsightsWorkflowNode';
8093
+ failedRuns: Scalars['Int']['output'];
8094
+ lastRunAt: Scalars['DateTime']['output'];
8095
+ name: Scalars['String']['output'];
8096
+ successfulRuns: Scalars['Int']['output'];
8097
+ totalRuns: Scalars['Int']['output'];
8098
+ workflowId: Scalars['ID']['output'];
8099
+ };
7892
8100
  export type DeleteAndroidAppBuildCredentialsResult = {
7893
8101
  __typename?: 'deleteAndroidAppBuildCredentialsResult';
7894
8102
  id: Scalars['ID']['output'];
@@ -7905,6 +8113,29 @@ export type DeleteApplePushKeyResult = {
7905
8113
  __typename?: 'deleteApplePushKeyResult';
7906
8114
  id: Scalars['ID']['output'];
7907
8115
  };
8116
+ export type ScheduleBranchDeletionMutationVariables = Exact<{
8117
+ branchId: Scalars['ID']['input'];
8118
+ }>;
8119
+ export type ScheduleBranchDeletionMutation = {
8120
+ __typename?: 'RootMutation';
8121
+ updateBranch: {
8122
+ __typename?: 'UpdateBranchMutation';
8123
+ scheduleUpdateBranchDeletion: {
8124
+ __typename?: 'BackgroundJobReceipt';
8125
+ id: string;
8126
+ state: BackgroundJobState;
8127
+ tries: number;
8128
+ willRetry: boolean;
8129
+ resultId?: string | null;
8130
+ resultType: BackgroundJobResultType;
8131
+ resultData?: any | null;
8132
+ errorCode?: string | null;
8133
+ errorMessage?: string | null;
8134
+ createdAt: any;
8135
+ updatedAt: any;
8136
+ };
8137
+ };
8138
+ };
7908
8139
  export type CreateUpdateBranchForAppMutationVariables = Exact<{
7909
8140
  appId: Scalars['ID']['input'];
7910
8141
  name: Scalars['String']['input'];
@@ -7920,6 +8151,29 @@ export type CreateUpdateBranchForAppMutation = {
7920
8151
  };
7921
8152
  };
7922
8153
  };
8154
+ export type ScheduleChannelDeletionMutationVariables = Exact<{
8155
+ channelId: Scalars['ID']['input'];
8156
+ }>;
8157
+ export type ScheduleChannelDeletionMutation = {
8158
+ __typename?: 'RootMutation';
8159
+ updateChannel: {
8160
+ __typename?: 'UpdateChannelMutation';
8161
+ scheduleUpdateChannelDeletion: {
8162
+ __typename?: 'BackgroundJobReceipt';
8163
+ id: string;
8164
+ state: BackgroundJobState;
8165
+ tries: number;
8166
+ willRetry: boolean;
8167
+ resultId?: string | null;
8168
+ resultType: BackgroundJobResultType;
8169
+ resultData?: any | null;
8170
+ errorCode?: string | null;
8171
+ errorMessage?: string | null;
8172
+ createdAt: any;
8173
+ updatedAt: any;
8174
+ };
8175
+ };
8176
+ };
7923
8177
  export type CreateUpdateChannelOnAppMutationVariables = Exact<{
7924
8178
  appId: Scalars['ID']['input'];
7925
8179
  name: Scalars['String']['input'];
@@ -7956,19 +8210,6 @@ export type GetBranchInfoQuery = {
7956
8210
  };
7957
8211
  };
7958
8212
  };
7959
- export type DeleteUpdateBranchMutationVariables = Exact<{
7960
- branchId: Scalars['ID']['input'];
7961
- }>;
7962
- export type DeleteUpdateBranchMutation = {
7963
- __typename?: 'RootMutation';
7964
- updateBranch: {
7965
- __typename?: 'UpdateBranchMutation';
7966
- deleteUpdateBranch: {
7967
- __typename?: 'DeleteUpdateBranchResult';
7968
- id: string;
7969
- };
7970
- };
7971
- };
7972
8213
  export type EditUpdateBranchMutationVariables = Exact<{
7973
8214
  input: EditUpdateBranchInput;
7974
8215
  }>;
@@ -8010,19 +8251,6 @@ export type DeleteBuildMutation = {
8010
8251
  };
8011
8252
  };
8012
8253
  };
8013
- export type DeleteUpdateChannelMutationVariables = Exact<{
8014
- channelId: Scalars['ID']['input'];
8015
- }>;
8016
- export type DeleteUpdateChannelMutation = {
8017
- __typename?: 'RootMutation';
8018
- updateChannel: {
8019
- __typename?: 'UpdateChannelMutation';
8020
- deleteUpdateChannel: {
8021
- __typename?: 'DeleteUpdateChannelResult';
8022
- id: string;
8023
- };
8024
- };
8025
- };
8026
8254
  export type UpdateChannelBranchMappingMutationVariables = Exact<{
8027
8255
  channelId: Scalars['ID']['input'];
8028
8256
  branchMapping: Scalars['String']['input'];