eas-cli 0.47.0 → 0.48.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 (308) hide show
  1. package/README.md +55 -51
  2. package/build/analytics/rudderstackClient.js +3 -3
  3. package/build/api.d.ts +25 -1
  4. package/build/api.js +70 -38
  5. package/build/build/android/build.js +4 -4
  6. package/build/build/android/prepareJob.js +2 -2
  7. package/build/build/android/syncProjectConfiguration.js +5 -5
  8. package/build/build/android/version.js +3 -3
  9. package/build/build/build.js +4 -4
  10. package/build/build/configure.js +3 -3
  11. package/build/build/createContext.js +2 -2
  12. package/build/build/ios/credentials.js +1 -1
  13. package/build/build/ios/graphql.js +1 -1
  14. package/build/build/ios/prepareJob.js +2 -2
  15. package/build/build/ios/syncProjectConfiguration.js +1 -1
  16. package/build/build/ios/version.js +3 -3
  17. package/build/build/local.js +3 -3
  18. package/build/build/metadata.js +6 -16
  19. package/build/build/runBuildAndSubmit.js +3 -3
  20. package/build/build/utils/appJson.js +3 -3
  21. package/build/build/utils/credentials.js +2 -2
  22. package/build/build/utils/devClient.js +3 -3
  23. package/build/build/utils/formatBuild.js +2 -2
  24. package/build/build/utils/printBuildInfo.js +5 -5
  25. package/build/build/utils/repository.js +5 -5
  26. package/build/build/utils/url.js +7 -9
  27. package/build/build/utils/version.js +4 -4
  28. package/build/build/validate.js +3 -3
  29. package/build/commandUtils/EasCommand.js +2 -2
  30. package/build/commands/account/login.js +2 -2
  31. package/build/commands/account/logout.js +2 -2
  32. package/build/commands/account/view.js +3 -3
  33. package/build/commands/analytics.js +3 -3
  34. package/build/commands/branch/create.js +4 -4
  35. package/build/commands/branch/delete.js +4 -4
  36. package/build/commands/branch/list.js +5 -5
  37. package/build/commands/branch/publish.js +1 -1
  38. package/build/commands/branch/rename.js +4 -4
  39. package/build/commands/branch/view.js +6 -6
  40. package/build/commands/build/cancel.js +4 -4
  41. package/build/commands/build/configure.js +5 -5
  42. package/build/commands/build/index.js +12 -8
  43. package/build/commands/build/inspect.js +5 -5
  44. package/build/commands/build/list.js +3 -3
  45. package/build/commands/build/view.js +2 -2
  46. package/build/commands/channel/create.js +5 -5
  47. package/build/commands/channel/delete.js +3 -3
  48. package/build/commands/channel/edit.js +4 -4
  49. package/build/commands/channel/list.js +4 -4
  50. package/build/commands/channel/rollout.js +3 -3
  51. package/build/commands/channel/view.js +6 -6
  52. package/build/commands/config.js +3 -3
  53. package/build/commands/credentials.js +1 -1
  54. package/build/commands/device/create.js +3 -3
  55. package/build/commands/device/delete.js +4 -4
  56. package/build/commands/device/list.js +5 -5
  57. package/build/commands/device/view.js +3 -3
  58. package/build/commands/diagnostics.js +3 -3
  59. package/build/commands/project/info.js +4 -4
  60. package/build/commands/project/init.js +3 -3
  61. package/build/commands/secret/create.js +3 -3
  62. package/build/commands/secret/delete.js +2 -2
  63. package/build/commands/secret/list.js +5 -5
  64. package/build/commands/submit.js +4 -4
  65. package/build/commands/update/configure.d.ts +3 -0
  66. package/build/commands/update/configure.js +151 -36
  67. package/build/commands/update/delete.js +4 -4
  68. package/build/commands/update/index.d.ts +1 -0
  69. package/build/commands/update/index.js +52 -13
  70. package/build/commands/update/list.js +6 -6
  71. package/build/commands/update/view.js +4 -4
  72. package/build/commands/webhook/create.js +1 -1
  73. package/build/commands/webhook/delete.js +5 -5
  74. package/build/commands/webhook/list.js +3 -3
  75. package/build/commands/webhook/update.js +2 -2
  76. package/build/commands/webhook/view.js +2 -2
  77. package/build/credentials/android/AndroidCredentialsProvider.js +2 -2
  78. package/build/credentials/android/actions/AssignFcm.js +1 -1
  79. package/build/credentials/android/actions/AssignGoogleServiceAccountKey.js +1 -1
  80. package/build/credentials/android/actions/BuildCredentialsUtils.js +1 -1
  81. package/build/credentials/android/actions/CreateFcm.js +1 -1
  82. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +1 -1
  83. package/build/credentials/android/actions/CreateKeystore.js +1 -1
  84. package/build/credentials/android/actions/DownloadKeystore.js +3 -3
  85. package/build/credentials/android/actions/RemoveFcm.js +1 -1
  86. package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.js +1 -1
  87. package/build/credentials/android/actions/RemoveKeystore.js +2 -2
  88. package/build/credentials/android/actions/SetUpBuildCredentials.js +2 -2
  89. package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.js +1 -1
  90. package/build/credentials/android/actions/SetUpGoogleServiceAccountKey.js +2 -2
  91. package/build/credentials/android/actions/UpdateCredentialsJson.js +1 -1
  92. package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.js +1 -1
  93. package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.js +2 -2
  94. package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.js +2 -2
  95. package/build/credentials/android/api/graphql/mutations/AndroidFcmMutation.js +2 -2
  96. package/build/credentials/android/api/graphql/mutations/AndroidKeystoreMutation.js +2 -2
  97. package/build/credentials/android/api/graphql/mutations/GoogleServiceAccountKeyMutation.js +2 -2
  98. package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.js +2 -2
  99. package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.js +1 -1
  100. package/build/credentials/android/utils/googleServiceAccountKey.js +6 -6
  101. package/build/credentials/android/utils/keystore.js +9 -12
  102. package/build/credentials/android/utils/keystoreNew.js +2 -2
  103. package/build/credentials/android/utils/printCredentials.js +3 -3
  104. package/build/credentials/context.js +7 -7
  105. package/build/credentials/credentialsJson/read.js +2 -2
  106. package/build/credentials/credentialsJson/types.js +1 -1
  107. package/build/credentials/credentialsJson/update.js +6 -6
  108. package/build/credentials/credentialsJson/utils.js +1 -1
  109. package/build/credentials/ios/IosCredentialsProvider.js +2 -2
  110. package/build/credentials/ios/actions/AscApiKeyUtils.js +4 -4
  111. package/build/credentials/ios/actions/AssignAscApiKey.js +1 -1
  112. package/build/credentials/ios/actions/AssignPushKey.js +1 -1
  113. package/build/credentials/ios/actions/BuildCredentialsUtils.js +1 -1
  114. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +3 -3
  115. package/build/credentials/ios/actions/CreateAscApiKey.js +1 -1
  116. package/build/credentials/ios/actions/CreateDistributionCertificate.js +1 -1
  117. package/build/credentials/ios/actions/CreateProvisioningProfile.js +3 -3
  118. package/build/credentials/ios/actions/CreatePushKey.js +1 -1
  119. package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -4
  120. package/build/credentials/ios/actions/ProvisioningProfileUtils.js +1 -1
  121. package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
  122. package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +1 -2
  123. package/build/credentials/ios/actions/RemoveAscApiKey.js +3 -4
  124. package/build/credentials/ios/actions/RemoveDistributionCertificate.js +1 -1
  125. package/build/credentials/ios/actions/RemoveProvisioningProfile.js +2 -2
  126. package/build/credentials/ios/actions/RemovePushKey.d.ts +1 -2
  127. package/build/credentials/ios/actions/RemovePushKey.js +3 -4
  128. package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +6 -6
  129. package/build/credentials/ios/actions/SetUpAscApiKey.js +3 -3
  130. package/build/credentials/ios/actions/SetUpBuildCredentials.js +3 -3
  131. package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.js +2 -2
  132. package/build/credentials/ios/actions/SetUpDistributionCertificate.js +4 -4
  133. package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.js +4 -1
  134. package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
  135. package/build/credentials/ios/actions/SetUpPushKey.js +3 -3
  136. package/build/credentials/ios/actions/SetUpSubmissionCredentials.js +4 -4
  137. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +1 -1
  138. package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.js +3 -3
  139. package/build/credentials/ios/actions/UpdateCredentialsJson.js +1 -1
  140. package/build/credentials/ios/api/GraphqlClient.js +1 -1
  141. package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.js +2 -2
  142. package/build/credentials/ios/api/graphql/mutations/AppleAppIdentifierMutation.js +2 -2
  143. package/build/credentials/ios/api/graphql/mutations/AppleDeviceMutation.js +1 -1
  144. package/build/credentials/ios/api/graphql/mutations/AppleDeviceRegistrationRequestMutation.js +1 -1
  145. package/build/credentials/ios/api/graphql/mutations/AppleDistributionCertificateMutation.js +2 -2
  146. package/build/credentials/ios/api/graphql/mutations/AppleProvisioningProfileMutation.js +1 -1
  147. package/build/credentials/ios/api/graphql/mutations/ApplePushKeyMutation.js +2 -2
  148. package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +1 -1
  149. package/build/credentials/ios/api/graphql/mutations/IosAppBuildCredentialsMutation.js +2 -2
  150. package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.js +2 -2
  151. package/build/credentials/ios/api/graphql/queries/AppQuery.js +2 -2
  152. package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.js +1 -1
  153. package/build/credentials/ios/api/graphql/queries/AppleAppIdentifierQuery.js +1 -1
  154. package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +2 -2
  155. package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.js +2 -2
  156. package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.js +2 -2
  157. package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.js +1 -1
  158. package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +1 -1
  159. package/build/credentials/ios/api/graphql/queries/IosAppBuildCredentialsQuery.js +2 -2
  160. package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.js +2 -2
  161. package/build/credentials/ios/appstore/AppStoreApi.d.ts +1 -1
  162. package/build/credentials/ios/appstore/AppStoreApi.js +2 -2
  163. package/build/credentials/ios/appstore/Credentials.js +1 -1
  164. package/build/credentials/ios/appstore/ascApiKey.js +1 -1
  165. package/build/credentials/ios/appstore/authenticate.js +3 -3
  166. package/build/credentials/ios/appstore/bundleIdCapabilities.js +2 -2
  167. package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -1
  168. package/build/credentials/ios/appstore/contractMessages.js +2 -2
  169. package/build/credentials/ios/appstore/ensureAppExists.js +2 -2
  170. package/build/credentials/ios/appstore/keychain.js +1 -1
  171. package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
  172. package/build/credentials/ios/appstore/provisioningProfile.js +1 -1
  173. package/build/credentials/ios/appstore/pushKey.js +3 -3
  174. package/build/credentials/ios/appstore/resolveCredentials.js +5 -5
  175. package/build/credentials/ios/credentials.js +1 -1
  176. package/build/credentials/ios/utils/convertHTMLToASCII.js +4 -4
  177. package/build/credentials/ios/utils/p12Certificate.js +1 -1
  178. package/build/credentials/ios/utils/printCredentials.js +4 -4
  179. package/build/credentials/ios/utils/provisioningProfile.js +1 -1
  180. package/build/credentials/ios/validators/validateProvisioningProfile.js +5 -5
  181. package/build/credentials/manager/HelperActions.js +1 -1
  182. package/build/credentials/manager/ManageAndroid.js +2 -2
  183. package/build/credentials/manager/ManageIos.js +3 -3
  184. package/build/credentials/manager/SelectAndroidBuildCredentials.js +1 -1
  185. package/build/credentials/manager/SelectBuildProfileFromEasJson.js +1 -1
  186. package/build/credentials/utils/promptForCredentials.js +5 -6
  187. package/build/devices/actions/create/action.js +2 -2
  188. package/build/devices/actions/create/inputMethod.js +3 -3
  189. package/build/devices/actions/create/registrationUrlMethod.js +4 -4
  190. package/build/devices/manager.js +4 -4
  191. package/build/devices/utils/formatDevice.js +1 -1
  192. package/build/fetch.d.ts +10 -0
  193. package/build/fetch.js +30 -0
  194. package/build/graphql/client.js +17 -19
  195. package/build/graphql/generated.d.ts +762 -704
  196. package/build/graphql/generated.js +6 -1
  197. package/build/graphql/mutations/AppMutation.js +2 -2
  198. package/build/graphql/mutations/BuildMutation.js +4 -4
  199. package/build/graphql/mutations/EnvironmentSecretMutation.js +1 -1
  200. package/build/graphql/mutations/KeystoreGenerationUrlMutation.js +1 -1
  201. package/build/graphql/mutations/PublishMutation.d.ts +2 -1
  202. package/build/graphql/mutations/PublishMutation.js +26 -1
  203. package/build/graphql/mutations/SubmissionMutation.js +2 -2
  204. package/build/graphql/mutations/UploadSessionMutation.js +1 -1
  205. package/build/graphql/mutations/WebhookMutation.js +1 -1
  206. package/build/graphql/queries/BranchQuery.js +1 -1
  207. package/build/graphql/queries/BuildQuery.js +1 -1
  208. package/build/graphql/queries/ChannelQuery.js +1 -1
  209. package/build/graphql/queries/EnvironmentSecretsQuery.js +1 -1
  210. package/build/graphql/queries/ProjectQuery.js +1 -1
  211. package/build/graphql/queries/PublishQuery.js +1 -1
  212. package/build/graphql/queries/SubmissionQuery.js +1 -1
  213. package/build/graphql/queries/UpdateQuery.js +1 -1
  214. package/build/graphql/queries/UserQuery.js +1 -1
  215. package/build/graphql/queries/WebhookQuery.js +1 -1
  216. package/build/graphql/types/App.js +1 -1
  217. package/build/graphql/types/Build.js +2 -1
  218. package/build/graphql/types/EnvironmentSecret.js +1 -1
  219. package/build/graphql/types/Submission.js +1 -1
  220. package/build/graphql/types/UpdateBranch.js +1 -1
  221. package/build/graphql/types/Webhook.js +1 -1
  222. package/build/graphql/types/credentials/AndroidAppBuildCredentials.js +1 -1
  223. package/build/graphql/types/credentials/AndroidAppCredentials.js +1 -1
  224. package/build/graphql/types/credentials/AndroidFcm.js +1 -1
  225. package/build/graphql/types/credentials/AndroidKeystore.js +1 -1
  226. package/build/graphql/types/credentials/AppStoreConnectApiKey.js +1 -1
  227. package/build/graphql/types/credentials/AppleAppIdentifier.js +1 -1
  228. package/build/graphql/types/credentials/AppleDevice.js +1 -1
  229. package/build/graphql/types/credentials/AppleDeviceRegistrationRequest.js +1 -1
  230. package/build/graphql/types/credentials/AppleDistributionCertificate.js +1 -1
  231. package/build/graphql/types/credentials/AppleProvisioningProfile.js +1 -1
  232. package/build/graphql/types/credentials/ApplePushKey.js +1 -1
  233. package/build/graphql/types/credentials/AppleTeam.js +1 -1
  234. package/build/graphql/types/credentials/GoogleServiceAccountKey.js +1 -1
  235. package/build/graphql/types/credentials/IosAppBuildCredentials.js +1 -1
  236. package/build/graphql/types/credentials/IosAppCredentials.js +1 -1
  237. package/build/log.js +4 -4
  238. package/build/ora.js +2 -2
  239. package/build/platform.js +1 -1
  240. package/build/project/android/applicationId.js +6 -6
  241. package/build/project/android/gradle.js +2 -2
  242. package/build/project/android/gradleUtils.js +2 -2
  243. package/build/project/ensureProjectExists.js +3 -3
  244. package/build/project/expoSdk.js +3 -3
  245. package/build/project/ios/bundleIdentifier.js +4 -4
  246. package/build/project/ios/scheme.js +3 -3
  247. package/build/project/metroConfig.js +3 -3
  248. package/build/project/projectUtils.d.ts +1 -3
  249. package/build/project/projectUtils.js +15 -15
  250. package/build/project/publish.js +8 -8
  251. package/build/project/workflow.js +2 -2
  252. package/build/prompts.js +1 -1
  253. package/build/submit/ArchiveSource.js +3 -3
  254. package/build/submit/BaseSubmitter.js +1 -1
  255. package/build/submit/android/AndroidSubmitCommand.js +3 -3
  256. package/build/submit/android/AndroidSubmitter.js +3 -3
  257. package/build/submit/android/ServiceAccountSource.js +4 -4
  258. package/build/submit/ios/AppProduce.js +2 -2
  259. package/build/submit/ios/AppSpecificPasswordSource.js +3 -4
  260. package/build/submit/ios/AscApiKeySource.js +2 -2
  261. package/build/submit/ios/CredentialsServiceSource.js +2 -2
  262. package/build/submit/ios/IosSubmitCommand.js +5 -5
  263. package/build/submit/ios/IosSubmitter.js +3 -3
  264. package/build/submit/ios/utils/language.js +1 -1
  265. package/build/submit/submit.js +4 -4
  266. package/build/submit/utils/errors.js +1 -1
  267. package/build/submit/utils/files.js +1 -1
  268. package/build/submit/utils/logs.js +5 -5
  269. package/build/submit/utils/summary.js +3 -3
  270. package/build/submit/utils/urls.js +2 -2
  271. package/build/submit/utils/wait.js +2 -2
  272. package/build/{build → update}/android/UpdatesModule.d.ts +0 -0
  273. package/build/{build → update}/android/UpdatesModule.js +4 -3
  274. package/build/{build → update}/ios/UpdatesModule.d.ts +0 -0
  275. package/build/{build → update}/ios/UpdatesModule.js +7 -8
  276. package/build/update/utils.d.ts +3 -0
  277. package/build/update/utils.js +20 -2
  278. package/build/uploads.d.ts +2 -10
  279. package/build/uploads.js +32 -12
  280. package/build/user/User.js +3 -5
  281. package/build/user/UserSettings.js +2 -2
  282. package/build/user/actions.js +5 -5
  283. package/build/user/otp.js +6 -8
  284. package/build/user/sessionStorage.js +1 -1
  285. package/build/utils/code-signing.d.ts +29 -0
  286. package/build/utils/code-signing.js +165 -0
  287. package/build/utils/expoCli.js +4 -4
  288. package/build/utils/files.js +3 -3
  289. package/build/utils/formatFields.js +1 -1
  290. package/build/utils/json.js +2 -2
  291. package/build/utils/paths.js +2 -2
  292. package/build/utils/plist.js +3 -3
  293. package/build/utils/profiles.js +2 -2
  294. package/build/utils/progress.d.ts +6 -3
  295. package/build/utils/progress.js +1 -1
  296. package/build/vcs/clients/git.js +3 -3
  297. package/build/vcs/clients/gitNoCommit.js +3 -3
  298. package/build/vcs/git.js +1 -1
  299. package/build/vcs/index.js +3 -3
  300. package/build/vcs/local.js +4 -4
  301. package/build/webhooks/formatWebhook.js +1 -1
  302. package/build/webhooks/input.js +2 -2
  303. package/oclif.manifest.json +1 -1
  304. package/package.json +28 -21
  305. package/build/ApiV2Error.d.ts +0 -16
  306. package/build/ApiV2Error.js +0 -14
  307. package/build/build/utils/updates.d.ts +0 -2
  308. package/build/build/utils/updates.js +0 -9
@@ -35,7 +35,7 @@ export declare type Scalars = {
35
35
  };
36
36
  export declare type AcceptUserInvitationResult = {
37
37
  __typename?: 'AcceptUserInvitationResult';
38
- success?: Maybe<Scalars['Boolean']>;
38
+ success: Scalars['Boolean'];
39
39
  };
40
40
  /** A method of authentication for an Actor */
