eas-cli 7.6.2 → 7.8.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 +99 -73
- package/build/build/android/graphql.js +3 -0
- package/build/build/android/prepareJob.d.ts +2 -2
- package/build/build/android/prepareJob.js +2 -1
- package/build/build/build.d.ts +4 -4
- package/build/build/build.js +33 -3
- package/build/build/context.d.ts +2 -0
- package/build/build/createContext.d.ts +3 -1
- package/build/build/createContext.js +2 -1
- package/build/build/graphql.d.ts +3 -1
- package/build/build/graphql.js +11 -1
- package/build/build/ios/graphql.js +3 -0
- package/build/build/ios/prepareJob.d.ts +2 -2
- package/build/build/ios/prepareJob.js +2 -1
- package/build/build/local.js +1 -1
- package/build/build/runBuildAndSubmit.d.ts +2 -0
- package/build/build/runBuildAndSubmit.js +20 -0
- package/build/build/utils/repository.d.ts +4 -2
- package/build/build/utils/repository.js +37 -1
- package/build/commands/build/index.d.ts +2 -0
- package/build/commands/build/index.js +6 -0
- package/build/commands/credentials/configure-build.d.ts +18 -0
- package/build/commands/credentials/configure-build.js +43 -0
- package/build/commands/credentials/index.d.ts +16 -0
- package/build/commands/{credentials.js → credentials/index.js} +2 -2
- package/build/commands/submit.d.ts +1 -0
- package/build/commands/submit.js +7 -1
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +1 -0
- package/build/credentials/manager/Actions.d.ts +2 -1
- package/build/credentials/manager/Actions.js +1 -0
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +10 -0
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.js +35 -0
- package/build/credentials/manager/ManageAndroid.d.ts +9 -5
- package/build/credentials/manager/ManageAndroid.js +4 -0
- package/build/credentials/manager/ManageIos.d.ts +17 -8
- package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +7 -0
- package/build/credentials/manager/SetUpAndroidBuildCredentials.js +48 -0
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +19 -0
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +25 -0
- package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +7 -0
- package/build/credentials/manager/SetUpIosBuildCredentials.js +58 -0
- package/build/devices/utils/formatDevice.js +1 -0
- package/build/graphql/generated.d.ts +346 -47
- package/build/graphql/generated.js +25 -2
- package/build/graphql/types/credentials/AppleDevice.js +1 -0
- package/build/submit/android/AndroidSubmitter.js +1 -0
- package/build/submit/context.d.ts +2 -0
- package/build/submit/ios/IosSubmitter.d.ts +1 -0
- package/build/submit/ios/IosSubmitter.js +2 -0
- package/oclif.manifest.json +92 -32
- package/package.json +7 -6
- package/build/commands/credentials.d.ts +0 -16
|
@@ -106,15 +106,30 @@ export type Account = {
|
|
|
106
106
|
/** Coalesced project activity for all apps belonging to this account. */
|
|
107
107
|
activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
|
|
108
108
|
appCount: Scalars['Int']['output'];
|
|
109
|
+
/** @deprecated Use appStoreConnectApiKeysPaginated */
|
|
109
110
|
appStoreConnectApiKeys: Array<AppStoreConnectApiKey>;
|
|
111
|
+
appStoreConnectApiKeysPaginated: AccountAppStoreConnectApiKeysConnection;
|
|
110
112
|
appleAppIdentifiers: Array<AppleAppIdentifier>;
|
|
113
|
+
/** @deprecated Use appleDevicesPaginated */
|
|
111
114
|
appleDevices: Array<AppleDevice>;
|
|
115
|
+
appleDevicesPaginated: AccountAppleDevicesConnection;
|
|
116
|
+
/** @deprecated Use appleDistributionCertificatesPaginated */
|
|
112
117
|
appleDistributionCertificates: Array<AppleDistributionCertificate>;
|
|
118
|
+
appleDistributionCertificatesPaginated: AccountAppleDistributionCertificatesConnection;
|
|
119
|
+
/** @deprecated Use appleProvisioningProfilesPaginated */
|
|
113
120
|
appleProvisioningProfiles: Array<AppleProvisioningProfile>;
|
|
121
|
+
appleProvisioningProfilesPaginated: AccountAppleProvisioningProfilesConnection;
|
|
122
|
+
/** @deprecated Use applePushKeysPaginated */
|
|
114
123
|
applePushKeys: Array<ApplePushKey>;
|
|
115
|
-
|
|
124
|
+
applePushKeysPaginated: AccountApplePushKeysConnection;
|
|
125
|
+
/** @deprecated Use appleTeamsPaginated */
|
|
116
126
|
appleTeams: Array<AppleTeam>;
|
|
117
|
-
/**
|
|
127
|
+
/** iOS credentials for account */
|
|
128
|
+
appleTeamsPaginated: AccountAppleTeamsConnection;
|
|
129
|
+
/**
|
|
130
|
+
* Apps associated with this account
|
|
131
|
+
* @deprecated Use appsPaginated
|
|
132
|
+
*/
|
|
118
133
|
apps: Array<App>;
|
|
119
134
|
/** Paginated list of apps associated with this account. By default sorted by name. Use filter to adjust the sorting order. */
|
|
120
135
|
appsPaginated: AccountAppsConnection;
|
|
@@ -137,8 +152,10 @@ export type Account = {
|
|
|
137
152
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
138
153
|
/** GitHub App installations for an account */
|
|
139
154
|
githubAppInstallations: Array<GitHubAppInstallation>;
|
|
140
|
-
/**
|
|
155
|
+
/** @deprecated Use googleServiceAccountKeysPaginated */
|
|
141
156
|
googleServiceAccountKeys: Array<GoogleServiceAccountKey>;
|
|
157
|
+
/** Android credentials for account */
|
|
158
|
+
googleServiceAccountKeysPaginated: AccountGoogleServiceAccountKeysConnection;
|
|
142
159
|
id: Scalars['ID']['output'];
|
|
143
160
|
isCurrent: Scalars['Boolean']['output'];
|
|
144
161
|
isDisabled: Scalars['Boolean']['output'];
|
|
@@ -178,6 +195,8 @@ export type Account = {
|
|
|
178
195
|
userInvitations: Array<UserInvitation>;
|
|
179
196
|
/** Actors associated with this account and permissions they hold */
|
|
180
197
|
users: Array<UserPermission>;
|
|
198
|
+
/** Permission info for the viewer on this account */
|
|
199
|
+
viewerUserPermission: UserPermission;
|
|
181
200
|
/** @deprecated Build packs are no longer supported */
|
|
182
201
|
willAutoRenewBuilds?: Maybe<Scalars['Boolean']['output']>;
|
|
183
202
|
};
|
|
@@ -190,6 +209,16 @@ export type AccountActivityTimelineProjectActivitiesArgs = {
|
|
|
190
209
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
191
210
|
limit: Scalars['Int']['input'];
|
|
192
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
214
|
+
* data and settings. Actors may own and be members of accounts.
|
|
215
|
+
*/
|
|
216
|
+
export type AccountAppStoreConnectApiKeysPaginatedArgs = {
|
|
217
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
218
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
220
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
221
|
+
};
|
|
193
222
|
/**
|
|
194
223
|
* An account is a container owning projects, credentials, billing and other organization
|
|
195
224
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -206,6 +235,27 @@ export type AccountAppleDevicesArgs = {
|
|
|
206
235
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
207
236
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
208
237
|
};
|
|
238
|
+
/**
|
|
239
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
240
|
+
* data and settings. Actors may own and be members of accounts.
|
|
241
|
+
*/
|
|
242
|
+
export type AccountAppleDevicesPaginatedArgs = {
|
|
243
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
244
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
245
|
+
filter?: InputMaybe<AppleDeviceFilterInput>;
|
|
246
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
247
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
251
|
+
* data and settings. Actors may own and be members of accounts.
|
|
252
|
+
*/
|
|
253
|
+
export type AccountAppleDistributionCertificatesPaginatedArgs = {
|
|
254
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
255
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
256
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
257
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
258
|
+
};
|
|
209
259
|
/**
|
|
210
260
|
* An account is a container owning projects, credentials, billing and other organization
|
|
211
261
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -213,6 +263,26 @@ export type AccountAppleDevicesArgs = {
|
|
|
213
263
|
export type AccountAppleProvisioningProfilesArgs = {
|
|
214
264
|
appleAppIdentifierId?: InputMaybe<Scalars['ID']['input']>;
|
|
215
265
|
};
|
|
266
|
+
/**
|
|
267
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
268
|
+
* data and settings. Actors may own and be members of accounts.
|
|
269
|
+
*/
|
|
270
|
+
export type AccountAppleProvisioningProfilesPaginatedArgs = {
|
|
271
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
272
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
273
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
274
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
278
|
+
* data and settings. Actors may own and be members of accounts.
|
|
279
|
+
*/
|
|
280
|
+
export type AccountApplePushKeysPaginatedArgs = {
|
|
281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
282
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
284
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
285
|
+
};
|
|
216
286
|
/**
|
|
217
287
|
* An account is a container owning projects, credentials, billing and other organization
|
|
218
288
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -222,6 +292,17 @@ export type AccountAppleTeamsArgs = {
|
|
|
222
292
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
223
293
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
224
294
|
};
|
|
295
|
+
/**
|
|
296
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
297
|
+
* data and settings. Actors may own and be members of accounts.
|
|
298
|
+
*/
|
|
299
|
+
export type AccountAppleTeamsPaginatedArgs = {
|
|
300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
301
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
302
|
+
filter?: InputMaybe<AppleTeamFilterInput>;
|
|
303
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
304
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
305
|
+
};
|
|
225
306
|
/**
|
|
226
307
|
* An account is a container owning projects, credentials, billing and other organization
|
|
227
308
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -283,6 +364,16 @@ export type AccountBuildsArgs = {
|
|
|
283
364
|
export type AccountEnvironmentSecretsArgs = {
|
|
284
365
|
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
285
366
|
};
|
|
367
|
+
/**
|
|
368
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
369
|
+
* data and settings. Actors may own and be members of accounts.
|
|
370
|
+
*/
|
|
371
|
+
export type AccountGoogleServiceAccountKeysPaginatedArgs = {
|
|
372
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
373
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
374
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
375
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
376
|
+
};
|
|
286
377
|
/**
|
|
287
378
|
* An account is a container owning projects, credentials, billing and other organization
|
|
288
379
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -302,6 +393,66 @@ export type AccountTimelineActivityArgs = {
|
|
|
302
393
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
303
394
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
304
395
|
};
|
|
396
|
+
export type AccountAppStoreConnectApiKeysConnection = {
|
|
397
|
+
__typename?: 'AccountAppStoreConnectApiKeysConnection';
|
|
398
|
+
edges: Array<AccountAppStoreConnectApiKeysEdge>;
|
|
399
|
+
pageInfo: PageInfo;
|
|
400
|
+
};
|
|
401
|
+
export type AccountAppStoreConnectApiKeysEdge = {
|
|
402
|
+
__typename?: 'AccountAppStoreConnectApiKeysEdge';
|
|
403
|
+
cursor: Scalars['String']['output'];
|
|
404
|
+
node: AppStoreConnectApiKey;
|
|
405
|
+
};
|
|
406
|
+
export type AccountAppleDevicesConnection = {
|
|
407
|
+
__typename?: 'AccountAppleDevicesConnection';
|
|
408
|
+
edges: Array<AccountAppleDevicesEdge>;
|
|
409
|
+
pageInfo: PageInfo;
|
|
410
|
+
};
|
|
411
|
+
export type AccountAppleDevicesEdge = {
|
|
412
|
+
__typename?: 'AccountAppleDevicesEdge';
|
|
413
|
+
cursor: Scalars['String']['output'];
|
|
414
|
+
node: AppleDevice;
|
|
415
|
+
};
|
|
416
|
+
export type AccountAppleDistributionCertificatesConnection = {
|
|
417
|
+
__typename?: 'AccountAppleDistributionCertificatesConnection';
|
|
418
|
+
edges: Array<AccountAppleDistributionCertificatesEdge>;
|
|
419
|
+
pageInfo: PageInfo;
|
|
420
|
+
};
|
|
421
|
+
export type AccountAppleDistributionCertificatesEdge = {
|
|
422
|
+
__typename?: 'AccountAppleDistributionCertificatesEdge';
|
|
423
|
+
cursor: Scalars['String']['output'];
|
|
424
|
+
node: AppleDistributionCertificate;
|
|
425
|
+
};
|
|
426
|
+
export type AccountAppleProvisioningProfilesConnection = {
|
|
427
|
+
__typename?: 'AccountAppleProvisioningProfilesConnection';
|
|
428
|
+
edges: Array<AccountAppleProvisioningProfilesEdge>;
|
|
429
|
+
pageInfo: PageInfo;
|
|
430
|
+
};
|
|
431
|
+
export type AccountAppleProvisioningProfilesEdge = {
|
|
432
|
+
__typename?: 'AccountAppleProvisioningProfilesEdge';
|
|
433
|
+
cursor: Scalars['String']['output'];
|
|
434
|
+
node: AppleProvisioningProfile;
|
|
435
|
+
};
|
|
436
|
+
export type AccountApplePushKeysConnection = {
|
|
437
|
+
__typename?: 'AccountApplePushKeysConnection';
|
|
438
|
+
edges: Array<AccountApplePushKeysEdge>;
|
|
439
|
+
pageInfo: PageInfo;
|
|
440
|
+
};
|
|
441
|
+
export type AccountApplePushKeysEdge = {
|
|
442
|
+
__typename?: 'AccountApplePushKeysEdge';
|
|
443
|
+
cursor: Scalars['String']['output'];
|
|
444
|
+
node: ApplePushKey;
|
|
445
|
+
};
|
|
446
|
+
export type AccountAppleTeamsConnection = {
|
|
447
|
+
__typename?: 'AccountAppleTeamsConnection';
|
|
448
|
+
edges: Array<AccountAppleTeamsEdge>;
|
|
449
|
+
pageInfo: PageInfo;
|
|
450
|
+
};
|
|
451
|
+
export type AccountAppleTeamsEdge = {
|
|
452
|
+
__typename?: 'AccountAppleTeamsEdge';
|
|
453
|
+
cursor: Scalars['String']['output'];
|
|
454
|
+
node: AppleTeam;
|
|
455
|
+
};
|
|
305
456
|
export type AccountAppsConnection = {
|
|
306
457
|
__typename?: 'AccountAppsConnection';
|
|
307
458
|
edges: Array<AccountAppsEdge>;
|
|
@@ -327,6 +478,16 @@ export declare enum AccountAppsSortByField {
|
|
|
327
478
|
export type AccountDataInput = {
|
|
328
479
|
name: Scalars['String']['input'];
|
|
329
480
|
};
|
|
481
|
+
export type AccountGoogleServiceAccountKeysConnection = {
|
|
482
|
+
__typename?: 'AccountGoogleServiceAccountKeysConnection';
|
|
483
|
+
edges: Array<AccountGoogleServiceAccountKeysEdge>;
|
|
484
|
+
pageInfo: PageInfo;
|
|
485
|
+
};
|
|
486
|
+
export type AccountGoogleServiceAccountKeysEdge = {
|
|
487
|
+
__typename?: 'AccountGoogleServiceAccountKeysEdge';
|
|
488
|
+
cursor: Scalars['String']['output'];
|
|
489
|
+
node: GoogleServiceAccountKey;
|
|
490
|
+
};
|
|
330
491
|
export type AccountMutation = {
|
|
331
492
|
__typename?: 'AccountMutation';
|
|
332
493
|
/**
|
|
@@ -795,6 +956,7 @@ export type AndroidJobInput = {
|
|
|
795
956
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
796
957
|
experimental?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
797
958
|
gradleCommand?: InputMaybe<Scalars['String']['input']>;
|
|
959
|
+
loggerLevel?: InputMaybe<WorkerLoggerLevel>;
|
|
798
960
|
mode?: InputMaybe<BuildMode>;
|
|
799
961
|
projectArchive: ProjectArchiveSourceInput;
|
|
800
962
|
projectRootDirectory: Scalars['String']['input'];
|
|
@@ -821,9 +983,11 @@ export type AndroidJobOverridesInput = {
|
|
|
821
983
|
buildType?: InputMaybe<AndroidBuildType>;
|
|
822
984
|
builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;
|
|
823
985
|
cache?: InputMaybe<BuildCacheInput>;
|
|
986
|
+
customBuildConfig?: InputMaybe<CustomBuildConfigInput>;
|
|
824
987
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
825
988
|
experimental?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
826
989
|
gradleCommand?: InputMaybe<Scalars['String']['input']>;
|
|
990
|
+
loggerLevel?: InputMaybe<WorkerLoggerLevel>;
|
|
827
991
|
mode?: InputMaybe<BuildMode>;
|
|
828
992
|
releaseChannel?: InputMaybe<Scalars['String']['input']>;
|
|
829
993
|
secrets?: InputMaybe<AndroidJobSecretsInput>;
|
|
@@ -894,6 +1058,7 @@ export type AndroidSubmissionConfigInput = {
|
|
|
894
1058
|
changesNotSentForReview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
895
1059
|
googleServiceAccountKeyId?: InputMaybe<Scalars['String']['input']>;
|
|
896
1060
|
googleServiceAccountKeyJson?: InputMaybe<Scalars['String']['input']>;
|
|
1061
|
+
isVerboseFastlaneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
897
1062
|
releaseStatus?: InputMaybe<SubmissionAndroidReleaseStatus>;
|
|
898
1063
|
rollout?: InputMaybe<Scalars['Float']['input']>;
|
|
899
1064
|
track: SubmissionAndroidTrack;
|
|
@@ -907,7 +1072,10 @@ export type App = Project & {
|
|
|
907
1072
|
activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
|
|
908
1073
|
/** Android app credentials for the project */
|
|
909
1074
|
androidAppCredentials: Array<AndroidAppCredentials>;
|
|
910
|
-
/**
|
|
1075
|
+
/**
|
|
1076
|
+
* ios.appStoreUrl field from most recent classic update manifest
|
|
1077
|
+
* @deprecated Classic updates have been deprecated.
|
|
1078
|
+
*/
|
|
911
1079
|
appStoreUrl?: Maybe<Scalars['String']['output']>;
|
|
912
1080
|
assetLimitPerUpdateGroup: Scalars['Int']['output'];
|
|
913
1081
|
branchesPaginated: AppBranchesConnection;
|
|
@@ -920,12 +1088,16 @@ export type App = Project & {
|
|
|
920
1088
|
/** (EAS Build) Builds associated with this app */
|
|
921
1089
|
builds: Array<Build>;
|
|
922
1090
|
buildsPaginated: AppBuildsConnection;
|
|
923
|
-
/**
|
|
1091
|
+
/**
|
|
1092
|
+
* Classic update release channel names that have at least one build
|
|
1093
|
+
* @deprecated Classic updates have been deprecated.
|
|
1094
|
+
*/
|
|
924
1095
|
buildsReleaseChannels: Array<Scalars['String']['output']>;
|
|
925
1096
|
channelsPaginated: AppChannelsConnection;
|
|
926
1097
|
deployment?: Maybe<Deployment>;
|
|
927
1098
|
/** Deployments associated with this app */
|
|
928
1099
|
deployments: DeploymentsConnection;
|
|
1100
|
+
/** @deprecated Classic updates have been deprecated. */
|
|
929
1101
|
description: Scalars['String']['output'];
|
|
930
1102
|
/** Environment secrets for an app */
|
|
931
1103
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
@@ -933,29 +1105,44 @@ export type App = Project & {
|
|
|
933
1105
|
githubBuildTriggers: Array<GitHubBuildTrigger>;
|
|
934
1106
|
githubRepository?: Maybe<GitHubRepository>;
|
|
935
1107
|
githubRepositorySettings?: Maybe<GitHubRepositorySettings>;
|
|
936
|
-
/**
|
|
1108
|
+
/**
|
|
1109
|
+
* githubUrl field from most recent classic update manifest
|
|
1110
|
+
* @deprecated Classic updates have been deprecated.
|
|
1111
|
+
*/
|
|
937
1112
|
githubUrl?: Maybe<Scalars['String']['output']>;
|
|
938
|
-
/**
|
|
1113
|
+
/**
|
|
1114
|
+
* Info about the icon specified in the most recent classic update manifest
|
|
1115
|
+
* @deprecated Classic updates have been deprecated.
|
|
1116
|
+
*/
|
|
939
1117
|
icon?: Maybe<AppIcon>;
|
|
940
1118
|
/** @deprecated No longer supported */
|
|
941
1119
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
942
1120
|
id: Scalars['ID']['output'];
|
|
943
1121
|
/** App query field for querying EAS Insights about this app */
|
|
944
1122
|
insights: AppInsights;
|
|
1123
|
+
internalDistributionBuildPrivacy: AppInternalDistributionBuildPrivacy;
|
|
945
1124
|
/** iOS app credentials for the project */
|
|
946
1125
|
iosAppCredentials: Array<IosAppCredentials>;
|
|
947
1126
|
isDeleting: Scalars['Boolean']['output'];
|
|
948
|
-
/**
|
|
1127
|
+
/**
|
|
1128
|
+
* Whether the latest classic update publish is using a deprecated SDK version
|
|
1129
|
+
* @deprecated Classic updates have been deprecated.
|
|
1130
|
+
*/
|
|
949
1131
|
isDeprecated: Scalars['Boolean']['output'];
|
|
950
1132
|
/** @deprecated 'likes' have been deprecated. */
|
|
951
1133
|
isLikedByMe: Scalars['Boolean']['output'];
|
|
1134
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
952
1135
|
/** @deprecated No longer supported */
|
|
953
1136
|
lastPublishedTime: Scalars['DateTime']['output'];
|
|
954
1137
|
/** Time of the last user activity (update, branch, submission). */
|
|
955
1138
|
latestActivity: Scalars['DateTime']['output'];
|
|
956
1139
|
latestAppVersionByPlatformAndApplicationIdentifier?: Maybe<AppVersion>;
|
|
1140
|
+
/** @deprecated Classic updates have been deprecated. */
|
|
957
1141
|
latestReleaseForReleaseChannel?: Maybe<AppRelease>;
|
|
958
|
-
/**
|
|
1142
|
+
/**
|
|
1143
|
+
* ID of latest classic update release
|
|
1144
|
+
* @deprecated Classic updates have been deprecated.
|
|
1145
|
+
*/
|
|
959
1146
|
latestReleaseId: Scalars['ID']['output'];
|
|
960
1147
|
/** @deprecated 'likes' have been deprecated. */
|
|
961
1148
|
likeCount: Scalars['Int']['output'];
|
|
@@ -967,22 +1154,34 @@ export type App = Project & {
|
|
|
967
1154
|
packageName: Scalars['String']['output'];
|
|
968
1155
|
/** @deprecated No longer supported */
|
|
969
1156
|
packageUsername: Scalars['String']['output'];
|
|
970
|
-
/**
|
|
1157
|
+
/**
|
|
1158
|
+
* android.playStoreUrl field from most recent classic update manifest
|
|
1159
|
+
* @deprecated Classic updates have been deprecated.
|
|
1160
|
+
*/
|
|
971
1161
|
playStoreUrl?: Maybe<Scalars['String']['output']>;
|
|
972
1162
|
/** @deprecated Use 'privacySetting' instead. */
|
|
973
1163
|
privacy: Scalars['String']['output'];
|
|
974
1164
|
privacySetting: AppPrivacy;
|
|
975
|
-
/**
|
|
1165
|
+
/**
|
|
1166
|
+
* Whether there have been any classic update publishes
|
|
1167
|
+
* @deprecated Classic updates have been deprecated.
|
|
1168
|
+
*/
|
|
976
1169
|
published: Scalars['Boolean']['output'];
|
|
977
1170
|
pushSecurityEnabled: Scalars['Boolean']['output'];
|
|
978
|
-
/**
|
|
1171
|
+
/**
|
|
1172
|
+
* Classic update release channel names (to be removed)
|
|
1173
|
+
* @deprecated Classic updates have been deprecated.
|
|
1174
|
+
*/
|
|
979
1175
|
releaseChannels: Array<Scalars['String']['output']>;
|
|
980
1176
|
/** @deprecated Legacy access tokens are deprecated */
|
|
981
1177
|
requiresAccessTokenForPushSecurity: Scalars['Boolean']['output'];
|
|
982
1178
|
/** Runtimes associated with this app */
|
|
983
1179
|
runtimes: RuntimesConnection;
|
|
984
1180
|
scopeKey: Scalars['String']['output'];
|
|
985
|
-
/**
|
|
1181
|
+
/**
|
|
1182
|
+
* SDK version of the latest classic update publish, 0.0.0 otherwise
|
|
1183
|
+
* @deprecated Classic updates have been deprecated.
|
|
1184
|
+
*/
|
|
986
1185
|
sdkVersion: Scalars['String']['output'];
|
|
987
1186
|
slug: Scalars['String']['output'];
|
|
988
1187
|
/** EAS Submissions associated with this app */
|
|
@@ -1002,7 +1201,10 @@ export type App = Project & {
|
|
|
1002
1201
|
updateChannels: Array<UpdateChannel>;
|
|
1003
1202
|
/** EAS updates owned by an app grouped by update group */
|
|
1004
1203
|
updateGroups: Array<Array<Update>>;
|
|
1005
|
-
/**
|
|
1204
|
+
/**
|
|
1205
|
+
* Time of last classic update publish
|
|
1206
|
+
* @deprecated Classic updates have been deprecated.
|
|
1207
|
+
*/
|
|
1006
1208
|
updated: Scalars['DateTime']['output'];
|
|
1007
1209
|
/** EAS updates owned by an app */
|
|
1008
1210
|
updates: Array<Update>;
|
|
@@ -1206,6 +1408,7 @@ export type AppChannelsConnection = {
|
|
|
1206
1408
|
};
|
|
1207
1409
|
export type AppDataInput = {
|
|
1208
1410
|
id: Scalars['ID']['input'];
|
|
1411
|
+
internalDistributionBuildPrivacy?: InputMaybe<AppInternalDistributionBuildPrivacy>;
|
|
1209
1412
|
privacy?: InputMaybe<Scalars['String']['input']>;
|
|
1210
1413
|
};
|
|
1211
1414
|
export type AppIcon = {
|
|
@@ -1241,10 +1444,16 @@ export type AppInsightsUniqueUsersByAppVersionOverTimeArgs = {
|
|
|
1241
1444
|
export type AppInsightsUniqueUsersByPlatformOverTimeArgs = {
|
|
1242
1445
|
timespan: InsightsTimespan;
|
|
1243
1446
|
};
|
|
1447
|
+
export declare enum AppInternalDistributionBuildPrivacy {
|
|
1448
|
+
Private = "PRIVATE",
|
|
1449
|
+
Public = "PUBLIC"
|
|
1450
|
+
}
|
|
1244
1451
|
export type AppMutation = {
|
|
1245
1452
|
__typename?: 'AppMutation';
|
|
1246
1453
|
/** Create an unpublished app */
|
|
1247
1454
|
createApp: App;
|
|
1455
|
+
/** Create an unpublished app and GitHub repository if user desire to */
|
|
1456
|
+
createAppAndGithubRepository: CreateAppAndGithubRepositoryResponse;
|
|
1248
1457
|
/** @deprecated No longer supported */
|
|
1249
1458
|
grantAccess?: Maybe<App>;
|
|
1250
1459
|
/** Set display info for app */
|
|
@@ -1255,6 +1464,9 @@ export type AppMutation = {
|
|
|
1255
1464
|
export type AppMutationCreateAppArgs = {
|
|
1256
1465
|
appInput: AppInput;
|
|
1257
1466
|
};
|
|
1467
|
+
export type AppMutationCreateAppAndGithubRepositoryArgs = {
|
|
1468
|
+
appInput: AppWithGithubRepositoryInput;
|
|
1469
|
+
};
|
|
1258
1470
|
export type AppMutationGrantAccessArgs = {
|
|
1259
1471
|
accessLevel?: InputMaybe<Scalars['String']['input']>;
|
|
1260
1472
|
toUser: Scalars['ID']['input'];
|
|
@@ -1437,6 +1649,13 @@ export type AppVersionMutation = {
|
|
|
1437
1649
|
export type AppVersionMutationCreateAppVersionArgs = {
|
|
1438
1650
|
appVersionInput: AppVersionInput;
|
|
1439
1651
|
};
|
|
1652
|
+
export type AppWithGithubRepositoryInput = {
|
|
1653
|
+
accountId: Scalars['ID']['input'];
|
|
1654
|
+
appInfo?: InputMaybe<AppInfoInput>;
|
|
1655
|
+
installationIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
1656
|
+
privacy: AppPrivacy;
|
|
1657
|
+
projectName: Scalars['String']['input'];
|
|
1658
|
+
};
|
|
1440
1659
|
export type AppleAppIdentifier = {
|
|
1441
1660
|
__typename?: 'AppleAppIdentifier';
|
|
1442
1661
|
account: Account;
|
|
@@ -1463,7 +1682,7 @@ export type AppleDevice = {
|
|
|
1463
1682
|
__typename?: 'AppleDevice';
|
|
1464
1683
|
account: Account;
|
|
1465
1684
|
appleTeam: AppleTeam;
|
|
1466
|
-
createdAt
|
|
1685
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1467
1686
|
deviceClass?: Maybe<AppleDeviceClass>;
|
|
1468
1687
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1469
1688
|
id: Scalars['ID']['output'];
|
|
@@ -1475,8 +1694,14 @@ export type AppleDevice = {
|
|
|
1475
1694
|
export declare enum AppleDeviceClass {
|
|
1476
1695
|
Ipad = "IPAD",
|
|
1477
1696
|
Iphone = "IPHONE",
|
|
1478
|
-
Mac = "MAC"
|
|
1697
|
+
Mac = "MAC",
|
|
1698
|
+
Unknown = "UNKNOWN"
|
|
1479
1699
|
}
|
|
1700
|
+
export type AppleDeviceFilterInput = {
|
|
1701
|
+
appleTeamIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
1702
|
+
class?: InputMaybe<AppleDeviceClass>;
|
|
1703
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
1704
|
+
};
|
|
1480
1705
|
export type AppleDeviceInput = {
|
|
1481
1706
|
appleTeamId: Scalars['ID']['input'];
|
|
1482
1707
|
deviceClass?: InputMaybe<AppleDeviceClass>;
|
|
@@ -1665,6 +1890,9 @@ export type AppleTeamAppleDevicesArgs = {
|
|
|
1665
1890
|
export type AppleTeamAppleProvisioningProfilesArgs = {
|
|
1666
1891
|
appleAppIdentifierId?: InputMaybe<Scalars['ID']['input']>;
|
|
1667
1892
|
};
|
|
1893
|
+
export type AppleTeamFilterInput = {
|
|
1894
|
+
appleTeamIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
1895
|
+
};
|
|
1668
1896
|
export type AppleTeamInput = {
|
|
1669
1897
|
appleTeamIdentifier: Scalars['String']['input'];
|
|
1670
1898
|
appleTeamName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1726,6 +1954,33 @@ export type AssetQuery = {
|
|
|
1726
1954
|
export type AssetQueryMetadataArgs = {
|
|
1727
1955
|
storageKeys: Array<Scalars['String']['input']>;
|
|
1728
1956
|
};
|
|
1957
|
+
export type AuditLog = {
|
|
1958
|
+
__typename?: 'AuditLog';
|
|
1959
|
+
account?: Maybe<Account>;
|
|
1960
|
+
actor?: Maybe<Actor>;
|
|
1961
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1962
|
+
id: Scalars['ID']['output'];
|
|
1963
|
+
targetEntityId: Scalars['ID']['output'];
|
|
1964
|
+
targetEntityMutationType: TargetEntityMutationType;
|
|
1965
|
+
targetEntityTableName: Scalars['String']['output'];
|
|
1966
|
+
targetEntityTypeName: Scalars['String']['output'];
|
|
1967
|
+
websiteMessage: Scalars['String']['output'];
|
|
1968
|
+
};
|
|
1969
|
+
export type AuditLogQuery = {
|
|
1970
|
+
__typename?: 'AuditLogQuery';
|
|
1971
|
+
/** Query Audit Logs by account ID */
|
|
1972
|
+
byAccountId: Array<AuditLog>;
|
|
1973
|
+
/** Query an Audit Log by ID */
|
|
1974
|
+
byId: AuditLog;
|
|
1975
|
+
};
|
|
1976
|
+
export type AuditLogQueryByAccountIdArgs = {
|
|
1977
|
+
accountId: Scalars['ID']['input'];
|
|
1978
|
+
limit: Scalars['Int']['input'];
|
|
1979
|
+
offset: Scalars['Int']['input'];
|
|
1980
|
+
};
|
|
1981
|
+
export type AuditLogQueryByIdArgs = {
|
|
1982
|
+
auditLogId: Scalars['ID']['input'];
|
|
1983
|
+
};
|
|
1729
1984
|
export declare enum AuthProtocolType {
|
|
1730
1985
|
Oidc = "OIDC"
|
|
1731
1986
|
}
|
|
@@ -1787,6 +2042,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
|
1787
2042
|
actor?: Maybe<Actor>;
|
|
1788
2043
|
app: App;
|
|
1789
2044
|
appBuildVersion?: Maybe<Scalars['String']['output']>;
|
|
2045
|
+
appIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1790
2046
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
1791
2047
|
artifacts?: Maybe<BuildArtifacts>;
|
|
1792
2048
|
buildMode?: Maybe<BuildMode>;
|
|
@@ -1828,7 +2084,9 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
|
|
|
1828
2084
|
parentBuild?: Maybe<Build>;
|
|
1829
2085
|
platform: AppPlatform;
|
|
1830
2086
|
priority: BuildPriority;
|
|
2087
|
+
/** @deprecated Use app field instead */
|
|
1831
2088
|
project: Project;
|
|
2089
|
+
projectMetadataFileUrl?: Maybe<Scalars['String']['output']>;
|
|
1832
2090
|
projectRootDirectory?: Maybe<Scalars['String']['output']>;
|
|
1833
2091
|
provisioningStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1834
2092
|
/** Queue position is 1-indexed */
|
|
@@ -1966,6 +2224,7 @@ export type BuildFilterInput = {
|
|
|
1966
2224
|
distributions?: InputMaybe<Array<DistributionType>>;
|
|
1967
2225
|
platforms?: InputMaybe<Array<AppPlatform>>;
|
|
1968
2226
|
releaseChannel?: InputMaybe<Scalars['String']['input']>;
|
|
2227
|
+
runtimeVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1969
2228
|
simulator?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1970
2229
|
};
|
|
1971
2230
|
export declare enum BuildIosEnterpriseProvisioning {
|
|
@@ -2375,6 +2634,11 @@ export type CreateAndroidSubmissionInput = {
|
|
|
2375
2634
|
config: AndroidSubmissionConfigInput;
|
|
2376
2635
|
submittedBuildId?: InputMaybe<Scalars['ID']['input']>;
|
|
2377
2636
|
};
|
|
2637
|
+
export type CreateAppAndGithubRepositoryResponse = {
|
|
2638
|
+
__typename?: 'CreateAppAndGithubRepositoryResponse';
|
|
2639
|
+
app: App;
|
|
2640
|
+
cloneUrl?: Maybe<Scalars['String']['output']>;
|
|
2641
|
+
};
|
|
2378
2642
|
export type CreateBuildResult = {
|
|
2379
2643
|
__typename?: 'CreateBuildResult';
|
|
2380
2644
|
build: Build;
|
|
@@ -2779,17 +3043,12 @@ export declare enum GitHubAppEnvironment {
|
|
|
2779
3043
|
}
|
|
2780
3044
|
export type GitHubAppInstallation = {
|
|
2781
3045
|
__typename?: 'GitHubAppInstallation';
|
|
2782
|
-
accessibleRepositories: GitHubRepositoryPaginationResult;
|
|
2783
3046
|
account: Account;
|
|
2784
3047
|
actor?: Maybe<Actor>;
|
|
2785
3048
|
id: Scalars['ID']['output'];
|
|
2786
3049
|
installationIdentifier: Scalars['Int']['output'];
|
|
2787
3050
|
metadata: GitHubAppInstallationMetadata;
|
|
2788
3051
|
};
|
|
2789
|
-
export type GitHubAppInstallationAccessibleRepositoriesArgs = {
|
|
2790
|
-
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2791
|
-
perPage?: InputMaybe<Scalars['Int']['input']>;
|
|
2792
|
-
};
|
|
2793
3052
|
export type GitHubAppInstallationAccessibleRepository = {
|
|
2794
3053
|
__typename?: 'GitHubAppInstallationAccessibleRepository';
|
|
2795
3054
|
defaultBranch?: Maybe<Scalars['String']['output']>;
|
|
@@ -2840,22 +3099,18 @@ export type GitHubAppQuery = {
|
|
|
2840
3099
|
environment: GitHubAppEnvironment;
|
|
2841
3100
|
installation: GitHubAppInstallation;
|
|
2842
3101
|
name: Scalars['String']['output'];
|
|
2843
|
-
/** @deprecated */
|
|
2844
|
-
searchRepositories: GitHubRepositoryPaginationResult;
|
|
2845
3102
|
};
|
|
2846
3103
|
export type GitHubAppQueryInstallationArgs = {
|
|
2847
3104
|
id: Scalars['ID']['input'];
|
|
2848
3105
|
};
|
|
2849
|
-
export type GitHubAppQuerySearchRepositoriesArgs = {
|
|
2850
|
-
githubAppInstallationId: Scalars['ID']['input'];
|
|
2851
|
-
query: Scalars['String']['input'];
|
|
2852
|
-
};
|
|
2853
3106
|
export type GitHubBuildInput = {
|
|
2854
3107
|
appId: Scalars['ID']['input'];
|
|
3108
|
+
autoSubmit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2855
3109
|
baseDirectory?: InputMaybe<Scalars['String']['input']>;
|
|
2856
3110
|
buildProfile: Scalars['String']['input'];
|
|
2857
3111
|
gitRef: Scalars['String']['input'];
|
|
2858
3112
|
platform: AppPlatform;
|
|
3113
|
+
submitProfile?: InputMaybe<Scalars['String']['input']>;
|
|
2859
3114
|
};
|
|
2860
3115
|
export type GitHubBuildTrigger = {
|
|
2861
3116
|
__typename?: 'GitHubBuildTrigger';
|
|
@@ -2908,6 +3163,7 @@ export declare enum GitHubBuildTriggerType {
|
|
|
2908
3163
|
export type GitHubRepository = {
|
|
2909
3164
|
__typename?: 'GitHubRepository';
|
|
2910
3165
|
app: App;
|
|
3166
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2911
3167
|
githubAppInstallation: GitHubAppInstallation;
|
|
2912
3168
|
githubRepositoryIdentifier: Scalars['Int']['output'];
|
|
2913
3169
|
githubRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -3235,6 +3491,7 @@ export type IosJobInput = {
|
|
|
3235
3491
|
/** @deprecated */
|
|
3236
3492
|
distribution?: InputMaybe<DistributionType>;
|
|
3237
3493
|
experimental?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3494
|
+
loggerLevel?: InputMaybe<WorkerLoggerLevel>;
|
|
3238
3495
|
mode?: InputMaybe<BuildMode>;
|
|
3239
3496
|
projectArchive: ProjectArchiveSourceInput;
|
|
3240
3497
|
projectRootDirectory: Scalars['String']['input'];
|
|
@@ -3259,10 +3516,12 @@ export type IosJobOverridesInput = {
|
|
|
3259
3516
|
buildType?: InputMaybe<IosBuildType>;
|
|
3260
3517
|
builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;
|
|
3261
3518
|
cache?: InputMaybe<BuildCacheInput>;
|
|
3519
|
+
customBuildConfig?: InputMaybe<CustomBuildConfigInput>;
|
|
3262
3520
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3263
3521
|
/** @deprecated */
|
|
3264
3522
|
distribution?: InputMaybe<DistributionType>;
|
|
3265
3523
|
experimental?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3524
|
+
loggerLevel?: InputMaybe<WorkerLoggerLevel>;
|
|
3266
3525
|
mode?: InputMaybe<BuildMode>;
|
|
3267
3526
|
releaseChannel?: InputMaybe<Scalars['String']['input']>;
|
|
3268
3527
|
resign?: InputMaybe<BuildResignInput>;
|
|
@@ -3308,6 +3567,7 @@ export type IosSubmissionConfigInput = {
|
|
|
3308
3567
|
ascApiKey?: InputMaybe<AscApiKeyInput>;
|
|
3309
3568
|
ascApiKeyId?: InputMaybe<Scalars['String']['input']>;
|
|
3310
3569
|
ascAppIdentifier: Scalars['String']['input'];
|
|
3570
|
+
isVerboseFastlaneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3311
3571
|
};
|
|
3312
3572
|
export type KeystoreGenerationUrl = {
|
|
3313
3573
|
__typename?: 'KeystoreGenerationUrl';
|
|
@@ -3340,7 +3600,8 @@ export type LineDataset = {
|
|
|
3340
3600
|
label: Scalars['String']['output'];
|
|
3341
3601
|
};
|
|
3342
3602
|
export declare enum MailchimpAudience {
|
|
3343
|
-
ExpoDevelopers = "EXPO_DEVELOPERS"
|
|
3603
|
+
ExpoDevelopers = "EXPO_DEVELOPERS",
|
|
3604
|
+
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING"
|
|
3344
3605
|
}
|
|
3345
3606
|
export declare enum MailchimpTag {
|
|
3346
3607
|
DevClientUsers = "DEV_CLIENT_USERS",
|
|
@@ -3381,6 +3642,7 @@ export type MeMutation = {
|
|
|
3381
3642
|
regenerateSecondFactorBackupCodes: SecondFactorRegenerateBackupCodesResult;
|
|
3382
3643
|
/** Send SMS OTP to a second factor device for use during device setup or during change confirmation */
|
|
3383
3644
|
sendSMSOTPToSecondFactorDevice: SecondFactorBooleanResult;
|
|
3645
|
+
setPreferences: UserPreferences;
|
|
3384
3646
|
/** Set the user's primary second factor device */
|
|
3385
3647
|
setPrimarySecondFactorDevice: SecondFactorBooleanResult;
|
|
3386
3648
|
/** Transfer project to a different Account */
|
|
@@ -3433,6 +3695,9 @@ export type MeMutationRegenerateSecondFactorBackupCodesArgs = {
|
|
|
3433
3695
|
export type MeMutationSendSmsotpToSecondFactorDeviceArgs = {
|
|
3434
3696
|
userSecondFactorDeviceId: Scalars['ID']['input'];
|
|
3435
3697
|
};
|
|
3698
|
+
export type MeMutationSetPreferencesArgs = {
|
|
3699
|
+
preferences: UserPreferencesInput;
|
|
3700
|
+
};
|
|
3436
3701
|
export type MeMutationSetPrimarySecondFactorDeviceArgs = {
|
|
3437
3702
|
userSecondFactorDeviceId: Scalars['ID']['input'];
|
|
3438
3703
|
};
|
|
@@ -3596,6 +3861,7 @@ export type Project = {
|
|
|
3596
3861
|
export type ProjectArchiveSourceInput = {
|
|
3597
3862
|
bucketKey?: InputMaybe<Scalars['String']['input']>;
|
|
3598
3863
|
gitRef?: InputMaybe<Scalars['String']['input']>;
|
|
3864
|
+
metadataLocation?: InputMaybe<Scalars['String']['input']>;
|
|
3599
3865
|
repositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
3600
3866
|
type: ProjectArchiveSourceType;
|
|
3601
3867
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3614,6 +3880,7 @@ export type ProjectPublicData = {
|
|
|
3614
3880
|
};
|
|
3615
3881
|
export type ProjectQuery = {
|
|
3616
3882
|
__typename?: 'ProjectQuery';
|
|
3883
|
+
/** @deprecated Snacks and apps should be queried separately */
|
|
3617
3884
|
byAccountNameAndSlug: Project;
|
|
3618
3885
|
/** @deprecated No longer supported */
|
|
3619
3886
|
byPaths: Array<Maybe<Project>>;
|
|
@@ -3853,6 +4120,8 @@ export type RootQuery = {
|
|
|
3853
4120
|
/** Top-level query object for querying Apple Teams. */
|
|
3854
4121
|
appleTeam: AppleTeamQuery;
|
|
3855
4122
|
asset: AssetQuery;
|
|
4123
|
+
/** Top-level query object for querying Audit Logs. */
|
|
4124
|
+
auditLogs: AuditLogQuery;
|
|
3856
4125
|
backgroundJobReceipt: BackgroundJobReceiptQuery;
|
|
3857
4126
|
/** Top-level query object for querying annotations. */
|
|
3858
4127
|
buildAnnotations: BuildAnnotationsQuery;
|
|
@@ -3882,6 +4151,7 @@ export type RootQuery = {
|
|
|
3882
4151
|
* this is the appropriate top-level query object
|
|
3883
4152
|
*/
|
|
3884
4153
|
meUserActor?: Maybe<UserActor>;
|
|
4154
|
+
/** @deprecated Snacks and apps should be queried separately */
|
|
3885
4155
|
project: ProjectQuery;
|
|
3886
4156
|
snack: SnackQuery;
|
|
3887
4157
|
/** Top-level query object for querying Expo status page services. */
|
|
@@ -3995,6 +4265,7 @@ export type SsoUser = Actor & UserActor & {
|
|
|
3995
4265
|
location?: Maybe<Scalars['String']['output']>;
|
|
3996
4266
|
notificationSubscriptions: Array<NotificationSubscription>;
|
|
3997
4267
|
pinnedApps: Array<App>;
|
|
4268
|
+
preferences: UserPreferences;
|
|
3998
4269
|
/** Associated accounts */
|
|
3999
4270
|
primaryAccount: Account;
|
|
4000
4271
|
profilePhoto: Scalars['String']['output'];
|
|
@@ -4252,6 +4523,8 @@ export type Submission = ActivityTimelineProjectActivity & {
|
|
|
4252
4523
|
id: Scalars['ID']['output'];
|
|
4253
4524
|
initiatingActor?: Maybe<Actor>;
|
|
4254
4525
|
iosConfig?: Maybe<IosSubmissionConfig>;
|
|
4526
|
+
logFiles: Array<Scalars['String']['output']>;
|
|
4527
|
+
/** @deprecated Use logFiles instead */
|
|
4255
4528
|
logsUrl?: Maybe<Scalars['String']['output']>;
|
|
4256
4529
|
/** Retry time starts after completedAt */
|
|
4257
4530
|
maxRetryTimeMinutes: Scalars['Int']['output'];
|
|
@@ -4364,6 +4637,11 @@ export type SubscriptionDetails = {
|
|
|
4364
4637
|
export type SubscriptionDetailsPlanEnablementArgs = {
|
|
4365
4638
|
serviceMetric: EasServiceMetric;
|
|
4366
4639
|
};
|
|
4640
|
+
export declare enum TargetEntityMutationType {
|
|
4641
|
+
Create = "CREATE",
|
|
4642
|
+
Delete = "DELETE",
|
|
4643
|
+
Update = "UPDATE"
|
|
4644
|
+
}
|
|
4367
4645
|
export type TestNotificationMetadata = {
|
|
4368
4646
|
__typename?: 'TestNotificationMetadata';
|
|
4369
4647
|
message: Scalars['String']['output'];
|
|
@@ -4402,6 +4680,7 @@ export type Update = ActivityTimelineProjectActivity & {
|
|
|
4402
4680
|
branchId: Scalars['ID']['output'];
|
|
4403
4681
|
codeSigningInfo?: Maybe<CodeSigningInfo>;
|
|
4404
4682
|
createdAt: Scalars['DateTime']['output'];
|
|
4683
|
+
expoGoSDKVersion?: Maybe<Scalars['String']['output']>;
|
|
4405
4684
|
gitCommitHash?: Maybe<Scalars['String']['output']>;
|
|
4406
4685
|
group: Scalars['String']['output'];
|
|
4407
4686
|
id: Scalars['ID']['output'];
|
|
@@ -4424,6 +4703,7 @@ export type UpdateBranch = {
|
|
|
4424
4703
|
appId: Scalars['ID']['output'];
|
|
4425
4704
|
createdAt: Scalars['DateTime']['output'];
|
|
4426
4705
|
id: Scalars['ID']['output'];
|
|
4706
|
+
latestActivity: Scalars['DateTime']['output'];
|
|
4427
4707
|
name: Scalars['String']['output'];
|
|
4428
4708
|
runtimes: RuntimesConnection;
|
|
4429
4709
|
updateGroups: Array<Array<Update>>;
|
|
@@ -4579,6 +4859,7 @@ export type UploadSessionCreateUploadSessionArgs = {
|
|
|
4579
4859
|
type: UploadSessionType;
|
|
4580
4860
|
};
|
|
4581
4861
|
export declare enum UploadSessionType {
|
|
4862
|
+
EasBuildGcsProjectMetadata = "EAS_BUILD_GCS_PROJECT_METADATA",
|
|
4582
4863
|
EasBuildGcsProjectSources = "EAS_BUILD_GCS_PROJECT_SOURCES",
|
|
4583
4864
|
/** @deprecated Use EAS_BUILD_GCS_PROJECT_SOURCES instead. */
|
|
4584
4865
|
EasBuildProjectSources = "EAS_BUILD_PROJECT_SOURCES",
|
|
@@ -4662,6 +4943,7 @@ export type User = Actor & UserActor & {
|
|
|
4662
4943
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
4663
4944
|
pendingUserInvitations: Array<UserInvitation>;
|
|
4664
4945
|
pinnedApps: Array<App>;
|
|
4946
|
+
preferences: UserPreferences;
|
|
4665
4947
|
/** Associated accounts */
|
|
4666
4948
|
primaryAccount: Account;
|
|
4667
4949
|
profilePhoto: Scalars['String']['output'];
|
|
@@ -4752,6 +5034,7 @@ export type UserActor = {
|
|
|
4752
5034
|
location?: Maybe<Scalars['String']['output']>;
|
|
4753
5035
|
notificationSubscriptions: Array<NotificationSubscription>;
|
|
4754
5036
|
pinnedApps: Array<App>;
|
|
5037
|
+
preferences: UserPreferences;
|
|
4755
5038
|
/** Associated accounts */
|
|
4756
5039
|
primaryAccount: Account;
|
|
4757
5040
|
profilePhoto: Scalars['String']['output'];
|
|
@@ -4957,6 +5240,13 @@ export type UserPermission = {
|
|
|
4957
5240
|
user?: Maybe<User>;
|
|
4958
5241
|
userActor?: Maybe<UserActor>;
|
|
4959
5242
|
};
|
|
5243
|
+
export type UserPreferences = {
|
|
5244
|
+
__typename?: 'UserPreferences';
|
|
5245
|
+
selectedAccountName?: Maybe<Scalars['String']['output']>;
|
|
5246
|
+
};
|
|
5247
|
+
export type UserPreferencesInput = {
|
|
5248
|
+
selectedAccountName?: InputMaybe<Scalars['String']['input']>;
|
|
5249
|
+
};
|
|
4960
5250
|
export type UserQuery = {
|
|
4961
5251
|
__typename?: 'UserQuery';
|
|
4962
5252
|
/**
|
|
@@ -5059,6 +5349,14 @@ export type WebsiteNotificationsConnection = {
|
|
|
5059
5349
|
edges: Array<WebsiteNotificationEdge>;
|
|
5060
5350
|
pageInfo: PageInfo;
|
|
5061
5351
|
};
|
|
5352
|
+
export declare enum WorkerLoggerLevel {
|
|
5353
|
+
Debug = "DEBUG",
|
|
5354
|
+
Error = "ERROR",
|
|
5355
|
+
Fatal = "FATAL",
|
|
5356
|
+
Info = "INFO",
|
|
5357
|
+
Trace = "TRACE",
|
|
5358
|
+
Warn = "WARN"
|
|
5359
|
+
}
|
|
5062
5360
|
export type DeleteAndroidAppBuildCredentialsResult = {
|
|
5063
5361
|
__typename?: 'deleteAndroidAppBuildCredentialsResult';
|
|
5064
5362
|
id: Scalars['ID']['output'];
|
|
@@ -6089,7 +6387,7 @@ export type CreateAppleDeviceMutation = {
|
|
|
6089
6387
|
name?: string | null;
|
|
6090
6388
|
model?: string | null;
|
|
6091
6389
|
deviceClass?: AppleDeviceClass | null;
|
|
6092
|
-
createdAt
|
|
6390
|
+
createdAt: any;
|
|
6093
6391
|
};
|
|
6094
6392
|
};
|
|
6095
6393
|
};
|
|
@@ -6121,7 +6419,7 @@ export type UpdateAppleDeviceMutation = {
|
|
|
6121
6419
|
name?: string | null;
|
|
6122
6420
|
model?: string | null;
|
|
6123
6421
|
deviceClass?: AppleDeviceClass | null;
|
|
6124
|
-
createdAt
|
|
6422
|
+
createdAt: any;
|
|
6125
6423
|
};
|
|
6126
6424
|
};
|
|
6127
6425
|
};
|
|
@@ -6261,7 +6559,7 @@ export type CreateAppleProvisioningProfileMutation = {
|
|
|
6261
6559
|
name?: string | null;
|
|
6262
6560
|
model?: string | null;
|
|
6263
6561
|
deviceClass?: AppleDeviceClass | null;
|
|
6264
|
-
createdAt
|
|
6562
|
+
createdAt: any;
|
|
6265
6563
|
}>;
|
|
6266
6564
|
};
|
|
6267
6565
|
};
|
|
@@ -6295,7 +6593,7 @@ export type UpdateAppleProvisioningProfileMutation = {
|
|
|
6295
6593
|
name?: string | null;
|
|
6296
6594
|
model?: string | null;
|
|
6297
6595
|
deviceClass?: AppleDeviceClass | null;
|
|
6298
|
-
createdAt
|
|
6596
|
+
createdAt: any;
|
|
6299
6597
|
}>;
|
|
6300
6598
|
};
|
|
6301
6599
|
};
|
|
@@ -6537,7 +6835,7 @@ export type CreateIosAppBuildCredentialsMutation = {
|
|
|
6537
6835
|
name?: string | null;
|
|
6538
6836
|
model?: string | null;
|
|
6539
6837
|
deviceClass?: AppleDeviceClass | null;
|
|
6540
|
-
createdAt
|
|
6838
|
+
createdAt: any;
|
|
6541
6839
|
}>;
|
|
6542
6840
|
} | null;
|
|
6543
6841
|
};
|
|
@@ -6645,7 +6943,7 @@ export type SetDistributionCertificateMutation = {
|
|
|
6645
6943
|
name?: string | null;
|
|
6646
6944
|
model?: string | null;
|
|
6647
6945
|
deviceClass?: AppleDeviceClass | null;
|
|
6648
|
-
createdAt
|
|
6946
|
+
createdAt: any;
|
|
6649
6947
|
}>;
|
|
6650
6948
|
} | null;
|
|
6651
6949
|
};
|
|
@@ -6753,7 +7051,7 @@ export type SetProvisioningProfileMutation = {
|
|
|
6753
7051
|
name?: string | null;
|
|
6754
7052
|
model?: string | null;
|
|
6755
7053
|
deviceClass?: AppleDeviceClass | null;
|
|
6756
|
-
createdAt
|
|
7054
|
+
createdAt: any;
|
|
6757
7055
|
}>;
|
|
6758
7056
|
} | null;
|
|
6759
7057
|
};
|
|
@@ -6865,7 +7163,7 @@ export type CreateIosAppCredentialsMutation = {
|
|
|
6865
7163
|
name?: string | null;
|
|
6866
7164
|
model?: string | null;
|
|
6867
7165
|
deviceClass?: AppleDeviceClass | null;
|
|
6868
|
-
createdAt
|
|
7166
|
+
createdAt: any;
|
|
6869
7167
|
}>;
|
|
6870
7168
|
} | null;
|
|
6871
7169
|
}>;
|
|
@@ -7093,7 +7391,7 @@ export type SetPushKeyMutation = {
|
|
|
7093
7391
|
name?: string | null;
|
|
7094
7392
|
model?: string | null;
|
|
7095
7393
|
deviceClass?: AppleDeviceClass | null;
|
|
7096
|
-
createdAt
|
|
7394
|
+
createdAt: any;
|
|
7097
7395
|
}>;
|
|
7098
7396
|
} | null;
|
|
7099
7397
|
}>;
|
|
@@ -7321,7 +7619,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
|
|
|
7321
7619
|
name?: string | null;
|
|
7322
7620
|
model?: string | null;
|
|
7323
7621
|
deviceClass?: AppleDeviceClass | null;
|
|
7324
|
-
createdAt
|
|
7622
|
+
createdAt: any;
|
|
7325
7623
|
}>;
|
|
7326
7624
|
} | null;
|
|
7327
7625
|
}>;
|
|
@@ -7512,7 +7810,7 @@ export type AppleDevicesByAppleTeamQuery = {
|
|
|
7512
7810
|
name?: string | null;
|
|
7513
7811
|
model?: string | null;
|
|
7514
7812
|
deviceClass?: AppleDeviceClass | null;
|
|
7515
|
-
createdAt
|
|
7813
|
+
createdAt: any;
|
|
7516
7814
|
appleTeam: {
|
|
7517
7815
|
__typename?: 'AppleTeam';
|
|
7518
7816
|
id: string;
|
|
@@ -7549,6 +7847,7 @@ export type AppleDevicesByTeamIdentifierQuery = {
|
|
|
7549
7847
|
deviceClass?: AppleDeviceClass | null;
|
|
7550
7848
|
enabled?: boolean | null;
|
|
7551
7849
|
model?: string | null;
|
|
7850
|
+
createdAt: any;
|
|
7552
7851
|
}>;
|
|
7553
7852
|
}>;
|
|
7554
7853
|
};
|
|
@@ -7796,7 +8095,7 @@ export type AppleProvisioningProfilesByAppQuery = {
|
|
|
7796
8095
|
name?: string | null;
|
|
7797
8096
|
model?: string | null;
|
|
7798
8097
|
deviceClass?: AppleDeviceClass | null;
|
|
7799
|
-
createdAt
|
|
8098
|
+
createdAt: any;
|
|
7800
8099
|
}>;
|
|
7801
8100
|
appleAppIdentifier: {
|
|
7802
8101
|
__typename?: 'AppleAppIdentifier';
|
|
@@ -8023,7 +8322,7 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
|
|
|
8023
8322
|
name?: string | null;
|
|
8024
8323
|
model?: string | null;
|
|
8025
8324
|
deviceClass?: AppleDeviceClass | null;
|
|
8026
|
-
createdAt
|
|
8325
|
+
createdAt: any;
|
|
8027
8326
|
}>;
|
|
8028
8327
|
} | null;
|
|
8029
8328
|
}>;
|
|
@@ -8140,7 +8439,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
|
|
|
8140
8439
|
name?: string | null;
|
|
8141
8440
|
model?: string | null;
|
|
8142
8441
|
deviceClass?: AppleDeviceClass | null;
|
|
8143
|
-
createdAt
|
|
8442
|
+
createdAt: any;
|
|
8144
8443
|
}>;
|
|
8145
8444
|
} | null;
|
|
8146
8445
|
}>;
|
|
@@ -8372,7 +8671,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
|
|
|
8372
8671
|
name?: string | null;
|
|
8373
8672
|
model?: string | null;
|
|
8374
8673
|
deviceClass?: AppleDeviceClass | null;
|
|
8375
|
-
createdAt
|
|
8674
|
+
createdAt: any;
|
|
8376
8675
|
}>;
|
|
8377
8676
|
} | null;
|
|
8378
8677
|
}>;
|
|
@@ -11046,7 +11345,7 @@ export type AppleDeviceFragment = {
|
|
|
11046
11345
|
name?: string | null;
|
|
11047
11346
|
model?: string | null;
|
|
11048
11347
|
deviceClass?: AppleDeviceClass | null;
|
|
11049
|
-
createdAt
|
|
11348
|
+
createdAt: any;
|
|
11050
11349
|
};
|
|
11051
11350
|
export type AppleDeviceRegistrationRequestFragment = {
|
|
11052
11351
|
__typename?: 'AppleDeviceRegistrationRequest';
|
|
@@ -11142,7 +11441,7 @@ export type AppleProvisioningProfileFragment = {
|
|
|
11142
11441
|
name?: string | null;
|
|
11143
11442
|
model?: string | null;
|
|
11144
11443
|
deviceClass?: AppleDeviceClass | null;
|
|
11145
|
-
createdAt
|
|
11444
|
+
createdAt: any;
|
|
11146
11445
|
}>;
|
|
11147
11446
|
};
|
|
11148
11447
|
export type AppleProvisioningProfileIdentifiersFragment = {
|
|
@@ -11315,7 +11614,7 @@ export type IosAppBuildCredentialsFragment = {
|
|
|
11315
11614
|
name?: string | null;
|
|
11316
11615
|
model?: string | null;
|
|
11317
11616
|
deviceClass?: AppleDeviceClass | null;
|
|
11318
|
-
createdAt
|
|
11617
|
+
createdAt: any;
|
|
11319
11618
|
}>;
|
|
11320
11619
|
} | null;
|
|
11321
11620
|
};
|
|
@@ -11536,7 +11835,7 @@ export type CommonIosAppCredentialsFragment = {
|
|
|
11536
11835
|
name?: string | null;
|
|
11537
11836
|
model?: string | null;
|
|
11538
11837
|
deviceClass?: AppleDeviceClass | null;
|
|
11539
|
-
createdAt
|
|
11838
|
+
createdAt: any;
|
|
11540
11839
|
}>;
|
|
11541
11840
|
} | null;
|
|
11542
11841
|
}>;
|