eas-cli 2.0.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1034
- package/build/branch/queries.d.ts +10 -2
- package/build/branch/queries.js +27 -24
- package/build/branch/utils.d.ts +4 -0
- package/build/branch/utils.js +15 -0
- package/build/build/android/build.js +3 -3
- package/build/build/android/graphql.js +2 -1
- package/build/build/android/prepareJob.js +4 -3
- package/build/build/android/syncProjectConfiguration.d.ts +2 -1
- package/build/build/android/syncProjectConfiguration.js +2 -2
- package/build/build/build.js +15 -4
- package/build/build/configure.js +2 -2
- package/build/build/createContext.d.ts +5 -1
- package/build/build/createContext.js +8 -14
- package/build/build/ios/build.js +2 -1
- package/build/build/ios/credentials.js +1 -1
- package/build/build/ios/graphql.js +2 -1
- package/build/build/ios/prepareJob.js +4 -3
- package/build/build/ios/syncProjectConfiguration.d.ts +2 -1
- package/build/build/ios/syncProjectConfiguration.js +2 -2
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +1 -2
- package/build/build/queries.d.ts +9 -0
- package/build/build/queries.js +51 -0
- package/build/build/runBuildAndSubmit.d.ts +3 -1
- package/build/build/runBuildAndSubmit.js +15 -7
- package/build/build/utils/repository.js +5 -1
- package/build/channel/queries.d.ts +17 -0
- package/build/channel/queries.js +137 -0
- package/build/channel/utils.d.ts +22 -0
- package/build/channel/utils.js +87 -0
- package/build/commandUtils/EasCommand.d.ts +68 -7
- package/build/commandUtils/EasCommand.js +60 -79
- package/build/commandUtils/context/ActorContextField.d.ts +5 -0
- package/build/commandUtils/context/ActorContextField.js +11 -0
- package/build/commandUtils/context/ContextField.d.ts +6 -0
- package/build/commandUtils/context/ContextField.js +5 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +11 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.js +27 -0
- package/build/commandUtils/context/OptionalProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/OptionalProjectConfigContextField.js +37 -0
- package/build/commandUtils/context/ProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/ProjectConfigContextField.js +23 -0
- package/build/commandUtils/context/ProjectDirContextField.d.ts +4 -0
- package/build/commandUtils/context/ProjectDirContextField.js +11 -0
- package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.d.ts +21 -0
- package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.js +75 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.d.ts +17 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +102 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +24 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +108 -0
- package/build/commandUtils/flags.d.ts +10 -0
- package/build/commandUtils/flags.js +23 -0
- package/build/commandUtils/pagination.d.ts +7 -4
- package/build/commandUtils/pagination.js +11 -15
- package/build/commands/account/login.d.ts +0 -2
- package/build/commands/account/login.js +2 -7
- package/build/commands/account/logout.d.ts +0 -2
- package/build/commands/account/logout.js +0 -5
- package/build/commands/account/view.d.ts +0 -2
- package/build/commands/account/view.js +0 -5
- package/build/commands/analytics.d.ts +0 -1
- package/build/commands/analytics.js +0 -4
- package/build/commands/branch/create.d.ts +4 -0
- package/build/commands/branch/create.js +18 -18
- package/build/commands/branch/delete.d.ts +4 -0
- package/build/commands/branch/delete.js +29 -26
- package/build/commands/branch/list.d.ts +5 -2
- package/build/commands/branch/list.js +13 -8
- package/build/commands/branch/rename.d.ts +5 -1
- package/build/commands/branch/rename.js +15 -13
- package/build/commands/branch/view.d.ts +5 -2
- package/build/commands/branch/view.js +31 -13
- package/build/commands/build/cancel.d.ts +7 -0
- package/build/commands/build/cancel.js +50 -23
- package/build/commands/build/configure.d.ts +3 -0
- package/build/commands/build/configure.js +12 -7
- package/build/commands/build/index.d.ts +7 -2
- package/build/commands/build/index.js +77 -15
- package/build/commands/build/inspect.d.ts +5 -0
- package/build/commands/build/inspect.js +12 -3
- package/build/commands/build/list.d.ts +7 -2
- package/build/commands/build/list.js +36 -59
- package/build/commands/build/version/set.d.ts +5 -0
- package/build/commands/build/version/set.js +22 -14
- package/build/commands/build/version/sync.d.ts +5 -0
- package/build/commands/build/version/sync.js +22 -13
- package/build/commands/build/view.d.ts +3 -0
- package/build/commands/build/view.js +20 -14
- package/build/commands/channel/create.d.ts +4 -0
- package/build/commands/channel/create.js +32 -25
- package/build/commands/channel/delete.d.ts +3 -0
- package/build/commands/channel/delete.js +36 -59
- package/build/commands/channel/edit.d.ts +7 -7
- package/build/commands/channel/edit.js +39 -72
- package/build/commands/channel/list.d.ts +6 -0
- package/build/commands/channel/list.js +20 -76
- package/build/commands/channel/rollout.d.ts +5 -1
- package/build/commands/channel/rollout.js +34 -35
- package/build/commands/channel/view.d.ts +6 -33
- package/build/commands/channel/view.js +31 -132
- package/build/commands/config.d.ts +6 -2
- package/build/commands/config.js +22 -13
- package/build/commands/credentials.d.ts +4 -0
- package/build/commands/credentials.js +10 -1
- package/build/commands/device/create.d.ts +4 -0
- package/build/commands/device/create.js +15 -3
- package/build/commands/device/delete.d.ts +13 -8
- package/build/commands/device/delete.js +81 -129
- package/build/commands/device/list.d.ts +7 -0
- package/build/commands/device/list.js +42 -63
- package/build/commands/device/view.d.ts +3 -0
- package/build/commands/device/view.js +10 -5
- package/build/commands/diagnostics.d.ts +3 -1
- package/build/commands/diagnostics.js +10 -8
- package/build/commands/metadata/pull.d.ts +4 -0
- package/build/commands/metadata/pull.js +13 -8
- package/build/commands/metadata/push.d.ts +4 -0
- package/build/commands/metadata/push.js +13 -8
- package/build/commands/open.d.ts +8 -0
- package/build/commands/open.js +42 -0
- package/build/commands/project/info.d.ts +3 -0
- package/build/commands/project/info.js +9 -6
- package/build/commands/project/init.d.ts +12 -0
- package/build/commands/project/init.js +155 -8
- package/build/commands/secret/create.d.ts +6 -0
- package/build/commands/secret/create.js +87 -30
- package/build/commands/secret/delete.d.ts +4 -0
- package/build/commands/secret/delete.js +28 -19
- package/build/commands/secret/list.d.ts +3 -0
- package/build/commands/secret/list.js +19 -13
- package/build/commands/submit.d.ts +5 -0
- package/build/commands/submit.js +16 -7
- package/build/commands/update/configure.d.ts +3 -0
- package/build/commands/update/configure.js +24 -18
- package/build/commands/update/delete.d.ts +1 -0
- package/build/commands/update/delete.js +5 -8
- package/build/commands/update/index.d.ts +8 -12
- package/build/commands/update/index.js +90 -166
- package/build/commands/update/list.d.ts +8 -2
- package/build/commands/update/list.js +51 -81
- package/build/commands/update/view.d.ts +0 -4
- package/build/commands/update/view.js +14 -51
- package/build/commands/webhook/create.d.ts +4 -0
- package/build/commands/webhook/create.js +10 -5
- package/build/commands/webhook/delete.d.ts +6 -0
- package/build/commands/webhook/delete.js +26 -14
- package/build/commands/webhook/list.d.ts +3 -0
- package/build/commands/webhook/list.js +13 -9
- package/build/commands/webhook/update.d.ts +1 -0
- package/build/commands/webhook/update.js +3 -1
- package/build/credentials/android/actions/BuildCredentialsUtils.js +2 -6
- package/build/credentials/android/actions/CreateFcm.d.ts +2 -3
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/actions/CreateKeystore.d.ts +2 -3
- package/build/credentials/android/actions/CreateKeystore.js +1 -2
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/api/GraphqlClient.d.ts +6 -7
- package/build/credentials/context.d.ts +8 -4
- package/build/credentials/context.js +8 -23
- package/build/credentials/ios/IosCredentialsProvider.js +11 -6
- package/build/credentials/ios/actions/AppleTeamFormatting.d.ts +2 -0
- package/build/credentials/ios/actions/AppleTeamFormatting.js +7 -0
- package/build/credentials/ios/actions/AppleTeamUtils.d.ts +1 -2
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -5
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +3 -4
- package/build/credentials/ios/actions/AscApiKeyUtils.js +2 -2
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/AssignPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/BuildCredentialsUtils.d.ts +3 -3
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +8 -12
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.d.ts +4 -2
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +5 -2
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +2 -3
- package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +2 -2
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +4 -2
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +3 -2
- package/build/credentials/ios/actions/CreatePushKey.d.ts +2 -3
- package/build/credentials/ios/actions/DeviceUtils.d.ts +0 -1
- package/build/credentials/ios/actions/DeviceUtils.js +3 -19
- package/build/credentials/ios/actions/DistributionCertificateUtils.d.ts +3 -4
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +2 -2
- package/build/credentials/ios/actions/ProvisioningProfileUtils.d.ts +2 -1
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +4 -2
- package/build/credentials/ios/actions/PushKeyUtils.d.ts +2 -3
- package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +2 -3
- package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +3 -4
- package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/RemovePushKey.d.ts +2 -3
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +9 -3
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +30 -18
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpBuildCredentials.js +1 -0
- package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +9 -3
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.js +6 -12
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +4 -2
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +8 -5
- package/build/credentials/ios/actions/SetUpPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +3 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +5 -5
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +1 -1
- package/build/credentials/ios/api/GraphqlClient.d.ts +9 -15
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +2 -3
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +3 -1
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +3 -3
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +20 -6
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.d.ts +2 -2
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +8 -7
- package/build/credentials/ios/api/graphql/types/AppLookupParams.d.ts +7 -0
- package/build/credentials/ios/api/graphql/types/AppLookupParams.js +2 -0
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +7 -4
- package/build/credentials/ios/appstore/AppStoreApi.js +8 -8
- package/build/credentials/ios/appstore/Credentials.types.d.ts +0 -14
- package/build/credentials/ios/appstore/Credentials.types.js +0 -6
- package/build/credentials/ios/appstore/constants.d.ts +1 -0
- package/build/credentials/ios/appstore/constants.js +6 -0
- package/build/credentials/ios/appstore/distributionCertificate.js +1 -1
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +5 -3
- package/build/credentials/ios/appstore/provisioningProfile.js +30 -7
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +3 -1
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +10 -10
- package/build/credentials/ios/types.d.ts +2 -3
- package/build/credentials/ios/utils/printCredentials.d.ts +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.d.ts +3 -2
- package/build/credentials/ios/validators/validateProvisioningProfile.js +6 -4
- package/build/credentials/manager/HelperActions.d.ts +4 -1
- package/build/credentials/manager/ManageAndroid.js +4 -14
- package/build/credentials/manager/ManageIos.js +20 -20
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +1 -1
- package/build/credentials/manager/SelectBuildProfileFromEasJson.js +3 -3
- package/build/credentials/manager/SelectPlatform.d.ts +5 -1
- package/build/credentials/manager/SelectPlatform.js +5 -3
- package/build/devices/actions/create/action.d.ts +2 -3
- package/build/devices/actions/create/developerPortalMethod.js +2 -2
- package/build/devices/context.d.ts +3 -5
- package/build/devices/context.js +2 -11
- package/build/devices/manager.d.ts +4 -5
- package/build/devices/manager.js +9 -16
- package/build/devices/queries.d.ts +21 -0
- package/build/devices/queries.js +121 -0
- package/build/devices/utils/errors.d.ts +3 -0
- package/build/devices/utils/errors.js +9 -0
- package/build/devices/utils/formatDevice.d.ts +3 -3
- package/build/devices/utils/formatDevice.js +8 -3
- package/build/graphql/generated.d.ts +1141 -192
- package/build/graphql/generated.js +13 -2
- package/build/graphql/mutations/EnvironmentSecretMutation.d.ts +3 -1
- package/build/graphql/queries/AppQuery.d.ts +1 -0
- package/build/graphql/queries/AppQuery.js +19 -0
- package/build/graphql/queries/BranchQuery.d.ts +5 -6
- package/build/graphql/queries/BranchQuery.js +44 -3
- package/build/graphql/queries/BuildQuery.d.ts +2 -20
- package/build/graphql/queries/BuildQuery.js +2 -2
- package/build/graphql/queries/ChannelQuery.d.ts +5 -2
- package/build/graphql/queries/ChannelQuery.js +45 -19
- package/build/graphql/queries/EnvironmentSecretsQuery.d.ts +5 -3
- package/build/graphql/queries/EnvironmentSecretsQuery.js +14 -28
- package/build/graphql/queries/UpdateQuery.d.ts +4 -6
- package/build/graphql/queries/UpdateQuery.js +59 -50
- package/build/graphql/queries/UserQuery.js +8 -1
- package/build/graphql/types/Account.d.ts +1 -0
- package/build/graphql/types/Account.js +17 -0
- package/build/graphql/types/App.js +7 -0
- package/build/graphql/types/EnvironmentSecret.d.ts +7 -0
- package/build/graphql/types/EnvironmentSecret.js +16 -1
- package/build/graphql/types/Update.d.ts +1 -0
- package/build/graphql/types/Update.js +30 -0
- package/build/graphql/types/UpdateBranch.js +4 -15
- package/build/metadata/context.d.ts +1 -1
- package/build/metadata/context.js +7 -9
- package/build/project/android/applicationId.d.ts +2 -1
- package/build/project/android/applicationId.js +7 -7
- package/build/project/android/versions.js +1 -1
- package/build/project/applicationIdentifier.d.ts +2 -1
- package/build/project/applicationIdentifier.js +2 -2
- package/build/project/expoConfig.d.ts +3 -3
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.d.ts +22 -0
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +93 -0
- package/build/project/ios/bundleIdentifier.d.ts +2 -1
- package/build/project/ios/bundleIdentifier.js +7 -7
- package/build/project/ios/scheme.d.ts +1 -1
- package/build/project/ios/target.d.ts +7 -0
- package/build/project/ios/target.js +26 -1
- package/build/project/projectUtils.d.ts +4 -31
- package/build/project/projectUtils.js +13 -123
- package/build/project/remoteVersionSource.d.ts +2 -2
- package/build/project/remoteVersionSource.js +8 -7
- package/build/project/workflow.js +3 -1
- package/build/submit/android/ServiceAccountSource.js +1 -2
- package/build/submit/context.d.ts +3 -1
- package/build/submit/context.js +12 -14
- package/build/submit/ios/CredentialsServiceSource.js +1 -2
- package/build/submit/utils/builds.js +3 -1
- package/build/update/android/UpdatesModule.d.ts +1 -1
- package/build/update/android/UpdatesModule.js +2 -3
- package/build/update/ios/UpdatesModule.d.ts +1 -1
- package/build/update/ios/UpdatesModule.js +2 -3
- package/build/update/queries.d.ts +16 -1
- package/build/update/queries.js +96 -30
- package/build/update/utils.d.ts +21 -8
- package/build/update/utils.js +75 -14
- package/build/user/actions.d.ts +2 -8
- package/build/user/actions.js +4 -63
- package/build/utils/profiles.d.ts +3 -3
- package/build/utils/profiles.js +6 -5
- package/build/vcs/clients/git.d.ts +1 -1
- package/build/vcs/clients/git.js +5 -2
- package/build/vcs/clients/gitNoCommit.js +2 -1
- package/build/vcs/vcs.d.ts +1 -1
- package/build/webhooks/input.d.ts +2 -1
- package/build/webhooks/input.js +10 -1
- package/oclif.manifest.json +1 -1
- package/package.json +6 -5
- package/build/project/ensureProjectExists.d.ts +0 -21
- package/build/project/ensureProjectExists.js +0 -88
- package/build/user/Account.d.ts +0 -3
- package/build/user/Account.js +0 -7
|
@@ -158,6 +158,8 @@ export declare type AccountAppleAppIdentifiersArgs = {
|
|
|
158
158
|
*/
|
|
159
159
|
export declare type AccountAppleDevicesArgs = {
|
|
160
160
|
identifier?: InputMaybe<Scalars['String']>;
|
|
161
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
162
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
161
163
|
};
|
|
162
164
|
/**
|
|
163
165
|
* An account is a container owning projects, credentials, billing and other organization
|
|
@@ -172,6 +174,8 @@ export declare type AccountAppleProvisioningProfilesArgs = {
|
|
|
172
174
|
*/
|
|
173
175
|
export declare type AccountAppleTeamsArgs = {
|
|
174
176
|
appleTeamIdentifier?: InputMaybe<Scalars['String']>;
|
|
177
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
178
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
175
179
|
};
|
|
176
180
|
/**
|
|
177
181
|
* An account is a container owning projects, credentials, billing and other organization
|
|
@@ -654,7 +658,10 @@ export declare type AndroidJobBuildCredentialsInput = {
|
|
|
654
658
|
keystore: AndroidJobKeystoreInput;
|
|
655
659
|
};
|
|
656
660
|
export declare type AndroidJobInput = {
|
|
661
|
+
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
662
|
+
/** @deprecated */
|
|
657
663
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
664
|
+
buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;
|
|
658
665
|
buildType?: InputMaybe<AndroidBuildType>;
|
|
659
666
|
builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;
|
|
660
667
|
cache?: InputMaybe<BuildCacheInput>;
|
|
@@ -677,7 +684,10 @@ export declare type AndroidJobKeystoreInput = {
|
|
|
677
684
|
keystorePassword: Scalars['String'];
|
|
678
685
|
};
|
|
679
686
|
export declare type AndroidJobOverridesInput = {
|
|
687
|
+
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
688
|
+
/** @deprecated */
|
|
680
689
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
690
|
+
buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;
|
|
681
691
|
buildType?: InputMaybe<AndroidBuildType>;
|
|
682
692
|
builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;
|
|
683
693
|
cache?: InputMaybe<BuildCacheInput>;
|
|
@@ -784,6 +794,8 @@ export declare type App = Project & {
|
|
|
784
794
|
/** Environment secrets for an app */
|
|
785
795
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
786
796
|
fullName: Scalars['String'];
|
|
797
|
+
githubRepository?: Maybe<GitHubRepository>;
|
|
798
|
+
githubRepositorySettings?: Maybe<GitHubRepositorySettings>;
|
|
787
799
|
/** githubUrl field from most recent classic update manifest */
|
|
788
800
|
githubUrl?: Maybe<Scalars['String']>;
|
|
789
801
|
/** Info about the icon specified in the most recent classic update manifest */
|
|
@@ -840,6 +852,8 @@ export declare type App = Project & {
|
|
|
840
852
|
updateChannelByName?: Maybe<UpdateChannel>;
|
|
841
853
|
/** EAS channels owned by an app */
|
|
842
854
|
updateChannels: Array<UpdateChannel>;
|
|
855
|
+
/** EAS updates owned by an app grouped by update group */
|
|
856
|
+
updateGroups: Array<Array<Update>>;
|
|
843
857
|
/** Time of last classic update publish */
|
|
844
858
|
updated: Scalars['DateTime'];
|
|
845
859
|
/** EAS updates owned by an app */
|
|
@@ -854,6 +868,7 @@ export declare type App = Project & {
|
|
|
854
868
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
855
869
|
export declare type AppActivityTimelineProjectActivitiesArgs = {
|
|
856
870
|
createdBefore?: InputMaybe<Scalars['DateTime']>;
|
|
871
|
+
filterChannels?: InputMaybe<Array<Scalars['String']>>;
|
|
857
872
|
filterPlatforms?: InputMaybe<Array<AppPlatform>>;
|
|
858
873
|
filterReleaseChannels?: InputMaybe<Array<Scalars['String']>>;
|
|
859
874
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
@@ -942,6 +957,12 @@ export declare type AppUpdateChannelsArgs = {
|
|
|
942
957
|
offset: Scalars['Int'];
|
|
943
958
|
};
|
|
944
959
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
960
|
+
export declare type AppUpdateGroupsArgs = {
|
|
961
|
+
filter?: InputMaybe<UpdatesFilter>;
|
|
962
|
+
limit: Scalars['Int'];
|
|
963
|
+
offset: Scalars['Int'];
|
|
964
|
+
};
|
|
965
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
945
966
|
export declare type AppUpdatesArgs = {
|
|
946
967
|
limit: Scalars['Int'];
|
|
947
968
|
offset: Scalars['Int'];
|
|
@@ -1351,6 +1372,10 @@ export declare type AppleTeam = {
|
|
|
1351
1372
|
export declare type AppleTeamAppleAppIdentifiersArgs = {
|
|
1352
1373
|
bundleIdentifier?: InputMaybe<Scalars['String']>;
|
|
1353
1374
|
};
|
|
1375
|
+
export declare type AppleTeamAppleDevicesArgs = {
|
|
1376
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
1377
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
1378
|
+
};
|
|
1354
1379
|
export declare type AppleTeamAppleProvisioningProfilesArgs = {
|
|
1355
1380
|
appleAppIdentifierId?: InputMaybe<Scalars['ID']>;
|
|
1356
1381
|
};
|
|
@@ -1423,6 +1448,7 @@ export declare type Billing = {
|
|
|
1423
1448
|
/** History of invoices */
|
|
1424
1449
|
charges?: Maybe<Array<Maybe<Charge>>>;
|
|
1425
1450
|
id: Scalars['ID'];
|
|
1451
|
+
/** @deprecated No longer used */
|
|
1426
1452
|
payment?: Maybe<PaymentDetails>;
|
|
1427
1453
|
subscription?: Maybe<SubscriptionDetails>;
|
|
1428
1454
|
};
|
|
@@ -1493,6 +1519,8 @@ export declare type BuildArtifact = {
|
|
|
1493
1519
|
};
|
|
1494
1520
|
export declare type BuildArtifacts = {
|
|
1495
1521
|
__typename?: 'BuildArtifacts';
|
|
1522
|
+
applicationArchiveUrl?: Maybe<Scalars['String']>;
|
|
1523
|
+
buildArtifactsUrl?: Maybe<Scalars['String']>;
|
|
1496
1524
|
buildUrl?: Maybe<Scalars['String']>;
|
|
1497
1525
|
xcodeBuildLogsUrl?: Maybe<Scalars['String']>;
|
|
1498
1526
|
};
|
|
@@ -1682,6 +1710,14 @@ export declare type BuildMutationRetryIosBuildArgs = {
|
|
|
1682
1710
|
export declare type BuildOrBuildJob = {
|
|
1683
1711
|
id: Scalars['ID'];
|
|
1684
1712
|
};
|
|
1713
|
+
export declare type BuildOrBuildJobQuery = {
|
|
1714
|
+
__typename?: 'BuildOrBuildJobQuery';
|
|
1715
|
+
/** Look up EAS Build or Classic Build Job by ID */
|
|
1716
|
+
byId: EasBuildOrClassicBuildJob;
|
|
1717
|
+
};
|
|
1718
|
+
export declare type BuildOrBuildJobQueryByIdArgs = {
|
|
1719
|
+
buildOrBuildJobId: Scalars['ID'];
|
|
1720
|
+
};
|
|
1685
1721
|
export declare type BuildParamsInput = {
|
|
1686
1722
|
resourceClass: BuildResourceClass;
|
|
1687
1723
|
};
|
|
@@ -1843,12 +1879,23 @@ export declare type CreateBuildResult = {
|
|
|
1843
1879
|
};
|
|
1844
1880
|
export declare type CreateEnvironmentSecretInput = {
|
|
1845
1881
|
name: Scalars['String'];
|
|
1882
|
+
type?: InputMaybe<EnvironmentSecretType>;
|
|
1846
1883
|
value: Scalars['String'];
|
|
1847
1884
|
};
|
|
1848
1885
|
export declare type CreateGitHubAppInstallationInput = {
|
|
1849
1886
|
accountId: Scalars['ID'];
|
|
1850
1887
|
installationIdentifier: Scalars['Int'];
|
|
1851
1888
|
};
|
|
1889
|
+
export declare type CreateGitHubRepositoryInput = {
|
|
1890
|
+
appId: Scalars['ID'];
|
|
1891
|
+
githubAppInstallationId: Scalars['ID'];
|
|
1892
|
+
githubRepositoryIdentifier: Scalars['Int'];
|
|
1893
|
+
};
|
|
1894
|
+
export declare type CreateGitHubRepositorySettingsInput = {
|
|
1895
|
+
appId: Scalars['ID'];
|
|
1896
|
+
/** The base directory is the directory to change to before starting a build. This string should be a properly formatted Unix path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository. */
|
|
1897
|
+
baseDirectory: Scalars['String'];
|
|
1898
|
+
};
|
|
1852
1899
|
export declare type CreateIosSubmissionInput = {
|
|
1853
1900
|
appId: Scalars['ID'];
|
|
1854
1901
|
archiveUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -1921,6 +1968,10 @@ export declare type DeleteWebhookResult = {
|
|
|
1921
1968
|
__typename?: 'DeleteWebhookResult';
|
|
1922
1969
|
id: Scalars['ID'];
|
|
1923
1970
|
};
|
|
1971
|
+
export declare type DeployServerlessFunctionResult = {
|
|
1972
|
+
__typename?: 'DeployServerlessFunctionResult';
|
|
1973
|
+
url: Scalars['String'];
|
|
1974
|
+
};
|
|
1924
1975
|
/** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
|
|
1925
1976
|
export declare type Deployment = {
|
|
1926
1977
|
__typename?: 'Deployment';
|
|
@@ -1953,6 +2004,7 @@ export declare enum EasBuildDeprecationInfoType {
|
|
|
1953
2004
|
Internal = "INTERNAL",
|
|
1954
2005
|
UserFacing = "USER_FACING"
|
|
1955
2006
|
}
|
|
2007
|
+
export declare type EasBuildOrClassicBuildJob = Build | BuildJob;
|
|
1956
2008
|
export declare enum EasServiceMetric {
|
|
1957
2009
|
AssetsRequests = "ASSETS_REQUESTS",
|
|
1958
2010
|
BandwidthUsage = "BANDWIDTH_USAGE",
|
|
@@ -1979,6 +2031,7 @@ export declare type EnvironmentSecret = {
|
|
|
1979
2031
|
createdAt: Scalars['DateTime'];
|
|
1980
2032
|
id: Scalars['ID'];
|
|
1981
2033
|
name: Scalars['String'];
|
|
2034
|
+
type: EnvironmentSecretType;
|
|
1982
2035
|
updatedAt: Scalars['DateTime'];
|
|
1983
2036
|
};
|
|
1984
2037
|
export declare type EnvironmentSecretMutation = {
|
|
@@ -2001,6 +2054,10 @@ export declare type EnvironmentSecretMutationCreateEnvironmentSecretForAppArgs =
|
|
|
2001
2054
|
export declare type EnvironmentSecretMutationDeleteEnvironmentSecretArgs = {
|
|
2002
2055
|
id: Scalars['String'];
|
|
2003
2056
|
};
|
|
2057
|
+
export declare enum EnvironmentSecretType {
|
|
2058
|
+
FileBase64 = "FILE_BASE64",
|
|
2059
|
+
String = "STRING"
|
|
2060
|
+
}
|
|
2004
2061
|
export declare type ExperimentationQuery = {
|
|
2005
2062
|
__typename?: 'ExperimentationQuery';
|
|
2006
2063
|
/** Get device experimentation config */
|
|
@@ -2047,10 +2104,32 @@ export declare type GetSignedAssetUploadSpecificationsResult = {
|
|
|
2047
2104
|
};
|
|
2048
2105
|
export declare type GitHubAppInstallation = {
|
|
2049
2106
|
__typename?: 'GitHubAppInstallation';
|
|
2107
|
+
accessibleRepositories: Array<GitHubAppInstallationAccessibleRepository>;
|
|
2050
2108
|
account: Account;
|
|
2051
2109
|
actor?: Maybe<Actor>;
|
|
2052
2110
|
id: Scalars['ID'];
|
|
2053
2111
|
installationIdentifier: Scalars['Int'];
|
|
2112
|
+
metadata: GitHubAppInstallationMetadata;
|
|
2113
|
+
};
|
|
2114
|
+
export declare type GitHubAppInstallationAccessibleRepositoriesArgs = {
|
|
2115
|
+
page?: InputMaybe<Scalars['Int']>;
|
|
2116
|
+
perPage?: InputMaybe<Scalars['Int']>;
|
|
2117
|
+
};
|
|
2118
|
+
export declare type GitHubAppInstallationAccessibleRepository = {
|
|
2119
|
+
__typename?: 'GitHubAppInstallationAccessibleRepository';
|
|
2120
|
+
defaultBranch: Scalars['String'];
|
|
2121
|
+
description?: Maybe<Scalars['String']>;
|
|
2122
|
+
id: Scalars['Int'];
|
|
2123
|
+
name: Scalars['String'];
|
|
2124
|
+
owner: GitHubRepositoryOwner;
|
|
2125
|
+
private: Scalars['Boolean'];
|
|
2126
|
+
url: Scalars['String'];
|
|
2127
|
+
};
|
|
2128
|
+
export declare type GitHubAppInstallationMetadata = {
|
|
2129
|
+
__typename?: 'GitHubAppInstallationMetadata';
|
|
2130
|
+
githubAccountAvatarUrl?: Maybe<Scalars['String']>;
|
|
2131
|
+
githubAccountName?: Maybe<Scalars['String']>;
|
|
2132
|
+
installationStatus: GitHubAppInstallationStatus;
|
|
2054
2133
|
};
|
|
2055
2134
|
export declare type GitHubAppInstallationMutation = {
|
|
2056
2135
|
__typename?: 'GitHubAppInstallationMutation';
|
|
@@ -2065,10 +2144,85 @@ export declare type GitHubAppInstallationMutationCreateGitHubAppInstallationForA
|
|
|
2065
2144
|
export declare type GitHubAppInstallationMutationDeleteGitHubAppInstallationArgs = {
|
|
2066
2145
|
githubAppInstallationId: Scalars['ID'];
|
|
2067
2146
|
};
|
|
2147
|
+
export declare enum GitHubAppInstallationStatus {
|
|
2148
|
+
Active = "ACTIVE",
|
|
2149
|
+
NotInstalled = "NOT_INSTALLED",
|
|
2150
|
+
Suspended = "SUSPENDED"
|
|
2151
|
+
}
|
|
2068
2152
|
export declare type GitHubAppQuery = {
|
|
2069
2153
|
__typename?: 'GitHubAppQuery';
|
|
2070
2154
|
appIdentifier: Scalars['String'];
|
|
2071
2155
|
clientIdentifier: Scalars['String'];
|
|
2156
|
+
searchRepositories: Array<GitHubAppInstallationAccessibleRepository>;
|
|
2157
|
+
};
|
|
2158
|
+
export declare type GitHubAppQuerySearchRepositoriesArgs = {
|
|
2159
|
+
githubAppInstallationId: Scalars['ID'];
|
|
2160
|
+
page?: InputMaybe<Scalars['Int']>;
|
|
2161
|
+
perPage?: InputMaybe<Scalars['Int']>;
|
|
2162
|
+
query: Scalars['String'];
|
|
2163
|
+
};
|
|
2164
|
+
export declare type GitHubRepository = {
|
|
2165
|
+
__typename?: 'GitHubRepository';
|
|
2166
|
+
app: App;
|
|
2167
|
+
githubAppInstallation: GitHubAppInstallation;
|
|
2168
|
+
githubRepositoryIdentifier: Scalars['Int'];
|
|
2169
|
+
id: Scalars['ID'];
|
|
2170
|
+
metadata?: Maybe<GitHubRepositoryMetadata>;
|
|
2171
|
+
};
|
|
2172
|
+
export declare type GitHubRepositoryMetadata = {
|
|
2173
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
2174
|
+
githubRepoDescription?: Maybe<Scalars['String']>;
|
|
2175
|
+
githubRepoName: Scalars['String'];
|
|
2176
|
+
githubRepoOwnerName: Scalars['String'];
|
|
2177
|
+
githubRepoUrl: Scalars['String'];
|
|
2178
|
+
lastPushed: Scalars['DateTime'];
|
|
2179
|
+
lastUpdated: Scalars['DateTime'];
|
|
2180
|
+
private: Scalars['Boolean'];
|
|
2181
|
+
};
|
|
2182
|
+
export declare type GitHubRepositoryMutation = {
|
|
2183
|
+
__typename?: 'GitHubRepositoryMutation';
|
|
2184
|
+
/** Create a GitHub repository for an App */
|
|
2185
|
+
createGitHubRepository: GitHubRepository;
|
|
2186
|
+
/** Delete a GitHub repository by ID */
|
|
2187
|
+
deleteGitHubRepository: GitHubRepository;
|
|
2188
|
+
};
|
|
2189
|
+
export declare type GitHubRepositoryMutationCreateGitHubRepositoryArgs = {
|
|
2190
|
+
githubRepositoryData: CreateGitHubRepositoryInput;
|
|
2191
|
+
};
|
|
2192
|
+
export declare type GitHubRepositoryMutationDeleteGitHubRepositoryArgs = {
|
|
2193
|
+
githubRepositoryId: Scalars['ID'];
|
|
2194
|
+
};
|
|
2195
|
+
export declare type GitHubRepositoryOwner = {
|
|
2196
|
+
__typename?: 'GitHubRepositoryOwner';
|
|
2197
|
+
avatarUrl: Scalars['String'];
|
|
2198
|
+
id: Scalars['Int'];
|
|
2199
|
+
login: Scalars['String'];
|
|
2200
|
+
url: Scalars['String'];
|
|
2201
|
+
};
|
|
2202
|
+
export declare type GitHubRepositorySettings = {
|
|
2203
|
+
__typename?: 'GitHubRepositorySettings';
|
|
2204
|
+
app: App;
|
|
2205
|
+
baseDirectory: Scalars['String'];
|
|
2206
|
+
id: Scalars['ID'];
|
|
2207
|
+
};
|
|
2208
|
+
export declare type GitHubRepositorySettingsMutation = {
|
|
2209
|
+
__typename?: 'GitHubRepositorySettingsMutation';
|
|
2210
|
+
/** Create GitHub repository settings for an App */
|
|
2211
|
+
createGitHubRepositorySettings: GitHubRepositorySettings;
|
|
2212
|
+
/** Delete GitHub repository settings by ID */
|
|
2213
|
+
deleteGitHubRepositorySettings: GitHubRepositorySettings;
|
|
2214
|
+
/** Update GitHub repository settings */
|
|
2215
|
+
updateGitHubRepositorySettings: GitHubRepositorySettings;
|
|
2216
|
+
};
|
|
2217
|
+
export declare type GitHubRepositorySettingsMutationCreateGitHubRepositorySettingsArgs = {
|
|
2218
|
+
githubRepositorySettingsData: CreateGitHubRepositorySettingsInput;
|
|
2219
|
+
};
|
|
2220
|
+
export declare type GitHubRepositorySettingsMutationDeleteGitHubRepositorySettingsArgs = {
|
|
2221
|
+
githubRepositorySettingsId: Scalars['ID'];
|
|
2222
|
+
};
|
|
2223
|
+
export declare type GitHubRepositorySettingsMutationUpdateGitHubRepositorySettingsArgs = {
|
|
2224
|
+
githubRepositorySettingsData: UpdateGitHubRepositorySettingsInput;
|
|
2225
|
+
githubRepositorySettingsId: Scalars['ID'];
|
|
2072
2226
|
};
|
|
2073
2227
|
export declare type GoogleServiceAccountKey = {
|
|
2074
2228
|
__typename?: 'GoogleServiceAccountKey';
|
|
@@ -2274,7 +2428,10 @@ export declare type IosJobDistributionCertificateInput = {
|
|
|
2274
2428
|
password: Scalars['String'];
|
|
2275
2429
|
};
|
|
2276
2430
|
export declare type IosJobInput = {
|
|
2431
|
+
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
2432
|
+
/** @deprecated */
|
|
2277
2433
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
2434
|
+
buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;
|
|
2278
2435
|
buildConfiguration?: InputMaybe<Scalars['String']>;
|
|
2279
2436
|
/** @deprecated */
|
|
2280
2437
|
buildType?: InputMaybe<IosBuildType>;
|
|
@@ -2296,7 +2453,10 @@ export declare type IosJobInput = {
|
|
|
2296
2453
|
version?: InputMaybe<IosJobVersionInput>;
|
|
2297
2454
|
};
|
|
2298
2455
|
export declare type IosJobOverridesInput = {
|
|
2456
|
+
applicationArchivePath?: InputMaybe<Scalars['String']>;
|
|
2457
|
+
/** @deprecated */
|
|
2299
2458
|
artifactPath?: InputMaybe<Scalars['String']>;
|
|
2459
|
+
buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;
|
|
2300
2460
|
buildConfiguration?: InputMaybe<Scalars['String']>;
|
|
2301
2461
|
/** @deprecated */
|
|
2302
2462
|
buildType?: InputMaybe<IosBuildType>;
|
|
@@ -2570,6 +2730,7 @@ export declare type ProjectQueryByUsernameAndSlugArgs = {
|
|
|
2570
2730
|
};
|
|
2571
2731
|
export declare type PublicArtifacts = {
|
|
2572
2732
|
__typename?: 'PublicArtifacts';
|
|
2733
|
+
applicationArchiveUrl?: Maybe<Scalars['String']>;
|
|
2573
2734
|
buildUrl?: Maybe<Scalars['String']>;
|
|
2574
2735
|
};
|
|
2575
2736
|
export declare type PublishUpdateGroupInput = {
|
|
@@ -2690,6 +2851,10 @@ export declare type RootMutation = {
|
|
|
2690
2851
|
environmentSecret: EnvironmentSecretMutation;
|
|
2691
2852
|
/** Mutations for GitHub App installations */
|
|
2692
2853
|
githubAppInstallation: GitHubAppInstallationMutation;
|
|
2854
|
+
/** Mutations for GitHub repositories */
|
|
2855
|
+
githubRepository: GitHubRepositoryMutation;
|
|
2856
|
+
/** Mutations for GitHub repository settings */
|
|
2857
|
+
githubRepositorySettings: GitHubRepositorySettingsMutation;
|
|
2693
2858
|
/** Mutations that modify a Google Service Account Key */
|
|
2694
2859
|
googleServiceAccountKey: GoogleServiceAccountKeyMutation;
|
|
2695
2860
|
/** Mutations that modify the build credentials for an iOS app */
|
|
@@ -2755,6 +2920,7 @@ export declare type RootQuery = {
|
|
|
2755
2920
|
appleTeam: AppleTeamQuery;
|
|
2756
2921
|
asset: AssetQuery;
|
|
2757
2922
|
buildJobs: BuildJobQuery;
|
|
2923
|
+
buildOrBuildJob: BuildOrBuildJobQuery;
|
|
2758
2924
|
/** Top-level query object for querying BuildPublicData publicly. */
|
|
2759
2925
|
buildPublicData: BuildPublicDataQuery;
|
|
2760
2926
|
builds: BuildQuery;
|
|
@@ -2852,8 +3018,13 @@ export declare type ServerlessFunctionIdentifierInput = {
|
|
|
2852
3018
|
};
|
|
2853
3019
|
export declare type ServerlessFunctionMutation = {
|
|
2854
3020
|
__typename?: 'ServerlessFunctionMutation';
|
|
3021
|
+
createDeployment: DeployServerlessFunctionResult;
|
|
2855
3022
|
createUploadPresignedUrl: CreateServerlessFunctionUploadUrlResult;
|
|
2856
3023
|
};
|
|
3024
|
+
export declare type ServerlessFunctionMutationCreateDeploymentArgs = {
|
|
3025
|
+
appId: Scalars['ID'];
|
|
3026
|
+
serverlessFunctionIdentifierInput: ServerlessFunctionIdentifierInput;
|
|
3027
|
+
};
|
|
2857
3028
|
export declare type ServerlessFunctionMutationCreateUploadPresignedUrlArgs = {
|
|
2858
3029
|
appId: Scalars['ID'];
|
|
2859
3030
|
serverlessFunctionIdentifierInput: ServerlessFunctionIdentifierInput;
|
|
@@ -3136,9 +3307,15 @@ export declare type UpdateBranch = {
|
|
|
3136
3307
|
createdAt: Scalars['DateTime'];
|
|
3137
3308
|
id: Scalars['ID'];
|
|
3138
3309
|
name: Scalars['String'];
|
|
3310
|
+
updateGroups: Array<Array<Update>>;
|
|
3139
3311
|
updatedAt: Scalars['DateTime'];
|
|
3140
3312
|
updates: Array<Update>;
|
|
3141
3313
|
};
|
|
3314
|
+
export declare type UpdateBranchUpdateGroupsArgs = {
|
|
3315
|
+
filter?: InputMaybe<UpdatesFilter>;
|
|
3316
|
+
limit: Scalars['Int'];
|
|
3317
|
+
offset: Scalars['Int'];
|
|
3318
|
+
};
|
|
3142
3319
|
export declare type UpdateBranchUpdatesArgs = {
|
|
3143
3320
|
filter?: InputMaybe<UpdatesFilter>;
|
|
3144
3321
|
limit: Scalars['Int'];
|
|
@@ -3216,6 +3393,9 @@ export declare type UpdateChannelMutationEditUpdateChannelArgs = {
|
|
|
3216
3393
|
branchMapping: Scalars['String'];
|
|
3217
3394
|
channelId: Scalars['ID'];
|
|
3218
3395
|
};
|
|
3396
|
+
export declare type UpdateGitHubRepositorySettingsInput = {
|
|
3397
|
+
baseDirectory: Scalars['String'];
|
|
3398
|
+
};
|
|
3219
3399
|
export declare type UpdateInfoGroup = {
|
|
3220
3400
|
android?: InputMaybe<PartialManifest>;
|
|
3221
3401
|
ios?: InputMaybe<PartialManifest>;
|
|
@@ -3646,25 +3826,6 @@ export declare type CreateUpdateChannelOnAppMutation = {
|
|
|
3646
3826
|
};
|
|
3647
3827
|
};
|
|
3648
3828
|
};
|
|
3649
|
-
export declare type GetChannelInfoQueryVariables = Exact<{
|
|
3650
|
-
appId: Scalars['String'];
|
|
3651
|
-
name: Scalars['String'];
|
|
3652
|
-
}>;
|
|
3653
|
-
export declare type GetChannelInfoQuery = {
|
|
3654
|
-
__typename?: 'RootQuery';
|
|
3655
|
-
app: {
|
|
3656
|
-
__typename?: 'AppQuery';
|
|
3657
|
-
byId: {
|
|
3658
|
-
__typename?: 'App';
|
|
3659
|
-
id: string;
|
|
3660
|
-
updateChannelByName?: {
|
|
3661
|
-
__typename?: 'UpdateChannel';
|
|
3662
|
-
id: string;
|
|
3663
|
-
name: string;
|
|
3664
|
-
} | null;
|
|
3665
|
-
};
|
|
3666
|
-
};
|
|
3667
|
-
};
|
|
3668
3829
|
export declare type DeleteUpdateChannelMutationVariables = Exact<{
|
|
3669
3830
|
channelId: Scalars['ID'];
|
|
3670
3831
|
}>;
|
|
@@ -3678,30 +3839,6 @@ export declare type DeleteUpdateChannelMutation = {
|
|
|
3678
3839
|
};
|
|
3679
3840
|
};
|
|
3680
3841
|
};
|
|
3681
|
-
export declare type GetChannelByNameToEditQueryVariables = Exact<{
|
|
3682
|
-
appId: Scalars['String'];
|
|
3683
|
-
channelName: Scalars['String'];
|
|
3684
|
-
}>;
|
|
3685
|
-
export declare type GetChannelByNameToEditQuery = {
|
|
3686
|
-
__typename?: 'RootQuery';
|
|
3687
|
-
app: {
|
|
3688
|
-
__typename?: 'AppQuery';
|
|
3689
|
-
byId: {
|
|
3690
|
-
__typename?: 'App';
|
|
3691
|
-
id: string;
|
|
3692
|
-
updateChannelByName?: {
|
|
3693
|
-
__typename?: 'UpdateChannel';
|
|
3694
|
-
id: string;
|
|
3695
|
-
name: string;
|
|
3696
|
-
updateBranches: Array<{
|
|
3697
|
-
__typename?: 'UpdateBranch';
|
|
3698
|
-
id: string;
|
|
3699
|
-
name: string;
|
|
3700
|
-
}>;
|
|
3701
|
-
} | null;
|
|
3702
|
-
};
|
|
3703
|
-
};
|
|
3704
|
-
};
|
|
3705
3842
|
export declare type UpdateChannelBranchMappingMutationVariables = Exact<{
|
|
3706
3843
|
channelId: Scalars['ID'];
|
|
3707
3844
|
branchMapping: Scalars['String'];
|
|
@@ -3718,50 +3855,6 @@ export declare type UpdateChannelBranchMappingMutation = {
|
|
|
3718
3855
|
};
|
|
3719
3856
|
};
|
|
3720
3857
|
};
|
|
3721
|
-
export declare type GetAllChannelsForAppQueryVariables = Exact<{
|
|
3722
|
-
appId: Scalars['String'];
|
|
3723
|
-
offset: Scalars['Int'];
|
|
3724
|
-
limit: Scalars['Int'];
|
|
3725
|
-
}>;
|
|
3726
|
-
export declare type GetAllChannelsForAppQuery = {
|
|
3727
|
-
__typename?: 'RootQuery';
|
|
3728
|
-
app: {
|
|
3729
|
-
__typename?: 'AppQuery';
|
|
3730
|
-
byId: {
|
|
3731
|
-
__typename?: 'App';
|
|
3732
|
-
id: string;
|
|
3733
|
-
updateChannels: Array<{
|
|
3734
|
-
__typename?: 'UpdateChannel';
|
|
3735
|
-
id: string;
|
|
3736
|
-
name: string;
|
|
3737
|
-
branchMapping: string;
|
|
3738
|
-
updateBranches: Array<{
|
|
3739
|
-
__typename?: 'UpdateBranch';
|
|
3740
|
-
id: string;
|
|
3741
|
-
name: string;
|
|
3742
|
-
updates: Array<{
|
|
3743
|
-
__typename?: 'Update';
|
|
3744
|
-
id: string;
|
|
3745
|
-
group: string;
|
|
3746
|
-
message?: string | null;
|
|
3747
|
-
runtimeVersion: string;
|
|
3748
|
-
createdAt: any;
|
|
3749
|
-
platform: string;
|
|
3750
|
-
actor?: {
|
|
3751
|
-
__typename?: 'Robot';
|
|
3752
|
-
firstName?: string | null;
|
|
3753
|
-
id: string;
|
|
3754
|
-
} | {
|
|
3755
|
-
__typename?: 'User';
|
|
3756
|
-
username: string;
|
|
3757
|
-
id: string;
|
|
3758
|
-
} | null;
|
|
3759
|
-
}>;
|
|
3760
|
-
}>;
|
|
3761
|
-
}>;
|
|
3762
|
-
};
|
|
3763
|
-
};
|
|
3764
|
-
};
|
|
3765
3858
|
export declare type AppInfoQueryVariables = Exact<{
|
|
3766
3859
|
appId: Scalars['String'];
|
|
3767
3860
|
}>;
|
|
@@ -3789,45 +3882,6 @@ export declare type DeleteUpdateGroupMutation = {
|
|
|
3789
3882
|
};
|
|
3790
3883
|
};
|
|
3791
3884
|
};
|
|
3792
|
-
export declare type GetUpdateGroupAsyncQueryVariables = Exact<{
|
|
3793
|
-
group: Scalars['ID'];
|
|
3794
|
-
}>;
|
|
3795
|
-
export declare type GetUpdateGroupAsyncQuery = {
|
|
3796
|
-
__typename?: 'RootQuery';
|
|
3797
|
-
updatesByGroup: Array<{
|
|
3798
|
-
__typename?: 'Update';
|
|
3799
|
-
id: string;
|
|
3800
|
-
group: string;
|
|
3801
|
-
runtimeVersion: string;
|
|
3802
|
-
manifestFragment: string;
|
|
3803
|
-
platform: string;
|
|
3804
|
-
message?: string | null;
|
|
3805
|
-
}>;
|
|
3806
|
-
};
|
|
3807
|
-
export declare type UpdatesByGroupQueryVariables = Exact<{
|
|
3808
|
-
groupId: Scalars['ID'];
|
|
3809
|
-
}>;
|
|
3810
|
-
export declare type UpdatesByGroupQuery = {
|
|
3811
|
-
__typename?: 'RootQuery';
|
|
3812
|
-
updatesByGroup: Array<{
|
|
3813
|
-
__typename?: 'Update';
|
|
3814
|
-
id: string;
|
|
3815
|
-
group: string;
|
|
3816
|
-
runtimeVersion: string;
|
|
3817
|
-
platform: string;
|
|
3818
|
-
message?: string | null;
|
|
3819
|
-
createdAt: any;
|
|
3820
|
-
actor?: {
|
|
3821
|
-
__typename?: 'Robot';
|
|
3822
|
-
firstName?: string | null;
|
|
3823
|
-
id: string;
|
|
3824
|
-
} | {
|
|
3825
|
-
__typename?: 'User';
|
|
3826
|
-
username: string;
|
|
3827
|
-
id: string;
|
|
3828
|
-
} | null;
|
|
3829
|
-
}>;
|
|
3830
|
-
};
|
|
3831
3885
|
export declare type CreateAndroidAppBuildCredentialsMutationVariables = Exact<{
|
|
3832
3886
|
androidAppBuildCredentialsInput: AndroidAppBuildCredentialsInput;
|
|
3833
3887
|
androidAppCredentialsId: Scalars['ID'];
|
|
@@ -3909,6 +3963,22 @@ export declare type CreateAndroidAppCredentialsMutation = {
|
|
|
3909
3963
|
id: string;
|
|
3910
3964
|
fullName: string;
|
|
3911
3965
|
slug: string;
|
|
3966
|
+
ownerAccount: {
|
|
3967
|
+
__typename?: 'Account';
|
|
3968
|
+
id: string;
|
|
3969
|
+
name: string;
|
|
3970
|
+
users: Array<{
|
|
3971
|
+
__typename?: 'UserPermission';
|
|
3972
|
+
role?: Role | null;
|
|
3973
|
+
actor: {
|
|
3974
|
+
__typename?: 'Robot';
|
|
3975
|
+
id: string;
|
|
3976
|
+
} | {
|
|
3977
|
+
__typename?: 'User';
|
|
3978
|
+
id: string;
|
|
3979
|
+
};
|
|
3980
|
+
}>;
|
|
3981
|
+
};
|
|
3912
3982
|
};
|
|
3913
3983
|
androidFcm?: {
|
|
3914
3984
|
__typename?: 'AndroidFcm';
|
|
@@ -3981,6 +4051,22 @@ export declare type SetFcmMutation = {
|
|
|
3981
4051
|
id: string;
|
|
3982
4052
|
fullName: string;
|
|
3983
4053
|
slug: string;
|
|
4054
|
+
ownerAccount: {
|
|
4055
|
+
__typename?: 'Account';
|
|
4056
|
+
id: string;
|
|
4057
|
+
name: string;
|
|
4058
|
+
users: Array<{
|
|
4059
|
+
__typename?: 'UserPermission';
|
|
4060
|
+
role?: Role | null;
|
|
4061
|
+
actor: {
|
|
4062
|
+
__typename?: 'Robot';
|
|
4063
|
+
id: string;
|
|
4064
|
+
} | {
|
|
4065
|
+
__typename?: 'User';
|
|
4066
|
+
id: string;
|
|
4067
|
+
};
|
|
4068
|
+
}>;
|
|
4069
|
+
};
|
|
3984
4070
|
};
|
|
3985
4071
|
androidFcm?: {
|
|
3986
4072
|
__typename?: 'AndroidFcm';
|
|
@@ -4053,6 +4139,22 @@ export declare type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
4053
4139
|
id: string;
|
|
4054
4140
|
fullName: string;
|
|
4055
4141
|
slug: string;
|
|
4142
|
+
ownerAccount: {
|
|
4143
|
+
__typename?: 'Account';
|
|
4144
|
+
id: string;
|
|
4145
|
+
name: string;
|
|
4146
|
+
users: Array<{
|
|
4147
|
+
__typename?: 'UserPermission';
|
|
4148
|
+
role?: Role | null;
|
|
4149
|
+
actor: {
|
|
4150
|
+
__typename?: 'Robot';
|
|
4151
|
+
id: string;
|
|
4152
|
+
} | {
|
|
4153
|
+
__typename?: 'User';
|
|
4154
|
+
id: string;
|
|
4155
|
+
};
|
|
4156
|
+
}>;
|
|
4157
|
+
};
|
|
4056
4158
|
};
|
|
4057
4159
|
androidFcm?: {
|
|
4058
4160
|
__typename?: 'AndroidFcm';
|
|
@@ -4241,6 +4343,22 @@ export declare type CommonAndroidAppCredentialsWithBuildCredentialsByApplication
|
|
|
4241
4343
|
id: string;
|
|
4242
4344
|
fullName: string;
|
|
4243
4345
|
slug: string;
|
|
4346
|
+
ownerAccount: {
|
|
4347
|
+
__typename?: 'Account';
|
|
4348
|
+
id: string;
|
|
4349
|
+
name: string;
|
|
4350
|
+
users: Array<{
|
|
4351
|
+
__typename?: 'UserPermission';
|
|
4352
|
+
role?: Role | null;
|
|
4353
|
+
actor: {
|
|
4354
|
+
__typename?: 'Robot';
|
|
4355
|
+
id: string;
|
|
4356
|
+
} | {
|
|
4357
|
+
__typename?: 'User';
|
|
4358
|
+
id: string;
|
|
4359
|
+
};
|
|
4360
|
+
}>;
|
|
4361
|
+
};
|
|
4244
4362
|
};
|
|
4245
4363
|
androidFcm?: {
|
|
4246
4364
|
__typename?: 'AndroidFcm';
|
|
@@ -4453,6 +4571,22 @@ export declare type CreateAppleDistributionCertificateMutation = {
|
|
|
4453
4571
|
id: string;
|
|
4454
4572
|
fullName: string;
|
|
4455
4573
|
slug: string;
|
|
4574
|
+
ownerAccount: {
|
|
4575
|
+
__typename?: 'Account';
|
|
4576
|
+
id: string;
|
|
4577
|
+
name: string;
|
|
4578
|
+
users: Array<{
|
|
4579
|
+
__typename?: 'UserPermission';
|
|
4580
|
+
role?: Role | null;
|
|
4581
|
+
actor: {
|
|
4582
|
+
__typename?: 'Robot';
|
|
4583
|
+
id: string;
|
|
4584
|
+
} | {
|
|
4585
|
+
__typename?: 'User';
|
|
4586
|
+
id: string;
|
|
4587
|
+
};
|
|
4588
|
+
}>;
|
|
4589
|
+
};
|
|
4456
4590
|
};
|
|
4457
4591
|
appleAppIdentifier: {
|
|
4458
4592
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4589,6 +4723,22 @@ export declare type CreateApplePushKeyMutation = {
|
|
|
4589
4723
|
id: string;
|
|
4590
4724
|
fullName: string;
|
|
4591
4725
|
slug: string;
|
|
4726
|
+
ownerAccount: {
|
|
4727
|
+
__typename?: 'Account';
|
|
4728
|
+
id: string;
|
|
4729
|
+
name: string;
|
|
4730
|
+
users: Array<{
|
|
4731
|
+
__typename?: 'UserPermission';
|
|
4732
|
+
role?: Role | null;
|
|
4733
|
+
actor: {
|
|
4734
|
+
__typename?: 'Robot';
|
|
4735
|
+
id: string;
|
|
4736
|
+
} | {
|
|
4737
|
+
__typename?: 'User';
|
|
4738
|
+
id: string;
|
|
4739
|
+
};
|
|
4740
|
+
}>;
|
|
4741
|
+
};
|
|
4592
4742
|
};
|
|
4593
4743
|
appleAppIdentifier: {
|
|
4594
4744
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4629,6 +4779,17 @@ export declare type CreateAppleTeamMutation = {
|
|
|
4629
4779
|
__typename?: 'Account';
|
|
4630
4780
|
id: string;
|
|
4631
4781
|
name: string;
|
|
4782
|
+
users: Array<{
|
|
4783
|
+
__typename?: 'UserPermission';
|
|
4784
|
+
role?: Role | null;
|
|
4785
|
+
actor: {
|
|
4786
|
+
__typename?: 'Robot';
|
|
4787
|
+
id: string;
|
|
4788
|
+
} | {
|
|
4789
|
+
__typename?: 'User';
|
|
4790
|
+
id: string;
|
|
4791
|
+
};
|
|
4792
|
+
}>;
|
|
4632
4793
|
};
|
|
4633
4794
|
};
|
|
4634
4795
|
};
|
|
@@ -4672,6 +4833,22 @@ export declare type CreateIosAppBuildCredentialsMutation = {
|
|
|
4672
4833
|
id: string;
|
|
4673
4834
|
fullName: string;
|
|
4674
4835
|
slug: string;
|
|
4836
|
+
ownerAccount: {
|
|
4837
|
+
__typename?: 'Account';
|
|
4838
|
+
id: string;
|
|
4839
|
+
name: string;
|
|
4840
|
+
users: Array<{
|
|
4841
|
+
__typename?: 'UserPermission';
|
|
4842
|
+
role?: Role | null;
|
|
4843
|
+
actor: {
|
|
4844
|
+
__typename?: 'Robot';
|
|
4845
|
+
id: string;
|
|
4846
|
+
} | {
|
|
4847
|
+
__typename?: 'User';
|
|
4848
|
+
id: string;
|
|
4849
|
+
};
|
|
4850
|
+
}>;
|
|
4851
|
+
};
|
|
4675
4852
|
};
|
|
4676
4853
|
appleAppIdentifier: {
|
|
4677
4854
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4751,6 +4928,22 @@ export declare type SetDistributionCertificateMutation = {
|
|
|
4751
4928
|
id: string;
|
|
4752
4929
|
fullName: string;
|
|
4753
4930
|
slug: string;
|
|
4931
|
+
ownerAccount: {
|
|
4932
|
+
__typename?: 'Account';
|
|
4933
|
+
id: string;
|
|
4934
|
+
name: string;
|
|
4935
|
+
users: Array<{
|
|
4936
|
+
__typename?: 'UserPermission';
|
|
4937
|
+
role?: Role | null;
|
|
4938
|
+
actor: {
|
|
4939
|
+
__typename?: 'Robot';
|
|
4940
|
+
id: string;
|
|
4941
|
+
} | {
|
|
4942
|
+
__typename?: 'User';
|
|
4943
|
+
id: string;
|
|
4944
|
+
};
|
|
4945
|
+
}>;
|
|
4946
|
+
};
|
|
4754
4947
|
};
|
|
4755
4948
|
appleAppIdentifier: {
|
|
4756
4949
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4830,6 +5023,22 @@ export declare type SetProvisioningProfileMutation = {
|
|
|
4830
5023
|
id: string;
|
|
4831
5024
|
fullName: string;
|
|
4832
5025
|
slug: string;
|
|
5026
|
+
ownerAccount: {
|
|
5027
|
+
__typename?: 'Account';
|
|
5028
|
+
id: string;
|
|
5029
|
+
name: string;
|
|
5030
|
+
users: Array<{
|
|
5031
|
+
__typename?: 'UserPermission';
|
|
5032
|
+
role?: Role | null;
|
|
5033
|
+
actor: {
|
|
5034
|
+
__typename?: 'Robot';
|
|
5035
|
+
id: string;
|
|
5036
|
+
} | {
|
|
5037
|
+
__typename?: 'User';
|
|
5038
|
+
id: string;
|
|
5039
|
+
};
|
|
5040
|
+
}>;
|
|
5041
|
+
};
|
|
4833
5042
|
};
|
|
4834
5043
|
appleAppIdentifier: {
|
|
4835
5044
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4913,6 +5122,22 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
4913
5122
|
id: string;
|
|
4914
5123
|
fullName: string;
|
|
4915
5124
|
slug: string;
|
|
5125
|
+
ownerAccount: {
|
|
5126
|
+
__typename?: 'Account';
|
|
5127
|
+
id: string;
|
|
5128
|
+
name: string;
|
|
5129
|
+
users: Array<{
|
|
5130
|
+
__typename?: 'UserPermission';
|
|
5131
|
+
role?: Role | null;
|
|
5132
|
+
actor: {
|
|
5133
|
+
__typename?: 'Robot';
|
|
5134
|
+
id: string;
|
|
5135
|
+
} | {
|
|
5136
|
+
__typename?: 'User';
|
|
5137
|
+
id: string;
|
|
5138
|
+
};
|
|
5139
|
+
}>;
|
|
5140
|
+
};
|
|
4916
5141
|
};
|
|
4917
5142
|
appleAppIdentifier: {
|
|
4918
5143
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -4956,6 +5181,22 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
4956
5181
|
id: string;
|
|
4957
5182
|
fullName: string;
|
|
4958
5183
|
slug: string;
|
|
5184
|
+
ownerAccount: {
|
|
5185
|
+
__typename?: 'Account';
|
|
5186
|
+
id: string;
|
|
5187
|
+
name: string;
|
|
5188
|
+
users: Array<{
|
|
5189
|
+
__typename?: 'UserPermission';
|
|
5190
|
+
role?: Role | null;
|
|
5191
|
+
actor: {
|
|
5192
|
+
__typename?: 'Robot';
|
|
5193
|
+
id: string;
|
|
5194
|
+
} | {
|
|
5195
|
+
__typename?: 'User';
|
|
5196
|
+
id: string;
|
|
5197
|
+
};
|
|
5198
|
+
}>;
|
|
5199
|
+
};
|
|
4959
5200
|
};
|
|
4960
5201
|
appleTeam?: {
|
|
4961
5202
|
__typename?: 'AppleTeam';
|
|
@@ -4987,7 +5228,23 @@ export declare type CreateIosAppCredentialsMutation = {
|
|
|
4987
5228
|
id: string;
|
|
4988
5229
|
fullName: string;
|
|
4989
5230
|
slug: string;
|
|
4990
|
-
|
|
5231
|
+
ownerAccount: {
|
|
5232
|
+
__typename?: 'Account';
|
|
5233
|
+
id: string;
|
|
5234
|
+
name: string;
|
|
5235
|
+
users: Array<{
|
|
5236
|
+
__typename?: 'UserPermission';
|
|
5237
|
+
role?: Role | null;
|
|
5238
|
+
actor: {
|
|
5239
|
+
__typename?: 'Robot';
|
|
5240
|
+
id: string;
|
|
5241
|
+
} | {
|
|
5242
|
+
__typename?: 'User';
|
|
5243
|
+
id: string;
|
|
5244
|
+
};
|
|
5245
|
+
}>;
|
|
5246
|
+
};
|
|
5247
|
+
};
|
|
4991
5248
|
appleAppIdentifier: {
|
|
4992
5249
|
__typename?: 'AppleAppIdentifier';
|
|
4993
5250
|
id: string;
|
|
@@ -5056,6 +5313,22 @@ export declare type SetPushKeyMutation = {
|
|
|
5056
5313
|
id: string;
|
|
5057
5314
|
fullName: string;
|
|
5058
5315
|
slug: string;
|
|
5316
|
+
ownerAccount: {
|
|
5317
|
+
__typename?: 'Account';
|
|
5318
|
+
id: string;
|
|
5319
|
+
name: string;
|
|
5320
|
+
users: Array<{
|
|
5321
|
+
__typename?: 'UserPermission';
|
|
5322
|
+
role?: Role | null;
|
|
5323
|
+
actor: {
|
|
5324
|
+
__typename?: 'Robot';
|
|
5325
|
+
id: string;
|
|
5326
|
+
} | {
|
|
5327
|
+
__typename?: 'User';
|
|
5328
|
+
id: string;
|
|
5329
|
+
};
|
|
5330
|
+
}>;
|
|
5331
|
+
};
|
|
5059
5332
|
};
|
|
5060
5333
|
appleAppIdentifier: {
|
|
5061
5334
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5099,6 +5372,22 @@ export declare type SetPushKeyMutation = {
|
|
|
5099
5372
|
id: string;
|
|
5100
5373
|
fullName: string;
|
|
5101
5374
|
slug: string;
|
|
5375
|
+
ownerAccount: {
|
|
5376
|
+
__typename?: 'Account';
|
|
5377
|
+
id: string;
|
|
5378
|
+
name: string;
|
|
5379
|
+
users: Array<{
|
|
5380
|
+
__typename?: 'UserPermission';
|
|
5381
|
+
role?: Role | null;
|
|
5382
|
+
actor: {
|
|
5383
|
+
__typename?: 'Robot';
|
|
5384
|
+
id: string;
|
|
5385
|
+
} | {
|
|
5386
|
+
__typename?: 'User';
|
|
5387
|
+
id: string;
|
|
5388
|
+
};
|
|
5389
|
+
}>;
|
|
5390
|
+
};
|
|
5102
5391
|
};
|
|
5103
5392
|
appleTeam?: {
|
|
5104
5393
|
__typename?: 'AppleTeam';
|
|
@@ -5130,6 +5419,22 @@ export declare type SetPushKeyMutation = {
|
|
|
5130
5419
|
id: string;
|
|
5131
5420
|
fullName: string;
|
|
5132
5421
|
slug: string;
|
|
5422
|
+
ownerAccount: {
|
|
5423
|
+
__typename?: 'Account';
|
|
5424
|
+
id: string;
|
|
5425
|
+
name: string;
|
|
5426
|
+
users: Array<{
|
|
5427
|
+
__typename?: 'UserPermission';
|
|
5428
|
+
role?: Role | null;
|
|
5429
|
+
actor: {
|
|
5430
|
+
__typename?: 'Robot';
|
|
5431
|
+
id: string;
|
|
5432
|
+
} | {
|
|
5433
|
+
__typename?: 'User';
|
|
5434
|
+
id: string;
|
|
5435
|
+
};
|
|
5436
|
+
}>;
|
|
5437
|
+
};
|
|
5133
5438
|
};
|
|
5134
5439
|
appleAppIdentifier: {
|
|
5135
5440
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5199,6 +5504,22 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5199
5504
|
id: string;
|
|
5200
5505
|
fullName: string;
|
|
5201
5506
|
slug: string;
|
|
5507
|
+
ownerAccount: {
|
|
5508
|
+
__typename?: 'Account';
|
|
5509
|
+
id: string;
|
|
5510
|
+
name: string;
|
|
5511
|
+
users: Array<{
|
|
5512
|
+
__typename?: 'UserPermission';
|
|
5513
|
+
role?: Role | null;
|
|
5514
|
+
actor: {
|
|
5515
|
+
__typename?: 'Robot';
|
|
5516
|
+
id: string;
|
|
5517
|
+
} | {
|
|
5518
|
+
__typename?: 'User';
|
|
5519
|
+
id: string;
|
|
5520
|
+
};
|
|
5521
|
+
}>;
|
|
5522
|
+
};
|
|
5202
5523
|
};
|
|
5203
5524
|
appleAppIdentifier: {
|
|
5204
5525
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5242,6 +5563,22 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5242
5563
|
id: string;
|
|
5243
5564
|
fullName: string;
|
|
5244
5565
|
slug: string;
|
|
5566
|
+
ownerAccount: {
|
|
5567
|
+
__typename?: 'Account';
|
|
5568
|
+
id: string;
|
|
5569
|
+
name: string;
|
|
5570
|
+
users: Array<{
|
|
5571
|
+
__typename?: 'UserPermission';
|
|
5572
|
+
role?: Role | null;
|
|
5573
|
+
actor: {
|
|
5574
|
+
__typename?: 'Robot';
|
|
5575
|
+
id: string;
|
|
5576
|
+
} | {
|
|
5577
|
+
__typename?: 'User';
|
|
5578
|
+
id: string;
|
|
5579
|
+
};
|
|
5580
|
+
}>;
|
|
5581
|
+
};
|
|
5245
5582
|
};
|
|
5246
5583
|
appleTeam?: {
|
|
5247
5584
|
__typename?: 'AppleTeam';
|
|
@@ -5273,6 +5610,22 @@ export declare type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
5273
5610
|
id: string;
|
|
5274
5611
|
fullName: string;
|
|
5275
5612
|
slug: string;
|
|
5613
|
+
ownerAccount: {
|
|
5614
|
+
__typename?: 'Account';
|
|
5615
|
+
id: string;
|
|
5616
|
+
name: string;
|
|
5617
|
+
users: Array<{
|
|
5618
|
+
__typename?: 'UserPermission';
|
|
5619
|
+
role?: Role | null;
|
|
5620
|
+
actor: {
|
|
5621
|
+
__typename?: 'Robot';
|
|
5622
|
+
id: string;
|
|
5623
|
+
} | {
|
|
5624
|
+
__typename?: 'User';
|
|
5625
|
+
id: string;
|
|
5626
|
+
};
|
|
5627
|
+
}>;
|
|
5628
|
+
};
|
|
5276
5629
|
};
|
|
5277
5630
|
appleAppIdentifier: {
|
|
5278
5631
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5381,6 +5734,8 @@ export declare type AppleDevicesByAppleTeamQuery = {
|
|
|
5381
5734
|
export declare type AppleDevicesByTeamIdentifierQueryVariables = Exact<{
|
|
5382
5735
|
accountName: Scalars['String'];
|
|
5383
5736
|
appleTeamIdentifier: Scalars['String'];
|
|
5737
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
5738
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
5384
5739
|
}>;
|
|
5385
5740
|
export declare type AppleDevicesByTeamIdentifierQuery = {
|
|
5386
5741
|
__typename?: 'RootQuery';
|
|
@@ -5401,6 +5756,7 @@ export declare type AppleDevicesByTeamIdentifierQuery = {
|
|
|
5401
5756
|
name?: string | null;
|
|
5402
5757
|
deviceClass?: AppleDeviceClass | null;
|
|
5403
5758
|
enabled?: boolean | null;
|
|
5759
|
+
model?: string | null;
|
|
5404
5760
|
}>;
|
|
5405
5761
|
}>;
|
|
5406
5762
|
};
|
|
@@ -5420,6 +5776,7 @@ export declare type AppleDevicesByIdentifierQuery = {
|
|
|
5420
5776
|
appleDevices: Array<{
|
|
5421
5777
|
__typename?: 'AppleDevice';
|
|
5422
5778
|
id: string;
|
|
5779
|
+
model?: string | null;
|
|
5423
5780
|
identifier: string;
|
|
5424
5781
|
name?: string | null;
|
|
5425
5782
|
deviceClass?: AppleDeviceClass | null;
|
|
@@ -5479,6 +5836,22 @@ export declare type AppleDistributionCertificateByAppQuery = {
|
|
|
5479
5836
|
id: string;
|
|
5480
5837
|
fullName: string;
|
|
5481
5838
|
slug: string;
|
|
5839
|
+
ownerAccount: {
|
|
5840
|
+
__typename?: 'Account';
|
|
5841
|
+
id: string;
|
|
5842
|
+
name: string;
|
|
5843
|
+
users: Array<{
|
|
5844
|
+
__typename?: 'UserPermission';
|
|
5845
|
+
role?: Role | null;
|
|
5846
|
+
actor: {
|
|
5847
|
+
__typename?: 'Robot';
|
|
5848
|
+
id: string;
|
|
5849
|
+
} | {
|
|
5850
|
+
__typename?: 'User';
|
|
5851
|
+
id: string;
|
|
5852
|
+
};
|
|
5853
|
+
}>;
|
|
5854
|
+
};
|
|
5482
5855
|
};
|
|
5483
5856
|
appleAppIdentifier: {
|
|
5484
5857
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5535,6 +5908,22 @@ export declare type AppleDistributionCertificateByAccountQuery = {
|
|
|
5535
5908
|
id: string;
|
|
5536
5909
|
fullName: string;
|
|
5537
5910
|
slug: string;
|
|
5911
|
+
ownerAccount: {
|
|
5912
|
+
__typename?: 'Account';
|
|
5913
|
+
id: string;
|
|
5914
|
+
name: string;
|
|
5915
|
+
users: Array<{
|
|
5916
|
+
__typename?: 'UserPermission';
|
|
5917
|
+
role?: Role | null;
|
|
5918
|
+
actor: {
|
|
5919
|
+
__typename?: 'Robot';
|
|
5920
|
+
id: string;
|
|
5921
|
+
} | {
|
|
5922
|
+
__typename?: 'User';
|
|
5923
|
+
id: string;
|
|
5924
|
+
};
|
|
5925
|
+
}>;
|
|
5926
|
+
};
|
|
5538
5927
|
};
|
|
5539
5928
|
appleAppIdentifier: {
|
|
5540
5929
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5632,6 +6021,22 @@ export declare type ApplePushKeyByAccountQuery = {
|
|
|
5632
6021
|
id: string;
|
|
5633
6022
|
fullName: string;
|
|
5634
6023
|
slug: string;
|
|
6024
|
+
ownerAccount: {
|
|
6025
|
+
__typename?: 'Account';
|
|
6026
|
+
id: string;
|
|
6027
|
+
name: string;
|
|
6028
|
+
users: Array<{
|
|
6029
|
+
__typename?: 'UserPermission';
|
|
6030
|
+
role?: Role | null;
|
|
6031
|
+
actor: {
|
|
6032
|
+
__typename?: 'Robot';
|
|
6033
|
+
id: string;
|
|
6034
|
+
} | {
|
|
6035
|
+
__typename?: 'User';
|
|
6036
|
+
id: string;
|
|
6037
|
+
};
|
|
6038
|
+
}>;
|
|
6039
|
+
};
|
|
5635
6040
|
};
|
|
5636
6041
|
appleAppIdentifier: {
|
|
5637
6042
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5645,6 +6050,8 @@ export declare type ApplePushKeyByAccountQuery = {
|
|
|
5645
6050
|
};
|
|
5646
6051
|
export declare type AppleTeamsByAccountNameQueryVariables = Exact<{
|
|
5647
6052
|
accountName: Scalars['String'];
|
|
6053
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
6054
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
5648
6055
|
}>;
|
|
5649
6056
|
export declare type AppleTeamsByAccountNameQuery = {
|
|
5650
6057
|
__typename?: 'RootQuery';
|
|
@@ -5656,8 +6063,8 @@ export declare type AppleTeamsByAccountNameQuery = {
|
|
|
5656
6063
|
appleTeams: Array<{
|
|
5657
6064
|
__typename?: 'AppleTeam';
|
|
5658
6065
|
id: string;
|
|
5659
|
-
appleTeamName?: string | null;
|
|
5660
6066
|
appleTeamIdentifier: string;
|
|
6067
|
+
appleTeamName?: string | null;
|
|
5661
6068
|
}>;
|
|
5662
6069
|
};
|
|
5663
6070
|
};
|
|
@@ -5724,6 +6131,22 @@ export declare type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuer
|
|
|
5724
6131
|
id: string;
|
|
5725
6132
|
fullName: string;
|
|
5726
6133
|
slug: string;
|
|
6134
|
+
ownerAccount: {
|
|
6135
|
+
__typename?: 'Account';
|
|
6136
|
+
id: string;
|
|
6137
|
+
name: string;
|
|
6138
|
+
users: Array<{
|
|
6139
|
+
__typename?: 'UserPermission';
|
|
6140
|
+
role?: Role | null;
|
|
6141
|
+
actor: {
|
|
6142
|
+
__typename?: 'Robot';
|
|
6143
|
+
id: string;
|
|
6144
|
+
} | {
|
|
6145
|
+
__typename?: 'User';
|
|
6146
|
+
id: string;
|
|
6147
|
+
};
|
|
6148
|
+
}>;
|
|
6149
|
+
};
|
|
5727
6150
|
};
|
|
5728
6151
|
appleAppIdentifier: {
|
|
5729
6152
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5812,6 +6235,22 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
5812
6235
|
id: string;
|
|
5813
6236
|
fullName: string;
|
|
5814
6237
|
slug: string;
|
|
6238
|
+
ownerAccount: {
|
|
6239
|
+
__typename?: 'Account';
|
|
6240
|
+
id: string;
|
|
6241
|
+
name: string;
|
|
6242
|
+
users: Array<{
|
|
6243
|
+
__typename?: 'UserPermission';
|
|
6244
|
+
role?: Role | null;
|
|
6245
|
+
actor: {
|
|
6246
|
+
__typename?: 'Robot';
|
|
6247
|
+
id: string;
|
|
6248
|
+
} | {
|
|
6249
|
+
__typename?: 'User';
|
|
6250
|
+
id: string;
|
|
6251
|
+
};
|
|
6252
|
+
}>;
|
|
6253
|
+
};
|
|
5815
6254
|
};
|
|
5816
6255
|
appleAppIdentifier: {
|
|
5817
6256
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5855,6 +6294,22 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
5855
6294
|
id: string;
|
|
5856
6295
|
fullName: string;
|
|
5857
6296
|
slug: string;
|
|
6297
|
+
ownerAccount: {
|
|
6298
|
+
__typename?: 'Account';
|
|
6299
|
+
id: string;
|
|
6300
|
+
name: string;
|
|
6301
|
+
users: Array<{
|
|
6302
|
+
__typename?: 'UserPermission';
|
|
6303
|
+
role?: Role | null;
|
|
6304
|
+
actor: {
|
|
6305
|
+
__typename?: 'Robot';
|
|
6306
|
+
id: string;
|
|
6307
|
+
} | {
|
|
6308
|
+
__typename?: 'User';
|
|
6309
|
+
id: string;
|
|
6310
|
+
};
|
|
6311
|
+
}>;
|
|
6312
|
+
};
|
|
5858
6313
|
};
|
|
5859
6314
|
appleTeam?: {
|
|
5860
6315
|
__typename?: 'AppleTeam';
|
|
@@ -5886,6 +6341,22 @@ export declare type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery
|
|
|
5886
6341
|
id: string;
|
|
5887
6342
|
fullName: string;
|
|
5888
6343
|
slug: string;
|
|
6344
|
+
ownerAccount: {
|
|
6345
|
+
__typename?: 'Account';
|
|
6346
|
+
id: string;
|
|
6347
|
+
name: string;
|
|
6348
|
+
users: Array<{
|
|
6349
|
+
__typename?: 'UserPermission';
|
|
6350
|
+
role?: Role | null;
|
|
6351
|
+
actor: {
|
|
6352
|
+
__typename?: 'Robot';
|
|
6353
|
+
id: string;
|
|
6354
|
+
} | {
|
|
6355
|
+
__typename?: 'User';
|
|
6356
|
+
id: string;
|
|
6357
|
+
};
|
|
6358
|
+
}>;
|
|
6359
|
+
};
|
|
5889
6360
|
};
|
|
5890
6361
|
appleAppIdentifier: {
|
|
5891
6362
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -5959,6 +6430,22 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
5959
6430
|
id: string;
|
|
5960
6431
|
fullName: string;
|
|
5961
6432
|
slug: string;
|
|
6433
|
+
ownerAccount: {
|
|
6434
|
+
__typename?: 'Account';
|
|
6435
|
+
id: string;
|
|
6436
|
+
name: string;
|
|
6437
|
+
users: Array<{
|
|
6438
|
+
__typename?: 'UserPermission';
|
|
6439
|
+
role?: Role | null;
|
|
6440
|
+
actor: {
|
|
6441
|
+
__typename?: 'Robot';
|
|
6442
|
+
id: string;
|
|
6443
|
+
} | {
|
|
6444
|
+
__typename?: 'User';
|
|
6445
|
+
id: string;
|
|
6446
|
+
};
|
|
6447
|
+
}>;
|
|
6448
|
+
};
|
|
5962
6449
|
};
|
|
5963
6450
|
appleAppIdentifier: {
|
|
5964
6451
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -6002,6 +6489,22 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6002
6489
|
id: string;
|
|
6003
6490
|
fullName: string;
|
|
6004
6491
|
slug: string;
|
|
6492
|
+
ownerAccount: {
|
|
6493
|
+
__typename?: 'Account';
|
|
6494
|
+
id: string;
|
|
6495
|
+
name: string;
|
|
6496
|
+
users: Array<{
|
|
6497
|
+
__typename?: 'UserPermission';
|
|
6498
|
+
role?: Role | null;
|
|
6499
|
+
actor: {
|
|
6500
|
+
__typename?: 'Robot';
|
|
6501
|
+
id: string;
|
|
6502
|
+
} | {
|
|
6503
|
+
__typename?: 'User';
|
|
6504
|
+
id: string;
|
|
6505
|
+
};
|
|
6506
|
+
}>;
|
|
6507
|
+
};
|
|
6005
6508
|
};
|
|
6006
6509
|
appleTeam?: {
|
|
6007
6510
|
__typename?: 'AppleTeam';
|
|
@@ -6033,6 +6536,22 @@ export declare type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierId
|
|
|
6033
6536
|
id: string;
|
|
6034
6537
|
fullName: string;
|
|
6035
6538
|
slug: string;
|
|
6539
|
+
ownerAccount: {
|
|
6540
|
+
__typename?: 'Account';
|
|
6541
|
+
id: string;
|
|
6542
|
+
name: string;
|
|
6543
|
+
users: Array<{
|
|
6544
|
+
__typename?: 'UserPermission';
|
|
6545
|
+
role?: Role | null;
|
|
6546
|
+
actor: {
|
|
6547
|
+
__typename?: 'Robot';
|
|
6548
|
+
id: string;
|
|
6549
|
+
} | {
|
|
6550
|
+
__typename?: 'User';
|
|
6551
|
+
id: string;
|
|
6552
|
+
};
|
|
6553
|
+
}>;
|
|
6554
|
+
};
|
|
6036
6555
|
};
|
|
6037
6556
|
appleAppIdentifier: {
|
|
6038
6557
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -6255,6 +6774,7 @@ export declare type CreateEnvironmentSecretForAccountMutation = {
|
|
|
6255
6774
|
__typename?: 'EnvironmentSecret';
|
|
6256
6775
|
id: string;
|
|
6257
6776
|
name: string;
|
|
6777
|
+
type: EnvironmentSecretType;
|
|
6258
6778
|
createdAt: any;
|
|
6259
6779
|
};
|
|
6260
6780
|
};
|
|
@@ -6271,6 +6791,7 @@ export declare type CreateEnvironmentSecretForAppMutation = {
|
|
|
6271
6791
|
__typename?: 'EnvironmentSecret';
|
|
6272
6792
|
id: string;
|
|
6273
6793
|
name: string;
|
|
6794
|
+
type: EnvironmentSecretType;
|
|
6274
6795
|
createdAt: any;
|
|
6275
6796
|
};
|
|
6276
6797
|
};
|
|
@@ -6509,6 +7030,37 @@ export declare type DeleteWebhookMutation = {
|
|
|
6509
7030
|
};
|
|
6510
7031
|
};
|
|
6511
7032
|
};
|
|
7033
|
+
export declare type AppByIdQueryVariables = Exact<{
|
|
7034
|
+
appId: Scalars['String'];
|
|
7035
|
+
}>;
|
|
7036
|
+
export declare type AppByIdQuery = {
|
|
7037
|
+
__typename?: 'RootQuery';
|
|
7038
|
+
app: {
|
|
7039
|
+
__typename?: 'AppQuery';
|
|
7040
|
+
byId: {
|
|
7041
|
+
__typename?: 'App';
|
|
7042
|
+
id: string;
|
|
7043
|
+
fullName: string;
|
|
7044
|
+
slug: string;
|
|
7045
|
+
ownerAccount: {
|
|
7046
|
+
__typename?: 'Account';
|
|
7047
|
+
id: string;
|
|
7048
|
+
name: string;
|
|
7049
|
+
users: Array<{
|
|
7050
|
+
__typename?: 'UserPermission';
|
|
7051
|
+
role?: Role | null;
|
|
7052
|
+
actor: {
|
|
7053
|
+
__typename?: 'Robot';
|
|
7054
|
+
id: string;
|
|
7055
|
+
} | {
|
|
7056
|
+
__typename?: 'User';
|
|
7057
|
+
id: string;
|
|
7058
|
+
};
|
|
7059
|
+
}>;
|
|
7060
|
+
};
|
|
7061
|
+
};
|
|
7062
|
+
};
|
|
7063
|
+
};
|
|
6512
7064
|
export declare type AppByFullNameQueryVariables = Exact<{
|
|
6513
7065
|
fullName: Scalars['String'];
|
|
6514
7066
|
}>;
|
|
@@ -6521,6 +7073,22 @@ export declare type AppByFullNameQuery = {
|
|
|
6521
7073
|
id: string;
|
|
6522
7074
|
fullName: string;
|
|
6523
7075
|
slug: string;
|
|
7076
|
+
ownerAccount: {
|
|
7077
|
+
__typename?: 'Account';
|
|
7078
|
+
id: string;
|
|
7079
|
+
name: string;
|
|
7080
|
+
users: Array<{
|
|
7081
|
+
__typename?: 'UserPermission';
|
|
7082
|
+
role?: Role | null;
|
|
7083
|
+
actor: {
|
|
7084
|
+
__typename?: 'Robot';
|
|
7085
|
+
id: string;
|
|
7086
|
+
} | {
|
|
7087
|
+
__typename?: 'User';
|
|
7088
|
+
id: string;
|
|
7089
|
+
};
|
|
7090
|
+
}>;
|
|
7091
|
+
};
|
|
6524
7092
|
};
|
|
6525
7093
|
};
|
|
6526
7094
|
};
|
|
@@ -6583,11 +7151,12 @@ export declare type BranchesByAppQuery = {
|
|
|
6583
7151
|
updates: Array<{
|
|
6584
7152
|
__typename?: 'Update';
|
|
6585
7153
|
id: string;
|
|
6586
|
-
|
|
7154
|
+
group: string;
|
|
6587
7155
|
message?: string | null;
|
|
7156
|
+
createdAt: any;
|
|
6588
7157
|
runtimeVersion: string;
|
|
6589
|
-
group: string;
|
|
6590
7158
|
platform: string;
|
|
7159
|
+
manifestFragment: string;
|
|
6591
7160
|
actor?: {
|
|
6592
7161
|
__typename: 'Robot';
|
|
6593
7162
|
firstName?: string | null;
|
|
@@ -6597,11 +7166,65 @@ export declare type BranchesByAppQuery = {
|
|
|
6597
7166
|
username: string;
|
|
6598
7167
|
id: string;
|
|
6599
7168
|
} | null;
|
|
7169
|
+
branch: {
|
|
7170
|
+
__typename?: 'UpdateBranch';
|
|
7171
|
+
id: string;
|
|
7172
|
+
name: string;
|
|
7173
|
+
};
|
|
6600
7174
|
}>;
|
|
6601
7175
|
}>;
|
|
6602
7176
|
};
|
|
6603
7177
|
};
|
|
6604
7178
|
};
|
|
7179
|
+
export declare type ViewBranchesOnUpdateChannelQueryVariables = Exact<{
|
|
7180
|
+
appId: Scalars['String'];
|
|
7181
|
+
channelName: Scalars['String'];
|
|
7182
|
+
offset: Scalars['Int'];
|
|
7183
|
+
limit: Scalars['Int'];
|
|
7184
|
+
}>;
|
|
7185
|
+
export declare type ViewBranchesOnUpdateChannelQuery = {
|
|
7186
|
+
__typename?: 'RootQuery';
|
|
7187
|
+
app: {
|
|
7188
|
+
__typename?: 'AppQuery';
|
|
7189
|
+
byId: {
|
|
7190
|
+
__typename?: 'App';
|
|
7191
|
+
id: string;
|
|
7192
|
+
updateChannelByName?: {
|
|
7193
|
+
__typename?: 'UpdateChannel';
|
|
7194
|
+
id: string;
|
|
7195
|
+
updateBranches: Array<{
|
|
7196
|
+
__typename?: 'UpdateBranch';
|
|
7197
|
+
id: string;
|
|
7198
|
+
name: string;
|
|
7199
|
+
updateGroups: Array<Array<{
|
|
7200
|
+
__typename?: 'Update';
|
|
7201
|
+
id: string;
|
|
7202
|
+
group: string;
|
|
7203
|
+
message?: string | null;
|
|
7204
|
+
createdAt: any;
|
|
7205
|
+
runtimeVersion: string;
|
|
7206
|
+
platform: string;
|
|
7207
|
+
manifestFragment: string;
|
|
7208
|
+
actor?: {
|
|
7209
|
+
__typename: 'Robot';
|
|
7210
|
+
firstName?: string | null;
|
|
7211
|
+
id: string;
|
|
7212
|
+
} | {
|
|
7213
|
+
__typename: 'User';
|
|
7214
|
+
username: string;
|
|
7215
|
+
id: string;
|
|
7216
|
+
} | null;
|
|
7217
|
+
branch: {
|
|
7218
|
+
__typename?: 'UpdateBranch';
|
|
7219
|
+
id: string;
|
|
7220
|
+
name: string;
|
|
7221
|
+
};
|
|
7222
|
+
}>>;
|
|
7223
|
+
}>;
|
|
7224
|
+
} | null;
|
|
7225
|
+
};
|
|
7226
|
+
};
|
|
7227
|
+
};
|
|
6605
7228
|
export declare type BuildsByIdQueryVariables = Exact<{
|
|
6606
7229
|
buildId: Scalars['ID'];
|
|
6607
7230
|
}>;
|
|
@@ -6770,13 +7393,13 @@ export declare type BuildsWithSubmissionsByIdQuery = {
|
|
|
6770
7393
|
};
|
|
6771
7394
|
};
|
|
6772
7395
|
};
|
|
6773
|
-
export declare type
|
|
7396
|
+
export declare type ViewBuildsOnAppQueryVariables = Exact<{
|
|
6774
7397
|
appId: Scalars['String'];
|
|
6775
7398
|
offset: Scalars['Int'];
|
|
6776
7399
|
limit: Scalars['Int'];
|
|
6777
7400
|
filter?: InputMaybe<BuildFilter>;
|
|
6778
7401
|
}>;
|
|
6779
|
-
export declare type
|
|
7402
|
+
export declare type ViewBuildsOnAppQuery = {
|
|
6780
7403
|
__typename?: 'RootQuery';
|
|
6781
7404
|
app: {
|
|
6782
7405
|
__typename?: 'AppQuery';
|
|
@@ -6844,11 +7467,11 @@ export declare type GetAllBuildsForAppQuery = {
|
|
|
6844
7467
|
};
|
|
6845
7468
|
};
|
|
6846
7469
|
};
|
|
6847
|
-
export declare type
|
|
7470
|
+
export declare type ViewUpdateChannelOnAppQueryVariables = Exact<{
|
|
6848
7471
|
appId: Scalars['String'];
|
|
6849
7472
|
channelName: Scalars['String'];
|
|
6850
7473
|
}>;
|
|
6851
|
-
export declare type
|
|
7474
|
+
export declare type ViewUpdateChannelOnAppQuery = {
|
|
6852
7475
|
__typename?: 'RootQuery';
|
|
6853
7476
|
app: {
|
|
6854
7477
|
__typename?: 'AppQuery';
|
|
@@ -6865,44 +7488,81 @@ export declare type GetChannelByNameForAppQuery = {
|
|
|
6865
7488
|
__typename?: 'UpdateBranch';
|
|
6866
7489
|
id: string;
|
|
6867
7490
|
name: string;
|
|
6868
|
-
|
|
7491
|
+
updateGroups: Array<Array<{
|
|
6869
7492
|
__typename?: 'Update';
|
|
6870
7493
|
id: string;
|
|
6871
7494
|
group: string;
|
|
6872
7495
|
message?: string | null;
|
|
6873
|
-
runtimeVersion: string;
|
|
6874
7496
|
createdAt: any;
|
|
7497
|
+
runtimeVersion: string;
|
|
6875
7498
|
platform: string;
|
|
7499
|
+
manifestFragment: string;
|
|
6876
7500
|
actor?: {
|
|
6877
|
-
__typename
|
|
7501
|
+
__typename: 'Robot';
|
|
6878
7502
|
firstName?: string | null;
|
|
6879
7503
|
id: string;
|
|
6880
7504
|
} | {
|
|
6881
|
-
__typename
|
|
7505
|
+
__typename: 'User';
|
|
6882
7506
|
username: string;
|
|
6883
7507
|
id: string;
|
|
6884
7508
|
} | null;
|
|
6885
|
-
|
|
7509
|
+
branch: {
|
|
7510
|
+
__typename?: 'UpdateBranch';
|
|
7511
|
+
id: string;
|
|
7512
|
+
name: string;
|
|
7513
|
+
};
|
|
7514
|
+
}>>;
|
|
6886
7515
|
}>;
|
|
6887
7516
|
} | null;
|
|
6888
7517
|
};
|
|
6889
7518
|
};
|
|
6890
7519
|
};
|
|
6891
|
-
export declare type
|
|
6892
|
-
|
|
7520
|
+
export declare type ViewUpdateChannelsOnAppQueryVariables = Exact<{
|
|
7521
|
+
appId: Scalars['String'];
|
|
7522
|
+
offset: Scalars['Int'];
|
|
7523
|
+
limit: Scalars['Int'];
|
|
6893
7524
|
}>;
|
|
6894
|
-
export declare type
|
|
7525
|
+
export declare type ViewUpdateChannelsOnAppQuery = {
|
|
6895
7526
|
__typename?: 'RootQuery';
|
|
6896
|
-
|
|
6897
|
-
__typename?: '
|
|
6898
|
-
|
|
6899
|
-
__typename?: '
|
|
7527
|
+
app: {
|
|
7528
|
+
__typename?: 'AppQuery';
|
|
7529
|
+
byId: {
|
|
7530
|
+
__typename?: 'App';
|
|
6900
7531
|
id: string;
|
|
6901
|
-
|
|
6902
|
-
__typename?: '
|
|
7532
|
+
updateChannels: Array<{
|
|
7533
|
+
__typename?: 'UpdateChannel';
|
|
6903
7534
|
id: string;
|
|
6904
7535
|
name: string;
|
|
6905
|
-
|
|
7536
|
+
branchMapping: string;
|
|
7537
|
+
updateBranches: Array<{
|
|
7538
|
+
__typename?: 'UpdateBranch';
|
|
7539
|
+
id: string;
|
|
7540
|
+
name: string;
|
|
7541
|
+
updateGroups: Array<Array<{
|
|
7542
|
+
__typename?: 'Update';
|
|
7543
|
+
id: string;
|
|
7544
|
+
group: string;
|
|
7545
|
+
message?: string | null;
|
|
7546
|
+
createdAt: any;
|
|
7547
|
+
runtimeVersion: string;
|
|
7548
|
+
platform: string;
|
|
7549
|
+
manifestFragment: string;
|
|
7550
|
+
actor?: {
|
|
7551
|
+
__typename: 'Robot';
|
|
7552
|
+
firstName?: string | null;
|
|
7553
|
+
id: string;
|
|
7554
|
+
} | {
|
|
7555
|
+
__typename: 'User';
|
|
7556
|
+
username: string;
|
|
7557
|
+
id: string;
|
|
7558
|
+
} | null;
|
|
7559
|
+
branch: {
|
|
7560
|
+
__typename?: 'UpdateBranch';
|
|
7561
|
+
id: string;
|
|
7562
|
+
name: string;
|
|
7563
|
+
};
|
|
7564
|
+
}>>;
|
|
7565
|
+
}>;
|
|
6906
7566
|
}>;
|
|
6907
7567
|
};
|
|
6908
7568
|
};
|
|
@@ -6917,10 +7577,22 @@ export declare type EnvironmentSecretsByAppIdQuery = {
|
|
|
6917
7577
|
byId: {
|
|
6918
7578
|
__typename?: 'App';
|
|
6919
7579
|
id: string;
|
|
7580
|
+
ownerAccount: {
|
|
7581
|
+
__typename?: 'Account';
|
|
7582
|
+
id: string;
|
|
7583
|
+
environmentSecrets: Array<{
|
|
7584
|
+
__typename?: 'EnvironmentSecret';
|
|
7585
|
+
id: string;
|
|
7586
|
+
name: string;
|
|
7587
|
+
type: EnvironmentSecretType;
|
|
7588
|
+
createdAt: any;
|
|
7589
|
+
}>;
|
|
7590
|
+
};
|
|
6920
7591
|
environmentSecrets: Array<{
|
|
6921
7592
|
__typename?: 'EnvironmentSecret';
|
|
6922
7593
|
id: string;
|
|
6923
7594
|
name: string;
|
|
7595
|
+
type: EnvironmentSecretType;
|
|
6924
7596
|
createdAt: any;
|
|
6925
7597
|
}>;
|
|
6926
7598
|
};
|
|
@@ -7071,51 +7743,44 @@ export declare type GetAllSubmissionsForAppQuery = {
|
|
|
7071
7743
|
};
|
|
7072
7744
|
};
|
|
7073
7745
|
};
|
|
7074
|
-
export declare type
|
|
7075
|
-
|
|
7076
|
-
limit: Scalars['Int'];
|
|
7077
|
-
offset: Scalars['Int'];
|
|
7746
|
+
export declare type ViewUpdatesByGroupQueryVariables = Exact<{
|
|
7747
|
+
groupId: Scalars['ID'];
|
|
7078
7748
|
}>;
|
|
7079
|
-
export declare type
|
|
7749
|
+
export declare type ViewUpdatesByGroupQuery = {
|
|
7080
7750
|
__typename?: 'RootQuery';
|
|
7081
|
-
|
|
7082
|
-
__typename?: '
|
|
7083
|
-
|
|
7084
|
-
|
|
7751
|
+
updatesByGroup: Array<{
|
|
7752
|
+
__typename?: 'Update';
|
|
7753
|
+
id: string;
|
|
7754
|
+
group: string;
|
|
7755
|
+
message?: string | null;
|
|
7756
|
+
createdAt: any;
|
|
7757
|
+
runtimeVersion: string;
|
|
7758
|
+
platform: string;
|
|
7759
|
+
manifestFragment: string;
|
|
7760
|
+
actor?: {
|
|
7761
|
+
__typename: 'Robot';
|
|
7762
|
+
firstName?: string | null;
|
|
7085
7763
|
id: string;
|
|
7086
|
-
|
|
7087
|
-
|
|
7088
|
-
|
|
7089
|
-
|
|
7090
|
-
|
|
7091
|
-
|
|
7092
|
-
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
__typename?: 'Robot';
|
|
7096
|
-
firstName?: string | null;
|
|
7097
|
-
id: string;
|
|
7098
|
-
} | {
|
|
7099
|
-
__typename?: 'User';
|
|
7100
|
-
username: string;
|
|
7101
|
-
id: string;
|
|
7102
|
-
} | null;
|
|
7103
|
-
branch: {
|
|
7104
|
-
__typename?: 'UpdateBranch';
|
|
7105
|
-
id: string;
|
|
7106
|
-
name: string;
|
|
7107
|
-
};
|
|
7108
|
-
}>;
|
|
7764
|
+
} | {
|
|
7765
|
+
__typename: 'User';
|
|
7766
|
+
username: string;
|
|
7767
|
+
id: string;
|
|
7768
|
+
} | null;
|
|
7769
|
+
branch: {
|
|
7770
|
+
__typename?: 'UpdateBranch';
|
|
7771
|
+
id: string;
|
|
7772
|
+
name: string;
|
|
7109
7773
|
};
|
|
7110
|
-
}
|
|
7774
|
+
}>;
|
|
7111
7775
|
};
|
|
7112
|
-
export declare type
|
|
7776
|
+
export declare type ViewUpdateGroupsOnBranchQueryVariables = Exact<{
|
|
7113
7777
|
appId: Scalars['String'];
|
|
7114
|
-
|
|
7778
|
+
branchName: Scalars['String'];
|
|
7115
7779
|
limit: Scalars['Int'];
|
|
7116
7780
|
offset: Scalars['Int'];
|
|
7781
|
+
filter?: InputMaybe<UpdatesFilter>;
|
|
7117
7782
|
}>;
|
|
7118
|
-
export declare type
|
|
7783
|
+
export declare type ViewUpdateGroupsOnBranchQuery = {
|
|
7119
7784
|
__typename?: 'RootQuery';
|
|
7120
7785
|
app: {
|
|
7121
7786
|
__typename?: 'AppQuery';
|
|
@@ -7125,8 +7790,7 @@ export declare type ViewBranchUpdatesQuery = {
|
|
|
7125
7790
|
updateBranchByName?: {
|
|
7126
7791
|
__typename?: 'UpdateBranch';
|
|
7127
7792
|
id: string;
|
|
7128
|
-
|
|
7129
|
-
updates: Array<{
|
|
7793
|
+
updateGroups: Array<Array<{
|
|
7130
7794
|
__typename?: 'Update';
|
|
7131
7795
|
id: string;
|
|
7132
7796
|
group: string;
|
|
@@ -7136,11 +7800,11 @@ export declare type ViewBranchUpdatesQuery = {
|
|
|
7136
7800
|
platform: string;
|
|
7137
7801
|
manifestFragment: string;
|
|
7138
7802
|
actor?: {
|
|
7139
|
-
__typename
|
|
7803
|
+
__typename: 'Robot';
|
|
7140
7804
|
firstName?: string | null;
|
|
7141
7805
|
id: string;
|
|
7142
7806
|
} | {
|
|
7143
|
-
__typename
|
|
7807
|
+
__typename: 'User';
|
|
7144
7808
|
username: string;
|
|
7145
7809
|
id: string;
|
|
7146
7810
|
} | null;
|
|
@@ -7149,11 +7813,51 @@ export declare type ViewBranchUpdatesQuery = {
|
|
|
7149
7813
|
id: string;
|
|
7150
7814
|
name: string;
|
|
7151
7815
|
};
|
|
7152
|
-
}
|
|
7816
|
+
}>>;
|
|
7153
7817
|
} | null;
|
|
7154
7818
|
};
|
|
7155
7819
|
};
|
|
7156
7820
|
};
|
|
7821
|
+
export declare type ViewUpdateGroupsOnAppQueryVariables = Exact<{
|
|
7822
|
+
appId: Scalars['String'];
|
|
7823
|
+
limit: Scalars['Int'];
|
|
7824
|
+
offset: Scalars['Int'];
|
|
7825
|
+
filter?: InputMaybe<UpdatesFilter>;
|
|
7826
|
+
}>;
|
|
7827
|
+
export declare type ViewUpdateGroupsOnAppQuery = {
|
|
7828
|
+
__typename?: 'RootQuery';
|
|
7829
|
+
app: {
|
|
7830
|
+
__typename?: 'AppQuery';
|
|
7831
|
+
byId: {
|
|
7832
|
+
__typename?: 'App';
|
|
7833
|
+
id: string;
|
|
7834
|
+
updateGroups: Array<Array<{
|
|
7835
|
+
__typename?: 'Update';
|
|
7836
|
+
id: string;
|
|
7837
|
+
group: string;
|
|
7838
|
+
message?: string | null;
|
|
7839
|
+
createdAt: any;
|
|
7840
|
+
runtimeVersion: string;
|
|
7841
|
+
platform: string;
|
|
7842
|
+
manifestFragment: string;
|
|
7843
|
+
actor?: {
|
|
7844
|
+
__typename: 'Robot';
|
|
7845
|
+
firstName?: string | null;
|
|
7846
|
+
id: string;
|
|
7847
|
+
} | {
|
|
7848
|
+
__typename: 'User';
|
|
7849
|
+
username: string;
|
|
7850
|
+
id: string;
|
|
7851
|
+
} | null;
|
|
7852
|
+
branch: {
|
|
7853
|
+
__typename?: 'UpdateBranch';
|
|
7854
|
+
id: string;
|
|
7855
|
+
name: string;
|
|
7856
|
+
};
|
|
7857
|
+
}>>;
|
|
7858
|
+
};
|
|
7859
|
+
};
|
|
7860
|
+
};
|
|
7157
7861
|
export declare type CurrentUserQueryVariables = Exact<{
|
|
7158
7862
|
[key: string]: never;
|
|
7159
7863
|
}>;
|
|
@@ -7168,16 +7872,54 @@ export declare type CurrentUserQuery = {
|
|
|
7168
7872
|
__typename?: 'Account';
|
|
7169
7873
|
id: string;
|
|
7170
7874
|
name: string;
|
|
7875
|
+
users: Array<{
|
|
7876
|
+
__typename?: 'UserPermission';
|
|
7877
|
+
role?: Role | null;
|
|
7878
|
+
actor: {
|
|
7879
|
+
__typename?: 'Robot';
|
|
7880
|
+
id: string;
|
|
7881
|
+
} | {
|
|
7882
|
+
__typename?: 'User';
|
|
7883
|
+
id: string;
|
|
7884
|
+
};
|
|
7885
|
+
}>;
|
|
7171
7886
|
}>;
|
|
7172
7887
|
} | {
|
|
7173
7888
|
__typename: 'User';
|
|
7174
7889
|
username: string;
|
|
7175
7890
|
id: string;
|
|
7176
7891
|
isExpoAdmin: boolean;
|
|
7892
|
+
primaryAccount: {
|
|
7893
|
+
__typename?: 'Account';
|
|
7894
|
+
id: string;
|
|
7895
|
+
name: string;
|
|
7896
|
+
users: Array<{
|
|
7897
|
+
__typename?: 'UserPermission';
|
|
7898
|
+
role?: Role | null;
|
|
7899
|
+
actor: {
|
|
7900
|
+
__typename?: 'Robot';
|
|
7901
|
+
id: string;
|
|
7902
|
+
} | {
|
|
7903
|
+
__typename?: 'User';
|
|
7904
|
+
id: string;
|
|
7905
|
+
};
|
|
7906
|
+
}>;
|
|
7907
|
+
};
|
|
7177
7908
|
accounts: Array<{
|
|
7178
7909
|
__typename?: 'Account';
|
|
7179
7910
|
id: string;
|
|
7180
7911
|
name: string;
|
|
7912
|
+
users: Array<{
|
|
7913
|
+
__typename?: 'UserPermission';
|
|
7914
|
+
role?: Role | null;
|
|
7915
|
+
actor: {
|
|
7916
|
+
__typename?: 'Robot';
|
|
7917
|
+
id: string;
|
|
7918
|
+
} | {
|
|
7919
|
+
__typename?: 'User';
|
|
7920
|
+
id: string;
|
|
7921
|
+
};
|
|
7922
|
+
}>;
|
|
7181
7923
|
}>;
|
|
7182
7924
|
} | null;
|
|
7183
7925
|
};
|
|
@@ -7220,11 +7962,43 @@ export declare type WebhookByIdQuery = {
|
|
|
7220
7962
|
};
|
|
7221
7963
|
};
|
|
7222
7964
|
};
|
|
7965
|
+
export declare type AccountFragment = {
|
|
7966
|
+
__typename?: 'Account';
|
|
7967
|
+
id: string;
|
|
7968
|
+
name: string;
|
|
7969
|
+
users: Array<{
|
|
7970
|
+
__typename?: 'UserPermission';
|
|
7971
|
+
role?: Role | null;
|
|
7972
|
+
actor: {
|
|
7973
|
+
__typename?: 'Robot';
|
|
7974
|
+
id: string;
|
|
7975
|
+
} | {
|
|
7976
|
+
__typename?: 'User';
|
|
7977
|
+
id: string;
|
|
7978
|
+
};
|
|
7979
|
+
}>;
|
|
7980
|
+
};
|
|
7223
7981
|
export declare type AppFragment = {
|
|
7224
7982
|
__typename?: 'App';
|
|
7225
7983
|
id: string;
|
|
7226
7984
|
fullName: string;
|
|
7227
7985
|
slug: string;
|
|
7986
|
+
ownerAccount: {
|
|
7987
|
+
__typename?: 'Account';
|
|
7988
|
+
id: string;
|
|
7989
|
+
name: string;
|
|
7990
|
+
users: Array<{
|
|
7991
|
+
__typename?: 'UserPermission';
|
|
7992
|
+
role?: Role | null;
|
|
7993
|
+
actor: {
|
|
7994
|
+
__typename?: 'Robot';
|
|
7995
|
+
id: string;
|
|
7996
|
+
} | {
|
|
7997
|
+
__typename?: 'User';
|
|
7998
|
+
id: string;
|
|
7999
|
+
};
|
|
8000
|
+
}>;
|
|
8001
|
+
};
|
|
7228
8002
|
};
|
|
7229
8003
|
export declare type BuildFragment = {
|
|
7230
8004
|
__typename?: 'Build';
|
|
@@ -7380,6 +8154,7 @@ export declare type EnvironmentSecretFragment = {
|
|
|
7380
8154
|
__typename?: 'EnvironmentSecret';
|
|
7381
8155
|
id: string;
|
|
7382
8156
|
name: string;
|
|
8157
|
+
type: EnvironmentSecretType;
|
|
7383
8158
|
createdAt: any;
|
|
7384
8159
|
};
|
|
7385
8160
|
export declare type StatuspageServiceFragment = {
|
|
@@ -7430,6 +8205,30 @@ export declare type SubmissionFragment = {
|
|
|
7430
8205
|
message?: string | null;
|
|
7431
8206
|
} | null;
|
|
7432
8207
|
};
|
|
8208
|
+
export declare type UpdateFragment = {
|
|
8209
|
+
__typename?: 'Update';
|
|
8210
|
+
id: string;
|
|
8211
|
+
group: string;
|
|
8212
|
+
message?: string | null;
|
|
8213
|
+
createdAt: any;
|
|
8214
|
+
runtimeVersion: string;
|
|
8215
|
+
platform: string;
|
|
8216
|
+
manifestFragment: string;
|
|
8217
|
+
actor?: {
|
|
8218
|
+
__typename: 'Robot';
|
|
8219
|
+
firstName?: string | null;
|
|
8220
|
+
id: string;
|
|
8221
|
+
} | {
|
|
8222
|
+
__typename: 'User';
|
|
8223
|
+
username: string;
|
|
8224
|
+
id: string;
|
|
8225
|
+
} | null;
|
|
8226
|
+
branch: {
|
|
8227
|
+
__typename?: 'UpdateBranch';
|
|
8228
|
+
id: string;
|
|
8229
|
+
name: string;
|
|
8230
|
+
};
|
|
8231
|
+
};
|
|
7433
8232
|
export declare type UpdateBranchFragment = {
|
|
7434
8233
|
__typename?: 'UpdateBranch';
|
|
7435
8234
|
id: string;
|
|
@@ -7437,11 +8236,12 @@ export declare type UpdateBranchFragment = {
|
|
|
7437
8236
|
updates: Array<{
|
|
7438
8237
|
__typename?: 'Update';
|
|
7439
8238
|
id: string;
|
|
7440
|
-
|
|
8239
|
+
group: string;
|
|
7441
8240
|
message?: string | null;
|
|
8241
|
+
createdAt: any;
|
|
7442
8242
|
runtimeVersion: string;
|
|
7443
|
-
group: string;
|
|
7444
8243
|
platform: string;
|
|
8244
|
+
manifestFragment: string;
|
|
7445
8245
|
actor?: {
|
|
7446
8246
|
__typename: 'Robot';
|
|
7447
8247
|
firstName?: string | null;
|
|
@@ -7451,6 +8251,11 @@ export declare type UpdateBranchFragment = {
|
|
|
7451
8251
|
username: string;
|
|
7452
8252
|
id: string;
|
|
7453
8253
|
} | null;
|
|
8254
|
+
branch: {
|
|
8255
|
+
__typename?: 'UpdateBranch';
|
|
8256
|
+
id: string;
|
|
8257
|
+
name: string;
|
|
8258
|
+
};
|
|
7454
8259
|
}>;
|
|
7455
8260
|
};
|
|
7456
8261
|
export declare type WebhookFragment = {
|
|
@@ -7492,6 +8297,22 @@ export declare type CommonAndroidAppCredentialsFragment = {
|
|
|
7492
8297
|
id: string;
|
|
7493
8298
|
fullName: string;
|
|
7494
8299
|
slug: string;
|
|
8300
|
+
ownerAccount: {
|
|
8301
|
+
__typename?: 'Account';
|
|
8302
|
+
id: string;
|
|
8303
|
+
name: string;
|
|
8304
|
+
users: Array<{
|
|
8305
|
+
__typename?: 'UserPermission';
|
|
8306
|
+
role?: Role | null;
|
|
8307
|
+
actor: {
|
|
8308
|
+
__typename?: 'Robot';
|
|
8309
|
+
id: string;
|
|
8310
|
+
} | {
|
|
8311
|
+
__typename?: 'User';
|
|
8312
|
+
id: string;
|
|
8313
|
+
};
|
|
8314
|
+
}>;
|
|
8315
|
+
};
|
|
7495
8316
|
};
|
|
7496
8317
|
androidFcm?: {
|
|
7497
8318
|
__typename?: 'AndroidFcm';
|
|
@@ -7637,6 +8458,22 @@ export declare type AppleDistributionCertificateFragment = {
|
|
|
7637
8458
|
id: string;
|
|
7638
8459
|
fullName: string;
|
|
7639
8460
|
slug: string;
|
|
8461
|
+
ownerAccount: {
|
|
8462
|
+
__typename?: 'Account';
|
|
8463
|
+
id: string;
|
|
8464
|
+
name: string;
|
|
8465
|
+
users: Array<{
|
|
8466
|
+
__typename?: 'UserPermission';
|
|
8467
|
+
role?: Role | null;
|
|
8468
|
+
actor: {
|
|
8469
|
+
__typename?: 'Robot';
|
|
8470
|
+
id: string;
|
|
8471
|
+
} | {
|
|
8472
|
+
__typename?: 'User';
|
|
8473
|
+
id: string;
|
|
8474
|
+
};
|
|
8475
|
+
}>;
|
|
8476
|
+
};
|
|
7640
8477
|
};
|
|
7641
8478
|
appleAppIdentifier: {
|
|
7642
8479
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7698,6 +8535,22 @@ export declare type ApplePushKeyFragment = {
|
|
|
7698
8535
|
id: string;
|
|
7699
8536
|
fullName: string;
|
|
7700
8537
|
slug: string;
|
|
8538
|
+
ownerAccount: {
|
|
8539
|
+
__typename?: 'Account';
|
|
8540
|
+
id: string;
|
|
8541
|
+
name: string;
|
|
8542
|
+
users: Array<{
|
|
8543
|
+
__typename?: 'UserPermission';
|
|
8544
|
+
role?: Role | null;
|
|
8545
|
+
actor: {
|
|
8546
|
+
__typename?: 'Robot';
|
|
8547
|
+
id: string;
|
|
8548
|
+
} | {
|
|
8549
|
+
__typename?: 'User';
|
|
8550
|
+
id: string;
|
|
8551
|
+
};
|
|
8552
|
+
}>;
|
|
8553
|
+
};
|
|
7701
8554
|
};
|
|
7702
8555
|
appleAppIdentifier: {
|
|
7703
8556
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7753,6 +8606,22 @@ export declare type IosAppBuildCredentialsFragment = {
|
|
|
7753
8606
|
id: string;
|
|
7754
8607
|
fullName: string;
|
|
7755
8608
|
slug: string;
|
|
8609
|
+
ownerAccount: {
|
|
8610
|
+
__typename?: 'Account';
|
|
8611
|
+
id: string;
|
|
8612
|
+
name: string;
|
|
8613
|
+
users: Array<{
|
|
8614
|
+
__typename?: 'UserPermission';
|
|
8615
|
+
role?: Role | null;
|
|
8616
|
+
actor: {
|
|
8617
|
+
__typename?: 'Robot';
|
|
8618
|
+
id: string;
|
|
8619
|
+
} | {
|
|
8620
|
+
__typename?: 'User';
|
|
8621
|
+
id: string;
|
|
8622
|
+
};
|
|
8623
|
+
}>;
|
|
8624
|
+
};
|
|
7756
8625
|
};
|
|
7757
8626
|
appleAppIdentifier: {
|
|
7758
8627
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7799,6 +8668,22 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
7799
8668
|
id: string;
|
|
7800
8669
|
fullName: string;
|
|
7801
8670
|
slug: string;
|
|
8671
|
+
ownerAccount: {
|
|
8672
|
+
__typename?: 'Account';
|
|
8673
|
+
id: string;
|
|
8674
|
+
name: string;
|
|
8675
|
+
users: Array<{
|
|
8676
|
+
__typename?: 'UserPermission';
|
|
8677
|
+
role?: Role | null;
|
|
8678
|
+
actor: {
|
|
8679
|
+
__typename?: 'Robot';
|
|
8680
|
+
id: string;
|
|
8681
|
+
} | {
|
|
8682
|
+
__typename?: 'User';
|
|
8683
|
+
id: string;
|
|
8684
|
+
};
|
|
8685
|
+
}>;
|
|
8686
|
+
};
|
|
7802
8687
|
};
|
|
7803
8688
|
appleTeam?: {
|
|
7804
8689
|
__typename?: 'AppleTeam';
|
|
@@ -7830,6 +8715,22 @@ export declare type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
7830
8715
|
id: string;
|
|
7831
8716
|
fullName: string;
|
|
7832
8717
|
slug: string;
|
|
8718
|
+
ownerAccount: {
|
|
8719
|
+
__typename?: 'Account';
|
|
8720
|
+
id: string;
|
|
8721
|
+
name: string;
|
|
8722
|
+
users: Array<{
|
|
8723
|
+
__typename?: 'UserPermission';
|
|
8724
|
+
role?: Role | null;
|
|
8725
|
+
actor: {
|
|
8726
|
+
__typename?: 'Robot';
|
|
8727
|
+
id: string;
|
|
8728
|
+
} | {
|
|
8729
|
+
__typename?: 'User';
|
|
8730
|
+
id: string;
|
|
8731
|
+
};
|
|
8732
|
+
}>;
|
|
8733
|
+
};
|
|
7833
8734
|
};
|
|
7834
8735
|
appleAppIdentifier: {
|
|
7835
8736
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7889,6 +8790,22 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
7889
8790
|
id: string;
|
|
7890
8791
|
fullName: string;
|
|
7891
8792
|
slug: string;
|
|
8793
|
+
ownerAccount: {
|
|
8794
|
+
__typename?: 'Account';
|
|
8795
|
+
id: string;
|
|
8796
|
+
name: string;
|
|
8797
|
+
users: Array<{
|
|
8798
|
+
__typename?: 'UserPermission';
|
|
8799
|
+
role?: Role | null;
|
|
8800
|
+
actor: {
|
|
8801
|
+
__typename?: 'Robot';
|
|
8802
|
+
id: string;
|
|
8803
|
+
} | {
|
|
8804
|
+
__typename?: 'User';
|
|
8805
|
+
id: string;
|
|
8806
|
+
};
|
|
8807
|
+
}>;
|
|
8808
|
+
};
|
|
7892
8809
|
};
|
|
7893
8810
|
appleAppIdentifier: {
|
|
7894
8811
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7932,6 +8849,22 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
7932
8849
|
id: string;
|
|
7933
8850
|
fullName: string;
|
|
7934
8851
|
slug: string;
|
|
8852
|
+
ownerAccount: {
|
|
8853
|
+
__typename?: 'Account';
|
|
8854
|
+
id: string;
|
|
8855
|
+
name: string;
|
|
8856
|
+
users: Array<{
|
|
8857
|
+
__typename?: 'UserPermission';
|
|
8858
|
+
role?: Role | null;
|
|
8859
|
+
actor: {
|
|
8860
|
+
__typename?: 'Robot';
|
|
8861
|
+
id: string;
|
|
8862
|
+
} | {
|
|
8863
|
+
__typename?: 'User';
|
|
8864
|
+
id: string;
|
|
8865
|
+
};
|
|
8866
|
+
}>;
|
|
8867
|
+
};
|
|
7935
8868
|
};
|
|
7936
8869
|
appleTeam?: {
|
|
7937
8870
|
__typename?: 'AppleTeam';
|
|
@@ -7963,6 +8896,22 @@ export declare type CommonIosAppCredentialsFragment = {
|
|
|
7963
8896
|
id: string;
|
|
7964
8897
|
fullName: string;
|
|
7965
8898
|
slug: string;
|
|
8899
|
+
ownerAccount: {
|
|
8900
|
+
__typename?: 'Account';
|
|
8901
|
+
id: string;
|
|
8902
|
+
name: string;
|
|
8903
|
+
users: Array<{
|
|
8904
|
+
__typename?: 'UserPermission';
|
|
8905
|
+
role?: Role | null;
|
|
8906
|
+
actor: {
|
|
8907
|
+
__typename?: 'Robot';
|
|
8908
|
+
id: string;
|
|
8909
|
+
} | {
|
|
8910
|
+
__typename?: 'User';
|
|
8911
|
+
id: string;
|
|
8912
|
+
};
|
|
8913
|
+
}>;
|
|
8914
|
+
};
|
|
7966
8915
|
};
|
|
7967
8916
|
appleAppIdentifier: {
|
|
7968
8917
|
__typename?: 'AppleAppIdentifier';
|