41
41
  export declare type AccessToken = {
@@ -234,28 +234,28 @@ export declare type AccountMutation = {
234
234
  /** Cancel scheduled subscription change */
235
235
  cancelScheduledSubscriptionChange: Account;
236
236
  /** Cancels the active subscription */
237
- cancelSubscription?: Maybe<Account>;
237
+ cancelSubscription: Account;
238
238
  /** Upgrades or downgrades the active subscription to the newPlanIdentifier, which must be one of the EAS plans (i.e., Production or Enterprise). */
239
239
  changePlan: Account;
240
240
  /** Add specified account Permissions for Actor. Actor must already have at least one permission on the account. */
241
- grantActorPermissions?: Maybe<Account>;
241
+ grantActorPermissions: Account;
242
242
  /** Rename this account and the primary user's username if this account is a personal account */
243
243
  rename: Account;
244
244
  /** Requests a refund for the specified charge. Returns true if auto-refund was possible, otherwise requests a manual refund from support and returns false. */
245
- requestRefund?: Maybe<Scalars['Boolean']>;
245
+ requestRefund: Scalars['Boolean'];
246
246
  /** Revoke specified Permissions for Actor. Actor must already have at least one permission on the account. */
247
- revokeActorPermissions?: Maybe<Account>;
247
+ revokeActorPermissions: Account;
248
248
  /**
249
249
  * Update setting to purchase new build packs when the current one is consumed
250
250
  * @deprecated Build packs are no longer supported
251
251
  */
252
252
  setBuildAutoRenew?: Maybe<Account>;
253
253
  /** Set payment details */
254
- setPaymentSource?: Maybe<Account>;
254
+ setPaymentSource: Account;
255
255
  /** Require authorization to send push notifications for experiences owned by this account */
256
- setPushSecurityEnabled?: Maybe<Account>;
256
+ setPushSecurityEnabled: Account;
257
257
  /** Add a subscription */
258
- subscribeToProduct?: Maybe<Account>;
258
+ subscribeToProduct: Account;
259
259
  };
260
260
  export declare type AccountMutationBuyProductArgs = {
261
261
  accountName: Scalars['ID'];
@@ -413,15 +413,15 @@ export declare type AndroidAppBuildCredentialsInput = {
413
413
  export declare type AndroidAppBuildCredentialsMutation = {
414
414
  __typename?: 'AndroidAppBuildCredentialsMutation';
415
415
  /** Create a set of build credentials for an Android app */
416
- createAndroidAppBuildCredentials?: Maybe<AndroidAppBuildCredentials>;
416
+ createAndroidAppBuildCredentials: AndroidAppBuildCredentials;
417
417
  /** delete a set of build credentials for an Android app */
418
- deleteAndroidAppBuildCredentials?: Maybe<DeleteAndroidAppBuildCredentialsResult>;
418
+ deleteAndroidAppBuildCredentials: DeleteAndroidAppBuildCredentialsResult;
419
419
  /** Set the build credentials to be the default for the Android app */
420
- setDefault?: Maybe<AndroidAppBuildCredentials>;
420
+ setDefault: AndroidAppBuildCredentials;
421
421
  /** Set the keystore to be used for an Android app */
422
- setKeystore?: Maybe<AndroidAppBuildCredentials>;
422
+ setKeystore: AndroidAppBuildCredentials;
423
423
  /** Set the name of a set of build credentials to be used for an Android app */
424
- setName?: Maybe<AndroidAppBuildCredentials>;
424
+ setName: AndroidAppBuildCredentials;
425
425
  };
426
426
  export declare type AndroidAppBuildCredentialsMutationCreateAndroidAppBuildCredentialsArgs = {
427
427
  androidAppBuildCredentialsInput: AndroidAppBuildCredentialsInput;
@@ -465,11 +465,11 @@ export declare type AndroidAppCredentialsInput = {
465
465
  export declare type AndroidAppCredentialsMutation = {
466
466
  __typename?: 'AndroidAppCredentialsMutation';
467
467
  /** Create a set of credentials for an Android app */
468
- createAndroidAppCredentials?: Maybe<AndroidAppCredentials>;
468
+ createAndroidAppCredentials: AndroidAppCredentials;
469
469
  /** Set the FCM push key to be used in an Android app */
470
- setFcm?: Maybe<AndroidAppCredentials>;
470
+ setFcm: AndroidAppCredentials;
471
471
  /** Set the Google Service Account Key to be used for submitting an Android app */
472
- setGoogleServiceAccountKeyForSubmissions?: Maybe<AndroidAppCredentials>;
472
+ setGoogleServiceAccountKeyForSubmissions: AndroidAppCredentials;
473
473
  };
474
474
  export declare type AndroidAppCredentialsMutationCreateAndroidAppCredentialsArgs = {
475
475
  androidAppCredentialsInput: AndroidAppCredentialsInput;
@@ -688,8 +688,6 @@ export declare type App = Project & {
688
688
  pushSecurityEnabled: Scalars['Boolean'];
689
689
  /** Classic update release channel names (to be removed) */
690
690
  releaseChannels: Array<Scalars['String']>;
691
- /** @deprecated No longer supported */
692
- releases: Array<Maybe<AppRelease>>;
693
691
  /** @deprecated Legacy access tokens are deprecated */
694
692
  requiresAccessTokenForPushSecurity: Scalars['Boolean'];
695
693
  /** SDK version of the latest classic update publish, 0.0.0 otherwise */
@@ -709,6 +707,8 @@ export declare type App = Project & {
709
707
  updateChannels: Array<UpdateChannel>;
710
708
  /** Time of last classic update publish */
711
709
  updated: Scalars['DateTime'];
710
+ /** EAS updates owned by an app */
711
+ updates: Array<Update>;
712
712
  /** @deprecated Use ownerAccount.name instead */
713
713
  username: Scalars['String'];
714
714
  /** @deprecated No longer supported */
@@ -778,12 +778,6 @@ export declare type AppLikedByArgs = {
778
778
  offset?: InputMaybe<Scalars['Int']>;
779
779
  };
780
780
  /** Represents an Exponent App (or Experience in legacy terms) */
781
- export declare type AppReleasesArgs = {
782
- limit?: InputMaybe<Scalars['Int']>;
783
- offset?: InputMaybe<Scalars['Int']>;
784
- platform: AppPlatform;
785
- };
786
- /** Represents an Exponent App (or Experience in legacy terms) */
787
781
  export declare type AppSubmissionsArgs = {
788
782
  filter: SubmissionFilter;
789
783
  limit: Scalars['Int'];
@@ -808,6 +802,11 @@ export declare type AppUpdateChannelsArgs = {
808
802
  offset: Scalars['Int'];
809
803
  };
810
804
  /** Represents an Exponent App (or Experience in legacy terms) */
805
+ export declare type AppUpdatesArgs = {
806
+ limit: Scalars['Int'];
807
+ offset: Scalars['Int'];
808
+ };
809
+ /** Represents an Exponent App (or Experience in legacy terms) */
811
810
  export declare type AppWebhooksArgs = {
812
811
  filter?: InputMaybe<WebhookFilter>;
813
812
  };
@@ -835,7 +834,7 @@ export declare type AppMutation = {
835
834
  /** @deprecated No longer supported */
836
835
  grantAccess?: Maybe<App>;
837
836
  /** Require api token to send push notifs for experience */
838
- setPushSecurityEnabled?: Maybe<App>;
837
+ setPushSecurityEnabled: App;
839
838
  };
840
839
  export declare type AppMutationCreateAppArgs = {
841
840
  appInput: AppInput;
@@ -967,7 +966,7 @@ export declare type AppleAppIdentifierInput = {
967
966
  export declare type AppleAppIdentifierMutation = {
968
967
  __typename?: 'AppleAppIdentifierMutation';
969
968
  /** Create an Identifier for an iOS App */
970
- createAppleAppIdentifier?: Maybe<AppleAppIdentifier>;
969
+ createAppleAppIdentifier: AppleAppIdentifier;
971
970
  };
972
971
  export declare type AppleAppIdentifierMutationCreateAppleAppIdentifierArgs = {
973
972
  accountId: Scalars['ID'];
@@ -1211,7 +1210,7 @@ export declare type AssetMutation = {
1211
1210
  * Returns an array of specifications for upload. Each URL is valid for an hour.
1212
1211
  * The content type of the asset you wish to upload must be specified.
1213
1212
  */
1214
- getSignedAssetUploadSpecifications?: Maybe<GetSignedAssetUploadSpecificationsResult>;
1213
+ getSignedAssetUploadSpecifications: GetSignedAssetUploadSpecificationsResult;
1215
1214
  };
1216
1215
  export declare type AssetMutationGetSignedAssetUploadSpecificationsArgs = {
1217
1216
  assetContentTypes: Array<InputMaybe<Scalars['String']>>;
@@ -1258,7 +1257,10 @@ export declare type Build = ActivityTimelineProjectActivity & BuildOrBuildJob &
1258
1257
  logFiles: Array<Scalars['String']>;
1259
1258
  metrics?: Maybe<BuildMetrics>;
1260
1259
  platform: AppPlatform;
1260
+ priority: BuildPriority;
1261
1261
  project: Project;
1262
+ /** Queue position is 1-indexed */
1263
+ queuePosition?: Maybe<Scalars['Int']>;
1262
1264
  reactNativeVersion?: Maybe<Scalars['String']>;
1263
1265
  releaseChannel?: Maybe<Scalars['String']>;
1264
1266
  runtimeVersion?: Maybe<Scalars['String']>;
@@ -1338,9 +1340,9 @@ export declare enum BuildJobLogsFormat {
1338
1340
  }
1339
1341
  export declare type BuildJobMutation = {
1340
1342
  __typename?: 'BuildJobMutation';
1341
- cancel?: Maybe<BuildJob>;
1343
+ cancel: BuildJob;
1342
1344
  del?: Maybe<BuildJob>;
1343
- restart?: Maybe<BuildJob>;
1345
+ restart: BuildJob;
1344
1346
  };
1345
1347
  export declare type BuildJobQuery = {
1346
1348
  __typename?: 'BuildJobQuery';
@@ -1437,6 +1439,10 @@ export declare type BuildMutationDeleteBuildArgs = {
1437
1439
  export declare type BuildOrBuildJob = {
1438
1440
  id: Scalars['ID'];
1439
1441
  };
1442
+ export declare enum BuildPriority {
1443
+ High = "HIGH",
1444
+ Normal = "NORMAL"
1445
+ }
1440
1446
  /** Publicly visible data for a Build. */
1441
1447
  export declare type BuildPublicData = {
1442
1448
  __typename?: 'BuildPublicData';
@@ -1560,9 +1566,9 @@ export declare type CreateAccessTokenInput = {
1560
1566
  export declare type CreateAccessTokenResponse = {
1561
1567
  __typename?: 'CreateAccessTokenResponse';
1562
1568
  /** AccessToken created */
1563
- accessToken?: Maybe<AccessToken>;
1569
+ accessToken: AccessToken;
1564
1570
  /** Full token string to be used for authentication */
1565
- token?: Maybe<Scalars['String']>;
1571
+ token: Scalars['String'];
1566
1572
  };
1567
1573
  export declare type CreateAndroidSubmissionInput = {
1568
1574
  appId: Scalars['ID'];
@@ -1686,7 +1692,7 @@ export declare type EditUpdateBranchInput = {
1686
1692
  };
1687
1693
  export declare type EmailSubscriptionMutation = {
1688
1694
  __typename?: 'EmailSubscriptionMutation';
1689
- addUser?: Maybe<AddUserPayload>;
1695
+ addUser: AddUserPayload;
1690
1696
  };
1691
1697
  export declare type EmailSubscriptionMutationAddUserArgs = {
1692
1698
  addUserInput: AddUserInput;
@@ -1752,7 +1758,7 @@ export declare enum Feature {
1752
1758
  }
1753
1759
  export declare type GetSignedAssetUploadSpecificationsResult = {
1754
1760
  __typename?: 'GetSignedAssetUploadSpecificationsResult';
1755
- specifications: Array<Maybe<Scalars['String']>>;
1761
+ specifications: Array<Scalars['String']>;
1756
1762
  };
1757
1763
  export declare type GoogleServiceAccountKey = {
1758
1764
  __typename?: 'GoogleServiceAccountKey';
@@ -1820,8 +1826,15 @@ export declare type InvoiceLineItem = {
1820
1826
  description: Scalars['String'];
1821
1827
  id: Scalars['ID'];
1822
1828
  period: InvoicePeriod;
1829
+ plan: InvoiceLineItemPlan;
1823
1830
  proration: Scalars['Boolean'];
1824
1831
  quantity: Scalars['Int'];
1832
+ title: Scalars['String'];
1833
+ };
1834
+ export declare type InvoiceLineItemPlan = {
1835
+ __typename?: 'InvoiceLineItemPlan';
1836
+ id: Scalars['ID'];
1837
+ name: Scalars['String'];
1825
1838
  };
1826
1839
  export declare type InvoicePeriod = {
1827
1840
  __typename?: 'InvoicePeriod';
@@ -2036,13 +2049,13 @@ export declare type MeMutation = {
2036
2049
  /** Certify an initiated second factor authentication method for the current user */
2037
2050
  certifySecondFactorDevice: SecondFactorBooleanResult;
2038
2051
  /** Create a new Account and grant this User the owner Role */
2039
- createAccount?: Maybe<Account>;
2052
+ createAccount: Account;
2040
2053
  /** Delete an Account created via createAccount */
2041
2054
  deleteAccount: DeleteAccountResult;
2042
2055
  /** Delete a second factor device */
2043
2056
  deleteSecondFactorDevice: SecondFactorBooleanResult;
2044
2057
  /** Delete a Snack that the current user owns */
2045
- deleteSnack?: Maybe<Snack>;
2058
+ deleteSnack: Snack;
2046
2059
  /** Disable all second factor authentication for the current user */
2047
2060
  disableSecondFactorAuthentication: SecondFactorBooleanResult;
2048
2061
  /** Initiate setup of two-factor authentication for the current user */
@@ -2060,11 +2073,11 @@ export declare type MeMutation = {
2060
2073
  /** Transfer project to a different Account */
2061
2074
  transferApp: App;
2062
2075
  /** Unpublish an App that the current user owns */
2063
- unpublishApp?: Maybe<App>;
2076
+ unpublishApp: App;
2064
2077
  /** Update an App that the current user owns */
2065
- updateApp?: Maybe<App>;
2078
+ updateApp: App;
2066
2079
  /** Update the current user's data */
2067
- updateProfile?: Maybe<User>;
2080
+ updateProfile: User;
2068
2081
  };
2069
2082
  export declare type MeMutationAddSecondFactorDeviceArgs = {
2070
2083
  deviceConfiguration: SecondFactorDeviceConfiguration;
@@ -2090,7 +2103,7 @@ export declare type MeMutationDisableSecondFactorAuthenticationArgs = {
2090
2103
  otp: Scalars['String'];
2091
2104
  };
2092
2105
  export declare type MeMutationInitiateSecondFactorAuthenticationArgs = {
2093
- deviceConfigurations: Array<InputMaybe<SecondFactorDeviceConfiguration>>;
2106
+ deviceConfigurations: Array<SecondFactorDeviceConfiguration>;
2094
2107
  recaptchaResponseToken?: InputMaybe<Scalars['String']>;
2095
2108
  };
2096
2109
  export declare type MeMutationLeaveAccountArgs = {
@@ -2224,6 +2237,7 @@ export declare type PublicArtifacts = {
2224
2237
  buildUrl?: Maybe<Scalars['String']>;
2225
2238
  };
2226
2239
  export declare type PublishUpdateGroupInput = {
2240
+ awaitingCodeSigningInfo?: InputMaybe<Scalars['Boolean']>;
2227
2241
  branchId: Scalars['String'];
2228
2242
  message?: InputMaybe<Scalars['String']>;
2229
2243
  runtimeVersion: Scalars['String'];
@@ -2298,7 +2312,7 @@ export declare type RootMutation = {
2298
2312
  /** Mutations that create, read, update, and delete AccessTokens for Actors */
2299
2313
  accessToken: AccessTokenMutation;
2300
2314
  /** Mutations that modify an Account */
2301
- account?: Maybe<AccountMutation>;
2315
+ account: AccountMutation;
2302
2316
  /** Mutations that modify the build credentials for an Android app */
2303
2317
  androidAppBuildCredentials: AndroidAppBuildCredentialsMutation;
2304
2318
  /** Mutations that modify the credentials for an Android app */
@@ -2327,9 +2341,9 @@ export declare type RootMutation = {
2327
2341
  appleTeam: AppleTeamMutation;
2328
2342
  asset: AssetMutation;
2329
2343
  /** Mutations that modify an EAS Build */
2330
- build?: Maybe<BuildMutation>;
2344
+ build: BuildMutation;
2331
2345
  /** Mutations that modify an BuildJob */
2332
- buildJob?: Maybe<BuildJobMutation>;
2346
+ buildJob: BuildJobMutation;
2333
2347
  /** Mutations that modify an EmailSubscription */
2334
2348
  emailSubscription: EmailSubscriptionMutation;
2335
2349
  /** Mutations that create and delete EnvironmentSecrets */
@@ -2342,7 +2356,7 @@ export declare type RootMutation = {
2342
2356
  iosAppCredentials: IosAppCredentialsMutation;
2343
2357
  keystoreGenerationUrl: KeystoreGenerationUrlMutation;
2344
2358
  /** Mutations that modify the currently authenticated User */
2345
- me?: Maybe<MeMutation>;
2359
+ me: MeMutation;
2346
2360
  /** Mutations that create, update, and delete Robots */
2347
2361
  robot: RobotMutation;
2348
2362
  /** Mutations that modify an EAS Submit submission */
@@ -2471,8 +2485,8 @@ export declare type SecondFactorDeviceConfigurationResult = {
2471
2485
  };
2472
2486
  export declare type SecondFactorInitiationResult = {
2473
2487
  __typename?: 'SecondFactorInitiationResult';
2474
- configurationResults: Array<Maybe<SecondFactorDeviceConfigurationResult>>;
2475
- plaintextBackupCodes: Array<Maybe<Scalars['String']>>;
2488
+ configurationResults: Array<SecondFactorDeviceConfigurationResult>;
2489
+ plaintextBackupCodes: Array<Scalars['String']>;
2476
2490
  };
2477
2491
  export declare enum SecondFactorMethod {
2478
2492
  /** Google Authenticator (TOTP) */
@@ -2482,7 +2496,7 @@ export declare enum SecondFactorMethod {
2482
2496
  }
2483
2497
  export declare type SecondFactorRegenerateBackupCodesResult = {
2484
2498
  __typename?: 'SecondFactorRegenerateBackupCodesResult';
2485
- plaintextBackupCodes: Array<Maybe<Scalars['String']>>;
2499
+ plaintextBackupCodes: Array<Scalars['String']>;
2486
2500
  };
2487
2501
  export declare type Snack = Project & {
2488
2502
  __typename?: 'Snack';
@@ -2490,6 +2504,8 @@ export declare type Snack = Project & {
2490
2504
  description: Scalars['String'];
2491
2505
  /** Full name of the Snack, e.g. "@john/mysnack", "@snack/245631" */
2492
2506
  fullName: Scalars['String'];
2507
+ /** Has the Snack been run without errors */
2508
+ hasBeenRunSuccessfully?: Maybe<Scalars['Boolean']>;
2493
2509
  hashId: Scalars['String'];
2494
2510
  /** @deprecated No longer supported */
2495
2511
  iconUrl?: Maybe<Scalars['String']>;
@@ -2498,6 +2514,8 @@ export declare type Snack = Project & {
2498
2514
  isDraft: Scalars['Boolean'];
2499
2515
  /** Name of the Snack, e.g. "My Snack" */
2500
2516
  name: Scalars['String'];
2517
+ /** Preview image of the running snack */
2518
+ previewImage?: Maybe<Scalars['String']>;
2501
2519
  published: Scalars['Boolean'];
2502
2520
  /** Slug name, e.g. "mysnack", "245631" */
2503
2521
  slug: Scalars['String'];
@@ -2539,6 +2557,7 @@ export declare type Submission = ActivityTimelineProjectActivity & {
2539
2557
  actor?: Maybe<Actor>;
2540
2558
  androidConfig?: Maybe<AndroidSubmissionConfig>;
2541
2559
  app: App;
2560
+ cancelingActor?: Maybe<Actor>;
2542
2561
  createdAt: Scalars['DateTime'];
2543
2562
  error?: Maybe<SubmissionError>;
2544
2563
  id: Scalars['ID'];
@@ -2577,6 +2596,8 @@ export declare type SubmissionFilter = {
2577
2596
  };
2578
2597
  export declare type SubmissionMutation = {
2579
2598
  __typename?: 'SubmissionMutation';
2599
+ /** Cancel an EAS Submit submission */
2600
+ cancelSubmission: Submission;
2580
2601
  /** Create an Android EAS Submit submission */
2581
2602
  createAndroidSubmission: CreateSubmissionResult;
2582
2603
  /** Create an iOS EAS Submit submission */
@@ -2587,6 +2608,9 @@ export declare type SubmissionMutation = {
2587
2608
  */
2588
2609
  createSubmission: CreateSubmissionResult;
2589
2610
  };
2611
+ export declare type SubmissionMutationCancelSubmissionArgs = {
2612
+ submissionId?: InputMaybe<Scalars['ID']>;
2613
+ };
2590
2614
  export declare type SubmissionMutationCreateAndroidSubmissionArgs = {
2591
2615
  input: CreateAndroidSubmissionInput;
2592
2616
  };
@@ -2631,6 +2655,7 @@ export declare type Update = ActivityTimelineProjectActivity & {
2631
2655
  __typename?: 'Update';
2632
2656
  activityTimestamp: Scalars['DateTime'];
2633
2657
  actor?: Maybe<Actor>;
2658
+ awaitingCodeSigningInfo: Scalars['Boolean'];
2634
2659
  branch: UpdateBranch;
2635
2660
  branchId: Scalars['ID'];
2636
2661
  codeSigningInfo?: Maybe<CodeSigningInfo>;
@@ -2661,7 +2686,7 @@ export declare type UpdateBranchUpdatesArgs = {
2661
2686
  export declare type UpdateBranchMutation = {
2662
2687
  __typename?: 'UpdateBranchMutation';
2663
2688
  /** Create an EAS branch for an app */
2664
- createUpdateBranchForApp?: Maybe<UpdateBranch>;
2689
+ createUpdateBranchForApp: UpdateBranch;
2665
2690
  /** Delete an EAS branch and all of its updates as long as the branch is not being used by any channels */
2666
2691
  deleteUpdateBranch: DeleteUpdateBranchResult;
2667
2692
  /**
@@ -2707,7 +2732,7 @@ export declare type UpdateChannelMutation = {
2707
2732
  * In order to work with GraphQL formatting, the branchMapping should be a
2708
2733
  * stringified JSON supplied to the mutation as a variable.
2709
2734
  */
2710
- createUpdateChannelForApp?: Maybe<UpdateChannel>;
2735
+ createUpdateChannelForApp: UpdateChannel;
2711
2736
  /** delete an EAS channel that doesn't point to any branches */
2712
2737
  deleteUpdateChannel: DeleteUpdateChannelResult;
2713
2738
  /**
@@ -2716,7 +2741,7 @@ export declare type UpdateChannelMutation = {
2716
2741
  * In order to work with GraphQL formatting, the branchMapping should be a
2717
2742
  * stringified JSON supplied to the mutation as a variable.
2718
2743
  */
2719
- editUpdateChannel?: Maybe<UpdateChannel>;
2744
+ editUpdateChannel: UpdateChannel;
2720
2745
  };
2721
2746
  export declare type UpdateChannelMutationCreateUpdateChannelForAppArgs = {
2722
2747
  appId: Scalars['ID'];
@@ -3048,11 +3073,11 @@ export declare type CreateUpdateBranchForAppMutation = {
3048
3073
  __typename?: 'RootMutation';
3049
3074
  updateBranch: {
3050
3075
  __typename?: 'UpdateBranchMutation';
3051
- createUpdateBranchForApp?: {
3076
+ createUpdateBranchForApp: {
3052
3077
  __typename?: 'UpdateBranch';
3053
3078
  id: string;
3054
3079
  name: string;
3055
- } | null | undefined;
3080
+ };
3056
3081
  };
3057
3082
  };
3058
3083
  export declare type GetBranchInfoQueryVariables = Exact<{
@@ -3070,7 +3095,7 @@ export declare type GetBranchInfoQuery = {
3070
3095
  __typename?: 'UpdateBranch';
3071
3096
  id: string;
3072
3097
  name: string;
3073
- } | null | undefined;
3098
+ } | null;
3074
3099
  };
3075
3100
  };
3076
3101
  };
@@ -3106,19 +3131,19 @@ export declare type BranchesByAppQuery = {
3106
3131
  __typename?: 'Update';
3107
3132
  id: string;
3108
3133
  createdAt: any;
3109
- message?: string | null | undefined;
3134
+ message?: string | null;
3110
3135
  runtimeVersion: string;
3111
3136
  group: string;
3112
3137
  platform: string;
3113
3138
  actor?: {
3114
3139
  __typename: 'Robot';
3115
- firstName?: string | null | undefined;
3140
+ firstName?: string | null;
3116
3141
  id: string;
3117
3142
  } | {
3118
3143
  __typename: 'User';
3119
3144
  username: string;
3120
3145
  id: string;
3121
- } | null | undefined;
3146
+ } | null;
3122
3147
  }>;
3123
3148
  }>;
3124
3149
  };
@@ -3143,14 +3168,14 @@ export declare type CancelBuildMutationVariables = Exact<{
3143
3168
  }>;
3144
3169
  export declare type CancelBuildMutation = {
3145
3170
  __typename?: 'RootMutation';
3146
- build?: {
3171
+ build: {
3147
3172
  __typename?: 'BuildMutation';
3148
3173
  cancel: {
3149
3174
  __typename?: 'Build';
3150
3175
  id: string;
3151
3176
  status: BuildStatus;
3152
3177
  };
3153
- } | null | undefined;
3178
+ };
3154
3179
  };
3155
3180
  export declare type CreateUpdateChannelOnAppMutationVariables = Exact<{
3156
3181
  appId: Scalars['ID'];
@@ -3161,12 +3186,12 @@ export declare type CreateUpdateChannelOnAppMutation = {
3161
3186
  __typename?: 'RootMutation';
3162
3187
  updateChannel: {
3163
3188
  __typename?: 'UpdateChannelMutation';
3164
- createUpdateChannelForApp?: {
3189
+ createUpdateChannelForApp: {
3165
3190
  __typename?: 'UpdateChannel';
3166
3191
  id: string;
3167
3192
  name: string;
3168
3193
  branchMapping: string;
3169
- } | null | undefined;
3194
+ };
3170
3195
  };
3171
3196
  };
3172
3197
  export declare type GetChannelInfoQueryVariables = Exact<{
@@ -3184,7 +3209,7 @@ export declare type GetChannelInfoQuery = {
3184
3209
  __typename?: 'UpdateChannel';
3185
3210
  id: string;
3186
3211
  name: string;
3187
- } | null | undefined;
3212
+ } | null;
3188
3213
  };
3189
3214
  };
3190
3215
  };
@@ -3221,7 +3246,7 @@ export declare type GetChannelByNameToEditQuery = {
3221
3246
  id: string;
3222
3247
  name: string;
3223
3248
  }>;
3224
- } | null | undefined;
3249
+ } | null;
3225
3250
  };
3226
3251
  };
3227
3252
  };
@@ -3233,12 +3258,12 @@ export declare type UpdateChannelBranchMappingMutation = {
3233
3258
  __typename?: 'RootMutation';
3234
3259
  updateChannel: {
3235
3260
  __typename?: 'UpdateChannelMutation';
3236
- editUpdateChannel?: {
3261
+ editUpdateChannel: {
3237
3262
  __typename?: 'UpdateChannel';
3238
3263
  id: string;
3239
3264
  name: string;
3240
3265
  branchMapping: string;
3241
- } | null | undefined;
3266
+ };
3242
3267
  };
3243
3268
  };
3244
3269
  export declare type GetAllChannelsForAppQueryVariables = Exact<{
@@ -3266,69 +3291,25 @@ export declare type GetAllChannelsForAppQuery = {
3266
3291
  __typename?: 'Update';
3267
3292
  id: string;
3268
3293
  group: string;
3269
- message?: string | null | undefined;
3294
+ message?: string | null;
3270
3295
  runtimeVersion: string;
3271
3296
  createdAt: any;
3272
3297
  platform: string;
3273
3298
  actor?: {
3274
3299
  __typename?: 'Robot';
3275
- firstName?: string | null | undefined;
3300
+ firstName?: string | null;
3276
3301
  id: string;
3277
3302
  } | {
3278
3303
  __typename?: 'User';
3279
3304
  username: string;
3280
3305
  id: string;
3281
- } | null | undefined;
3306
+ } | null;
3282
3307
  }>;
3283
3308
  }>;
3284
3309
  }>;
3285
3310
  };
3286
3311
  };
3287
3312
  };
3288
- export declare type GetChannelByNameForAppQueryVariables = Exact<{
3289
- appId: Scalars['String'];
3290
- channelName: Scalars['String'];
3291
- }>;
3292
- export declare type GetChannelByNameForAppQuery = {
3293
- __typename?: 'RootQuery';
3294
- app: {
3295
- __typename?: 'AppQuery';
3296
- byId: {
3297
- __typename?: 'App';
3298
- id: string;
3299
- updateChannelByName?: {
3300
- __typename?: 'UpdateChannel';
3301
- id: string;
3302
- name: string;
3303
- createdAt: any;
3304
- branchMapping: string;
3305
- updateBranches: Array<{
3306
- __typename?: 'UpdateBranch';
3307
- id: string;
3308
- name: string;
3309
- updates: Array<{
3310
- __typename?: 'Update';
3311
- id: string;
3312
- group: string;
3313
- message?: string | null | undefined;
3314
- runtimeVersion: string;
3315
- createdAt: any;
3316
- platform: string;
3317
- actor?: {
3318
- __typename?: 'Robot';
3319
- firstName?: string | null | undefined;
3320
- id: string;
3321
- } | {
3322
- __typename?: 'User';
3323
- username: string;
3324
- id: string;
3325
- } | null | undefined;
3326
- }>;
3327
- }>;
3328
- } | null | undefined;
3329
- };
3330
- };
3331
- };
3332
3313
  export declare type AppInfoQueryVariables = Exact<{
3333
3314
  appId: Scalars['String'];
3334
3315
  }>;
@@ -3368,7 +3349,7 @@ export declare type GetUpdateGroupAsyncQuery = {
3368
3349
  runtimeVersion: string;
3369
3350
  manifestFragment: string;
3370
3351
  platform: string;
3371
- message?: string | null | undefined;
3352
+ message?: string | null;
3372
3353
  }>;
3373
3354
  };
3374
3355
  export declare type UpdatesByGroupQueryVariables = Exact<{
@@ -3382,17 +3363,17 @@ export declare type UpdatesByGroupQuery = {
3382
3363
  group: string;
3383
3364
  runtimeVersion: string;
3384
3365
  platform: string;
3385
- message?: string | null | undefined;
3366
+ message?: string | null;
3386
3367
  createdAt: any;
3387
3368
  actor?: {
3388
3369
  __typename?: 'Robot';
3389
- firstName?: string | null | undefined;
3370
+ firstName?: string | null;
3390
3371
  id: string;
3391
3372
  } | {
3392
3373
  __typename?: 'User';
3393
3374
  username: string;
3394
3375
  id: string;
3395
- } | null | undefined;
3376
+ } | null;
3396
3377
  }>;
3397
3378
  };
3398
3379
  export declare type CreateAndroidAppBuildCredentialsMutationVariables = Exact<{
@@ -3403,7 +3384,7 @@ export declare type CreateAndroidAppBuildCredentialsMutation = {
3403
3384
  __typename?: 'RootMutation';
3404
3385
  androidAppBuildCredentials: {
3405
3386
  __typename?: 'AndroidAppBuildCredentialsMutation';
3406
- createAndroidAppBuildCredentials?: {
3387
+ createAndroidAppBuildCredentials: {
3407
3388
  __typename?: 'AndroidAppBuildCredentials';
3408
3389
  id: string;
3409
3390
  isDefault: boolean;
@@ -3416,14 +3397,14 @@ export declare type CreateAndroidAppBuildCredentialsMutation = {
3416
3397
  keystore: string;
3417
3398
  keystorePassword: string;
3418
3399
  keyAlias: string;
3419
- keyPassword?: string | null | undefined;
3420
- md5CertificateFingerprint?: string | null | undefined;
3421
- sha1CertificateFingerprint?: string | null | undefined;
3422
- sha256CertificateFingerprint?: string | null | undefined;
3400
+ keyPassword?: string | null;
3401
+ md5CertificateFingerprint?: string | null;
3402
+ sha1CertificateFingerprint?: string | null;
3403
+ sha256CertificateFingerprint?: string | null;
3423
3404
  createdAt: any;
3424
3405
  updatedAt: any;
3425
- } | null | undefined;
3426
- } | null | undefined;
3406
+ } | null;
3407
+ };
3427
3408
  };
3428
3409
  };
3429
3410
  export declare type SetKeystoreMutationVariables = Exact<{
@@ -3434,7 +3415,7 @@ export declare type SetKeystoreMutation = {
3434
3415
  __typename?: 'RootMutation';
3435
3416
  androidAppBuildCredentials: {
3436
3417
  __typename?: 'AndroidAppBuildCredentialsMutation';
3437
- setKeystore?: {
3418
+ setKeystore: {
3438
3419
  __typename?: 'AndroidAppBuildCredentials';
3439
3420
  id: string;
3440
3421
  isDefault: boolean;
@@ -3447,14 +3428,14 @@ export declare type SetKeystoreMutation = {
3447
3428
  keystore: string;
3448
3429
  keystorePassword: string;
3449
3430
  keyAlias: string;
3450
- keyPassword?: string | null | undefined;
3451
- md5CertificateFingerprint?: string | null | undefined;
3452
- sha1CertificateFingerprint?: string | null | undefined;
3453
- sha256CertificateFingerprint?: string | null | undefined;
3431
+ keyPassword?: string | null;
3432
+ md5CertificateFingerprint?: string | null;
3433
+ sha1CertificateFingerprint?: string | null;
3434
+ sha256CertificateFingerprint?: string | null;
3454
3435
  createdAt: any;
3455
3436
  updatedAt: any;
3456
- } | null | undefined;
3457
- } | null | undefined;
3437
+ } | null;
3438
+ };
3458
3439
  };
3459
3440
  };
3460
3441
  export declare type CreateAndroidAppCredentialsMutationVariables = Exact<{
@@ -3466,10 +3447,10 @@ export declare type CreateAndroidAppCredentialsMutation = {
3466
3447
  __typename?: 'RootMutation';
3467
3448
  androidAppCredentials: {
3468
3449
  __typename?: 'AndroidAppCredentialsMutation';
3469
- createAndroidAppCredentials?: {
3450
+ createAndroidAppCredentials: {
3470
3451
  __typename?: 'AndroidAppCredentials';
3471
3452
  id: string;
3472
- applicationIdentifier?: string | null | undefined;
3453
+ applicationIdentifier?: string | null;
3473
3454
  isLegacy: boolean;
3474
3455
  app: {
3475
3456
  __typename?: 'App';
@@ -3493,9 +3474,9 @@ export declare type CreateAndroidAppCredentialsMutation = {
3493
3474
  projectId: string;
3494
3475
  keyId: string;
3495
3476
  serviceAccountEmail: string;
3496
- clientId?: string | null | undefined;
3477
+ clientId?: string | null;
3497
3478
  };
3498
- } | null | undefined;
3479
+ } | null;
3499
3480
  googleServiceAccountKeyForSubmissions?: {
3500
3481
  __typename?: 'GoogleServiceAccountKey';
3501
3482
  id: string;
@@ -3505,7 +3486,7 @@ export declare type CreateAndroidAppCredentialsMutation = {
3505
3486
  clientIdentifier: string;
3506
3487
  createdAt: any;
3507
3488
  updatedAt: any;
3508
- } | null | undefined;
3489
+ } | null;
3509
3490
  androidAppBuildCredentialsList: Array<{
3510
3491
  __typename?: 'AndroidAppBuildCredentials';
3511
3492
  id: string;
@@ -3519,15 +3500,15 @@ export declare type CreateAndroidAppCredentialsMutation = {
3519
3500
  keystore: string;
3520
3501
  keystorePassword: string;
3521
3502
  keyAlias: string;
3522
- keyPassword?: string | null | undefined;
3523
- md5CertificateFingerprint?: string | null | undefined;
3524
- sha1CertificateFingerprint?: string | null | undefined;
3525
- sha256CertificateFingerprint?: string | null | undefined;
3503
+ keyPassword?: string | null;
3504
+ md5CertificateFingerprint?: string | null;
3505
+ sha1CertificateFingerprint?: string | null;
3506
+ sha256CertificateFingerprint?: string | null;
3526
3507
  createdAt: any;
3527
3508
  updatedAt: any;
3528
- } | null | undefined;
3509
+ } | null;
3529
3510
  }>;
3530
- } | null | undefined;
3511
+ };
3531
3512
  };
3532
3513
  };
3533
3514
  export declare type SetFcmMutationVariables = Exact<{
@@ -3538,10 +3519,10 @@ export declare type SetFcmMutation = {
3538
3519
  __typename?: 'RootMutation';
3539
3520
  androidAppCredentials: {
3540
3521
  __typename?: 'AndroidAppCredentialsMutation';
3541
- setFcm?: {
3522
+ setFcm: {
3542
3523
  __typename?: 'AndroidAppCredentials';
3543
3524
  id: string;
3544
- applicationIdentifier?: string | null | undefined;
3525
+ applicationIdentifier?: string | null;
3545
3526
  isLegacy: boolean;
3546
3527
  app: {
3547
3528
  __typename?: 'App';
@@ -3565,9 +3546,9 @@ export declare type SetFcmMutation = {
3565
3546
  projectId: string;
3566
3547
  keyId: string;
3567
3548
  serviceAccountEmail: string;
3568
- clientId?: string | null | undefined;
3549
+ clientId?: string | null;
3569
3550
  };
3570
- } | null | undefined;
3551
+ } | null;
3571
3552
  googleServiceAccountKeyForSubmissions?: {
3572
3553
  __typename?: 'GoogleServiceAccountKey';
3573
3554
  id: string;
@@ -3577,7 +3558,7 @@ export declare type SetFcmMutation = {
3577
3558
  clientIdentifier: string;
3578
3559
  createdAt: any;
3579
3560
  updatedAt: any;
3580
- } | null | undefined;
3561
+ } | null;
3581
3562
  androidAppBuildCredentialsList: Array<{
3582
3563
  __typename?: 'AndroidAppBuildCredentials';
3583
3564
  id: string;
@@ -3591,15 +3572,15 @@ export declare type SetFcmMutation = {
3591
3572
  keystore: string;
3592
3573
  keystorePassword: string;
3593
3574
  keyAlias: string;
3594
- keyPassword?: string | null | undefined;
3595
- md5CertificateFingerprint?: string | null | undefined;
3596
- sha1CertificateFingerprint?: string | null | undefined;
3597
- sha256CertificateFingerprint?: string | null | undefined;
3575
+ keyPassword?: string | null;
3576
+ md5CertificateFingerprint?: string | null;
3577
+ sha1CertificateFingerprint?: string | null;
3578
+ sha256CertificateFingerprint?: string | null;
3598
3579
  createdAt: any;
3599
3580
  updatedAt: any;
3600
- } | null | undefined;
3581
+ } | null;
3601
3582
  }>;
3602
- } | null | undefined;
3583
+ };
3603
3584
  };
3604
3585
  };
3605
3586
  export declare type SetGoogleServiceAccountKeyForSubmissionsMutationVariables = Exact<{
@@ -3610,10 +3591,10 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
3610
3591
  __typename?: 'RootMutation';
3611
3592
  androidAppCredentials: {
3612
3593
  __typename?: 'AndroidAppCredentialsMutation';
3613
- setGoogleServiceAccountKeyForSubmissions?: {
3594
+ setGoogleServiceAccountKeyForSubmissions: {
3614
3595
  __typename?: 'AndroidAppCredentials';
3615
3596
  id: string;
3616
- applicationIdentifier?: string | null | undefined;
3597
+ applicationIdentifier?: string | null;
3617
3598
  isLegacy: boolean;
3618
3599
  app: {
3619
3600
  __typename?: 'App';
@@ -3637,9 +3618,9 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
3637
3618
  projectId: string;
3638
3619
  keyId: string;
3639
3620
  serviceAccountEmail: string;
3640
- clientId?: string | null | undefined;
3621
+ clientId?: string | null;
3641
3622
  };
3642
- } | null | undefined;
3623
+ } | null;
3643
3624
  googleServiceAccountKeyForSubmissions?: {
3644
3625
  __typename?: 'GoogleServiceAccountKey';
3645
3626
  id: string;
@@ -3649,7 +3630,7 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
3649
3630
  clientIdentifier: string;
3650
3631
  createdAt: any;
3651
3632
  updatedAt: any;
3652
- } | null | undefined;
3633
+ } | null;
3653
3634
  androidAppBuildCredentialsList: Array<{
3654
3635
  __typename?: 'AndroidAppBuildCredentials';
3655
3636
  id: string;
@@ -3663,15 +3644,15 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
3663
3644
  keystore: string;
3664
3645
  keystorePassword: string;
3665
3646
  keyAlias: string;
3666
- keyPassword?: string | null | undefined;
3667
- md5CertificateFingerprint?: string | null | undefined;
3668
- sha1CertificateFingerprint?: string | null | undefined;
3669
- sha256CertificateFingerprint?: string | null | undefined;
3647
+ keyPassword?: string | null;
3648
+ md5CertificateFingerprint?: string | null;
3649
+ sha1CertificateFingerprint?: string | null;
3650
+ sha256CertificateFingerprint?: string | null;
3670
3651
  createdAt: any;
3671
3652
  updatedAt: any;
3672
- } | null | undefined;
3653
+ } | null;
3673
3654
  }>;
3674
- } | null | undefined;
3655
+ };
3675
3656
  };
3676
3657
  };
3677
3658
  export declare type CreateAndroidFcmMutationVariables = Exact<{
@@ -3698,7 +3679,7 @@ export declare type CreateAndroidFcmMutation = {
3698
3679
  projectId: string;
3699
3680
  keyId: string;
3700
3681
  serviceAccountEmail: string;
3701
- clientId?: string | null | undefined;
3682
+ clientId?: string | null;
3702
3683
  };
3703
3684
  };
3704
3685
  };
@@ -3731,13 +3712,13 @@ export declare type CreateAndroidKeystoreMutation = {
3731
3712
  keystore: string;
3732
3713
  keystorePassword: string;
3733
3714
  keyAlias: string;
3734
- keyPassword?: string | null | undefined;
3735
- md5CertificateFingerprint?: string | null | undefined;
3736
- sha1CertificateFingerprint?: string | null | undefined;
3737
- sha256CertificateFingerprint?: string | null | undefined;
3715
+ keyPassword?: string | null;
3716
+ md5CertificateFingerprint?: string | null;
3717
+ sha1CertificateFingerprint?: string | null;
3718
+ sha256CertificateFingerprint?: string | null;
3738
3719
  createdAt: any;
3739
3720
  updatedAt: any;
3740
- } | null | undefined;
3721
+ } | null;
3741
3722
  };
3742
3723
  };
3743
3724
  export declare type DeleteAndroidKeystoreMutationVariables = Exact<{
@@ -3801,7 +3782,7 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
3801
3782
  androidAppCredentials: Array<{
3802
3783
  __typename?: 'AndroidAppCredentials';
3803
3784
  id: string;
3804
- applicationIdentifier?: string | null | undefined;
3785
+ applicationIdentifier?: string | null;
3805
3786
  isLegacy: boolean;
3806
3787
  app: {
3807
3788
  __typename?: 'App';
@@ -3825,9 +3806,9 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
3825
3806
  projectId: string;
3826
3807
  keyId: string;
3827
3808
  serviceAccountEmail: string;
3828
- clientId?: string | null | undefined;
3809
+ clientId?: string | null;
3829
3810
  };
3830
- } | null | undefined;
3811
+ } | null;
3831
3812
  googleServiceAccountKeyForSubmissions?: {
3832
3813
  __typename?: 'GoogleServiceAccountKey';
3833
3814
  id: string;
@@ -3837,7 +3818,7 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
3837
3818
  clientIdentifier: string;
3838
3819
  createdAt: any;
3839
3820
  updatedAt: any;
3840
- } | null | undefined;
3821
+ } | null;
3841
3822
  androidAppBuildCredentialsList: Array<{
3842
3823
  __typename?: 'AndroidAppBuildCredentials';
3843
3824
  id: string;
@@ -3851,13 +3832,13 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
3851
3832
  keystore: string;
3852
3833
  keystorePassword: string;
3853
3834
  keyAlias: string;
3854
- keyPassword?: string | null | undefined;
3855
- md5CertificateFingerprint?: string | null | undefined;
3856
- sha1CertificateFingerprint?: string | null | undefined;
3857
- sha256CertificateFingerprint?: string | null | undefined;
3835
+ keyPassword?: string | null;
3836
+ md5CertificateFingerprint?: string | null;
3837
+ sha1CertificateFingerprint?: string | null;
3838
+ sha256CertificateFingerprint?: string | null;
3858
3839
  createdAt: any;
3859
3840
  updatedAt: any;
3860
- } | null | undefined;
3841
+ } | null;
3861
3842
  }>;
3862
3843
  }>;
3863
3844
  };
@@ -3899,16 +3880,16 @@ export declare type CreateAppStoreConnectApiKeyMutation = {
3899
3880
  id: string;
3900
3881
  issuerIdentifier: string;
3901
3882
  keyIdentifier: string;
3902
- name?: string | null | undefined;
3903
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
3883
+ name?: string | null;
3884
+ roles?: Array<AppStoreConnectUserRole> | null;
3904
3885
  createdAt: any;
3905
3886
  updatedAt: any;
3906
3887
  appleTeam?: {
3907
3888
  __typename?: 'AppleTeam';
3908
3889
  id: string;
3909
3890
  appleTeamIdentifier: string;
3910
- appleTeamName?: string | null | undefined;
3911
- } | null | undefined;
3891
+ appleTeamName?: string | null;
3892
+ } | null;
3912
3893
  };
