eas-cli 5.1.0 → 5.3.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.
@@ -410,17 +410,11 @@ export type AccountSsoConfiguration = {
410
410
  updatedAt: Scalars['DateTime'];
411
411
  };
412
412
  export type AccountSsoConfigurationData = {
413
- authEndpoint?: InputMaybe<Scalars['String']>;
414
413
  authProtocol: AuthProtocolType;
415
414
  authProviderIdentifier: Scalars['String'];
416
415
  clientIdentifier: Scalars['String'];
417
416
  clientSecret: Scalars['String'];
418
- endSessionEndpoint?: InputMaybe<Scalars['String']>;
419
417
  issuer: Scalars['String'];
420
- jwksEndpoint?: InputMaybe<Scalars['String']>;
421
- revokeEndpoint?: InputMaybe<Scalars['String']>;
422
- tokenEndpoint?: InputMaybe<Scalars['String']>;
423
- userInfoEndpoint?: InputMaybe<Scalars['String']>;
424
418
  };
425
419
  export type AccountSsoConfigurationMutation = {
426
420
  __typename?: 'AccountSSOConfigurationMutation';
@@ -511,6 +505,8 @@ export type Actor = {
511
505
  * For example, when displaying a sentence indicating that actor X created a build or published an update.
512
506
  */
513
507
  displayName: Scalars['String'];
508
+ /** Experiments associated with this actor */
509
+ experiments: Array<ActorExperiment>;
514
510
  /**
515
511
  * Server feature gate values for this actor, optionally filtering by desired gates.
516
512
  * Only resolves for the viewer.
@@ -524,9 +520,29 @@ export type Actor = {
524
520
  export type ActorFeatureGatesArgs = {
525
521
  filter?: InputMaybe<Array<Scalars['String']>>;
526
522
  };
523
+ export type ActorExperiment = {
524
+ __typename?: 'ActorExperiment';
525
+ createdAt: Scalars['DateTime'];
526
+ enabled: Scalars['Boolean'];
527
+ experiment: Experiment;
528
+ id: Scalars['ID'];
529
+ updatedAt: Scalars['DateTime'];
530
+ };
531
+ export type ActorExperimentMutation = {
532
+ __typename?: 'ActorExperimentMutation';
533
+ /** Create or update the value of a User Experiment */
534
+ createOrUpdateActorExperiment: ActorExperiment;
535
+ };
536
+ export type ActorExperimentMutationCreateOrUpdateActorExperimentArgs = {
537
+ enabled: Scalars['Boolean'];
538
+ experiment: Experiment;
539
+ };
527
540
  export type ActorQuery = {
528
541
  __typename?: 'ActorQuery';
529
- /** Query an Actor by ID */
542
+ /**
543
+ * Query an Actor by ID
544
+ * @deprecated Public actor queries are no longer supported
545
+ */
530
546
  byId: Actor;
531
547
  };
532
548
  export type ActorQueryByIdArgs = {
@@ -662,6 +678,7 @@ export declare enum AndroidBuildType {
662
678
  DevelopmentClient = "DEVELOPMENT_CLIENT"
663
679
  }
664
680
  export type AndroidBuilderEnvironmentInput = {
681
+ bun?: InputMaybe<Scalars['String']>;
665
682
  env?: InputMaybe<Scalars['JSONObject']>;
666
683
  expoCli?: InputMaybe<Scalars['String']>;
667
684
  image?: InputMaybe<Scalars['String']>;
@@ -872,6 +889,7 @@ export type App = Project & {
872
889
  insights: AppInsights;
873
890
  /** iOS app credentials for the project */
874
891
  iosAppCredentials: Array<IosAppCredentials>;
892
+ isDeleting: Scalars['Boolean'];
875
893
  /** Whether the latest classic update publish is using a deprecated SDK version */
876
894
  isDeprecated: Scalars['Boolean'];
877
895
  /** @deprecated 'likes' have been deprecated. */
@@ -906,6 +924,8 @@ export type App = Project & {
906
924
  releaseChannels: Array<Scalars['String']>;
907
925
  /** @deprecated Legacy access tokens are deprecated */
908
926
  requiresAccessTokenForPushSecurity: Scalars['Boolean'];
927
+ /** Runtimes associated with this app */
928
+ runtimes: RuntimesConnection;
909
929
  scopeKey: Scalars['String'];
910
930
  /** SDK version of the latest classic update publish, 0.0.0 otherwise */
911
931
  sdkVersion: Scalars['String'];
@@ -1003,6 +1023,7 @@ export type AppDeploymentArgs = {
1003
1023
  export type AppDeploymentsArgs = {
1004
1024
  after?: InputMaybe<Scalars['String']>;
1005
1025
  before?: InputMaybe<Scalars['String']>;
1026
+ filter?: InputMaybe<DeploymentFilterInput>;
1006
1027
  first?: InputMaybe<Scalars['Int']>;
1007
1028
  last?: InputMaybe<Scalars['Int']>;
1008
1029
  };
@@ -1030,6 +1051,13 @@ export type AppLikedByArgs = {
1030
1051
  offset?: InputMaybe<Scalars['Int']>;
1031
1052
  };
1032
1053
  /** Represents an Exponent App (or Experience in legacy terms) */
1054
+ export type AppRuntimesArgs = {
1055
+ after?: InputMaybe<Scalars['String']>;
1056
+ before?: InputMaybe<Scalars['String']>;
1057
+ first?: InputMaybe<Scalars['Int']>;
1058
+ last?: InputMaybe<Scalars['Int']>;
1059
+ };
1060
+ /** Represents an Exponent App (or Experience in legacy terms) */
1033
1061
  export type AppSubmissionsArgs = {
1034
1062
  filter: SubmissionFilter;
1035
1063
  limit: Scalars['Int'];
@@ -1713,6 +1741,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
1713
1741
  completedAt?: Maybe<Scalars['DateTime']>;
1714
1742
  createdAt: Scalars['DateTime'];
1715
1743
  customWorkflowName?: Maybe<Scalars['String']>;
1744
+ developmentClient?: Maybe<Scalars['Boolean']>;
1716
1745
  distribution?: Maybe<DistributionType>;
1717
1746
  enqueuedAt?: Maybe<Scalars['DateTime']>;
1718
1747
  error?: Maybe<BuildError>;
@@ -1795,6 +1824,7 @@ export declare enum BuildCredentialsSource {
1795
1824
  }
1796
1825
  export type BuildError = {
1797
1826
  __typename?: 'BuildError';
1827
+ buildPhase?: Maybe<BuildPhase>;
1798
1828
  docsUrl?: Maybe<Scalars['String']>;
1799
1829
  errorCode: Scalars['String'];
1800
1830
  message: Scalars['String'];
@@ -1904,6 +1934,7 @@ export type BuildMetadataInput = {
1904
1934
  cliVersion?: InputMaybe<Scalars['String']>;
1905
1935
  credentialsSource?: InputMaybe<BuildCredentialsSource>;
1906
1936
  customWorkflowName?: InputMaybe<Scalars['String']>;
1937
+ developmentClient?: InputMaybe<Scalars['Boolean']>;
1907
1938
  distribution?: InputMaybe<DistributionType>;
1908
1939
  gitCommitHash?: InputMaybe<Scalars['String']>;
1909
1940
  gitCommitMessage?: InputMaybe<Scalars['String']>;
@@ -2007,6 +2038,49 @@ export type BuildParamsInput = {
2007
2038
  resourceClass: BuildResourceClass;
2008
2039
  sdkVersion?: InputMaybe<Scalars['String']>;
2009
2040
  };
2041
+ export declare enum BuildPhase {
2042
+ BuilderInfo = "BUILDER_INFO",
2043
+ CleanUpCredentials = "CLEAN_UP_CREDENTIALS",
2044
+ CompleteBuild = "COMPLETE_BUILD",
2045
+ ConfigureExpoUpdates = "CONFIGURE_EXPO_UPDATES",
2046
+ ConfigureXcodeProject = "CONFIGURE_XCODE_PROJECT",
2047
+ Custom = "CUSTOM",
2048
+ DownloadApplicationArchive = "DOWNLOAD_APPLICATION_ARCHIVE",
2049
+ EasBuildInternal = "EAS_BUILD_INTERNAL",
2050
+ FailBuild = "FAIL_BUILD",
2051
+ FixGradlew = "FIX_GRADLEW",
2052
+ InstallCustomTools = "INSTALL_CUSTOM_TOOLS",
2053
+ InstallDependencies = "INSTALL_DEPENDENCIES",
2054
+ InstallPods = "INSTALL_PODS",
2055
+ OnBuildCancelHook = "ON_BUILD_CANCEL_HOOK",
2056
+ OnBuildCompleteHook = "ON_BUILD_COMPLETE_HOOK",
2057
+ OnBuildErrorHook = "ON_BUILD_ERROR_HOOK",
2058
+ OnBuildSuccessHook = "ON_BUILD_SUCCESS_HOOK",
2059
+ ParseCustomWorkflowConfig = "PARSE_CUSTOM_WORKFLOW_CONFIG",
2060
+ PostInstallHook = "POST_INSTALL_HOOK",
2061
+ Prebuild = "PREBUILD",
2062
+ PrepareArtifacts = "PREPARE_ARTIFACTS",
2063
+ PrepareCredentials = "PREPARE_CREDENTIALS",
2064
+ PrepareProject = "PREPARE_PROJECT",
2065
+ PreInstallHook = "PRE_INSTALL_HOOK",
2066
+ PreUploadArtifactsHook = "PRE_UPLOAD_ARTIFACTS_HOOK",
2067
+ Queue = "QUEUE",
2068
+ ReadAppConfig = "READ_APP_CONFIG",
2069
+ ReadPackageJson = "READ_PACKAGE_JSON",
2070
+ RestoreCache = "RESTORE_CACHE",
2071
+ RunExpoDoctor = "RUN_EXPO_DOCTOR",
2072
+ RunFastlane = "RUN_FASTLANE",
2073
+ RunGradlew = "RUN_GRADLEW",
2074
+ SaveCache = "SAVE_CACHE",
2075
+ SetUpBuildEnvironment = "SET_UP_BUILD_ENVIRONMENT",
2076
+ SpinUpBuilder = "SPIN_UP_BUILDER",
2077
+ StartBuild = "START_BUILD",
2078
+ Unknown = "UNKNOWN",
2079
+ UploadApplicationArchive = "UPLOAD_APPLICATION_ARCHIVE",
2080
+ /** @deprecated No longer supported */
2081
+ UploadArtifacts = "UPLOAD_ARTIFACTS",
2082
+ UploadBuildArtifacts = "UPLOAD_BUILD_ARTIFACTS"
2083
+ }
2010
2084
  export type BuildPlanCreditThresholdExceededMetadata = {
2011
2085
  __typename?: 'BuildPlanCreditThresholdExceededMetadata';
2012
2086
  account: Account;
@@ -2321,8 +2395,10 @@ export type Deployment = {
2321
2395
  builds: DeploymentBuildsConnection;
2322
2396
  channel: UpdateChannel;
2323
2397
  id: Scalars['ID'];
2324
- /** @deprecated Not required for the new Deployment UI */
2325
- latestUpdate?: Maybe<Update>;
2398
+ /** Deployment query field */
2399
+ insights: DeploymentInsights;
2400
+ /** Ordered the same way as 'updateBranches' in UpdateChannel */
2401
+ latestUpdatesPerBranch: Array<LatestUpdateOnBranch>;
2326
2402
  runtime: Runtime;
2327
2403
  };
2328
2404
  /** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
@@ -2332,6 +2408,11 @@ export type DeploymentBuildsArgs = {
2332
2408
  first?: InputMaybe<Scalars['Int']>;
2333
2409
  last?: InputMaybe<Scalars['Int']>;
2334
2410
  };
2411
+ /** Represents a Deployment - a set of Builds with the same Runtime Version and Channel */
2412
+ export type DeploymentLatestUpdatesPerBranchArgs = {
2413
+ limit: Scalars['Int'];
2414
+ offset: Scalars['Int'];
2415
+ };
2335
2416
  export type DeploymentBuildEdge = {
2336
2417
  __typename?: 'DeploymentBuildEdge';
2337
2418
  cursor: Scalars['String'];
@@ -2348,6 +2429,30 @@ export type DeploymentEdge = {
2348
2429
  cursor: Scalars['String'];
2349
2430
  node: Deployment;
2350
2431
  };
2432
+ export type DeploymentFilterInput = {
2433
+ channel?: InputMaybe<Scalars['String']>;
2434
+ runtimeVersion?: InputMaybe<Scalars['String']>;
2435
+ };
2436
+ export type DeploymentInsights = {
2437
+ __typename?: 'DeploymentInsights';
2438
+ embeddedUpdateTotalUniqueUsers: Scalars['Int'];
2439
+ embeddedUpdateUniqueUsersOverTime: UniqueUsersOverTimeData;
2440
+ id: Scalars['ID'];
2441
+ mostPopularUpdates: Array<Update>;
2442
+ uniqueUsersOverTime: UniqueUsersOverTimeData;
2443
+ };
2444
+ export type DeploymentInsightsEmbeddedUpdateTotalUniqueUsersArgs = {
2445
+ timespan: InsightsTimespan;
2446
+ };
2447
+ export type DeploymentInsightsEmbeddedUpdateUniqueUsersOverTimeArgs = {
2448
+ timespan: InsightsTimespan;
2449
+ };
2450
+ export type DeploymentInsightsMostPopularUpdatesArgs = {
2451
+ timespan: InsightsTimespan;
2452
+ };
2453
+ export type DeploymentInsightsUniqueUsersOverTimeArgs = {
2454
+ timespan: InsightsTimespan;
2455
+ };
2351
2456
  /** Represents the connection over the deployments edge of an App */
2352
2457
  export type DeploymentsConnection = {
2353
2458
  __typename?: 'DeploymentsConnection';
@@ -2486,6 +2591,9 @@ export type EstimatedUsage = {
2486
2591
  serviceMetric: EasServiceMetric;
2487
2592
  value: Scalars['Float'];
2488
2593
  };
2594
+ export declare enum Experiment {
2595
+ Orbit = "ORBIT"
2596
+ }
2489
2597
  export type ExperimentationQuery = {
2490
2598
  __typename?: 'ExperimentationQuery';
2491
2599
  /** Get device experimentation config */
@@ -2944,6 +3052,7 @@ export declare enum IosBuildType {
2944
3052
  Release = "RELEASE"
2945
3053
  }
2946
3054
  export type IosBuilderEnvironmentInput = {
3055
+ bun?: InputMaybe<Scalars['String']>;
2947
3056
  bundler?: InputMaybe<Scalars['String']>;
2948
3057
  cocoapods?: InputMaybe<Scalars['String']>;
2949
3058
  env?: InputMaybe<Scalars['JSONObject']>;
@@ -3064,6 +3173,11 @@ export type KeystoreGenerationUrlMutation = {
3064
3173
  /** Create a Keystore Generation URL */
3065
3174
  createKeystoreGenerationUrl: KeystoreGenerationUrl;
3066
3175
  };
3176
+ export type LatestUpdateOnBranch = {
3177
+ __typename?: 'LatestUpdateOnBranch';
3178
+ branchId: Scalars['String'];
3179
+ update?: Maybe<Update>;
3180
+ };
3067
3181
  export type LeaveAccountResult = {
3068
3182
  __typename?: 'LeaveAccountResult';
3069
3183
  success: Scalars['Boolean'];
@@ -3197,6 +3311,7 @@ export type MeteredBillingStatus = {
3197
3311
  };
3198
3312
  export type Notification = {
3199
3313
  __typename?: 'Notification';
3314
+ accountName: Scalars['String'];
3200
3315
  createdAt: Scalars['DateTime'];
3201
3316
  event: NotificationEvent;
3202
3317
  id: Scalars['ID'];
@@ -3204,6 +3319,7 @@ export type Notification = {
3204
3319
  metadata?: Maybe<NotificationMetadata>;
3205
3320
  type: NotificationType;
3206
3321
  updatedAt: Scalars['DateTime'];
3322
+ websiteMessage: Scalars['String'];
3207
3323
  };
3208
3324
  export declare enum NotificationEvent {
3209
3325
  BuildComplete = "BUILD_COMPLETE",
@@ -3398,6 +3514,8 @@ export type Robot = Actor & {
3398
3514
  accounts: Array<Account>;
3399
3515
  created: Scalars['DateTime'];
3400
3516
  displayName: Scalars['String'];
3517
+ /** Experiments associated with this actor */
3518
+ experiments: Array<ActorExperiment>;
3401
3519
  /**
3402
3520
  * Server feature gate values for this actor, optionally filtering by desired gates.
3403
3521
  * Only resolves for the viewer.
@@ -3457,6 +3575,8 @@ export type RootMutation = {
3457
3575
  account: AccountMutation;
3458
3576
  /** Mutations that create, update, and delete an AccountSSOConfiguration */
3459
3577
  accountSSOConfiguration: AccountSsoConfigurationMutation;
3578
+ /** Mutations for Actor experiments */
3579
+ actorExperiment: ActorExperimentMutation;
3460
3580
  /** Mutations that modify the build credentials for an Android app */
3461
3581
  androidAppBuildCredentials: AndroidAppBuildCredentialsMutation;
3462
3582
  /** Mutations that modify the credentials for an Android app */
@@ -3528,10 +3648,14 @@ export type RootMutation = {
3528
3648
  updateBranch: UpdateBranchMutation;
3529
3649
  updateChannel: UpdateChannelMutation;
3530
3650
  uploadSession: UploadSession;
3651
+ /** Mutations that create, update, and delete pinned apps */
3652
+ userAppPins: UserAppPinMutation;
3531
3653
  /** Mutations that create, delete, and accept UserInvitations */
3532
3654
  userInvitation: UserInvitationMutation;
3533
3655
  /** Mutations that create, delete, update Webhooks */
3534
3656
  webhook: WebhookMutation;
3657
+ /** Mutations that modify a websiteNotification */
3658
+ websiteNotifications: WebsiteNotificationMutation;
3535
3659
  };
3536
3660
  export type RootMutationAccountArgs = {
3537
3661
  accountName: Scalars['ID'];
@@ -3556,7 +3680,10 @@ export type RootQuery = {
3556
3680
  account: AccountQuery;
3557
3681
  /** Top-level query object for querying AccountSSOConfigurationPublicData */
3558
3682
  accountSSOConfigurationPublicData: AccountSsoConfigurationPublicDataQuery;
3559
- /** Top-level query object for querying Actors. */
3683
+ /**
3684
+ * Top-level query object for querying Actors.
3685
+ * @deprecated Public actor queries are no longer supported
3686
+ */
3560
3687
  actor: ActorQuery;
3561
3688
  /**
3562
3689
  * Public apps in the app directory
@@ -3613,7 +3740,10 @@ export type RootQuery = {
3613
3740
  * @deprecated Public user queries are no longer supported
3614
3741
  */
3615
3742
  user: UserQuery;
3616
- /** Top-level query object for querying UserActors. */
3743
+ /**
3744
+ * Top-level query object for querying UserActors.
3745
+ * @deprecated Public user queries are no longer supported
3746
+ */
3617
3747
  userActor: UserActorQuery;
3618
3748
  /** Top-level query object for querying UserActorPublicData publicly. */
3619
3749
  userActorPublicData: UserActorPublicDataQuery;
@@ -3665,6 +3795,7 @@ export type RuntimeFilterInput = {
3665
3795
  /** Only return runtimes shared with this branch */
3666
3796
  branchId?: InputMaybe<Scalars['String']>;
3667
3797
  };
3798
+ /** Represents the connection over the runtime edge of an App */
3668
3799
  export type RuntimesConnection = {
3669
3800
  __typename?: 'RuntimesConnection';
3670
3801
  edges: Array<RuntimeEdge>;
@@ -3688,6 +3819,8 @@ export type SsoUser = Actor & UserActor & {
3688
3819
  /** Discord account linked to a user */
3689
3820
  discordUser?: Maybe<DiscordUser>;
3690
3821
  displayName: Scalars['String'];
3822
+ /** Experiments associated with this actor */
3823
+ experiments: Array<ActorExperiment>;
3691
3824
  /**
3692
3825
  * Server feature gate values for this actor, optionally filtering by desired gates.
3693
3826
  * Only resolves for the viewer.
@@ -3707,6 +3840,7 @@ export type SsoUser = Actor & UserActor & {
3707
3840
  /** @deprecated No longer supported */
3708
3841
  location?: Maybe<Scalars['String']>;
3709
3842
  notificationSubscriptions: Array<NotificationSubscription>;
3843
+ pinnedApps: Array<App>;
3710
3844
  /** Associated accounts */
3711
3845
  primaryAccount: Account;
3712
3846
  profilePhoto: Scalars['String'];
@@ -3715,8 +3849,7 @@ export type SsoUser = Actor & UserActor & {
3715
3849
  /** @deprecated No longer supported */
3716
3850
  twitterUsername?: Maybe<Scalars['String']>;
3717
3851
  username: Scalars['String'];
3718
- /** Web notifications linked to a user */
3719
- websiteNotifications: Array<Notification>;
3852
+ websiteNotificationsPaginated: WebsiteNotificationsConnection;
3720
3853
  };
3721
3854
  /** Represents a human SSO (not robot) actor. */
3722
3855
  export type SsoUserActivityTimelineProjectActivitiesArgs = {
@@ -3743,6 +3876,13 @@ export type SsoUserSnacksArgs = {
3743
3876
  limit: Scalars['Int'];
3744
3877
  offset: Scalars['Int'];
3745
3878
  };
3879
+ /** Represents a human SSO (not robot) actor. */
3880
+ export type SsoUserWebsiteNotificationsPaginatedArgs = {
3881
+ after?: InputMaybe<Scalars['String']>;
3882
+ before?: InputMaybe<Scalars['String']>;
3883
+ first?: InputMaybe<Scalars['Int']>;
3884
+ last?: InputMaybe<Scalars['Int']>;
3885
+ };
3746
3886
  export type SsoUserDataInput = {
3747
3887
  firstName?: InputMaybe<Scalars['String']>;
3748
3888
  lastName?: InputMaybe<Scalars['String']>;
@@ -3912,7 +4052,9 @@ export type StatuspageService = {
3912
4052
  export declare enum StatuspageServiceName {
3913
4053
  EasBuild = "EAS_BUILD",
3914
4054
  EasSubmit = "EAS_SUBMIT",
3915
- EasUpdate = "EAS_UPDATE"
4055
+ EasUpdate = "EAS_UPDATE",
4056
+ GithubApiRequests = "GITHUB_API_REQUESTS",
4057
+ GithubWebhooks = "GITHUB_WEBHOOKS"
3916
4058
  }
3917
4059
  export type StatuspageServiceQuery = {
3918
4060
  __typename?: 'StatuspageServiceQuery';
@@ -4109,6 +4251,8 @@ export type Update = ActivityTimelineProjectActivity & {
4109
4251
  gitCommitHash?: Maybe<Scalars['String']>;
4110
4252
  group: Scalars['String'];
4111
4253
  id: Scalars['ID'];
4254
+ /** Update query field */
4255
+ insights: UpdateInsights;
4112
4256
  isGitWorkingTreeDirty: Scalars['Boolean'];
4113
4257
  isRollBackToEmbedded: Scalars['Boolean'];
4114
4258
  manifestFragment: Scalars['String'];
@@ -4239,6 +4383,14 @@ export type UpdateInfoGroup = {
4239
4383
  ios?: InputMaybe<PartialManifest>;
4240
4384
  web?: InputMaybe<PartialManifest>;
4241
4385
  };
4386
+ export type UpdateInsights = {
4387
+ __typename?: 'UpdateInsights';
4388
+ id: Scalars['ID'];
4389
+ totalUniqueUsers: Scalars['Int'];
4390
+ };
4391
+ export type UpdateInsightsTotalUniqueUsersArgs = {
4392
+ timespan: InsightsTimespan;
4393
+ };
4242
4394
  export type UpdateMutation = {
4243
4395
  __typename?: 'UpdateMutation';
4244
4396
  /** Delete an EAS update group */
@@ -4323,6 +4475,8 @@ export type User = Actor & UserActor & {
4323
4475
  displayName: Scalars['String'];
4324
4476
  email: Scalars['String'];
4325
4477
  emailVerified: Scalars['Boolean'];
4478
+ /** Experiments associated with this actor */
4479
+ experiments: Array<ActorExperiment>;
4326
4480
  /**
4327
4481
  * Server feature gate values for this actor, optionally filtering by desired gates.
4328
4482
  * Only resolves for the viewer.
@@ -4349,6 +4503,7 @@ export type User = Actor & UserActor & {
4349
4503
  notificationSubscriptions: Array<NotificationSubscription>;
4350
4504
  /** Pending UserInvitations for this user. Only resolves for the viewer. */
4351
4505
  pendingUserInvitations: Array<UserInvitation>;
4506
+ pinnedApps: Array<App>;
4352
4507
  /** Associated accounts */
4353
4508
  primaryAccount: Account;
4354
4509
  profilePhoto: Scalars['String'];
@@ -4359,7 +4514,7 @@ export type User = Actor & UserActor & {
4359
4514
  /** @deprecated No longer supported */
4360
4515
  twitterUsername?: Maybe<Scalars['String']>;
4361
4516
  username: Scalars['String'];
4362
- websiteNotifications: Array<Notification>;
4517
+ websiteNotificationsPaginated: WebsiteNotificationsConnection;
4363
4518
  };
4364
4519
  /** Represents a human (not robot) actor. */
4365
4520
  export type UserActivityTimelineProjectActivitiesArgs = {
@@ -4386,6 +4541,13 @@ export type UserSnacksArgs = {
4386
4541
  limit: Scalars['Int'];
4387
4542
  offset: Scalars['Int'];
4388
4543
  };
4544
+ /** Represents a human (not robot) actor. */
4545
+ export type UserWebsiteNotificationsPaginatedArgs = {
4546
+ after?: InputMaybe<Scalars['String']>;
4547
+ before?: InputMaybe<Scalars['String']>;
4548
+ first?: InputMaybe<Scalars['Int']>;
4549
+ last?: InputMaybe<Scalars['Int']>;
4550
+ };
4389
4551
  /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
4390
4552
  export type UserActor = {
4391
4553
  /** Access Tokens belonging to this user actor */
@@ -4410,6 +4572,8 @@ export type UserActor = {
4410
4572
  * For example, when displaying a sentence indicating that actor X created a build or published an update.
4411
4573
  */
4412
4574
  displayName: Scalars['String'];
4575
+ /** Experiments associated with this actor */
4576
+ experiments: Array<ActorExperiment>;
4413
4577
  /**
4414
4578
  * Server feature gate values for this user actor, optionally filtering by desired gates.
4415
4579
  * Only resolves for the viewer.
@@ -4429,6 +4593,7 @@ export type UserActor = {
4429
4593
  /** @deprecated No longer supported */
4430
4594
  location?: Maybe<Scalars['String']>;
4431
4595
  notificationSubscriptions: Array<NotificationSubscription>;
4596
+ pinnedApps: Array<App>;
4432
4597
  /** Associated accounts */
4433
4598
  primaryAccount: Account;
4434
4599
  profilePhoto: Scalars['String'];
@@ -4437,8 +4602,7 @@ export type UserActor = {
4437
4602
  /** @deprecated No longer supported */
4438
4603
  twitterUsername?: Maybe<Scalars['String']>;
4439
4604
  username: Scalars['String'];
4440
- /** Web notifications linked to a user */
4441
- websiteNotifications: Array<Notification>;
4605
+ websiteNotificationsPaginated: WebsiteNotificationsConnection;
4442
4606
  };
4443
4607
  /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
4444
4608
  export type UserActorActivityTimelineProjectActivitiesArgs = {
@@ -4466,6 +4630,13 @@ export type UserActorSnacksArgs = {
4466
4630
  offset: Scalars['Int'];
4467
4631
  };
4468
4632
  /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
4633
+ export type UserActorWebsiteNotificationsPaginatedArgs = {
4634
+ after?: InputMaybe<Scalars['String']>;
4635
+ before?: InputMaybe<Scalars['String']>;
4636
+ first?: InputMaybe<Scalars['Int']>;
4637
+ last?: InputMaybe<Scalars['Int']>;
4638
+ };
4639
+ /** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
4469
4640
  export type UserActorPublicData = {
4470
4641
  __typename?: 'UserActorPublicData';
4471
4642
  /** Apps this user has published */
@@ -4499,9 +4670,15 @@ export type UserActorPublicDataQueryByUsernameArgs = {
4499
4670
  };
4500
4671
  export type UserActorQuery = {
4501
4672
  __typename?: 'UserActorQuery';
4502
- /** Query a UserActor by ID */
4673
+ /**
4674
+ * Query a UserActor by ID
4675
+ * @deprecated Public user actor queries are no longer supported
4676
+ */
4503
4677
  byId: UserActor;
4504
- /** Query a UserActor by username */
4678
+ /**
4679
+ * Query a UserActor by username
4680
+ * @deprecated Public user actor queries are no longer supported
4681
+ */
4505
4682
  byUsername: UserActor;
4506
4683
  };
4507
4684
  export type UserActorQueryByIdArgs = {
@@ -4510,6 +4687,17 @@ export type UserActorQueryByIdArgs = {
4510
4687
  export type UserActorQueryByUsernameArgs = {
4511
4688
  username: Scalars['String'];
4512
4689
  };
4690
+ export type UserAppPinMutation = {
4691
+ __typename?: 'UserAppPinMutation';
4692
+ pinApp: Scalars['ID'];
4693
+ unpinApp?: Maybe<Scalars['ID']>;
4694
+ };
4695
+ export type UserAppPinMutationPinAppArgs = {
4696
+ appId: Scalars['ID'];
4697
+ };
4698
+ export type UserAppPinMutationUnpinAppArgs = {
4699
+ appId: Scalars['ID'];
4700
+ };
4513
4701
  export type UserDataInput = {
4514
4702
  email?: InputMaybe<Scalars['String']>;
4515
4703
  firstName?: InputMaybe<Scalars['String']>;
@@ -4643,6 +4831,10 @@ export type UserSecondFactorDevice = {
4643
4831
  updatedAt: Scalars['DateTime'];
4644
4832
  user: User;
4645
4833
  };
4834
+ export type WebNotificationUpdateReadStateInput = {
4835
+ id: Scalars['ID'];
4836
+ isRead: Scalars['Boolean'];
4837
+ };
4646
4838
  export type Webhook = {
4647
4839
  __typename?: 'Webhook';
4648
4840
  appId: Scalars['ID'];
@@ -4691,6 +4883,24 @@ export declare enum WebhookType {
4691
4883
  Build = "BUILD",
4692
4884
  Submit = "SUBMIT"
4693
4885
  }
4886
+ export type WebsiteNotificationEdge = {
4887
+ __typename?: 'WebsiteNotificationEdge';
4888
+ cursor: Scalars['String'];
4889
+ node: Notification;
4890
+ };
4891
+ export type WebsiteNotificationMutation = {
4892
+ __typename?: 'WebsiteNotificationMutation';
4893
+ updateAllWebsiteNotificationReadStateAsRead: Scalars['Boolean'];
4894
+ updateNotificationReadState: Notification;
4895
+ };
4896
+ export type WebsiteNotificationMutationUpdateNotificationReadStateArgs = {
4897
+ input: WebNotificationUpdateReadStateInput;
4898
+ };
4899
+ export type WebsiteNotificationsConnection = {
4900
+ __typename?: 'WebsiteNotificationsConnection';
4901
+ edges: Array<WebsiteNotificationEdge>;
4902
+ pageInfo: PageInfo;
4903
+ };
4694
4904
  export type DeleteAndroidAppBuildCredentialsResult = {
4695
4905
  __typename?: 'deleteAndroidAppBuildCredentialsResult';
4696
4906
  id: Scalars['ID'];
@@ -8900,6 +9110,7 @@ export type ViewUpdateChannelOnAppQuery = {
8900
9110
  __typename?: 'UpdateChannel';
8901
9111
  id: string;
8902
9112
  name: string;
9113
+ updatedAt: any;
8903
9114
  createdAt: any;
8904
9115
  branchMapping: string;
8905
9116
  updateBranches: Array<{
@@ -8964,6 +9175,7 @@ export type ViewUpdateChannelsOnAppQuery = {
8964
9175
  __typename?: 'UpdateChannel';
8965
9176
  id: string;
8966
9177
  name: string;
9178
+ updatedAt: any;
8967
9179
  createdAt: any;
8968
9180
  branchMapping: string;
8969
9181
  updateBranches: Array<{
@@ -6,8 +6,8 @@
6
6
  * For more info and docs, visit https://graphql-code-generator.com/
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.Permission = exports.Order = exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.GitHubBuildTriggerType = exports.GitHubAppInstallationStatus = exports.GitHubAppEnvironment = exports.Feature = exports.EnvironmentSecretType = exports.EasTotalPlanEnablementUnit = exports.EasServiceMetric = exports.EasService = exports.EasBuildDeprecationInfoType = exports.EasBuildBillingResourceClass = exports.DistributionType = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildRetryDisabledReason = exports.BuildResourceClass = exports.BuildPriority = exports.BuildMode = exports.BuildLimitThresholdExceededMetadataType = exports.BuildJobStatus = exports.BuildJobLogsFormat = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.BackgroundJobState = exports.BackgroundJobResultType = exports.AuthProtocolType = exports.AssetMetadataStatus = exports.AppsFilter = exports.AppleDeviceClass = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppPrivacy = exports.AppPlatform = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = exports.AccountAppsSortByField = void 0;
10
- exports.WebhookType = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.SubmissionStatus = exports.SubmissionArchiveSourceType = exports.SubmissionAndroidTrack = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ProjectArchiveSourceType = void 0;
9
+ exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.GitHubBuildTriggerType = exports.GitHubAppInstallationStatus = exports.GitHubAppEnvironment = exports.Feature = exports.Experiment = exports.EnvironmentSecretType = exports.EasTotalPlanEnablementUnit = exports.EasServiceMetric = exports.EasService = exports.EasBuildDeprecationInfoType = exports.EasBuildBillingResourceClass = exports.DistributionType = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildRetryDisabledReason = exports.BuildResourceClass = exports.BuildPriority = exports.BuildPhase = exports.BuildMode = exports.BuildLimitThresholdExceededMetadataType = exports.BuildJobStatus = exports.BuildJobLogsFormat = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.BackgroundJobState = exports.BackgroundJobResultType = exports.AuthProtocolType = exports.AssetMetadataStatus = exports.AppsFilter = exports.AppleDeviceClass = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppPrivacy = exports.AppPlatform = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = exports.AccountAppsSortByField = void 0;
10
+ exports.WebhookType = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.SubmissionStatus = exports.SubmissionArchiveSourceType = exports.SubmissionAndroidTrack = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ProjectArchiveSourceType = exports.Permission = exports.Order = void 0;
11
11
  var AccountAppsSortByField;
12
12
  (function (AccountAppsSortByField) {
13
13
  AccountAppsSortByField["LatestActivityTime"] = "LATEST_ACTIVITY_TIME";
@@ -148,6 +148,50 @@ var BuildMode;
148
148
  BuildMode["Custom"] = "CUSTOM";
149
149
  BuildMode["Resign"] = "RESIGN";
150
150
  })(BuildMode = exports.BuildMode || (exports.BuildMode = {}));
151
+ var BuildPhase;
152
+ (function (BuildPhase) {
153
+ BuildPhase["BuilderInfo"] = "BUILDER_INFO";
154
+ BuildPhase["CleanUpCredentials"] = "CLEAN_UP_CREDENTIALS";
155
+ BuildPhase["CompleteBuild"] = "COMPLETE_BUILD";
156
+ BuildPhase["ConfigureExpoUpdates"] = "CONFIGURE_EXPO_UPDATES";
157
+ BuildPhase["ConfigureXcodeProject"] = "CONFIGURE_XCODE_PROJECT";
158
+ BuildPhase["Custom"] = "CUSTOM";
159
+ BuildPhase["DownloadApplicationArchive"] = "DOWNLOAD_APPLICATION_ARCHIVE";
160
+ BuildPhase["EasBuildInternal"] = "EAS_BUILD_INTERNAL";
161
+ BuildPhase["FailBuild"] = "FAIL_BUILD";
162
+ BuildPhase["FixGradlew"] = "FIX_GRADLEW";
163
+ BuildPhase["InstallCustomTools"] = "INSTALL_CUSTOM_TOOLS";
164
+ BuildPhase["InstallDependencies"] = "INSTALL_DEPENDENCIES";
165
+ BuildPhase["InstallPods"] = "INSTALL_PODS";
166
+ BuildPhase["OnBuildCancelHook"] = "ON_BUILD_CANCEL_HOOK";
167
+ BuildPhase["OnBuildCompleteHook"] = "ON_BUILD_COMPLETE_HOOK";
168
+ BuildPhase["OnBuildErrorHook"] = "ON_BUILD_ERROR_HOOK";
169
+ BuildPhase["OnBuildSuccessHook"] = "ON_BUILD_SUCCESS_HOOK";
170
+ BuildPhase["ParseCustomWorkflowConfig"] = "PARSE_CUSTOM_WORKFLOW_CONFIG";
171
+ BuildPhase["PostInstallHook"] = "POST_INSTALL_HOOK";
172
+ BuildPhase["Prebuild"] = "PREBUILD";
173
+ BuildPhase["PrepareArtifacts"] = "PREPARE_ARTIFACTS";
174
+ BuildPhase["PrepareCredentials"] = "PREPARE_CREDENTIALS";
175
+ BuildPhase["PrepareProject"] = "PREPARE_PROJECT";
176
+ BuildPhase["PreInstallHook"] = "PRE_INSTALL_HOOK";
177
+ BuildPhase["PreUploadArtifactsHook"] = "PRE_UPLOAD_ARTIFACTS_HOOK";
178
+ BuildPhase["Queue"] = "QUEUE";
179
+ BuildPhase["ReadAppConfig"] = "READ_APP_CONFIG";
180
+ BuildPhase["ReadPackageJson"] = "READ_PACKAGE_JSON";
181
+ BuildPhase["RestoreCache"] = "RESTORE_CACHE";
182
+ BuildPhase["RunExpoDoctor"] = "RUN_EXPO_DOCTOR";
183
+ BuildPhase["RunFastlane"] = "RUN_FASTLANE";
184
+ BuildPhase["RunGradlew"] = "RUN_GRADLEW";
185
+ BuildPhase["SaveCache"] = "SAVE_CACHE";
186
+ BuildPhase["SetUpBuildEnvironment"] = "SET_UP_BUILD_ENVIRONMENT";
187
+ BuildPhase["SpinUpBuilder"] = "SPIN_UP_BUILDER";
188
+ BuildPhase["StartBuild"] = "START_BUILD";
189
+ BuildPhase["Unknown"] = "UNKNOWN";
190
+ BuildPhase["UploadApplicationArchive"] = "UPLOAD_APPLICATION_ARCHIVE";
191
+ /** @deprecated No longer supported */
192
+ BuildPhase["UploadArtifacts"] = "UPLOAD_ARTIFACTS";
193
+ BuildPhase["UploadBuildArtifacts"] = "UPLOAD_BUILD_ARTIFACTS";
194
+ })(BuildPhase = exports.BuildPhase || (exports.BuildPhase = {}));
151
195
  var BuildPriority;
152
196
  (function (BuildPriority) {
153
197
  BuildPriority["High"] = "HIGH";
@@ -245,6 +289,10 @@ var EnvironmentSecretType;
245
289
  EnvironmentSecretType["FileBase64"] = "FILE_BASE64";
246
290
  EnvironmentSecretType["String"] = "STRING";
247
291
  })(EnvironmentSecretType = exports.EnvironmentSecretType || (exports.EnvironmentSecretType = {}));
292
+ var Experiment;
293
+ (function (Experiment) {
294
+ Experiment["Orbit"] = "ORBIT";
295
+ })(Experiment = exports.Experiment || (exports.Experiment = {}));
248
296
  var Feature;
249
297
  (function (Feature) {
250
298
  /** Priority Builds */
@@ -409,6 +457,8 @@ var StatuspageServiceName;
409
457
  StatuspageServiceName["EasBuild"] = "EAS_BUILD";
410
458
  StatuspageServiceName["EasSubmit"] = "EAS_SUBMIT";
411
459
  StatuspageServiceName["EasUpdate"] = "EAS_UPDATE";
460
+ StatuspageServiceName["GithubApiRequests"] = "GITHUB_API_REQUESTS";
461
+ StatuspageServiceName["GithubWebhooks"] = "GITHUB_WEBHOOKS";
412
462
  })(StatuspageServiceName = exports.StatuspageServiceName || (exports.StatuspageServiceName = {}));
413
463
  /** Possible statuses for a service. */
414
464
  var StatuspageServiceStatus;
@@ -30,6 +30,7 @@ exports.ChannelQuery = {
30
30
  updateChannelByName(name: $channelName) {
31
31
  id
32
32
  name
33
+ updatedAt
33
34
  createdAt
34
35
  branchMapping
35
36
  updateBranches(offset: 0, limit: 5) {
@@ -63,6 +64,7 @@ exports.ChannelQuery = {
63
64
  updateChannels(offset: $offset, limit: $limit) {
64
65
  id
65
66
  name
67
+ updatedAt
66
68
  createdAt
67
69
  branchMapping
68
70
  updateBranches(offset: 0, limit: 5) {