eas-cli 8.0.0 → 9.0.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 +62 -60
- package/build/build/android/build.js +1 -0
- package/build/build/android/graphql.js +0 -1
- package/build/build/android/prepareJob.js +0 -2
- package/build/build/android/syncProjectConfiguration.d.ts +3 -1
- package/build/build/android/syncProjectConfiguration.js +2 -2
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +2 -1
- package/build/build/ios/build.js +1 -0
- package/build/build/ios/graphql.js +0 -1
- package/build/build/ios/prepareJob.js +0 -2
- package/build/build/ios/syncProjectConfiguration.d.ts +3 -1
- package/build/build/ios/syncProjectConfiguration.js +2 -2
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +11 -25
- package/build/build/runBuildAndSubmit.d.ts +1 -0
- package/build/build/runBuildAndSubmit.js +4 -3
- package/build/build/utils/formatBuild.js +0 -4
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +11 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +8 -3
- package/build/commands/build/configure.js +8 -2
- package/build/commands/build/index.d.ts +1 -0
- package/build/commands/build/index.js +5 -0
- package/build/commands/build/inspect.js +1 -0
- package/build/commands/build/internal.js +1 -0
- package/build/commands/credentials/configure-build.js +1 -1
- package/build/commands/project/onboarding.d.ts +15 -0
- package/build/commands/project/onboarding.js +154 -0
- package/build/commands/update/configure.js +1 -0
- package/build/commands/update/index.js +2 -0
- package/build/commands/update/roll-back-to-embedded.js +2 -0
- package/build/credentials/context.d.ts +2 -0
- package/build/credentials/context.js +3 -1
- package/build/credentials/errors.d.ts +6 -0
- package/build/credentials/errors.js +14 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +9 -4
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +1 -0
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +22 -5
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +17 -5
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +2 -1
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +4 -3
- package/build/credentials/manager/SetUpIosBuildCredentials.js +1 -1
- package/build/graphql/generated.d.ts +648 -184
- package/build/graphql/generated.js +63 -17
- package/build/graphql/mutations/UserPreferencesMutation.d.ts +9 -0
- package/build/graphql/mutations/UserPreferencesMutation.js +44 -0
- package/build/graphql/queries/UserQuery.js +10 -0
- package/build/graphql/types/App.js +7 -0
- package/build/graphql/types/Build.js +0 -1
- package/build/onboarding/git.d.ts +10 -0
- package/build/onboarding/git.js +57 -0
- package/build/onboarding/installDependencies.d.ts +3 -0
- package/build/onboarding/installDependencies.js +20 -0
- package/build/onboarding/runCommand.d.ts +7 -0
- package/build/onboarding/runCommand.js +41 -0
- package/build/project/projectUtils.d.ts +0 -1
- package/build/project/projectUtils.js +1 -12
- package/build/project/publish.d.ts +3 -2
- package/build/project/publish.js +4 -10
- package/build/project/resolveRuntimeVersionAsync.d.ts +3 -2
- package/build/project/resolveRuntimeVersionAsync.js +2 -9
- package/build/rollout/actions/CreateRollout.js +1 -0
- package/build/update/android/UpdatesModule.d.ts +7 -3
- package/build/update/android/UpdatesModule.js +3 -19
- package/build/update/configure.d.ts +3 -2
- package/build/update/configure.js +17 -5
- package/build/update/ios/UpdatesModule.d.ts +8 -3
- package/build/update/ios/UpdatesModule.js +3 -20
- package/build/update/utils.d.ts +0 -2
- package/build/update/utils.js +2 -22
- package/build/utils/expoUpdatesCli.d.ts +4 -1
- package/build/utils/expoUpdatesCli.js +5 -2
- package/build/vcs/clients/git.d.ts +2 -0
- package/build/vcs/clients/git.js +52 -27
- package/build/vcs/git.d.ts +6 -4
- package/build/vcs/git.js +13 -6
- package/oclif.manifest.json +30 -1
- package/package.json +5 -5
|
@@ -51,6 +51,10 @@ export type Scalars = {
|
|
|
51
51
|
input: any;
|
|
52
52
|
output: any;
|
|
53
53
|
};
|
|
54
|
+
DevDomainName: {
|
|
55
|
+
input: any;
|
|
56
|
+
output: any;
|
|
57
|
+
};
|
|
54
58
|
JSON: {
|
|
55
59
|
input: any;
|
|
56
60
|
output: any;
|
|
@@ -138,13 +142,6 @@ export type Account = {
|
|
|
138
142
|
/** Billing information. Only visible to members with the ADMIN or OWNER role. */
|
|
139
143
|
billing?: Maybe<Billing>;
|
|
140
144
|
billingPeriod: BillingPeriod;
|
|
141
|
-
/** Build Jobs associated with this account */
|
|
142
|
-
buildJobs: Array<BuildJob>;
|
|
143
|
-
/**
|
|
144
|
-
* Coalesced Build (EAS) or BuildJob (Classic) for all apps belonging to this account.
|
|
145
|
-
* @deprecated Use activityTimelineProjectActivities with filterTypes instead
|
|
146
|
-
*/
|
|
147
|
-
buildOrBuildJobs: Array<BuildOrBuildJob>;
|
|
148
145
|
/** (EAS Build) Builds associated with this account */
|
|
149
146
|
builds: Array<Build>;
|
|
150
147
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -330,23 +327,6 @@ export type AccountAppsPaginatedArgs = {
|
|
|
330
327
|
export type AccountBillingPeriodArgs = {
|
|
331
328
|
date: Scalars['DateTime']['input'];
|
|
332
329
|
};
|
|
333
|
-
/**
|
|
334
|
-
* An account is a container owning projects, credentials, billing and other organization
|
|
335
|
-
* data and settings. Actors may own and be members of accounts.
|
|
336
|
-
*/
|
|
337
|
-
export type AccountBuildJobsArgs = {
|
|
338
|
-
limit: Scalars['Int']['input'];
|
|
339
|
-
offset: Scalars['Int']['input'];
|
|
340
|
-
status?: InputMaybe<BuildJobStatus>;
|
|
341
|
-
};
|
|
342
|
-
/**
|
|
343
|
-
* An account is a container owning projects, credentials, billing and other organization
|
|
344
|
-
* data and settings. Actors may own and be members of accounts.
|
|
345
|
-
*/
|
|
346
|
-
export type AccountBuildOrBuildJobsArgs = {
|
|
347
|
-
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
348
|
-
limit: Scalars['Int']['input'];
|
|
349
|
-
};
|
|
350
330
|
/**
|
|
351
331
|
* An account is a container owning projects, credentials, billing and other organization
|
|
352
332
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -596,7 +576,7 @@ export type AccountQueryByNameArgs = {
|
|
|
596
576
|
export type AccountSsoConfiguration = {
|
|
597
577
|
__typename?: 'AccountSSOConfiguration';
|
|
598
578
|
authProtocol: AuthProtocolType;
|
|
599
|
-
authProviderIdentifier:
|
|
579
|
+
authProviderIdentifier: AuthProviderIdentifier;
|
|
600
580
|
clientIdentifier: Scalars['String']['output'];
|
|
601
581
|
clientSecret: Scalars['String']['output'];
|
|
602
582
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -606,7 +586,7 @@ export type AccountSsoConfiguration = {
|
|
|
606
586
|
};
|
|
607
587
|
export type AccountSsoConfigurationData = {
|
|
608
588
|
authProtocol: AuthProtocolType;
|
|
609
|
-
authProviderIdentifier:
|
|
589
|
+
authProviderIdentifier: AuthProviderIdentifier;
|
|
610
590
|
clientIdentifier: Scalars['String']['input'];
|
|
611
591
|
clientSecret: Scalars['String']['input'];
|
|
612
592
|
issuer: Scalars['String']['input'];
|
|
@@ -635,7 +615,7 @@ export type AccountSsoConfigurationMutationUpdateAccountSsoConfigurationArgs = {
|
|
|
635
615
|
export type AccountSsoConfigurationPublicData = {
|
|
636
616
|
__typename?: 'AccountSSOConfigurationPublicData';
|
|
637
617
|
authProtocol: AuthProtocolType;
|
|
638
|
-
authProviderIdentifier:
|
|
618
|
+
authProviderIdentifier: AuthProviderIdentifier;
|
|
639
619
|
authorizationUrl: Scalars['String']['output'];
|
|
640
620
|
id: Scalars['ID']['output'];
|
|
641
621
|
issuer: Scalars['String']['output'];
|
|
@@ -650,8 +630,9 @@ export type AccountSsoConfigurationPublicDataQueryPublicDataByAccountNameArgs =
|
|
|
650
630
|
};
|
|
651
631
|
export type AccountUsageEasBuildMetadata = {
|
|
652
632
|
__typename?: 'AccountUsageEASBuildMetadata';
|
|
653
|
-
billingResourceClass
|
|
654
|
-
platform
|
|
633
|
+
billingResourceClass?: Maybe<EasBuildBillingResourceClass>;
|
|
634
|
+
platform?: Maybe<AppPlatform>;
|
|
635
|
+
waiverType?: Maybe<EasBuildWaiverType>;
|
|
655
636
|
};
|
|
656
637
|
export type AccountUsageEasJobsMetadata = {
|
|
657
638
|
__typename?: 'AccountUsageEASJobsMetadata';
|
|
@@ -688,7 +669,6 @@ export type ActivityTimelineProjectActivity = {
|
|
|
688
669
|
};
|
|
689
670
|
export declare enum ActivityTimelineProjectActivityType {
|
|
690
671
|
Build = "BUILD",
|
|
691
|
-
BuildJob = "BUILD_JOB",
|
|
692
672
|
Submission = "SUBMISSION",
|
|
693
673
|
Update = "UPDATE"
|
|
694
674
|
}
|
|
@@ -1079,12 +1059,6 @@ export type App = Project & {
|
|
|
1079
1059
|
appStoreUrl?: Maybe<Scalars['String']['output']>;
|
|
1080
1060
|
assetLimitPerUpdateGroup: Scalars['Int']['output'];
|
|
1081
1061
|
branchesPaginated: AppBranchesConnection;
|
|
1082
|
-
buildJobs: Array<BuildJob>;
|
|
1083
|
-
/**
|
|
1084
|
-
* Coalesced Build (EAS) or BuildJob (Classic) items for this app.
|
|
1085
|
-
* @deprecated Use activityTimelineProjectActivities with filterTypes instead
|
|
1086
|
-
*/
|
|
1087
|
-
buildOrBuildJobs: Array<BuildOrBuildJob>;
|
|
1088
1062
|
/** (EAS Build) Builds associated with this app */
|
|
1089
1063
|
builds: Array<Build>;
|
|
1090
1064
|
buildsPaginated: AppBuildsConnection;
|
|
@@ -1099,10 +1073,12 @@ export type App = Project & {
|
|
|
1099
1073
|
deployments: DeploymentsConnection;
|
|
1100
1074
|
/** @deprecated Classic updates have been deprecated. */
|
|
1101
1075
|
description: Scalars['String']['output'];
|
|
1076
|
+
devDomainName?: Maybe<AppDevDomainName>;
|
|
1102
1077
|
/** Environment secrets for an app */
|
|
1103
1078
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
1104
1079
|
fullName: Scalars['String']['output'];
|
|
1105
1080
|
githubBuildTriggers: Array<GitHubBuildTrigger>;
|
|
1081
|
+
githubJobRunTriggers: Array<GitHubJobRunTrigger>;
|
|
1106
1082
|
githubRepository?: Maybe<GitHubRepository>;
|
|
1107
1083
|
githubRepositorySettings?: Maybe<GitHubRepositorySettings>;
|
|
1108
1084
|
/**
|
|
@@ -1177,6 +1153,7 @@ export type App = Project & {
|
|
|
1177
1153
|
releaseChannels: Array<Scalars['String']['output']>;
|
|
1178
1154
|
/** @deprecated Legacy access tokens are deprecated */
|
|
1179
1155
|
requiresAccessTokenForPushSecurity: Scalars['Boolean']['output'];
|
|
1156
|
+
resourceClassExperiment?: Maybe<ResourceClassExperiment>;
|
|
1180
1157
|
/** Runtimes associated with this app */
|
|
1181
1158
|
runtimes: RuntimesConnection;
|
|
1182
1159
|
scopeKey: Scalars['String']['output'];
|
|
@@ -1240,17 +1217,6 @@ export type AppBranchesPaginatedArgs = {
|
|
|
1240
1217
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1241
1218
|
};
|
|
1242
1219
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1243
|
-
export type AppBuildJobsArgs = {
|
|
1244
|
-
limit: Scalars['Int']['input'];
|
|
1245
|
-
offset: Scalars['Int']['input'];
|
|
1246
|
-
status?: InputMaybe<BuildStatus>;
|
|
1247
|
-
};
|
|
1248
|
-
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1249
|
-
export type AppBuildOrBuildJobsArgs = {
|
|
1250
|
-
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1251
|
-
limit: Scalars['Int']['input'];
|
|
1252
|
-
};
|
|
1253
|
-
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1254
1220
|
export type AppBuildsArgs = {
|
|
1255
1221
|
filter?: InputMaybe<BuildFilter>;
|
|
1256
1222
|
limit: Scalars['Int']['input'];
|
|
@@ -1413,6 +1379,27 @@ export type AppDataInput = {
|
|
|
1413
1379
|
internalDistributionBuildPrivacy?: InputMaybe<AppInternalDistributionBuildPrivacy>;
|
|
1414
1380
|
privacy?: InputMaybe<Scalars['String']['input']>;
|
|
1415
1381
|
};
|
|
1382
|
+
export type AppDevDomainName = {
|
|
1383
|
+
__typename?: 'AppDevDomainName';
|
|
1384
|
+
app?: Maybe<App>;
|
|
1385
|
+
id: Scalars['ID']['output'];
|
|
1386
|
+
name: Scalars['DevDomainName']['output'];
|
|
1387
|
+
};
|
|
1388
|
+
export type AppDevDomainNameMutation = {
|
|
1389
|
+
__typename?: 'AppDevDomainNameMutation';
|
|
1390
|
+
/** Creates a DevDomainName assigning it to an app */
|
|
1391
|
+
assignDevDomainName: AppDevDomainName;
|
|
1392
|
+
/** Updates a DevDomainName for a given app */
|
|
1393
|
+
changeDevDomainName: AppDevDomainName;
|
|
1394
|
+
};
|
|
1395
|
+
export type AppDevDomainNameMutationAssignDevDomainNameArgs = {
|
|
1396
|
+
appId: Scalars['ID']['input'];
|
|
1397
|
+
name: Scalars['DevDomainName']['input'];
|
|
1398
|
+
};
|
|
1399
|
+
export type AppDevDomainNameMutationChangeDevDomainNameArgs = {
|
|
1400
|
+
appId: Scalars['ID']['input'];
|
|
1401
|
+
name: Scalars['DevDomainName']['input'];
|
|
1402
|
+
};
|
|
1416
1403
|
export type AppIcon = {
|
|
1417
1404
|
__typename?: 'AppIcon';
|
|
1418
1405
|
/** @deprecated No longer supported */
|
|
@@ -1462,6 +1449,8 @@ export type AppMutation = {
|
|
|
1462
1449
|
setAppInfo: App;
|
|
1463
1450
|
/** Require api token to send push notifs for experience */
|
|
1464
1451
|
setPushSecurityEnabled: App;
|
|
1452
|
+
/** Set resource class experiment for app */
|
|
1453
|
+
setResourceClassExperiment: App;
|
|
1465
1454
|
};
|
|
1466
1455
|
export type AppMutationCreateAppArgs = {
|
|
1467
1456
|
appInput: AppInput;
|
|
@@ -1481,6 +1470,10 @@ export type AppMutationSetPushSecurityEnabledArgs = {
|
|
|
1481
1470
|
appId: Scalars['ID']['input'];
|
|
1482
1471
|
pushSecurityEnabled: Scalars['Boolean']['input'];
|
|
1483
1472
|
};
|
|
1473
|
+
export type AppMutationSetResourceClassExperimentArgs = {
|
|
1474
|
+
appId: Scalars['ID']['input'];
|
|
1475
|
+
resourceClassExperiment?: InputMaybe<ResourceClassExperiment>;
|
|
1476
|
+
};
|
|
1484
1477
|
export type AppNotificationSubscriptionInput = {
|
|
1485
1478
|
appId: Scalars['ID']['input'];
|
|
1486
1479
|
event: NotificationEvent;
|
|
@@ -1516,6 +1509,8 @@ export type AppQuery = {
|
|
|
1516
1509
|
* @deprecated App directory no longer supported
|
|
1517
1510
|
*/
|
|
1518
1511
|
all: Array<App>;
|
|
1512
|
+
/** Look up app by dev domain name, if one has been created */
|
|
1513
|
+
byDevDomainName: App;
|
|
1519
1514
|
byFullName: App;
|
|
1520
1515
|
/** Look up app by app id */
|
|
1521
1516
|
byId: App;
|
|
@@ -1526,6 +1521,9 @@ export type AppQueryAllArgs = {
|
|
|
1526
1521
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1527
1522
|
sort: AppSort;
|
|
1528
1523
|
};
|
|
1524
|
+
export type AppQueryByDevDomainNameArgs = {
|
|
1525
|
+
name: Scalars['DevDomainName']['input'];
|
|
1526
|
+
};
|
|
1529
1527
|
export type AppQueryByFullNameArgs = {
|
|
1530
1528
|
fullName: Scalars['String']['input'];
|
|
1531
1529
|
};
|
|
@@ -1577,6 +1575,8 @@ export type AppStoreConnectApiKeyMutation = {
|
|
|
1577
1575
|
createAppStoreConnectApiKey: AppStoreConnectApiKey;
|
|
1578
1576
|
/** Delete an App Store Connect Api Key */
|
|
1579
1577
|
deleteAppStoreConnectApiKey: DeleteAppStoreConnectApiKeyResult;
|
|
1578
|
+
/** Update an App Store Connect Api Key for an Apple Team */
|
|
1579
|
+
updateAppStoreConnectApiKey: AppStoreConnectApiKey;
|
|
1580
1580
|
};
|
|
1581
1581
|
export type AppStoreConnectApiKeyMutationCreateAppStoreConnectApiKeyArgs = {
|
|
1582
1582
|
accountId: Scalars['ID']['input'];
|
|
@@ -1585,6 +1585,13 @@ export type AppStoreConnectApiKeyMutationCreateAppStoreConnectApiKeyArgs = {
|
|
|
1585
1585
|
export type AppStoreConnectApiKeyMutationDeleteAppStoreConnectApiKeyArgs = {
|
|
1586
1586
|
id: Scalars['ID']['input'];
|
|
1587
1587
|
};
|
|
1588
|
+
export type AppStoreConnectApiKeyMutationUpdateAppStoreConnectApiKeyArgs = {
|
|
1589
|
+
appStoreConnectApiKeyUpdateInput: AppStoreConnectApiKeyUpdateInput;
|
|
1590
|
+
id: Scalars['ID']['input'];
|
|
1591
|
+
};
|
|
1592
|
+
export type AppStoreConnectApiKeyUpdateInput = {
|
|
1593
|
+
appleTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
1594
|
+
};
|
|
1588
1595
|
export declare enum AppStoreConnectUserRole {
|
|
1589
1596
|
AccessToReports = "ACCESS_TO_REPORTS",
|
|
1590
1597
|
AccountHolder = "ACCOUNT_HOLDER",
|
|
@@ -1893,6 +1900,7 @@ export type AppleTeam = {
|
|
|
1893
1900
|
applePushKeys: Array<ApplePushKey>;
|
|
1894
1901
|
appleTeamIdentifier: Scalars['String']['output'];
|
|
1895
1902
|
appleTeamName?: Maybe<Scalars['String']['output']>;
|
|
1903
|
+
appleTeamType?: Maybe<AppleTeamType>;
|
|
1896
1904
|
id: Scalars['ID']['output'];
|
|
1897
1905
|
};
|
|
1898
1906
|
export type AppleTeamAppleAppIdentifiersArgs = {
|
|
@@ -1911,16 +1919,23 @@ export type AppleTeamFilterInput = {
|
|
|
1911
1919
|
export type AppleTeamInput = {
|
|
1912
1920
|
appleTeamIdentifier: Scalars['String']['input'];
|
|
1913
1921
|
appleTeamName?: InputMaybe<Scalars['String']['input']>;
|
|
1922
|
+
appleTeamType?: InputMaybe<AppleTeamType>;
|
|
1914
1923
|
};
|
|
1915
1924
|
export type AppleTeamMutation = {
|
|
1916
1925
|
__typename?: 'AppleTeamMutation';
|
|
1917
1926
|
/** Create an Apple Team */
|
|
1918
1927
|
createAppleTeam: AppleTeam;
|
|
1928
|
+
/** Update an Apple Team */
|
|
1929
|
+
updateAppleTeam: AppleTeam;
|
|
1919
1930
|
};
|
|
1920
1931
|
export type AppleTeamMutationCreateAppleTeamArgs = {
|
|
1921
1932
|
accountId: Scalars['ID']['input'];
|
|
1922
1933
|
appleTeamInput: AppleTeamInput;
|
|
1923
1934
|
};
|
|
1935
|
+
export type AppleTeamMutationUpdateAppleTeamArgs = {
|
|
1936
|
+
appleTeamUpdateInput: AppleTeamUpdateInput;
|
|
1937
|
+
id: Scalars['ID']['input'];
|
|
1938
|
+
};
|
|
1924
1939
|
export type AppleTeamQuery = {
|
|
1925
1940
|
__typename?: 'AppleTeamQuery';
|
|
1926
1941
|
byAppleTeamIdentifier?: Maybe<AppleTeam>;
|
|
@@ -1929,6 +1944,15 @@ export type AppleTeamQueryByAppleTeamIdentifierArgs = {
|
|
|
1929
1944
|
accountId: Scalars['ID']['input'];
|
|
1930
1945
|
identifier: Scalars['String']['input'];
|
|
1931
1946
|
};
|
|
1947
|
+
export declare enum AppleTeamType {
|
|
1948
|
+
CompanyOrOrganization = "COMPANY_OR_ORGANIZATION",
|
|
1949
|
+
Individual = "INDIVIDUAL",
|
|
1950
|
+
InHouse = "IN_HOUSE"
|
|
1951
|
+
}
|
|
1952
|
+
export type AppleTeamUpdateInput = {
|
|
1953
|
+
appleTeamName?: InputMaybe<Scalars['String']['input']>;
|
|
1954
|
+
appleTeamType?: InputMaybe<AppleTeamType>;
|
|
1955
|
+
};
|
|
1932
1956
|
export declare enum AppsFilter {
|
|
1933
1957
|
/** Featured Projects */
|
|
1934
1958
|
Featured = "FEATURED",
|
|
@@ -1975,6 +1999,7 @@ export type AuditLog = {
|
|
|
1975
1999
|
actor?: Maybe<Actor>;
|
|
1976
2000
|
createdAt: Scalars['DateTime']['output'];
|
|
1977
2001
|
id: Scalars['ID']['output'];
|
|
2002
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
1978
2003
|
targetEntityId: Scalars['ID']['output'];
|
|
1979
2004
|
targetEntityMutationType: TargetEntityMutationType;
|
|
1980
2005
|
targetEntityTableName: Scalars['String']['output'];
|
|
@@ -1999,6 +2024,12 @@ export type AuditLogQueryByIdArgs = {
|
|
|
1999
2024
|
export declare enum AuthProtocolType {
|
|
2000
2025
|
Oidc = "OIDC"
|
|
2001
2026
|
}
|
|
2027
|
+
export declare enum AuthProviderIdentifier {
|
|
2028
|
+
GoogleWs = "GOOGLE_WS",
|
|
2029
|
+
MsEntraId = "MS_ENTRA_ID",
|
|
2030
|
+
Okta = "OKTA",
|
|
2031
|
+
OneLogin = "ONE_LOGIN"
|
|
2032
|
+
}
|
|
2002
2033
|
export type BackgroundJobReceipt = {
|
|
2003
2034
|
__typename?: 'BackgroundJobReceipt';
|
|
2004
2035
|
account: Account;
|
|
@@ -2190,11 +2221,6 @@ export type BuildAnnotationsQueryAllArgs = {
|
|
|
2190
2221
|
export type BuildAnnotationsQueryByIdArgs = {
|
|
2191
2222
|
buildAnnotationId: Scalars['ID']['input'];
|
|
2192
2223
|
};
|
|
2193
|
-
export type BuildArtifact = {
|
|
2194
|
-
__typename?: 'BuildArtifact';
|
|
2195
|
-
manifestPlistUrl?: Maybe<Scalars['String']['output']>;
|
|
2196
|
-
url: Scalars['String']['output'];
|
|
2197
|
-
};
|
|
2198
2224
|
export type BuildArtifacts = {
|
|
2199
2225
|
__typename?: 'BuildArtifacts';
|
|
2200
2226
|
applicationArchiveUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2246,64 +2272,6 @@ export declare enum BuildIosEnterpriseProvisioning {
|
|
|
2246
2272
|
Adhoc = "ADHOC",
|
|
2247
2273
|
Universal = "UNIVERSAL"
|
|
2248
2274
|
}
|
|
2249
|
-
/** Represents an Standalone App build job */
|
|
2250
|
-
export type BuildJob = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
2251
|
-
__typename?: 'BuildJob';
|
|
2252
|
-
accountUserActor?: Maybe<UserActor>;
|
|
2253
|
-
activityTimestamp: Scalars['DateTime']['output'];
|
|
2254
|
-
actor?: Maybe<Actor>;
|
|
2255
|
-
app?: Maybe<App>;
|
|
2256
|
-
artifacts?: Maybe<BuildArtifact>;
|
|
2257
|
-
config?: Maybe<Scalars['JSON']['output']>;
|
|
2258
|
-
created?: Maybe<Scalars['DateTime']['output']>;
|
|
2259
|
-
expirationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
2260
|
-
fullExperienceName?: Maybe<Scalars['String']['output']>;
|
|
2261
|
-
id: Scalars['ID']['output'];
|
|
2262
|
-
logs?: Maybe<BuildLogs>;
|
|
2263
|
-
platform: AppPlatform;
|
|
2264
|
-
release?: Maybe<AppRelease>;
|
|
2265
|
-
releaseChannel?: Maybe<Scalars['String']['output']>;
|
|
2266
|
-
sdkVersion?: Maybe<Scalars['String']['output']>;
|
|
2267
|
-
status?: Maybe<BuildJobStatus>;
|
|
2268
|
-
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
2269
|
-
user?: Maybe<User>;
|
|
2270
|
-
};
|
|
2271
|
-
export declare enum BuildJobLogsFormat {
|
|
2272
|
-
Json = "JSON",
|
|
2273
|
-
Raw = "RAW"
|
|
2274
|
-
}
|
|
2275
|
-
export type BuildJobMutation = {
|
|
2276
|
-
__typename?: 'BuildJobMutation';
|
|
2277
|
-
del?: Maybe<BuildJob>;
|
|
2278
|
-
};
|
|
2279
|
-
export type BuildJobQuery = {
|
|
2280
|
-
__typename?: 'BuildJobQuery';
|
|
2281
|
-
/**
|
|
2282
|
-
* get all build jobs by an optional filter
|
|
2283
|
-
* @deprecated Prefer Account.buildJobs or App.buildJobs
|
|
2284
|
-
*/
|
|
2285
|
-
all: Array<Maybe<BuildJob>>;
|
|
2286
|
-
byId: BuildJob;
|
|
2287
|
-
};
|
|
2288
|
-
export type BuildJobQueryAllArgs = {
|
|
2289
|
-
experienceSlug?: InputMaybe<Scalars['String']['input']>;
|
|
2290
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2291
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2292
|
-
showAdminView?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2293
|
-
status?: InputMaybe<BuildJobStatus>;
|
|
2294
|
-
username?: InputMaybe<Scalars['String']['input']>;
|
|
2295
|
-
};
|
|
2296
|
-
export type BuildJobQueryByIdArgs = {
|
|
2297
|
-
buildId: Scalars['ID']['input'];
|
|
2298
|
-
};
|
|
2299
|
-
export declare enum BuildJobStatus {
|
|
2300
|
-
Errored = "ERRORED",
|
|
2301
|
-
Finished = "FINISHED",
|
|
2302
|
-
InProgress = "IN_PROGRESS",
|
|
2303
|
-
Pending = "PENDING",
|
|
2304
|
-
SentToQueue = "SENT_TO_QUEUE",
|
|
2305
|
-
Started = "STARTED"
|
|
2306
|
-
}
|
|
2307
2275
|
export type BuildLimitThresholdExceededMetadata = {
|
|
2308
2276
|
__typename?: 'BuildLimitThresholdExceededMetadata';
|
|
2309
2277
|
account: Account;
|
|
@@ -2313,11 +2281,6 @@ export declare enum BuildLimitThresholdExceededMetadataType {
|
|
|
2313
2281
|
Ios = "IOS",
|
|
2314
2282
|
Total = "TOTAL"
|
|
2315
2283
|
}
|
|
2316
|
-
export type BuildLogs = {
|
|
2317
|
-
__typename?: 'BuildLogs';
|
|
2318
|
-
format?: Maybe<BuildJobLogsFormat>;
|
|
2319
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
2320
|
-
};
|
|
2321
2284
|
export type BuildMetadataInput = {
|
|
2322
2285
|
appBuildVersion?: InputMaybe<Scalars['String']['input']>;
|
|
2323
2286
|
appIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2423,14 +2386,6 @@ export type BuildMutationUpdateBuildMetadataArgs = {
|
|
|
2423
2386
|
export type BuildOrBuildJob = {
|
|
2424
2387
|
id: Scalars['ID']['output'];
|
|
2425
2388
|
};
|
|
2426
|
-
export type BuildOrBuildJobQuery = {
|
|
2427
|
-
__typename?: 'BuildOrBuildJobQuery';
|
|
2428
|
-
/** Look up EAS Build or Classic Build Job by ID */
|
|
2429
|
-
byId: EasBuildOrClassicBuildJob;
|
|
2430
|
-
};
|
|
2431
|
-
export type BuildOrBuildJobQueryByIdArgs = {
|
|
2432
|
-
buildOrBuildJobId: Scalars['ID']['input'];
|
|
2433
|
-
};
|
|
2434
2389
|
export type BuildParamsInput = {
|
|
2435
2390
|
reactNativeVersion?: InputMaybe<Scalars['String']['input']>;
|
|
2436
2391
|
resourceClass: BuildResourceClass;
|
|
@@ -2681,6 +2636,14 @@ export type CreateGitHubBuildTriggerInput = {
|
|
|
2681
2636
|
targetPattern?: InputMaybe<Scalars['String']['input']>;
|
|
2682
2637
|
type: GitHubBuildTriggerType;
|
|
2683
2638
|
};
|
|
2639
|
+
export type CreateGitHubJobRunTriggerInput = {
|
|
2640
|
+
appId: Scalars['ID']['input'];
|
|
2641
|
+
isActive: Scalars['Boolean']['input'];
|
|
2642
|
+
jobType: GitHubJobRunJobType;
|
|
2643
|
+
sourcePattern: Scalars['String']['input'];
|
|
2644
|
+
targetPattern?: InputMaybe<Scalars['String']['input']>;
|
|
2645
|
+
triggerType: GitHubJobRunTriggerType;
|
|
2646
|
+
};
|
|
2684
2647
|
export type CreateGitHubRepositoryInput = {
|
|
2685
2648
|
appId: Scalars['ID']['input'];
|
|
2686
2649
|
githubAppInstallationId: Scalars['ID']['input'];
|
|
@@ -2909,7 +2872,10 @@ export declare enum EasBuildDeprecationInfoType {
|
|
|
2909
2872
|
Internal = "INTERNAL",
|
|
2910
2873
|
UserFacing = "USER_FACING"
|
|
2911
2874
|
}
|
|
2912
|
-
export
|
|
2875
|
+
export declare enum EasBuildWaiverType {
|
|
2876
|
+
FastFailedBuild = "FAST_FAILED_BUILD",
|
|
2877
|
+
SystemError = "SYSTEM_ERROR"
|
|
2878
|
+
}
|
|
2913
2879
|
export declare enum EasService {
|
|
2914
2880
|
Builds = "BUILDS",
|
|
2915
2881
|
Jobs = "JOBS",
|
|
@@ -3175,6 +3141,48 @@ export declare enum GitHubBuildTriggerType {
|
|
|
3175
3141
|
PushToBranch = "PUSH_TO_BRANCH",
|
|
3176
3142
|
TagUpdated = "TAG_UPDATED"
|
|
3177
3143
|
}
|
|
3144
|
+
export declare enum GitHubJobRunJobType {
|
|
3145
|
+
PublishUpdate = "PUBLISH_UPDATE"
|
|
3146
|
+
}
|
|
3147
|
+
export type GitHubJobRunTrigger = {
|
|
3148
|
+
__typename?: 'GitHubJobRunTrigger';
|
|
3149
|
+
app: App;
|
|
3150
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3151
|
+
id: Scalars['ID']['output'];
|
|
3152
|
+
isActive: Scalars['Boolean']['output'];
|
|
3153
|
+
jobType?: Maybe<GitHubJobRunJobType>;
|
|
3154
|
+
lastRunAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3155
|
+
lastRunErrorCode?: Maybe<Scalars['String']['output']>;
|
|
3156
|
+
lastRunErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
3157
|
+
lastRunStatus?: Maybe<GitHubJobRunTriggerRunStatus>;
|
|
3158
|
+
sourcePattern: Scalars['String']['output'];
|
|
3159
|
+
targetPattern?: Maybe<Scalars['String']['output']>;
|
|
3160
|
+
triggerType: GitHubJobRunTriggerType;
|
|
3161
|
+
};
|
|
3162
|
+
export type GitHubJobRunTriggerMutation = {
|
|
3163
|
+
__typename?: 'GitHubJobRunTriggerMutation';
|
|
3164
|
+
createGitHubJobRunTrigger: GitHubJobRunTrigger;
|
|
3165
|
+
deleteGitHubJobRunTrigger: GitHubJobRunTrigger;
|
|
3166
|
+
updateGitHubJobRunTrigger: GitHubJobRunTrigger;
|
|
3167
|
+
};
|
|
3168
|
+
export type GitHubJobRunTriggerMutationCreateGitHubJobRunTriggerArgs = {
|
|
3169
|
+
gitHubJobRunTriggerData: CreateGitHubJobRunTriggerInput;
|
|
3170
|
+
};
|
|
3171
|
+
export type GitHubJobRunTriggerMutationDeleteGitHubJobRunTriggerArgs = {
|
|
3172
|
+
gitHubJobRunTriggerId: Scalars['ID']['input'];
|
|
3173
|
+
};
|
|
3174
|
+
export type GitHubJobRunTriggerMutationUpdateGitHubJobRunTriggerArgs = {
|
|
3175
|
+
gitHubJobRunTriggerData: UpdateGitHubJobRunTriggerInput;
|
|
3176
|
+
gitHubJobRunTriggerId: Scalars['ID']['input'];
|
|
3177
|
+
};
|
|
3178
|
+
export declare enum GitHubJobRunTriggerRunStatus {
|
|
3179
|
+
Errored = "ERRORED",
|
|
3180
|
+
Success = "SUCCESS"
|
|
3181
|
+
}
|
|
3182
|
+
export declare enum GitHubJobRunTriggerType {
|
|
3183
|
+
PullRequestUpdated = "PULL_REQUEST_UPDATED",
|
|
3184
|
+
PushToBranch = "PUSH_TO_BRANCH"
|
|
3185
|
+
}
|
|
3178
3186
|
export type GitHubRepository = {
|
|
3179
3187
|
__typename?: 'GitHubRepository';
|
|
3180
3188
|
app: App;
|
|
@@ -3199,11 +3207,16 @@ export type GitHubRepositoryMetadata = {
|
|
|
3199
3207
|
};
|
|
3200
3208
|
export type GitHubRepositoryMutation = {
|
|
3201
3209
|
__typename?: 'GitHubRepositoryMutation';
|
|
3210
|
+
/** Configure EAS by pushing a commit to the default branch which updates or creates app.json, eas.json, and installs necessary dependencies. */
|
|
3211
|
+
configureEAS: BackgroundJobReceipt;
|
|
3202
3212
|
/** Create a GitHub repository for an App */
|
|
3203
3213
|
createGitHubRepository: GitHubRepository;
|
|
3204
3214
|
/** Delete a GitHub repository by ID */
|
|
3205
3215
|
deleteGitHubRepository: GitHubRepository;
|
|
3206
3216
|
};
|
|
3217
|
+
export type GitHubRepositoryMutationConfigureEasArgs = {
|
|
3218
|
+
githubRepositoryId: Scalars['ID']['input'];
|
|
3219
|
+
};
|
|
3207
3220
|
export type GitHubRepositoryMutationCreateGitHubRepositoryArgs = {
|
|
3208
3221
|
githubRepositoryData: CreateGitHubRepositoryInput;
|
|
3209
3222
|
};
|
|
@@ -3413,6 +3426,7 @@ export type IosAppBuildCredentialsMutationSetProvisioningProfileArgs = {
|
|
|
3413
3426
|
export type IosAppCredentials = {
|
|
3414
3427
|
__typename?: 'IosAppCredentials';
|
|
3415
3428
|
app: App;
|
|
3429
|
+
appStoreConnectApiKeyForBuilds?: Maybe<AppStoreConnectApiKey>;
|
|
3416
3430
|
appStoreConnectApiKeyForSubmissions?: Maybe<AppStoreConnectApiKey>;
|
|
3417
3431
|
appleAppIdentifier: AppleAppIdentifier;
|
|
3418
3432
|
appleTeam?: Maybe<AppleTeam>;
|
|
@@ -3432,6 +3446,7 @@ export type IosAppCredentialsFilter = {
|
|
|
3432
3446
|
appleAppIdentifierId?: InputMaybe<Scalars['String']['input']>;
|
|
3433
3447
|
};
|
|
3434
3448
|
export type IosAppCredentialsInput = {
|
|
3449
|
+
appStoreConnectApiKeyForBuildsId?: InputMaybe<Scalars['ID']['input']>;
|
|
3435
3450
|
appStoreConnectApiKeyForSubmissionsId?: InputMaybe<Scalars['ID']['input']>;
|
|
3436
3451
|
appleTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
3437
3452
|
pushKeyId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3446,6 +3461,8 @@ export type IosAppCredentialsMutation = {
|
|
|
3446
3461
|
setAppStoreConnectApiKeyForSubmissions: IosAppCredentials;
|
|
3447
3462
|
/** Set the push key to be used in an iOS app */
|
|
3448
3463
|
setPushKey: IosAppCredentials;
|
|
3464
|
+
/** Update a set of credentials for an iOS app */
|
|
3465
|
+
updateIosAppCredentials: IosAppCredentials;
|
|
3449
3466
|
};
|
|
3450
3467
|
export type IosAppCredentialsMutationCreateIosAppCredentialsArgs = {
|
|
3451
3468
|
appId: Scalars['ID']['input'];
|
|
@@ -3463,6 +3480,10 @@ export type IosAppCredentialsMutationSetPushKeyArgs = {
|
|
|
3463
3480
|
id: Scalars['ID']['input'];
|
|
3464
3481
|
pushKeyId: Scalars['ID']['input'];
|
|
3465
3482
|
};
|
|
3483
|
+
export type IosAppCredentialsMutationUpdateIosAppCredentialsArgs = {
|
|
3484
|
+
id: Scalars['ID']['input'];
|
|
3485
|
+
iosAppCredentialsInput: IosAppCredentialsInput;
|
|
3486
|
+
};
|
|
3466
3487
|
/** @deprecated Use developmentClient option instead. */
|
|
3467
3488
|
export declare enum IosBuildType {
|
|
3468
3489
|
DevelopmentClient = "DEVELOPMENT_CLIENT",
|
|
@@ -3584,6 +3605,44 @@ export type IosSubmissionConfigInput = {
|
|
|
3584
3605
|
ascAppIdentifier: Scalars['String']['input'];
|
|
3585
3606
|
isVerboseFastlaneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3586
3607
|
};
|
|
3608
|
+
/** Represents a Turtle Job Run */
|
|
3609
|
+
export type JobRun = {
|
|
3610
|
+
__typename?: 'JobRun';
|
|
3611
|
+
app: App;
|
|
3612
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3613
|
+
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3614
|
+
expiresAt: Scalars['DateTime']['output'];
|
|
3615
|
+
gitCommitHash?: Maybe<Scalars['String']['output']>;
|
|
3616
|
+
gitRef?: Maybe<Scalars['String']['output']>;
|
|
3617
|
+
id: Scalars['ID']['output'];
|
|
3618
|
+
initiatingActor?: Maybe<Actor>;
|
|
3619
|
+
isWaived: Scalars['Boolean']['output'];
|
|
3620
|
+
logFileUrls: Array<Scalars['String']['output']>;
|
|
3621
|
+
priority: JobRunPriority;
|
|
3622
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3623
|
+
status: JobRunStatus;
|
|
3624
|
+
};
|
|
3625
|
+
export declare enum JobRunPriority {
|
|
3626
|
+
High = "HIGH",
|
|
3627
|
+
Normal = "NORMAL"
|
|
3628
|
+
}
|
|
3629
|
+
export type JobRunQuery = {
|
|
3630
|
+
__typename?: 'JobRunQuery';
|
|
3631
|
+
/** Look up EAS Job Run by ID */
|
|
3632
|
+
byId: JobRun;
|
|
3633
|
+
};
|
|
3634
|
+
export type JobRunQueryByIdArgs = {
|
|
3635
|
+
jobRunId: Scalars['ID']['input'];
|
|
3636
|
+
};
|
|
3637
|
+
export declare enum JobRunStatus {
|
|
3638
|
+
Canceled = "CANCELED",
|
|
3639
|
+
Errored = "ERRORED",
|
|
3640
|
+
Finished = "FINISHED",
|
|
3641
|
+
InProgress = "IN_PROGRESS",
|
|
3642
|
+
InQueue = "IN_QUEUE",
|
|
3643
|
+
New = "NEW",
|
|
3644
|
+
PendingCancel = "PENDING_CANCEL"
|
|
3645
|
+
}
|
|
3587
3646
|
export type KeystoreGenerationUrl = {
|
|
3588
3647
|
__typename?: 'KeystoreGenerationUrl';
|
|
3589
3648
|
id: Scalars['ID']['output'];
|
|
@@ -3657,6 +3716,10 @@ export type MeMutation = {
|
|
|
3657
3716
|
regenerateSecondFactorBackupCodes: SecondFactorRegenerateBackupCodesResult;
|
|
3658
3717
|
/** Send SMS OTP to a second factor device for use during device setup or during change confirmation */
|
|
3659
3718
|
sendSMSOTPToSecondFactorDevice: SecondFactorBooleanResult;
|
|
3719
|
+
/**
|
|
3720
|
+
* Sets user preferences. This is a key-value store for user-specific settings. Provided values are
|
|
3721
|
+
* key-level merged with existing values.
|
|
3722
|
+
*/
|
|
3660
3723
|
setPreferences: UserPreferences;
|
|
3661
3724
|
/** Set the user's primary second factor device */
|
|
3662
3725
|
setPrimarySecondFactorDevice: SecondFactorBooleanResult;
|
|
@@ -3829,6 +3892,14 @@ export declare enum OfferType {
|
|
|
3829
3892
|
/** Term subscription */
|
|
3830
3893
|
Subscription = "SUBSCRIPTION"
|
|
3831
3894
|
}
|
|
3895
|
+
export declare enum OnboardingDeviceType {
|
|
3896
|
+
Device = "DEVICE",
|
|
3897
|
+
Simulator = "SIMULATOR"
|
|
3898
|
+
}
|
|
3899
|
+
export declare enum OnboardingEnvironment {
|
|
3900
|
+
DevBuild = "DEV_BUILD",
|
|
3901
|
+
ExpoGo = "EXPO_GO"
|
|
3902
|
+
}
|
|
3832
3903
|
export declare enum Order {
|
|
3833
3904
|
Asc = "ASC",
|
|
3834
3905
|
Desc = "DESC"
|
|
@@ -3899,22 +3970,9 @@ export type ProjectPublicData = {
|
|
|
3899
3970
|
};
|
|
3900
3971
|
export type ProjectQuery = {
|
|
3901
3972
|
__typename?: 'ProjectQuery';
|
|
3902
|
-
/** @deprecated Snacks and apps should be queried separately */
|
|
3903
|
-
byAccountNameAndSlug: Project;
|
|
3904
|
-
/** @deprecated No longer supported */
|
|
3905
|
-
byPaths: Array<Maybe<Project>>;
|
|
3906
3973
|
/** @deprecated See byAccountNameAndSlug */
|
|
3907
3974
|
byUsernameAndSlug: Project;
|
|
3908
3975
|
};
|
|
3909
|
-
export type ProjectQueryByAccountNameAndSlugArgs = {
|
|
3910
|
-
accountName: Scalars['String']['input'];
|
|
3911
|
-
platform?: InputMaybe<AppPlatform>;
|
|
3912
|
-
sdkVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3913
|
-
slug: Scalars['String']['input'];
|
|
3914
|
-
};
|
|
3915
|
-
export type ProjectQueryByPathsArgs = {
|
|
3916
|
-
paths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3917
|
-
};
|
|
3918
3976
|
export type ProjectQueryByUsernameAndSlugArgs = {
|
|
3919
3977
|
platform?: InputMaybe<Scalars['String']['input']>;
|
|
3920
3978
|
sdkVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -3941,6 +3999,9 @@ export type RescindUserInvitationResult = {
|
|
|
3941
3999
|
__typename?: 'RescindUserInvitationResult';
|
|
3942
4000
|
id: Scalars['ID']['output'];
|
|
3943
4001
|
};
|
|
4002
|
+
export declare enum ResourceClassExperiment {
|
|
4003
|
+
C3D = "C3D"
|
|
4004
|
+
}
|
|
3944
4005
|
/** Represents a robot (not human) actor. */
|
|
3945
4006
|
export type Robot = Actor & {
|
|
3946
4007
|
__typename?: 'Robot';
|
|
@@ -4046,8 +4107,8 @@ export type RootMutation = {
|
|
|
4046
4107
|
build: BuildMutation;
|
|
4047
4108
|
/** Mutations that create, update, and delete Build Annotations */
|
|
4048
4109
|
buildAnnotation: BuildAnnotationMutation;
|
|
4049
|
-
/** Mutations that modify
|
|
4050
|
-
|
|
4110
|
+
/** Mutations that assign or modify DevDomainNames for apps */
|
|
4111
|
+
devDomainName: AppDevDomainNameMutation;
|
|
4051
4112
|
/** Mutations for Discord users */
|
|
4052
4113
|
discordUser: DiscordUserMutation;
|
|
4053
4114
|
/** Mutations that modify an EmailSubscription */
|
|
@@ -4060,6 +4121,7 @@ export type RootMutation = {
|
|
|
4060
4121
|
githubAppInstallation: GitHubAppInstallationMutation;
|
|
4061
4122
|
/** Mutations for GitHub build triggers */
|
|
4062
4123
|
githubBuildTrigger: GitHubBuildTriggerMutation;
|
|
4124
|
+
githubJobRunTrigger: GitHubJobRunTriggerMutation;
|
|
4063
4125
|
/** Mutations for GitHub repositories */
|
|
4064
4126
|
githubRepository: GitHubRepositoryMutation;
|
|
4065
4127
|
/** Mutations for GitHub repository settings */
|
|
@@ -4104,9 +4166,6 @@ export type RootMutationAppArgs = {
|
|
|
4104
4166
|
export type RootMutationBuildArgs = {
|
|
4105
4167
|
buildId?: InputMaybe<Scalars['ID']['input']>;
|
|
4106
4168
|
};
|
|
4107
|
-
export type RootMutationBuildJobArgs = {
|
|
4108
|
-
buildId: Scalars['ID']['input'];
|
|
4109
|
-
};
|
|
4110
4169
|
export type RootQuery = {
|
|
4111
4170
|
__typename?: 'RootQuery';
|
|
4112
4171
|
/**
|
|
@@ -4144,8 +4203,6 @@ export type RootQuery = {
|
|
|
4144
4203
|
backgroundJobReceipt: BackgroundJobReceiptQuery;
|
|
4145
4204
|
/** Top-level query object for querying annotations. */
|
|
4146
4205
|
buildAnnotations: BuildAnnotationsQuery;
|
|
4147
|
-
buildJobs: BuildJobQuery;
|
|
4148
|
-
buildOrBuildJob: BuildOrBuildJobQuery;
|
|
4149
4206
|
/** Top-level query object for querying BuildPublicData publicly. */
|
|
4150
4207
|
buildPublicData: BuildPublicDataQuery;
|
|
4151
4208
|
builds: BuildQuery;
|
|
@@ -4155,6 +4212,7 @@ export type RootQuery = {
|
|
|
4155
4212
|
githubApp: GitHubAppQuery;
|
|
4156
4213
|
/** Top-level query object for querying Stripe Invoices. */
|
|
4157
4214
|
invoice: InvoiceQuery;
|
|
4215
|
+
jobRun: JobRunQuery;
|
|
4158
4216
|
/**
|
|
4159
4217
|
* If authenticated as a typical end user, this is the appropriate top-level
|
|
4160
4218
|
* query object
|
|
@@ -4829,6 +4887,11 @@ export type UpdateGitHubBuildTriggerInput = {
|
|
|
4829
4887
|
targetPattern?: InputMaybe<Scalars['String']['input']>;
|
|
4830
4888
|
type: GitHubBuildTriggerType;
|
|
4831
4889
|
};
|
|
4890
|
+
export type UpdateGitHubJobRunTriggerInput = {
|
|
4891
|
+
isActive: Scalars['Boolean']['input'];
|
|
4892
|
+
sourcePattern: Scalars['String']['input'];
|
|
4893
|
+
targetPattern?: InputMaybe<Scalars['String']['input']>;
|
|
4894
|
+
};
|
|
4832
4895
|
export type UpdateGitHubRepositorySettingsInput = {
|
|
4833
4896
|
baseDirectory: Scalars['String']['input'];
|
|
4834
4897
|
};
|
|
@@ -5099,8 +5162,6 @@ export type UserActorWebsiteNotificationsPaginatedArgs = {
|
|
|
5099
5162
|
/** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
|
|
5100
5163
|
export type UserActorPublicData = {
|
|
5101
5164
|
__typename?: 'UserActorPublicData';
|
|
5102
|
-
/** Apps this user has published */
|
|
5103
|
-
apps: Array<App>;
|
|
5104
5165
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
5105
5166
|
id: Scalars['ID']['output'];
|
|
5106
5167
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
@@ -5110,12 +5171,6 @@ export type UserActorPublicData = {
|
|
|
5110
5171
|
username: Scalars['String']['output'];
|
|
5111
5172
|
};
|
|
5112
5173
|
/** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
|
|
5113
|
-
export type UserActorPublicDataAppsArgs = {
|
|
5114
|
-
includeUnpublished?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5115
|
-
limit: Scalars['Int']['input'];
|
|
5116
|
-
offset: Scalars['Int']['input'];
|
|
5117
|
-
};
|
|
5118
|
-
/** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
|
|
5119
5174
|
export type UserActorPublicDataSnacksArgs = {
|
|
5120
5175
|
limit: Scalars['Int']['input'];
|
|
5121
5176
|
offset: Scalars['Int']['input'];
|
|
@@ -5261,11 +5316,42 @@ export type UserPermission = {
|
|
|
5261
5316
|
};
|
|
5262
5317
|
export type UserPreferences = {
|
|
5263
5318
|
__typename?: 'UserPreferences';
|
|
5319
|
+
onboarding?: Maybe<UserPreferencesOnboarding>;
|
|
5264
5320
|
selectedAccountName?: Maybe<Scalars['String']['output']>;
|
|
5265
5321
|
};
|
|
5266
5322
|
export type UserPreferencesInput = {
|
|
5323
|
+
onboarding?: InputMaybe<UserPreferencesOnboardingInput>;
|
|
5267
5324
|
selectedAccountName?: InputMaybe<Scalars['String']['input']>;
|
|
5268
5325
|
};
|
|
5326
|
+
/**
|
|
5327
|
+
* Set by website. Used by CLI to continue onboarding process on user's machine - clone repository,
|
|
5328
|
+
* install dependencies etc.
|
|
5329
|
+
*/
|
|
5330
|
+
export type UserPreferencesOnboarding = {
|
|
5331
|
+
__typename?: 'UserPreferencesOnboarding';
|
|
5332
|
+
appId: Scalars['ID']['output'];
|
|
5333
|
+
/** Can be null if the user has not selected one yet. */
|
|
5334
|
+
deviceType?: Maybe<OnboardingDeviceType>;
|
|
5335
|
+
/** Can be null if the user has not selected one yet. */
|
|
5336
|
+
environment?: Maybe<OnboardingEnvironment>;
|
|
5337
|
+
/**
|
|
5338
|
+
* Set by CLI when the user has completed that phase. Used by the website to determine when
|
|
5339
|
+
* the next step can be shown.
|
|
5340
|
+
*/
|
|
5341
|
+
isCLIDone?: Maybe<Scalars['Boolean']['output']>;
|
|
5342
|
+
/** The last time when this object was updated. */
|
|
5343
|
+
lastUsed: Scalars['String']['output'];
|
|
5344
|
+
/** User selects a platform for which they want to build the app. CLI uses this information to start the build. */
|
|
5345
|
+
platform?: Maybe<AppPlatform>;
|
|
5346
|
+
};
|
|
5347
|
+
export type UserPreferencesOnboardingInput = {
|
|
5348
|
+
appId: Scalars['ID']['input'];
|
|
5349
|
+
deviceType?: InputMaybe<OnboardingDeviceType>;
|
|
5350
|
+
environment?: InputMaybe<OnboardingEnvironment>;
|
|
5351
|
+
isCLIDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5352
|
+
lastUsed: Scalars['String']['input'];
|
|
5353
|
+
platform?: InputMaybe<AppPlatform>;
|
|
5354
|
+
};
|
|
5269
5355
|
export type UserQuery = {
|
|
5270
5356
|
__typename?: 'UserQuery';
|
|
5271
5357
|
/**
|
|
@@ -5693,6 +5779,15 @@ export type CreateAndroidAppCredentialsMutation = {
|
|
|
5693
5779
|
};
|
|
5694
5780
|
}>;
|
|
5695
5781
|
};
|
|
5782
|
+
githubRepository?: {
|
|
5783
|
+
__typename?: 'GitHubRepository';
|
|
5784
|
+
id: string;
|
|
5785
|
+
metadata: {
|
|
5786
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
5787
|
+
githubRepoOwnerName: string;
|
|
5788
|
+
githubRepoName: string;
|
|
5789
|
+
};
|
|
5790
|
+
} | null;
|
|
5696
5791
|
};
|
|
5697
5792
|
androidFcm?: {
|
|
5698
5793
|
__typename?: 'AndroidFcm';
|
|
@@ -5803,6 +5898,15 @@ export type SetFcmMutation = {
|
|
|
5803
5898
|
};
|
|
5804
5899
|
}>;
|
|
5805
5900
|
};
|
|
5901
|
+
githubRepository?: {
|
|
5902
|
+
__typename?: 'GitHubRepository';
|
|
5903
|
+
id: string;
|
|
5904
|
+
metadata: {
|
|
5905
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
5906
|
+
githubRepoOwnerName: string;
|
|
5907
|
+
githubRepoName: string;
|
|
5908
|
+
};
|
|
5909
|
+
} | null;
|
|
5806
5910
|
};
|
|
5807
5911
|
androidFcm?: {
|
|
5808
5912
|
__typename?: 'AndroidFcm';
|
|
@@ -5913,6 +6017,15 @@ export type SetGoogleServiceAccountKeyForSubmissionsMutation = {
|
|
|
5913
6017
|
};
|
|
5914
6018
|
}>;
|
|
5915
6019
|
};
|
|
6020
|
+
githubRepository?: {
|
|
6021
|
+
__typename?: 'GitHubRepository';
|
|
6022
|
+
id: string;
|
|
6023
|
+
metadata: {
|
|
6024
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6025
|
+
githubRepoOwnerName: string;
|
|
6026
|
+
githubRepoName: string;
|
|
6027
|
+
};
|
|
6028
|
+
} | null;
|
|
5916
6029
|
};
|
|
5917
6030
|
androidFcm?: {
|
|
5918
6031
|
__typename?: 'AndroidFcm';
|
|
@@ -6023,6 +6136,15 @@ export type SetGoogleServiceAccountKeyForFcmV1Mutation = {
|
|
|
6023
6136
|
};
|
|
6024
6137
|
}>;
|
|
6025
6138
|
};
|
|
6139
|
+
githubRepository?: {
|
|
6140
|
+
__typename?: 'GitHubRepository';
|
|
6141
|
+
id: string;
|
|
6142
|
+
metadata: {
|
|
6143
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6144
|
+
githubRepoOwnerName: string;
|
|
6145
|
+
githubRepoName: string;
|
|
6146
|
+
};
|
|
6147
|
+
} | null;
|
|
6026
6148
|
};
|
|
6027
6149
|
androidFcm?: {
|
|
6028
6150
|
__typename?: 'AndroidFcm';
|
|
@@ -6249,6 +6371,15 @@ export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifi
|
|
|
6249
6371
|
};
|
|
6250
6372
|
}>;
|
|
6251
6373
|
};
|
|
6374
|
+
githubRepository?: {
|
|
6375
|
+
__typename?: 'GitHubRepository';
|
|
6376
|
+
id: string;
|
|
6377
|
+
metadata: {
|
|
6378
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6379
|
+
githubRepoOwnerName: string;
|
|
6380
|
+
githubRepoName: string;
|
|
6381
|
+
};
|
|
6382
|
+
} | null;
|
|
6252
6383
|
};
|
|
6253
6384
|
androidFcm?: {
|
|
6254
6385
|
__typename?: 'AndroidFcm';
|
|
@@ -6314,29 +6445,6 @@ export type CommonAndroidAppCredentialsWithBuildCredentialsByApplicationIdentifi
|
|
|
6314
6445
|
};
|
|
6315
6446
|
};
|
|
6316
6447
|
};
|
|
6317
|
-
export type GoogleServiceAccountKeyByAccountQueryVariables = Exact<{
|
|
6318
|
-
accountName: Scalars['String']['input'];
|
|
6319
|
-
}>;
|
|
6320
|
-
export type GoogleServiceAccountKeyByAccountQuery = {
|
|
6321
|
-
__typename?: 'RootQuery';
|
|
6322
|
-
account: {
|
|
6323
|
-
__typename?: 'AccountQuery';
|
|
6324
|
-
byName: {
|
|
6325
|
-
__typename?: 'Account';
|
|
6326
|
-
id: string;
|
|
6327
|
-
googleServiceAccountKeys: Array<{
|
|
6328
|
-
__typename?: 'GoogleServiceAccountKey';
|
|
6329
|
-
id: string;
|
|
6330
|
-
projectIdentifier: string;
|
|
6331
|
-
privateKeyIdentifier: string;
|
|
6332
|
-
clientEmail: string;
|
|
6333
|
-
clientIdentifier: string;
|
|
6334
|
-
createdAt: any;
|
|
6335
|
-
updatedAt: any;
|
|
6336
|
-
}>;
|
|
6337
|
-
};
|
|
6338
|
-
};
|
|
6339
|
-
};
|
|
6340
6448
|
export type GoogleServiceAccountKeysPaginatedByAccountQueryVariables = Exact<{
|
|
6341
6449
|
accountName: Scalars['String']['input'];
|
|
6342
6450
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6560,6 +6668,15 @@ export type CreateAppleDistributionCertificateMutation = {
|
|
|
6560
6668
|
};
|
|
6561
6669
|
}>;
|
|
6562
6670
|
};
|
|
6671
|
+
githubRepository?: {
|
|
6672
|
+
__typename?: 'GitHubRepository';
|
|
6673
|
+
id: string;
|
|
6674
|
+
metadata: {
|
|
6675
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6676
|
+
githubRepoOwnerName: string;
|
|
6677
|
+
githubRepoName: string;
|
|
6678
|
+
};
|
|
6679
|
+
} | null;
|
|
6563
6680
|
};
|
|
6564
6681
|
appleAppIdentifier: {
|
|
6565
6682
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -6726,6 +6843,15 @@ export type CreateApplePushKeyMutation = {
|
|
|
6726
6843
|
};
|
|
6727
6844
|
}>;
|
|
6728
6845
|
};
|
|
6846
|
+
githubRepository?: {
|
|
6847
|
+
__typename?: 'GitHubRepository';
|
|
6848
|
+
id: string;
|
|
6849
|
+
metadata: {
|
|
6850
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6851
|
+
githubRepoOwnerName: string;
|
|
6852
|
+
githubRepoName: string;
|
|
6853
|
+
};
|
|
6854
|
+
} | null;
|
|
6729
6855
|
};
|
|
6730
6856
|
appleAppIdentifier: {
|
|
6731
6857
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -6860,6 +6986,15 @@ export type CreateIosAppBuildCredentialsMutation = {
|
|
|
6860
6986
|
};
|
|
6861
6987
|
}>;
|
|
6862
6988
|
};
|
|
6989
|
+
githubRepository?: {
|
|
6990
|
+
__typename?: 'GitHubRepository';
|
|
6991
|
+
id: string;
|
|
6992
|
+
metadata: {
|
|
6993
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
6994
|
+
githubRepoOwnerName: string;
|
|
6995
|
+
githubRepoName: string;
|
|
6996
|
+
};
|
|
6997
|
+
} | null;
|
|
6863
6998
|
};
|
|
6864
6999
|
appleAppIdentifier: {
|
|
6865
7000
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -6968,6 +7103,15 @@ export type SetDistributionCertificateMutation = {
|
|
|
6968
7103
|
};
|
|
6969
7104
|
}>;
|
|
6970
7105
|
};
|
|
7106
|
+
githubRepository?: {
|
|
7107
|
+
__typename?: 'GitHubRepository';
|
|
7108
|
+
id: string;
|
|
7109
|
+
metadata: {
|
|
7110
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7111
|
+
githubRepoOwnerName: string;
|
|
7112
|
+
githubRepoName: string;
|
|
7113
|
+
};
|
|
7114
|
+
} | null;
|
|
6971
7115
|
};
|
|
6972
7116
|
appleAppIdentifier: {
|
|
6973
7117
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7076,6 +7220,15 @@ export type SetProvisioningProfileMutation = {
|
|
|
7076
7220
|
};
|
|
7077
7221
|
}>;
|
|
7078
7222
|
};
|
|
7223
|
+
githubRepository?: {
|
|
7224
|
+
__typename?: 'GitHubRepository';
|
|
7225
|
+
id: string;
|
|
7226
|
+
metadata: {
|
|
7227
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7228
|
+
githubRepoOwnerName: string;
|
|
7229
|
+
githubRepoName: string;
|
|
7230
|
+
};
|
|
7231
|
+
} | null;
|
|
7079
7232
|
};
|
|
7080
7233
|
appleAppIdentifier: {
|
|
7081
7234
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7188,6 +7341,15 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
7188
7341
|
};
|
|
7189
7342
|
}>;
|
|
7190
7343
|
};
|
|
7344
|
+
githubRepository?: {
|
|
7345
|
+
__typename?: 'GitHubRepository';
|
|
7346
|
+
id: string;
|
|
7347
|
+
metadata: {
|
|
7348
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7349
|
+
githubRepoOwnerName: string;
|
|
7350
|
+
githubRepoName: string;
|
|
7351
|
+
};
|
|
7352
|
+
} | null;
|
|
7191
7353
|
};
|
|
7192
7354
|
appleAppIdentifier: {
|
|
7193
7355
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7260,6 +7422,15 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
7260
7422
|
};
|
|
7261
7423
|
}>;
|
|
7262
7424
|
};
|
|
7425
|
+
githubRepository?: {
|
|
7426
|
+
__typename?: 'GitHubRepository';
|
|
7427
|
+
id: string;
|
|
7428
|
+
metadata: {
|
|
7429
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7430
|
+
githubRepoOwnerName: string;
|
|
7431
|
+
githubRepoName: string;
|
|
7432
|
+
};
|
|
7433
|
+
} | null;
|
|
7263
7434
|
};
|
|
7264
7435
|
appleTeam?: {
|
|
7265
7436
|
__typename?: 'AppleTeam';
|
|
@@ -7319,6 +7490,15 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
7319
7490
|
};
|
|
7320
7491
|
}>;
|
|
7321
7492
|
};
|
|
7493
|
+
githubRepository?: {
|
|
7494
|
+
__typename?: 'GitHubRepository';
|
|
7495
|
+
id: string;
|
|
7496
|
+
metadata: {
|
|
7497
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7498
|
+
githubRepoOwnerName: string;
|
|
7499
|
+
githubRepoName: string;
|
|
7500
|
+
};
|
|
7501
|
+
} | null;
|
|
7322
7502
|
};
|
|
7323
7503
|
appleAppIdentifier: {
|
|
7324
7504
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7416,6 +7596,15 @@ export type SetPushKeyMutation = {
|
|
|
7416
7596
|
};
|
|
7417
7597
|
}>;
|
|
7418
7598
|
};
|
|
7599
|
+
githubRepository?: {
|
|
7600
|
+
__typename?: 'GitHubRepository';
|
|
7601
|
+
id: string;
|
|
7602
|
+
metadata: {
|
|
7603
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7604
|
+
githubRepoOwnerName: string;
|
|
7605
|
+
githubRepoName: string;
|
|
7606
|
+
};
|
|
7607
|
+
} | null;
|
|
7419
7608
|
};
|
|
7420
7609
|
appleAppIdentifier: {
|
|
7421
7610
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7488,6 +7677,15 @@ export type SetPushKeyMutation = {
|
|
|
7488
7677
|
};
|
|
7489
7678
|
}>;
|
|
7490
7679
|
};
|
|
7680
|
+
githubRepository?: {
|
|
7681
|
+
__typename?: 'GitHubRepository';
|
|
7682
|
+
id: string;
|
|
7683
|
+
metadata: {
|
|
7684
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7685
|
+
githubRepoOwnerName: string;
|
|
7686
|
+
githubRepoName: string;
|
|
7687
|
+
};
|
|
7688
|
+
} | null;
|
|
7491
7689
|
};
|
|
7492
7690
|
appleTeam?: {
|
|
7493
7691
|
__typename?: 'AppleTeam';
|
|
@@ -7547,6 +7745,15 @@ export type SetPushKeyMutation = {
|
|
|
7547
7745
|
};
|
|
7548
7746
|
}>;
|
|
7549
7747
|
};
|
|
7748
|
+
githubRepository?: {
|
|
7749
|
+
__typename?: 'GitHubRepository';
|
|
7750
|
+
id: string;
|
|
7751
|
+
metadata: {
|
|
7752
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7753
|
+
githubRepoOwnerName: string;
|
|
7754
|
+
githubRepoName: string;
|
|
7755
|
+
};
|
|
7756
|
+
} | null;
|
|
7550
7757
|
};
|
|
7551
7758
|
appleAppIdentifier: {
|
|
7552
7759
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7644,6 +7851,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
7644
7851
|
};
|
|
7645
7852
|
}>;
|
|
7646
7853
|
};
|
|
7854
|
+
githubRepository?: {
|
|
7855
|
+
__typename?: 'GitHubRepository';
|
|
7856
|
+
id: string;
|
|
7857
|
+
metadata: {
|
|
7858
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7859
|
+
githubRepoOwnerName: string;
|
|
7860
|
+
githubRepoName: string;
|
|
7861
|
+
};
|
|
7862
|
+
} | null;
|
|
7647
7863
|
};
|
|
7648
7864
|
appleAppIdentifier: {
|
|
7649
7865
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -7716,6 +7932,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
7716
7932
|
};
|
|
7717
7933
|
}>;
|
|
7718
7934
|
};
|
|
7935
|
+
githubRepository?: {
|
|
7936
|
+
__typename?: 'GitHubRepository';
|
|
7937
|
+
id: string;
|
|
7938
|
+
metadata: {
|
|
7939
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
7940
|
+
githubRepoOwnerName: string;
|
|
7941
|
+
githubRepoName: string;
|
|
7942
|
+
};
|
|
7943
|
+
} | null;
|
|
7719
7944
|
};
|
|
7720
7945
|
appleTeam?: {
|
|
7721
7946
|
__typename?: 'AppleTeam';
|
|
@@ -7775,6 +8000,15 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
7775
8000
|
};
|
|
7776
8001
|
}>;
|
|
7777
8002
|
};
|
|
8003
|
+
githubRepository?: {
|
|
8004
|
+
__typename?: 'GitHubRepository';
|
|
8005
|
+
id: string;
|
|
8006
|
+
metadata: {
|
|
8007
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8008
|
+
githubRepoOwnerName: string;
|
|
8009
|
+
githubRepoName: string;
|
|
8010
|
+
};
|
|
8011
|
+
} | null;
|
|
7778
8012
|
};
|
|
7779
8013
|
appleAppIdentifier: {
|
|
7780
8014
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8020,6 +8254,15 @@ export type AppleDistributionCertificateByAppQuery = {
|
|
|
8020
8254
|
};
|
|
8021
8255
|
}>;
|
|
8022
8256
|
};
|
|
8257
|
+
githubRepository?: {
|
|
8258
|
+
__typename?: 'GitHubRepository';
|
|
8259
|
+
id: string;
|
|
8260
|
+
metadata: {
|
|
8261
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8262
|
+
githubRepoOwnerName: string;
|
|
8263
|
+
githubRepoName: string;
|
|
8264
|
+
};
|
|
8265
|
+
} | null;
|
|
8023
8266
|
};
|
|
8024
8267
|
appleAppIdentifier: {
|
|
8025
8268
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8113,6 +8356,15 @@ export type AppleDistributionCertificatesPaginatedByAccountQuery = {
|
|
|
8113
8356
|
};
|
|
8114
8357
|
}>;
|
|
8115
8358
|
};
|
|
8359
|
+
githubRepository?: {
|
|
8360
|
+
__typename?: 'GitHubRepository';
|
|
8361
|
+
id: string;
|
|
8362
|
+
metadata: {
|
|
8363
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8364
|
+
githubRepoOwnerName: string;
|
|
8365
|
+
githubRepoName: string;
|
|
8366
|
+
};
|
|
8367
|
+
} | null;
|
|
8116
8368
|
};
|
|
8117
8369
|
appleAppIdentifier: {
|
|
8118
8370
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8257,6 +8509,15 @@ export type ApplePushKeysPaginatedByAccountQuery = {
|
|
|
8257
8509
|
};
|
|
8258
8510
|
}>;
|
|
8259
8511
|
};
|
|
8512
|
+
githubRepository?: {
|
|
8513
|
+
__typename?: 'GitHubRepository';
|
|
8514
|
+
id: string;
|
|
8515
|
+
metadata: {
|
|
8516
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8517
|
+
githubRepoOwnerName: string;
|
|
8518
|
+
githubRepoName: string;
|
|
8519
|
+
};
|
|
8520
|
+
} | null;
|
|
8260
8521
|
};
|
|
8261
8522
|
appleAppIdentifier: {
|
|
8262
8523
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8388,6 +8649,15 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
|
8388
8649
|
};
|
|
8389
8650
|
}>;
|
|
8390
8651
|
};
|
|
8652
|
+
githubRepository?: {
|
|
8653
|
+
__typename?: 'GitHubRepository';
|
|
8654
|
+
id: string;
|
|
8655
|
+
metadata: {
|
|
8656
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8657
|
+
githubRepoOwnerName: string;
|
|
8658
|
+
githubRepoName: string;
|
|
8659
|
+
};
|
|
8660
|
+
} | null;
|
|
8391
8661
|
};
|
|
8392
8662
|
appleAppIdentifier: {
|
|
8393
8663
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8505,6 +8775,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
8505
8775
|
};
|
|
8506
8776
|
}>;
|
|
8507
8777
|
};
|
|
8778
|
+
githubRepository?: {
|
|
8779
|
+
__typename?: 'GitHubRepository';
|
|
8780
|
+
id: string;
|
|
8781
|
+
metadata: {
|
|
8782
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8783
|
+
githubRepoOwnerName: string;
|
|
8784
|
+
githubRepoName: string;
|
|
8785
|
+
};
|
|
8786
|
+
} | null;
|
|
8508
8787
|
};
|
|
8509
8788
|
appleAppIdentifier: {
|
|
8510
8789
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8577,6 +8856,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
8577
8856
|
};
|
|
8578
8857
|
}>;
|
|
8579
8858
|
};
|
|
8859
|
+
githubRepository?: {
|
|
8860
|
+
__typename?: 'GitHubRepository';
|
|
8861
|
+
id: string;
|
|
8862
|
+
metadata: {
|
|
8863
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8864
|
+
githubRepoOwnerName: string;
|
|
8865
|
+
githubRepoName: string;
|
|
8866
|
+
};
|
|
8867
|
+
} | null;
|
|
8580
8868
|
};
|
|
8581
8869
|
appleTeam?: {
|
|
8582
8870
|
__typename?: 'AppleTeam';
|
|
@@ -8636,6 +8924,15 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
8636
8924
|
};
|
|
8637
8925
|
}>;
|
|
8638
8926
|
};
|
|
8927
|
+
githubRepository?: {
|
|
8928
|
+
__typename?: 'GitHubRepository';
|
|
8929
|
+
id: string;
|
|
8930
|
+
metadata: {
|
|
8931
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
8932
|
+
githubRepoOwnerName: string;
|
|
8933
|
+
githubRepoName: string;
|
|
8934
|
+
};
|
|
8935
|
+
} | null;
|
|
8639
8936
|
};
|
|
8640
8937
|
appleAppIdentifier: {
|
|
8641
8938
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8737,6 +9034,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
8737
9034
|
};
|
|
8738
9035
|
}>;
|
|
8739
9036
|
};
|
|
9037
|
+
githubRepository?: {
|
|
9038
|
+
__typename?: 'GitHubRepository';
|
|
9039
|
+
id: string;
|
|
9040
|
+
metadata: {
|
|
9041
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
9042
|
+
githubRepoOwnerName: string;
|
|
9043
|
+
githubRepoName: string;
|
|
9044
|
+
};
|
|
9045
|
+
} | null;
|
|
8740
9046
|
};
|
|
8741
9047
|
appleAppIdentifier: {
|
|
8742
9048
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8809,6 +9115,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
8809
9115
|
};
|
|
8810
9116
|
}>;
|
|
8811
9117
|
};
|
|
9118
|
+
githubRepository?: {
|
|
9119
|
+
__typename?: 'GitHubRepository';
|
|
9120
|
+
id: string;
|
|
9121
|
+
metadata: {
|
|
9122
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
9123
|
+
githubRepoOwnerName: string;
|
|
9124
|
+
githubRepoName: string;
|
|
9125
|
+
};
|
|
9126
|
+
} | null;
|
|
8812
9127
|
};
|
|
8813
9128
|
appleTeam?: {
|
|
8814
9129
|
__typename?: 'AppleTeam';
|
|
@@ -8868,6 +9183,15 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
8868
9183
|
};
|
|
8869
9184
|
}>;
|
|
8870
9185
|
};
|
|
9186
|
+
githubRepository?: {
|
|
9187
|
+
__typename?: 'GitHubRepository';
|
|
9188
|
+
id: string;
|
|
9189
|
+
metadata: {
|
|
9190
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
9191
|
+
githubRepoOwnerName: string;
|
|
9192
|
+
githubRepoName: string;
|
|
9193
|
+
};
|
|
9194
|
+
} | null;
|
|
8871
9195
|
};
|
|
8872
9196
|
appleAppIdentifier: {
|
|
8873
9197
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8940,7 +9264,6 @@ export type CreateAndroidBuildMutation = {
|
|
|
8940
9264
|
status: BuildStatus;
|
|
8941
9265
|
platform: AppPlatform;
|
|
8942
9266
|
channel?: string | null;
|
|
8943
|
-
releaseChannel?: string | null;
|
|
8944
9267
|
distribution?: DistributionType | null;
|
|
8945
9268
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
8946
9269
|
buildProfile?: string | null;
|
|
@@ -9029,7 +9352,6 @@ export type CreateIosBuildMutation = {
|
|
|
9029
9352
|
status: BuildStatus;
|
|
9030
9353
|
platform: AppPlatform;
|
|
9031
9354
|
channel?: string | null;
|
|
9032
|
-
releaseChannel?: string | null;
|
|
9033
9355
|
distribution?: DistributionType | null;
|
|
9034
9356
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
9035
9357
|
buildProfile?: string | null;
|
|
@@ -9114,7 +9436,6 @@ export type UpdateBuildMetadataMutation = {
|
|
|
9114
9436
|
status: BuildStatus;
|
|
9115
9437
|
platform: AppPlatform;
|
|
9116
9438
|
channel?: string | null;
|
|
9117
|
-
releaseChannel?: string | null;
|
|
9118
9439
|
distribution?: DistributionType | null;
|
|
9119
9440
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
9120
9441
|
buildProfile?: string | null;
|
|
@@ -9193,7 +9514,6 @@ export type RetryIosBuildMutation = {
|
|
|
9193
9514
|
status: BuildStatus;
|
|
9194
9515
|
platform: AppPlatform;
|
|
9195
9516
|
channel?: string | null;
|
|
9196
|
-
releaseChannel?: string | null;
|
|
9197
9517
|
distribution?: DistributionType | null;
|
|
9198
9518
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
9199
9519
|
buildProfile?: string | null;
|
|
@@ -9510,6 +9830,23 @@ export type CreateUploadSessionMutation = {
|
|
|
9510
9830
|
createUploadSession: any;
|
|
9511
9831
|
};
|
|
9512
9832
|
};
|
|
9833
|
+
export type MarkCliDoneInOnboardingUserPreferencesMutationVariables = Exact<{
|
|
9834
|
+
preferences: UserPreferencesInput;
|
|
9835
|
+
}>;
|
|
9836
|
+
export type MarkCliDoneInOnboardingUserPreferencesMutation = {
|
|
9837
|
+
__typename?: 'RootMutation';
|
|
9838
|
+
me: {
|
|
9839
|
+
__typename?: 'MeMutation';
|
|
9840
|
+
setPreferences: {
|
|
9841
|
+
__typename?: 'UserPreferences';
|
|
9842
|
+
onboarding?: {
|
|
9843
|
+
__typename?: 'UserPreferencesOnboarding';
|
|
9844
|
+
appId: string;
|
|
9845
|
+
isCLIDone?: boolean | null;
|
|
9846
|
+
} | null;
|
|
9847
|
+
};
|
|
9848
|
+
};
|
|
9849
|
+
};
|
|
9513
9850
|
export type CreateWebhookMutationVariables = Exact<{
|
|
9514
9851
|
appId: Scalars['String']['input'];
|
|
9515
9852
|
webhookInput: WebhookInput;
|
|
@@ -9599,6 +9936,15 @@ export type AppByIdQuery = {
|
|
|
9599
9936
|
};
|
|
9600
9937
|
}>;
|
|
9601
9938
|
};
|
|
9939
|
+
githubRepository?: {
|
|
9940
|
+
__typename?: 'GitHubRepository';
|
|
9941
|
+
id: string;
|
|
9942
|
+
metadata: {
|
|
9943
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
9944
|
+
githubRepoOwnerName: string;
|
|
9945
|
+
githubRepoName: string;
|
|
9946
|
+
};
|
|
9947
|
+
} | null;
|
|
9602
9948
|
};
|
|
9603
9949
|
};
|
|
9604
9950
|
};
|
|
@@ -9642,6 +9988,15 @@ export type AppByFullNameQuery = {
|
|
|
9642
9988
|
};
|
|
9643
9989
|
}>;
|
|
9644
9990
|
};
|
|
9991
|
+
githubRepository?: {
|
|
9992
|
+
__typename?: 'GitHubRepository';
|
|
9993
|
+
id: string;
|
|
9994
|
+
metadata: {
|
|
9995
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
9996
|
+
githubRepoOwnerName: string;
|
|
9997
|
+
githubRepoName: string;
|
|
9998
|
+
};
|
|
9999
|
+
} | null;
|
|
9645
10000
|
};
|
|
9646
10001
|
};
|
|
9647
10002
|
};
|
|
@@ -9853,7 +10208,6 @@ export type BuildsByIdQuery = {
|
|
|
9853
10208
|
status: BuildStatus;
|
|
9854
10209
|
platform: AppPlatform;
|
|
9855
10210
|
channel?: string | null;
|
|
9856
|
-
releaseChannel?: string | null;
|
|
9857
10211
|
distribution?: DistributionType | null;
|
|
9858
10212
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
9859
10213
|
buildProfile?: string | null;
|
|
@@ -9931,7 +10285,6 @@ export type BuildsWithSubmissionsByIdQuery = {
|
|
|
9931
10285
|
status: BuildStatus;
|
|
9932
10286
|
platform: AppPlatform;
|
|
9933
10287
|
channel?: string | null;
|
|
9934
|
-
releaseChannel?: string | null;
|
|
9935
10288
|
distribution?: DistributionType | null;
|
|
9936
10289
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
9937
10290
|
buildProfile?: string | null;
|
|
@@ -10050,7 +10403,6 @@ export type ViewBuildsOnAppQuery = {
|
|
|
10050
10403
|
status: BuildStatus;
|
|
10051
10404
|
platform: AppPlatform;
|
|
10052
10405
|
channel?: string | null;
|
|
10053
|
-
releaseChannel?: string | null;
|
|
10054
10406
|
distribution?: DistributionType | null;
|
|
10055
10407
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
10056
10408
|
buildProfile?: string | null;
|
|
@@ -10730,6 +11082,18 @@ export type CurrentUserQuery = {
|
|
|
10730
11082
|
};
|
|
10731
11083
|
}>;
|
|
10732
11084
|
};
|
|
11085
|
+
preferences: {
|
|
11086
|
+
__typename?: 'UserPreferences';
|
|
11087
|
+
onboarding?: {
|
|
11088
|
+
__typename?: 'UserPreferencesOnboarding';
|
|
11089
|
+
appId: string;
|
|
11090
|
+
platform?: AppPlatform | null;
|
|
11091
|
+
deviceType?: OnboardingDeviceType | null;
|
|
11092
|
+
environment?: OnboardingEnvironment | null;
|
|
11093
|
+
isCLIDone?: boolean | null;
|
|
11094
|
+
lastUsed: string;
|
|
11095
|
+
} | null;
|
|
11096
|
+
};
|
|
10733
11097
|
accounts: Array<{
|
|
10734
11098
|
__typename?: 'Account';
|
|
10735
11099
|
id: string;
|
|
@@ -10792,6 +11156,18 @@ export type CurrentUserQuery = {
|
|
|
10792
11156
|
};
|
|
10793
11157
|
}>;
|
|
10794
11158
|
};
|
|
11159
|
+
preferences: {
|
|
11160
|
+
__typename?: 'UserPreferences';
|
|
11161
|
+
onboarding?: {
|
|
11162
|
+
__typename?: 'UserPreferencesOnboarding';
|
|
11163
|
+
appId: string;
|
|
11164
|
+
platform?: AppPlatform | null;
|
|
11165
|
+
deviceType?: OnboardingDeviceType | null;
|
|
11166
|
+
environment?: OnboardingEnvironment | null;
|
|
11167
|
+
isCLIDone?: boolean | null;
|
|
11168
|
+
lastUsed: string;
|
|
11169
|
+
} | null;
|
|
11170
|
+
};
|
|
10795
11171
|
accounts: Array<{
|
|
10796
11172
|
__typename?: 'Account';
|
|
10797
11173
|
id: string;
|
|
@@ -10922,6 +11298,15 @@ export type AppFragment = {
|
|
|
10922
11298
|
};
|
|
10923
11299
|
}>;
|
|
10924
11300
|
};
|
|
11301
|
+
githubRepository?: {
|
|
11302
|
+
__typename?: 'GitHubRepository';
|
|
11303
|
+
id: string;
|
|
11304
|
+
metadata: {
|
|
11305
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
11306
|
+
githubRepoOwnerName: string;
|
|
11307
|
+
githubRepoName: string;
|
|
11308
|
+
};
|
|
11309
|
+
} | null;
|
|
10925
11310
|
};
|
|
10926
11311
|
export type BuildFragment = {
|
|
10927
11312
|
__typename?: 'Build';
|
|
@@ -10929,7 +11314,6 @@ export type BuildFragment = {
|
|
|
10929
11314
|
status: BuildStatus;
|
|
10930
11315
|
platform: AppPlatform;
|
|
10931
11316
|
channel?: string | null;
|
|
10932
|
-
releaseChannel?: string | null;
|
|
10933
11317
|
distribution?: DistributionType | null;
|
|
10934
11318
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
10935
11319
|
buildProfile?: string | null;
|
|
@@ -10998,7 +11382,6 @@ export type BuildWithSubmissionsFragment = {
|
|
|
10998
11382
|
status: BuildStatus;
|
|
10999
11383
|
platform: AppPlatform;
|
|
11000
11384
|
channel?: string | null;
|
|
11001
|
-
releaseChannel?: string | null;
|
|
11002
11385
|
distribution?: DistributionType | null;
|
|
11003
11386
|
iosEnterpriseProvisioning?: BuildIosEnterpriseProvisioning | null;
|
|
11004
11387
|
buildProfile?: string | null;
|
|
@@ -11314,6 +11697,15 @@ export type CommonAndroidAppCredentialsFragment = {
|
|
|
11314
11697
|
};
|
|
11315
11698
|
}>;
|
|
11316
11699
|
};
|
|
11700
|
+
githubRepository?: {
|
|
11701
|
+
__typename?: 'GitHubRepository';
|
|
11702
|
+
id: string;
|
|
11703
|
+
metadata: {
|
|
11704
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
11705
|
+
githubRepoOwnerName: string;
|
|
11706
|
+
githubRepoName: string;
|
|
11707
|
+
};
|
|
11708
|
+
} | null;
|
|
11317
11709
|
};
|
|
11318
11710
|
androidFcm?: {
|
|
11319
11711
|
__typename?: 'AndroidFcm';
|
|
@@ -11498,6 +11890,15 @@ export type AppleDistributionCertificateFragment = {
|
|
|
11498
11890
|
};
|
|
11499
11891
|
}>;
|
|
11500
11892
|
};
|
|
11893
|
+
githubRepository?: {
|
|
11894
|
+
__typename?: 'GitHubRepository';
|
|
11895
|
+
id: string;
|
|
11896
|
+
metadata: {
|
|
11897
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
11898
|
+
githubRepoOwnerName: string;
|
|
11899
|
+
githubRepoName: string;
|
|
11900
|
+
};
|
|
11901
|
+
} | null;
|
|
11501
11902
|
};
|
|
11502
11903
|
appleAppIdentifier: {
|
|
11503
11904
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -11588,6 +11989,15 @@ export type ApplePushKeyFragment = {
|
|
|
11588
11989
|
};
|
|
11589
11990
|
}>;
|
|
11590
11991
|
};
|
|
11992
|
+
githubRepository?: {
|
|
11993
|
+
__typename?: 'GitHubRepository';
|
|
11994
|
+
id: string;
|
|
11995
|
+
metadata: {
|
|
11996
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
11997
|
+
githubRepoOwnerName: string;
|
|
11998
|
+
githubRepoName: string;
|
|
11999
|
+
};
|
|
12000
|
+
} | null;
|
|
11591
12001
|
};
|
|
11592
12002
|
appleAppIdentifier: {
|
|
11593
12003
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -11671,6 +12081,15 @@ export type IosAppBuildCredentialsFragment = {
|
|
|
11671
12081
|
};
|
|
11672
12082
|
}>;
|
|
11673
12083
|
};
|
|
12084
|
+
githubRepository?: {
|
|
12085
|
+
__typename?: 'GitHubRepository';
|
|
12086
|
+
id: string;
|
|
12087
|
+
metadata: {
|
|
12088
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12089
|
+
githubRepoOwnerName: string;
|
|
12090
|
+
githubRepoName: string;
|
|
12091
|
+
};
|
|
12092
|
+
} | null;
|
|
11674
12093
|
};
|
|
11675
12094
|
appleAppIdentifier: {
|
|
11676
12095
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -11746,6 +12165,15 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
11746
12165
|
};
|
|
11747
12166
|
}>;
|
|
11748
12167
|
};
|
|
12168
|
+
githubRepository?: {
|
|
12169
|
+
__typename?: 'GitHubRepository';
|
|
12170
|
+
id: string;
|
|
12171
|
+
metadata: {
|
|
12172
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12173
|
+
githubRepoOwnerName: string;
|
|
12174
|
+
githubRepoName: string;
|
|
12175
|
+
};
|
|
12176
|
+
} | null;
|
|
11749
12177
|
};
|
|
11750
12178
|
appleTeam?: {
|
|
11751
12179
|
__typename?: 'AppleTeam';
|
|
@@ -11805,6 +12233,15 @@ export type CommonIosAppCredentialsWithoutBuildCredentialsFragment = {
|
|
|
11805
12233
|
};
|
|
11806
12234
|
}>;
|
|
11807
12235
|
};
|
|
12236
|
+
githubRepository?: {
|
|
12237
|
+
__typename?: 'GitHubRepository';
|
|
12238
|
+
id: string;
|
|
12239
|
+
metadata: {
|
|
12240
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12241
|
+
githubRepoOwnerName: string;
|
|
12242
|
+
githubRepoName: string;
|
|
12243
|
+
};
|
|
12244
|
+
} | null;
|
|
11808
12245
|
};
|
|
11809
12246
|
appleAppIdentifier: {
|
|
11810
12247
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -11892,6 +12329,15 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
11892
12329
|
};
|
|
11893
12330
|
}>;
|
|
11894
12331
|
};
|
|
12332
|
+
githubRepository?: {
|
|
12333
|
+
__typename?: 'GitHubRepository';
|
|
12334
|
+
id: string;
|
|
12335
|
+
metadata: {
|
|
12336
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12337
|
+
githubRepoOwnerName: string;
|
|
12338
|
+
githubRepoName: string;
|
|
12339
|
+
};
|
|
12340
|
+
} | null;
|
|
11895
12341
|
};
|
|
11896
12342
|
appleAppIdentifier: {
|
|
11897
12343
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -11964,6 +12410,15 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
11964
12410
|
};
|
|
11965
12411
|
}>;
|
|
11966
12412
|
};
|
|
12413
|
+
githubRepository?: {
|
|
12414
|
+
__typename?: 'GitHubRepository';
|
|
12415
|
+
id: string;
|
|
12416
|
+
metadata: {
|
|
12417
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12418
|
+
githubRepoOwnerName: string;
|
|
12419
|
+
githubRepoName: string;
|
|
12420
|
+
};
|
|
12421
|
+
} | null;
|
|
11967
12422
|
};
|
|
11968
12423
|
appleTeam?: {
|
|
11969
12424
|
__typename?: 'AppleTeam';
|
|
@@ -12023,6 +12478,15 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
12023
12478
|
};
|
|
12024
12479
|
}>;
|
|
12025
12480
|
};
|
|
12481
|
+
githubRepository?: {
|
|
12482
|
+
__typename?: 'GitHubRepository';
|
|
12483
|
+
id: string;
|
|
12484
|
+
metadata: {
|
|
12485
|
+
__typename?: 'GitHubRepositoryMetadata';
|
|
12486
|
+
githubRepoOwnerName: string;
|
|
12487
|
+
githubRepoName: string;
|
|
12488
|
+
};
|
|
12489
|
+
} | null;
|
|
12026
12490
|
};
|
|
12027
12491
|
appleAppIdentifier: {
|
|
12028
12492
|
__typename?: 'AppleAppIdentifier';
|