3913
3894
  };
3914
3895
  };
@@ -3933,11 +3914,11 @@ export declare type CreateAppleAppIdentifierMutation = {
3933
3914
  __typename?: 'RootMutation';
3934
3915
  appleAppIdentifier: {
3935
3916
  __typename?: 'AppleAppIdentifierMutation';
3936
- createAppleAppIdentifier?: {
3917
+ createAppleAppIdentifier: {
3937
3918
  __typename?: 'AppleAppIdentifier';
3938
3919
  id: string;
3939
3920
  bundleIdentifier: string;
3940
- } | null | undefined;
3921
+ };
3941
3922
  };
3942
3923
  };
3943
3924
  export declare type CreateAppleDeviceMutationVariables = Exact<{
@@ -3952,9 +3933,9 @@ export declare type CreateAppleDeviceMutation = {
3952
3933
  __typename?: 'AppleDevice';
3953
3934
  id: string;
3954
3935
  identifier: string;
3955
- name?: string | null | undefined;
3956
- model?: string | null | undefined;
3957
- deviceClass?: AppleDeviceClass | null | undefined;
3936
+ name?: string | null;
3937
+ model?: string | null;
3938
+ deviceClass?: AppleDeviceClass | null;
3958
3939
  };
3959
3940
  };
3960
3941
  };
