@expo/cli 0.18.0 → 0.18.2

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 (653) hide show
  1. package/build/bin/cli +90 -114
  2. package/build/bin/cli.map +1 -1
  3. package/build/src/api/endpoint.js +11 -3
  4. package/build/src/api/endpoint.js.map +1 -1
  5. package/build/src/api/getExpoGoIntermediateCertificate.js +7 -4
  6. package/build/src/api/getExpoGoIntermediateCertificate.js.map +1 -1
  7. package/build/src/api/getExpoSchema.js +13 -11
  8. package/build/src/api/getExpoSchema.js.map +1 -1
  9. package/build/src/api/getNativeModuleVersions.js +7 -4
  10. package/build/src/api/getNativeModuleVersions.js.map +1 -1
  11. package/build/src/api/getProjectDevelopmentCertificate.js +7 -4
  12. package/build/src/api/getProjectDevelopmentCertificate.js.map +1 -1
  13. package/build/src/api/getVersions.js +7 -4
  14. package/build/src/api/getVersions.js.map +1 -1
  15. package/build/src/api/graphql/client.js +55 -35
  16. package/build/src/api/graphql/client.js.map +1 -1
  17. package/build/src/api/graphql/queries/AppQuery.js +9 -7
  18. package/build/src/api/graphql/queries/AppQuery.js.map +1 -1
  19. package/build/src/api/graphql/queries/UserQuery.js +7 -5
  20. package/build/src/api/graphql/queries/UserQuery.js.map +1 -1
  21. package/build/src/api/graphql/types/App.js +6 -4
  22. package/build/src/api/graphql/types/App.js.map +1 -1
  23. package/build/src/api/rest/cache/FileSystemCache.js +6 -4
  24. package/build/src/api/rest/cache/FileSystemCache.js.map +1 -1
  25. package/build/src/api/rest/cache/response.js +4 -1
  26. package/build/src/api/rest/cache/response.js.map +1 -1
  27. package/build/src/api/rest/cache/wrapFetchWithCache.js +21 -12
  28. package/build/src/api/rest/cache/wrapFetchWithCache.js.map +1 -1
  29. package/build/src/api/rest/client.js +36 -29
  30. package/build/src/api/rest/client.js.map +1 -1
  31. package/build/src/api/rest/wrapFetchWithBaseUrl.js +4 -1
  32. package/build/src/api/rest/wrapFetchWithBaseUrl.js.map +1 -1
  33. package/build/src/api/rest/wrapFetchWithOffline.js +5 -2
  34. package/build/src/api/rest/wrapFetchWithOffline.js.map +1 -1
  35. package/build/src/api/rest/wrapFetchWithProgress.js +40 -19
  36. package/build/src/api/rest/wrapFetchWithProgress.js.map +1 -1
  37. package/build/src/api/rest/wrapFetchWithProxy.js +7 -4
  38. package/build/src/api/rest/wrapFetchWithProxy.js.map +1 -1
  39. package/build/src/api/settings.js +9 -4
  40. package/build/src/api/settings.js.map +1 -1
  41. package/build/src/api/updateDevelopmentSession.js +16 -8
  42. package/build/src/api/updateDevelopmentSession.js.map +1 -1
  43. package/build/src/api/user/UserSettings.js +10 -8
  44. package/build/src/api/user/UserSettings.js.map +1 -1
  45. package/build/src/api/user/actions.js +66 -41
  46. package/build/src/api/user/actions.js.map +1 -1
  47. package/build/src/api/user/expoSsoLauncher.js +46 -25
  48. package/build/src/api/user/expoSsoLauncher.js.map +1 -1
  49. package/build/src/api/user/otp.js +70 -50
  50. package/build/src/api/user/otp.js.map +1 -1
  51. package/build/src/api/user/user.js +66 -41
  52. package/build/src/api/user/user.js.map +1 -1
  53. package/build/src/config/configAsync.js +62 -43
  54. package/build/src/config/configAsync.js.map +1 -1
  55. package/build/src/config/index.js +46 -30
  56. package/build/src/config/index.js.map +1 -1
  57. package/build/src/customize/customizeAsync.js +14 -11
  58. package/build/src/customize/customizeAsync.js.map +1 -1
  59. package/build/src/customize/generate.js +61 -46
  60. package/build/src/customize/generate.js.map +1 -1
  61. package/build/src/customize/index.js +10 -8
  62. package/build/src/customize/index.js.map +1 -1
  63. package/build/src/customize/resolveOptions.js +7 -4
  64. package/build/src/customize/resolveOptions.js.map +1 -1
  65. package/build/src/customize/templates.js +31 -34
  66. package/build/src/customize/templates.js.map +1 -1
  67. package/build/src/customize/typescript.js +43 -28
  68. package/build/src/customize/typescript.js.map +1 -1
  69. package/build/src/export/createMetadataJson.js +7 -6
  70. package/build/src/export/createMetadataJson.js.map +1 -1
  71. package/build/src/export/embed/exportEmbedAsync.js +51 -38
  72. package/build/src/export/embed/exportEmbedAsync.js.map +1 -1
  73. package/build/src/export/embed/index.js +48 -36
  74. package/build/src/export/embed/index.js.map +1 -1
  75. package/build/src/export/embed/resolveOptions.js +7 -4
  76. package/build/src/export/embed/resolveOptions.js.map +1 -1
  77. package/build/src/export/embed/xcodeCompilerLogger.js +20 -8
  78. package/build/src/export/embed/xcodeCompilerLogger.js.map +1 -1
  79. package/build/src/export/exportApp.js +84 -67
  80. package/build/src/export/exportApp.js.map +1 -1
  81. package/build/src/export/exportAssets.js +62 -43
  82. package/build/src/export/exportAssets.js.map +1 -1
  83. package/build/src/export/exportAsync.js +47 -26
  84. package/build/src/export/exportAsync.js.map +1 -1
  85. package/build/src/export/exportHermes.js +19 -11
  86. package/build/src/export/exportHermes.js.map +1 -1
  87. package/build/src/export/exportStaticAsync.js +49 -38
  88. package/build/src/export/exportStaticAsync.js.map +1 -1
  89. package/build/src/export/favicon.js +19 -11
  90. package/build/src/export/favicon.js.map +1 -1
  91. package/build/src/export/fork-bundleAsync.js +42 -39
  92. package/build/src/export/fork-bundleAsync.js.map +1 -1
  93. package/build/src/export/getPublicExpoManifest.js +9 -6
  94. package/build/src/export/getPublicExpoManifest.js.map +1 -1
  95. package/build/src/export/getResolvedLocales.js +7 -4
  96. package/build/src/export/getResolvedLocales.js.map +1 -1
  97. package/build/src/export/html.js +12 -4
  98. package/build/src/export/html.js.map +1 -1
  99. package/build/src/export/index.js +49 -33
  100. package/build/src/export/index.js.map +1 -1
  101. package/build/src/export/metroAssetLocalPath.js +22 -6
  102. package/build/src/export/metroAssetLocalPath.js.map +1 -1
  103. package/build/src/export/persistMetroAssets.js +38 -24
  104. package/build/src/export/persistMetroAssets.js.map +1 -1
  105. package/build/src/export/publicFolder.js +15 -7
  106. package/build/src/export/publicFolder.js.map +1 -1
  107. package/build/src/export/resolveOptions.js +19 -15
  108. package/build/src/export/resolveOptions.js.map +1 -1
  109. package/build/src/export/saveAssets.js +42 -38
  110. package/build/src/export/saveAssets.js.map +1 -1
  111. package/build/src/export/web/exportWebAsync.js +15 -12
  112. package/build/src/export/web/exportWebAsync.js.map +1 -1
  113. package/build/src/export/web/index.js +47 -31
  114. package/build/src/export/web/index.js.map +1 -1
  115. package/build/src/export/web/resolveOptions.js +4 -1
  116. package/build/src/export/web/resolveOptions.js.map +1 -1
  117. package/build/src/export/writeContents.js +12 -7
  118. package/build/src/export/writeContents.js.map +1 -1
  119. package/build/src/graphql/generated.js +141 -128
  120. package/build/src/graphql/generated.js.map +1 -1
  121. package/build/src/install/applyPlugins.js +43 -25
  122. package/build/src/install/applyPlugins.js.map +1 -1
  123. package/build/src/install/checkPackages.js +55 -35
  124. package/build/src/install/checkPackages.js.map +1 -1
  125. package/build/src/install/fixPackages.js +52 -35
  126. package/build/src/install/fixPackages.js.map +1 -1
  127. package/build/src/install/index.js +15 -13
  128. package/build/src/install/index.js.map +1 -1
  129. package/build/src/install/installAsync.js +90 -65
  130. package/build/src/install/installAsync.js.map +1 -1
  131. package/build/src/install/installExpoPackage.js +48 -27
  132. package/build/src/install/installExpoPackage.js.map +1 -1
  133. package/build/src/install/resolveOptions.js +8 -5
  134. package/build/src/install/resolveOptions.js.map +1 -1
  135. package/build/src/install/utils/autoAddConfigPlugins.js +15 -7
  136. package/build/src/install/utils/autoAddConfigPlugins.js.map +1 -1
  137. package/build/src/lint/ESlintPrerequisite.js +174 -0
  138. package/build/src/lint/ESlintPrerequisite.js.map +1 -0
  139. package/build/src/lint/index.js +66 -0
  140. package/build/src/lint/index.js.map +1 -0
  141. package/build/src/lint/lintAsync.js +33 -0
  142. package/build/src/lint/lintAsync.js.map +1 -0
  143. package/build/src/log.js +20 -14
  144. package/build/src/log.js.map +1 -1
  145. package/build/src/login/index.js +43 -25
  146. package/build/src/login/index.js.map +1 -1
  147. package/build/src/logout/index.js +43 -25
  148. package/build/src/logout/index.js.map +1 -1
  149. package/build/src/prebuild/clearNativeFolder.js +65 -42
  150. package/build/src/prebuild/clearNativeFolder.js.map +1 -1
  151. package/build/src/prebuild/configureProjectAsync.js +50 -29
  152. package/build/src/prebuild/configureProjectAsync.js.map +1 -1
  153. package/build/src/prebuild/copyTemplateFiles.js +19 -13
  154. package/build/src/prebuild/copyTemplateFiles.js.map +1 -1
  155. package/build/src/prebuild/ensureConfigAsync.js +54 -28
  156. package/build/src/prebuild/ensureConfigAsync.js.map +1 -1
  157. package/build/src/prebuild/index.js +52 -38
  158. package/build/src/prebuild/index.js.map +1 -1
  159. package/build/src/prebuild/prebuildAsync.js +68 -51
  160. package/build/src/prebuild/prebuildAsync.js.map +1 -1
  161. package/build/src/prebuild/renameTemplateAppName.js +15 -10
  162. package/build/src/prebuild/renameTemplateAppName.js.map +1 -1
  163. package/build/src/prebuild/resolveOptions.js +60 -35
  164. package/build/src/prebuild/resolveOptions.js.map +1 -1
  165. package/build/src/prebuild/resolveTemplate.js +66 -40
  166. package/build/src/prebuild/resolveTemplate.js.map +1 -1
  167. package/build/src/prebuild/updateFromTemplate.js +67 -44
  168. package/build/src/prebuild/updateFromTemplate.js.map +1 -1
  169. package/build/src/prebuild/updatePackageJson.js +70 -49
  170. package/build/src/prebuild/updatePackageJson.js.map +1 -1
  171. package/build/src/prebuild/validateTemplatePlatforms.js +44 -23
  172. package/build/src/prebuild/validateTemplatePlatforms.js.map +1 -1
  173. package/build/src/register/index.js +43 -25
  174. package/build/src/register/index.js.map +1 -1
  175. package/build/src/register/registerAsync.js +14 -11
  176. package/build/src/register/registerAsync.js.map +1 -1
  177. package/build/src/run/android/index.js +47 -31
  178. package/build/src/run/android/index.js.map +1 -1
  179. package/build/src/run/android/resolveDevice.js +9 -6
  180. package/build/src/run/android/resolveDevice.js.map +1 -1
  181. package/build/src/run/android/resolveGradlePropsAsync.js +10 -9
  182. package/build/src/run/android/resolveGradlePropsAsync.js.map +1 -1
  183. package/build/src/run/android/resolveInstallApkName.js +14 -12
  184. package/build/src/run/android/resolveInstallApkName.js.map +1 -1
  185. package/build/src/run/android/resolveLaunchProps.js +6 -3
  186. package/build/src/run/android/resolveLaunchProps.js.map +1 -1
  187. package/build/src/run/android/resolveOptions.js +12 -9
  188. package/build/src/run/android/resolveOptions.js.map +1 -1
  189. package/build/src/run/android/runAndroidAsync.js +27 -24
  190. package/build/src/run/android/runAndroidAsync.js.map +1 -1
  191. package/build/src/run/ensureNativeProject.js +11 -8
  192. package/build/src/run/ensureNativeProject.js.map +1 -1
  193. package/build/src/run/hints.js +15 -7
  194. package/build/src/run/hints.js.map +1 -1
  195. package/build/src/run/index.js +49 -35
  196. package/build/src/run/index.js.map +1 -1
  197. package/build/src/run/ios/XcodeBuild.js +75 -51
  198. package/build/src/run/ios/XcodeBuild.js.map +1 -1
  199. package/build/src/run/ios/appleDevice/AppleDevice.js +31 -24
  200. package/build/src/run/ios/appleDevice/AppleDevice.js.map +1 -1
  201. package/build/src/run/ios/appleDevice/ClientManager.js +66 -33
  202. package/build/src/run/ios/appleDevice/ClientManager.js.map +1 -1
  203. package/build/src/run/ios/appleDevice/client/AFCClient.js +73 -47
  204. package/build/src/run/ios/appleDevice/client/AFCClient.js.map +1 -1
  205. package/build/src/run/ios/appleDevice/client/DebugserverClient.js +53 -26
  206. package/build/src/run/ios/appleDevice/client/DebugserverClient.js.map +1 -1
  207. package/build/src/run/ios/appleDevice/client/InstallationProxyClient.js +15 -6
  208. package/build/src/run/ios/appleDevice/client/InstallationProxyClient.js.map +1 -1
  209. package/build/src/run/ios/appleDevice/client/LockdowndClient.js +54 -27
  210. package/build/src/run/ios/appleDevice/client/LockdowndClient.js.map +1 -1
  211. package/build/src/run/ios/appleDevice/client/MobileImageMounterClient.js +56 -30
  212. package/build/src/run/ios/appleDevice/client/MobileImageMounterClient.js.map +1 -1
  213. package/build/src/run/ios/appleDevice/client/ServiceClient.js +18 -4
  214. package/build/src/run/ios/appleDevice/client/ServiceClient.js.map +1 -1
  215. package/build/src/run/ios/appleDevice/client/UsbmuxdClient.js +22 -13
  216. package/build/src/run/ios/appleDevice/client/UsbmuxdClient.js.map +1 -1
  217. package/build/src/run/ios/appleDevice/installOnDeviceAsync.js +57 -31
  218. package/build/src/run/ios/appleDevice/installOnDeviceAsync.js.map +1 -1
  219. package/build/src/run/ios/appleDevice/protocol/AFCProtocol.js +79 -66
  220. package/build/src/run/ios/appleDevice/protocol/AFCProtocol.js.map +1 -1
  221. package/build/src/run/ios/appleDevice/protocol/AbstractProtocol.js +28 -14
  222. package/build/src/run/ios/appleDevice/protocol/AbstractProtocol.js.map +1 -1
  223. package/build/src/run/ios/appleDevice/protocol/GDBProtocol.js +24 -11
  224. package/build/src/run/ios/appleDevice/protocol/GDBProtocol.js.map +1 -1
  225. package/build/src/run/ios/appleDevice/protocol/LockdownProtocol.js +26 -13
  226. package/build/src/run/ios/appleDevice/protocol/LockdownProtocol.js.map +1 -1
  227. package/build/src/run/ios/appleDevice/protocol/UsbmuxProtocol.js +23 -10
  228. package/build/src/run/ios/appleDevice/protocol/UsbmuxProtocol.js.map +1 -1
  229. package/build/src/run/ios/codeSigning/Security.js +27 -20
  230. package/build/src/run/ios/codeSigning/Security.js.map +1 -1
  231. package/build/src/run/ios/codeSigning/configureCodeSigning.js +49 -28
  232. package/build/src/run/ios/codeSigning/configureCodeSigning.js.map +1 -1
  233. package/build/src/run/ios/codeSigning/resolveCertificateSigningIdentity.js +61 -36
  234. package/build/src/run/ios/codeSigning/resolveCertificateSigningIdentity.js.map +1 -1
  235. package/build/src/run/ios/codeSigning/settings.js +11 -3
  236. package/build/src/run/ios/codeSigning/settings.js.map +1 -1
  237. package/build/src/run/ios/codeSigning/simulatorCodeSigning.js +7 -5
  238. package/build/src/run/ios/codeSigning/simulatorCodeSigning.js.map +1 -1
  239. package/build/src/run/ios/codeSigning/xcodeCodeSigning.js +14 -8
  240. package/build/src/run/ios/codeSigning/xcodeCodeSigning.js.map +1 -1
  241. package/build/src/run/ios/index.js +50 -34
  242. package/build/src/run/ios/index.js.map +1 -1
  243. package/build/src/run/ios/launchApp.js +52 -31
  244. package/build/src/run/ios/launchApp.js.map +1 -1
  245. package/build/src/run/ios/options/promptDevice.js +17 -13
  246. package/build/src/run/ios/options/promptDevice.js.map +1 -1
  247. package/build/src/run/ios/options/resolveDevice.js +63 -39
  248. package/build/src/run/ios/options/resolveDevice.js.map +1 -1
  249. package/build/src/run/ios/options/resolveNativeScheme.js +57 -34
  250. package/build/src/run/ios/options/resolveNativeScheme.js.map +1 -1
  251. package/build/src/run/ios/options/resolveOptions.js +15 -12
  252. package/build/src/run/ios/options/resolveOptions.js.map +1 -1
  253. package/build/src/run/ios/options/resolveXcodeProject.js +6 -3
  254. package/build/src/run/ios/options/resolveXcodeProject.js.map +1 -1
  255. package/build/src/run/ios/runIosAsync.js +63 -42
  256. package/build/src/run/ios/runIosAsync.js.map +1 -1
  257. package/build/src/run/resolveBundlerProps.js +8 -5
  258. package/build/src/run/resolveBundlerProps.js.map +1 -1
  259. package/build/src/run/startBundler.js +47 -26
  260. package/build/src/run/startBundler.js.map +1 -1
  261. package/build/src/start/detectDevClient.js +6 -3
  262. package/build/src/start/detectDevClient.js.map +1 -1
  263. package/build/src/start/doctor/Prerequisite.js +15 -7
  264. package/build/src/start/doctor/Prerequisite.js.map +1 -1
  265. package/build/src/start/doctor/SecurityBinPrerequisite.js +7 -4
  266. package/build/src/start/doctor/SecurityBinPrerequisite.js.map +1 -1
  267. package/build/src/start/doctor/apple/SimulatorAppPrerequisite.js +44 -23
  268. package/build/src/start/doctor/apple/SimulatorAppPrerequisite.js.map +1 -1
  269. package/build/src/start/doctor/apple/XcodeDeveloperDiskImagePrerequisite.js +44 -23
  270. package/build/src/start/doctor/apple/XcodeDeveloperDiskImagePrerequisite.js.map +1 -1
  271. package/build/src/start/doctor/apple/XcodePrerequisite.js +61 -36
  272. package/build/src/start/doctor/apple/XcodePrerequisite.js.map +1 -1
  273. package/build/src/start/doctor/apple/XcrunPrerequisite.js +15 -12
  274. package/build/src/start/doctor/apple/XcrunPrerequisite.js.map +1 -1
  275. package/build/src/start/doctor/dependencies/bundledNativeModules.js +49 -28
  276. package/build/src/start/doctor/dependencies/bundledNativeModules.js.map +1 -1
  277. package/build/src/start/doctor/dependencies/ensureDependenciesAsync.js +98 -53
  278. package/build/src/start/doctor/dependencies/ensureDependenciesAsync.js.map +1 -1
  279. package/build/src/start/doctor/dependencies/getMissingPackages.js +17 -9
  280. package/build/src/start/doctor/dependencies/getMissingPackages.js.map +1 -1
  281. package/build/src/start/doctor/dependencies/getVersionedPackages.js +23 -15
  282. package/build/src/start/doctor/dependencies/getVersionedPackages.js.map +1 -1
  283. package/build/src/start/doctor/dependencies/resolvePackages.js +19 -13
  284. package/build/src/start/doctor/dependencies/resolvePackages.js.map +1 -1
  285. package/build/src/start/doctor/dependencies/validateDependenciesVersions.js +63 -41
  286. package/build/src/start/doctor/dependencies/validateDependenciesVersions.js.map +1 -1
  287. package/build/src/start/doctor/ngrok/ExternalModule.js +64 -39
  288. package/build/src/start/doctor/ngrok/ExternalModule.js.map +1 -1
  289. package/build/src/start/doctor/ngrok/NgrokResolver.js +12 -5
  290. package/build/src/start/doctor/ngrok/NgrokResolver.js.map +1 -1
  291. package/build/src/start/doctor/typescript/TypeScriptProjectPrerequisite.js +59 -41
  292. package/build/src/start/doctor/typescript/TypeScriptProjectPrerequisite.js.map +1 -1
  293. package/build/src/start/doctor/typescript/updateTSConfig.js +59 -36
  294. package/build/src/start/doctor/typescript/updateTSConfig.js.map +1 -1
  295. package/build/src/start/doctor/web/WebSupportProjectPrerequisite.js +57 -31
  296. package/build/src/start/doctor/web/WebSupportProjectPrerequisite.js.map +1 -1
  297. package/build/src/start/index.js +56 -42
  298. package/build/src/start/index.js.map +1 -1
  299. package/build/src/start/interface/KeyPressHandler.js +43 -22
  300. package/build/src/start/interface/KeyPressHandler.js.map +1 -1
  301. package/build/src/start/interface/commandsTable.js +60 -38
  302. package/build/src/start/interface/commandsTable.js.map +1 -1
  303. package/build/src/start/interface/interactiveActions.js +85 -68
  304. package/build/src/start/interface/interactiveActions.js.map +1 -1
  305. package/build/src/start/interface/startInterface.js +78 -57
  306. package/build/src/start/interface/startInterface.js.map +1 -1
  307. package/build/src/start/platforms/AppIdResolver.js +9 -6
  308. package/build/src/start/platforms/AppIdResolver.js.map +1 -1
  309. package/build/src/start/platforms/DeviceManager.js +41 -20
  310. package/build/src/start/platforms/DeviceManager.js.map +1 -1
  311. package/build/src/start/platforms/ExpoGoInstaller.js +55 -35
  312. package/build/src/start/platforms/ExpoGoInstaller.js.map +1 -1
  313. package/build/src/start/platforms/PlatformManager.js +19 -17
  314. package/build/src/start/platforms/PlatformManager.js.map +1 -1
  315. package/build/src/start/platforms/android/ADBServer.js +15 -12
  316. package/build/src/start/platforms/android/ADBServer.js.map +1 -1
  317. package/build/src/start/platforms/android/AndroidAppIdResolver.js +6 -4
  318. package/build/src/start/platforms/android/AndroidAppIdResolver.js.map +1 -1
  319. package/build/src/start/platforms/android/AndroidDeviceManager.js +70 -50
  320. package/build/src/start/platforms/android/AndroidDeviceManager.js.map +1 -1
  321. package/build/src/start/platforms/android/AndroidPlatformManager.js +9 -6
  322. package/build/src/start/platforms/android/AndroidPlatformManager.js.map +1 -1
  323. package/build/src/start/platforms/android/AndroidSdk.js +11 -8
  324. package/build/src/start/platforms/android/AndroidSdk.js.map +1 -1
  325. package/build/src/start/platforms/android/activateWindow.js +43 -22
  326. package/build/src/start/platforms/android/activateWindow.js.map +1 -1
  327. package/build/src/start/platforms/android/adb.js +73 -52
  328. package/build/src/start/platforms/android/adb.js.map +1 -1
  329. package/build/src/start/platforms/android/adbReverse.js +57 -31
  330. package/build/src/start/platforms/android/adbReverse.js.map +1 -1
  331. package/build/src/start/platforms/android/emulator.js +63 -42
  332. package/build/src/start/platforms/android/emulator.js.map +1 -1
  333. package/build/src/start/platforms/android/getDevices.js +11 -10
  334. package/build/src/start/platforms/android/getDevices.js.map +1 -1
  335. package/build/src/start/platforms/android/gradle.js +18 -11
  336. package/build/src/start/platforms/android/gradle.js.map +1 -1
  337. package/build/src/start/platforms/android/promptAndroidDevice.js +14 -14
  338. package/build/src/start/platforms/android/promptAndroidDevice.js.map +1 -1
  339. package/build/src/start/platforms/ios/AppleAppIdResolver.js +7 -4
  340. package/build/src/start/platforms/ios/AppleAppIdResolver.js.map +1 -1
  341. package/build/src/start/platforms/ios/AppleDeviceManager.js +80 -54
  342. package/build/src/start/platforms/ios/AppleDeviceManager.js.map +1 -1
  343. package/build/src/start/platforms/ios/ApplePlatformManager.js +7 -4
  344. package/build/src/start/platforms/ios/ApplePlatformManager.js.map +1 -1
  345. package/build/src/start/platforms/ios/assertSystemRequirements.js +11 -8
  346. package/build/src/start/platforms/ios/assertSystemRequirements.js.map +1 -1
  347. package/build/src/start/platforms/ios/ensureSimulatorAppRunning.js +50 -29
  348. package/build/src/start/platforms/ios/ensureSimulatorAppRunning.js.map +1 -1
  349. package/build/src/start/platforms/ios/getBestSimulator.js +53 -29
  350. package/build/src/start/platforms/ios/getBestSimulator.js.map +1 -1
  351. package/build/src/start/platforms/ios/promptAppleDevice.js +18 -12
  352. package/build/src/start/platforms/ios/promptAppleDevice.js.map +1 -1
  353. package/build/src/start/platforms/ios/simctl.js +65 -42
  354. package/build/src/start/platforms/ios/simctl.js.map +1 -1
  355. package/build/src/start/platforms/ios/simctlLogging.js +67 -44
  356. package/build/src/start/platforms/ios/simctlLogging.js.map +1 -1
  357. package/build/src/start/platforms/ios/xcrun.js +8 -5
  358. package/build/src/start/platforms/ios/xcrun.js.map +1 -1
  359. package/build/src/start/project/devices.js +19 -16
  360. package/build/src/start/project/devices.js.map +1 -1
  361. package/build/src/start/project/dotExpo.js +13 -5
  362. package/build/src/start/project/dotExpo.js.map +1 -1
  363. package/build/src/start/project/settings.js +6 -4
  364. package/build/src/start/project/settings.js.map +1 -1
  365. package/build/src/start/resolveOptions.js +26 -19
  366. package/build/src/start/resolveOptions.js.map +1 -1
  367. package/build/src/start/server/AsyncNgrok.js +66 -46
  368. package/build/src/start/server/AsyncNgrok.js.map +1 -1
  369. package/build/src/start/server/BundlerDevServer.js +64 -44
  370. package/build/src/start/server/BundlerDevServer.js.map +1 -1
  371. package/build/src/start/server/DevServerManager.js +81 -69
  372. package/build/src/start/server/DevServerManager.js.map +1 -1
  373. package/build/src/start/server/DevToolsPluginManager.js +21 -16
  374. package/build/src/start/server/DevToolsPluginManager.js.map +1 -1
  375. package/build/src/start/server/DevelopmentSession.js +49 -31
  376. package/build/src/start/server/DevelopmentSession.js.map +1 -1
  377. package/build/src/start/server/ReactDevToolsProxy.js +14 -6
  378. package/build/src/start/server/ReactDevToolsProxy.js.map +1 -1
  379. package/build/src/start/server/UrlCreator.js +44 -23
  380. package/build/src/start/server/UrlCreator.js.map +1 -1
  381. package/build/src/start/server/getStaticRenderFunctions.js +46 -34
  382. package/build/src/start/server/getStaticRenderFunctions.js.map +1 -1
  383. package/build/src/start/server/metro/MetroBundlerDevServer.js +135 -108
  384. package/build/src/start/server/metro/MetroBundlerDevServer.js.map +1 -1
  385. package/build/src/start/server/metro/MetroTerminalReporter.js +24 -17
  386. package/build/src/start/server/metro/MetroTerminalReporter.js.map +1 -1
  387. package/build/src/start/server/metro/TerminalReporter.js +18 -8
  388. package/build/src/start/server/metro/TerminalReporter.js.map +1 -1
  389. package/build/src/start/server/metro/createExpoMetroResolver.js +31 -20
  390. package/build/src/start/server/metro/createExpoMetroResolver.js.map +1 -1
  391. package/build/src/start/server/metro/createJResolver.js +76 -51
  392. package/build/src/start/server/metro/createJResolver.js.map +1 -1
  393. package/build/src/start/server/metro/createServerRouteMiddleware.js +22 -14
  394. package/build/src/start/server/metro/createServerRouteMiddleware.js.map +1 -1
  395. package/build/src/start/server/metro/debugging/MessageHandler.js +4 -1
  396. package/build/src/start/server/metro/debugging/MessageHandler.js.map +1 -1
  397. package/build/src/start/server/metro/debugging/createDebugMiddleware.js +10 -9
  398. package/build/src/start/server/metro/debugging/createDebugMiddleware.js.map +1 -1
  399. package/build/src/start/server/metro/debugging/createHandlersFactory.js +14 -13
  400. package/build/src/start/server/metro/debugging/createHandlersFactory.js.map +1 -1
  401. package/build/src/start/server/metro/debugging/getDebuggerType.js +5 -2
  402. package/build/src/start/server/metro/debugging/getDebuggerType.js.map +1 -1
  403. package/build/src/start/server/metro/debugging/messageHandlers/NetworkResponse.js +5 -2
  404. package/build/src/start/server/metro/debugging/messageHandlers/NetworkResponse.js.map +1 -1
  405. package/build/src/start/server/metro/debugging/messageHandlers/PageReload.js +5 -2
  406. package/build/src/start/server/metro/debugging/messageHandlers/PageReload.js.map +1 -1
  407. package/build/src/start/server/metro/debugging/messageHandlers/VscodeDebuggerGetPossibleBreakpoints.js +7 -4
  408. package/build/src/start/server/metro/debugging/messageHandlers/VscodeDebuggerGetPossibleBreakpoints.js.map +1 -1
  409. package/build/src/start/server/metro/debugging/messageHandlers/VscodeDebuggerSetBreakpointByUrl.js +7 -4
  410. package/build/src/start/server/metro/debugging/messageHandlers/VscodeDebuggerSetBreakpointByUrl.js.map +1 -1
  411. package/build/src/start/server/metro/debugging/messageHandlers/VscodeRuntimeCallFunctionOn.js +7 -4
  412. package/build/src/start/server/metro/debugging/messageHandlers/VscodeRuntimeCallFunctionOn.js.map +1 -1
  413. package/build/src/start/server/metro/debugging/messageHandlers/VscodeRuntimeGetProperties.js +7 -4
  414. package/build/src/start/server/metro/debugging/messageHandlers/VscodeRuntimeGetProperties.js.map +1 -1
  415. package/build/src/start/server/metro/debugging/pageIsSupported.js +4 -1
  416. package/build/src/start/server/metro/debugging/pageIsSupported.js.map +1 -1
  417. package/build/src/start/server/metro/externals.js +21 -10
  418. package/build/src/start/server/metro/externals.js.map +1 -1
  419. package/build/src/start/server/metro/fetchRouterManifest.js +20 -7
  420. package/build/src/start/server/metro/fetchRouterManifest.js.map +1 -1
  421. package/build/src/start/server/metro/formatFileCandidates.js +21 -17
  422. package/build/src/start/server/metro/formatFileCandidates.js.map +1 -1
  423. package/build/src/start/server/metro/getCssModulesFromBundler.js +15 -7
  424. package/build/src/start/server/metro/getCssModulesFromBundler.js.map +1 -1
  425. package/build/src/start/server/metro/instantiateMetro.js +57 -44
  426. package/build/src/start/server/metro/instantiateMetro.js.map +1 -1
  427. package/build/src/start/server/metro/metroErrorInterface.js +43 -34
  428. package/build/src/start/server/metro/metroErrorInterface.js.map +1 -1
  429. package/build/src/start/server/metro/metroErrors.js +11 -2
  430. package/build/src/start/server/metro/metroErrors.js.map +1 -1
  431. package/build/src/start/server/metro/metroVirtualModules.js +10 -2
  432. package/build/src/start/server/metro/metroVirtualModules.js.map +1 -1
  433. package/build/src/start/server/metro/metroWatchTypeScriptFiles.js +5 -2
  434. package/build/src/start/server/metro/metroWatchTypeScriptFiles.js.map +1 -1
  435. package/build/src/start/server/metro/router.js +27 -20
  436. package/build/src/start/server/metro/router.js.map +1 -1
  437. package/build/src/start/server/metro/runServer-fork.js +21 -14
  438. package/build/src/start/server/metro/runServer-fork.js.map +1 -1
  439. package/build/src/start/server/metro/serializeHtml.js +7 -7
  440. package/build/src/start/server/metro/serializeHtml.js.map +1 -1
  441. package/build/src/start/server/metro/waitForMetroToObserveTypeScriptFile.js +12 -4
  442. package/build/src/start/server/metro/waitForMetroToObserveTypeScriptFile.js.map +1 -1
  443. package/build/src/start/server/metro/withMetroMultiPlatform.js +107 -81
  444. package/build/src/start/server/metro/withMetroMultiPlatform.js.map +1 -1
  445. package/build/src/start/server/metro/withMetroResolvers.js +72 -42
  446. package/build/src/start/server/metro/withMetroResolvers.js.map +1 -1
  447. package/build/src/start/server/middleware/ContextModuleSourceMapsMiddleware.js +4 -1
  448. package/build/src/start/server/middleware/ContextModuleSourceMapsMiddleware.js.map +1 -1
  449. package/build/src/start/server/middleware/CorsMiddleware.js +4 -1
  450. package/build/src/start/server/middleware/CorsMiddleware.js.map +1 -1
  451. package/build/src/start/server/middleware/CreateFileMiddleware.js +13 -5
  452. package/build/src/start/server/middleware/CreateFileMiddleware.js.map +1 -1
  453. package/build/src/start/server/middleware/DevToolsPluginMiddleware.js +15 -12
  454. package/build/src/start/server/middleware/DevToolsPluginMiddleware.js.map +1 -1
  455. package/build/src/start/server/middleware/ExpoGoManifestHandlerMiddleware.js +30 -23
  456. package/build/src/start/server/middleware/ExpoGoManifestHandlerMiddleware.js.map +1 -1
  457. package/build/src/start/server/middleware/ExpoMiddleware.js +47 -21
  458. package/build/src/start/server/middleware/ExpoMiddleware.js.map +1 -1
  459. package/build/src/start/server/middleware/FaviconMiddleware.js +8 -5
  460. package/build/src/start/server/middleware/FaviconMiddleware.js.map +1 -1
  461. package/build/src/start/server/middleware/HistoryFallbackMiddleware.js +6 -3
  462. package/build/src/start/server/middleware/HistoryFallbackMiddleware.js.map +1 -1
  463. package/build/src/start/server/middleware/InterstitialPageMiddleware.js +23 -16
  464. package/build/src/start/server/middleware/InterstitialPageMiddleware.js.map +1 -1
  465. package/build/src/start/server/middleware/ManifestMiddleware.js +84 -60
  466. package/build/src/start/server/middleware/ManifestMiddleware.js.map +1 -1
  467. package/build/src/start/server/middleware/ReactDevToolsPageMiddleware.js +14 -7
  468. package/build/src/start/server/middleware/ReactDevToolsPageMiddleware.js.map +1 -1
  469. package/build/src/start/server/middleware/RuntimeRedirectMiddleware.js +47 -26
  470. package/build/src/start/server/middleware/RuntimeRedirectMiddleware.js.map +1 -1
  471. package/build/src/start/server/middleware/ServeStaticMiddleware.js +11 -8
  472. package/build/src/start/server/middleware/ServeStaticMiddleware.js.map +1 -1
  473. package/build/src/start/server/middleware/inspector/JsInspector.js +30 -24
  474. package/build/src/start/server/middleware/inspector/JsInspector.js.map +1 -1
  475. package/build/src/start/server/middleware/inspector/LaunchBrowser.js +16 -8
  476. package/build/src/start/server/middleware/inspector/LaunchBrowser.js.map +1 -1
  477. package/build/src/start/server/middleware/inspector/LaunchBrowser.types.js +4 -2
  478. package/build/src/start/server/middleware/inspector/LaunchBrowser.types.js.map +1 -1
  479. package/build/src/start/server/middleware/inspector/LaunchBrowserImplLinux.js +16 -12
  480. package/build/src/start/server/middleware/inspector/LaunchBrowserImplLinux.js.map +1 -1
  481. package/build/src/start/server/middleware/inspector/LaunchBrowserImplMacOS.js +59 -37
  482. package/build/src/start/server/middleware/inspector/LaunchBrowserImplMacOS.js.map +1 -1
  483. package/build/src/start/server/middleware/inspector/LaunchBrowserImplWindows.js +22 -16
  484. package/build/src/start/server/middleware/inspector/LaunchBrowserImplWindows.js.map +1 -1
  485. package/build/src/start/server/middleware/inspector/createJsInspectorMiddleware.js +9 -6
  486. package/build/src/start/server/middleware/inspector/createJsInspectorMiddleware.js.map +1 -1
  487. package/build/src/start/server/middleware/inspector/middlwareMutations.js +11 -4
  488. package/build/src/start/server/middleware/inspector/middlwareMutations.js.map +1 -1
  489. package/build/src/start/server/middleware/metroOptions.js +26 -18
  490. package/build/src/start/server/middleware/metroOptions.js.map +1 -1
  491. package/build/src/start/server/middleware/mutations.js +11 -4
  492. package/build/src/start/server/middleware/mutations.js.map +1 -1
  493. package/build/src/start/server/middleware/resolveAssets.js +65 -41
  494. package/build/src/start/server/middleware/resolveAssets.js.map +1 -1
  495. package/build/src/start/server/middleware/resolvePlatform.js +14 -6
  496. package/build/src/start/server/middleware/resolvePlatform.js.map +1 -1
  497. package/build/src/start/server/middleware/suppressErrorMiddleware.js +4 -1
  498. package/build/src/start/server/middleware/suppressErrorMiddleware.js.map +1 -1
  499. package/build/src/start/server/openPlatforms.js +7 -6
  500. package/build/src/start/server/openPlatforms.js.map +1 -1
  501. package/build/src/start/server/platformBundlers.js +5 -2
  502. package/build/src/start/server/platformBundlers.js.map +1 -1
  503. package/build/src/start/server/serverLogLikeMetro.js +62 -33
  504. package/build/src/start/server/serverLogLikeMetro.js.map +1 -1
  505. package/build/src/start/server/type-generation/expo-env.js +12 -4
  506. package/build/src/start/server/type-generation/expo-env.js.map +1 -1
  507. package/build/src/start/server/type-generation/routes.js +52 -51
  508. package/build/src/start/server/type-generation/routes.js.map +1 -1
  509. package/build/src/start/server/type-generation/startTypescriptTypeGeneration.js +22 -19
  510. package/build/src/start/server/type-generation/startTypescriptTypeGeneration.js.map +1 -1
  511. package/build/src/start/server/type-generation/tsconfig.js +18 -11
  512. package/build/src/start/server/type-generation/tsconfig.js.map +1 -1
  513. package/build/src/start/server/webTemplate.js +21 -15
  514. package/build/src/start/server/webTemplate.js.map +1 -1
  515. package/build/src/start/server/webpack/WebpackBundlerDevServer.js +81 -56
  516. package/build/src/start/server/webpack/WebpackBundlerDevServer.js.map +1 -1
  517. package/build/src/start/server/webpack/compile.js +47 -26
  518. package/build/src/start/server/webpack/compile.js.map +1 -1
  519. package/build/src/start/server/webpack/formatWebpackMessages.js +35 -25
  520. package/build/src/start/server/webpack/formatWebpackMessages.js.map +1 -1
  521. package/build/src/start/server/webpack/resolveFromProject.js +13 -5
  522. package/build/src/start/server/webpack/resolveFromProject.js.map +1 -1
  523. package/build/src/start/server/webpack/tls.js +54 -28
  524. package/build/src/start/server/webpack/tls.js.map +1 -1
  525. package/build/src/start/startAsync.js +73 -52
  526. package/build/src/start/startAsync.js.map +1 -1
  527. package/build/src/utils/FileNotifier.js +46 -25
  528. package/build/src/utils/FileNotifier.js.map +1 -1
  529. package/build/src/utils/analytics/getDevClientProperties.js +29 -21
  530. package/build/src/utils/analytics/getDevClientProperties.js.map +1 -1
  531. package/build/src/utils/analytics/getMetroDebugProperties.js +4 -1
  532. package/build/src/utils/analytics/getMetroDebugProperties.js.map +1 -1
  533. package/build/src/utils/analytics/getMetroProperties.js +4 -1
  534. package/build/src/utils/analytics/getMetroProperties.js.map +1 -1
  535. package/build/src/utils/analytics/metroDebuggerMiddleware.js +14 -6
  536. package/build/src/utils/analytics/metroDebuggerMiddleware.js.map +1 -1
  537. package/build/src/utils/ansi.js +5 -2
  538. package/build/src/utils/ansi.js.map +1 -1
  539. package/build/src/utils/args.js +57 -29
  540. package/build/src/utils/args.js.map +1 -1
  541. package/build/src/utils/array.js +16 -9
  542. package/build/src/utils/array.js.map +1 -1
  543. package/build/src/utils/cocoapods.js +77 -53
  544. package/build/src/utils/cocoapods.js.map +1 -1
  545. package/build/src/utils/codesigning.js +80 -58
  546. package/build/src/utils/codesigning.js.map +1 -1
  547. package/build/src/utils/createFileTransform.js +13 -5
  548. package/build/src/utils/createFileTransform.js.map +1 -1
  549. package/build/src/utils/delay.js +13 -6
  550. package/build/src/utils/delay.js.map +1 -1
  551. package/build/src/utils/dir.js +24 -21
  552. package/build/src/utils/dir.js.map +1 -1
  553. package/build/src/utils/downloadAppAsync.js +16 -13
  554. package/build/src/utils/downloadAppAsync.js.map +1 -1
  555. package/build/src/utils/downloadExpoGoAsync.js +26 -20
  556. package/build/src/utils/downloadExpoGoAsync.js.map +1 -1
  557. package/build/src/utils/editor.js +50 -24
  558. package/build/src/utils/editor.js.map +1 -1
  559. package/build/src/utils/env.js +35 -33
  560. package/build/src/utils/env.js.map +1 -1
  561. package/build/src/utils/errors.js +17 -9
  562. package/build/src/utils/errors.js.map +1 -1
  563. package/build/src/utils/exit.js +10 -7
  564. package/build/src/utils/exit.js.map +1 -1
  565. package/build/src/utils/findUp.js +22 -4
  566. package/build/src/utils/findUp.js.map +1 -1
  567. package/build/src/utils/fn.js +11 -3
  568. package/build/src/utils/fn.js.map +1 -1
  569. package/build/src/utils/getOrPromptApplicationId.js +71 -45
  570. package/build/src/utils/getOrPromptApplicationId.js.map +1 -1
  571. package/build/src/utils/getRunningProcess.js +52 -26
  572. package/build/src/utils/getRunningProcess.js.map +1 -1
  573. package/build/src/utils/git.js +64 -38
  574. package/build/src/utils/git.js.map +1 -1
  575. package/build/src/utils/glob.js +14 -9
  576. package/build/src/utils/glob.js.map +1 -1
  577. package/build/src/utils/interactive.js +5 -2
  578. package/build/src/utils/interactive.js.map +1 -1
  579. package/build/src/utils/ip.js +5 -2
  580. package/build/src/utils/ip.js.map +1 -1
  581. package/build/src/utils/isModuleSymlinked.js +7 -4
  582. package/build/src/utils/isModuleSymlinked.js.map +1 -1
  583. package/build/src/utils/link.js +13 -5
  584. package/build/src/utils/link.js.map +1 -1
  585. package/build/src/utils/mergeGitIgnorePaths.js +22 -17
  586. package/build/src/utils/mergeGitIgnorePaths.js.map +1 -1
  587. package/build/src/utils/modifyConfigAsync.js +56 -30
  588. package/build/src/utils/modifyConfigAsync.js.map +1 -1
  589. package/build/src/utils/modifyConfigPlugins.js +43 -22
  590. package/build/src/utils/modifyConfigPlugins.js.map +1 -1
  591. package/build/src/utils/nodeEnv.js +6 -1
  592. package/build/src/utils/nodeEnv.js.map +1 -1
  593. package/build/src/utils/nodeModules.js +9 -6
  594. package/build/src/utils/nodeModules.js.map +1 -1
  595. package/build/src/utils/npm.js +32 -24
  596. package/build/src/utils/npm.js.map +1 -1
  597. package/build/src/utils/obj.js +12 -4
  598. package/build/src/utils/obj.js.map +1 -1
  599. package/build/src/utils/open.js +7 -4
  600. package/build/src/utils/open.js.map +1 -1
  601. package/build/src/utils/ora.js +25 -21
  602. package/build/src/utils/ora.js.map +1 -1
  603. package/build/src/utils/plist.js +53 -27
  604. package/build/src/utils/plist.js.map +1 -1
  605. package/build/src/utils/port.js +58 -32
  606. package/build/src/utils/port.js.map +1 -1
  607. package/build/src/utils/profile.js +49 -28
  608. package/build/src/utils/profile.js.map +1 -1
  609. package/build/src/utils/progress.js +16 -12
  610. package/build/src/utils/progress.js.map +1 -1
  611. package/build/src/utils/prompts.js +33 -28
  612. package/build/src/utils/prompts.js.map +1 -1
  613. package/build/src/utils/resolveArgs.js +23 -20
  614. package/build/src/utils/resolveArgs.js.map +1 -1
  615. package/build/src/utils/scheme.js +61 -37
  616. package/build/src/utils/scheme.js.map +1 -1
  617. package/build/src/utils/strings.js +11 -4
  618. package/build/src/utils/strings.js.map +1 -1
  619. package/build/src/utils/tar.js +43 -22
  620. package/build/src/utils/tar.js.map +1 -1
  621. package/build/src/utils/telemetry/DetachedClient.js +8 -5
  622. package/build/src/utils/telemetry/DetachedClient.js.map +1 -1
  623. package/build/src/utils/telemetry/RudderClient.js +12 -9
  624. package/build/src/utils/telemetry/RudderClient.js.map +1 -1
  625. package/build/src/utils/telemetry/flushDetached.js +8 -7
  626. package/build/src/utils/telemetry/flushDetached.js.map +1 -1
  627. package/build/src/utils/telemetry/getContext.js +48 -28
  628. package/build/src/utils/telemetry/getContext.js.map +1 -1
  629. package/build/src/utils/telemetry/index.js +16 -11
  630. package/build/src/utils/telemetry/index.js.map +1 -1
  631. package/build/src/utils/template.js +27 -2
  632. package/build/src/utils/template.js.map +1 -1
  633. package/build/src/utils/terminal.js +5 -2
  634. package/build/src/utils/terminal.js.map +1 -1
  635. package/build/src/utils/tsconfig/evaluateTsConfig.js +18 -12
  636. package/build/src/utils/tsconfig/evaluateTsConfig.js.map +1 -1
  637. package/build/src/utils/tsconfig/loadTsConfigPaths.js +18 -10
  638. package/build/src/utils/tsconfig/loadTsConfigPaths.js.map +1 -1
  639. package/build/src/utils/tsconfig/matchTsConfigPathAlias.js +8 -4
  640. package/build/src/utils/tsconfig/matchTsConfigPathAlias.js.map +1 -1
  641. package/build/src/utils/tsconfig/resolveWithTsConfigPaths.js +12 -9
  642. package/build/src/utils/tsconfig/resolveWithTsConfigPaths.js.map +1 -1
  643. package/build/src/utils/url.js +17 -10
  644. package/build/src/utils/url.js.map +1 -1
  645. package/build/src/utils/validateApplicationId.js +32 -25
  646. package/build/src/utils/validateApplicationId.js.map +1 -1
  647. package/build/src/utils/variadic.js +15 -11
  648. package/build/src/utils/variadic.js.map +1 -1
  649. package/build/src/whoami/index.js +43 -25
  650. package/build/src/whoami/index.js.map +1 -1
  651. package/build/src/whoami/whoamiAsync.js +44 -23
  652. package/build/src/whoami/whoamiAsync.js.map +1 -1
  653. package/package.json +4 -4
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/graphql/generated.ts"],"sourcesContent":["/**\n * eslint-disable\n * This file was generated using GraphQL Codegen\n * Command: yarn generate-graphql-code\n * Run this during development for automatic type generation when editing GraphQL documents\n * For more info and docs, visit https://graphql-code-generator.com/\n */\n\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: string;\n String: string;\n Boolean: boolean;\n Int: number;\n Float: number;\n DateTime: any;\n JSON: any;\n JSONObject: any;\n};\n\nexport type AccountAppsFilterInput = {\n sortByField: AccountAppsSortByField;\n};\n\nexport enum AccountAppsSortByField {\n LatestActivityTime = 'LATEST_ACTIVITY_TIME',\n /**\n * Name prefers the display name but falls back to full_name with @account/\n * part stripped.\n */\n Name = 'NAME'\n}\n\nexport type AccountDataInput = {\n name: Scalars['String'];\n};\n\nexport type AccountNotificationSubscriptionInput = {\n accountId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport type AccountSsoConfigurationData = {\n authEndpoint?: InputMaybe<Scalars['String']>;\n authProtocol: AuthProtocolType;\n authProviderIdentifier: Scalars['String'];\n clientIdentifier: Scalars['String'];\n clientSecret: Scalars['String'];\n endSessionEndpoint?: InputMaybe<Scalars['String']>;\n issuer: Scalars['String'];\n jwksEndpoint?: InputMaybe<Scalars['String']>;\n revokeEndpoint?: InputMaybe<Scalars['String']>;\n tokenEndpoint?: InputMaybe<Scalars['String']>;\n userInfoEndpoint?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ActivityTimelineProjectActivityType {\n Build = 'BUILD',\n BuildJob = 'BUILD_JOB',\n Submission = 'SUBMISSION',\n Update = 'UPDATE'\n}\n\nexport type AddUserInput = {\n audience?: InputMaybe<MailchimpAudience>;\n email: Scalars['String'];\n tags?: InputMaybe<Array<MailchimpTag>>;\n};\n\n/** @isDefault: if set, these build credentials will become the default for the Android app. All other build credentials will have their default status set to false. */\nexport type AndroidAppBuildCredentialsInput = {\n isDefault: Scalars['Boolean'];\n keystoreId: Scalars['ID'];\n name: Scalars['String'];\n};\n\nexport type AndroidAppCredentialsFilter = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n legacyOnly?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type AndroidAppCredentialsInput = {\n fcmId?: InputMaybe<Scalars['ID']>;\n googleServiceAccountKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AndroidBuildType {\n Apk = 'APK',\n AppBundle = 'APP_BUNDLE',\n /** @deprecated Use developmentClient option instead. */\n DevelopmentClient = 'DEVELOPMENT_CLIENT'\n}\n\nexport type AndroidBuilderEnvironmentInput = {\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n ndk?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidFcmInput = {\n credential: Scalars['String'];\n version: AndroidFcmVersion;\n};\n\nexport enum AndroidFcmVersion {\n Legacy = 'LEGACY',\n V1 = 'V1'\n}\n\nexport type AndroidJobBuildCredentialsInput = {\n keystore: AndroidJobKeystoreInput;\n};\n\nexport type AndroidJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobKeystoreInput = {\n dataBase64: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n};\n\nexport type AndroidJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobSecretsInput = {\n buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidJobVersionInput = {\n versionCode: Scalars['String'];\n};\n\nexport type AndroidKeystoreInput = {\n base64EncodedKeystore: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n type: AndroidKeystoreType;\n};\n\nexport enum AndroidKeystoreType {\n Jks = 'JKS',\n Pkcs12 = 'PKCS12',\n Unknown = 'UNKNOWN'\n}\n\nexport type AndroidSubmissionConfigInput = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n changesNotSentForReview?: InputMaybe<Scalars['Boolean']>;\n googleServiceAccountKeyId?: InputMaybe<Scalars['String']>;\n googleServiceAccountKeyJson?: InputMaybe<Scalars['String']>;\n releaseStatus?: InputMaybe<SubmissionAndroidReleaseStatus>;\n track: SubmissionAndroidTrack;\n};\n\nexport type AppDataInput = {\n id: Scalars['ID'];\n privacy?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInfoInput = {\n displayName?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInput = {\n accountId: Scalars['ID'];\n appInfo?: InputMaybe<AppInfoInput>;\n privacy: AppPrivacy;\n projectName: Scalars['String'];\n};\n\nexport type AppNotificationSubscriptionInput = {\n appId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport enum AppPlatform {\n Android = 'ANDROID',\n Ios = 'IOS'\n}\n\nexport enum AppPrivacy {\n Hidden = 'HIDDEN',\n Public = 'PUBLIC',\n Unlisted = 'UNLISTED'\n}\n\nexport enum AppSort {\n /** Sort by recently published */\n RecentlyPublished = 'RECENTLY_PUBLISHED',\n /** Sort by highest trendScore */\n Viewed = 'VIEWED'\n}\n\nexport type AppStoreConnectApiKeyInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n name?: InputMaybe<Scalars['String']>;\n roles?: InputMaybe<Array<AppStoreConnectUserRole>>;\n};\n\nexport enum AppStoreConnectUserRole {\n AccessToReports = 'ACCESS_TO_REPORTS',\n AccountHolder = 'ACCOUNT_HOLDER',\n Admin = 'ADMIN',\n AppManager = 'APP_MANAGER',\n CloudManagedAppDistribution = 'CLOUD_MANAGED_APP_DISTRIBUTION',\n CloudManagedDeveloperId = 'CLOUD_MANAGED_DEVELOPER_ID',\n CreateApps = 'CREATE_APPS',\n CustomerSupport = 'CUSTOMER_SUPPORT',\n Developer = 'DEVELOPER',\n Finance = 'FINANCE',\n ImageManager = 'IMAGE_MANAGER',\n Marketing = 'MARKETING',\n ReadOnly = 'READ_ONLY',\n Sales = 'SALES',\n Technical = 'TECHNICAL',\n Unknown = 'UNKNOWN'\n}\n\nexport type AppVersionInput = {\n appId: Scalars['ID'];\n applicationIdentifier: Scalars['String'];\n buildVersion: Scalars['String'];\n platform: AppPlatform;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n storeVersion: Scalars['String'];\n};\n\nexport type AppleAppIdentifierInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n bundleIdentifier: Scalars['String'];\n parentAppleAppId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AppleDeviceClass {\n Ipad = 'IPAD',\n Iphone = 'IPHONE'\n}\n\nexport type AppleDeviceInput = {\n appleTeamId: Scalars['ID'];\n deviceClass?: InputMaybe<AppleDeviceClass>;\n enabled?: InputMaybe<Scalars['Boolean']>;\n identifier: Scalars['String'];\n model?: InputMaybe<Scalars['String']>;\n name?: InputMaybe<Scalars['String']>;\n softwareVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleDeviceUpdateInput = {\n name?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleDistributionCertificateInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n certP12: Scalars['String'];\n certPassword: Scalars['String'];\n certPrivateSigningKey?: InputMaybe<Scalars['String']>;\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleProvisioningProfileInput = {\n appleProvisioningProfile: Scalars['String'];\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type ApplePushKeyInput = {\n appleTeamId: Scalars['ID'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport type AppleTeamInput = {\n appleTeamIdentifier: Scalars['String'];\n appleTeamName?: InputMaybe<Scalars['String']>;\n};\n\nexport enum AppsFilter {\n /** Featured Projects */\n Featured = 'FEATURED',\n /** New Projects */\n New = 'NEW'\n}\n\nexport type AscApiKeyInput = {\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport enum AssetMetadataStatus {\n DoesNotExist = 'DOES_NOT_EXIST',\n Exists = 'EXISTS'\n}\n\nexport enum AuthProtocolType {\n Oidc = 'OIDC'\n}\n\nexport type BuildCacheInput = {\n clear?: InputMaybe<Scalars['Boolean']>;\n disabled?: InputMaybe<Scalars['Boolean']>;\n key?: InputMaybe<Scalars['String']>;\n paths?: InputMaybe<Array<Scalars['String']>>;\n};\n\nexport enum BuildCredentialsSource {\n Local = 'LOCAL',\n Remote = 'REMOTE'\n}\n\nexport type BuildFilter = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n platform?: InputMaybe<AppPlatform>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n status?: InputMaybe<BuildStatus>;\n};\n\nexport type BuildFilterInput = {\n channel?: InputMaybe<Scalars['String']>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildIosEnterpriseProvisioning {\n Adhoc = 'ADHOC',\n Universal = 'UNIVERSAL'\n}\n\nexport enum BuildJobLogsFormat {\n Json = 'JSON',\n Raw = 'RAW'\n}\n\nexport enum BuildJobStatus {\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n SentToQueue = 'SENT_TO_QUEUE',\n Started = 'STARTED'\n}\n\nexport type BuildMetadataInput = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appName?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildMode?: InputMaybe<BuildMode>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n cliVersion?: InputMaybe<Scalars['String']>;\n credentialsSource?: InputMaybe<BuildCredentialsSource>;\n customWorkflowName?: InputMaybe<Scalars['String']>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n gitCommitMessage?: InputMaybe<Scalars['String']>;\n iosEnterpriseProvisioning?: InputMaybe<BuildIosEnterpriseProvisioning>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n runFromCI?: InputMaybe<Scalars['Boolean']>;\n runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n trackingContext?: InputMaybe<Scalars['JSONObject']>;\n username?: InputMaybe<Scalars['String']>;\n workflow?: InputMaybe<BuildWorkflow>;\n};\n\nexport enum BuildMode {\n Build = 'BUILD',\n Custom = 'CUSTOM',\n Resign = 'RESIGN'\n}\n\nexport type BuildParamsInput = {\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n resourceClass: BuildResourceClass;\n sdkVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildPriority {\n High = 'HIGH',\n Normal = 'NORMAL',\n NormalPlus = 'NORMAL_PLUS'\n}\n\nexport type BuildResignInput = {\n applicationArchiveSource?: InputMaybe<ProjectArchiveSourceInput>;\n};\n\nexport enum BuildResourceClass {\n AndroidDefault = 'ANDROID_DEFAULT',\n AndroidLarge = 'ANDROID_LARGE',\n AndroidMedium = 'ANDROID_MEDIUM',\n IosDefault = 'IOS_DEFAULT',\n /** @deprecated Use IOS_INTEL_MEDIUM instead */\n IosIntelLarge = 'IOS_INTEL_LARGE',\n IosIntelMedium = 'IOS_INTEL_MEDIUM',\n IosLarge = 'IOS_LARGE',\n /** @deprecated Use IOS_M_MEDIUM instead */\n IosM1Large = 'IOS_M1_LARGE',\n IosM1Medium = 'IOS_M1_MEDIUM',\n IosMedium = 'IOS_MEDIUM',\n IosMLarge = 'IOS_M_LARGE',\n IosMMedium = 'IOS_M_MEDIUM',\n Legacy = 'LEGACY'\n}\n\nexport enum BuildRetryDisabledReason {\n AlreadyRetried = 'ALREADY_RETRIED',\n InvalidStatus = 'INVALID_STATUS',\n IsGithubBuild = 'IS_GITHUB_BUILD',\n NotCompletedYet = 'NOT_COMPLETED_YET',\n TooMuchTimeElapsed = 'TOO_MUCH_TIME_ELAPSED'\n}\n\nexport enum BuildStatus {\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE',\n New = 'NEW'\n}\n\nexport enum BuildTrigger {\n EasCli = 'EAS_CLI',\n GitBasedIntegration = 'GIT_BASED_INTEGRATION'\n}\n\nexport type BuildUpdatesInput = {\n channel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildWorkflow {\n Generic = 'GENERIC',\n Managed = 'MANAGED',\n Unknown = 'UNKNOWN'\n}\n\nexport type CodeSigningInfoInput = {\n alg: Scalars['String'];\n keyid: Scalars['String'];\n sig: Scalars['String'];\n};\n\nexport type CreateAccessTokenInput = {\n actorID: Scalars['ID'];\n note?: InputMaybe<Scalars['String']>;\n};\n\nexport type CreateAndroidSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: AndroidSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CreateEnvironmentSecretInput = {\n name: Scalars['String'];\n type?: InputMaybe<EnvironmentSecretType>;\n value: Scalars['String'];\n};\n\nexport type CreateGitHubAppInstallationInput = {\n accountId: Scalars['ID'];\n installationIdentifier: Scalars['Int'];\n};\n\nexport type CreateGitHubRepositoryInput = {\n appId: Scalars['ID'];\n githubAppInstallationId: Scalars['ID'];\n githubRepositoryIdentifier: Scalars['Int'];\n nodeIdentifier: Scalars['String'];\n};\n\nexport type CreateGitHubRepositorySettingsInput = {\n appId: Scalars['ID'];\n /** The base directory is the directory to change to before starting a build. This string should be a properly formatted POSIX path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository. */\n baseDirectory: Scalars['String'];\n};\n\nexport type CreateIosSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: IosSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CustomBuildConfigInput = {\n path: Scalars['String'];\n};\n\nexport enum DistributionType {\n Internal = 'INTERNAL',\n Simulator = 'SIMULATOR',\n Store = 'STORE'\n}\n\nexport enum EasBuildBillingResourceClass {\n Large = 'LARGE',\n Medium = 'MEDIUM'\n}\n\nexport enum EasBuildDeprecationInfoType {\n Internal = 'INTERNAL',\n UserFacing = 'USER_FACING'\n}\n\nexport enum EasService {\n Builds = 'BUILDS',\n Updates = 'UPDATES'\n}\n\nexport enum EasServiceMetric {\n AssetsRequests = 'ASSETS_REQUESTS',\n BandwidthUsage = 'BANDWIDTH_USAGE',\n Builds = 'BUILDS',\n ManifestRequests = 'MANIFEST_REQUESTS',\n UniqueUpdaters = 'UNIQUE_UPDATERS',\n UniqueUsers = 'UNIQUE_USERS'\n}\n\nexport enum EasTotalPlanEnablementUnit {\n Build = 'BUILD',\n Byte = 'BYTE',\n Concurrency = 'CONCURRENCY',\n Request = 'REQUEST',\n Updater = 'UPDATER',\n User = 'USER'\n}\n\nexport type EditUpdateBranchInput = {\n appId?: InputMaybe<Scalars['ID']>;\n id?: InputMaybe<Scalars['ID']>;\n name?: InputMaybe<Scalars['String']>;\n newName: Scalars['String'];\n};\n\nexport enum EnvironmentSecretType {\n FileBase64 = 'FILE_BASE64',\n String = 'STRING'\n}\n\nexport enum Feature {\n /** Priority Builds */\n Builds = 'BUILDS',\n /** Funds support for open source development */\n OpenSource = 'OPEN_SOURCE',\n /** Top Tier Support */\n Support = 'SUPPORT',\n /** Share access to projects */\n Teams = 'TEAMS'\n}\n\nexport enum GitHubAppEnvironment {\n Development = 'DEVELOPMENT',\n Production = 'PRODUCTION',\n Staging = 'STAGING'\n}\n\nexport enum GitHubAppInstallationStatus {\n Active = 'ACTIVE',\n NotInstalled = 'NOT_INSTALLED',\n Suspended = 'SUSPENDED'\n}\n\nexport type GitHubBuildInput = {\n appId: Scalars['ID'];\n baseDirectory?: InputMaybe<Scalars['String']>;\n buildProfile: Scalars['String'];\n gitRef: Scalars['String'];\n platform: AppPlatform;\n};\n\nexport type GoogleServiceAccountKeyInput = {\n jsonKey: Scalars['JSONObject'];\n};\n\nexport enum InvoiceDiscountType {\n Amount = 'AMOUNT',\n Percentage = 'PERCENTAGE'\n}\n\nexport type IosAppBuildCredentialsFilter = {\n iosDistributionType?: InputMaybe<IosDistributionType>;\n};\n\nexport type IosAppBuildCredentialsInput = {\n distributionCertificateId: Scalars['ID'];\n iosDistributionType: IosDistributionType;\n provisioningProfileId: Scalars['ID'];\n};\n\nexport type IosAppCredentialsFilter = {\n appleAppIdentifierId?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosAppCredentialsInput = {\n appStoreConnectApiKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n appleTeamId?: InputMaybe<Scalars['ID']>;\n pushKeyId?: InputMaybe<Scalars['ID']>;\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport type IosBuilderEnvironmentInput = {\n bundler?: InputMaybe<Scalars['String']>;\n cocoapods?: InputMaybe<Scalars['String']>;\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n fastlane?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport enum IosDistributionType {\n AdHoc = 'AD_HOC',\n AppStore = 'APP_STORE',\n Development = 'DEVELOPMENT',\n Enterprise = 'ENTERPRISE'\n}\n\nexport type IosJobDistributionCertificateInput = {\n dataBase64: Scalars['String'];\n password: Scalars['String'];\n};\n\nexport type IosJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n resign?: InputMaybe<BuildResignInput>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n type?: InputMaybe<BuildWorkflow>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobSecretsInput = {\n buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosJobTargetCredentialsInput = {\n distributionCertificate: IosJobDistributionCertificateInput;\n provisioningProfileBase64: Scalars['String'];\n targetName: Scalars['String'];\n};\n\nexport type IosJobVersionInput = {\n buildNumber: Scalars['String'];\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosManagedBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport enum IosSchemeBuildConfiguration {\n Debug = 'DEBUG',\n Release = 'RELEASE'\n}\n\nexport type IosSubmissionConfigInput = {\n appleAppSpecificPassword?: InputMaybe<Scalars['String']>;\n appleIdUsername?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n ascApiKey?: InputMaybe<AscApiKeyInput>;\n ascApiKeyId?: InputMaybe<Scalars['String']>;\n ascAppIdentifier: Scalars['String'];\n};\n\nexport enum MailchimpAudience {\n ExpoDevelopers = 'EXPO_DEVELOPERS'\n}\n\nexport enum MailchimpTag {\n DevClientUsers = 'DEV_CLIENT_USERS',\n EasMasterList = 'EAS_MASTER_LIST'\n}\n\nexport enum NotificationEvent {\n BuildComplete = 'BUILD_COMPLETE',\n SubmissionComplete = 'SUBMISSION_COMPLETE'\n}\n\nexport type NotificationSubscriptionFilter = {\n accountId?: InputMaybe<Scalars['ID']>;\n appId?: InputMaybe<Scalars['ID']>;\n event?: InputMaybe<NotificationEvent>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport enum NotificationType {\n Email = 'EMAIL'\n}\n\nexport enum OfferType {\n /** Addon, or supplementary subscription */\n Addon = 'ADDON',\n /** Advanced Purchase of Paid Resource */\n Prepaid = 'PREPAID',\n /** Term subscription */\n Subscription = 'SUBSCRIPTION'\n}\n\nexport enum Order {\n Asc = 'ASC',\n Desc = 'DESC'\n}\n\nexport type PartialManifest = {\n assets: Array<InputMaybe<PartialManifestAsset>>;\n extra?: InputMaybe<Scalars['JSONObject']>;\n launchAsset: PartialManifestAsset;\n};\n\nexport type PartialManifestAsset = {\n bundleKey: Scalars['String'];\n contentType: Scalars['String'];\n fileExtension?: InputMaybe<Scalars['String']>;\n fileSHA256: Scalars['String'];\n storageKey: Scalars['String'];\n};\n\nexport enum Permission {\n Admin = 'ADMIN',\n Own = 'OWN',\n Publish = 'PUBLISH',\n View = 'VIEW'\n}\n\nexport type ProjectArchiveSourceInput = {\n bucketKey?: InputMaybe<Scalars['String']>;\n gitRef?: InputMaybe<Scalars['String']>;\n repositoryUrl?: InputMaybe<Scalars['String']>;\n type: ProjectArchiveSourceType;\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ProjectArchiveSourceType {\n Gcs = 'GCS',\n Git = 'GIT',\n None = 'NONE',\n S3 = 'S3',\n Url = 'URL'\n}\n\nexport type PublishUpdateGroupInput = {\n awaitingCodeSigningInfo?: InputMaybe<Scalars['Boolean']>;\n branchId: Scalars['String'];\n excludedAssets?: InputMaybe<Array<PartialManifestAsset>>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n rollBackToEmbeddedInfoGroup?: InputMaybe<UpdateRollBackToEmbeddedGroup>;\n runtimeVersion: Scalars['String'];\n updateInfoGroup?: InputMaybe<UpdateInfoGroup>;\n};\n\nexport type RobotDataInput = {\n name?: InputMaybe<Scalars['String']>;\n};\n\nexport enum Role {\n Admin = 'ADMIN',\n Custom = 'CUSTOM',\n Developer = 'DEVELOPER',\n HasAdmin = 'HAS_ADMIN',\n NotAdmin = 'NOT_ADMIN',\n Owner = 'OWNER',\n ViewOnly = 'VIEW_ONLY'\n}\n\nexport type SsoUserDataInput = {\n firstName?: InputMaybe<Scalars['String']>;\n githubUsername?: InputMaybe<Scalars['String']>;\n industry?: InputMaybe<Scalars['String']>;\n lastName?: InputMaybe<Scalars['String']>;\n location?: InputMaybe<Scalars['String']>;\n twitterUsername?: InputMaybe<Scalars['String']>;\n};\n\nexport type SecondFactorDeviceConfiguration = {\n isPrimary: Scalars['Boolean'];\n method: SecondFactorMethod;\n name: Scalars['String'];\n smsPhoneNumber?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SecondFactorMethod {\n /** Google Authenticator (TOTP) */\n Authenticator = 'AUTHENTICATOR',\n /** SMS */\n Sms = 'SMS'\n}\n\nexport type ServerlessFunctionIdentifierInput = {\n gitCommitSHA1: Scalars['String'];\n};\n\nexport enum StandardOffer {\n /** $29 USD per month, 30 day trial */\n Default = 'DEFAULT',\n /** $800 USD per month */\n Support = 'SUPPORT',\n /** $29 USD per month, 1 year trial */\n YcDeals = 'YC_DEALS',\n /** $348 USD per year, 30 day trial */\n YearlySub = 'YEARLY_SUB'\n}\n\n/** Possible Incident impact values from Expo status page API. */\nexport enum StatuspageIncidentImpact {\n Critical = 'CRITICAL',\n Maintenance = 'MAINTENANCE',\n Major = 'MAJOR',\n Minor = 'MINOR',\n None = 'NONE'\n}\n\n/** Possible Incident statuses from Expo status page API. */\nexport enum StatuspageIncidentStatus {\n Completed = 'COMPLETED',\n Identified = 'IDENTIFIED',\n Investigating = 'INVESTIGATING',\n InProgress = 'IN_PROGRESS',\n Monitoring = 'MONITORING',\n Resolved = 'RESOLVED',\n Scheduled = 'SCHEDULED',\n Verifying = 'VERIFYING'\n}\n\n/** Name of a service monitored by Expo status page. */\nexport enum StatuspageServiceName {\n EasBuild = 'EAS_BUILD',\n EasSubmit = 'EAS_SUBMIT',\n EasUpdate = 'EAS_UPDATE'\n}\n\n/** Possible statuses for a service. */\nexport enum StatuspageServiceStatus {\n DegradedPerformance = 'DEGRADED_PERFORMANCE',\n MajorOutage = 'MAJOR_OUTAGE',\n Operational = 'OPERATIONAL',\n PartialOutage = 'PARTIAL_OUTAGE',\n UnderMaintenance = 'UNDER_MAINTENANCE'\n}\n\nexport enum SubmissionAndroidArchiveType {\n Aab = 'AAB',\n Apk = 'APK'\n}\n\nexport enum SubmissionAndroidReleaseStatus {\n Completed = 'COMPLETED',\n Draft = 'DRAFT',\n Halted = 'HALTED',\n InProgress = 'IN_PROGRESS'\n}\n\nexport enum SubmissionAndroidTrack {\n Alpha = 'ALPHA',\n Beta = 'BETA',\n Internal = 'INTERNAL',\n Production = 'PRODUCTION'\n}\n\nexport type SubmissionArchiveSourceInput = {\n /** Required if the archive source type is GCS_BUILD_APPLICATION_ARCHIVE or GCS_SUBMIT_ARCHIVE */\n bucketKey?: InputMaybe<Scalars['String']>;\n type: SubmissionArchiveSourceType;\n /** Required if the archive source type is URL */\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SubmissionArchiveSourceType {\n GcsBuildApplicationArchive = 'GCS_BUILD_APPLICATION_ARCHIVE',\n GcsSubmitArchive = 'GCS_SUBMIT_ARCHIVE',\n Url = 'URL'\n}\n\nexport type SubmissionFilter = {\n platform?: InputMaybe<AppPlatform>;\n status?: InputMaybe<SubmissionStatus>;\n};\n\nexport enum SubmissionStatus {\n AwaitingBuild = 'AWAITING_BUILD',\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE'\n}\n\nexport type TimelineActivityFilterInput = {\n channels?: InputMaybe<Array<Scalars['String']>>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannels?: InputMaybe<Array<Scalars['String']>>;\n types?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;\n};\n\nexport type UpdateGitHubRepositorySettingsInput = {\n baseDirectory: Scalars['String'];\n};\n\nexport type UpdateInfoGroup = {\n android?: InputMaybe<PartialManifest>;\n ios?: InputMaybe<PartialManifest>;\n web?: InputMaybe<PartialManifest>;\n};\n\nexport type UpdateRollBackToEmbeddedGroup = {\n android?: InputMaybe<Scalars['Boolean']>;\n ios?: InputMaybe<Scalars['Boolean']>;\n web?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type UpdatesFilter = {\n platform?: InputMaybe<AppPlatform>;\n runtimeVersions?: InputMaybe<Array<Scalars['String']>>;\n sdkVersions?: InputMaybe<Array<Scalars['String']>>;\n};\n\nexport enum UploadSessionType {\n EasBuildGcsProjectSources = 'EAS_BUILD_GCS_PROJECT_SOURCES',\n EasBuildProjectSources = 'EAS_BUILD_PROJECT_SOURCES',\n EasSubmitAppArchive = 'EAS_SUBMIT_APP_ARCHIVE',\n EasSubmitGcsAppArchive = 'EAS_SUBMIT_GCS_APP_ARCHIVE'\n}\n\nexport enum UsageMetricType {\n Bandwidth = 'BANDWIDTH',\n Build = 'BUILD',\n Request = 'REQUEST',\n Update = 'UPDATE',\n User = 'USER'\n}\n\nexport enum UsageMetricsGranularity {\n Day = 'DAY',\n Hour = 'HOUR',\n Minute = 'MINUTE',\n Total = 'TOTAL'\n}\n\nexport type UsageMetricsTimespan = {\n end: Scalars['DateTime'];\n start: Scalars['DateTime'];\n};\n\nexport type UserDataInput = {\n appetizeCode?: InputMaybe<Scalars['String']>;\n email?: InputMaybe<Scalars['String']>;\n firstName?: InputMaybe<Scalars['String']>;\n fullName?: InputMaybe<Scalars['String']>;\n githubUsername?: InputMaybe<Scalars['String']>;\n id?: InputMaybe<Scalars['ID']>;\n industry?: InputMaybe<Scalars['String']>;\n lastName?: InputMaybe<Scalars['String']>;\n location?: InputMaybe<Scalars['String']>;\n profilePhoto?: InputMaybe<Scalars['String']>;\n twitterUsername?: InputMaybe<Scalars['String']>;\n username?: InputMaybe<Scalars['String']>;\n};\n\nexport type WebhookFilter = {\n event?: InputMaybe<WebhookType>;\n};\n\nexport type WebhookInput = {\n event: WebhookType;\n secret: Scalars['String'];\n url: Scalars['String'];\n};\n\nexport enum WebhookType {\n Build = 'BUILD',\n Submit = 'SUBMIT'\n}\n\nexport type AppByIdQueryVariables = Exact<{\n appId: Scalars['String'];\n}>;\n\n\nexport type AppByIdQuery = { __typename?: 'RootQuery', app: { __typename?: 'AppQuery', byId: { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } } } };\n\nexport type CurrentUserQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type CurrentUserQuery = { __typename?: 'RootQuery', meActor?: { __typename: 'Robot', firstName?: string | null, id: string, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'SSOUser', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'User', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | null };\n\nexport type AppFragment = { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } };\n"],"names":["AccountAppsSortByField","LatestActivityTime","Name","ActivityTimelineProjectActivityType","Build","BuildJob","Submission","Update","AndroidBuildType","Apk","AppBundle","DevelopmentClient","AndroidFcmVersion","Legacy","V1","AndroidKeystoreType","Jks","Pkcs12","Unknown","AppPlatform","Android","Ios","AppPrivacy","Hidden","Public","Unlisted","AppSort","RecentlyPublished","Viewed","AppStoreConnectUserRole","AccessToReports","AccountHolder","Admin","AppManager","CloudManagedAppDistribution","CloudManagedDeveloperId","CreateApps","CustomerSupport","Developer","Finance","ImageManager","Marketing","ReadOnly","Sales","Technical","AppleDeviceClass","Ipad","Iphone","AppsFilter","Featured","New","AssetMetadataStatus","DoesNotExist","Exists","AuthProtocolType","Oidc","BuildCredentialsSource","Local","Remote","BuildIosEnterpriseProvisioning","Adhoc","Universal","BuildJobLogsFormat","Json","Raw","BuildJobStatus","Errored","Finished","InProgress","Pending","SentToQueue","Started","BuildMode","Custom","Resign","BuildPriority","High","Normal","NormalPlus","BuildResourceClass","AndroidDefault","AndroidLarge","AndroidMedium","IosDefault","IosIntelLarge","IosIntelMedium","IosLarge","IosM1Large","IosM1Medium","IosMedium","IosMLarge","IosMMedium","BuildRetryDisabledReason","AlreadyRetried","InvalidStatus","IsGithubBuild","NotCompletedYet","TooMuchTimeElapsed","BuildStatus","Canceled","InQueue","BuildTrigger","EasCli","GitBasedIntegration","BuildWorkflow","Generic","Managed","DistributionType","Internal","Simulator","Store","EasBuildBillingResourceClass","Large","Medium","EasBuildDeprecationInfoType","UserFacing","EasService","Builds","Updates","EasServiceMetric","AssetsRequests","BandwidthUsage","ManifestRequests","UniqueUpdaters","UniqueUsers","EasTotalPlanEnablementUnit","Byte","Concurrency","Request","Updater","User","EnvironmentSecretType","FileBase64","String","Feature","OpenSource","Support","Teams","GitHubAppEnvironment","Development","Production","Staging","GitHubAppInstallationStatus","Active","NotInstalled","Suspended","InvoiceDiscountType","Amount","Percentage","IosBuildType","Release","IosDistributionType","AdHoc","AppStore","Enterprise","IosManagedBuildType","IosSchemeBuildConfiguration","Debug","MailchimpAudience","ExpoDevelopers","MailchimpTag","DevClientUsers","EasMasterList","NotificationEvent","BuildComplete","SubmissionComplete","NotificationType","Email","OfferType","Addon","Prepaid","Subscription","Order","Asc","Desc","Permission","Own","Publish","View","ProjectArchiveSourceType","Gcs","Git","None","S3","Url","Role","HasAdmin","NotAdmin","Owner","ViewOnly","SecondFactorMethod","Authenticator","Sms","StandardOffer","Default","YcDeals","YearlySub","StatuspageIncidentImpact","Critical","Maintenance","Major","Minor","StatuspageIncidentStatus","Completed","Identified","Investigating","Monitoring","Resolved","Scheduled","Verifying","StatuspageServiceName","EasBuild","EasSubmit","EasUpdate","StatuspageServiceStatus","DegradedPerformance","MajorOutage","Operational","PartialOutage","UnderMaintenance","SubmissionAndroidArchiveType","Aab","SubmissionAndroidReleaseStatus","Draft","Halted","SubmissionAndroidTrack","Alpha","Beta","SubmissionArchiveSourceType","GcsBuildApplicationArchive","GcsSubmitArchive","SubmissionStatus","AwaitingBuild","UploadSessionType","EasBuildGcsProjectSources","EasBuildProjectSources","EasSubmitAppArchive","EasSubmitGcsAppArchive","UsageMetricType","Bandwidth","UsageMetricsGranularity","Day","Hour","Minute","Total","WebhookType","Submit"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../src/graphql/generated.ts"],"sourcesContent":["/**\n * eslint-disable\n * This file was generated using GraphQL Codegen\n * Command: yarn generate-graphql-code\n * Run this during development for automatic type generation when editing GraphQL documents\n * For more info and docs, visit https://graphql-code-generator.com/\n */\n\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: string;\n String: string;\n Boolean: boolean;\n Int: number;\n Float: number;\n DateTime: any;\n JSON: any;\n JSONObject: any;\n};\n\nexport type AccountAppsFilterInput = {\n sortByField: AccountAppsSortByField;\n};\n\nexport enum AccountAppsSortByField {\n LatestActivityTime = 'LATEST_ACTIVITY_TIME',\n /**\n * Name prefers the display name but falls back to full_name with @account/\n * part stripped.\n */\n Name = 'NAME'\n}\n\nexport type AccountDataInput = {\n name: Scalars['String'];\n};\n\nexport type AccountNotificationSubscriptionInput = {\n accountId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport type AccountSsoConfigurationData = {\n authEndpoint?: InputMaybe<Scalars['String']>;\n authProtocol: AuthProtocolType;\n authProviderIdentifier: Scalars['String'];\n clientIdentifier: Scalars['String'];\n clientSecret: Scalars['String'];\n endSessionEndpoint?: InputMaybe<Scalars['String']>;\n issuer: Scalars['String'];\n jwksEndpoint?: InputMaybe<Scalars['String']>;\n revokeEndpoint?: InputMaybe<Scalars['String']>;\n tokenEndpoint?: InputMaybe<Scalars['String']>;\n userInfoEndpoint?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ActivityTimelineProjectActivityType {\n Build = 'BUILD',\n BuildJob = 'BUILD_JOB',\n Submission = 'SUBMISSION',\n Update = 'UPDATE'\n}\n\nexport type AddUserInput = {\n audience?: InputMaybe<MailchimpAudience>;\n email: Scalars['String'];\n tags?: InputMaybe<Array<MailchimpTag>>;\n};\n\n/** @isDefault: if set, these build credentials will become the default for the Android app. All other build credentials will have their default status set to false. */\nexport type AndroidAppBuildCredentialsInput = {\n isDefault: Scalars['Boolean'];\n keystoreId: Scalars['ID'];\n name: Scalars['String'];\n};\n\nexport type AndroidAppCredentialsFilter = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n legacyOnly?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type AndroidAppCredentialsInput = {\n fcmId?: InputMaybe<Scalars['ID']>;\n googleServiceAccountKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AndroidBuildType {\n Apk = 'APK',\n AppBundle = 'APP_BUNDLE',\n /** @deprecated Use developmentClient option instead. */\n DevelopmentClient = 'DEVELOPMENT_CLIENT'\n}\n\nexport type AndroidBuilderEnvironmentInput = {\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n ndk?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidFcmInput = {\n credential: Scalars['String'];\n version: AndroidFcmVersion;\n};\n\nexport enum AndroidFcmVersion {\n Legacy = 'LEGACY',\n V1 = 'V1'\n}\n\nexport type AndroidJobBuildCredentialsInput = {\n keystore: AndroidJobKeystoreInput;\n};\n\nexport type AndroidJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobKeystoreInput = {\n dataBase64: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n};\n\nexport type AndroidJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobSecretsInput = {\n buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidJobVersionInput = {\n versionCode: Scalars['String'];\n};\n\nexport type AndroidKeystoreInput = {\n base64EncodedKeystore: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n type: AndroidKeystoreType;\n};\n\nexport enum AndroidKeystoreType {\n Jks = 'JKS',\n Pkcs12 = 'PKCS12',\n Unknown = 'UNKNOWN'\n}\n\nexport type AndroidSubmissionConfigInput = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n changesNotSentForReview?: InputMaybe<Scalars['Boolean']>;\n googleServiceAccountKeyId?: InputMaybe<Scalars['String']>;\n googleServiceAccountKeyJson?: InputMaybe<Scalars['String']>;\n releaseStatus?: InputMaybe<SubmissionAndroidReleaseStatus>;\n track: SubmissionAndroidTrack;\n};\n\nexport type AppDataInput = {\n id: Scalars['ID'];\n privacy?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInfoInput = {\n displayName?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInput = {\n accountId: Scalars['ID'];\n appInfo?: InputMaybe<AppInfoInput>;\n privacy: AppPrivacy;\n projectName: Scalars['String'];\n};\n\nexport type AppNotificationSubscriptionInput = {\n appId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport enum AppPlatform {\n Android = 'ANDROID',\n Ios = 'IOS'\n}\n\nexport enum AppPrivacy {\n Hidden = 'HIDDEN',\n Public = 'PUBLIC',\n Unlisted = 'UNLISTED'\n}\n\nexport enum AppSort {\n /** Sort by recently published */\n RecentlyPublished = 'RECENTLY_PUBLISHED',\n /** Sort by highest trendScore */\n Viewed = 'VIEWED'\n}\n\nexport type AppStoreConnectApiKeyInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n name?: InputMaybe<Scalars['String']>;\n roles?: InputMaybe<Array<AppStoreConnectUserRole>>;\n};\n\nexport enum AppStoreConnectUserRole {\n AccessToReports = 'ACCESS_TO_REPORTS',\n AccountHolder = 'ACCOUNT_HOLDER',\n Admin = 'ADMIN',\n AppManager = 'APP_MANAGER',\n CloudManagedAppDistribution = 'CLOUD_MANAGED_APP_DISTRIBUTION',\n CloudManagedDeveloperId = 'CLOUD_MANAGED_DEVELOPER_ID',\n CreateApps = 'CREATE_APPS',\n CustomerSupport = 'CUSTOMER_SUPPORT',\n Developer = 'DEVELOPER',\n Finance = 'FINANCE',\n ImageManager = 'IMAGE_MANAGER',\n Marketing = 'MARKETING',\n ReadOnly = 'READ_ONLY',\n Sales = 'SALES',\n Technical = 'TECHNICAL',\n Unknown = 'UNKNOWN'\n}\n\nexport type AppVersionInput = {\n appId: Scalars['ID'];\n applicationIdentifier: Scalars['String'];\n buildVersion: Scalars['String'];\n platform: AppPlatform;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n storeVersion: Scalars['String'];\n};\n\nexport type AppleAppIdentifierInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n bundleIdentifier: Scalars['String'];\n parentAppleAppId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AppleDeviceClass {\n Ipad = 'IPAD',\n Iphone = 'IPHONE'\n}\n\nexport type AppleDeviceInput = {\n appleTeamId: Scalars['ID'];\n deviceClass?: InputMaybe<AppleDeviceClass>;\n enabled?: InputMaybe<Scalars['Boolean']>;\n identifier: Scalars['String'];\n model?: InputMaybe<Scalars['String']>;\n name?: InputMaybe<Scalars['String']>;\n softwareVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleDeviceUpdateInput = {\n name?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleDistributionCertificateInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n certP12: Scalars['String'];\n certPassword: Scalars['String'];\n certPrivateSigningKey?: InputMaybe<Scalars['String']>;\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleProvisioningProfileInput = {\n appleProvisioningProfile: Scalars['String'];\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type ApplePushKeyInput = {\n appleTeamId: Scalars['ID'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport type AppleTeamInput = {\n appleTeamIdentifier: Scalars['String'];\n appleTeamName?: InputMaybe<Scalars['String']>;\n};\n\nexport enum AppsFilter {\n /** Featured Projects */\n Featured = 'FEATURED',\n /** New Projects */\n New = 'NEW'\n}\n\nexport type AscApiKeyInput = {\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport enum AssetMetadataStatus {\n DoesNotExist = 'DOES_NOT_EXIST',\n Exists = 'EXISTS'\n}\n\nexport enum AuthProtocolType {\n Oidc = 'OIDC'\n}\n\nexport type BuildCacheInput = {\n clear?: InputMaybe<Scalars['Boolean']>;\n disabled?: InputMaybe<Scalars['Boolean']>;\n key?: InputMaybe<Scalars['String']>;\n paths?: InputMaybe<Array<Scalars['String']>>;\n};\n\nexport enum BuildCredentialsSource {\n Local = 'LOCAL',\n Remote = 'REMOTE'\n}\n\nexport type BuildFilter = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n platform?: InputMaybe<AppPlatform>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n status?: InputMaybe<BuildStatus>;\n};\n\nexport type BuildFilterInput = {\n channel?: InputMaybe<Scalars['String']>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildIosEnterpriseProvisioning {\n Adhoc = 'ADHOC',\n Universal = 'UNIVERSAL'\n}\n\nexport enum BuildJobLogsFormat {\n Json = 'JSON',\n Raw = 'RAW'\n}\n\nexport enum BuildJobStatus {\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n SentToQueue = 'SENT_TO_QUEUE',\n Started = 'STARTED'\n}\n\nexport type BuildMetadataInput = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appName?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildMode?: InputMaybe<BuildMode>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n cliVersion?: InputMaybe<Scalars['String']>;\n credentialsSource?: InputMaybe<BuildCredentialsSource>;\n customWorkflowName?: InputMaybe<Scalars['String']>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n gitCommitMessage?: InputMaybe<Scalars['String']>;\n iosEnterpriseProvisioning?: InputMaybe<BuildIosEnterpriseProvisioning>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n runFromCI?: InputMaybe<Scalars['Boolean']>;\n runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n trackingContext?: InputMaybe<Scalars['JSONObject']>;\n username?: InputMaybe<Scalars['String']>;\n workflow?: InputMaybe<BuildWorkflow>;\n};\n\nexport enum BuildMode {\n Build = 'BUILD',\n Custom = 'CUSTOM',\n Resign = 'RESIGN'\n}\n\nexport type BuildParamsInput = {\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n resourceClass: BuildResourceClass;\n sdkVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildPriority {\n High = 'HIGH',\n Normal = 'NORMAL',\n NormalPlus = 'NORMAL_PLUS'\n}\n\nexport type BuildResignInput = {\n applicationArchiveSource?: InputMaybe<ProjectArchiveSourceInput>;\n};\n\nexport enum BuildResourceClass {\n AndroidDefault = 'ANDROID_DEFAULT',\n AndroidLarge = 'ANDROID_LARGE',\n AndroidMedium = 'ANDROID_MEDIUM',\n IosDefault = 'IOS_DEFAULT',\n /** @deprecated Use IOS_INTEL_MEDIUM instead */\n IosIntelLarge = 'IOS_INTEL_LARGE',\n IosIntelMedium = 'IOS_INTEL_MEDIUM',\n IosLarge = 'IOS_LARGE',\n /** @deprecated Use IOS_M_MEDIUM instead */\n IosM1Large = 'IOS_M1_LARGE',\n IosM1Medium = 'IOS_M1_MEDIUM',\n IosMedium = 'IOS_MEDIUM',\n IosMLarge = 'IOS_M_LARGE',\n IosMMedium = 'IOS_M_MEDIUM',\n Legacy = 'LEGACY'\n}\n\nexport enum BuildRetryDisabledReason {\n AlreadyRetried = 'ALREADY_RETRIED',\n InvalidStatus = 'INVALID_STATUS',\n IsGithubBuild = 'IS_GITHUB_BUILD',\n NotCompletedYet = 'NOT_COMPLETED_YET',\n TooMuchTimeElapsed = 'TOO_MUCH_TIME_ELAPSED'\n}\n\nexport enum BuildStatus {\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE',\n New = 'NEW'\n}\n\nexport enum BuildTrigger {\n EasCli = 'EAS_CLI',\n GitBasedIntegration = 'GIT_BASED_INTEGRATION'\n}\n\nexport type BuildUpdatesInput = {\n channel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildWorkflow {\n Generic = 'GENERIC',\n Managed = 'MANAGED',\n Unknown = 'UNKNOWN'\n}\n\nexport type CodeSigningInfoInput = {\n alg: Scalars['String'];\n keyid: Scalars['String'];\n sig: Scalars['String'];\n};\n\nexport type CreateAccessTokenInput = {\n actorID: Scalars['ID'];\n note?: InputMaybe<Scalars['String']>;\n};\n\nexport type CreateAndroidSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: AndroidSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CreateEnvironmentSecretInput = {\n name: Scalars['String'];\n type?: InputMaybe<EnvironmentSecretType>;\n value: Scalars['String'];\n};\n\nexport type CreateGitHubAppInstallationInput = {\n accountId: Scalars['ID'];\n installationIdentifier: Scalars['Int'];\n};\n\nexport type CreateGitHubRepositoryInput = {\n appId: Scalars['ID'];\n githubAppInstallationId: Scalars['ID'];\n githubRepositoryIdentifier: Scalars['Int'];\n nodeIdentifier: Scalars['String'];\n};\n\nexport type CreateGitHubRepositorySettingsInput = {\n appId: Scalars['ID'];\n /** The base directory is the directory to change to before starting a build. This string should be a properly formatted POSIX path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository. */\n baseDirectory: Scalars['String'];\n};\n\nexport type CreateIosSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: IosSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CustomBuildConfigInput = {\n path: Scalars['String'];\n};\n\nexport enum DistributionType {\n Internal = 'INTERNAL',\n Simulator = 'SIMULATOR',\n Store = 'STORE'\n}\n\nexport enum EasBuildBillingResourceClass {\n Large = 'LARGE',\n Medium = 'MEDIUM'\n}\n\nexport enum EasBuildDeprecationInfoType {\n Internal = 'INTERNAL',\n UserFacing = 'USER_FACING'\n}\n\nexport enum EasService {\n Builds = 'BUILDS',\n Updates = 'UPDATES'\n}\n\nexport enum EasServiceMetric {\n AssetsRequests = 'ASSETS_REQUESTS',\n BandwidthUsage = 'BANDWIDTH_USAGE',\n Builds = 'BUILDS',\n ManifestRequests = 'MANIFEST_REQUESTS',\n UniqueUpdaters = 'UNIQUE_UPDATERS',\n UniqueUsers = 'UNIQUE_USERS'\n}\n\nexport enum EasTotalPlanEnablementUnit {\n Build = 'BUILD',\n Byte = 'BYTE',\n Concurrency = 'CONCURRENCY',\n Request = 'REQUEST',\n Updater = 'UPDATER',\n User = 'USER'\n}\n\nexport type EditUpdateBranchInput = {\n appId?: InputMaybe<Scalars['ID']>;\n id?: InputMaybe<Scalars['ID']>;\n name?: InputMaybe<Scalars['String']>;\n newName: Scalars['String'];\n};\n\nexport enum EnvironmentSecretType {\n FileBase64 = 'FILE_BASE64',\n String = 'STRING'\n}\n\nexport enum Feature {\n /** Priority Builds */\n Builds = 'BUILDS',\n /** Funds support for open source development */\n OpenSource = 'OPEN_SOURCE',\n /** Top Tier Support */\n Support = 'SUPPORT',\n /** Share access to projects */\n Teams = 'TEAMS'\n}\n\nexport enum GitHubAppEnvironment {\n Development = 'DEVELOPMENT',\n Production = 'PRODUCTION',\n Staging = 'STAGING'\n}\n\nexport enum GitHubAppInstallationStatus {\n Active = 'ACTIVE',\n NotInstalled = 'NOT_INSTALLED',\n Suspended = 'SUSPENDED'\n}\n\nexport type GitHubBuildInput = {\n appId: Scalars['ID'];\n baseDirectory?: InputMaybe<Scalars['String']>;\n buildProfile: Scalars['String'];\n gitRef: Scalars['String'];\n platform: AppPlatform;\n};\n\nexport type GoogleServiceAccountKeyInput = {\n jsonKey: Scalars['JSONObject'];\n};\n\nexport enum InvoiceDiscountType {\n Amount = 'AMOUNT',\n Percentage = 'PERCENTAGE'\n}\n\nexport type IosAppBuildCredentialsFilter = {\n iosDistributionType?: InputMaybe<IosDistributionType>;\n};\n\nexport type IosAppBuildCredentialsInput = {\n distributionCertificateId: Scalars['ID'];\n iosDistributionType: IosDistributionType;\n provisioningProfileId: Scalars['ID'];\n};\n\nexport type IosAppCredentialsFilter = {\n appleAppIdentifierId?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosAppCredentialsInput = {\n appStoreConnectApiKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n appleTeamId?: InputMaybe<Scalars['ID']>;\n pushKeyId?: InputMaybe<Scalars['ID']>;\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport type IosBuilderEnvironmentInput = {\n bundler?: InputMaybe<Scalars['String']>;\n cocoapods?: InputMaybe<Scalars['String']>;\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n fastlane?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport enum IosDistributionType {\n AdHoc = 'AD_HOC',\n AppStore = 'APP_STORE',\n Development = 'DEVELOPMENT',\n Enterprise = 'ENTERPRISE'\n}\n\nexport type IosJobDistributionCertificateInput = {\n dataBase64: Scalars['String'];\n password: Scalars['String'];\n};\n\nexport type IosJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n resign?: InputMaybe<BuildResignInput>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n type?: InputMaybe<BuildWorkflow>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobSecretsInput = {\n buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosJobTargetCredentialsInput = {\n distributionCertificate: IosJobDistributionCertificateInput;\n provisioningProfileBase64: Scalars['String'];\n targetName: Scalars['String'];\n};\n\nexport type IosJobVersionInput = {\n buildNumber: Scalars['String'];\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosManagedBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport enum IosSchemeBuildConfiguration {\n Debug = 'DEBUG',\n Release = 'RELEASE'\n}\n\nexport type IosSubmissionConfigInput = {\n appleAppSpecificPassword?: InputMaybe<Scalars['String']>;\n appleIdUsername?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n ascApiKey?: InputMaybe<AscApiKeyInput>;\n ascApiKeyId?: InputMaybe<Scalars['String']>;\n ascAppIdentifier: Scalars['String'];\n};\n\nexport enum MailchimpAudience {\n ExpoDevelopers = 'EXPO_DEVELOPERS'\n}\n\nexport enum MailchimpTag {\n DevClientUsers = 'DEV_CLIENT_USERS',\n EasMasterList = 'EAS_MASTER_LIST'\n}\n\nexport enum NotificationEvent {\n BuildComplete = 'BUILD_COMPLETE',\n SubmissionComplete = 'SUBMISSION_COMPLETE'\n}\n\nexport type NotificationSubscriptionFilter = {\n accountId?: InputMaybe<Scalars['ID']>;\n appId?: InputMaybe<Scalars['ID']>;\n event?: InputMaybe<NotificationEvent>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport enum NotificationType {\n Email = 'EMAIL'\n}\n\nexport enum OfferType {\n /** Addon, or supplementary subscription */\n Addon = 'ADDON',\n /** Advanced Purchase of Paid Resource */\n Prepaid = 'PREPAID',\n /** Term subscription */\n Subscription = 'SUBSCRIPTION'\n}\n\nexport enum Order {\n Asc = 'ASC',\n Desc = 'DESC'\n}\n\nexport type PartialManifest = {\n assets: Array<InputMaybe<PartialManifestAsset>>;\n extra?: InputMaybe<Scalars['JSONObject']>;\n launchAsset: PartialManifestAsset;\n};\n\nexport type PartialManifestAsset = {\n bundleKey: Scalars['String'];\n contentType: Scalars['String'];\n fileExtension?: InputMaybe<Scalars['String']>;\n fileSHA256: Scalars['String'];\n storageKey: Scalars['String'];\n};\n\nexport enum Permission {\n Admin = 'ADMIN',\n Own = 'OWN',\n Publish = 'PUBLISH',\n View = 'VIEW'\n}\n\nexport type ProjectArchiveSourceInput = {\n bucketKey?: InputMaybe<Scalars['String']>;\n gitRef?: InputMaybe<Scalars['String']>;\n repositoryUrl?: InputMaybe<Scalars['String']>;\n type: ProjectArchiveSourceType;\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ProjectArchiveSourceType {\n Gcs = 'GCS',\n Git = 'GIT',\n None = 'NONE',\n S3 = 'S3',\n Url = 'URL'\n}\n\nexport type PublishUpdateGroupInput = {\n awaitingCodeSigningInfo?: InputMaybe<Scalars['Boolean']>;\n branchId: Scalars['String'];\n excludedAssets?: InputMaybe<Array<PartialManifestAsset>>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n rollBackToEmbeddedInfoGroup?: InputMaybe<UpdateRollBackToEmbeddedGroup>;\n runtimeVersion: Scalars['String'];\n updateInfoGroup?: InputMaybe<UpdateInfoGroup>;\n};\n\nexport type RobotDataInput = {\n name?: InputMaybe<Scalars['String']>;\n};\n\nexport enum Role {\n Admin = 'ADMIN',\n Custom = 'CUSTOM',\n Developer = 'DEVELOPER',\n HasAdmin = 'HAS_ADMIN',\n NotAdmin = 'NOT_ADMIN',\n Owner = 'OWNER',\n ViewOnly = 'VIEW_ONLY'\n}\n\nexport type SsoUserDataInput = {\n firstName?: InputMaybe<Scalars['String']>;\n githubUsername?: InputMaybe<Scalars['String']>;\n industry?: InputMaybe<Scalars['String']>;\n lastName?: InputMaybe<Scalars['String']>;\n location?: InputMaybe<Scalars['String']>;\n twitterUsername?: InputMaybe<Scalars['String']>;\n};\n\nexport type SecondFactorDeviceConfiguration = {\n isPrimary: Scalars['Boolean'];\n method: SecondFactorMethod;\n name: Scalars['String'];\n smsPhoneNumber?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SecondFactorMethod {\n /** Google Authenticator (TOTP) */\n Authenticator = 'AUTHENTICATOR',\n /** SMS */\n Sms = 'SMS'\n}\n\nexport type ServerlessFunctionIdentifierInput = {\n gitCommitSHA1: Scalars['String'];\n};\n\nexport enum StandardOffer {\n /** $29 USD per month, 30 day trial */\n Default = 'DEFAULT',\n /** $800 USD per month */\n Support = 'SUPPORT',\n /** $29 USD per month, 1 year trial */\n YcDeals = 'YC_DEALS',\n /** $348 USD per year, 30 day trial */\n YearlySub = 'YEARLY_SUB'\n}\n\n/** Possible Incident impact values from Expo status page API. */\nexport enum StatuspageIncidentImpact {\n Critical = 'CRITICAL',\n Maintenance = 'MAINTENANCE',\n Major = 'MAJOR',\n Minor = 'MINOR',\n None = 'NONE'\n}\n\n/** Possible Incident statuses from Expo status page API. */\nexport enum StatuspageIncidentStatus {\n Completed = 'COMPLETED',\n Identified = 'IDENTIFIED',\n Investigating = 'INVESTIGATING',\n InProgress = 'IN_PROGRESS',\n Monitoring = 'MONITORING',\n Resolved = 'RESOLVED',\n Scheduled = 'SCHEDULED',\n Verifying = 'VERIFYING'\n}\n\n/** Name of a service monitored by Expo status page. */\nexport enum StatuspageServiceName {\n EasBuild = 'EAS_BUILD',\n EasSubmit = 'EAS_SUBMIT',\n EasUpdate = 'EAS_UPDATE'\n}\n\n/** Possible statuses for a service. */\nexport enum StatuspageServiceStatus {\n DegradedPerformance = 'DEGRADED_PERFORMANCE',\n MajorOutage = 'MAJOR_OUTAGE',\n Operational = 'OPERATIONAL',\n PartialOutage = 'PARTIAL_OUTAGE',\n UnderMaintenance = 'UNDER_MAINTENANCE'\n}\n\nexport enum SubmissionAndroidArchiveType {\n Aab = 'AAB',\n Apk = 'APK'\n}\n\nexport enum SubmissionAndroidReleaseStatus {\n Completed = 'COMPLETED',\n Draft = 'DRAFT',\n Halted = 'HALTED',\n InProgress = 'IN_PROGRESS'\n}\n\nexport enum SubmissionAndroidTrack {\n Alpha = 'ALPHA',\n Beta = 'BETA',\n Internal = 'INTERNAL',\n Production = 'PRODUCTION'\n}\n\nexport type SubmissionArchiveSourceInput = {\n /** Required if the archive source type is GCS_BUILD_APPLICATION_ARCHIVE or GCS_SUBMIT_ARCHIVE */\n bucketKey?: InputMaybe<Scalars['String']>;\n type: SubmissionArchiveSourceType;\n /** Required if the archive source type is URL */\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SubmissionArchiveSourceType {\n GcsBuildApplicationArchive = 'GCS_BUILD_APPLICATION_ARCHIVE',\n GcsSubmitArchive = 'GCS_SUBMIT_ARCHIVE',\n Url = 'URL'\n}\n\nexport type SubmissionFilter = {\n platform?: InputMaybe<AppPlatform>;\n status?: InputMaybe<SubmissionStatus>;\n};\n\nexport enum SubmissionStatus {\n AwaitingBuild = 'AWAITING_BUILD',\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE'\n}\n\nexport type TimelineActivityFilterInput = {\n channels?: InputMaybe<Array<Scalars['String']>>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannels?: InputMaybe<Array<Scalars['String']>>;\n types?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;\n};\n\nexport type UpdateGitHubRepositorySettingsInput = {\n baseDirectory: Scalars['String'];\n};\n\nexport type UpdateInfoGroup = {\n android?: InputMaybe<PartialManifest>;\n ios?: InputMaybe<PartialManifest>;\n web?: InputMaybe<PartialManifest>;\n};\n\nexport type UpdateRollBackToEmbeddedGroup = {\n android?: InputMaybe<Scalars['Boolean']>;\n ios?: InputMaybe<Scalars['Boolean']>;\n web?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type UpdatesFilter = {\n platform?: InputMaybe<AppPlatform>;\n runtimeVersions?: InputMaybe<Array<Scalars['String']>>;\n sdkVersions?: InputMaybe<Array<Scalars['String']>>;\n};\n\nexport enum UploadSessionType {\n EasBuildGcsProjectSources = 'EAS_BUILD_GCS_PROJECT_SOURCES',\n EasBuildProjectSources = 'EAS_BUILD_PROJECT_SOURCES',\n EasSubmitAppArchive = 'EAS_SUBMIT_APP_ARCHIVE',\n EasSubmitGcsAppArchive = 'EAS_SUBMIT_GCS_APP_ARCHIVE'\n}\n\nexport enum UsageMetricType {\n Bandwidth = 'BANDWIDTH',\n Build = 'BUILD',\n Request = 'REQUEST',\n Update = 'UPDATE',\n User = 'USER'\n}\n\nexport enum UsageMetricsGranularity {\n Day = 'DAY',\n Hour = 'HOUR',\n Minute = 'MINUTE',\n Total = 'TOTAL'\n}\n\nexport type UsageMetricsTimespan = {\n end: Scalars['DateTime'];\n start: Scalars['DateTime'];\n};\n\nexport type UserDataInput = {\n appetizeCode?: InputMaybe<Scalars['String']>;\n email?: InputMaybe<Scalars['String']>;\n firstName?: InputMaybe<Scalars['String']>;\n fullName?: InputMaybe<Scalars['String']>;\n githubUsername?: InputMaybe<Scalars['String']>;\n id?: InputMaybe<Scalars['ID']>;\n industry?: InputMaybe<Scalars['String']>;\n lastName?: InputMaybe<Scalars['String']>;\n location?: InputMaybe<Scalars['String']>;\n profilePhoto?: InputMaybe<Scalars['String']>;\n twitterUsername?: InputMaybe<Scalars['String']>;\n username?: InputMaybe<Scalars['String']>;\n};\n\nexport type WebhookFilter = {\n event?: InputMaybe<WebhookType>;\n};\n\nexport type WebhookInput = {\n event: WebhookType;\n secret: Scalars['String'];\n url: Scalars['String'];\n};\n\nexport enum WebhookType {\n Build = 'BUILD',\n Submit = 'SUBMIT'\n}\n\nexport type AppByIdQueryVariables = Exact<{\n appId: Scalars['String'];\n}>;\n\n\nexport type AppByIdQuery = { __typename?: 'RootQuery', app: { __typename?: 'AppQuery', byId: { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } } } };\n\nexport type CurrentUserQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type CurrentUserQuery = { __typename?: 'RootQuery', meActor?: { __typename: 'Robot', firstName?: string | null, id: string, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'SSOUser', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'User', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | null };\n\nexport type AppFragment = { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } };\n"],"names":["AccountAppsSortByField","LatestActivityTime","Name","ActivityTimelineProjectActivityType","Build","BuildJob","Submission","Update","AndroidBuildType","Apk","AppBundle","DevelopmentClient","AndroidFcmVersion","Legacy","V1","AndroidKeystoreType","Jks","Pkcs12","Unknown","AppPlatform","Android","Ios","AppPrivacy","Hidden","Public","Unlisted","AppSort","RecentlyPublished","Viewed","AppStoreConnectUserRole","AccessToReports","AccountHolder","Admin","AppManager","CloudManagedAppDistribution","CloudManagedDeveloperId","CreateApps","CustomerSupport","Developer","Finance","ImageManager","Marketing","ReadOnly","Sales","Technical","AppleDeviceClass","Ipad","Iphone","AppsFilter","Featured","New","AssetMetadataStatus","DoesNotExist","Exists","AuthProtocolType","Oidc","BuildCredentialsSource","Local","Remote","BuildIosEnterpriseProvisioning","Adhoc","Universal","BuildJobLogsFormat","Json","Raw","BuildJobStatus","Errored","Finished","InProgress","Pending","SentToQueue","Started","BuildMode","Custom","Resign","BuildPriority","High","Normal","NormalPlus","BuildResourceClass","AndroidDefault","AndroidLarge","AndroidMedium","IosDefault","IosIntelLarge","IosIntelMedium","IosLarge","IosM1Large","IosM1Medium","IosMedium","IosMLarge","IosMMedium","BuildRetryDisabledReason","AlreadyRetried","InvalidStatus","IsGithubBuild","NotCompletedYet","TooMuchTimeElapsed","BuildStatus","Canceled","InQueue","BuildTrigger","EasCli","GitBasedIntegration","BuildWorkflow","Generic","Managed","DistributionType","Internal","Simulator","Store","EasBuildBillingResourceClass","Large","Medium","EasBuildDeprecationInfoType","UserFacing","EasService","Builds","Updates","EasServiceMetric","AssetsRequests","BandwidthUsage","ManifestRequests","UniqueUpdaters","UniqueUsers","EasTotalPlanEnablementUnit","Byte","Concurrency","Request","Updater","User","EnvironmentSecretType","FileBase64","String","Feature","OpenSource","Support","Teams","GitHubAppEnvironment","Development","Production","Staging","GitHubAppInstallationStatus","Active","NotInstalled","Suspended","InvoiceDiscountType","Amount","Percentage","IosBuildType","Release","IosDistributionType","AdHoc","AppStore","Enterprise","IosManagedBuildType","IosSchemeBuildConfiguration","Debug","MailchimpAudience","ExpoDevelopers","MailchimpTag","DevClientUsers","EasMasterList","NotificationEvent","BuildComplete","SubmissionComplete","NotificationType","Email","OfferType","Addon","Prepaid","Subscription","Order","Asc","Desc","Permission","Own","Publish","View","ProjectArchiveSourceType","Gcs","Git","None","S3","Url","Role","HasAdmin","NotAdmin","Owner","ViewOnly","SecondFactorMethod","Authenticator","Sms","StandardOffer","Default","YcDeals","YearlySub","StatuspageIncidentImpact","Critical","Maintenance","Major","Minor","StatuspageIncidentStatus","Completed","Identified","Investigating","Monitoring","Resolved","Scheduled","Verifying","StatuspageServiceName","EasBuild","EasSubmit","EasUpdate","StatuspageServiceStatus","DegradedPerformance","MajorOutage","Operational","PartialOutage","UnderMaintenance","SubmissionAndroidArchiveType","Aab","SubmissionAndroidReleaseStatus","Draft","Halted","SubmissionAndroidTrack","Alpha","Beta","SubmissionArchiveSourceType","GcsBuildApplicationArchive","GcsSubmitArchive","SubmissionStatus","AwaitingBuild","UploadSessionType","EasBuildGcsProjectSources","EasBuildProjectSources","EasSubmitAppArchive","EasSubmitGcsAppArchive","UsageMetricType","Bandwidth","UsageMetricsGranularity","Day","Hour","Minute","Total","WebhookType","Submit"],"mappings":"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"}
@@ -2,7 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.applyPluginsAsync = applyPluginsAsync;
5
+ Object.defineProperty(exports, "applyPluginsAsync", {
6
+ enumerable: true,
7
+ get: ()=>applyPluginsAsync
8
+ });
6
9
  function _config() {
7
10
  const data = require("@expo/config");
8
11
  _config = function() {
@@ -10,44 +13,59 @@ function _config() {
10
13
  };
11
14
  return data;
12
15
  }
13
- var Log = _interopRequireWildcard(require("../log"));
14
- function _interopRequireWildcard(obj) {
15
- if (obj && obj.__esModule) {
16
+ const _log = /*#__PURE__*/ _interopRequireWildcard(require("../log"));
17
+ function _getRequireWildcardCache(nodeInterop) {
18
+ if (typeof WeakMap !== "function") return null;
19
+ var cacheBabelInterop = new WeakMap();
20
+ var cacheNodeInterop = new WeakMap();
21
+ return (_getRequireWildcardCache = function(nodeInterop) {
22
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
23
+ })(nodeInterop);
24
+ }
25
+ function _interopRequireWildcard(obj, nodeInterop) {
26
+ if (!nodeInterop && obj && obj.__esModule) {
16
27
  return obj;
17
- } else {
18
- var newObj = {};
19
- if (obj != null) {
20
- for(var key in obj){
21
- if (Object.prototype.hasOwnProperty.call(obj, key)) {
22
- var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};
23
- if (desc.get || desc.set) {
24
- Object.defineProperty(newObj, key, desc);
25
- } else {
26
- newObj[key] = obj[key];
27
- }
28
- }
28
+ }
29
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
30
+ return {
31
+ default: obj
32
+ };
33
+ }
34
+ var cache = _getRequireWildcardCache(nodeInterop);
35
+ if (cache && cache.has(obj)) {
36
+ return cache.get(obj);
37
+ }
38
+ var newObj = {};
39
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
40
+ for(var key in obj){
41
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
42
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
43
+ if (desc && (desc.get || desc.set)) {
44
+ Object.defineProperty(newObj, key, desc);
45
+ } else {
46
+ newObj[key] = obj[key];
29
47
  }
30
48
  }
31
- newObj.default = obj;
32
- return newObj;
33
49
  }
50
+ newObj.default = obj;
51
+ if (cache) {
52
+ cache.set(obj, newObj);
53
+ }
54
+ return newObj;
34
55
  }
35
56
  async function applyPluginsAsync(projectRoot, packages) {
36
- const { autoAddConfigPluginsAsync } = await Promise.resolve().then(function() {
37
- return _interopRequireWildcard(require("./utils/autoAddConfigPlugins.js"));
38
- });
57
+ const { autoAddConfigPluginsAsync } = await Promise.resolve().then(()=>/*#__PURE__*/ _interopRequireWildcard(require("./utils/autoAddConfigPlugins.js")));
39
58
  try {
40
- const { exp } = _config().getConfig(projectRoot, {
59
+ const { exp } = (0, _config().getConfig)(projectRoot, {
41
60
  skipSDKVersionRequirement: true
42
61
  });
43
62
  // Only auto add plugins if the plugins array is defined or if the project is using SDK +42.
44
63
  await autoAddConfigPluginsAsync(projectRoot, exp, // Split any possible NPM tags. i.e. `expo@latest` -> `expo`
45
- packages.map((pkg)=>pkg.split("@")[0]
46
- ).filter(Boolean));
64
+ packages.map((pkg)=>pkg.split("@")[0]).filter(Boolean));
47
65
  } catch (error) {
48
66
  // If we fail to apply plugins, the log a warning and continue.
49
67
  if (error.isPluginError) {
50
- Log.warn(`Skipping config plugin check: ` + error.message);
68
+ _log.warn(`Skipping config plugin check: ` + error.message);
51
69
  return;
52
70
  }
53
71
  // Any other error, rethrow.
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/install/applyPlugins.ts"],"sourcesContent":["import { getConfig } from '@expo/config';\n\nimport * as Log from '../log';\n\n/**\n * A convenience feature for automatically applying Expo Config Plugins to the `app.json` after installing them.\n * This should be dropped in favor of autolinking in the future.\n */\nexport async function applyPluginsAsync(projectRoot: string, packages: string[]) {\n const { autoAddConfigPluginsAsync } = await import('./utils/autoAddConfigPlugins.js');\n\n try {\n const { exp } = getConfig(projectRoot, { skipSDKVersionRequirement: true });\n\n // Only auto add plugins if the plugins array is defined or if the project is using SDK +42.\n await autoAddConfigPluginsAsync(\n projectRoot,\n exp,\n // Split any possible NPM tags. i.e. `expo@latest` -> `expo`\n packages.map((pkg) => pkg.split('@')[0]).filter(Boolean)\n );\n } catch (error: any) {\n // If we fail to apply plugins, the log a warning and continue.\n if (error.isPluginError) {\n Log.warn(`Skipping config plugin check: ` + error.message);\n return;\n }\n // Any other error, rethrow.\n throw error;\n }\n}\n"],"names":["applyPluginsAsync","Log","projectRoot","packages","autoAddConfigPluginsAsync","exp","getConfig","skipSDKVersionRequirement","map","pkg","split","filter","Boolean","error","isPluginError","warn","message"],"mappings":"AAAA;;;;QAQsBA,iBAAiB,GAAjBA,iBAAiB;SARb,OAAc;yBAAd,cAAc;IAAd,OAAc;;;;;AAE5BC,IAAAA,GAAG,mCAAM,QAAQ,EAAd;;;;;;;;;;;;;;;;;;;;;;AAMR,eAAeD,iBAAiB,CAACE,WAAmB,EAAEC,QAAkB,EAAE;IAC/E,MAAM,EAAEC,yBAAyB,CAAA,EAAE,GAAG,MAAM;+CAAO,iCAAiC;MAAC,AAAC;IAEtF,IAAI;QACF,MAAM,EAAEC,GAAG,CAAA,EAAE,GAAGC,OAAS,YAAA,CAACJ,WAAW,EAAE;YAAEK,yBAAyB,EAAE,IAAI;SAAE,CAAC,AAAC;QAE5E,4FAA4F;QAC5F,MAAMH,yBAAyB,CAC7BF,WAAW,EACXG,GAAG,EACH,4DAA4D;QAC5DF,QAAQ,CAACK,GAAG,CAAC,CAACC,GAAG,GAAKA,GAAG,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAAA,CAAC,CAACC,MAAM,CAACC,OAAO,CAAC,CACzD,CAAC;KACH,CAAC,OAAOC,KAAK,EAAO;QACnB,+DAA+D;QAC/D,IAAIA,KAAK,CAACC,aAAa,EAAE;YACvBb,GAAG,CAACc,IAAI,CAAC,CAAC,8BAA8B,CAAC,GAAGF,KAAK,CAACG,OAAO,CAAC,CAAC;YAC3D,OAAO;SACR;QACD,4BAA4B;QAC5B,MAAMH,KAAK,CAAC;KACb;CACF"}
1
+ {"version":3,"sources":["../../../src/install/applyPlugins.ts"],"sourcesContent":["import { getConfig } from '@expo/config';\n\nimport * as Log from '../log';\n\n/**\n * A convenience feature for automatically applying Expo Config Plugins to the `app.json` after installing them.\n * This should be dropped in favor of autolinking in the future.\n */\nexport async function applyPluginsAsync(projectRoot: string, packages: string[]) {\n const { autoAddConfigPluginsAsync } = await import('./utils/autoAddConfigPlugins.js');\n\n try {\n const { exp } = getConfig(projectRoot, { skipSDKVersionRequirement: true });\n\n // Only auto add plugins if the plugins array is defined or if the project is using SDK +42.\n await autoAddConfigPluginsAsync(\n projectRoot,\n exp,\n // Split any possible NPM tags. i.e. `expo@latest` -> `expo`\n packages.map((pkg) => pkg.split('@')[0]).filter(Boolean)\n );\n } catch (error: any) {\n // If we fail to apply plugins, the log a warning and continue.\n if (error.isPluginError) {\n Log.warn(`Skipping config plugin check: ` + error.message);\n return;\n }\n // Any other error, rethrow.\n throw error;\n }\n}\n"],"names":["applyPluginsAsync","projectRoot","packages","autoAddConfigPluginsAsync","exp","getConfig","skipSDKVersionRequirement","map","pkg","split","filter","Boolean","error","isPluginError","Log","warn","message"],"mappings":"AAAA;;;;+BAQsBA,mBAAiB;;aAAjBA,iBAAiB;;;yBARb,cAAc;;;;;;2DAEnB,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMtB,eAAeA,iBAAiB,CAACC,WAAmB,EAAEC,QAAkB,EAAE;IAC/E,MAAM,EAAEC,yBAAyB,CAAA,EAAE,GAAG,MAAM,iEAAA,OAAM,CAAC,iCAAiC,GAAC,AAAC;IAEtF,IAAI;QACF,MAAM,EAAEC,GAAG,CAAA,EAAE,GAAGC,IAAAA,OAAS,EAAA,UAAA,EAACJ,WAAW,EAAE;YAAEK,yBAAyB,EAAE,IAAI;SAAE,CAAC,AAAC;QAE5E,4FAA4F;QAC5F,MAAMH,yBAAyB,CAC7BF,WAAW,EACXG,GAAG,EACH,4DAA4D;QAC5DF,QAAQ,CAACK,GAAG,CAAC,CAACC,GAAG,GAAKA,GAAG,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAACC,MAAM,CAACC,OAAO,CAAC,CACzD,CAAC;IACJ,EAAE,OAAOC,KAAK,EAAO;QACnB,+DAA+D;QAC/D,IAAIA,KAAK,CAACC,aAAa,EAAE;YACvBC,IAAG,CAACC,IAAI,CAAC,CAAC,8BAA8B,CAAC,GAAGH,KAAK,CAACI,OAAO,CAAC,CAAC;YAC3D,OAAO;QACT,CAAC;QACD,4BAA4B;QAC5B,MAAMJ,KAAK,CAAC;IACd,CAAC;AACH,CAAC"}
@@ -2,7 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.checkPackagesAsync = checkPackagesAsync;
5
+ Object.defineProperty(exports, "checkPackagesAsync", {
6
+ enumerable: true,
7
+ get: ()=>checkPackagesAsync
8
+ });
6
9
  function _config() {
7
10
  const data = require("@expo/config");
8
11
  _config = function() {
@@ -11,72 +14,89 @@ function _config() {
11
14
  return data;
12
15
  }
13
16
  function _chalk() {
14
- const data = _interopRequireDefault(require("chalk"));
17
+ const data = /*#__PURE__*/ _interopRequireDefault(require("chalk"));
15
18
  _chalk = function() {
16
19
  return data;
17
20
  };
18
21
  return data;
19
22
  }
20
- var _fixPackages = require("./fixPackages");
21
- var Log = _interopRequireWildcard(require("../log"));
22
- var _validateDependenciesVersions = require("../start/doctor/dependencies/validateDependenciesVersions");
23
- var _interactive = require("../utils/interactive");
24
- var _link = require("../utils/link");
25
- var _prompts = require("../utils/prompts");
26
- var _strings = require("../utils/strings");
23
+ const _fixPackages = require("./fixPackages");
24
+ const _log = /*#__PURE__*/ _interopRequireWildcard(require("../log"));
25
+ const _validateDependenciesVersions = require("../start/doctor/dependencies/validateDependenciesVersions");
26
+ const _interactive = require("../utils/interactive");
27
+ const _link = require("../utils/link");
28
+ const _prompts = require("../utils/prompts");
29
+ const _strings = require("../utils/strings");
27
30
  function _interopRequireDefault(obj) {
28
31
  return obj && obj.__esModule ? obj : {
29
32
  default: obj
30
33
  };
31
34
  }
32
- function _interopRequireWildcard(obj) {
33
- if (obj && obj.__esModule) {
35
+ function _getRequireWildcardCache(nodeInterop) {
36
+ if (typeof WeakMap !== "function") return null;
37
+ var cacheBabelInterop = new WeakMap();
38
+ var cacheNodeInterop = new WeakMap();
39
+ return (_getRequireWildcardCache = function(nodeInterop) {
40
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
41
+ })(nodeInterop);
42
+ }
43
+ function _interopRequireWildcard(obj, nodeInterop) {
44
+ if (!nodeInterop && obj && obj.__esModule) {
34
45
  return obj;
35
- } else {
36
- var newObj = {};
37
- if (obj != null) {
38
- for(var key in obj){
39
- if (Object.prototype.hasOwnProperty.call(obj, key)) {
40
- var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};
41
- if (desc.get || desc.set) {
42
- Object.defineProperty(newObj, key, desc);
43
- } else {
44
- newObj[key] = obj[key];
45
- }
46
- }
46
+ }
47
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
48
+ return {
49
+ default: obj
50
+ };
51
+ }
52
+ var cache = _getRequireWildcardCache(nodeInterop);
53
+ if (cache && cache.has(obj)) {
54
+ return cache.get(obj);
55
+ }
56
+ var newObj = {};
57
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
58
+ for(var key in obj){
59
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
60
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
61
+ if (desc && (desc.get || desc.set)) {
62
+ Object.defineProperty(newObj, key, desc);
63
+ } else {
64
+ newObj[key] = obj[key];
47
65
  }
48
66
  }
49
- newObj.default = obj;
50
- return newObj;
51
67
  }
68
+ newObj.default = obj;
69
+ if (cache) {
70
+ cache.set(obj, newObj);
71
+ }
72
+ return newObj;
52
73
  }
53
74
  const debug = require("debug")("expo:install:check");
54
75
  async function checkPackagesAsync(projectRoot, { packages , packageManager , options: { fix } , packageManagerArguments }) {
55
76
  var ref, ref1, ref2;
56
77
  // Read the project Expo config without plugins.
57
- const { exp , pkg } = _config().getConfig(projectRoot, {
78
+ const { exp , pkg } = (0, _config().getConfig)(projectRoot, {
58
79
  // Sometimes users will add a plugin to the config before installing the library,
59
80
  // this wouldn't work unless we dangerously disable plugin serialization.
60
81
  skipPlugins: true
61
82
  });
62
83
  if ((ref = pkg.expo) == null ? void 0 : (ref1 = ref.install) == null ? void 0 : (ref2 = ref1.exclude) == null ? void 0 : ref2.length) {
63
- Log.log(_chalk().default`Skipped ${fix ? "fixing" : "checking"} dependencies: ${(0, _strings).joinWithCommasAnd(pkg.expo.install.exclude)}. These dependencies are listed in {bold expo.install.exclude} in package.json. ${(0, _link).learnMore("https://expo.dev/more/expo-cli/#configuring-dependency-validation")}`);
84
+ _log.log((0, _chalk().default)`Skipped ${fix ? "fixing" : "checking"} dependencies: ${(0, _strings.joinWithCommasAnd)(pkg.expo.install.exclude)}. These dependencies are listed in {bold expo.install.exclude} in package.json. ${(0, _link.learnMore)("https://expo.dev/more/expo-cli/#configuring-dependency-validation")}`);
64
85
  }
65
- const dependencies = await (0, _validateDependenciesVersions).getVersionedDependenciesAsync(projectRoot, exp, pkg, packages);
86
+ const dependencies = await (0, _validateDependenciesVersions.getVersionedDependenciesAsync)(projectRoot, exp, pkg, packages);
66
87
  if (!dependencies.length) {
67
- Log.exit(_chalk().default.greenBright("Dependencies are up to date"), 0);
88
+ _log.exit(_chalk().default.greenBright("Dependencies are up to date"), 0);
68
89
  }
69
- (0, _validateDependenciesVersions).logIncorrectDependencies(dependencies);
90
+ (0, _validateDependenciesVersions.logIncorrectDependencies)(dependencies);
70
91
  const value = // If `--fix` then always fix.
71
92
  fix || // Otherwise prompt to fix when not running in CI.
72
- ((0, _interactive).isInteractive() && await (0, _prompts).confirmAsync({
93
+ ((0, _interactive.isInteractive)() && await (0, _prompts.confirmAsync)({
73
94
  message: "Fix dependencies?"
74
- }).catch(()=>false
75
- ));
95
+ }).catch(()=>false));
76
96
  if (value) {
77
97
  debug("Installing fixed dependencies:", dependencies);
78
98
  // Install the corrected dependencies.
79
- return (0, _fixPackages).fixPackagesAsync(projectRoot, {
99
+ return (0, _fixPackages.fixPackagesAsync)(projectRoot, {
80
100
  packageManager,
81
101
  packages: dependencies,
82
102
  packageManagerArguments,
@@ -84,7 +104,7 @@ async function checkPackagesAsync(projectRoot, { packages , packageManager , opt
84
104
  });
85
105
  }
86
106
  // Exit with non-zero exit code if any of the dependencies are out of date.
87
- Log.exit(_chalk().default.red("Found outdated dependencies"), 1);
107
+ _log.exit(_chalk().default.red("Found outdated dependencies"), 1);
88
108
  }
89
109
 
90
110
  //# sourceMappingURL=checkPackages.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/install/checkPackages.ts"],"sourcesContent":["import { getConfig } from '@expo/config';\nimport * as PackageManager from '@expo/package-manager';\nimport chalk from 'chalk';\n\nimport { fixPackagesAsync } from './fixPackages';\nimport { Options } from './resolveOptions';\nimport * as Log from '../log';\nimport {\n getVersionedDependenciesAsync,\n logIncorrectDependencies,\n} from '../start/doctor/dependencies/validateDependenciesVersions';\nimport { isInteractive } from '../utils/interactive';\nimport { learnMore } from '../utils/link';\nimport { confirmAsync } from '../utils/prompts';\nimport { joinWithCommasAnd } from '../utils/strings';\n\nconst debug = require('debug')('expo:install:check') as typeof console.log;\n\n/**\n * Handles `expo install --fix|check'.\n * Checks installed dependencies against bundledNativeModules and versions endpoints to find any incompatibilities.\n * If `--fix` is passed, it will install the correct versions of the dependencies.\n * If `--check` is passed, it will prompt the user to install the correct versions of the dependencies (on interactive terminal).\n */\nexport async function checkPackagesAsync(\n projectRoot: string,\n {\n packages,\n packageManager,\n options: { fix },\n packageManagerArguments,\n }: {\n /**\n * List of packages to version\n * @example ['uuid', 'react-native-reanimated@latest']\n */\n packages: string[];\n /** Package manager to use when installing the versioned packages. */\n packageManager: PackageManager.NodePackageManager;\n\n /** How the check should resolve */\n options: Pick<Options, 'fix'>;\n /**\n * Extra parameters to pass to the `packageManager` when installing versioned packages.\n * @example ['--no-save']\n */\n packageManagerArguments: string[];\n }\n) {\n // Read the project Expo config without plugins.\n const { exp, pkg } = getConfig(projectRoot, {\n // Sometimes users will add a plugin to the config before installing the library,\n // this wouldn't work unless we dangerously disable plugin serialization.\n skipPlugins: true,\n });\n\n if (pkg.expo?.install?.exclude?.length) {\n Log.log(\n chalk`Skipped ${fix ? 'fixing' : 'checking'} dependencies: ${joinWithCommasAnd(\n pkg.expo.install.exclude\n )}. These dependencies are listed in {bold expo.install.exclude} in package.json. ${learnMore(\n 'https://expo.dev/more/expo-cli/#configuring-dependency-validation'\n )}`\n );\n }\n\n const dependencies = await getVersionedDependenciesAsync(projectRoot, exp, pkg, packages);\n\n if (!dependencies.length) {\n Log.exit(chalk.greenBright('Dependencies are up to date'), 0);\n }\n\n logIncorrectDependencies(dependencies);\n\n const value =\n // If `--fix` then always fix.\n fix ||\n // Otherwise prompt to fix when not running in CI.\n (isInteractive() && (await confirmAsync({ message: 'Fix dependencies?' }).catch(() => false)));\n\n if (value) {\n debug('Installing fixed dependencies:', dependencies);\n // Install the corrected dependencies.\n return fixPackagesAsync(projectRoot, {\n packageManager,\n packages: dependencies,\n packageManagerArguments,\n sdkVersion: exp.sdkVersion!,\n });\n }\n // Exit with non-zero exit code if any of the dependencies are out of date.\n Log.exit(chalk.red('Found outdated dependencies'), 1);\n}\n"],"names":["checkPackagesAsync","Log","debug","require","projectRoot","packages","packageManager","options","fix","packageManagerArguments","pkg","exp","getConfig","skipPlugins","expo","install","exclude","length","log","chalk","joinWithCommasAnd","learnMore","dependencies","getVersionedDependenciesAsync","exit","greenBright","logIncorrectDependencies","value","isInteractive","confirmAsync","message","catch","fixPackagesAsync","sdkVersion","red"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../src/install/checkPackages.ts"],"sourcesContent":["import { getConfig } from '@expo/config';\nimport * as PackageManager from '@expo/package-manager';\nimport chalk from 'chalk';\n\nimport { fixPackagesAsync } from './fixPackages';\nimport { Options } from './resolveOptions';\nimport * as Log from '../log';\nimport {\n getVersionedDependenciesAsync,\n logIncorrectDependencies,\n} from '../start/doctor/dependencies/validateDependenciesVersions';\nimport { isInteractive } from '../utils/interactive';\nimport { learnMore } from '../utils/link';\nimport { confirmAsync } from '../utils/prompts';\nimport { joinWithCommasAnd } from '../utils/strings';\n\nconst debug = require('debug')('expo:install:check') as typeof console.log;\n\n/**\n * Handles `expo install --fix|check'.\n * Checks installed dependencies against bundledNativeModules and versions endpoints to find any incompatibilities.\n * If `--fix` is passed, it will install the correct versions of the dependencies.\n * If `--check` is passed, it will prompt the user to install the correct versions of the dependencies (on interactive terminal).\n */\nexport async function checkPackagesAsync(\n projectRoot: string,\n {\n packages,\n packageManager,\n options: { fix },\n packageManagerArguments,\n }: {\n /**\n * List of packages to version\n * @example ['uuid', 'react-native-reanimated@latest']\n */\n packages: string[];\n /** Package manager to use when installing the versioned packages. */\n packageManager: PackageManager.NodePackageManager;\n\n /** How the check should resolve */\n options: Pick<Options, 'fix'>;\n /**\n * Extra parameters to pass to the `packageManager` when installing versioned packages.\n * @example ['--no-save']\n */\n packageManagerArguments: string[];\n }\n) {\n // Read the project Expo config without plugins.\n const { exp, pkg } = getConfig(projectRoot, {\n // Sometimes users will add a plugin to the config before installing the library,\n // this wouldn't work unless we dangerously disable plugin serialization.\n skipPlugins: true,\n });\n\n if (pkg.expo?.install?.exclude?.length) {\n Log.log(\n chalk`Skipped ${fix ? 'fixing' : 'checking'} dependencies: ${joinWithCommasAnd(\n pkg.expo.install.exclude\n )}. These dependencies are listed in {bold expo.install.exclude} in package.json. ${learnMore(\n 'https://expo.dev/more/expo-cli/#configuring-dependency-validation'\n )}`\n );\n }\n\n const dependencies = await getVersionedDependenciesAsync(projectRoot, exp, pkg, packages);\n\n if (!dependencies.length) {\n Log.exit(chalk.greenBright('Dependencies are up to date'), 0);\n }\n\n logIncorrectDependencies(dependencies);\n\n const value =\n // If `--fix` then always fix.\n fix ||\n // Otherwise prompt to fix when not running in CI.\n (isInteractive() && (await confirmAsync({ message: 'Fix dependencies?' }).catch(() => false)));\n\n if (value) {\n debug('Installing fixed dependencies:', dependencies);\n // Install the corrected dependencies.\n return fixPackagesAsync(projectRoot, {\n packageManager,\n packages: dependencies,\n packageManagerArguments,\n sdkVersion: exp.sdkVersion!,\n });\n }\n // Exit with non-zero exit code if any of the dependencies are out of date.\n Log.exit(chalk.red('Found outdated dependencies'), 1);\n}\n"],"names":["checkPackagesAsync","debug","require","projectRoot","packages","packageManager","options","fix","packageManagerArguments","pkg","exp","getConfig","skipPlugins","expo","install","exclude","length","Log","log","chalk","joinWithCommasAnd","learnMore","dependencies","getVersionedDependenciesAsync","exit","greenBright","logIncorrectDependencies","value","isInteractive","confirmAsync","message","catch","fixPackagesAsync","sdkVersion","red"],"mappings":"AAAA;;;;+BAwBsBA,oBAAkB;;aAAlBA,kBAAkB;;;yBAxBd,cAAc;;;;;;;8DAEtB,OAAO;;;;;;6BAEQ,eAAe;2DAE3B,QAAQ;8CAItB,2DAA2D;6BACpC,sBAAsB;sBAC1B,eAAe;yBACZ,kBAAkB;yBACb,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpD,MAAMC,KAAK,GAAGC,OAAO,CAAC,OAAO,CAAC,CAAC,oBAAoB,CAAC,AAAsB,AAAC;AAQpE,eAAeF,kBAAkB,CACtCG,WAAmB,EACnB,EACEC,QAAQ,CAAA,EACRC,cAAc,CAAA,EACdC,OAAO,EAAE,EAAEC,GAAG,CAAA,EAAE,CAAA,EAChBC,uBAAuB,CAAA,EAiBxB,EACD;QAQIC,GAAQ;IAPZ,gDAAgD;IAChD,MAAM,EAAEC,GAAG,CAAA,EAAED,GAAG,CAAA,EAAE,GAAGE,IAAAA,OAAS,EAAA,UAAA,EAACR,WAAW,EAAE;QAC1C,iFAAiF;QACjF,yEAAyE;QACzES,WAAW,EAAE,IAAI;KAClB,CAAC,AAAC;IAEH,IAAIH,CAAAA,GAAQ,GAARA,GAAG,CAACI,IAAI,SAAS,GAAjBJ,KAAAA,CAAiB,GAAjBA,QAAAA,GAAQ,CAAEK,OAAO,SAAA,GAAjBL,KAAAA,CAAiB,GAAjBA,aAAmBM,OAAO,SAAT,GAAjBN,KAAAA,CAAiB,QAAWO,MAAM,AAAjB,EAAmB;QACtCC,IAAG,CAACC,GAAG,CACLC,IAAAA,MAAK,EAAA,QAAA,CAAA,CAAC,QAAQ,EAAEZ,GAAG,GAAG,QAAQ,GAAG,UAAU,CAAC,eAAe,EAAEa,IAAAA,QAAiB,kBAAA,EAC5EX,GAAG,CAACI,IAAI,CAACC,OAAO,CAACC,OAAO,CACzB,CAAC,gFAAgF,EAAEM,IAAAA,KAAS,UAAA,EAC3F,mEAAmE,CACpE,CAAC,CAAC,CACJ,CAAC;IACJ,CAAC;IAED,MAAMC,YAAY,GAAG,MAAMC,IAAAA,6BAA6B,8BAAA,EAACpB,WAAW,EAAEO,GAAG,EAAED,GAAG,EAAEL,QAAQ,CAAC,AAAC;IAE1F,IAAI,CAACkB,YAAY,CAACN,MAAM,EAAE;QACxBC,IAAG,CAACO,IAAI,CAACL,MAAK,EAAA,QAAA,CAACM,WAAW,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,CAAC;IAChE,CAAC;IAEDC,IAAAA,6BAAwB,yBAAA,EAACJ,YAAY,CAAC,CAAC;IAEvC,MAAMK,KAAK,GACT,8BAA8B;IAC9BpB,GAAG,IACH,kDAAkD;IAClD,CAACqB,IAAAA,YAAa,cAAA,GAAE,IAAK,MAAMC,IAAAA,QAAY,aAAA,EAAC;QAAEC,OAAO,EAAE,mBAAmB;KAAE,CAAC,CAACC,KAAK,CAAC,IAAM,KAAK,CAAC,AAAC,CAAC,AAAC;IAEjG,IAAIJ,KAAK,EAAE;QACT1B,KAAK,CAAC,gCAAgC,EAAEqB,YAAY,CAAC,CAAC;QACtD,sCAAsC;QACtC,OAAOU,IAAAA,YAAgB,iBAAA,EAAC7B,WAAW,EAAE;YACnCE,cAAc;YACdD,QAAQ,EAAEkB,YAAY;YACtBd,uBAAuB;YACvByB,UAAU,EAAEvB,GAAG,CAACuB,UAAU;SAC3B,CAAC,CAAC;IACL,CAAC;IACD,2EAA2E;IAC3EhB,IAAG,CAACO,IAAI,CAACL,MAAK,EAAA,QAAA,CAACe,GAAG,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,CAAC;AACxD,CAAC"}