eas-cli 7.7.0 → 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.
@@ -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
- /** iOS credentials for account */
124
+ applePushKeysPaginated: AccountApplePushKeysConnection;
125
+ /** @deprecated Use appleTeamsPaginated */
116
126
  appleTeams: Array<AppleTeam>;
117
- /** Apps associated with this account */
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
- /** Android credentials for account */
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>;
@@ -908,7 +1072,10 @@ export type App = Project & {
908
1072
  activityTimelineProjectActivities: Array<ActivityTimelineProjectActivity>;
909
1073
  /** Android app credentials for the project */
910
1074
  androidAppCredentials: Array<AndroidAppCredentials>;
911
- /** ios.appStoreUrl field from most recent classic update manifest */
1075
+ /**
1076
+ * ios.appStoreUrl field from most recent classic update manifest
1077
+ * @deprecated Classic updates have been deprecated.
1078
+ */
912
1079
  appStoreUrl?: Maybe<Scalars['String']['output']>;
913
1080
  assetLimitPerUpdateGroup: Scalars['Int']['output'];
914
1081
  branchesPaginated: AppBranchesConnection;
@@ -921,12 +1088,16 @@ export type App = Project & {
921
1088
  /** (EAS Build) Builds associated with this app */
922
1089
  builds: Array<Build>;
923
1090
  buildsPaginated: AppBuildsConnection;
924
- /** Classic update release channel names that have at least one build */
1091
+ /**
1092
+ * Classic update release channel names that have at least one build
1093
+ * @deprecated Classic updates have been deprecated.
1094
+ */
925
1095
  buildsReleaseChannels: Array<Scalars['String']['output']>;
926
1096
  channelsPaginated: AppChannelsConnection;
927
1097
  deployment?: Maybe<Deployment>;
928
1098
  /** Deployments associated with this app */
929
1099
  deployments: DeploymentsConnection;
1100
+ /** @deprecated Classic updates have been deprecated. */
930
1101
  description: Scalars['String']['output'];
931
1102
  /** Environment secrets for an app */
932
1103
  environmentSecrets: Array<EnvironmentSecret>;
@@ -934,29 +1105,44 @@ export type App = Project & {
934
1105
  githubBuildTriggers: Array<GitHubBuildTrigger>;
935
1106
  githubRepository?: Maybe<GitHubRepository>;
936
1107
  githubRepositorySettings?: Maybe<GitHubRepositorySettings>;
937
- /** githubUrl field from most recent classic update manifest */
1108
+ /**
1109
+ * githubUrl field from most recent classic update manifest
1110
+ * @deprecated Classic updates have been deprecated.
1111
+ */
938
1112
  githubUrl?: Maybe<Scalars['String']['output']>;
939
- /** Info about the icon specified in the most recent classic update manifest */
1113
+ /**
1114
+ * Info about the icon specified in the most recent classic update manifest
1115
+ * @deprecated Classic updates have been deprecated.
1116
+ */
940
1117
  icon?: Maybe<AppIcon>;
941
1118
  /** @deprecated No longer supported */
942
1119
  iconUrl?: Maybe<Scalars['String']['output']>;
943
1120
  id: Scalars['ID']['output'];
944
1121
  /** App query field for querying EAS Insights about this app */
945
1122
  insights: AppInsights;
1123
+ internalDistributionBuildPrivacy: AppInternalDistributionBuildPrivacy;
946
1124
  /** iOS app credentials for the project */
947
1125
  iosAppCredentials: Array<IosAppCredentials>;
948
1126
  isDeleting: Scalars['Boolean']['output'];
949
- /** Whether the latest classic update publish is using a deprecated SDK version */
1127
+ /**
1128
+ * Whether the latest classic update publish is using a deprecated SDK version
1129
+ * @deprecated Classic updates have been deprecated.
1130
+ */
950
1131
  isDeprecated: Scalars['Boolean']['output'];
951
1132
  /** @deprecated 'likes' have been deprecated. */
952
1133
  isLikedByMe: Scalars['Boolean']['output'];
1134
+ lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
953
1135
  /** @deprecated No longer supported */
954
1136
  lastPublishedTime: Scalars['DateTime']['output'];
955
1137
  /** Time of the last user activity (update, branch, submission). */
956
1138
  latestActivity: Scalars['DateTime']['output'];
957
1139
  latestAppVersionByPlatformAndApplicationIdentifier?: Maybe<AppVersion>;
1140
+ /** @deprecated Classic updates have been deprecated. */
958
1141
  latestReleaseForReleaseChannel?: Maybe<AppRelease>;
959
- /** ID of latest classic update release */
1142
+ /**
1143
+ * ID of latest classic update release
1144
+ * @deprecated Classic updates have been deprecated.
1145
+ */
960
1146
  latestReleaseId: Scalars['ID']['output'];
961
1147
  /** @deprecated 'likes' have been deprecated. */
962
1148
  likeCount: Scalars['Int']['output'];
@@ -968,22 +1154,34 @@ export type App = Project & {
968
1154
  packageName: Scalars['String']['output'];
969
1155
  /** @deprecated No longer supported */
970
1156
  packageUsername: Scalars['String']['output'];
971
- /** android.playStoreUrl field from most recent classic update manifest */
1157
+ /**
1158
+ * android.playStoreUrl field from most recent classic update manifest
1159
+ * @deprecated Classic updates have been deprecated.
1160
+ */
972
1161
  playStoreUrl?: Maybe<Scalars['String']['output']>;
973
1162
  /** @deprecated Use 'privacySetting' instead. */
974
1163
  privacy: Scalars['String']['output'];
975
1164
  privacySetting: AppPrivacy;
976
- /** Whether there have been any classic update publishes */
1165
+ /**
1166
+ * Whether there have been any classic update publishes
1167
+ * @deprecated Classic updates have been deprecated.
1168
+ */
977
1169
  published: Scalars['Boolean']['output'];
978
1170
  pushSecurityEnabled: Scalars['Boolean']['output'];
979
- /** Classic update release channel names (to be removed) */
1171
+ /**
1172
+ * Classic update release channel names (to be removed)
1173
+ * @deprecated Classic updates have been deprecated.
1174
+ */
980
1175
  releaseChannels: Array<Scalars['String']['output']>;
981
1176
  /** @deprecated Legacy access tokens are deprecated */
982
1177
  requiresAccessTokenForPushSecurity: Scalars['Boolean']['output'];
983
1178
  /** Runtimes associated with this app */
984
1179
  runtimes: RuntimesConnection;
985
1180
  scopeKey: Scalars['String']['output'];
986
- /** SDK version of the latest classic update publish, 0.0.0 otherwise */
1181
+ /**
1182
+ * SDK version of the latest classic update publish, 0.0.0 otherwise
1183
+ * @deprecated Classic updates have been deprecated.
1184
+ */
987
1185
  sdkVersion: Scalars['String']['output'];
988
1186
  slug: Scalars['String']['output'];
989
1187
  /** EAS Submissions associated with this app */
@@ -1003,7 +1201,10 @@ export type App = Project & {
1003
1201
  updateChannels: Array<UpdateChannel>;
1004
1202
  /** EAS updates owned by an app grouped by update group */
1005
1203
  updateGroups: Array<Array<Update>>;
1006
- /** Time of last classic update publish */
1204
+ /**
1205
+ * Time of last classic update publish
1206
+ * @deprecated Classic updates have been deprecated.
1207
+ */
1007
1208
  updated: Scalars['DateTime']['output'];
1008
1209
  /** EAS updates owned by an app */
1009
1210
  updates: Array<Update>;
@@ -1207,6 +1408,7 @@ export type AppChannelsConnection = {
1207
1408
  };
1208
1409
  export type AppDataInput = {
1209
1410
  id: Scalars['ID']['input'];
1411
+ internalDistributionBuildPrivacy?: InputMaybe<AppInternalDistributionBuildPrivacy>;
1210
1412
  privacy?: InputMaybe<Scalars['String']['input']>;
1211
1413
  };
1212
1414
  export type AppIcon = {
@@ -1242,10 +1444,16 @@ export type AppInsightsUniqueUsersByAppVersionOverTimeArgs = {
1242
1444
  export type AppInsightsUniqueUsersByPlatformOverTimeArgs = {
1243
1445
  timespan: InsightsTimespan;
1244
1446
  };
1447
+ export declare enum AppInternalDistributionBuildPrivacy {
1448
+ Private = "PRIVATE",
1449
+ Public = "PUBLIC"
1450
+ }
1245
1451
  export type AppMutation = {
1246
1452
  __typename?: 'AppMutation';
1247
1453
  /** Create an unpublished app */
1248
1454
  createApp: App;
1455
+ /** Create an unpublished app and GitHub repository if user desire to */
1456
+ createAppAndGithubRepository: CreateAppAndGithubRepositoryResponse;
1249
1457
  /** @deprecated No longer supported */
1250
1458
  grantAccess?: Maybe<App>;
1251
1459
  /** Set display info for app */
@@ -1256,6 +1464,9 @@ export type AppMutation = {
1256
1464
  export type AppMutationCreateAppArgs = {
1257
1465
  appInput: AppInput;
1258
1466
  };
1467
+ export type AppMutationCreateAppAndGithubRepositoryArgs = {
1468
+ appInput: AppWithGithubRepositoryInput;
1469
+ };
1259
1470
  export type AppMutationGrantAccessArgs = {
1260
1471
  accessLevel?: InputMaybe<Scalars['String']['input']>;
1261
1472
  toUser: Scalars['ID']['input'];
@@ -1438,6 +1649,13 @@ export type AppVersionMutation = {
1438
1649
  export type AppVersionMutationCreateAppVersionArgs = {
1439
1650
  appVersionInput: AppVersionInput;
1440
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
+ };
1441
1659
  export type AppleAppIdentifier = {
1442
1660
  __typename?: 'AppleAppIdentifier';
1443
1661
  account: Account;
@@ -1464,7 +1682,7 @@ export type AppleDevice = {
1464
1682
  __typename?: 'AppleDevice';
1465
1683
  account: Account;
1466
1684
  appleTeam: AppleTeam;
1467
- createdAt?: Maybe<Scalars['DateTime']['output']>;
1685
+ createdAt: Scalars['DateTime']['output'];
1468
1686
  deviceClass?: Maybe<AppleDeviceClass>;
1469
1687
  enabled?: Maybe<Scalars['Boolean']['output']>;
1470
1688
  id: Scalars['ID']['output'];
@@ -1476,8 +1694,14 @@ export type AppleDevice = {
1476
1694
  export declare enum AppleDeviceClass {
1477
1695
  Ipad = "IPAD",
1478
1696
  Iphone = "IPHONE",
1479
- Mac = "MAC"
1697
+ Mac = "MAC",
1698
+ Unknown = "UNKNOWN"
1480
1699
  }
1700
+ export type AppleDeviceFilterInput = {
1701
+ appleTeamIdentifier?: InputMaybe<Scalars['String']['input']>;
1702
+ class?: InputMaybe<AppleDeviceClass>;
1703
+ identifier?: InputMaybe<Scalars['String']['input']>;
1704
+ };
1481
1705
  export type AppleDeviceInput = {
1482
1706
  appleTeamId: Scalars['ID']['input'];
1483
1707
  deviceClass?: InputMaybe<AppleDeviceClass>;
@@ -1666,6 +1890,9 @@ export type AppleTeamAppleDevicesArgs = {
1666
1890
  export type AppleTeamAppleProvisioningProfilesArgs = {
1667
1891
  appleAppIdentifierId?: InputMaybe<Scalars['ID']['input']>;
1668
1892
  };
1893
+ export type AppleTeamFilterInput = {
1894
+ appleTeamIdentifier?: InputMaybe<Scalars['String']['input']>;
1895
+ };
1669
1896
  export type AppleTeamInput = {
1670
1897
  appleTeamIdentifier: Scalars['String']['input'];
1671
1898
  appleTeamName?: InputMaybe<Scalars['String']['input']>;
@@ -1727,6 +1954,33 @@ export type AssetQuery = {
1727
1954
  export type AssetQueryMetadataArgs = {
1728
1955
  storageKeys: Array<Scalars['String']['input']>;
1729
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
+ };
1730
1984
  export declare enum AuthProtocolType {
1731
1985
  Oidc = "OIDC"
1732
1986
  }
@@ -1788,6 +2042,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
1788
2042
  actor?: Maybe<Actor>;
1789
2043
  app: App;
1790
2044
  appBuildVersion?: Maybe<Scalars['String']['output']>;
2045
+ appIdentifier?: Maybe<Scalars['String']['output']>;
1791
2046
  appVersion?: Maybe<Scalars['String']['output']>;
1792
2047
  artifacts?: Maybe<BuildArtifacts>;
1793
2048
  buildMode?: Maybe<BuildMode>;
@@ -1829,6 +2084,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
1829
2084
  parentBuild?: Maybe<Build>;
1830
2085
  platform: AppPlatform;
1831
2086
  priority: BuildPriority;
2087
+ /** @deprecated Use app field instead */
1832
2088
  project: Project;
1833
2089
  projectMetadataFileUrl?: Maybe<Scalars['String']['output']>;
1834
2090
  projectRootDirectory?: Maybe<Scalars['String']['output']>;
@@ -1968,6 +2224,7 @@ export type BuildFilterInput = {
1968
2224
  distributions?: InputMaybe<Array<DistributionType>>;
1969
2225
  platforms?: InputMaybe<Array<AppPlatform>>;
1970
2226
  releaseChannel?: InputMaybe<Scalars['String']['input']>;
2227
+ runtimeVersion?: InputMaybe<Scalars['String']['input']>;
1971
2228
  simulator?: InputMaybe<Scalars['Boolean']['input']>;
1972
2229
  };
1973
2230
  export declare enum BuildIosEnterpriseProvisioning {
@@ -2377,6 +2634,11 @@ export type CreateAndroidSubmissionInput = {
2377
2634
  config: AndroidSubmissionConfigInput;
2378
2635
  submittedBuildId?: InputMaybe<Scalars['ID']['input']>;
2379
2636
  };
2637
+ export type CreateAppAndGithubRepositoryResponse = {
2638
+ __typename?: 'CreateAppAndGithubRepositoryResponse';
2639
+ app: App;
2640
+ cloneUrl?: Maybe<Scalars['String']['output']>;
2641
+ };
2380
2642
  export type CreateBuildResult = {
2381
2643
  __typename?: 'CreateBuildResult';
2382
2644
  build: Build;
@@ -2781,17 +3043,12 @@ export declare enum GitHubAppEnvironment {
2781
3043
  }
2782
3044
  export type GitHubAppInstallation = {
2783
3045
  __typename?: 'GitHubAppInstallation';
2784
- accessibleRepositories: GitHubRepositoryPaginationResult;
2785
3046
  account: Account;
2786
3047
  actor?: Maybe<Actor>;
2787
3048
  id: Scalars['ID']['output'];
2788
3049
  installationIdentifier: Scalars['Int']['output'];
2789
3050
  metadata: GitHubAppInstallationMetadata;
2790
3051
  };
2791
- export type GitHubAppInstallationAccessibleRepositoriesArgs = {
2792
- page?: InputMaybe<Scalars['Int']['input']>;
2793
- perPage?: InputMaybe<Scalars['Int']['input']>;
2794
- };
2795
3052
  export type GitHubAppInstallationAccessibleRepository = {
2796
3053
  __typename?: 'GitHubAppInstallationAccessibleRepository';
2797
3054
  defaultBranch?: Maybe<Scalars['String']['output']>;
@@ -2842,22 +3099,18 @@ export type GitHubAppQuery = {
2842
3099
  environment: GitHubAppEnvironment;
2843
3100
  installation: GitHubAppInstallation;
2844
3101
  name: Scalars['String']['output'];
2845
- /** @deprecated */
2846
- searchRepositories: GitHubRepositoryPaginationResult;
2847
3102
  };
2848
3103
  export type GitHubAppQueryInstallationArgs = {
2849
3104
  id: Scalars['ID']['input'];
2850
3105
  };
2851
- export type GitHubAppQuerySearchRepositoriesArgs = {
2852
- githubAppInstallationId: Scalars['ID']['input'];
2853
- query: Scalars['String']['input'];
2854
- };
2855
3106
  export type GitHubBuildInput = {
2856
3107
  appId: Scalars['ID']['input'];
3108
+ autoSubmit?: InputMaybe<Scalars['Boolean']['input']>;
2857
3109
  baseDirectory?: InputMaybe<Scalars['String']['input']>;
2858
3110
  buildProfile: Scalars['String']['input'];
2859
3111
  gitRef: Scalars['String']['input'];
2860
3112
  platform: AppPlatform;
3113
+ submitProfile?: InputMaybe<Scalars['String']['input']>;
2861
3114
  };
2862
3115
  export type GitHubBuildTrigger = {
2863
3116
  __typename?: 'GitHubBuildTrigger';
@@ -2910,6 +3163,7 @@ export declare enum GitHubBuildTriggerType {
2910
3163
  export type GitHubRepository = {
2911
3164
  __typename?: 'GitHubRepository';
2912
3165
  app: App;
3166
+ createdAt: Scalars['DateTime']['output'];
2913
3167
  githubAppInstallation: GitHubAppInstallation;
2914
3168
  githubRepositoryIdentifier: Scalars['Int']['output'];
2915
3169
  githubRepositoryUrl?: Maybe<Scalars['String']['output']>;
@@ -3237,6 +3491,7 @@ export type IosJobInput = {
3237
3491
  /** @deprecated */
3238
3492
  distribution?: InputMaybe<DistributionType>;
3239
3493
  experimental?: InputMaybe<Scalars['JSONObject']['input']>;
3494
+ loggerLevel?: InputMaybe<WorkerLoggerLevel>;
3240
3495
  mode?: InputMaybe<BuildMode>;
3241
3496
  projectArchive: ProjectArchiveSourceInput;
3242
3497
  projectRootDirectory: Scalars['String']['input'];
@@ -3261,10 +3516,12 @@ export type IosJobOverridesInput = {
3261
3516
  buildType?: InputMaybe<IosBuildType>;
3262
3517
  builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;
3263
3518
  cache?: InputMaybe<BuildCacheInput>;
3519
+ customBuildConfig?: InputMaybe<CustomBuildConfigInput>;
3264
3520
  developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
3265
3521
  /** @deprecated */
3266
3522
  distribution?: InputMaybe<DistributionType>;
3267
3523
  experimental?: InputMaybe<Scalars['JSONObject']['input']>;
3524
+ loggerLevel?: InputMaybe<WorkerLoggerLevel>;
3268
3525
  mode?: InputMaybe<BuildMode>;
3269
3526
  releaseChannel?: InputMaybe<Scalars['String']['input']>;
3270
3527
  resign?: InputMaybe<BuildResignInput>;
@@ -3343,7 +3600,8 @@ export type LineDataset = {
3343
3600
  label: Scalars['String']['output'];
3344
3601
  };
3345
3602
  export declare enum MailchimpAudience {
3346
- ExpoDevelopers = "EXPO_DEVELOPERS"
3603
+ ExpoDevelopers = "EXPO_DEVELOPERS",
3604
+ ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING"
3347
3605
  }
3348
3606
  export declare enum MailchimpTag {
3349
3607
  DevClientUsers = "DEV_CLIENT_USERS",
@@ -3384,6 +3642,7 @@ export type MeMutation = {
3384
3642
  regenerateSecondFactorBackupCodes: SecondFactorRegenerateBackupCodesResult;
3385
3643
  /** Send SMS OTP to a second factor device for use during device setup or during change confirmation */
3386
3644
  sendSMSOTPToSecondFactorDevice: SecondFactorBooleanResult;
3645
+ setPreferences: UserPreferences;
3387
3646
  /** Set the user's primary second factor device */
3388
3647
  setPrimarySecondFactorDevice: SecondFactorBooleanResult;
3389
3648
  /** Transfer project to a different Account */
@@ -3436,6 +3695,9 @@ export type MeMutationRegenerateSecondFactorBackupCodesArgs = {
3436
3695
  export type MeMutationSendSmsotpToSecondFactorDeviceArgs = {
3437
3696
  userSecondFactorDeviceId: Scalars['ID']['input'];
3438
3697
  };
3698
+ export type MeMutationSetPreferencesArgs = {
3699
+ preferences: UserPreferencesInput;
3700
+ };
3439
3701
  export type MeMutationSetPrimarySecondFactorDeviceArgs = {
3440
3702
  userSecondFactorDeviceId: Scalars['ID']['input'];
3441
3703
  };
@@ -3618,6 +3880,7 @@ export type ProjectPublicData = {
3618
3880
  };
3619
3881
  export type ProjectQuery = {
3620
3882
  __typename?: 'ProjectQuery';
3883
+ /** @deprecated Snacks and apps should be queried separately */
3621
3884
  byAccountNameAndSlug: Project;
3622
3885
  /** @deprecated No longer supported */
3623
3886
  byPaths: Array<Maybe<Project>>;
@@ -3857,6 +4120,8 @@ export type RootQuery = {
3857
4120
  /** Top-level query object for querying Apple Teams. */
3858
4121
  appleTeam: AppleTeamQuery;
3859
4122
  asset: AssetQuery;
4123
+ /** Top-level query object for querying Audit Logs. */
4124
+ auditLogs: AuditLogQuery;
3860
4125
  backgroundJobReceipt: BackgroundJobReceiptQuery;
3861
4126
  /** Top-level query object for querying annotations. */
3862
4127
  buildAnnotations: BuildAnnotationsQuery;
@@ -3886,6 +4151,7 @@ export type RootQuery = {
3886
4151
  * this is the appropriate top-level query object
3887
4152
  */
3888
4153
  meUserActor?: Maybe<UserActor>;
4154
+ /** @deprecated Snacks and apps should be queried separately */
3889
4155
  project: ProjectQuery;
3890
4156
  snack: SnackQuery;
3891
4157
  /** Top-level query object for querying Expo status page services. */
@@ -3999,6 +4265,7 @@ export type SsoUser = Actor & UserActor & {
3999
4265
  location?: Maybe<Scalars['String']['output']>;
4000
4266
  notificationSubscriptions: Array<NotificationSubscription>;
4001
4267
  pinnedApps: Array<App>;
4268
+ preferences: UserPreferences;
4002
4269
  /** Associated accounts */
4003
4270
  primaryAccount: Account;
4004
4271
  profilePhoto: Scalars['String']['output'];
@@ -4256,6 +4523,8 @@ export type Submission = ActivityTimelineProjectActivity & {
4256
4523
  id: Scalars['ID']['output'];
4257
4524
  initiatingActor?: Maybe<Actor>;
4258
4525
  iosConfig?: Maybe<IosSubmissionConfig>;
4526
+ logFiles: Array<Scalars['String']['output']>;
4527
+ /** @deprecated Use logFiles instead */
4259
4528
  logsUrl?: Maybe<Scalars['String']['output']>;
4260
4529
  /** Retry time starts after completedAt */
4261
4530
  maxRetryTimeMinutes: Scalars['Int']['output'];
@@ -4368,6 +4637,11 @@ export type SubscriptionDetails = {
4368
4637
  export type SubscriptionDetailsPlanEnablementArgs = {
4369
4638
  serviceMetric: EasServiceMetric;
4370
4639
  };
4640
+ export declare enum TargetEntityMutationType {
4641
+ Create = "CREATE",
4642
+ Delete = "DELETE",
4643
+ Update = "UPDATE"
4644
+ }
4371
4645
  export type TestNotificationMetadata = {
4372
4646
  __typename?: 'TestNotificationMetadata';
4373
4647
  message: Scalars['String']['output'];
@@ -4406,6 +4680,7 @@ export type Update = ActivityTimelineProjectActivity & {
4406
4680
  branchId: Scalars['ID']['output'];
4407
4681
  codeSigningInfo?: Maybe<CodeSigningInfo>;
4408
4682
  createdAt: Scalars['DateTime']['output'];
4683
+ expoGoSDKVersion?: Maybe<Scalars['String']['output']>;
4409
4684
  gitCommitHash?: Maybe<Scalars['String']['output']>;
4410
4685
  group: Scalars['String']['output'];
4411
4686
  id: Scalars['ID']['output'];
@@ -4428,6 +4703,7 @@ export type UpdateBranch = {
4428
4703
  appId: Scalars['ID']['output'];
4429
4704
  createdAt: Scalars['DateTime']['output'];
4430
4705
  id: Scalars['ID']['output'];
4706
+ latestActivity: Scalars['DateTime']['output'];
4431
4707
  name: Scalars['String']['output'];
4432
4708
  runtimes: RuntimesConnection;
4433
4709
  updateGroups: Array<Array<Update>>;
@@ -4667,6 +4943,7 @@ export type User = Actor & UserActor & {
4667
4943
  /** Pending UserInvitations for this user. Only resolves for the viewer. */
4668
4944
  pendingUserInvitations: Array<UserInvitation>;
4669
4945
  pinnedApps: Array<App>;
4946
+ preferences: UserPreferences;
4670
4947
  /** Associated accounts */
4671
4948
  primaryAccount: Account;
4672
4949
  profilePhoto: Scalars['String']['output'];
@@ -4757,6 +5034,7 @@ export type UserActor = {
4757
5034
  location?: Maybe<Scalars['String']['output']>;
4758
5035
  notificationSubscriptions: Array<NotificationSubscription>;
4759
5036
  pinnedApps: Array<App>;
5037
+ preferences: UserPreferences;
4760
5038
  /** Associated accounts */
4761
5039
  primaryAccount: Account;
4762
5040
  profilePhoto: Scalars['String']['output'];
@@ -4962,6 +5240,13 @@ export type UserPermission = {
4962
5240
  user?: Maybe<User>;
4963
5241
  userActor?: Maybe<UserActor>;
4964
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
+ };
4965
5250
  export type UserQuery = {
4966
5251
  __typename?: 'UserQuery';
4967
5252
  /**
@@ -5064,6 +5349,14 @@ export type WebsiteNotificationsConnection = {
5064
5349
  edges: Array<WebsiteNotificationEdge>;
5065
5350
  pageInfo: PageInfo;
5066
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
+ }
5067
5360
  export type DeleteAndroidAppBuildCredentialsResult = {
5068
5361
  __typename?: 'deleteAndroidAppBuildCredentialsResult';
5069
5362
  id: Scalars['ID']['output'];
@@ -6094,7 +6387,7 @@ export type CreateAppleDeviceMutation = {
6094
6387
  name?: string | null;
6095
6388
  model?: string | null;
6096
6389
  deviceClass?: AppleDeviceClass | null;
6097
- createdAt?: any | null;
6390
+ createdAt: any;
6098
6391
  };
6099
6392
  };
6100
6393
  };
@@ -6126,7 +6419,7 @@ export type UpdateAppleDeviceMutation = {
6126
6419
  name?: string | null;
6127
6420
  model?: string | null;
6128
6421
  deviceClass?: AppleDeviceClass | null;
6129
- createdAt?: any | null;
6422
+ createdAt: any;
6130
6423
  };
6131
6424
  };
6132
6425
  };
@@ -6266,7 +6559,7 @@ export type CreateAppleProvisioningProfileMutation = {
6266
6559
  name?: string | null;
6267
6560
  model?: string | null;
6268
6561
  deviceClass?: AppleDeviceClass | null;
6269
- createdAt?: any | null;
6562
+ createdAt: any;
6270
6563
  }>;
6271
6564
  };
6272
6565
  };
@@ -6300,7 +6593,7 @@ export type UpdateAppleProvisioningProfileMutation = {
6300
6593
  name?: string | null;
6301
6594
  model?: string | null;
6302
6595
  deviceClass?: AppleDeviceClass | null;
6303
- createdAt?: any | null;
6596
+ createdAt: any;
6304
6597
  }>;
6305
6598
  };
6306
6599
  };
@@ -6542,7 +6835,7 @@ export type CreateIosAppBuildCredentialsMutation = {
6542
6835
  name?: string | null;
6543
6836
  model?: string | null;
6544
6837
  deviceClass?: AppleDeviceClass | null;
6545
- createdAt?: any | null;
6838
+ createdAt: any;
6546
6839
  }>;
6547
6840
  } | null;
6548
6841
  };
@@ -6650,7 +6943,7 @@ export type SetDistributionCertificateMutation = {
6650
6943
  name?: string | null;
6651
6944
  model?: string | null;
6652
6945
  deviceClass?: AppleDeviceClass | null;
6653
- createdAt?: any | null;
6946
+ createdAt: any;
6654
6947
  }>;
6655
6948
  } | null;
6656
6949
  };
@@ -6758,7 +7051,7 @@ export type SetProvisioningProfileMutation = {
6758
7051
  name?: string | null;
6759
7052
  model?: string | null;
6760
7053
  deviceClass?: AppleDeviceClass | null;
6761
- createdAt?: any | null;
7054
+ createdAt: any;
6762
7055
  }>;
6763
7056
  } | null;
6764
7057
  };
@@ -6870,7 +7163,7 @@ export type CreateIosAppCredentialsMutation = {
6870
7163
  name?: string | null;
6871
7164
  model?: string | null;
6872
7165
  deviceClass?: AppleDeviceClass | null;
6873
- createdAt?: any | null;
7166
+ createdAt: any;
6874
7167
  }>;
6875
7168
  } | null;
6876
7169
  }>;
@@ -7098,7 +7391,7 @@ export type SetPushKeyMutation = {
7098
7391
  name?: string | null;
7099
7392
  model?: string | null;
7100
7393
  deviceClass?: AppleDeviceClass | null;
7101
- createdAt?: any | null;
7394
+ createdAt: any;
7102
7395
  }>;
7103
7396
  } | null;
7104
7397
  }>;
@@ -7326,7 +7619,7 @@ export type SetAppStoreConnectApiKeyForSubmissionsMutation = {
7326
7619
  name?: string | null;
7327
7620
  model?: string | null;
7328
7621
  deviceClass?: AppleDeviceClass | null;
7329
- createdAt?: any | null;
7622
+ createdAt: any;
7330
7623
  }>;
7331
7624
  } | null;
7332
7625
  }>;
@@ -7517,7 +7810,7 @@ export type AppleDevicesByAppleTeamQuery = {
7517
7810
  name?: string | null;
7518
7811
  model?: string | null;
7519
7812
  deviceClass?: AppleDeviceClass | null;
7520
- createdAt?: any | null;
7813
+ createdAt: any;
7521
7814
  appleTeam: {
7522
7815
  __typename?: 'AppleTeam';
7523
7816
  id: string;
@@ -7554,6 +7847,7 @@ export type AppleDevicesByTeamIdentifierQuery = {
7554
7847
  deviceClass?: AppleDeviceClass | null;
7555
7848
  enabled?: boolean | null;
7556
7849
  model?: string | null;
7850
+ createdAt: any;
7557
7851
  }>;
7558
7852
  }>;
7559
7853
  };
@@ -7801,7 +8095,7 @@ export type AppleProvisioningProfilesByAppQuery = {
7801
8095
  name?: string | null;
7802
8096
  model?: string | null;
7803
8097
  deviceClass?: AppleDeviceClass | null;
7804
- createdAt?: any | null;
8098
+ createdAt: any;
7805
8099
  }>;
7806
8100
  appleAppIdentifier: {
7807
8101
  __typename?: 'AppleAppIdentifier';
@@ -8028,7 +8322,7 @@ export type IosAppBuildCredentialsByAppleAppIdentiferAndDistributionQuery = {
8028
8322
  name?: string | null;
8029
8323
  model?: string | null;
8030
8324
  deviceClass?: AppleDeviceClass | null;
8031
- createdAt?: any | null;
8325
+ createdAt: any;
8032
8326
  }>;
8033
8327
  } | null;
8034
8328
  }>;
@@ -8145,7 +8439,7 @@ export type IosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery = {
8145
8439
  name?: string | null;
8146
8440
  model?: string | null;
8147
8441
  deviceClass?: AppleDeviceClass | null;
8148
- createdAt?: any | null;
8442
+ createdAt: any;
8149
8443
  }>;
8150
8444
  } | null;
8151
8445
  }>;
@@ -8377,7 +8671,7 @@ export type CommonIosAppCredentialsWithBuildCredentialsByAppIdentifierIdQuery =
8377
8671
  name?: string | null;
8378
8672
  model?: string | null;
8379
8673
  deviceClass?: AppleDeviceClass | null;
8380
- createdAt?: any | null;
8674
+ createdAt: any;
8381
8675
  }>;
8382
8676
  } | null;
8383
8677
  }>;
@@ -11051,7 +11345,7 @@ export type AppleDeviceFragment = {
11051
11345
  name?: string | null;
11052
11346
  model?: string | null;
11053
11347
  deviceClass?: AppleDeviceClass | null;
11054
- createdAt?: any | null;
11348
+ createdAt: any;
11055
11349
  };
11056
11350
  export type AppleDeviceRegistrationRequestFragment = {
11057
11351
  __typename?: 'AppleDeviceRegistrationRequest';
@@ -11147,7 +11441,7 @@ export type AppleProvisioningProfileFragment = {
11147
11441
  name?: string | null;
11148
11442
  model?: string | null;
11149
11443
  deviceClass?: AppleDeviceClass | null;
11150
- createdAt?: any | null;
11444
+ createdAt: any;
11151
11445
  }>;
11152
11446
  };
11153
11447
  export type AppleProvisioningProfileIdentifiersFragment = {
@@ -11320,7 +11614,7 @@ export type IosAppBuildCredentialsFragment = {
11320
11614
  name?: string | null;
11321
11615
  model?: string | null;
11322
11616
  deviceClass?: AppleDeviceClass | null;
11323
- createdAt?: any | null;
11617
+ createdAt: any;
11324
11618
  }>;
11325
11619
  } | null;
11326
11620
  };
@@ -11541,7 +11835,7 @@ export type CommonIosAppCredentialsFragment = {
11541
11835
  name?: string | null;
11542
11836
  model?: string | null;
11543
11837
  deviceClass?: AppleDeviceClass | null;
11544
- createdAt?: any | null;
11838
+ createdAt: any;
11545
11839
  }>;
11546
11840
  } | null;
11547
11841
  }>;