@@ -3996,10 +3977,10 @@ export declare type CreateAppleDistributionCertificateMutation = {
3996
3977
  createAppleDistributionCertificate?: {
3997
3978
  __typename?: 'AppleDistributionCertificate';
3998
3979
  id: string;
3999
- certificateP12?: string | null | undefined;
4000
- certificatePassword?: string | null | undefined;
3980
+ certificateP12?: string | null;
3981
+ certificatePassword?: string | null;
4001
3982
  serialNumber: string;
4002
- developerPortalIdentifier?: string | null | undefined;
3983
+ developerPortalIdentifier?: string | null;
4003
3984
  validityNotBefore: any;
4004
3985
  validityNotAfter: any;
4005
3986
  updatedAt: any;
@@ -4007,8 +3988,8 @@ export declare type CreateAppleDistributionCertificateMutation = {
4007
3988
  __typename?: 'AppleTeam';
4008
3989
  id: string;
4009
3990
  appleTeamIdentifier: string;
4010
- appleTeamName?: string | null | undefined;
4011
- } | null | undefined;
3991
+ appleTeamName?: string | null;
3992
+ } | null;
4012
3993
  iosAppBuildCredentialsList: Array<{
4013
3994
  __typename?: 'IosAppBuildCredentials';
4014
3995
  id: string;
@@ -4030,10 +4011,10 @@ export declare type CreateAppleDistributionCertificateMutation = {
4030
4011
  provisioningProfile?: {
4031
4012
  __typename?: 'AppleProvisioningProfile';
4032
4013
  id: string;
4033
- developerPortalIdentifier?: string | null | undefined;
4034
- } | null | undefined;
4014
+ developerPortalIdentifier?: string | null;
4015
+ } | null;
4035
4016
  }>;
4036
- } | null | undefined;
4017
+ } | null;
4037
4018
  };
4038
4019
  };
4039
4020
  export declare type DeleteAppleDistributionCertificateMutationVariables = Exact<{
@@ -4062,23 +4043,23 @@ export declare type CreateAppleProvisioningProfileMutation = {
4062
4043
  __typename?: 'AppleProvisioningProfile';
4063
4044
  id: string;
4064
4045
  expiration: any;
4065
- developerPortalIdentifier?: string | null | undefined;
4066
- provisioningProfile?: string | null | undefined;
4046
+ developerPortalIdentifier?: string | null;
4047
+ provisioningProfile?: string | null;
4067
4048
  updatedAt: any;
4068
4049
  status: string;
4069
4050
  appleTeam?: {
4070
4051
  __typename?: 'AppleTeam';
4071
4052
  id: string;
4072
4053
  appleTeamIdentifier: string;
4073
- appleTeamName?: string | null | undefined;
4074
- } | null | undefined;
4054
+ appleTeamName?: string | null;
4055
+ } | null;
4075
4056
  appleDevices: Array<{
4076
4057
  __typename?: 'AppleDevice';
4077
4058
  id: string;
4078
4059
  identifier: string;
4079
- name?: string | null | undefined;
4080
- model?: string | null | undefined;
4081
- deviceClass?: AppleDeviceClass | null | undefined;
4060
+ name?: string | null;
4061
+ model?: string | null;
4062
+ deviceClass?: AppleDeviceClass | null;
4082
4063
  }>;
4083
4064
  };
4084
4065
  };
@@ -4095,23 +4076,23 @@ export declare type UpdateAppleProvisioningProfileMutation = {
4095
4076
  __typename?: 'AppleProvisioningProfile';
4096
4077
  id: string;
4097
4078
  expiration: any;
4098
- developerPortalIdentifier?: string | null | undefined;
4099
- provisioningProfile?: string | null | undefined;
4079
+ developerPortalIdentifier?: string | null;
4080
+ provisioningProfile?: string | null;
4100
4081
  updatedAt: any;
4101
4082
  status: string;
4102
4083
  appleTeam?: {
4103
4084
  __typename?: 'AppleTeam';
4104
4085
  id: string;
4105
4086
  appleTeamIdentifier: string;
4106
- appleTeamName?: string | null | undefined;
4107
- } | null | undefined;
4087
+ appleTeamName?: string | null;
4088
+ } | null;
4108
4089
  appleDevices: Array<{
4109
4090
  __typename?: 'AppleDevice';
4110
4091
  id: string;
4111
4092
  identifier: string;
4112
- name?: string | null | undefined;
4113
- model?: string | null | undefined;
4114
- deviceClass?: AppleDeviceClass | null | undefined;
4093
+ name?: string | null;
4094
+ model?: string | null;
4095
+ deviceClass?: AppleDeviceClass | null;
4115
4096
  }>;
4116
4097
  };
4117
4098
  };
@@ -4146,8 +4127,8 @@ export declare type CreateApplePushKeyMutation = {
4146
4127
  __typename?: 'AppleTeam';
4147
4128
  id: string;
4148
4129
  appleTeamIdentifier: string;
4149
- appleTeamName?: string | null | undefined;
4150
- } | null | undefined;
4130
+ appleTeamName?: string | null;
4131
+ } | null;
4151
4132
  iosAppCredentialsList: Array<{
4152
4133
  __typename?: 'IosAppCredentials';
4153
4134
  id: string;
@@ -4191,7 +4172,7 @@ export declare type CreateAppleTeamMutation = {
4191
4172
  __typename?: 'AppleTeam';
4192
4173
  id: string;
4193
4174
  appleTeamIdentifier: string;
4194
- appleTeamName?: string | null | undefined;
4175
+ appleTeamName?: string | null;
4195
4176
  account: {
4196
4177
  __typename?: 'Account';
4197
4178
  id: string;
@@ -4215,10 +4196,10 @@ export declare type CreateIosAppBuildCredentialsMutation = {
4215
4196
  distributionCertificate?: {
4216
4197
  __typename?: 'AppleDistributionCertificate';
4217
4198
  id: string;
4218
- certificateP12?: string | null | undefined;
4219
- certificatePassword?: string | null | undefined;
4199
+ certificateP12?: string | null;
4200
+ certificatePassword?: string | null;
4220
4201
  serialNumber: string;
4221
- developerPortalIdentifier?: string | null | undefined;
4202
+ developerPortalIdentifier?: string | null;
4222
4203
  validityNotBefore: any;
4223
4204
  validityNotAfter: any;
4224
4205
  updatedAt: any;
@@ -4226,8 +4207,8 @@ export declare type CreateIosAppBuildCredentialsMutation = {
4226
4207
  __typename?: 'AppleTeam';
4227
4208
  id: string;
4228
4209
  appleTeamIdentifier: string;
4229
- appleTeamName?: string | null | undefined;
4230
- } | null | undefined;
4210
+ appleTeamName?: string | null;
4211
+ } | null;
4231
4212
  iosAppBuildCredentialsList: Array<{
4232
4213
  __typename?: 'IosAppBuildCredentials';
4233
4214
  id: string;
@@ -4249,33 +4230,33 @@ export declare type CreateIosAppBuildCredentialsMutation = {
4249
4230
  provisioningProfile?: {
4250
4231
  __typename?: 'AppleProvisioningProfile';
4251
4232
  id: string;
4252
- developerPortalIdentifier?: string | null | undefined;
4253
- } | null | undefined;
4233
+ developerPortalIdentifier?: string | null;
4234
+ } | null;
4254
4235
  }>;
4255
- } | null | undefined;
4236
+ } | null;
4256
4237
  provisioningProfile?: {
4257
4238
  __typename?: 'AppleProvisioningProfile';
4258
4239
  id: string;
4259
4240
  expiration: any;
4260
- developerPortalIdentifier?: string | null | undefined;
4261
- provisioningProfile?: string | null | undefined;
4241
+ developerPortalIdentifier?: string | null;
4242
+ provisioningProfile?: string | null;
4262
4243
  updatedAt: any;
4263
4244
  status: string;
4264
4245
  appleTeam?: {
4265
4246
  __typename?: 'AppleTeam';
4266
4247
  id: string;
4267
4248
  appleTeamIdentifier: string;
4268
- appleTeamName?: string | null | undefined;
4269
- } | null | undefined;
4249
+ appleTeamName?: string | null;
4250
+ } | null;
4270
4251
  appleDevices: Array<{
4271
4252
  __typename?: 'AppleDevice';
4272
4253
  id: string;
4273
4254
  identifier: string;
4274
- name?: string | null | undefined;
4275
- model?: string | null | undefined;
4276
- deviceClass?: AppleDeviceClass | null | undefined;
4255
+ name?: string | null;
4256
+ model?: string | null;
4257
+ deviceClass?: AppleDeviceClass | null;
4277
4258
  }>;
4278
- } | null | undefined;
4259
+ } | null;
4279
4260
  };
4280
4261
  };
4281
4262
  };
@@ -4294,10 +4275,10 @@ export declare type SetDistributionCertificateMutation = {
4294
4275
  distributionCertificate?: {
4295
4276
  __typename?: 'AppleDistributionCertificate';
4296
4277
  id: string;
4297
- certificateP12?: string | null | undefined;
4298
- certificatePassword?: string | null | undefined;
4278
+ certificateP12?: string | null;
4279
+ certificatePassword?: string | null;
4299
4280
  serialNumber: string;
4300
- developerPortalIdentifier?: string | null | undefined;
4281
+ developerPortalIdentifier?: string | null;
4301
4282
  validityNotBefore: any;
4302
4283
  validityNotAfter: any;
4303
4284
  updatedAt: any;
@@ -4305,8 +4286,8 @@ export declare type SetDistributionCertificateMutation = {
4305
4286
  __typename?: 'AppleTeam';
4306
4287
  id: string;
4307
4288
  appleTeamIdentifier: string;
4308
- appleTeamName?: string | null | undefined;
4309
- } | null | undefined;
4289
+ appleTeamName?: string | null;
4290
+ } | null;
4310
4291
  iosAppBuildCredentialsList: Array<{
4311
4292
  __typename?: 'IosAppBuildCredentials';
4312
4293
  id: string;
@@ -4328,33 +4309,33 @@ export declare type SetDistributionCertificateMutation = {
4328
4309
  provisioningProfile?: {
4329
4310
  __typename?: 'AppleProvisioningProfile';
4330
4311
  id: string;
4331
- developerPortalIdentifier?: string | null | undefined;
4332
- } | null | undefined;
4312
+ developerPortalIdentifier?: string | null;
4313
+ } | null;
4333
4314
  }>;
4334
- } | null | undefined;
4315
+ } | null;
4335
4316
  provisioningProfile?: {
4336
4317
  __typename?: 'AppleProvisioningProfile';
4337
4318
  id: string;
4338
4319
  expiration: any;
4339
- developerPortalIdentifier?: string | null | undefined;
4340
- provisioningProfile?: string | null | undefined;
4320
+ developerPortalIdentifier?: string | null;
4321
+ provisioningProfile?: string | null;
4341
4322
  updatedAt: any;
4342
4323
  status: string;
4343
4324
  appleTeam?: {
4344
4325
  __typename?: 'AppleTeam';
4345
4326
  id: string;
4346
4327
  appleTeamIdentifier: string;
4347
- appleTeamName?: string | null | undefined;
4348
- } | null | undefined;
4328
+ appleTeamName?: string | null;
4329
+ } | null;
4349
4330
  appleDevices: Array<{
4350
4331
  __typename?: 'AppleDevice';
4351
4332
  id: string;
4352
4333
  identifier: string;
4353
- name?: string | null | undefined;
4354
- model?: string | null | undefined;
4355
- deviceClass?: AppleDeviceClass | null | undefined;
4334
+ name?: string | null;
4335
+ model?: string | null;
4336
+ deviceClass?: AppleDeviceClass | null;
4356
4337
  }>;
4357
- } | null | undefined;
4338
+ } | null;
4358
4339
  };
4359
4340
  };
4360
4341
  };
@@ -4373,10 +4354,10 @@ export declare type SetProvisioningProfileMutation = {
4373
4354
  distributionCertificate?: {
4374
4355
  __typename?: 'AppleDistributionCertificate';
4375
4356
  id: string;
4376
- certificateP12?: string | null | undefined;
4377
- certificatePassword?: string | null | undefined;
4357
+ certificateP12?: string | null;
4358
+ certificatePassword?: string | null;
4378
4359
  serialNumber: string;
4379
- developerPortalIdentifier?: string | null | undefined;
4360
+ developerPortalIdentifier?: string | null;
4380
4361
  validityNotBefore: any;
4381
4362
  validityNotAfter: any;
4382
4363
  updatedAt: any;
@@ -4384,8 +4365,8 @@ export declare type SetProvisioningProfileMutation = {
4384
4365
  __typename?: 'AppleTeam';
4385
4366
  id: string;
4386
4367
  appleTeamIdentifier: string;
4387
- appleTeamName?: string | null | undefined;
4388
- } | null | undefined;
4368
+ appleTeamName?: string | null;
4369
+ } | null;
4389
4370
  iosAppBuildCredentialsList: Array<{
4390
4371
  __typename?: 'IosAppBuildCredentials';
4391
4372
  id: string;
@@ -4407,33 +4388,33 @@ export declare type SetProvisioningProfileMutation = {
4407
4388
  provisioningProfile?: {
4408
4389
  __typename?: 'AppleProvisioningProfile';
4409
4390
  id: string;
4410
- developerPortalIdentifier?: string | null | undefined;
4411
- } | null | undefined;
4391
+ developerPortalIdentifier?: string | null;
4392
+ } | null;
4412
4393
  }>;
4413
- } | null | undefined;
4394
+ } | null;
4414
4395
  provisioningProfile?: {
4415
4396
  __typename?: 'AppleProvisioningProfile';
4416
4397
  id: string;
4417
4398
  expiration: any;
4418
- developerPortalIdentifier?: string | null | undefined;
4419
- provisioningProfile?: string | null | undefined;
4399
+ developerPortalIdentifier?: string | null;
4400
+ provisioningProfile?: string | null;
4420
4401
  updatedAt: any;
4421
4402
  status: string;
4422
4403
  appleTeam?: {
4423
4404
  __typename?: 'AppleTeam';
4424
4405
  id: string;
4425
4406
  appleTeamIdentifier: string;
4426
- appleTeamName?: string | null | undefined;
4427
- } | null | undefined;
4407
+ appleTeamName?: string | null;
4408
+ } | null;
4428
4409
  appleDevices: Array<{
4429
4410
  __typename?: 'AppleDevice';
4430
4411
  id: string;
4431
4412
  identifier: string;
4432
- name?: string | null | undefined;
4433
- model?: string | null | undefined;
4434
- deviceClass?: AppleDeviceClass | null | undefined;
4413
+ name?: string | null;
4414
+ model?: string | null;
4415
+ deviceClass?: AppleDeviceClass | null;
4435
4416
  }>;
4436
- } | null | undefined;
4417
+ } | null;
4437
4418
  };
4438
4419
  };
4439
4420
  };
@@ -4456,10 +4437,10 @@ export declare type CreateIosAppCredentialsMutation = {
4456
4437
  distributionCertificate?: {
4457
4438
  __typename?: 'AppleDistributionCertificate';
4458
4439
  id: string;
4459
- certificateP12?: string | null | undefined;
4460
- certificatePassword?: string | null | undefined;
4440
+ certificateP12?: string | null;
4441
+ certificatePassword?: string | null;
4461
4442
  serialNumber: string;
4462
- developerPortalIdentifier?: string | null | undefined;
4443
+ developerPortalIdentifier?: string | null;
4463
4444
  validityNotBefore: any;
4464
4445
  validityNotAfter: any;
4465
4446
  updatedAt: any;
@@ -4467,8 +4448,8 @@ export declare type CreateIosAppCredentialsMutation = {
4467
4448
  __typename?: 'AppleTeam';
4468
4449
  id: string;
4469
4450
  appleTeamIdentifier: string;
4470
- appleTeamName?: string | null | undefined;
4471
- } | null | undefined;
4451
+ appleTeamName?: string | null;
4452
+ } | null;
4472
4453
  iosAppBuildCredentialsList: Array<{
4473
4454
  __typename?: 'IosAppBuildCredentials';
4474
4455
  id: string;
@@ -4490,33 +4471,33 @@ export declare type CreateIosAppCredentialsMutation = {
4490
4471
  provisioningProfile?: {
4491
4472
  __typename?: 'AppleProvisioningProfile';
4492
4473
  id: string;
4493
- developerPortalIdentifier?: string | null | undefined;
4494
- } | null | undefined;
4474
+ developerPortalIdentifier?: string | null;
4475
+ } | null;
4495
4476
  }>;
4496
- } | null | undefined;
4477
+ } | null;
4497
4478
  provisioningProfile?: {
4498
4479
  __typename?: 'AppleProvisioningProfile';
4499
4480
  id: string;
4500
4481
  expiration: any;
4501
- developerPortalIdentifier?: string | null | undefined;
4502
- provisioningProfile?: string | null | undefined;
4482
+ developerPortalIdentifier?: string | null;
4483
+ provisioningProfile?: string | null;
4503
4484
  updatedAt: any;
4504
4485
  status: string;
4505
4486
  appleTeam?: {
4506
4487
  __typename?: 'AppleTeam';
4507
4488
  id: string;
4508
4489
  appleTeamIdentifier: string;
4509
- appleTeamName?: string | null | undefined;
4510
- } | null | undefined;
4490
+ appleTeamName?: string | null;
4491
+ } | null;
4511
4492
  appleDevices: Array<{
4512
4493
  __typename?: 'AppleDevice';
4513
4494
  id: string;
4514
4495
  identifier: string;
4515
- name?: string | null | undefined;
4516
- model?: string | null | undefined;
4517
- deviceClass?: AppleDeviceClass | null | undefined;
4496
+ name?: string | null;
4497
+ model?: string | null;
4498
+ deviceClass?: AppleDeviceClass | null;
4518
4499
  }>;
4519
- } | null | undefined;
4500
+ } | null;
4520
4501
  }>;
4521
4502
  app: {
4522
4503
  __typename?: 'App';
@@ -4528,8 +4509,8 @@ export declare type CreateIosAppCredentialsMutation = {
4528
4509
  __typename?: 'AppleTeam';
4529
4510
  id: string;
4530
4511
  appleTeamIdentifier: string;
4531
- appleTeamName?: string | null | undefined;
4532
- } | null | undefined;
4512
+ appleTeamName?: string | null;
4513
+ } | null;
4533
4514
  appleAppIdentifier: {
4534
4515
  __typename?: 'AppleAppIdentifier';
4535
4516
  id: string;
@@ -4544,8 +4525,8 @@ export declare type CreateIosAppCredentialsMutation = {
4544
4525
  __typename?: 'AppleTeam';
4545
4526
  id: string;
4546
4527
  appleTeamIdentifier: string;
4547
- appleTeamName?: string | null | undefined;
4548
- } | null | undefined;
4528
+ appleTeamName?: string | null;
4529
+ } | null;
4549
4530
  iosAppCredentialsList: Array<{
4550
4531
  __typename?: 'IosAppCredentials';
4551
4532
  id: string;
@@ -4561,23 +4542,23 @@ export declare type CreateIosAppCredentialsMutation = {
4561
4542
  bundleIdentifier: string;
4562
4543
  };
4563
4544
  }>;
4564
- } | null | undefined;
4545
+ } | null;
4565
4546
  appStoreConnectApiKeyForSubmissions?: {
4566
4547
  __typename?: 'AppStoreConnectApiKey';
4567
4548
  id: string;
4568
4549
  issuerIdentifier: string;
4569
4550
  keyIdentifier: string;
4570
- name?: string | null | undefined;
4571
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
4551
+ name?: string | null;
4552
+ roles?: Array<AppStoreConnectUserRole> | null;
4572
4553
  createdAt: any;
4573
4554
  updatedAt: any;
4574
4555
  appleTeam?: {
4575
4556
  __typename?: 'AppleTeam';
4576
4557
  id: string;
4577
4558
  appleTeamIdentifier: string;
4578
- appleTeamName?: string | null | undefined;
4579
- } | null | undefined;
4580
- } | null | undefined;
4559
+ appleTeamName?: string | null;
4560
+ } | null;
4561
+ } | null;
4581
4562
  };
