eas-cli 16.17.4 → 16.18.1

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.
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const chalk_1 = tslib_1.__importDefault(require("chalk"));
6
6
  const url_1 = require("./url");
7
7
  const generated_1 = require("../../graphql/generated");
8
+ const log_1 = require("../../log");
8
9
  const platform_1 = require("../../platform");
9
10
  const formatFields_1 = tslib_1.__importDefault(require("../../utils/formatFields"));
10
11
  function formatGraphQLBuild(build) {
@@ -79,7 +80,7 @@ function formatGraphQLBuild(build) {
79
80
  },
80
81
  {
81
82
  label: 'Logs',
82
- value: (0, url_1.getBuildLogsUrl)(build),
83
+ value: (0, log_1.link)((0, url_1.getBuildLogsUrl)(build)),
83
84
  },
84
85
  {
85
86
  label: 'Artifact',
@@ -95,7 +96,28 @@ function formatGraphQLBuild(build) {
95
96
  return null;
96
97
  case generated_1.BuildStatus.Finished: {
97
98
  const url = build.artifacts?.buildUrl;
98
- return url ? url : chalk_1.default.red('not found');
99
+ return url ? (0, log_1.link)(url) : chalk_1.default.red('not found');
100
+ }
101
+ default:
102
+ return null;
103
+ }
104
+ },
105
+ },
106
+ {
107
+ label: 'Fingerprint',
108
+ get value() {
109
+ switch (build.status) {
110
+ case generated_1.BuildStatus.New:
111
+ case generated_1.BuildStatus.InQueue:
112
+ case generated_1.BuildStatus.InProgress:
113
+ return '<in progress>';
114
+ case generated_1.BuildStatus.PendingCancel:
115
+ case generated_1.BuildStatus.Canceled:
116
+ case generated_1.BuildStatus.Errored:
117
+ return null;
118
+ case generated_1.BuildStatus.Finished: {
119
+ const hash = build.fingerprint?.hash;
120
+ return hash ? chalk_1.default.green(hash) : chalk_1.default.red('not found');
99
121
  }
100
122
  default:
101
123
  return null;
@@ -1,6 +1,5 @@
1
1
  import EasCommand from '../../commandUtils/EasCommand';
2
2
  export default class ChannelDelete extends EasCommand {
3
- static hidden: boolean;
4
3
  static description: string;
5
4
  static args: {
6
5
  name: string;
@@ -11,7 +11,6 @@ const log_1 = tslib_1.__importDefault(require("../../log"));
11
11
  const prompts_1 = require("../../prompts");
12
12
  const json_1 = require("../../utils/json");
13
13
  class ChannelDelete extends EasCommand_1.default {
14
- static hidden = true;
15
14
  static description = 'Delete a channel';
16
15
  static args = [
17
16
  {
@@ -171,9 +171,9 @@ class EnvPush extends EasCommand_1.default {
171
171
  name,
172
172
  value,
173
173
  environments,
174
- visibility: name.startsWith('EXPO_SENSITIVE')
175
- ? generated_1.EnvironmentVariableVisibility.Sensitive
176
- : generated_1.EnvironmentVariableVisibility.Public,
174
+ visibility: name.startsWith('EXPO_PUBLIC_')
175
+ ? generated_1.EnvironmentVariableVisibility.Public
176
+ : generated_1.EnvironmentVariableVisibility.Sensitive,
177
177
  };
178
178
  }
179
179
  return pushInput;
@@ -71,7 +71,7 @@ class MetadataPull extends EasCommand_1.default {
71
71
  - Update the ${chalk_1.default.bold(relativePath)} file to prepare the app information.
72
72
  - Run ${chalk_1.default.bold('eas submit')} or manually upload a new app version to the app stores.
73
73
  - Once the app is uploaded, run ${chalk_1.default.bold('eas metadata:push')} to sync the store config.
74
- - ${(0, log_1.learnMore)('https://docs.expo.dev/eas-metadata/introduction/')}`);
74
+ - ${(0, log_1.learnMore)('https://docs.expo.dev/eas/metadata/')}`);
75
75
  }
76
76
  catch (error) {
77
77
  (0, errors_1.handleMetadataError)(error);
@@ -111,7 +111,7 @@ class SubmitInternal extends EasCommand_1.default {
111
111
  androidConfig,
112
112
  graphqlClient,
113
113
  }));
114
- const track = graphQlTrackToConfigTrack[androidConfig.track];
114
+ const track = graphQlTrackToConfigTrack[androidConfig.track] ?? androidConfig.track;
115
115
  const configInput = {
116
116
  changesNotSentForReview,
117
117
  googleServiceAccountKeyJson,
@@ -7,7 +7,7 @@ const roll_back_to_embedded_1 = tslib_1.__importDefault(require("./roll-back-to-
7
7
  const EasCommand_1 = tslib_1.__importDefault(require("../../commandUtils/EasCommand"));
8
8
  const prompts_1 = require("../../prompts");
9
9
  class UpdateRollback extends EasCommand_1.default {
10
- static description = 'roll back to an embedded update or an existing update';
10
+ static description = 'Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute "eas update:republish" or "eas update:roll-back-to-embedded".';
11
11
  static flags = {
12
12
  'private-key-path': core_1.Flags.string({
13
13
  description: `File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named "private-key.pem" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/`,
@@ -156,7 +156,7 @@ async function generateDistributionCertificateAsync(ctx) {
156
156
  throw new Error("Start the CLI without the '--non-interactive' flag to revoke existing certificates.");
157
157
  }
158
158
  log_1.default.log(chalk_1.default.grey(`✅ Distribution Certificates can be revoked with no side effects for App Store builds.`));
159
- log_1.default.log((0, log_1.learnMore)('https://docs.expo.dev/distribution/app-signing/#summary'));
159
+ log_1.default.log((0, log_1.learnMore)('https://docs.expo.dev/app-signing/app-credentials/#summary'));
160
160
  log_1.default.newLine();
161
161
  const { distCertsToRevoke } = await (0, prompts_1.promptAsync)({
162
162
  type: 'multiselect',
@@ -72,7 +72,7 @@ async function generatePushKeyAsync(ctx) {
72
72
  throw new Error("Start the CLI without the '--non-interactive' flag to revoke existing push notification keys.");
73
73
  }
74
74
  log_1.default.log(chalk_1.default.grey(`⚠️ Revoking a Push Key will affect other apps that rely on it`));
75
- log_1.default.log((0, log_1.learnMore)('https://docs.expo.dev/distribution/app-signing/#push-notification-keys'));
75
+ log_1.default.log((0, log_1.learnMore)('https://docs.expo.dev/app-signing/app-credentials/#push-notification-keys'));
76
76
  log_1.default.log();
77
77
  const { pushKeysToRevoke } = await (0, prompts_1.promptAsync)({
78
78
  type: 'multiselect',
@@ -197,6 +197,8 @@ export type Account = {
197
197
  sentryInstallation?: Maybe<SentryInstallation>;
198
198
  /** Snacks associated with this account */
199
199
  snacks: Array<Snack>;
200
+ /** Allowed SSO providers for this account */
201
+ ssoAllowedAuthProviders: Array<AuthProviderIdentifier>;
200
202
  /** SSO configuration for this account */
201
203
  ssoConfiguration?: Maybe<AccountSsoConfiguration>;
202
204
  /** Subscription info visible to members that have VIEWER role */
@@ -637,6 +639,8 @@ export type AccountSsoConfigurationMutation = {
637
639
  deleteAccountSSOConfiguration: DeleteAccountSsoConfigurationResult;
638
640
  /** Update an AccountSSOConfiguration */
639
641
  updateAccountSSOConfiguration: AccountSsoConfiguration;
642
+ /** Update just the client secret of an AccountSSOConfiguration */
643
+ updateAccountSSOConfigurationClientSecret: AccountSsoConfiguration;
640
644
  };
641
645
  export type AccountSsoConfigurationMutationCreateAccountSsoConfigurationArgs = {
642
646
  accountId: Scalars['ID']['input'];
@@ -649,6 +653,10 @@ export type AccountSsoConfigurationMutationUpdateAccountSsoConfigurationArgs = {
649
653
  accountSSOConfigurationData: AccountSsoConfigurationData;
650
654
  id: Scalars['ID']['input'];
651
655
  };
656
+ export type AccountSsoConfigurationMutationUpdateAccountSsoConfigurationClientSecretArgs = {
657
+ clientSecret: Scalars['String']['input'];
658
+ id: Scalars['ID']['input'];
659
+ };
652
660
  /** Public auth configuration data for an SSO account. */
653
661
  export type AccountSsoConfigurationPublicData = {
654
662
  __typename?: 'AccountSSOConfigurationPublicData';
@@ -2348,6 +2356,7 @@ export declare enum AuthProtocolType {
2348
2356
  Oidc = "OIDC"
2349
2357
  }
2350
2358
  export declare enum AuthProviderIdentifier {
2359
+ AmazonFederate = "AMAZON_FEDERATE",
2351
2360
  Generic = "GENERIC",
2352
2361
  GoogleWs = "GOOGLE_WS",
2353
2362
  MsEntraId = "MS_ENTRA_ID",
@@ -2499,6 +2508,7 @@ export type Build = ActivityTimelineProjectActivity & BuildOrBuildJob & {
2499
2508
  /** @deprecated Use 'runtime' field instead. */
2500
2509
  runtimeVersion?: Maybe<Scalars['String']['output']>;
2501
2510
  sdkVersion?: Maybe<Scalars['String']['output']>;
2511
+ /** @deprecated Check logs instead. */
2502
2512
  selectedImage?: Maybe<Scalars['String']['output']>;
2503
2513
  status: BuildStatus;
2504
2514
  submissions: Array<Submission>;
@@ -2665,6 +2675,7 @@ export type BuildMetadataInput = {
2665
2675
  iosEnterpriseProvisioning?: InputMaybe<BuildIosEnterpriseProvisioning>;
2666
2676
  isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']['input']>;
2667
2677
  message?: InputMaybe<Scalars['String']['input']>;
2678
+ projectMetadataFile?: InputMaybe<ProjectMetadataFileInput>;
2668
2679
  reactNativeVersion?: InputMaybe<Scalars['String']['input']>;
2669
2680
  releaseChannel?: InputMaybe<Scalars['String']['input']>;
2670
2681
  requiredPackageManager?: InputMaybe<Scalars['String']['input']>;
@@ -2672,7 +2683,6 @@ export type BuildMetadataInput = {
2672
2683
  runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']['input']>;
2673
2684
  runtimeVersion?: InputMaybe<Scalars['String']['input']>;
2674
2685
  sdkVersion?: InputMaybe<Scalars['String']['input']>;
2675
- selectedImage?: InputMaybe<Scalars['String']['input']>;
2676
2686
  simulator?: InputMaybe<Scalars['Boolean']['input']>;
2677
2687
  trackingContext?: InputMaybe<Scalars['JSONObject']['input']>;
2678
2688
  username?: InputMaybe<Scalars['String']['input']>;
@@ -3178,6 +3188,10 @@ export declare enum CustomDomainStatus {
3178
3188
  Pending = "PENDING",
3179
3189
  TimedOut = "TIMED_OUT"
3180
3190
  }
3191
+ export declare enum DashboardViewPin {
3192
+ Activity = "ACTIVITY",
3193
+ Overview = "OVERVIEW"
3194
+ }
3181
3195
  export type DatasetTimespan = {
3182
3196
  end: Scalars['DateTime']['input'];
3183
3197
  start: Scalars['DateTime']['input'];
@@ -3305,8 +3319,6 @@ export type Deployment = {
3305
3319
  builds: DeploymentBuildsConnection;
3306
3320
  channel: UpdateChannel;
3307
3321
  id: Scalars['ID']['output'];
3308
- /** Deployment query field */
3309
- insights: DeploymentInsights;
3310
3322
  /** Ordered the same way as 'updateBranches' in UpdateChannel */
3311
3323
  latestUpdatesPerBranch: Array<LatestUpdateOnBranch>;
3312
3324
  runtime: Runtime;
@@ -3357,30 +3369,6 @@ export type DeploymentFilterInput = {
3357
3369
  channel?: InputMaybe<Scalars['String']['input']>;
3358
3370
  runtimeVersion?: InputMaybe<Scalars['String']['input']>;
3359
3371
  };
3360
- export type DeploymentInsights = {
3361
- __typename?: 'DeploymentInsights';
3362
- cumulativeMetricsOverTime: DeploymentCumulativeMetricsOverTimeData;
3363
- embeddedUpdateTotalUniqueUsers: Scalars['Int']['output'];
3364
- embeddedUpdateUniqueUsersOverTime: UniqueUsersOverTimeData;
3365
- id: Scalars['ID']['output'];
3366
- mostPopularUpdates: Array<Update>;
3367
- uniqueUsersOverTime: UniqueUsersOverTimeData;
3368
- };
3369
- export type DeploymentInsightsCumulativeMetricsOverTimeArgs = {
3370
- timespan: InsightsTimespan;
3371
- };
3372
- export type DeploymentInsightsEmbeddedUpdateTotalUniqueUsersArgs = {
3373
- timespan: InsightsTimespan;
3374
- };
3375
- export type DeploymentInsightsEmbeddedUpdateUniqueUsersOverTimeArgs = {
3376
- timespan: InsightsTimespan;
3377
- };
3378
- export type DeploymentInsightsMostPopularUpdatesArgs = {
3379
- timespan: InsightsTimespan;
3380
- };
3381
- export type DeploymentInsightsUniqueUsersOverTimeArgs = {
3382
- timespan: InsightsTimespan;
3383
- };
3384
3372
  export type DeploymentQuery = {
3385
3373
  __typename?: 'DeploymentQuery';
3386
3374
  /** Query a Deployment by ID */
@@ -4946,6 +4934,11 @@ export declare enum Permission {
4946
4934
  Publish = "PUBLISH",
4947
4935
  View = "VIEW"
4948
4936
  }
4937
+ export type PinnedDashboardView = {
4938
+ __typename?: 'PinnedDashboardView';
4939
+ account: Account;
4940
+ view: DashboardViewPin;
4941
+ };
4949
4942
  export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
4950
4943
  export type Project = {
4951
4944
  description: Scalars['String']['output'];
@@ -4973,6 +4966,10 @@ export declare enum ProjectArchiveSourceType {
4973
4966
  None = "NONE",
4974
4967
  Url = "URL"
4975
4968
  }
4969
+ export type ProjectMetadataFileInput = {
4970
+ bucketKey: Scalars['String']['input'];
4971
+ type: ProjectArchiveSourceType;
4972
+ };
4976
4973
  export type ProjectPublicData = {
4977
4974
  __typename?: 'ProjectPublicData';
4978
4975
  fullName: Scalars['String']['output'];
@@ -5250,6 +5247,8 @@ export type RootMutation = {
5250
5247
  /** Mutations that create, update, and delete pinned apps */
5251
5248
  userAppPins: UserAppPinMutation;
5252
5249
  userAuditLog: UserAuditLogMutation;
5250
+ /** Mutations that create, update, and delete pinned dashboard views */
5251
+ userDashboardViewPins: UserDashboardViewPinMutation;
5253
5252
  /** Mutations that create, delete, and accept UserInvitations */
5254
5253
  userInvitation: UserInvitationMutation;
5255
5254
  /** Mutations that create, delete, update Webhooks */
@@ -5412,6 +5411,7 @@ export type RootQueryUserByUsernameArgs = {
5412
5411
  export type Runtime = {
5413
5412
  __typename?: 'Runtime';
5414
5413
  app: App;
5414
+ buildCount: Scalars['Int']['output'];
5415
5415
  builds: AppBuildsConnection;
5416
5416
  createdAt: Scalars['DateTime']['output'];
5417
5417
  deployments: DeploymentsConnection;
@@ -5423,6 +5423,10 @@ export type Runtime = {
5423
5423
  updates: AppUpdatesConnection;
5424
5424
  version: Scalars['String']['output'];
5425
5425
  };
5426
+ export type RuntimeBuildCountArgs = {
5427
+ channel?: InputMaybe<Scalars['String']['input']>;
5428
+ statuses?: InputMaybe<Array<BuildStatus>>;
5429
+ };
5426
5430
  export type RuntimeBuildsArgs = {
5427
5431
  after?: InputMaybe<Scalars['String']['input']>;
5428
5432
  before?: InputMaybe<Scalars['String']['input']>;
@@ -5440,6 +5444,7 @@ export type RuntimeDeploymentsArgs = {
5440
5444
  export type RuntimeUpdatesArgs = {
5441
5445
  after?: InputMaybe<Scalars['String']['input']>;
5442
5446
  before?: InputMaybe<Scalars['String']['input']>;
5447
+ filter?: InputMaybe<RuntimeUpdatesFilterInput>;
5443
5448
  first?: InputMaybe<Scalars['Int']['input']>;
5444
5449
  last?: InputMaybe<Scalars['Int']['input']>;
5445
5450
  };
@@ -5463,6 +5468,7 @@ export type RuntimeFilterInput = {
5463
5468
  /** Only return runtimes shared with this branch */
5464
5469
  branchId?: InputMaybe<Scalars['String']['input']>;
5465
5470
  runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
5471
+ searchTerm?: InputMaybe<Scalars['String']['input']>;
5466
5472
  };
5467
5473
  export type RuntimeQuery = {
5468
5474
  __typename?: 'RuntimeQuery';
@@ -5472,6 +5478,9 @@ export type RuntimeQuery = {
5472
5478
  export type RuntimeQueryByIdArgs = {
5473
5479
  runtimeId: Scalars['ID']['input'];
5474
5480
  };
5481
+ export type RuntimeUpdatesFilterInput = {
5482
+ channel?: InputMaybe<Scalars['String']['input']>;
5483
+ };
5475
5484
  export type RuntimeWithLastActivity = {
5476
5485
  __typename?: 'RuntimeWithLastActivity';
5477
5486
  lastActivityPostgresSerialized: Scalars['String']['output'];
@@ -5527,6 +5536,7 @@ export type SsoUser = Actor & UserActor & {
5527
5536
  location?: Maybe<Scalars['String']['output']>;
5528
5537
  notificationSubscriptions: Array<NotificationSubscription>;
5529
5538
  pinnedApps: Array<App>;
5539
+ pinnedDashboardViews: Array<PinnedDashboardView>;
5530
5540
  preferences: UserPreferences;
5531
5541
  /** Associated accounts */
5532
5542
  primaryAccount: Account;
@@ -6155,6 +6165,7 @@ export type UpdateChannelRuntimeInsights = {
6155
6165
  uniqueUsersOverTime: UniqueUsersOverTimeData;
6156
6166
  };
6157
6167
  export type UpdateChannelRuntimeInsightsCumulativeMetricsOverTimeArgs = {
6168
+ runtimeVersion: Scalars['String']['input'];
6158
6169
  timespan: InsightsTimespan;
6159
6170
  };
6160
6171
  export type UpdateChannelRuntimeInsightsEmbeddedUpdateTotalUniqueUsersArgs = {
@@ -6407,6 +6418,7 @@ export type User = Actor & UserActor & {
6407
6418
  /** Pending UserInvitations for this user. Only resolves for the viewer. */
6408
6419
  pendingUserInvitations: Array<UserInvitation>;
6409
6420
  pinnedApps: Array<App>;
6421
+ pinnedDashboardViews: Array<PinnedDashboardView>;
6410
6422
  preferences: UserPreferences;
6411
6423
  /** Associated accounts */
6412
6424
  primaryAccount: Account;
@@ -6697,6 +6709,18 @@ export type UserAuditLogQueryByUserIdPaginatedArgs = {
6697
6709
  last?: InputMaybe<Scalars['Int']['input']>;
6698
6710
  userId: Scalars['ID']['input'];
6699
6711
  };
6712
+ export type UserDashboardViewPinMutation = {
6713
+ __typename?: 'UserDashboardViewPinMutation';
6714
+ pinDashboardView: PinnedDashboardView;
6715
+ unpinDashboardView?: Maybe<PinnedDashboardView>;
6716
+ };
6717
+ export type UserDashboardViewPinMutationPinDashboardViewArgs = {
6718
+ accountId: Scalars['ID']['input'];
6719
+ view: DashboardViewPin;
6720
+ };
6721
+ export type UserDashboardViewPinMutationUnpinDashboardViewArgs = {
6722
+ accountId: Scalars['ID']['input'];
6723
+ };
6700
6724
  export type UserDataInput = {
6701
6725
  email?: InputMaybe<Scalars['String']['input']>;
6702
6726
  firstName?: InputMaybe<Scalars['String']['input']>;
@@ -7463,6 +7487,7 @@ export declare enum WorkflowJobType {
7463
7487
  RequireApproval = "REQUIRE_APPROVAL",
7464
7488
  Slack = "SLACK",
7465
7489
  Submission = "SUBMISSION",
7490
+ Testflight = "TESTFLIGHT",
7466
7491
  Update = "UPDATE"
7467
7492
  }
7468
7493
  export type WorkflowProjectSourceInput = {
@@ -11489,6 +11514,11 @@ export type CreateAndroidBuildMutation = {
11489
11514
  applicationArchiveUrl?: string | null;
11490
11515
  buildArtifactsUrl?: string | null;
11491
11516
  } | null;
11517
+ fingerprint?: {
11518
+ __typename?: 'Fingerprint';
11519
+ id: string;
11520
+ hash: string;
11521
+ } | null;
11492
11522
  initiatingActor?: {
11493
11523
  __typename: 'Robot';
11494
11524
  id: string;
@@ -11583,6 +11613,11 @@ export type CreateIosBuildMutation = {
11583
11613
  applicationArchiveUrl?: string | null;
11584
11614
  buildArtifactsUrl?: string | null;
11585
11615
  } | null;
11616
+ fingerprint?: {
11617
+ __typename?: 'Fingerprint';
11618
+ id: string;
11619
+ hash: string;
11620
+ } | null;
11586
11621
  initiatingActor?: {
11587
11622
  __typename: 'Robot';
11588
11623
  id: string;
@@ -11673,6 +11708,11 @@ export type UpdateBuildMetadataMutation = {
11673
11708
  applicationArchiveUrl?: string | null;
11674
11709
  buildArtifactsUrl?: string | null;
11675
11710
  } | null;
11711
+ fingerprint?: {
11712
+ __typename?: 'Fingerprint';
11713
+ id: string;
11714
+ hash: string;
11715
+ } | null;
11676
11716
  initiatingActor?: {
11677
11717
  __typename: 'Robot';
11678
11718
  id: string;
@@ -11757,6 +11797,11 @@ export type RetryIosBuildMutation = {
11757
11797
  applicationArchiveUrl?: string | null;
11758
11798
  buildArtifactsUrl?: string | null;
11759
11799
  } | null;
11800
+ fingerprint?: {
11801
+ __typename?: 'Fingerprint';
11802
+ id: string;
11803
+ hash: string;
11804
+ } | null;
11760
11805
  initiatingActor?: {
11761
11806
  __typename: 'Robot';
11762
11807
  id: string;
@@ -12036,6 +12081,11 @@ export type CreateLocalBuildMutation = {
12036
12081
  applicationArchiveUrl?: string | null;
12037
12082
  buildArtifactsUrl?: string | null;
12038
12083
  } | null;
12084
+ fingerprint?: {
12085
+ __typename?: 'Fingerprint';
12086
+ id: string;
12087
+ hash: string;
12088
+ } | null;
12039
12089
  initiatingActor?: {
12040
12090
  __typename: 'Robot';
12041
12091
  id: string;
@@ -13006,6 +13056,11 @@ export type BuildsByIdQuery = {
13006
13056
  applicationArchiveUrl?: string | null;
13007
13057
  buildArtifactsUrl?: string | null;
13008
13058
  } | null;
13059
+ fingerprint?: {
13060
+ __typename?: 'Fingerprint';
13061
+ id: string;
13062
+ hash: string;
13063
+ } | null;
13009
13064
  initiatingActor?: {
13010
13065
  __typename: 'Robot';
13011
13066
  id: string;
@@ -13124,6 +13179,11 @@ export type BuildsWithSubmissionsByIdQuery = {
13124
13179
  applicationArchiveUrl?: string | null;
13125
13180
  buildArtifactsUrl?: string | null;
13126
13181
  } | null;
13182
+ fingerprint?: {
13183
+ __typename?: 'Fingerprint';
13184
+ id: string;
13185
+ hash: string;
13186
+ } | null;
13127
13187
  initiatingActor?: {
13128
13188
  __typename: 'Robot';
13129
13189
  id: string;
@@ -13324,6 +13384,11 @@ export type ViewBuildsOnAppQuery = {
13324
13384
  applicationArchiveUrl?: string | null;
13325
13385
  buildArtifactsUrl?: string | null;
13326
13386
  } | null;
13387
+ fingerprint?: {
13388
+ __typename?: 'Fingerprint';
13389
+ id: string;
13390
+ hash: string;
13391
+ } | null;
13327
13392
  initiatingActor?: {
13328
13393
  __typename: 'Robot';
13329
13394
  id: string;
@@ -14853,6 +14918,11 @@ export type BuildFragment = {
14853
14918
  applicationArchiveUrl?: string | null;
14854
14919
  buildArtifactsUrl?: string | null;
14855
14920
  } | null;
14921
+ fingerprint?: {
14922
+ __typename?: 'Fingerprint';
14923
+ id: string;
14924
+ hash: string;
14925
+ } | null;
14856
14926
  initiatingActor?: {
14857
14927
  __typename: 'Robot';
14858
14928
  id: string;
@@ -14962,6 +15032,11 @@ export type BuildWithSubmissionsFragment = {
14962
15032
  applicationArchiveUrl?: string | null;
14963
15033
  buildArtifactsUrl?: string | null;
14964
15034
  } | null;
15035
+ fingerprint?: {
15036
+ __typename?: 'Fingerprint';
15037
+ id: string;
15038
+ hash: string;
15039
+ } | null;
14965
15040
  initiatingActor?: {
14966
15041
  __typename: 'Robot';
14967
15042
  id: string;
@@ -6,9 +6,9 @@
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.EnvironmentVariableVisibility = exports.EnvironmentVariableScope = exports.EnvironmentVariableEnvironment = exports.EnvironmentSecretType = exports.EntityTypeName = exports.EasTotalPlanEnablementUnit = exports.EasServiceMetric = exports.EasService = exports.EasBuildWaiverType = exports.EasBuildDeprecationInfoType = exports.EasBuildBillingResourceClass = exports.DistributionType = exports.CustomDomainStatus = exports.CustomDomainDnsRecordType = exports.CrashSampleFor = exports.ContinentCode = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildRetryDisabledReason = exports.BuildResourceClass = exports.BuildPriority = exports.BuildPhase = exports.BuildMode = exports.BuildLimitThresholdExceededMetadataType = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.BuildAnnotationType = exports.BackgroundJobState = exports.BackgroundJobResultType = exports.AuthProviderIdentifier = exports.AuthProtocolType = exports.AuditLogsExportFormat = exports.AssetMetadataStatus = exports.AssetMapSourceType = exports.AppsFilter = exports.AppleTeamType = exports.AppleDeviceClass = exports.AppUploadSessionType = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppPrivacy = exports.AppPlatform = exports.AppInternalDistributionBuildPrivacy = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = exports.AccountUploadSessionType = exports.AccountAppsSortByField = void 0;
10
- exports.SubmissionPriority = exports.SubmissionArchiveSourceType = exports.SubmissionAndroidTrack = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ResponseType = exports.ResponseStatusType = exports.ResponseCacheStatus = exports.ResourceClassExperiment = exports.RequestsOrderByField = exports.RequestsOrderByDirection = exports.RequestMethod = exports.ProjectArchiveSourceType = exports.Permission = exports.Order = exports.OnboardingEnvironment = exports.OnboardingDeviceType = exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.LocalBuildArchiveSourceType = exports.JobRunStatus = exports.JobRunPriority = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.InsightsFilterType = exports.GitHubJobRunTriggerType = exports.GitHubJobRunTriggerRunStatus = exports.GitHubJobRunJobType = exports.GitHubBuildTriggerType = exports.GitHubBuildTriggerRunStatus = exports.GitHubBuildTriggerExecutionBehavior = exports.GitHubAppInstallationStatus = exports.GitHubAppInstallationAccountType = exports.GitHubAppEnvironment = exports.FingerprintSourceType = exports.Feature = exports.Experiment = void 0;
11
- exports.WorkflowRunTriggerEventType = exports.WorkflowRunStatus = exports.WorkflowProjectSourceType = exports.WorkflowJobType = exports.WorkflowJobStatus = exports.WorkflowJobReviewDecision = exports.WorkflowArtifactStorageType = exports.WorkerLoggerLevel = exports.WorkerDeploymentLogLevel = exports.WorkerDeploymentCrashKind = exports.WebhookType = exports.UserEntityTypeName = exports.UserAgentPlatform = exports.UserAgentOs = exports.UserAgentBrowser = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.TargetEntityMutationType = exports.SubmissionStatus = void 0;
9
+ exports.EnvironmentVariableScope = exports.EnvironmentVariableEnvironment = exports.EnvironmentSecretType = exports.EntityTypeName = exports.EasTotalPlanEnablementUnit = exports.EasServiceMetric = exports.EasService = exports.EasBuildWaiverType = exports.EasBuildDeprecationInfoType = exports.EasBuildBillingResourceClass = exports.DistributionType = exports.DashboardViewPin = exports.CustomDomainStatus = exports.CustomDomainDnsRecordType = exports.CrashSampleFor = exports.ContinentCode = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildRetryDisabledReason = exports.BuildResourceClass = exports.BuildPriority = exports.BuildPhase = exports.BuildMode = exports.BuildLimitThresholdExceededMetadataType = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.BuildAnnotationType = exports.BackgroundJobState = exports.BackgroundJobResultType = exports.AuthProviderIdentifier = exports.AuthProtocolType = exports.AuditLogsExportFormat = exports.AssetMetadataStatus = exports.AssetMapSourceType = exports.AppsFilter = exports.AppleTeamType = exports.AppleDeviceClass = exports.AppUploadSessionType = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppPrivacy = exports.AppPlatform = exports.AppInternalDistributionBuildPrivacy = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = exports.AccountUploadSessionType = exports.AccountAppsSortByField = void 0;
10
+ exports.SubmissionArchiveSourceType = exports.SubmissionAndroidTrack = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ResponseType = exports.ResponseStatusType = exports.ResponseCacheStatus = exports.ResourceClassExperiment = exports.RequestsOrderByField = exports.RequestsOrderByDirection = exports.RequestMethod = exports.ProjectArchiveSourceType = exports.Permission = exports.Order = exports.OnboardingEnvironment = exports.OnboardingDeviceType = exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.LocalBuildArchiveSourceType = exports.JobRunStatus = exports.JobRunPriority = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.InsightsFilterType = exports.GitHubJobRunTriggerType = exports.GitHubJobRunTriggerRunStatus = exports.GitHubJobRunJobType = exports.GitHubBuildTriggerType = exports.GitHubBuildTriggerRunStatus = exports.GitHubBuildTriggerExecutionBehavior = exports.GitHubAppInstallationStatus = exports.GitHubAppInstallationAccountType = exports.GitHubAppEnvironment = exports.FingerprintSourceType = exports.Feature = exports.Experiment = exports.EnvironmentVariableVisibility = void 0;
11
+ exports.WorkflowRunTriggerEventType = exports.WorkflowRunStatus = exports.WorkflowProjectSourceType = exports.WorkflowJobType = exports.WorkflowJobStatus = exports.WorkflowJobReviewDecision = exports.WorkflowArtifactStorageType = exports.WorkerLoggerLevel = exports.WorkerDeploymentLogLevel = exports.WorkerDeploymentCrashKind = exports.WebhookType = exports.UserEntityTypeName = exports.UserAgentPlatform = exports.UserAgentOs = exports.UserAgentBrowser = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.TargetEntityMutationType = exports.SubmissionStatus = exports.SubmissionPriority = void 0;
12
12
  var AccountAppsSortByField;
13
13
  (function (AccountAppsSortByField) {
14
14
  AccountAppsSortByField["LatestActivityTime"] = "LATEST_ACTIVITY_TIME";
@@ -136,6 +136,7 @@ var AuthProtocolType;
136
136
  })(AuthProtocolType || (exports.AuthProtocolType = AuthProtocolType = {}));
137
137
  var AuthProviderIdentifier;
138
138
  (function (AuthProviderIdentifier) {
139
+ AuthProviderIdentifier["AmazonFederate"] = "AMAZON_FEDERATE";
139
140
  AuthProviderIdentifier["Generic"] = "GENERIC";
140
141
  AuthProviderIdentifier["GoogleWs"] = "GOOGLE_WS";
141
142
  AuthProviderIdentifier["MsEntraId"] = "MS_ENTRA_ID";
@@ -316,6 +317,11 @@ var CustomDomainStatus;
316
317
  CustomDomainStatus["Pending"] = "PENDING";
317
318
  CustomDomainStatus["TimedOut"] = "TIMED_OUT";
318
319
  })(CustomDomainStatus || (exports.CustomDomainStatus = CustomDomainStatus = {}));
320
+ var DashboardViewPin;
321
+ (function (DashboardViewPin) {
322
+ DashboardViewPin["Activity"] = "ACTIVITY";
323
+ DashboardViewPin["Overview"] = "OVERVIEW";
324
+ })(DashboardViewPin || (exports.DashboardViewPin = DashboardViewPin = {}));
319
325
  var DistributionType;
320
326
  (function (DistributionType) {
321
327
  DistributionType["Internal"] = "INTERNAL";
@@ -905,6 +911,7 @@ var WorkflowJobType;
905
911
  WorkflowJobType["RequireApproval"] = "REQUIRE_APPROVAL";
906
912
  WorkflowJobType["Slack"] = "SLACK";
907
913
  WorkflowJobType["Submission"] = "SUBMISSION";
914
+ WorkflowJobType["Testflight"] = "TESTFLIGHT";
908
915
  WorkflowJobType["Update"] = "UPDATE";
909
916
  })(WorkflowJobType || (exports.WorkflowJobType = WorkflowJobType = {}));
910
917
  var WorkflowProjectSourceType;
@@ -22,6 +22,10 @@ exports.BuildFragmentNode = (0, graphql_tag_1.default) `
22
22
  applicationArchiveUrl
23
23
  buildArtifactsUrl
24
24
  }
25
+ fingerprint {
26
+ id
27
+ hash
28
+ }
25
29
  initiatingActor {
26
30
  __typename
27
31
  id
package/build/log.js CHANGED
@@ -7,6 +7,8 @@ const figures_1 = tslib_1.__importDefault(require("figures"));
7
7
  const getenv_1 = require("getenv");
8
8
  const log_symbols_1 = tslib_1.__importDefault(require("log-symbols"));
9
9
  const terminal_link_1 = tslib_1.__importDefault(require("terminal-link"));
10
+ // eslint-disable-next-line import/no-extraneous-dependencies
11
+ const nodeDebug = require('debug')('eas:log:debug');
10
12
  class Log {
11
13
  static isDebug = (0, getenv_1.boolish)('EXPO_DEBUG', false);
12
14
  static log(...args) {
@@ -30,6 +32,9 @@ class Log {
30
32
  if (Log.isDebug) {
31
33
  Log.consoleLog(...args);
32
34
  }
35
+ else {
36
+ nodeDebug(args);
37
+ }
33
38
  }
34
39
  static gray(...args) {
35
40
  Log.consoleLog(...Log.withTextColor(args, chalk_1.default.gray));
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.17.4",
2
+ "version": "16.18.1",
3
3
  "commands": {
4
4
  "analytics": {
5
5
  "id": "analytics",
@@ -1505,7 +1505,6 @@
1505
1505
  "pluginName": "eas-cli",
1506
1506
  "pluginAlias": "eas-cli",
1507
1507
  "pluginType": "core",
1508
- "hidden": true,
1509
1508
  "aliases": [],
1510
1509
  "flags": {
1511
1510
  "json": {
@@ -3881,7 +3880,7 @@
3881
3880
  },
3882
3881
  "update:rollback": {
3883
3882
  "id": "update:rollback",
3884
- "description": "roll back to an embedded update or an existing update",
3883
+ "description": "Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute \"eas update:republish\" or \"eas update:roll-back-to-embedded\".",
3885
3884
  "strict": true,
3886
3885
  "pluginName": "eas-cli",
3887
3886
  "pluginAlias": "eas-cli",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "16.17.4",
4
+ "version": "16.18.1",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -13,7 +13,7 @@
13
13
  "@expo/config": "10.0.6",
14
14
  "@expo/config-plugins": "9.0.12",
15
15
  "@expo/eas-build-job": "1.0.173",
16
- "@expo/eas-json": "16.13.2",
16
+ "@expo/eas-json": "16.18.0",
17
17
  "@expo/env": "^1.0.0",
18
18
  "@expo/json-file": "8.3.3",
19
19
  "@expo/logger": "1.0.117",
@@ -241,5 +241,5 @@
241
241
  "node": "20.11.0",
242
242
  "yarn": "1.22.21"
243
243
  },
244
- "gitHead": "e6ce9837e6694010796f3f249c537640b98f9ab1"
244
+ "gitHead": "20da7f877845725584f5d1c337006825bebe6e85"
245
245
  }