4582
4563
  };
4583
4564
  };
@@ -4599,10 +4580,10 @@ export declare type SetPushKeyMutation = {
4599
4580
  distributionCertificate?: {
4600
4581
  __typename?: 'AppleDistributionCertificate';
4601
4582
  id: string;
4602
- certificateP12?: string | null | undefined;
4603
- certificatePassword?: string | null | undefined;
4583
+ certificateP12?: string | null;
4584
+ certificatePassword?: string | null;
4604
4585
  serialNumber: string;
4605
- developerPortalIdentifier?: string | null | undefined;
4586
+ developerPortalIdentifier?: string | null;
4606
4587
  validityNotBefore: any;
4607
4588
  validityNotAfter: any;
4608
4589
  updatedAt: any;
@@ -4610,8 +4591,8 @@ export declare type SetPushKeyMutation = {
4610
4591
  __typename?: 'AppleTeam';
4611
4592
  id: string;
4612
4593
  appleTeamIdentifier: string;
4613
- appleTeamName?: string | null | undefined;
4614
- } | null | undefined;
4594
+ appleTeamName?: string | null;
4595
+ } | null;
4615
4596
  iosAppBuildCredentialsList: Array<{
4616
4597
  __typename?: 'IosAppBuildCredentials';
4617
4598
  id: string;
@@ -4633,33 +4614,33 @@ export declare type SetPushKeyMutation = {
4633
4614
  provisioningProfile?: {
4634
4615
  __typename?: 'AppleProvisioningProfile';
4635
4616
  id: string;
4636
- developerPortalIdentifier?: string | null | undefined;
4637
- } | null | undefined;
4617
+ developerPortalIdentifier?: string | null;
4618
+ } | null;
4638
4619
  }>;
4639
- } | null | undefined;
4620
+ } | null;
4640
4621
  provisioningProfile?: {
4641
4622
  __typename?: 'AppleProvisioningProfile';
4642
4623
  id: string;
4643
4624
  expiration: any;
4644
- developerPortalIdentifier?: string | null | undefined;
4645
- provisioningProfile?: string | null | undefined;
4625
+ developerPortalIdentifier?: string | null;
4626
+ provisioningProfile?: string | null;
4646
4627
  updatedAt: any;
4647
4628
  status: string;
4648
4629
  appleTeam?: {
4649
4630
  __typename?: 'AppleTeam';
4650
4631
  id: string;
4651
4632
  appleTeamIdentifier: string;
4652
- appleTeamName?: string | null | undefined;
4653
- } | null | undefined;
4633
+ appleTeamName?: string | null;
4634
+ } | null;
4654
4635
  appleDevices: Array<{
4655
4636
  __typename?: 'AppleDevice';
4656
4637
  id: string;
4657
4638
  identifier: string;
4658
- name?: string | null | undefined;
4659
- model?: string | null | undefined;
4660
- deviceClass?: AppleDeviceClass | null | undefined;
4639
+ name?: string | null;
4640
+ model?: string | null;
4641
+ deviceClass?: AppleDeviceClass | null;
4661
4642
  }>;
4662
- } | null | undefined;
4643
+ } | null;
4663
4644
  }>;
4664
4645
  app: {
4665
4646
  __typename?: 'App';
@@ -4671,8 +4652,8 @@ export declare type SetPushKeyMutation = {
4671
4652
  __typename?: 'AppleTeam';
4672
4653
  id: string;
4673
4654
  appleTeamIdentifier: string;
4674
- appleTeamName?: string | null | undefined;
4675
- } | null | undefined;
4655
+ appleTeamName?: string | null;
4656
+ } | null;
4676
4657
  appleAppIdentifier: {
4677
4658
  __typename?: 'AppleAppIdentifier';
4678
4659
  id: string;
@@ -4687,8 +4668,8 @@ export declare type SetPushKeyMutation = {
4687
4668
  __typename?: 'AppleTeam';
4688
4669
  id: string;
4689
4670
  appleTeamIdentifier: string;
4690
- appleTeamName?: string | null | undefined;
4691
- } | null | undefined;
4671
+ appleTeamName?: string | null;
4672
+ } | null;
4692
4673
  iosAppCredentialsList: Array<{
4693
4674
  __typename?: 'IosAppCredentials';
4694
4675
  id: string;
@@ -4704,23 +4685,23 @@ export declare type SetPushKeyMutation = {
4704
4685
  bundleIdentifier: string;
4705
4686
  };
4706
4687
  }>;
4707
- } | null | undefined;
4688
+ } | null;
4708
4689
  appStoreConnectApiKeyForSubmissions?: {
4709
4690
  __typename?: 'AppStoreConnectApiKey';
4710
4691
  id: string;
4711
4692
  issuerIdentifier: string;
4712
4693
  keyIdentifier: string;
4713
- name?: string | null | undefined;
4714
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
4694
+ name?: string | null;
4695
+ roles?: Array<AppStoreConnectUserRole> | null;
4715
4696
  createdAt: any;
4716
4697
  updatedAt: any;
4717
4698
  appleTeam?: {
4718
4699
  __typename?: 'AppleTeam';
4719
4700
  id: string;
4720
4701
  appleTeamIdentifier: string;
4721
- appleTeamName?: string | null | undefined;
4722
- } | null | undefined;
4723
- } | null | undefined;
4702
+ appleTeamName?: string | null;
4703
+ } | null;
4704
+ } | null;
4724
4705
  };
4725
4706
  };
4726
4707
  };
@@ -4742,10 +4723,10 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4742
4723
  distributionCertificate?: {
4743
4724
  __typename?: 'AppleDistributionCertificate';
4744
4725
  id: string;
4745
- certificateP12?: string | null | undefined;
4746
- certificatePassword?: string | null | undefined;
4726
+ certificateP12?: string | null;
4727
+ certificatePassword?: string | null;
4747
4728
  serialNumber: string;
4748
- developerPortalIdentifier?: string | null | undefined;
4729
+ developerPortalIdentifier?: string | null;
4749
4730
  validityNotBefore: any;
4750
4731
  validityNotAfter: any;
4751
4732
  updatedAt: any;
@@ -4753,8 +4734,8 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4753
4734
  __typename?: 'AppleTeam';
4754
4735
  id: string;
4755
4736
  appleTeamIdentifier: string;
4756
- appleTeamName?: string | null | undefined;
4757
- } | null | undefined;
4737
+ appleTeamName?: string | null;
4738
+ } | null;
4758
4739
  iosAppBuildCredentialsList: Array<{
4759
4740
  __typename?: 'IosAppBuildCredentials';
4760
4741
  id: string;
@@ -4776,33 +4757,33 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4776
4757
  provisioningProfile?: {
4777
4758
  __typename?: 'AppleProvisioningProfile';
4778
4759
  id: string;
4779
- developerPortalIdentifier?: string | null | undefined;
4780
- } | null | undefined;
4760
+ developerPortalIdentifier?: string | null;
4761
+ } | null;
4781
4762
  }>;
4782
- } | null | undefined;
4763
+ } | null;
4783
4764
  provisioningProfile?: {
4784
4765
  __typename?: 'AppleProvisioningProfile';
4785
4766
  id: string;
4786
4767
  expiration: any;
4787
- developerPortalIdentifier?: string | null | undefined;
4788
- provisioningProfile?: string | null | undefined;
4768
+ developerPortalIdentifier?: string | null;
4769
+ provisioningProfile?: string | null;
4789
4770
  updatedAt: any;
4790
4771
  status: string;
4791
4772
  appleTeam?: {
4792
4773
  __typename?: 'AppleTeam';
4793
4774
  id: string;
4794
4775
  appleTeamIdentifier: string;
4795
- appleTeamName?: string | null | undefined;
4796
- } | null | undefined;
4776
+ appleTeamName?: string | null;
4777
+ } | null;
4797
4778
  appleDevices: Array<{
4798
4779
  __typename?: 'AppleDevice';
4799
4780
  id: string;
4800
4781
  identifier: string;
4801
- name?: string | null | undefined;
4802
- model?: string | null | undefined;
4803
- deviceClass?: AppleDeviceClass | null | undefined;
4782
+ name?: string | null;
4783
+ model?: string | null;
4784
+ deviceClass?: AppleDeviceClass | null;
4804
4785
  }>;
4805
- } | null | undefined;
4786
+ } | null;
4806
4787
  }>;
4807
4788
  app: {
4808
4789
  __typename?: 'App';
@@ -4814,8 +4795,8 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4814
4795
  __typename?: 'AppleTeam';
4815
4796
  id: string;
4816
4797
  appleTeamIdentifier: string;
4817
- appleTeamName?: string | null | undefined;
4818
- } | null | undefined;
4798
+ appleTeamName?: string | null;
4799
+ } | null;
4819
4800
  appleAppIdentifier: {
4820
4801
  __typename?: 'AppleAppIdentifier';
4821
4802
  id: string;
@@ -4830,8 +4811,8 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4830
4811
  __typename?: 'AppleTeam';
4831
4812
  id: string;
4832
4813
  appleTeamIdentifier: string;
4833
- appleTeamName?: string | null | undefined;
4834
- } | null | undefined;
4814
+ appleTeamName?: string | null;
4815
+ } | null;
4835
4816
  iosAppCredentialsList: Array<{
4836
4817
  __typename?: 'IosAppCredentials';
4837
4818
  id: string;
@@ -4847,23 +4828,23 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
4847
4828
  bundleIdentifier: string;
4848
4829
  };
4849
4830
  }>;
4850
- } | null | undefined;
4831
+ } | null;
4851
4832
  appStoreConnectApiKeyForSubmissions?: {
4852
4833
  __typename?: 'AppStoreConnectApiKey';
4853
4834
  id: string;
4854
4835
  issuerIdentifier: string;
4855
4836
  keyIdentifier: string;
4856
- name?: string | null | undefined;
4857
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
4837
+ name?: string | null;
4838
+ roles?: Array<AppStoreConnectUserRole> | null;
4858
4839
  createdAt: any;
4859
4840
  updatedAt: any;
4860
4841
  appleTeam?: {
4861
4842
  __typename?: 'AppleTeam';
4862
4843
  id: string;
4863
4844
  appleTeamIdentifier: string;
4864
- appleTeamName?: string | null | undefined;
4865
- } | null | undefined;
4866
- } | null | undefined;
4845
+ appleTeamName?: string | null;
4846
+ } | null;
4847
+ } | null;
4867
4848
  };
4868
4849
  };
4869
4850
  };
@@ -4897,16 +4878,16 @@ export declare type AppStoreConnectApiKeyByAccountQuery = {
4897
4878
  id: string;
4898
4879
  issuerIdentifier: string;
4899
4880
  keyIdentifier: string;
4900
- name?: string | null | undefined;
4901
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
4881
+ name?: string | null;
4882
+ roles?: Array<AppStoreConnectUserRole> | null;
4902
4883
  createdAt: any;
4903
4884
  updatedAt: any;
4904
4885
  appleTeam?: {
4905
4886
  __typename?: 'AppleTeam';
4906
4887
  id: string;
4907
4888
  appleTeamIdentifier: string;
4908
- appleTeamName?: string | null | undefined;
4909
- } | null | undefined;
4889
+ appleTeamName?: string | null;
4890
+ } | null;
4910
4891
  }>;
4911
4892
  };
4912
4893
  };
@@ -4942,22 +4923,22 @@ export declare type AppleDevicesByAppleTeamQuery = {
4942
4923
  __typename?: 'AppleTeam';
4943
4924
  id: string;
4944
4925
  appleTeamIdentifier: string;
4945
- appleTeamName?: string | null | undefined;
4926
+ appleTeamName?: string | null;
4946
4927
  appleDevices: Array<{
4947
4928
  __typename?: 'AppleDevice';
4948
4929
  id: string;
4949
4930
  identifier: string;
4950
- name?: string | null | undefined;
4951
- model?: string | null | undefined;
4952
- deviceClass?: AppleDeviceClass | null | undefined;
4931
+ name?: string | null;
4932
+ model?: string | null;
4933
+ deviceClass?: AppleDeviceClass | null;
4953
4934
  appleTeam: {
4954
4935
  __typename?: 'AppleTeam';
4955
4936
  id: string;
4956
4937
  appleTeamIdentifier: string;
4957
- appleTeamName?: string | null | undefined;
4938
+ appleTeamName?: string | null;
4958
4939
  };
4959
4940
  }>;
4960
- } | null | undefined;
4941
+ } | null;
4961
4942
  };
4962
4943
  };
4963
4944
  export declare type AppleDevicesByTeamIdentifierQueryVariables = Exact<{
@@ -4975,14 +4956,14 @@ export declare type AppleDevicesByTeamIdentifierQuery = {
4975
4956
  __typename?: 'AppleTeam';
4976
4957
  id: string;
4977
4958
  appleTeamIdentifier: string;
4978
- appleTeamName?: string | null | undefined;
4959
+ appleTeamName?: string | null;
4979
4960
  appleDevices: Array<{
4980
4961
  __typename?: 'AppleDevice';
4981
4962
  id: string;
4982
4963
  identifier: string;
4983
- name?: string | null | undefined;
4984
- deviceClass?: AppleDeviceClass | null | undefined;
4985
- enabled?: boolean | null | undefined;
4964
+ name?: string | null;
4965
+ deviceClass?: AppleDeviceClass | null;
4966
+ enabled?: boolean | null;
4986
4967
  }>;
4987
4968
  }>;
4988
4969
  };
@@ -5003,14 +4984,14 @@ export declare type AppleDevicesByIdentifierQuery = {
5003
4984
  __typename?: 'AppleDevice';
5004
4985
  id: string;
5005
4986
  identifier: string;
5006
- name?: string | null | undefined;
5007
- deviceClass?: AppleDeviceClass | null | undefined;
5008
- enabled?: boolean | null | undefined;
4987
+ name?: string | null;
4988
+ deviceClass?: AppleDeviceClass | null;
4989
+ enabled?: boolean | null;
5009
4990
  appleTeam: {
5010
4991
  __typename?: 'AppleTeam';
5011
4992
  id: string;
5012
4993
  appleTeamIdentifier: string;
5013
- appleTeamName?: string | null | undefined;
4994
+ appleTeamName?: string | null;
5014
4995
  };
5015
4996
  }>;
5016
4997
  };
@@ -5037,10 +5018,10 @@ export declare type AppleDistributionCertificateByAppQuery = {
5037
5018
  distributionCertificate?: {
5038
5019
  __typename?: 'AppleDistributionCertificate';
5039
5020
  id: string;
5040
- certificateP12?: string | null | undefined;
5041
- certificatePassword?: string | null | undefined;
5021
+ certificateP12?: string | null;
5022
+ certificatePassword?: string | null;
5042
5023
  serialNumber: string;
5043
- developerPortalIdentifier?: string | null | undefined;
5024
+ developerPortalIdentifier?: string | null;
5044
5025
  validityNotBefore: any;
5045
5026
  validityNotAfter: any;
5046
5027
  updatedAt: any;
@@ -5048,8 +5029,8 @@ export declare type AppleDistributionCertificateByAppQuery = {
5048
5029
  __typename?: 'AppleTeam';
5049
5030
  id: string;
5050
5031
  appleTeamIdentifier: string;
5051
- appleTeamName?: string | null | undefined;
5052
- } | null | undefined;
5032
+ appleTeamName?: string | null;
5033
+ } | null;
5053
5034
  iosAppBuildCredentialsList: Array<{
5054
5035
  __typename?: 'IosAppBuildCredentials';
5055
5036
  id: string;
@@ -5071,10 +5052,10 @@ export declare type AppleDistributionCertificateByAppQuery = {
5071
5052
  provisioningProfile?: {
5072
5053
  __typename?: 'AppleProvisioningProfile';
5073
5054
  id: string;
5074
- developerPortalIdentifier?: string | null | undefined;
5075
- } | null | undefined;
5055
+ developerPortalIdentifier?: string | null;
5056
+ } | null;
5076
5057
  }>;
5077
- } | null | undefined;
5058
+ } | null;
5078
5059
  }>;
5079
5060
  }>;
5080
5061
  };
@@ -5093,10 +5074,10 @@ export declare type AppleDistributionCertificateByAccountQuery = {
5093
5074
  appleDistributionCertificates: Array<{
5094
5075
  __typename?: 'AppleDistributionCertificate';
5095
5076
  id: string;
5096
- certificateP12?: string | null | undefined;
5097
- certificatePassword?: string | null | undefined;
5077
+ certificateP12?: string | null;
5078
+ certificatePassword?: string | null;
5098
5079
  serialNumber: string;
5099
- developerPortalIdentifier?: string | null | undefined;
5080
+ developerPortalIdentifier?: string | null;
5100
5081
  validityNotBefore: any;
5101
5082
  validityNotAfter: any;
5102
5083
  updatedAt: any;
@@ -5104,8 +5085,8 @@ export declare type AppleDistributionCertificateByAccountQuery = {
5104
5085
  __typename?: 'AppleTeam';
5105
5086
  id: string;
5106
5087
  appleTeamIdentifier: string;
5107
- appleTeamName?: string | null | undefined;
5108
- } | null | undefined;
5088
+ appleTeamName?: string | null;
5089
+ } | null;
5109
5090
  iosAppBuildCredentialsList: Array<{
5110
5091
  __typename?: 'IosAppBuildCredentials';
5111
5092
  id: string;
@@ -5127,8 +5108,8 @@ export declare type AppleDistributionCertificateByAccountQuery = {
5127
5108
  provisioningProfile?: {
5128
5109
  __typename?: 'AppleProvisioningProfile';
5129
5110
  id: string;
5130
- developerPortalIdentifier?: string | null | undefined;
5131
- } | null | undefined;
5111
+ developerPortalIdentifier?: string | null;
5112
+ } | null;
5132
5113
  }>;
5133
5114
  }>;
5134
5115
  };
@@ -5156,30 +5137,30 @@ export declare type AppleProvisioningProfilesByAppQuery = {
5156
5137
  __typename?: 'AppleProvisioningProfile';
5157
5138
  id: string;
5158
5139
  expiration: any;
5159
- developerPortalIdentifier?: string | null | undefined;
5160
- provisioningProfile?: string | null | undefined;
5140
+ developerPortalIdentifier?: string | null;
5141
+ provisioningProfile?: string | null;
5161
5142
  updatedAt: any;
5162
5143
  status: string;
5163
5144
  appleTeam?: {
5164
5145
  __typename?: 'AppleTeam';
5165
5146
  id: string;
5166
5147
  appleTeamIdentifier: string;
5167
- appleTeamName?: string | null | undefined;
5168
- } | null | undefined;
5148
+ appleTeamName?: string | null;
5149
+ } | null;
5169
5150
  appleDevices: Array<{
5170
5151
  __typename?: 'AppleDevice';
5171
5152
  id: string;
5172
5153
  identifier: string;
5173
- name?: string | null | undefined;
5174
- model?: string | null | undefined;
5175
- deviceClass?: AppleDeviceClass | null | undefined;
5154
+ name?: string | null;
5155
+ model?: string | null;
5156
+ deviceClass?: AppleDeviceClass | null;
5176
5157
  }>;
5177
5158
  appleAppIdentifier: {
5178
5159
  __typename?: 'AppleAppIdentifier';
5179
5160
  id: string;
5180
5161
  bundleIdentifier: string;
5181
5162
  };
5182
- } | null | undefined;
5163
+ } | null;
5183
5164
  }>;
5184
5165
  }>;
5185
5166
  };
@@ -5204,8 +5185,8 @@ export declare type ApplePushKeyByAccountQuery = {
5204
5185
  __typename?: 'AppleTeam';
5205
5186
  id: string;
5206
5187
  appleTeamIdentifier: string;
5207
- appleTeamName?: string | null | undefined;
5208
- } | null | undefined;
5188
+ appleTeamName?: string | null;
5189
+ } | null;
5209
5190
  iosAppCredentialsList: Array<{
5210
5191
  __typename?: 'IosAppCredentials';
5211
5192
  id: string;
@@ -5238,7 +5219,7 @@ export declare type AppleTeamsByAccountNameQuery = {
5238
5219
  appleTeams: Array<{
5239
5220
  __typename?: 'AppleTeam';
5240
5221
  id: string;
5241
- appleTeamName?: string | null | undefined;
5222
+ appleTeamName?: string | null;
5242
5223
  appleTeamIdentifier: string;
5243
5224
  }>;
5244
5225
  };
@@ -5256,8 +5237,8 @@ export declare type AppleTeamByIdentifierQuery = {
5256
5237
  __typename?: 'AppleTeam';
5257
5238
  id: string;
5258
5239
  appleTeamIdentifier: string;
5259
- appleTeamName?: string | null | undefined;
5260
- } | null | undefined;
5240
+ appleTeamName?: string | null;
5241
+ } | null;
5261
5242
  };
5262
5243
  };
5263
5244
  export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQueryVariables = Exact<{
@@ -5282,10 +5263,10 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
5282
5263
  distributionCertificate?: {
5283
5264
  __typename?: 'AppleDistributionCertificate';
5284
5265
  id: string;
5285
- certificateP12?: string | null | undefined;
5286
- certificatePassword?: string | null | undefined;
5266
+ certificateP12?: string | null;
5267
+ certificatePassword?: string | null;
5287
5268
  serialNumber: string;
5288
- developerPortalIdentifier?: string | null | undefined;
5269
+ developerPortalIdentifier?: string | null;
5289
5270
  validityNotBefore: any;
5290
5271
  validityNotAfter: any;
5291
5272
  updatedAt: any;
@@ -5293,8 +5274,8 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
5293
5274
  __typename?: 'AppleTeam';
5294
5275
  id: string;
5295
5276
  appleTeamIdentifier: string;
5296
- appleTeamName?: string | null | undefined;
5297
- } | null | undefined;
5277
+ appleTeamName?: string | null;
5278
+ } | null;
5298
5279
  iosAppBuildCredentialsList: Array<{
5299
5280
  __typename?: 'IosAppBuildCredentials';
5300
5281
  id: string;
@@ -5316,33 +5297,33 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
5316
5297
  provisioningProfile?: {
5317
5298
  __typename?: 'AppleProvisioningProfile';
5318
5299
  id: string;
5319
- developerPortalIdentifier?: string | null | undefined;
5320
- } | null | undefined;
5300
+ developerPortalIdentifier?: string | null;
5301
+ } | null;
5321
5302
  }>;
5322
- } | null | undefined;
5303
+ } | null;
5323
5304
  provisioningProfile?: {
5324
5305
  __typename?: 'AppleProvisioningProfile';
5325
5306
  id: string;
5326
5307
  expiration: any;
5327
- developerPortalIdentifier?: string | null | undefined;
5328
- provisioningProfile?: string | null | undefined;
5308
+ developerPortalIdentifier?: string | null;
5309
+ provisioningProfile?: string | null;
5329
5310
  updatedAt: any;
5330
5311
  status: string;
5331
5312
  appleTeam?: {
5332
5313
  __typename?: 'AppleTeam';
5333
5314
  id: string;
5334
5315
  appleTeamIdentifier: string;
5335
- appleTeamName?: string | null | undefined;
5336
- } | null | undefined;
5316
+ appleTeamName?: string | null;
5317
+ } | null;
5337
5318
  appleDevices: Array<{
5338
5319
  __typename?: 'AppleDevice';
5339
5320
  id: string;
5340
5321
  identifier: string;
5341
- name?: string | null | undefined;
5342
- model?: string | null | undefined;
5343
- deviceClass?: AppleDeviceClass | null | undefined;
5322
+ name?: string | null;
5323
+ model?: string | null;
5324
+ deviceClass?: AppleDeviceClass | null;
5344
5325
  }>;
5345
- } | null | undefined;
5326
+ } | null;
5346
5327
  }>;
5347
5328
  }>;
5348
5329
  };
@@ -5370,10 +5351,10 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5370
5351
  distributionCertificate?: {
5371
5352
  __typename?: 'AppleDistributionCertificate';
5372
5353
  id: string;
5373
- certificateP12?: string | null | undefined;
5374
- certificatePassword?: string | null | undefined;
5354
+ certificateP12?: string | null;
5355
+ certificatePassword?: string | null;
5375
5356
  serialNumber: string;
5376
- developerPortalIdentifier?: string | null | undefined;
5357
+ developerPortalIdentifier?: string | null;
5377
5358
  validityNotBefore: any;
5378
5359
  validityNotAfter: any;
5379
5360
  updatedAt: any;
@@ -5381,8 +5362,8 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5381
5362
  __typename?: 'AppleTeam';
5382
5363
  id: string;
5383
5364
  appleTeamIdentifier: string;
5384
- appleTeamName?: string | null | undefined;
5385
- } | null | undefined;
5365
+ appleTeamName?: string | null;
5366
+ } | null;
5386
5367
  iosAppBuildCredentialsList: Array<{
5387
5368
  __typename?: 'IosAppBuildCredentials';
5388
5369
  id: string;
@@ -5404,33 +5385,33 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5404
5385
  provisioningProfile?: {
5405
5386
  __typename?: 'AppleProvisioningProfile';
5406
5387
  id: string;
5407
- developerPortalIdentifier?: string | null | undefined;
5408
- } | null | undefined;
5388
+ developerPortalIdentifier?: string | null;
5389
+ } | null;
5409
5390
  }>;
5410
- } | null | undefined;
5391
+ } | null;
5411
5392
  provisioningProfile?: {
5412
5393
  __typename?: 'AppleProvisioningProfile';
5413
5394
  id: string;
5414
5395
  expiration: any;
5415
- developerPortalIdentifier?: string | null | undefined;
5416
- provisioningProfile?: string | null | undefined;
5396
+ developerPortalIdentifier?: string | null;
5397
+ provisioningProfile?: string | null;
5417
5398
  updatedAt: any;
5418
5399
  status: string;
5419
5400
  appleTeam?: {
5420
5401
  __typename?: 'AppleTeam';
5421
5402
  id: string;
5422
5403
  appleTeamIdentifier: string;
5423
- appleTeamName?: string | null | undefined;
5424
- } | null | undefined;
5404
+ appleTeamName?: string | null;
5405
+ } | null;
5425
5406
  appleDevices: Array<{
5426
5407
  __typename?: 'AppleDevice';
5427
5408
  id: string;
5428
5409
  identifier: string;
5429
- name?: string | null | undefined;
5430
- model?: string | null | undefined;
5431
- deviceClass?: AppleDeviceClass | null | undefined;
5410
+ name?: string | null;
5411
+ model?: string | null;
5412
+ deviceClass?: AppleDeviceClass | null;
5432
5413
  }>;
5433
- } | null | undefined;
5414
+ } | null;
5434
5415
  }>;
5435
5416
  app: {
5436
5417
  __typename?: 'App';
@@ -5442,8 +5423,8 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5442
5423
  __typename?: 'AppleTeam';
5443
5424
  id: string;
5444
5425
  appleTeamIdentifier: string;
5445
- appleTeamName?: string | null | undefined;
5446
- } | null | undefined;
5426
+ appleTeamName?: string | null;
5427
+ } | null;
5447
5428
  appleAppIdentifier: {
5448
5429
  __typename?: 'AppleAppIdentifier';
5449
5430
  id: string;
@@ -5458,8 +5439,8 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5458
5439
  __typename?: 'AppleTeam';
5459
5440
  id: string;
5460
5441
  appleTeamIdentifier: string;
5461
- appleTeamName?: string | null | undefined;
5462
- } | null | undefined;
5442
+ appleTeamName?: string | null;
5443
+ } | null;
5463
5444
  iosAppCredentialsList: Array<{
5464
5445
  __typename?: 'IosAppCredentials';
5465
5446
  id: string;
@@ -5475,23 +5456,23 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
5475
5456
  bundleIdentifier: string;
5476
5457
  };
5477
5458
  }>;
5478
- } | null | undefined;
5459
+ } | null;
5479
5460
  appStoreConnectApiKeyForSubmissions?: {
5480
5461
  __typename?: 'AppStoreConnectApiKey';
5481
5462
  id: string;
5482
5463
  issuerIdentifier: string;
5483
5464
  keyIdentifier: string;
5484
- name?: string | null | undefined;
5485
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
5465
+ name?: string | null;
5466
+ roles?: Array<AppStoreConnectUserRole> | null;
5486
5467
  createdAt: any;
5487
5468
  updatedAt: any;
5488
5469
  appleTeam?: {
5489
5470
  __typename?: 'AppleTeam';
5490
5471
  id: string;
5491
5472
  appleTeamIdentifier: string;
5492
- appleTeamName?: string | null | undefined;
5493
- } | null | undefined;
5494
- } | null | undefined;
5473
+ appleTeamName?: string | null;
5474
+ } | null;
5475
+ } | null;
5495
5476
  }>;
5496
5477
  };
5497
5478
  };
@@ -5517,10 +5498,10 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5517
5498
  distributionCertificate?: {
5518
5499
  __typename?: 'AppleDistributionCertificate';
5519
5500
  id: string;
5520
- certificateP12?: string | null | undefined;
5521
- certificatePassword?: string | null | undefined;
5501
+ certificateP12?: string | null;
5502
+ certificatePassword?: string | null;
5522
5503
  serialNumber: string;
5523
- developerPortalIdentifier?: string | null | undefined;
5504
+ developerPortalIdentifier?: string | null;
5524
5505
  validityNotBefore: any;
5525
5506
  validityNotAfter: any;
5526
5507
  updatedAt: any;
@@ -5528,8 +5509,8 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5528
5509
  __typename?: 'AppleTeam';
5529
5510
  id: string;
5530
5511
  appleTeamIdentifier: string;
5531
- appleTeamName?: string | null | undefined;
5532
- } | null | undefined;
5512
+ appleTeamName?: string | null;
5513
+ } | null;
5533
5514
  iosAppBuildCredentialsList: Array<{
5534
5515
  __typename?: 'IosAppBuildCredentials';
5535
5516
  id: string;
@@ -5551,33 +5532,33 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5551
5532
  provisioningProfile?: {
5552
5533
  __typename?: 'AppleProvisioningProfile';
5553
5534
  id: string;
5554
- developerPortalIdentifier?: string | null | undefined;
5555
- } | null | undefined;
5535
+ developerPortalIdentifier?: string | null;
5536
+ } | null;
5556
5537
  }>;
5557
- } | null | undefined;
5538
+ } | null;
5558
5539
  provisioningProfile?: {
5559
5540
  __typename?: 'AppleProvisioningProfile';
5560
5541
  id: string;
5561
5542
  expiration: any;
5562
- developerPortalIdentifier?: string | null | undefined;
5563
- provisioningProfile?: string | null | undefined;
5543
+ developerPortalIdentifier?: string | null;
5544
+ provisioningProfile?: string | null;
5564
5545
  updatedAt: any;
5565
5546
  status: string;
5566
5547
  appleTeam?: {
5567
5548
  __typename?: 'AppleTeam';
5568
5549
  id: string;
5569
5550
  appleTeamIdentifier: string;
5570
- appleTeamName?: string | null | undefined;
5571
- } | null | undefined;
5551
+ appleTeamName?: string | null;
5552
+ } | null;
5572
5553
  appleDevices: Array<{
5573
5554
  __typename?: 'AppleDevice';
5574
5555
  id: string;
5575
5556
  identifier: string;
5576
- name?: string | null | undefined;
5577
- model?: string | null | undefined;
5578
- deviceClass?: AppleDeviceClass | null | undefined;
5557
+ name?: string | null;
5558
+ model?: string | null;
5559
+ deviceClass?: AppleDeviceClass | null;
5579
5560
  }>;
5580
- } | null | undefined;
5561
+ } | null;
5581
5562
  }>;
5582
5563
  app: {
5583
5564
  __typename?: 'App';
@@ -5589,8 +5570,8 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5589
5570
  __typename?: 'AppleTeam';
5590
5571
  id: string;
5591
5572
  appleTeamIdentifier: string;
5592
- appleTeamName?: string | null | undefined;
5593
- } | null | undefined;
5573
+ appleTeamName?: string | null;
5574
+ } | null;
5594
5575
  appleAppIdentifier: {
5595
5576
  __typename?: 'AppleAppIdentifier';
5596
5577
  id: string;
@@ -5605,8 +5586,8 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5605
5586
  __typename?: 'AppleTeam';
5606
5587
  id: string;
5607
5588
  appleTeamIdentifier: string;
5608
- appleTeamName?: string | null | undefined;
5609
- } | null | undefined;
5589
+ appleTeamName?: string | null;
5590
+ } | null;
5610
5591
  iosAppCredentialsList: Array<{
5611
5592
  __typename?: 'IosAppCredentials';
5612
5593
  id: string;
@@ -5622,23 +5603,23 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
5622
5603
  bundleIdentifier: string;
5623
5604
  };
5624
5605
  }>;
5625
- } | null | undefined;
5606
+ } | null;
5626
5607
  appStoreConnectApiKeyForSubmissions?: {
5627
5608
  __typename?: 'AppStoreConnectApiKey';
5628
5609
  id: string;
5629
5610
  issuerIdentifier: string;
5630
5611
  keyIdentifier: string;
5631
- name?: string | null | undefined;
5632
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
5612
+ name?: string | null;
5613
+ roles?: Array<AppStoreConnectUserRole> | null;
5633
5614
  createdAt: any;
5634
5615
  updatedAt: any;
5635
5616
  appleTeam?: {
5636
5617
  __typename?: 'AppleTeam';
5637
5618
  id: string;
5638
5619
  appleTeamIdentifier: string;
5639
- appleTeamName?: string | null | undefined;
5640
- } | null | undefined;
5641
- } | null | undefined;
5620
+ appleTeamName?: string | null;
5621
+ } | null;
5622
+ } | null;
5642
5623
  }>;
5643
5624
  };
5644
5625
  };
@@ -5654,7 +5635,7 @@ export declare type CreateAppMutation = {
5654
5635
  __typename?: 'App';
5655
5636
  id: string;
5656
5637
  };
5657
- } | null | undefined;
5638
+ } | null;
5658
5639
  };
5659
5640
  export declare type CreateAndroidBuildMutationVariables = Exact<{
5660
5641
  appId: Scalars['ID'];
@@ -5663,7 +5644,7 @@ export declare type CreateAndroidBuildMutationVariables = Exact<{
5663
5644
  }>;
5664
5645
  export declare type CreateAndroidBuildMutation = {
5665
5646
  __typename?: 'RootMutation';
5666
- build?: {
5647
+ build: {
5667
5648
  __typename?: 'BuildMutation';
5668
5649
  createAndroidBuild: {
5669
5650
  __typename?: 'CreateBuildResult';
@@ -5672,29 +5653,29 @@ export declare type CreateAndroidBuildMutation = {
5672
5653
  id: string;
5673
5654
  status: BuildStatus;
5674
5655
  platform: AppPlatform;
5675
- channel?: string | null | undefined;
5676
- releaseChannel?: string | null | undefined;
5677
- distribution?: DistributionType | null | undefined;
5678
- iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null | undefined;
5679
- buildProfile?: string | null | undefined;
5680
- sdkVersion?: string | null | undefined;
5681
- appVersion?: string | null | undefined;
5682
- appBuildVersion?: string | null | undefined;
5683
- runtimeVersion?: string | null | undefined;
5684
- gitCommitHash?: string | null | undefined;
5685
- createdAt?: any | null | undefined;
5686
- updatedAt?: any | null | undefined;
5656
+ channel?: string | null;
5657
+ releaseChannel?: string | null;
5658
+ distribution?: DistributionType | null;
5659
+ iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
5660
+ buildProfile?: string | null;
5661
+ sdkVersion?: string | null;
5662
+ appVersion?: string | null;
5663
+ appBuildVersion?: string | null;
5664
+ runtimeVersion?: string | null;
5665
+ gitCommitHash?: string | null;
5666
+ createdAt?: any | null;
5667
+ updatedAt?: any | null;
5687
5668
  error?: {
5688
5669
  __typename?: 'BuildError';
5689
5670
  errorCode: string;
5690
5671
  message: string;
5691
- docsUrl?: string | null | undefined;
5692
- } | null | undefined;
5672
+ docsUrl?: string | null;
5673
+ } | null;
5693
5674
  artifacts?: {
5694
5675
  __typename?: 'BuildArtifacts';
5695
- buildUrl?: string | null | undefined;
5696
- xcodeBuildLogsUrl?: string | null | undefined;
5697
- } | null | undefined;
5676
+ buildUrl?: string | null;
5677
+ xcodeBuildLogsUrl?: string | null;
5678
+ } | null;
5698
5679
  initiatingActor?: {
5699
5680
  __typename: 'Robot';
5700
5681
  id: string;
@@ -5703,11 +5684,12 @@ export declare type CreateAndroidBuildMutation = {
5703
5684
  __typename: 'User';
5704
5685
  id: string;
5705
5686
  displayName: string;
5706
- } | null | undefined;
5687
+ } | null;
5707
5688
  project: {
5708
5689
  __typename: 'App';
5709
5690
  id: string;
5710
5691
  name: string;
5692
+ slug: string;
5711
5693
  ownerAccount: {
5712
5694
  __typename?: 'Account';
5713
5695
  id: string;
@@ -5717,15 +5699,16 @@ export declare type CreateAndroidBuildMutation = {
5717
5699
  __typename: 'Snack';
5718
5700
  id: string;
5719
5701
  name: string;
5702
+ slug: string;
5720
5703
  };
5721
5704
  };
5722
5705
  deprecationInfo?: {
5723
5706
  __typename?: 'EASBuildDeprecationInfo';
5724
5707
  type: EasBuildDeprecationInfoType;
5725
5708
  message: string;
5726
- } | null | undefined;
5709
+ } | null;
5727
5710
  };
5728
- } | null | undefined;
5711
+ };
5729
5712
  };
5730
5713
  export declare type CreateIosBuildMutationVariables = Exact<{
5731
5714
  appId: Scalars['ID'];
@@ -5734,7 +5717,7 @@ export declare type CreateIosBuildMutationVariables = Exact<{
5734
5717
  }>;
5735
5718
  export declare type CreateIosBuildMutation = {
5736
5719
  __typename?: 'RootMutation';
5737
- build?: {
5720
+ build: {
5738
5721
  __typename?: 'BuildMutation';
5739
5722
  createIosBuild: {
5740
5723
  __typename?: 'CreateBuildResult';
@@ -5743,29 +5726,29 @@ export declare type CreateIosBuildMutation = {
5743
5726
  id: string;
5744
5727
  status: BuildStatus;
5745
5728
  platform: AppPlatform;
5746
- channel?: string | null | undefined;
5747
- releaseChannel?: string | null | undefined;
5748
- distribution?: DistributionType | null | undefined;
5749
- iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null | undefined;
5750
- buildProfile?: string | null | undefined;
5751
- sdkVersion?: string | null | undefined;
5752
- appVersion?: string | null | undefined;
5753
- appBuildVersion?: string | null | undefined;
5754
- runtimeVersion?: string | null | undefined;
5755
- gitCommitHash?: string | null | undefined;
5756
- createdAt?: any | null | undefined;
5757
- updatedAt?: any | null | undefined;
5729
+ channel?: string | null;
5730
+ releaseChannel?: string | null;
5731
+ distribution?: DistributionType | null;
5732
+ iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
5733
+ buildProfile?: string | null;
5734
+ sdkVersion?: string | null;
5735
+ appVersion?: string | null;
5736
+ appBuildVersion?: string | null;
5737
+ runtimeVersion?: string | null;
5738
+ gitCommitHash?: string | null;
5739
+ createdAt?: any | null;
5740
+ updatedAt?: any | null;
5758
5741
  error?: {
5759
5742
  __typename?: 'BuildError';
5760
5743
  errorCode: string;
5761
5744
  message: string;
5762
- docsUrl?: string | null | undefined;
5763
- } | null | undefined;
5745
+ docsUrl?: string | null;
5746
+ } | null;
5764
5747
  artifacts?: {
5765
5748
  __typename?: 'BuildArtifacts';
5766
- buildUrl?: string | null | undefined;
5767
- xcodeBuildLogsUrl?: string | null | undefined;
5768
- } | null | undefined;
5749
+ buildUrl?: string | null;
5750
+ xcodeBuildLogsUrl?: string | null;
5751
+ } | null;
5769
5752
  initiatingActor?: {
5770
5753
  __typename: 'Robot';
5771
5754
  id: string;
@@ -5774,11 +5757,12 @@ export declare type CreateIosBuildMutation = {
5774
5757
  __typename: 'User';
5775
5758
  id: string;
5776
5759
  displayName: string;
5777
- } | null | undefined;
5760
+ } | null;
5778
5761
  project: {
5779
5762
  __typename: 'App';
5780
5763
  id: string;
5781
5764
  name: string;
5765
+ slug: string;
5782
5766
  ownerAccount: {
5783
5767
  __typename?: 'Account';
5784
5768
  id: string;
@@ -5788,15 +5772,16 @@ export declare type CreateIosBuildMutation = {
5788
5772
  __typename: 'Snack';
5789
5773
  id: string;
5790
5774
  name: string;
5775
+ slug: string;
5791
5776
  };
5792
5777
  };
5793
5778
  deprecationInfo?: {
5794
5779
  __typename?: 'EASBuildDeprecationInfo';
5795
5780
  type: EasBuildDeprecationInfoType;
5796
5781
  message: string;
5797
- } | null | undefined;
5782
+ } | null;
5798
5783
  };
5799
- } | null | undefined;
5784
+ };
5800
5785
  };
5801
5786
  export declare type CreateEnvironmentSecretForAccountMutationVariables = Exact<{
5802
5787
  input: CreateEnvironmentSecretInput;
@@ -5864,10 +5849,10 @@ export declare type GetSignedUploadMutation = {
5864
5849
  __typename?: 'RootMutation';
5865
5850
  asset: {
5866
5851
  __typename?: 'AssetMutation';
5867
- getSignedAssetUploadSpecifications?: {
5852
+ getSignedAssetUploadSpecifications: {
5868
5853
  __typename?: 'GetSignedAssetUploadSpecificationsResult';
5869
- specifications: Array<string | null | undefined>;
5870
- } | null | undefined;
5854
+ specifications: Array<string>;
5855
+ };
5871
5856
  };
5872
5857
  };
5873
5858
  export declare type UpdatePublishMutationVariables = Exact<{
@@ -5883,9 +5868,32 @@ export declare type UpdatePublishMutation = {
5883
5868
  group: string;
5884
5869
  runtimeVersion: string;
5885
5870
  platform: string;
5871
+ manifestPermalink: string;
5886
5872
  }>;
5887
5873
  };
5888
5874
  };
5875
+ export declare type SetCodeSigningInfoMutationVariables = Exact<{
5876
+ updateId: Scalars['ID'];
5877
+ codeSigningInfo: CodeSigningInfoInput;
5878
+ }>;
5879
+ export declare type SetCodeSigningInfoMutation = {
5880
+ __typename?: 'RootMutation';
5881
+ update: {
5882
+ __typename?: 'UpdateMutation';
5883
+ setCodeSigningInfo: {
5884
+ __typename?: 'Update';
5885
+ id: string;
5886
+ group: string;
5887
+ awaitingCodeSigningInfo: boolean;
5888
+ codeSigningInfo?: {
5889
+ __typename?: 'CodeSigningInfo';
5890
+ keyid: string;
5891
+ alg: string;
5892
+ sig: string;
5893
+ } | null;
5894
+ };
5895
+ };
5896
+ };
5889
5897
  export declare type CreateAndroidSubmissionMutationVariables = Exact<{
5890
5898
  appId: Scalars['ID'];
5891
5899
  config: AndroidSubmissionConfigInput;
@@ -5902,7 +5910,7 @@ export declare type CreateAndroidSubmissionMutation = {
5902
5910
  id: string;
5903
5911
  status: SubmissionStatus;
5904
5912
  platform: AppPlatform;
5905
- logsUrl?: string | null | undefined;
5913
+ logsUrl?: string | null;
5906
5914
  app: {
5907
5915
  __typename?: 'App';
5908
5916
  id: string;
@@ -5916,20 +5924,20 @@ export declare type CreateAndroidSubmissionMutation = {
5916
5924
  };
5917
5925
  androidConfig?: {
5918
5926
  __typename?: 'AndroidSubmissionConfig';
5919
- applicationIdentifier?: string | null | undefined;
5927
+ applicationIdentifier?: string | null;
5920
5928
  track: SubmissionAndroidTrack;
5921
- releaseStatus?: SubmissionAndroidReleaseStatus | null | undefined;
5922
- } | null | undefined;
5929
+ releaseStatus?: SubmissionAndroidReleaseStatus | null;
5930
+ } | null;
5923
5931
  iosConfig?: {
5924
5932
  __typename?: 'IosSubmissionConfig';
5925
5933
  ascAppIdentifier: string;
5926
- appleIdUsername?: string | null | undefined;
5927
- } | null | undefined;
5934
+ appleIdUsername?: string | null;
5935
+ } | null;
5928
5936
  error?: {
5929
5937
  __typename?: 'SubmissionError';
5930
- errorCode?: string | null | undefined;
5931
- message?: string | null | undefined;
5932
- } | null | undefined;
5938
+ errorCode?: string | null;
5939
+ message?: string | null;
5940
+ } | null;
5933
5941
  };
5934
5942
  };
5935
5943
  };
@@ -5950,7 +5958,7 @@ export declare type CreateIosSubmissionMutation = {
5950
5958
  id: string;
5951
5959
  status: SubmissionStatus;
5952
5960
  platform: AppPlatform;
5953
- logsUrl?: string | null | undefined;
5961
+ logsUrl?: string | null;
5954
5962
  app: {
5955
5963
  __typename?: 'App';
5956
5964
  id: string;
@@ -5964,20 +5972,20 @@ export declare type CreateIosSubmissionMutation = {
5964
5972
  };
5965
5973
  androidConfig?: {
5966
5974
  __typename?: 'AndroidSubmissionConfig';
5967
- applicationIdentifier?: string | null | undefined;
5975
+ applicationIdentifier?: string | null;
5968
5976
  track: SubmissionAndroidTrack;
5969
- releaseStatus?: SubmissionAndroidReleaseStatus | null | undefined;
5970
- } | null | undefined;
5977
+ releaseStatus?: SubmissionAndroidReleaseStatus | null;
5978
+ } | null;
5971
5979
  iosConfig?: {
5972
5980
  __typename?: 'IosSubmissionConfig';
5973
5981
  ascAppIdentifier: string;
5974
- appleIdUsername?: string | null | undefined;
5975
- } | null | undefined;
5982
+ appleIdUsername?: string | null;
5983
+ } | null;
5976
5984
  error?: {
5977
5985
  __typename?: 'SubmissionError';
5978
- errorCode?: string | null | undefined;
5979
- message?: string | null | undefined;
5980
- } | null | undefined;
5986
+ errorCode?: string | null;
5987
+ message?: string | null;
5988
+ } | null;
5981
5989
  };
5982
5990
  };
5983
5991
  };
@@ -6056,7 +6064,7 @@ export declare type ViewBranchQuery = {
6056
6064
  __typename?: 'UpdateBranch';
6057
6065
  id: string;
6058
6066
  name: string;
6059
- } | null | undefined;
6067
+ } | null;
6060
6068
  };
6061
6069
  };
6062
6070
  };
@@ -6072,29 +6080,29 @@ export declare type BuildsByIdQuery = {
6072
6080
  id: string;
6073
6081
  status: BuildStatus;
6074
6082
  platform: AppPlatform;
6075
- channel?: string | null | undefined;
6076
- releaseChannel?: string | null | undefined;
6077
- distribution?: DistributionType | null | undefined;
6078
- iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null | undefined;
6079
- buildProfile?: string | null | undefined;
6080
- sdkVersion?: string | null | undefined;
6081
- appVersion?: string | null | undefined;
6082
- appBuildVersion?: string | null | undefined;
6083
- runtimeVersion?: string | null | undefined;
6084
- gitCommitHash?: string | null | undefined;
6085
- createdAt?: any | null | undefined;
6086
- updatedAt?: any | null | undefined;
6083
+ channel?: string | null;
6084
+ releaseChannel?: string | null;
6085
+ distribution?: DistributionType | null;
6086
+ iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
6087
+ buildProfile?: string | null;
6088
+ sdkVersion?: string | null;
6089
+ appVersion?: string | null;
6090
+ appBuildVersion?: string | null;
6091
+ runtimeVersion?: string | null;
6092
+ gitCommitHash?: string | null;
6093
+ createdAt?: any | null;
6094
+ updatedAt?: any | null;
6087
6095
  error?: {
6088
6096
  __typename?: 'BuildError';
6089
6097
  errorCode: string;
6090
6098
  message: string;
6091
- docsUrl?: string | null | undefined;
6092
- } | null | undefined;
6099
+ docsUrl?: string | null;
6100
+ } | null;
6093
6101
  artifacts?: {
6094
6102
  __typename?: 'BuildArtifacts';
6095
- buildUrl?: string | null | undefined;
6096
- xcodeBuildLogsUrl?: string | null | undefined;
6097
- } | null | undefined;
6103
+ buildUrl?: string | null;
6104
+ xcodeBuildLogsUrl?: string | null;
6105
+ } | null;
6098
6106
  initiatingActor?: {
6099
6107
  __typename: 'Robot';
6100
6108
  id: string;
@@ -6103,11 +6111,12 @@ export declare type BuildsByIdQuery = {
6103
6111
  __typename: 'User';
6104
6112
  id: string;
6105
6113
  displayName: string;
6106
- } | null | undefined;
6114
+ } | null;
6107
6115
  project: {
6108
6116
  __typename: 'App';
6109
6117
  id: string;
6110
6118
  name: string;
6119
+ slug: string;
6111
6120
  ownerAccount: {
6112
6121
  __typename?: 'Account';
6113
6122
  id: string;
@@ -6117,6 +6126,7 @@ export declare type BuildsByIdQuery = {
6117
6126
  __typename: 'Snack';
6118
6127
  id: string;
6119
6128
  name: string;
6129
+ slug: string;
6120
6130
  };
6121
6131
  };
6122
6132
  };
@@ -6139,29 +6149,29 @@ export declare type GetAllBuildsForAppQuery = {
6139
6149
  id: string;
6140
6150
  status: BuildStatus;
6141
6151
  platform: AppPlatform;
6142
- channel?: string | null | undefined;
6143
- releaseChannel?: string | null | undefined;
6144
- distribution?: DistributionType | null | undefined;
6145
- iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null | undefined;
6146
- buildProfile?: string | null | undefined;
6147
- sdkVersion?: string | null | undefined;
6148
- appVersion?: string | null | undefined;
6149
- appBuildVersion?: string | null | undefined;
6150
- runtimeVersion?: string | null | undefined;
6151
- gitCommitHash?: string | null | undefined;
6152
- createdAt?: any | null | undefined;
6153
- updatedAt?: any | null | undefined;
6152
+ channel?: string | null;
6153
+ releaseChannel?: string | null;
6154
+ distribution?: DistributionType | null;
6155
+ iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
6156
+ buildProfile?: string | null;
6157
+ sdkVersion?: string | null;
6158
+ appVersion?: string | null;
6159
+ appBuildVersion?: string | null;
6160
+ runtimeVersion?: string | null;
6161
+ gitCommitHash?: string | null;
6162
+ createdAt?: any | null;
6163
+ updatedAt?: any | null;
6154
6164
  error?: {
6155
6165
  __typename?: 'BuildError';
6156
6166
  errorCode: string;
6157
6167
  message: string;
6158
- docsUrl?: string | null | undefined;
6159
- } | null | undefined;
6168
+ docsUrl?: string | null;
6169
+ } | null;
6160
6170
  artifacts?: {
6161
6171
  __typename?: 'BuildArtifacts';
6162
- buildUrl?: string | null | undefined;
6163
- xcodeBuildLogsUrl?: string | null | undefined;
6164
- } | null | undefined;
6172
+ buildUrl?: string | null;
6173
+ xcodeBuildLogsUrl?: string | null;
6174
+ } | null;
6165
6175
  initiatingActor?: {
6166
6176
  __typename: 'Robot';
6167
6177
  id: string;
@@ -6170,11 +6180,12 @@ export declare type GetAllBuildsForAppQuery = {
6170
6180
  __typename: 'User';
6171
6181
  id: string;
6172
6182
  displayName: string;
6173
- } | null | undefined;
6183
+ } | null;
6174
6184
  project: {
6175
6185
  __typename: 'App';
6176
6186
  id: string;
6177
6187
  name: string;
6188
+ slug: string;
6178
6189
  ownerAccount: {
6179
6190
  __typename?: 'Account';
6180
6191
  id: string;
@@ -6184,11 +6195,56 @@ export declare type GetAllBuildsForAppQuery = {
6184
6195
  __typename: 'Snack';
6185
6196
  id: string;
6186
6197
  name: string;
6198
+ slug: string;
6187
6199
  };
6188
6200
  }>;
6189
6201
  };
6190
6202
  };
6191
6203
  };
6204
+ export declare type GetChannelByNameForAppQueryVariables = Exact<{
6205
+ appId: Scalars['String'];
6206
+ channelName: Scalars['String'];
6207
+ }>;
6208
+ export declare type GetChannelByNameForAppQuery = {
6209
+ __typename?: 'RootQuery';
6210
+ app: {
6211
+ __typename?: 'AppQuery';
6212
+ byId: {
6213
+ __typename?: 'App';
6214
+ id: string;
6215
+ updateChannelByName?: {
6216
+ __typename?: 'UpdateChannel';
6217
+ id: string;
6218
+ name: string;
6219
+ createdAt: any;
6220
+ branchMapping: string;
6221
+ updateBranches: Array<{
6222
+ __typename?: 'UpdateBranch';
6223
+ id: string;
6224
+ name: string;
6225
+ updates: Array<{
6226
+ __typename?: 'Update';
6227
+ id: string;
6228
+ group: string;
6229
+ message?: string | null;
6230
+ runtimeVersion: string;
6231
+ createdAt: any;
6232
+ platform: string;
6233
+ actor?: {
6234
+ __typename?: 'Robot';
6235
+ firstName?: string | null;
6236
+ id: string;
6237
+ } | {
6238
+ __typename?: 'User';
6239
+ username: string;
6240
+ id: string;
6241
+ } | null;
6242
+ }>;
6243
+ }>;
6244
+ } | null;
6245
+ };
6246
+ };
6247
+ };
6192
6248
  export declare type EnvironmentSecretsByAccountNameQueryVariables = Exact<{
6193
6249
  accountName: Scalars['String'];
6194
6250
  }>;
@@ -6270,7 +6326,7 @@ export declare type SubmissionsByIdQuery = {
6270
6326
  id: string;
6271
6327
  status: SubmissionStatus;
6272
6328
  platform: AppPlatform;
6273
- logsUrl?: string | null | undefined;
6329
+ logsUrl?: string | null;
6274
6330
  app: {
6275
6331
  __typename?: 'App';
6276
6332
  id: string;
@@ -6284,20 +6340,20 @@ export declare type SubmissionsByIdQuery = {
6284
6340
  };
6285
6341
  androidConfig?: {
6286
6342
  __typename?: 'AndroidSubmissionConfig';
6287
- applicationIdentifier?: string | null | undefined;
6343
+ applicationIdentifier?: string | null;
6288
6344
  track: SubmissionAndroidTrack;
6289
- releaseStatus?: SubmissionAndroidReleaseStatus | null | undefined;
6290
- } | null | undefined;
6345
+ releaseStatus?: SubmissionAndroidReleaseStatus | null;
6346
+ } | null;
6291
6347
  iosConfig?: {
6292
6348
  __typename?: 'IosSubmissionConfig';
6293
6349
  ascAppIdentifier: string;
6294
- appleIdUsername?: string | null | undefined;
6295
- } | null | undefined;
6350
+ appleIdUsername?: string | null;
6351
+ } | null;
6296
6352
  error?: {
6297
6353
  __typename?: 'SubmissionError';
6298
- errorCode?: string | null | undefined;
6299
- message?: string | null | undefined;
6300
- } | null | undefined;
6354
+ errorCode?: string | null;
6355
+ message?: string | null;
6356
+ } | null;
6301
6357
  };
6302
6358
  };
6303
6359
  };
@@ -6320,7 +6376,7 @@ export declare type GetAllSubmissionsForAppQuery = {
6320
6376
  id: string;
6321
6377
  status: SubmissionStatus;
6322
6378
  platform: AppPlatform;
6323
- logsUrl?: string | null | undefined;
6379
+ logsUrl?: string | null;
6324
6380
  app: {
6325
6381
  __typename?: 'App';
6326
6382
  id: string;
@@ -6334,20 +6390,20 @@ export declare type GetAllSubmissionsForAppQuery = {
6334
6390
  };
6335
6391
  androidConfig?: {
6336
6392
  __typename?: 'AndroidSubmissionConfig';
6337
- applicationIdentifier?: string | null | undefined;
6393
+ applicationIdentifier?: string | null;
6338
6394
  track: SubmissionAndroidTrack;
6339
- releaseStatus?: SubmissionAndroidReleaseStatus | null | undefined;
6340
- } | null | undefined;
6395
+ releaseStatus?: SubmissionAndroidReleaseStatus | null;
6396
+ } | null;
6341
6397
  iosConfig?: {
6342
6398
  __typename?: 'IosSubmissionConfig';
6343
6399
  ascAppIdentifier: string;
6344
- appleIdUsername?: string | null | undefined;
6345
- } | null | undefined;
6400
+ appleIdUsername?: string | null;
6401
+ } | null;
6346
6402
  error?: {
6347
6403
  __typename?: 'SubmissionError';
6348
- errorCode?: string | null | undefined;
6349
- message?: string | null | undefined;
6350
- } | null | undefined;
6404
+ errorCode?: string | null;
6405
+ message?: string | null;
6406
+ } | null;
6351
6407
  }>;
6352
6408
  };
6353
6409
  };
@@ -6371,19 +6427,19 @@ export declare type ViewAllUpdatesQuery = {
6371
6427
  __typename?: 'Update';
6372
6428
  id: string;
6373
6429
  group: string;
6374
- message?: string | null | undefined;
6430
+ message?: string | null;
6375
6431
  createdAt: any;
6376
6432
  runtimeVersion: string;
6377
6433
  platform: string;
6378
6434
  actor?: {
6379
6435
  __typename?: 'Robot';
6380
- firstName?: string | null | undefined;
6436
+ firstName?: string | null;
6381
6437
  id: string;
6382
6438
  } | {
6383
6439
  __typename?: 'User';
6384
6440
  username: string;
6385
6441
  id: string;
6386
- } | null | undefined;
6442
+ } | null;
6387
6443
  }>;
6388
6444
  }>;
6389
6445
  };
@@ -6409,22 +6465,22 @@ export declare type ViewBranchUpdatesQuery = {
6409
6465
  __typename?: 'Update';
6410
6466
  id: string;
6411
6467
  group: string;
6412
- message?: string | null | undefined;
6468
+ message?: string | null;
6413
6469
  createdAt: any;
6414
6470
  runtimeVersion: string;
6415
6471
  platform: string;
6416
6472
  manifestFragment: string;
6417
6473
  actor?: {
6418
6474
  __typename?: 'Robot';
6419
- firstName?: string | null | undefined;
6475
+ firstName?: string | null;
6420
6476
  id: string;
6421
6477
  } | {
6422
6478
  __typename?: 'User';
6423
6479
  username: string;
6424
6480
  id: string;
6425
- } | null | undefined;
6481
+ } | null;
6426
6482
  }>;
6427
- } | null | undefined;
6483
+ } | null;
6428
6484
  };
6429
6485
  };
6430
6486
  };
@@ -6435,7 +6491,7 @@ export declare type CurrentUserQuery = {
6435
6491
  __typename?: 'RootQuery';
6436
6492
  meActor?: {
6437
6493
  __typename: 'Robot';
6438
- firstName?: string | null | undefined;
6494
+ firstName?: string | null;
6439
6495
  id: string;
6440
6496
  isExpoAdmin: boolean;
6441
6497
  accounts: Array<{
@@ -6453,7 +6509,7 @@ export declare type CurrentUserQuery = {
6453
6509
  id: string;
6454
6510
  name: string;
6455
6511
  }>;
6456
- } | null | undefined;
6512
+ } | null;
6457
6513
  };
6458
6514
  export declare type WebhooksByAppIdQueryVariables = Exact<{
6459
6515
  appId: Scalars['String'];
@@ -6505,29 +6561,29 @@ export declare type BuildFragment = {
6505
6561
  id: string;
6506
6562
  status: BuildStatus;
6507
6563
  platform: AppPlatform;
6508
- channel?: string | null | undefined;
6509
- releaseChannel?: string | null | undefined;
6510
- distribution?: DistributionType | null | undefined;
6511
- iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null | undefined;
6512
- buildProfile?: string | null | undefined;
6513
- sdkVersion?: string | null | undefined;
6514
- appVersion?: string | null | undefined;
6515
- appBuildVersion?: string | null | undefined;
6516
- runtimeVersion?: string | null | undefined;
6517
- gitCommitHash?: string | null | undefined;
6518
- createdAt?: any | null | undefined;
6519
- updatedAt?: any | null | undefined;
6564
+ channel?: string | null;
6565
+ releaseChannel?: string | null;
6566
+ distribution?: DistributionType | null;
6567
+ iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
6568
+ buildProfile?: string | null;
6569
+ sdkVersion?: string | null;
6570
+ appVersion?: string | null;
6571
+ appBuildVersion?: string | null;
6572
+ runtimeVersion?: string | null;
6573
+ gitCommitHash?: string | null;
6574
+ createdAt?: any | null;
6575
+ updatedAt?: any | null;
6520
6576
  error?: {
6521
6577
  __typename?: 'BuildError';
6522
6578
  errorCode: string;
6523
6579
  message: string;
6524
- docsUrl?: string | null | undefined;
6525
- } | null | undefined;
6580
+ docsUrl?: string | null;
6581
+ } | null;
6526
6582
  artifacts?: {
6527
6583
  __typename?: 'BuildArtifacts';
6528
- buildUrl?: string | null | undefined;
6529
- xcodeBuildLogsUrl?: string | null | undefined;
6530
- } | null | undefined;
6584
+ buildUrl?: string | null;
6585
+ xcodeBuildLogsUrl?: string | null;
6586
+ } | null;
6531
6587
  initiatingActor?: {
6532
6588
  __typename: 'Robot';
6533
6589
  id: string;
@@ -6536,11 +6592,12 @@ export declare type BuildFragment = {
6536
6592
  __typename: 'User';
6537
6593
  id: string;
6538
6594
  displayName: string;
6539
- } | null | undefined;
6595
+ } | null;
6540
6596
  project: {
6541
6597
  __typename: 'App';
6542
6598
  id: string;
6543
6599
  name: string;
6600
+ slug: string;
6544
6601
  ownerAccount: {
6545
6602
  __typename?: 'Account';
6546
6603
  id: string;
@@ -6550,6 +6607,7 @@ export declare type BuildFragment = {
6550
6607
  __typename: 'Snack';
6551
6608
  id: string;
6552
6609
  name: string;
6610
+ slug: string;
6553
6611
  };
6554
6612
  };
6555
6613
  export declare type EnvironmentSecretFragment = {
@@ -6563,7 +6621,7 @@ export declare type SubmissionFragment = {
6563
6621
  id: string;
6564
6622
  status: SubmissionStatus;
6565
6623
  platform: AppPlatform;
6566
- logsUrl?: string | null | undefined;
6624
+ logsUrl?: string | null;
6567
6625
  app: {
6568
6626
  __typename?: 'App';
6569
6627
  id: string;
@@ -6577,20 +6635,20 @@ export declare type SubmissionFragment = {
6577
6635
  };
6578
6636
  androidConfig?: {
6579
6637
  __typename?: 'AndroidSubmissionConfig';
6580
- applicationIdentifier?: string | null | undefined;
6638
+ applicationIdentifier?: string | null;
6581
6639
  track: SubmissionAndroidTrack;
6582
- releaseStatus?: SubmissionAndroidReleaseStatus | null | undefined;
6583
- } | null | undefined;
6640
+ releaseStatus?: SubmissionAndroidReleaseStatus | null;
6641
+ } | null;
6584
6642
  iosConfig?: {
6585
6643
  __typename?: 'IosSubmissionConfig';
6586
6644
  ascAppIdentifier: string;
6587
- appleIdUsername?: string | null | undefined;
6588
- } | null | undefined;
6645
+ appleIdUsername?: string | null;
6646
+ } | null;
6589
6647
  error?: {
6590
6648
  __typename?: 'SubmissionError';
6591
- errorCode?: string | null | undefined;
6592
- message?: string | null | undefined;
6593
- } | null | undefined;
6649
+ errorCode?: string | null;
6650
+ message?: string | null;
6651
+ } | null;
6594
6652
  };
6595
6653
  export declare type UpdateBranchFragment = {
6596
6654
  __typename?: 'UpdateBranch';
@@ -6600,19 +6658,19 @@ export declare type UpdateBranchFragment = {
6600
6658
  __typename?: 'Update';
6601
6659
  id: string;
6602
6660
  createdAt: any;
6603
- message?: string | null | undefined;
6661
+ message?: string | null;
6604
6662
  runtimeVersion: string;
6605
6663
  group: string;
6606
6664
  platform: string;
6607
6665
  actor?: {
6608
6666
  __typename: 'Robot';
6609
- firstName?: string | null | undefined;
6667
+ firstName?: string | null;
6610
6668
  id: string;
6611
6669
  } | {
6612
6670
  __typename: 'User';
6613
6671
  username: string;
6614
6672
  id: string;
6615
- } | null | undefined;
6673
+ } | null;
6616
6674
  }>;
6617
6675
  };
6618
6676
  export declare type WebhookFragment = {
@@ -6636,18 +6694,18 @@ export declare type AndroidAppBuildCredentialsFragment = {
6636
6694
  keystore: string;
6637
6695
  keystorePassword: string;
6638
6696
  keyAlias: string;
6639
- keyPassword?: string | null | undefined;
6640
- md5CertificateFingerprint?: string | null | undefined;
6641
- sha1CertificateFingerprint?: string | null | undefined;
6642
- sha256CertificateFingerprint?: string | null | undefined;
6697
+ keyPassword?: string | null;
6698
+ md5CertificateFingerprint?: string | null;
6699
+ sha1CertificateFingerprint?: string | null;
6700
+ sha256CertificateFingerprint?: string | null;
6643
6701
  createdAt: any;
6644
6702
  updatedAt: any;
6645
- } | null | undefined;
6703
+ } | null;
6646
6704
  };
6647
6705
  export declare type CommonAndroidAppCredentialsFragment = {
6648
6706
  __typename?: 'AndroidAppCredentials';
6649
6707
  id: string;
6650
- applicationIdentifier?: string | null | undefined;
6708
+ applicationIdentifier?: string | null;
6651
6709
  isLegacy: boolean;
6652
6710
  app: {
6653
6711
  __typename?: 'App';
@@ -6671,9 +6729,9 @@ export declare type CommonAndroidAppCredentialsFragment = {
6671
6729
  projectId: string;
6672
6730
  keyId: string;
6673
6731
  serviceAccountEmail: string;
6674
- clientId?: string | null | undefined;
6732
+ clientId?: string | null;
6675
6733
  };
6676
- } | null | undefined;
6734
+ } | null;
6677
6735
  googleServiceAccountKeyForSubmissions?: {
6678
6736
  __typename?: 'GoogleServiceAccountKey';
6679
6737
  id: string;
@@ -6683,7 +6741,7 @@ export declare type CommonAndroidAppCredentialsFragment = {
6683
6741
  clientIdentifier: string;
6684
6742
  createdAt: any;
6685
6743
  updatedAt: any;
6686
- } | null | undefined;
6744
+ } | null;
6687
6745
  androidAppBuildCredentialsList: Array<{
6688
6746
  __typename?: 'AndroidAppBuildCredentials';
6689
6747
  id: string;
@@ -6697,13 +6755,13 @@ export declare type CommonAndroidAppCredentialsFragment = {
6697
6755
  keystore: string;
6698
6756
  keystorePassword: string;
6699
6757
  keyAlias: string;
6700
- keyPassword?: string | null | undefined;
6701
- md5CertificateFingerprint?: string | null | undefined;
6702
- sha1CertificateFingerprint?: string | null | undefined;
6703
- sha256CertificateFingerprint?: string | null | undefined;
6758
+ keyPassword?: string | null;
6759
+ md5CertificateFingerprint?: string | null;
6760
+ sha1CertificateFingerprint?: string | null;
6761
+ sha256CertificateFingerprint?: string | null;
6704
6762
  createdAt: any;
6705
6763
  updatedAt: any;
6706
- } | null | undefined;
6764
+ } | null;
6707
6765
  }>;
6708
6766
  };
6709
6767
  export declare type AndroidFcmFragment = {
@@ -6722,7 +6780,7 @@ export declare type AndroidFcmFragment = {
6722
6780
  projectId: string;
6723
6781
  keyId: string;
6724
6782
  serviceAccountEmail: string;
6725
- clientId?: string | null | undefined;
6783
+ clientId?: string | null;
6726
6784
  };
6727
6785
  };
6728
6786
  export declare type AndroidKeystoreFragment = {
@@ -6732,10 +6790,10 @@ export declare type AndroidKeystoreFragment = {
6732
6790
  keystore: string;
6733
6791
  keystorePassword: string;
6734
6792
  keyAlias: string;
6735
- keyPassword?: string | null | undefined;
6736
- md5CertificateFingerprint?: string | null | undefined;
6737
- sha1CertificateFingerprint?: string | null | undefined;
6738
- sha256CertificateFingerprint?: string | null | undefined;
6793
+ keyPassword?: string | null;
6794
+ md5CertificateFingerprint?: string | null;
6795
+ sha1CertificateFingerprint?: string | null;
6796
+ sha256CertificateFingerprint?: string | null;
6739
6797
  createdAt: any;
6740
6798
  updatedAt: any;
6741
6799
  };
@@ -6744,16 +6802,16 @@ export declare type AppStoreConnectApiKeyFragment = {
6744
6802
  id: string;
6745
6803
  issuerIdentifier: string;
6746
6804
  keyIdentifier: string;
6747
- name?: string | null | undefined;
6748
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
6805
+ name?: string | null;
6806
+ roles?: Array<AppStoreConnectUserRole> | null;
6749
6807
  createdAt: any;
6750
6808
  updatedAt: any;
6751
6809
  appleTeam?: {
6752
6810
  __typename?: 'AppleTeam';
6753
6811
  id: string;
6754
6812
  appleTeamIdentifier: string;
6755
- appleTeamName?: string | null | undefined;
6756
- } | null | undefined;
6813
+ appleTeamName?: string | null;
6814
+ } | null;
6757
6815
  };
6758
6816
  export declare type AppleAppIdentifierFragment = {
6759
6817
  __typename?: 'AppleAppIdentifier';
@@ -6764,9 +6822,9 @@ export declare type AppleDeviceFragment = {
6764
6822
  __typename?: 'AppleDevice';
6765
6823
  id: string;
6766
6824
  identifier: string;
6767
- name?: string | null | undefined;
6768
- model?: string | null | undefined;
6769
- deviceClass?: AppleDeviceClass | null | undefined;
6825
+ name?: string | null;
6826
+ model?: string | null;
6827
+ deviceClass?: AppleDeviceClass | null;
6770
6828
  };
6771
6829
  export declare type AppleDeviceRegistrationRequestFragment = {
6772
6830
  __typename?: 'AppleDeviceRegistrationRequest';
@@ -6775,10 +6833,10 @@ export declare type AppleDeviceRegistrationRequestFragment = {
6775
6833
  export declare type AppleDistributionCertificateFragment = {
6776
6834
  __typename?: 'AppleDistributionCertificate';
6777
6835
  id: string;
6778
- certificateP12?: string | null | undefined;
6779
- certificatePassword?: string | null | undefined;
6836
+ certificateP12?: string | null;
6837
+ certificatePassword?: string | null;
6780
6838
  serialNumber: string;
6781
- developerPortalIdentifier?: string | null | undefined;
6839
+ developerPortalIdentifier?: string | null;
6782
6840
  validityNotBefore: any;
6783
6841
  validityNotAfter: any;
6784
6842
  updatedAt: any;
@@ -6786,8 +6844,8 @@ export declare type AppleDistributionCertificateFragment = {
6786
6844
  __typename?: 'AppleTeam';
6787
6845
  id: string;
6788
6846
  appleTeamIdentifier: string;
6789
- appleTeamName?: string | null | undefined;
6790
- } | null | undefined;
6847
+ appleTeamName?: string | null;
6848
+ } | null;
6791
6849
  iosAppBuildCredentialsList: Array<{
6792
6850
  __typename?: 'IosAppBuildCredentials';
6793
6851
  id: string;
@@ -6809,37 +6867,37 @@ export declare type AppleDistributionCertificateFragment = {
6809
6867
  provisioningProfile?: {
6810
6868
  __typename?: 'AppleProvisioningProfile';
6811
6869
  id: string;
6812
- developerPortalIdentifier?: string | null | undefined;
6813
- } | null | undefined;
6870
+ developerPortalIdentifier?: string | null;
6871
+ } | null;
6814
6872
  }>;
6815
6873
  };
6816
6874
  export declare type AppleProvisioningProfileFragment = {
6817
6875
  __typename?: 'AppleProvisioningProfile';
6818
6876
  id: string;
6819
6877
  expiration: any;
6820
- developerPortalIdentifier?: string | null | undefined;
6821
- provisioningProfile?: string | null | undefined;
6878
+ developerPortalIdentifier?: string | null;
6879
+ provisioningProfile?: string | null;
6822
6880
  updatedAt: any;
6823
6881
  status: string;
6824
6882
  appleTeam?: {
6825
6883
  __typename?: 'AppleTeam';
6826
6884
  id: string;
6827
6885
  appleTeamIdentifier: string;
6828
- appleTeamName?: string | null | undefined;
6829
- } | null | undefined;
6886
+ appleTeamName?: string | null;
6887
+ } | null;
6830
6888
  appleDevices: Array<{
6831
6889
  __typename?: 'AppleDevice';
6832
6890
  id: string;
6833
6891
  identifier: string;
6834
- name?: string | null | undefined;
6835
- model?: string | null | undefined;
6836
- deviceClass?: AppleDeviceClass | null | undefined;
6892
+ name?: string | null;
6893
+ model?: string | null;
6894
+ deviceClass?: AppleDeviceClass | null;
6837
6895
  }>;
6838
6896
  };
6839
6897
  export declare type AppleProvisioningProfileIdentifiersFragment = {
6840
6898
  __typename?: 'AppleProvisioningProfile';
6841
6899
  id: string;
6842
- developerPortalIdentifier?: string | null | undefined;
6900
+ developerPortalIdentifier?: string | null;
6843
6901
  };
6844
6902
  export declare type ApplePushKeyFragment = {
6845
6903
  __typename?: 'ApplePushKey';
@@ -6850,8 +6908,8 @@ export declare type ApplePushKeyFragment = {
6850
6908
  __typename?: 'AppleTeam';
6851
6909
  id: string;
6852
6910
  appleTeamIdentifier: string;
6853
- appleTeamName?: string | null | undefined;
6854
- } | null | undefined;
6911
+ appleTeamName?: string | null;
6912
+ } | null;
6855
6913
  iosAppCredentialsList: Array<{
6856
6914
  __typename?: 'IosAppCredentials';
6857
6915
  id: string;
@@ -6872,7 +6930,7 @@ export declare type AppleTeamFragment = {
6872
6930
  __typename?: 'AppleTeam';
6873
6931
  id: string;
6874
6932
  appleTeamIdentifier: string;
6875
- appleTeamName?: string | null | undefined;
6933
+ appleTeamName?: string | null;
6876
6934
  };
6877
6935
  export declare type GoogleServiceAccountKeyFragment = {
6878
6936
  __typename?: 'GoogleServiceAccountKey';
@@ -6891,10 +6949,10 @@ export declare type IosAppBuildCredentialsFragment = {
6891
6949
  distributionCertificate?: {
6892
6950
  __typename?: 'AppleDistributionCertificate';
6893
6951
  id: string;
6894
- certificateP12?: string | null | undefined;
6895
- certificatePassword?: string | null | undefined;
6952
+ certificateP12?: string | null;
6953
+ certificatePassword?: string | null;
6896
6954
  serialNumber: string;
6897
- developerPortalIdentifier?: string | null | undefined;
6955
+ developerPortalIdentifier?: string | null;
6898
6956
  validityNotBefore: any;
6899
6957
  validityNotAfter: any;
6900
6958
  updatedAt: any;
@@ -6902,8 +6960,8 @@ export declare type IosAppBuildCredentialsFragment = {
6902
6960
  __typename?: 'AppleTeam';
6903
6961
  id: string;
6904
6962
  appleTeamIdentifier: string;
6905
- appleTeamName?: string | null | undefined;
6906
- } | null | undefined;
6963
+ appleTeamName?: string | null;
6964
+ } | null;
6907
6965
  iosAppBuildCredentialsList: Array<{
6908
6966
  __typename?: 'IosAppBuildCredentials';
6909
6967
  id: string;
@@ -6925,33 +6983,33 @@ export declare type IosAppBuildCredentialsFragment = {
6925
6983
  provisioningProfile?: {
6926
6984
  __typename?: 'AppleProvisioningProfile';
6927
6985
  id: string;
6928
- developerPortalIdentifier?: string | null | undefined;
6929
- } | null | undefined;
6986
+ developerPortalIdentifier?: string | null;
6987
+ } | null;
6930
6988
  }>;
6931
- } | null | undefined;
6989
+ } | null;
6932
6990
  provisioningProfile?: {
6933
6991
  __typename?: 'AppleProvisioningProfile';
6934
6992
  id: string;
6935
6993
  expiration: any;
6936
- developerPortalIdentifier?: string | null | undefined;
6937
- provisioningProfile?: string | null | undefined;
6994
+ developerPortalIdentifier?: string | null;
6995
+ provisioningProfile?: string | null;
6938
6996
  updatedAt: any;
6939
6997
  status: string;
6940
6998
  appleTeam?: {
6941
6999
  __typename?: 'AppleTeam';
6942
7000
  id: string;
6943
7001
  appleTeamIdentifier: string;
6944
- appleTeamName?: string | null | undefined;
6945
- } | null | undefined;
7002
+ appleTeamName?: string | null;
7003
+ } | null;
6946
7004
  appleDevices: Array<{
6947
7005
  __typename?: 'AppleDevice';
6948
7006
  id: string;
6949
7007
  identifier: string;
6950
- name?: string | null | undefined;
6951
- model?: string | null | undefined;
6952
- deviceClass?: AppleDeviceClass | null | undefined;
7008
+ name?: string | null;
7009
+ model?: string | null;
7010
+ deviceClass?: AppleDeviceClass | null;
6953
7011
  }>;
6954
- } | null | undefined;
7012
+ } | null;
6955
7013
  };
6956
7014
  export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
6957
7015
  __typename?: 'IosAppCredentials';
@@ -6966,8 +7024,8 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
6966
7024
  __typename?: 'AppleTeam';
6967
7025
  id: string;
6968
7026
  appleTeamIdentifier: string;
6969
- appleTeamName?: string | null | undefined;
6970
- } | null | undefined;
7027
+ appleTeamName?: string | null;
7028
+ } | null;
6971
7029
  appleAppIdentifier: {
6972
7030
  __typename?: 'AppleAppIdentifier';
6973
7031
  id: string;
@@ -6982,8 +7040,8 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
6982
7040
  __typename?: 'AppleTeam';
6983
7041
  id: string;
6984
7042
  appleTeamIdentifier: string;
6985
- appleTeamName?: string | null | undefined;
6986
- } | null | undefined;
7043
+ appleTeamName?: string | null;
7044
+ } | null;
6987
7045
  iosAppCredentialsList: Array<{
6988
7046
  __typename?: 'IosAppCredentials';
6989
7047
  id: string;
@@ -6999,23 +7057,23 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
6999
7057
  bundleIdentifier: string;
7000
7058
  };
7001
7059
  }>;
7002
- } | null | undefined;
7060
+ } | null;
7003
7061
  appStoreConnectApiKeyForSubmissions?: {
7004
7062
  __typename?: 'AppStoreConnectApiKey';
7005
7063
  id: string;
7006
7064
  issuerIdentifier: string;
7007
7065
  keyIdentifier: string;
7008
- name?: string | null | undefined;
7009
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
7066
+ name?: string | null;
7067
+ roles?: Array<AppStoreConnectUserRole> | null;
7010
7068
  createdAt: any;
7011
7069
  updatedAt: any;
7012
7070
  appleTeam?: {
7013
7071
  __typename?: 'AppleTeam';
7014
7072
  id: string;
7015
7073
  appleTeamIdentifier: string;
7016
- appleTeamName?: string | null | undefined;
7017
- } | null | undefined;
7018
- } | null | undefined;
7074
+ appleTeamName?: string | null;
7075
+ } | null;
7076
+ } | null;
7019
7077
  };
7020
7078
  export declare type CommonIosAppCredentialsFragment = {
7021
7079
  __typename?: 'IosAppCredentials';
@@ -7027,10 +7085,10 @@ export declare type CommonIosAppCredentialsFragment = {
7027
7085
  distributionCertificate?: {
7028
7086
  __typename?: 'AppleDistributionCertificate';
7029
7087
  id: string;
7030
- certificateP12?: string | null | undefined;
7031
- certificatePassword?: string | null | undefined;
7088
+ certificateP12?: string | null;
7089
+ certificatePassword?: string | null;
7032
7090
  serialNumber: string;
7033
- developerPortalIdentifier?: string | null | undefined;
7091
+ developerPortalIdentifier?: string | null;
7034
7092
  validityNotBefore: any;
7035
7093
  validityNotAfter: any;
7036
7094
  updatedAt: any;
@@ -7038,8 +7096,8 @@ export declare type CommonIosAppCredentialsFragment = {
7038
7096
  __typename?: 'AppleTeam';
7039
7097
  id: string;
7040
7098
  appleTeamIdentifier: string;
7041
- appleTeamName?: string | null | undefined;
7042
- } | null | undefined;
7099
+ appleTeamName?: string | null;
7100
+ } | null;
7043
7101
  iosAppBuildCredentialsList: Array<{
7044
7102
  __typename?: 'IosAppBuildCredentials';
7045
7103
  id: string;
@@ -7061,33 +7119,33 @@ export declare type CommonIosAppCredentialsFragment = {
7061
7119
  provisioningProfile?: {
7062
7120
  __typename?: 'AppleProvisioningProfile';
7063
7121
  id: string;
7064
- developerPortalIdentifier?: string | null | undefined;
7065
- } | null | undefined;
7122
+ developerPortalIdentifier?: string | null;
7123
+ } | null;
7066
7124
  }>;
7067
- } | null | undefined;
7125
+ } | null;
7068
7126
  provisioningProfile?: {
7069
7127
  __typename?: 'AppleProvisioningProfile';
7070
7128
  id: string;
7071
7129
  expiration: any;
7072
- developerPortalIdentifier?: string | null | undefined;
7073
- provisioningProfile?: string | null | undefined;
7130
+ developerPortalIdentifier?: string | null;
7131
+ provisioningProfile?: string | null;
7074
7132
  updatedAt: any;
7075
7133
  status: string;
7076
7134
  appleTeam?: {
7077
7135
  __typename?: 'AppleTeam';
7078
7136
  id: string;
7079
7137
  appleTeamIdentifier: string;
7080
- appleTeamName?: string | null | undefined;
7081
- } | null | undefined;
7138
+ appleTeamName?: string | null;
7139
+ } | null;
7082
7140
  appleDevices: Array<{
7083
7141
  __typename?: 'AppleDevice';
7084
7142
  id: string;
7085
7143
  identifier: string;
7086
- name?: string | null | undefined;
7087
- model?: string | null | undefined;
7088
- deviceClass?: AppleDeviceClass | null | undefined;
7144
+ name?: string | null;
7145
+ model?: string | null;
7146
+ deviceClass?: AppleDeviceClass | null;
7089
7147
  }>;
7090
- } | null | undefined;
7148
+ } | null;
7091
7149
  }>;
7092
7150
  app: {
7093
7151
  __typename?: 'App';
@@ -7099,8 +7157,8 @@ export declare type CommonIosAppCredentialsFragment = {
7099
7157
  __typename?: 'AppleTeam';
7100
7158
  id: string;
7101
7159
  appleTeamIdentifier: string;
7102
- appleTeamName?: string | null | undefined;
7103
- } | null | undefined;
7160
+ appleTeamName?: string | null;
7161
+ } | null;
7104
7162
  appleAppIdentifier: {
7105
7163
  __typename?: 'AppleAppIdentifier';
7106
7164
  id: string;
@@ -7115,8 +7173,8 @@ export declare type CommonIosAppCredentialsFragment = {
7115
7173
  __typename?: 'AppleTeam';
7116
7174
  id: string;
7117
7175
  appleTeamIdentifier: string;
7118
- appleTeamName?: string | null | undefined;
7119
- } | null | undefined;
7176
+ appleTeamName?: string | null;
7177
+ } | null;
7120
7178
  iosAppCredentialsList: Array<{
7121
7179
  __typename?: 'IosAppCredentials';
7122
7180
  id: string;
@@ -7132,21 +7190,21 @@ export declare type CommonIosAppCredentialsFragment = {
7132
7190
  bundleIdentifier: string;
7133
7191
  };
7134
7192
  }>;
7135
- } | null | undefined;
7193
+ } | null;
7136
7194
  appStoreConnectApiKeyForSubmissions?: {
7137
7195
  __typename?: 'AppStoreConnectApiKey';
7138
7196
  id: string;
7139
7197
  issuerIdentifier: string;
7140
7198
  keyIdentifier: string;
7141
- name?: string | null | undefined;
7142
- roles?: Array<AppStoreConnectUserRole> | null | undefined;
7199
+ name?: string | null;
7200
+ roles?: Array<AppStoreConnectUserRole> | null;
7143
7201
  createdAt: any;
7144
7202
  updatedAt: any;
7145
7203
  appleTeam?: {
7146
7204
  __typename?: 'AppleTeam';
7147
7205
  id: string;
7148
7206
  appleTeamIdentifier: string;
7149
- appleTeamName?: string | null | undefined;
7150
- } | null | undefined;
7151
- } | null | undefined;
7207
+ appleTeamName?: string | null;
7208
+ } | null;
7209
+ } | null;
7152
7210
  };