eas-cli 16.26.0 → 16.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -87
- package/build/branch/delete.d.ts +5 -0
- package/build/branch/delete.js +24 -0
- package/build/build/context.d.ts +1 -0
- package/build/build/createContext.js +1 -0
- package/build/build/runBuildAndSubmit.js +10 -0
- package/build/commandUtils/new/configs.js +7 -4
- package/build/commands/branch/delete.js +6 -20
- package/build/commands/build/index.js +0 -8
- package/build/commands/env/update.js +17 -9
- package/build/commands/update/index.js +3 -0
- package/build/commands/workflow/run.js +3 -1
- package/build/commands/workflow/status.js +1 -1
- package/build/graphql/generated.d.ts +330 -15
- package/build/graphql/generated.js +12 -1
- package/build/graphql/queries/AssetQuery.d.ts +5 -0
- package/build/graphql/queries/AssetQuery.js +27 -0
- package/build/graphql/queries/BranchQuery.d.ts +8 -0
- package/build/graphql/queries/BranchQuery.js +19 -8
- package/build/project/publish.d.ts +2 -4
- package/build/project/publish.js +2 -6
- package/build/update/queries.d.ts +1 -1
- package/build/update/republish.d.ts +1 -1
- package/build/update/roll-back-to-embedded.d.ts +1 -1
- package/build/update/utils.d.ts +6 -1
- package/build/update/utils.js +69 -1
- package/build/utils/usage/checkForOverages.js +0 -1
- package/oclif.manifest.json +1 -1
- package/package.json +5 -4
|
@@ -201,6 +201,7 @@ export type Account = {
|
|
|
201
201
|
pendingSentryInstallation?: Maybe<PendingSentryInstallation>;
|
|
202
202
|
profileImageUrl: Scalars['String']['output'];
|
|
203
203
|
pushSecurityEnabled: Scalars['Boolean']['output'];
|
|
204
|
+
requireTwoFactor: Scalars['Boolean']['output'];
|
|
204
205
|
/** @deprecated Legacy access tokens are deprecated */
|
|
205
206
|
requiresAccessTokenForPushSecurity: Scalars['Boolean']['output'];
|
|
206
207
|
sentryInstallation?: Maybe<SentryInstallation>;
|
|
@@ -228,8 +229,11 @@ export type Account = {
|
|
|
228
229
|
userActorOwner?: Maybe<UserActor>;
|
|
229
230
|
/** Pending user invitations for this account */
|
|
230
231
|
userInvitations: Array<UserInvitation>;
|
|
232
|
+
userSpecifiedAccountUsage?: Maybe<UserSpecifiedAccountUsage>;
|
|
231
233
|
/** Actors associated with this account and permissions they hold */
|
|
232
234
|
users: Array<UserPermission>;
|
|
235
|
+
/** Vexo account connection for this account */
|
|
236
|
+
vexoAccountConnection?: Maybe<VexoAccountConnection>;
|
|
233
237
|
/** Notification preferences of the viewer for this account */
|
|
234
238
|
viewerNotificationPreferences: Array<NotificationPreferenceItem>;
|
|
235
239
|
/** Permission info for the viewer on this account */
|
|
@@ -522,6 +526,7 @@ export declare enum AccountAppsSortByField {
|
|
|
522
526
|
export type AccountDataInput = {
|
|
523
527
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
524
528
|
name: Scalars['String']['input'];
|
|
529
|
+
userSpecifiedAccountUsage?: InputMaybe<UserSpecifiedAccountUsage>;
|
|
525
530
|
};
|
|
526
531
|
export type AccountGoogleServiceAccountKeysConnection = {
|
|
527
532
|
__typename?: 'AccountGoogleServiceAccountKeysConnection';
|
|
@@ -557,6 +562,15 @@ export type AccountMutation = {
|
|
|
557
562
|
setDisplayName: Account;
|
|
558
563
|
/** Require authorization to send push notifications for experiences owned by this account */
|
|
559
564
|
setPushSecurityEnabled: Account;
|
|
565
|
+
/**
|
|
566
|
+
* Set whether two-factor authentication is required for this account. When enabled:
|
|
567
|
+
* - Existing members with 2FA cannot disable it
|
|
568
|
+
* - New members must enable 2FA before joining
|
|
569
|
+
* - Existing members without 2FA are not affected
|
|
570
|
+
*/
|
|
571
|
+
setRequireTwoFactor: Account;
|
|
572
|
+
/** Set the user specified account usage for the account. */
|
|
573
|
+
setUserSpecifiedAccountUsage: Account;
|
|
560
574
|
};
|
|
561
575
|
export type AccountMutationCancelAllSubscriptionsImmediatelyArgs = {
|
|
562
576
|
accountID: Scalars['ID']['input'];
|
|
@@ -604,6 +618,14 @@ export type AccountMutationSetPushSecurityEnabledArgs = {
|
|
|
604
618
|
accountID: Scalars['ID']['input'];
|
|
605
619
|
pushSecurityEnabled: Scalars['Boolean']['input'];
|
|
606
620
|
};
|
|
621
|
+
export type AccountMutationSetRequireTwoFactorArgs = {
|
|
622
|
+
accountID: Scalars['ID']['input'];
|
|
623
|
+
requireTwoFactor: Scalars['Boolean']['input'];
|
|
624
|
+
};
|
|
625
|
+
export type AccountMutationSetUserSpecifiedAccountUsageArgs = {
|
|
626
|
+
accountID: Scalars['ID']['input'];
|
|
627
|
+
userSpecifiedAccountUsage: UserSpecifiedAccountUsage;
|
|
628
|
+
};
|
|
607
629
|
/** Account-level notification preference */
|
|
608
630
|
export type AccountNotificationPreference = NotificationPreference & {
|
|
609
631
|
__typename?: 'AccountNotificationPreference';
|
|
@@ -1139,6 +1161,7 @@ export type App = Project & {
|
|
|
1139
1161
|
appStoreUrl?: Maybe<Scalars['String']['output']>;
|
|
1140
1162
|
assetLimitPerUpdateGroup: Scalars['Int']['output'];
|
|
1141
1163
|
branchesPaginated: AppBranchesConnection;
|
|
1164
|
+
buildProfiles: Array<Scalars['String']['output']>;
|
|
1142
1165
|
/** (EAS Build) Builds associated with this app */
|
|
1143
1166
|
builds: Array<Build>;
|
|
1144
1167
|
buildsPaginated: AppBuildsConnection;
|
|
@@ -1286,6 +1309,7 @@ export type App = Project & {
|
|
|
1286
1309
|
username: Scalars['String']['output'];
|
|
1287
1310
|
/** @deprecated No longer supported */
|
|
1288
1311
|
users?: Maybe<Array<Maybe<User>>>;
|
|
1312
|
+
vexoApp?: Maybe<VexoApp>;
|
|
1289
1313
|
/** Notification preferences of the viewer for this app */
|
|
1290
1314
|
viewerNotificationPreferences: Array<NotificationPreferenceItem>;
|
|
1291
1315
|
/** Webhooks for an app */
|
|
@@ -1302,6 +1326,7 @@ export type App = Project & {
|
|
|
1302
1326
|
workflowRunGitBranchesPaginated: AppWorkflowRunGitBranchesConnection;
|
|
1303
1327
|
workflowRunsPaginated: AppWorkflowRunsConnection;
|
|
1304
1328
|
workflows: Array<Workflow>;
|
|
1329
|
+
workflowsInsights: AppWorkflowsInsights;
|
|
1305
1330
|
};
|
|
1306
1331
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1307
1332
|
export type AppActivityTimelineProjectActivitiesArgs = {
|
|
@@ -1948,6 +1973,7 @@ export type AppWorkflowRunEdge = {
|
|
|
1948
1973
|
export type AppWorkflowRunFilterInput = {
|
|
1949
1974
|
requestedGitRef?: InputMaybe<Scalars['String']['input']>;
|
|
1950
1975
|
status?: InputMaybe<WorkflowRunStatus>;
|
|
1976
|
+
timeRange?: InputMaybe<WorkflowRunTimeRangeInput>;
|
|
1951
1977
|
};
|
|
1952
1978
|
export type AppWorkflowRunGitBranchEdge = {
|
|
1953
1979
|
__typename?: 'AppWorkflowRunGitBranchEdge';
|
|
@@ -1964,11 +1990,36 @@ export type AppWorkflowRunGitBranchesConnection = {
|
|
|
1964
1990
|
edges: Array<AppWorkflowRunGitBranchEdge>;
|
|
1965
1991
|
pageInfo: PageInfo;
|
|
1966
1992
|
};
|
|
1993
|
+
export type AppWorkflowRunTimeRangeInput = {
|
|
1994
|
+
earliest?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1995
|
+
latest?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1996
|
+
};
|
|
1967
1997
|
export type AppWorkflowRunsConnection = {
|
|
1968
1998
|
__typename?: 'AppWorkflowRunsConnection';
|
|
1969
1999
|
edges: Array<AppWorkflowRunEdge>;
|
|
1970
2000
|
pageInfo: PageInfo;
|
|
1971
2001
|
};
|
|
2002
|
+
export type AppWorkflowsInsights = {
|
|
2003
|
+
__typename?: 'AppWorkflowsInsights';
|
|
2004
|
+
overviewMetrics: WorkflowsInsightsOverviewMetrics;
|
|
2005
|
+
runsOverTime: WorkflowsInsightsRunsOverTimeData;
|
|
2006
|
+
workflows: WorkflowsInsightsWorkflowConnection;
|
|
2007
|
+
};
|
|
2008
|
+
export type AppWorkflowsInsightsOverviewMetricsArgs = {
|
|
2009
|
+
filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
|
|
2010
|
+
timespan: WorkflowsInsightsTimespanInput;
|
|
2011
|
+
};
|
|
2012
|
+
export type AppWorkflowsInsightsRunsOverTimeArgs = {
|
|
2013
|
+
filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
|
|
2014
|
+
granularity: WorkflowsInsightsRunsOverTimeGranularity;
|
|
2015
|
+
timespan: WorkflowsInsightsTimespanInput;
|
|
2016
|
+
};
|
|
2017
|
+
export type AppWorkflowsInsightsWorkflowsArgs = {
|
|
2018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2019
|
+
filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
|
|
2020
|
+
first: Scalars['Int']['input'];
|
|
2021
|
+
timespan: WorkflowsInsightsTimespanInput;
|
|
2022
|
+
};
|
|
1972
2023
|
export type AppleAppIdentifier = {
|
|
1973
2024
|
__typename?: 'AppleAppIdentifier';
|
|
1974
2025
|
account: Account;
|
|
@@ -2674,6 +2725,8 @@ export type BuildFilter = {
|
|
|
2674
2725
|
status?: InputMaybe<BuildStatus>;
|
|
2675
2726
|
};
|
|
2676
2727
|
export type BuildFilterInput = {
|
|
2728
|
+
buildModes?: InputMaybe<Array<BuildMode>>;
|
|
2729
|
+
buildProfile?: InputMaybe<Scalars['String']['input']>;
|
|
2677
2730
|
channel?: InputMaybe<Scalars['String']['input']>;
|
|
2678
2731
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2679
2732
|
distributions?: InputMaybe<Array<DistributionType>>;
|
|
@@ -3155,6 +3208,19 @@ export type CreateSubmissionResult = {
|
|
|
3155
3208
|
/** Created submission */
|
|
3156
3209
|
submission: Submission;
|
|
3157
3210
|
};
|
|
3211
|
+
export type CreateVexoAccountConnectionInput = {
|
|
3212
|
+
accountId: Scalars['ID']['input'];
|
|
3213
|
+
code: Scalars['String']['input'];
|
|
3214
|
+
};
|
|
3215
|
+
export type CreateVexoAppInput = {
|
|
3216
|
+
appId: Scalars['ID']['input'];
|
|
3217
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
3218
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
3219
|
+
name: Scalars['String']['input'];
|
|
3220
|
+
owner: Scalars['String']['input'];
|
|
3221
|
+
slug: Scalars['String']['input'];
|
|
3222
|
+
vexoIdentifier: Scalars['String']['input'];
|
|
3223
|
+
};
|
|
3158
3224
|
export type CumulativeAverageMetrics = {
|
|
3159
3225
|
__typename?: 'CumulativeAverageMetrics';
|
|
3160
3226
|
averageUpdatePayloadBytes: Scalars['Int']['output'];
|
|
@@ -5323,6 +5389,12 @@ export type RootMutation = {
|
|
|
5323
5389
|
userDashboardViewPins: UserDashboardViewPinMutation;
|
|
5324
5390
|
/** Mutations that create, delete, and accept UserInvitations */
|
|
5325
5391
|
userInvitation: UserInvitationMutation;
|
|
5392
|
+
/** Mutation interface for user preferences */
|
|
5393
|
+
userPreference: UserPreferenceMutation;
|
|
5394
|
+
/** Mutations for Vexo account connections */
|
|
5395
|
+
vexoAccountConnection: VexoAccountConnectionMutation;
|
|
5396
|
+
/** Mutations for Vexo apps */
|
|
5397
|
+
vexoApp: VexoAppMutation;
|
|
5326
5398
|
/** Mutations that create, delete, update Webhooks */
|
|
5327
5399
|
webhook: WebhookMutation;
|
|
5328
5400
|
/** Mutations that modify a websiteNotification */
|
|
@@ -5448,6 +5520,10 @@ export type RootQuery = {
|
|
|
5448
5520
|
userByUsername?: Maybe<User>;
|
|
5449
5521
|
/** Top-level query object for querying UserInvitationPublicData publicly. */
|
|
5450
5522
|
userInvitationPublicData: UserInvitationPublicDataQuery;
|
|
5523
|
+
/** Query interface for user preferences */
|
|
5524
|
+
userPreference: UserPreferenceQuery;
|
|
5525
|
+
/** Top-level query object for querying Vexo Integration information. */
|
|
5526
|
+
vexoIntegration: VexoIntegrationQuery;
|
|
5451
5527
|
/**
|
|
5452
5528
|
* If authenticated as a typical end user, this is the appropriate top-level
|
|
5453
5529
|
* query object
|
|
@@ -6114,6 +6190,7 @@ export type UpdateBranch = {
|
|
|
6114
6190
|
name: Scalars['String']['output'];
|
|
6115
6191
|
runtimes: RuntimesConnection;
|
|
6116
6192
|
updateGroups: Array<Array<Update>>;
|
|
6193
|
+
updateGroupsPaginated: UpdateGroupsConnection;
|
|
6117
6194
|
updatedAt: Scalars['DateTime']['output'];
|
|
6118
6195
|
updates: Array<Update>;
|
|
6119
6196
|
};
|
|
@@ -6129,6 +6206,13 @@ export type UpdateBranchUpdateGroupsArgs = {
|
|
|
6129
6206
|
limit: Scalars['Int']['input'];
|
|
6130
6207
|
offset: Scalars['Int']['input'];
|
|
6131
6208
|
};
|
|
6209
|
+
export type UpdateBranchUpdateGroupsPaginatedArgs = {
|
|
6210
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6211
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
6212
|
+
filter?: InputMaybe<UpdatesFilterV2>;
|
|
6213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6214
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6215
|
+
};
|
|
6132
6216
|
export type UpdateBranchUpdatesArgs = {
|
|
6133
6217
|
filter?: InputMaybe<UpdatesFilter>;
|
|
6134
6218
|
limit: Scalars['Int']['input'];
|
|
@@ -6138,7 +6222,10 @@ export type UpdateBranchMutation = {
|
|
|
6138
6222
|
__typename?: 'UpdateBranchMutation';
|
|
6139
6223
|
/** Create an EAS branch for an app */
|
|
6140
6224
|
createUpdateBranchForApp: UpdateBranch;
|
|
6141
|
-
/**
|
|
6225
|
+
/**
|
|
6226
|
+
* Delete an EAS branch and all of its updates as long as the branch is not being used by any channels
|
|
6227
|
+
* @deprecated Use scheduleUpdateBranchDeletion instead
|
|
6228
|
+
*/
|
|
6142
6229
|
deleteUpdateBranch: DeleteUpdateBranchResult;
|
|
6143
6230
|
/**
|
|
6144
6231
|
* Edit an EAS branch. The branch can be specified either by its ID or
|
|
@@ -6147,6 +6234,8 @@ export type UpdateBranchMutation = {
|
|
|
6147
6234
|
editUpdateBranch: UpdateBranch;
|
|
6148
6235
|
/** Publish an update group to a branch */
|
|
6149
6236
|
publishUpdateGroups: Array<Update>;
|
|
6237
|
+
/** Delete an EAS branch and all of its updates in the background */
|
|
6238
|
+
scheduleUpdateBranchDeletion: BackgroundJobReceipt;
|
|
6150
6239
|
};
|
|
6151
6240
|
export type UpdateBranchMutationCreateUpdateBranchForAppArgs = {
|
|
6152
6241
|
appId: Scalars['ID']['input'];
|
|
@@ -6161,6 +6250,9 @@ export type UpdateBranchMutationEditUpdateBranchArgs = {
|
|
|
6161
6250
|
export type UpdateBranchMutationPublishUpdateGroupsArgs = {
|
|
6162
6251
|
publishUpdateGroupsInput: Array<PublishUpdateGroupInput>;
|
|
6163
6252
|
};
|
|
6253
|
+
export type UpdateBranchMutationScheduleUpdateBranchDeletionArgs = {
|
|
6254
|
+
branchId: Scalars['ID']['input'];
|
|
6255
|
+
};
|
|
6164
6256
|
export type UpdateChannel = {
|
|
6165
6257
|
__typename?: 'UpdateChannel';
|
|
6166
6258
|
app: App;
|
|
@@ -6294,6 +6386,16 @@ export type UpdateGitHubJobRunTriggerInput = {
|
|
|
6294
6386
|
export type UpdateGitHubRepositorySettingsInput = {
|
|
6295
6387
|
baseDirectory: Scalars['String']['input'];
|
|
6296
6388
|
};
|
|
6389
|
+
export type UpdateGroupEdge = {
|
|
6390
|
+
__typename?: 'UpdateGroupEdge';
|
|
6391
|
+
cursor: Scalars['String']['output'];
|
|
6392
|
+
node: Array<Update>;
|
|
6393
|
+
};
|
|
6394
|
+
export type UpdateGroupsConnection = {
|
|
6395
|
+
__typename?: 'UpdateGroupsConnection';
|
|
6396
|
+
edges: Array<UpdateGroupEdge>;
|
|
6397
|
+
pageInfo: PageInfo;
|
|
6398
|
+
};
|
|
6297
6399
|
export type UpdateInfoGroup = {
|
|
6298
6400
|
android?: InputMaybe<PartialManifest>;
|
|
6299
6401
|
ios?: InputMaybe<PartialManifest>;
|
|
@@ -6363,10 +6465,20 @@ export type UpdateRolloutInfoGroup = {
|
|
|
6363
6465
|
ios?: InputMaybe<UpdateRolloutInfo>;
|
|
6364
6466
|
web?: InputMaybe<UpdateRolloutInfo>;
|
|
6365
6467
|
};
|
|
6468
|
+
export type UpdateVexoAppInput = {
|
|
6469
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
6470
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
6471
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6472
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
6473
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
6474
|
+
};
|
|
6366
6475
|
export type UpdatesFilter = {
|
|
6367
6476
|
platform?: InputMaybe<AppPlatform>;
|
|
6368
6477
|
runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6369
|
-
|
|
6478
|
+
};
|
|
6479
|
+
export type UpdatesFilterV2 = {
|
|
6480
|
+
platform?: InputMaybe<AppPlatform>;
|
|
6481
|
+
runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6370
6482
|
};
|
|
6371
6483
|
export type UpdatesMetricsData = {
|
|
6372
6484
|
__typename?: 'UpdatesMetricsData';
|
|
@@ -6823,6 +6935,8 @@ export type UserInvitation = {
|
|
|
6823
6935
|
* @deprecated Use accountProfileImageUrl
|
|
6824
6936
|
*/
|
|
6825
6937
|
accountProfilePhoto?: Maybe<Scalars['String']['output']>;
|
|
6938
|
+
/** Whether the account requires two-factor authentication */
|
|
6939
|
+
accountRequiresTwoFactor: Scalars['Boolean']['output'];
|
|
6826
6940
|
created: Scalars['DateTime']['output'];
|
|
6827
6941
|
/** Email to which this invitation was sent */
|
|
6828
6942
|
email: Scalars['String']['output'];
|
|
@@ -6892,6 +7006,7 @@ export type UserInvitationPublicData = {
|
|
|
6892
7006
|
accountName: Scalars['String']['output'];
|
|
6893
7007
|
accountProfileImageUrl: Scalars['String']['output'];
|
|
6894
7008
|
accountProfilePhoto?: Maybe<Scalars['String']['output']>;
|
|
7009
|
+
accountRequiresTwoFactor: Scalars['Boolean']['output'];
|
|
6895
7010
|
created: Scalars['DateTime']['output'];
|
|
6896
7011
|
email: Scalars['String']['output'];
|
|
6897
7012
|
expires: Scalars['DateTime']['output'];
|
|
@@ -6921,6 +7036,42 @@ export type UserPermission = {
|
|
|
6921
7036
|
user?: Maybe<User>;
|
|
6922
7037
|
userActor?: Maybe<UserActor>;
|
|
6923
7038
|
};
|
|
7039
|
+
/** A single user preference key-value pair */
|
|
7040
|
+
export type UserPreference = {
|
|
7041
|
+
__typename?: 'UserPreference';
|
|
7042
|
+
createdAt: Scalars['DateTime']['output'];
|
|
7043
|
+
id: Scalars['ID']['output'];
|
|
7044
|
+
key: Scalars['String']['output'];
|
|
7045
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
7046
|
+
value: Scalars['JSON']['output'];
|
|
7047
|
+
};
|
|
7048
|
+
/** Mutation interface for user preferences */
|
|
7049
|
+
export type UserPreferenceMutation = {
|
|
7050
|
+
__typename?: 'UserPreferenceMutation';
|
|
7051
|
+
/** Delete a user preference by key */
|
|
7052
|
+
delete?: Maybe<UserPreference>;
|
|
7053
|
+
/** Set a user preference value by key */
|
|
7054
|
+
set: UserPreference;
|
|
7055
|
+
};
|
|
7056
|
+
/** Mutation interface for user preferences */
|
|
7057
|
+
export type UserPreferenceMutationDeleteArgs = {
|
|
7058
|
+
key: Scalars['String']['input'];
|
|
7059
|
+
};
|
|
7060
|
+
/** Mutation interface for user preferences */
|
|
7061
|
+
export type UserPreferenceMutationSetArgs = {
|
|
7062
|
+
key: Scalars['String']['input'];
|
|
7063
|
+
value: Scalars['JSON']['input'];
|
|
7064
|
+
};
|
|
7065
|
+
/** Query interface for user preferences */
|
|
7066
|
+
export type UserPreferenceQuery = {
|
|
7067
|
+
__typename?: 'UserPreferenceQuery';
|
|
7068
|
+
/** Get a user preference by key */
|
|
7069
|
+
get?: Maybe<UserPreference>;
|
|
7070
|
+
};
|
|
7071
|
+
/** Query interface for user preferences */
|
|
7072
|
+
export type UserPreferenceQueryGetArgs = {
|
|
7073
|
+
key: Scalars['String']['input'];
|
|
7074
|
+
};
|
|
6924
7075
|
export type UserPreferences = {
|
|
6925
7076
|
__typename?: 'UserPreferences';
|
|
6926
7077
|
onboarding?: Maybe<UserPreferencesOnboarding>;
|
|
@@ -6991,6 +7142,69 @@ export type UserSecondFactorDevice = {
|
|
|
6991
7142
|
updatedAt: Scalars['DateTime']['output'];
|
|
6992
7143
|
user: User;
|
|
6993
7144
|
};
|
|
7145
|
+
export declare enum UserSpecifiedAccountUsage {
|
|
7146
|
+
Company = "COMPANY",
|
|
7147
|
+
Personal = "PERSONAL"
|
|
7148
|
+
}
|
|
7149
|
+
export type VexoAccountAccessToken = {
|
|
7150
|
+
__typename?: 'VexoAccountAccessToken';
|
|
7151
|
+
access_token: Scalars['String']['output'];
|
|
7152
|
+
expires_at?: Maybe<Scalars['String']['output']>;
|
|
7153
|
+
token_type: Scalars['String']['output'];
|
|
7154
|
+
};
|
|
7155
|
+
export type VexoAccountConnection = {
|
|
7156
|
+
__typename?: 'VexoAccountConnection';
|
|
7157
|
+
accessToken: VexoAccountAccessToken;
|
|
7158
|
+
account: Account;
|
|
7159
|
+
id: Scalars['ID']['output'];
|
|
7160
|
+
};
|
|
7161
|
+
export type VexoAccountConnectionMutation = {
|
|
7162
|
+
__typename?: 'VexoAccountConnectionMutation';
|
|
7163
|
+
/** Create a Vexo account connection for an Account */
|
|
7164
|
+
createVexoAccountConnection: VexoAccountConnection;
|
|
7165
|
+
/** Delete a Vexo account connection by ID and revoke the access token */
|
|
7166
|
+
revokeAndDeleteVexoAccountConnection: VexoAccountConnection;
|
|
7167
|
+
};
|
|
7168
|
+
export type VexoAccountConnectionMutationCreateVexoAccountConnectionArgs = {
|
|
7169
|
+
vexoAccountConnectionData: CreateVexoAccountConnectionInput;
|
|
7170
|
+
};
|
|
7171
|
+
export type VexoAccountConnectionMutationRevokeAndDeleteVexoAccountConnectionArgs = {
|
|
7172
|
+
vexoAccountConnectionId: Scalars['ID']['input'];
|
|
7173
|
+
};
|
|
7174
|
+
export type VexoApp = {
|
|
7175
|
+
__typename?: 'VexoApp';
|
|
7176
|
+
app: App;
|
|
7177
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
7178
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
7179
|
+
id: Scalars['ID']['output'];
|
|
7180
|
+
name: Scalars['String']['output'];
|
|
7181
|
+
owner: Scalars['String']['output'];
|
|
7182
|
+
slug: Scalars['String']['output'];
|
|
7183
|
+
vexoIdentifier: Scalars['String']['output'];
|
|
7184
|
+
};
|
|
7185
|
+
export type VexoAppMutation = {
|
|
7186
|
+
__typename?: 'VexoAppMutation';
|
|
7187
|
+
/** Create a Vexo app for an App */
|
|
7188
|
+
createVexoApp: VexoApp;
|
|
7189
|
+
/** Delete a Vexo app by ID */
|
|
7190
|
+
deleteVexoApp: VexoApp;
|
|
7191
|
+
/** Update a Vexo app by ID */
|
|
7192
|
+
updateVexoApp: VexoApp;
|
|
7193
|
+
};
|
|
7194
|
+
export type VexoAppMutationCreateVexoAppArgs = {
|
|
7195
|
+
vexoAppData: CreateVexoAppInput;
|
|
7196
|
+
};
|
|
7197
|
+
export type VexoAppMutationDeleteVexoAppArgs = {
|
|
7198
|
+
vexoAppId: Scalars['ID']['input'];
|
|
7199
|
+
};
|
|
7200
|
+
export type VexoAppMutationUpdateVexoAppArgs = {
|
|
7201
|
+
vexoAppData: UpdateVexoAppInput;
|
|
7202
|
+
vexoAppId: Scalars['ID']['input'];
|
|
7203
|
+
};
|
|
7204
|
+
export type VexoIntegrationQuery = {
|
|
7205
|
+
__typename?: 'VexoIntegrationQuery';
|
|
7206
|
+
clientIdentifier: Scalars['String']['output'];
|
|
7207
|
+
};
|
|
6994
7208
|
export type WebNotificationUpdateReadStateInput = {
|
|
6995
7209
|
id: Scalars['ID']['input'];
|
|
6996
7210
|
isRead: Scalars['Boolean']['input'];
|
|
@@ -7447,11 +7661,16 @@ export type Workflow = {
|
|
|
7447
7661
|
createdAt: Scalars['DateTime']['output'];
|
|
7448
7662
|
fileName: Scalars['String']['output'];
|
|
7449
7663
|
id: Scalars['ID']['output'];
|
|
7664
|
+
insights: WorkflowsInsightsWorkflowMetrics;
|
|
7450
7665
|
name?: Maybe<Scalars['String']['output']>;
|
|
7451
7666
|
revisionsPaginated: WorkflowRevisionsConnection;
|
|
7452
7667
|
runsPaginated: WorkflowRunsConnection;
|
|
7453
7668
|
updatedAt: Scalars['DateTime']['output'];
|
|
7454
7669
|
};
|
|
7670
|
+
export type WorkflowInsightsArgs = {
|
|
7671
|
+
filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
|
|
7672
|
+
timespan: WorkflowsInsightsTimespanInput;
|
|
7673
|
+
};
|
|
7455
7674
|
export type WorkflowRevisionsPaginatedArgs = {
|
|
7456
7675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7457
7676
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7487,6 +7706,7 @@ export type WorkflowJob = {
|
|
|
7487
7706
|
approvals: Array<WorkflowJobApproval>;
|
|
7488
7707
|
createdAt: Scalars['DateTime']['output'];
|
|
7489
7708
|
credentialsAppleDeviceRegistrationRequest?: Maybe<AppleDeviceRegistrationRequest>;
|
|
7709
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
7490
7710
|
errors: Array<WorkflowJobError>;
|
|
7491
7711
|
id: Scalars['ID']['output'];
|
|
7492
7712
|
key: Scalars['String']['output'];
|
|
@@ -7607,6 +7827,7 @@ export type WorkflowRevisionInput = {
|
|
|
7607
7827
|
export type WorkflowRevisionMutation = {
|
|
7608
7828
|
__typename?: 'WorkflowRevisionMutation';
|
|
7609
7829
|
getOrCreateWorkflowRevisionFromGitRef: WorkflowRevision;
|
|
7830
|
+
getWorkflowRevisionsFromGitRef: Array<WorkflowRevision>;
|
|
7610
7831
|
validateWorkflowYamlConfig: Scalars['Boolean']['output'];
|
|
7611
7832
|
};
|
|
7612
7833
|
export type WorkflowRevisionMutationGetOrCreateWorkflowRevisionFromGitRefArgs = {
|
|
@@ -7614,6 +7835,10 @@ export type WorkflowRevisionMutationGetOrCreateWorkflowRevisionFromGitRefArgs =
|
|
|
7614
7835
|
fileName: Scalars['String']['input'];
|
|
7615
7836
|
gitRef: Scalars['String']['input'];
|
|
7616
7837
|
};
|
|
7838
|
+
export type WorkflowRevisionMutationGetWorkflowRevisionsFromGitRefArgs = {
|
|
7839
|
+
appId: Scalars['ID']['input'];
|
|
7840
|
+
gitRef: Scalars['String']['input'];
|
|
7841
|
+
};
|
|
7617
7842
|
export type WorkflowRevisionMutationValidateWorkflowYamlConfigArgs = {
|
|
7618
7843
|
appId: Scalars['ID']['input'];
|
|
7619
7844
|
yamlConfig: Scalars['String']['input'];
|
|
@@ -7670,6 +7895,7 @@ export type WorkflowRunError = {
|
|
|
7670
7895
|
export type WorkflowRunFilterInput = {
|
|
7671
7896
|
requestedGitRef?: InputMaybe<Scalars['String']['input']>;
|
|
7672
7897
|
status?: InputMaybe<WorkflowRunStatus>;
|
|
7898
|
+
timeRange?: InputMaybe<WorkflowRunTimeRangeInput>;
|
|
7673
7899
|
};
|
|
7674
7900
|
export type WorkflowRunGitBranchFilterInput = {
|
|
7675
7901
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7717,6 +7943,10 @@ export declare enum WorkflowRunStatus {
|
|
|
7717
7943
|
New = "NEW",
|
|
7718
7944
|
Success = "SUCCESS"
|
|
7719
7945
|
}
|
|
7946
|
+
export type WorkflowRunTimeRangeInput = {
|
|
7947
|
+
earliest?: InputMaybe<Scalars['DateTime']['input']>;
|
|
7948
|
+
latest?: InputMaybe<Scalars['DateTime']['input']>;
|
|
7949
|
+
};
|
|
7720
7950
|
export declare enum WorkflowRunTriggerEventType {
|
|
7721
7951
|
GithubPullRequestLabeled = "GITHUB_PULL_REQUEST_LABELED",
|
|
7722
7952
|
GithubPullRequestOpened = "GITHUB_PULL_REQUEST_OPENED",
|
|
@@ -7731,6 +7961,63 @@ export type WorkflowRunsConnection = {
|
|
|
7731
7961
|
edges: Array<WorkflowRunEdge>;
|
|
7732
7962
|
pageInfo: PageInfo;
|
|
7733
7963
|
};
|
|
7964
|
+
export type WorkflowsInsightsFiltersInput = {
|
|
7965
|
+
gitRefRequested?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7966
|
+
statuses?: InputMaybe<Array<WorkflowRunStatus>>;
|
|
7967
|
+
triggerEventTypes?: InputMaybe<Array<WorkflowRunTriggerEventType>>;
|
|
7968
|
+
workflowIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7969
|
+
};
|
|
7970
|
+
export type WorkflowsInsightsMetric = {
|
|
7971
|
+
__typename?: 'WorkflowsInsightsMetric';
|
|
7972
|
+
currentValue: Scalars['Float']['output'];
|
|
7973
|
+
previousValue: Scalars['Float']['output'];
|
|
7974
|
+
};
|
|
7975
|
+
export type WorkflowsInsightsOverviewMetrics = {
|
|
7976
|
+
__typename?: 'WorkflowsInsightsOverviewMetrics';
|
|
7977
|
+
activeWorkflows: WorkflowsInsightsMetric;
|
|
7978
|
+
failedRuns: WorkflowsInsightsMetric;
|
|
7979
|
+
successfulRuns: WorkflowsInsightsMetric;
|
|
7980
|
+
totalRuns: WorkflowsInsightsMetric;
|
|
7981
|
+
};
|
|
7982
|
+
export type WorkflowsInsightsRunsOverTimeData = {
|
|
7983
|
+
__typename?: 'WorkflowsInsightsRunsOverTimeData';
|
|
7984
|
+
lineChart: LineChartData;
|
|
7985
|
+
};
|
|
7986
|
+
export declare enum WorkflowsInsightsRunsOverTimeGranularity {
|
|
7987
|
+
Day = "DAY",
|
|
7988
|
+
Hour = "HOUR",
|
|
7989
|
+
Minute = "MINUTE"
|
|
7990
|
+
}
|
|
7991
|
+
export type WorkflowsInsightsTimespanInput = {
|
|
7992
|
+
end: Scalars['DateTime']['input'];
|
|
7993
|
+
start: Scalars['DateTime']['input'];
|
|
7994
|
+
};
|
|
7995
|
+
export type WorkflowsInsightsWorkflowConnection = {
|
|
7996
|
+
__typename?: 'WorkflowsInsightsWorkflowConnection';
|
|
7997
|
+
edges: Array<WorkflowsInsightsWorkflowEdge>;
|
|
7998
|
+
pageInfo: PageInfo;
|
|
7999
|
+
};
|
|
8000
|
+
export type WorkflowsInsightsWorkflowEdge = {
|
|
8001
|
+
__typename?: 'WorkflowsInsightsWorkflowEdge';
|
|
8002
|
+
cursor: Scalars['String']['output'];
|
|
8003
|
+
node: WorkflowsInsightsWorkflowNode;
|
|
8004
|
+
};
|
|
8005
|
+
export type WorkflowsInsightsWorkflowMetrics = {
|
|
8006
|
+
__typename?: 'WorkflowsInsightsWorkflowMetrics';
|
|
8007
|
+
failedRuns: WorkflowsInsightsMetric;
|
|
8008
|
+
lastRunAt?: Maybe<Scalars['DateTime']['output']>;
|
|
8009
|
+
successfulRuns: WorkflowsInsightsMetric;
|
|
8010
|
+
totalRuns: WorkflowsInsightsMetric;
|
|
8011
|
+
};
|
|
8012
|
+
export type WorkflowsInsightsWorkflowNode = {
|
|
8013
|
+
__typename?: 'WorkflowsInsightsWorkflowNode';
|
|
8014
|
+
failedRuns: Scalars['Int']['output'];
|
|
8015
|
+
lastRunAt: Scalars['DateTime']['output'];
|
|
8016
|
+
name: Scalars['String']['output'];
|
|
8017
|
+
successfulRuns: Scalars['Int']['output'];
|
|
8018
|
+
totalRuns: Scalars['Int']['output'];
|
|
8019
|
+
workflowId: Scalars['ID']['output'];
|
|
8020
|
+
};
|
|
7734
8021
|
export type DeleteAndroidAppBuildCredentialsResult = {
|
|
7735
8022
|
__typename?: 'deleteAndroidAppBuildCredentialsResult';
|
|
7736
8023
|
id: Scalars['ID']['output'];
|
|
@@ -7747,6 +8034,29 @@ export type DeleteApplePushKeyResult = {
|
|
|
7747
8034
|
__typename?: 'deleteApplePushKeyResult';
|
|
7748
8035
|
id: Scalars['ID']['output'];
|
|
7749
8036
|
};
|
|
8037
|
+
export type ScheduleBranchDeletionMutationVariables = Exact<{
|
|
8038
|
+
branchId: Scalars['ID']['input'];
|
|
8039
|
+
}>;
|
|
8040
|
+
export type ScheduleBranchDeletionMutation = {
|
|
8041
|
+
__typename?: 'RootMutation';
|
|
8042
|
+
updateBranch: {
|
|
8043
|
+
__typename?: 'UpdateBranchMutation';
|
|
8044
|
+
scheduleUpdateBranchDeletion: {
|
|
8045
|
+
__typename?: 'BackgroundJobReceipt';
|
|
8046
|
+
id: string;
|
|
8047
|
+
state: BackgroundJobState;
|
|
8048
|
+
tries: number;
|
|
8049
|
+
willRetry: boolean;
|
|
8050
|
+
resultId?: string | null;
|
|
8051
|
+
resultType: BackgroundJobResultType;
|
|
8052
|
+
resultData?: any | null;
|
|
8053
|
+
errorCode?: string | null;
|
|
8054
|
+
errorMessage?: string | null;
|
|
8055
|
+
createdAt: any;
|
|
8056
|
+
updatedAt: any;
|
|
8057
|
+
};
|
|
8058
|
+
};
|
|
8059
|
+
};
|
|
7750
8060
|
export type CreateUpdateBranchForAppMutationVariables = Exact<{
|
|
7751
8061
|
appId: Scalars['ID']['input'];
|
|
7752
8062
|
name: Scalars['String']['input'];
|
|
@@ -7798,19 +8108,6 @@ export type GetBranchInfoQuery = {
|
|
|
7798
8108
|
};
|
|
7799
8109
|
};
|
|
7800
8110
|
};
|
|
7801
|
-
export type DeleteUpdateBranchMutationVariables = Exact<{
|
|
7802
|
-
branchId: Scalars['ID']['input'];
|
|
7803
|
-
}>;
|
|
7804
|
-
export type DeleteUpdateBranchMutation = {
|
|
7805
|
-
__typename?: 'RootMutation';
|
|
7806
|
-
updateBranch: {
|
|
7807
|
-
__typename?: 'UpdateBranchMutation';
|
|
7808
|
-
deleteUpdateBranch: {
|
|
7809
|
-
__typename?: 'DeleteUpdateBranchResult';
|
|
7810
|
-
id: string;
|
|
7811
|
-
};
|
|
7812
|
-
};
|
|
7813
|
-
};
|
|
7814
8111
|
export type EditUpdateBranchMutationVariables = Exact<{
|
|
7815
8112
|
input: EditUpdateBranchInput;
|
|
7816
8113
|
}>;
|
|
@@ -12922,6 +13219,22 @@ export type LatestAppVersionQuery = {
|
|
|
12922
13219
|
};
|
|
12923
13220
|
};
|
|
12924
13221
|
};
|
|
13222
|
+
export type GetAssetSignedUrlsQueryVariables = Exact<{
|
|
13223
|
+
updateId: Scalars['ID']['input'];
|
|
13224
|
+
storageKeys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
13225
|
+
}>;
|
|
13226
|
+
export type GetAssetSignedUrlsQuery = {
|
|
13227
|
+
__typename?: 'RootQuery';
|
|
13228
|
+
asset: {
|
|
13229
|
+
__typename?: 'AssetQuery';
|
|
13230
|
+
signedUrls: Array<{
|
|
13231
|
+
__typename?: 'AssetSignedUrlResult';
|
|
13232
|
+
storageKey: string;
|
|
13233
|
+
url: string;
|
|
13234
|
+
headers?: any | null;
|
|
13235
|
+
}>;
|
|
13236
|
+
};
|
|
13237
|
+
};
|
|
12925
13238
|
export type BackgroundJobReceiptByIdQueryVariables = Exact<{
|
|
12926
13239
|
id: Scalars['ID']['input'];
|
|
12927
13240
|
}>;
|
|
@@ -12969,6 +13282,8 @@ export type ViewLatestUpdateOnBranchQueryVariables = Exact<{
|
|
|
12969
13282
|
branchName: Scalars['String']['input'];
|
|
12970
13283
|
platform: AppPlatform;
|
|
12971
13284
|
runtimeVersion: Scalars['String']['input'];
|
|
13285
|
+
offset: Scalars['Int']['input'];
|
|
13286
|
+
limit: Scalars['Int']['input'];
|
|
12972
13287
|
}>;
|
|
12973
13288
|
export type ViewLatestUpdateOnBranchQuery = {
|
|
12974
13289
|
__typename?: 'RootQuery';
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.EnvironmentVariableVisibility = exports.EnvironmentVariableScope = 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
10
|
exports.SubmissionStatus = exports.SubmissionPriority = exports.SubmissionArchiveSourceType = 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 = void 0;
|
|
11
|
+
exports.WorkflowsInsightsRunsOverTimeGranularity = exports.WorkflowRunTriggerEventType = exports.WorkflowRunStatus = exports.WorkflowProjectSourceType = exports.WorkflowJobType = exports.WorkflowJobStatus = exports.WorkflowJobReviewDecision = exports.WorkflowArtifactStorageType = exports.WorkerLoggerLevel = exports.WorkerDeploymentLogLevel = exports.WorkerDeploymentCrashKind = exports.WebhookType = exports.UserSpecifiedAccountUsage = exports.UserEntityTypeName = exports.UserAgentPlatform = exports.UserAgentOs = exports.UserAgentBrowser = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.TargetEntityMutationType = void 0;
|
|
12
12
|
var AccountAppsSortByField;
|
|
13
13
|
(function (AccountAppsSortByField) {
|
|
14
14
|
AccountAppsSortByField["LatestActivityTime"] = "LATEST_ACTIVITY_TIME";
|
|
@@ -830,6 +830,11 @@ var UserEntityTypeName;
|
|
|
830
830
|
UserEntityTypeName["UserSecondFactorBackupCodesEntity"] = "UserSecondFactorBackupCodesEntity";
|
|
831
831
|
UserEntityTypeName["UserSecondFactorDeviceEntity"] = "UserSecondFactorDeviceEntity";
|
|
832
832
|
})(UserEntityTypeName || (exports.UserEntityTypeName = UserEntityTypeName = {}));
|
|
833
|
+
var UserSpecifiedAccountUsage;
|
|
834
|
+
(function (UserSpecifiedAccountUsage) {
|
|
835
|
+
UserSpecifiedAccountUsage["Company"] = "COMPANY";
|
|
836
|
+
UserSpecifiedAccountUsage["Personal"] = "PERSONAL";
|
|
837
|
+
})(UserSpecifiedAccountUsage || (exports.UserSpecifiedAccountUsage = UserSpecifiedAccountUsage = {}));
|
|
833
838
|
var WebhookType;
|
|
834
839
|
(function (WebhookType) {
|
|
835
840
|
WebhookType["Build"] = "BUILD";
|
|
@@ -925,3 +930,9 @@ var WorkflowRunTriggerEventType;
|
|
|
925
930
|
WorkflowRunTriggerEventType["Manual"] = "MANUAL";
|
|
926
931
|
WorkflowRunTriggerEventType["Schedule"] = "SCHEDULE";
|
|
927
932
|
})(WorkflowRunTriggerEventType || (exports.WorkflowRunTriggerEventType = WorkflowRunTriggerEventType = {}));
|
|
933
|
+
var WorkflowsInsightsRunsOverTimeGranularity;
|
|
934
|
+
(function (WorkflowsInsightsRunsOverTimeGranularity) {
|
|
935
|
+
WorkflowsInsightsRunsOverTimeGranularity["Day"] = "DAY";
|
|
936
|
+
WorkflowsInsightsRunsOverTimeGranularity["Hour"] = "HOUR";
|
|
937
|
+
WorkflowsInsightsRunsOverTimeGranularity["Minute"] = "MINUTE";
|
|
938
|
+
})(WorkflowsInsightsRunsOverTimeGranularity || (exports.WorkflowsInsightsRunsOverTimeGranularity = WorkflowsInsightsRunsOverTimeGranularity = {}));
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ExpoGraphqlClient } from '../../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
|
+
import { AssetSignedUrlResult } from '../generated';
|
|
3
|
+
export declare const AssetQuery: {
|
|
4
|
+
getSignedUrlsAsync(graphqlClient: ExpoGraphqlClient, updateId: string, storageKeys: string[]): Promise<AssetSignedUrlResult[]>;
|
|
5
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AssetQuery = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const graphql_tag_1 = tslib_1.__importDefault(require("graphql-tag"));
|
|
6
|
+
const client_1 = require("../client");
|
|
7
|
+
exports.AssetQuery = {
|
|
8
|
+
async getSignedUrlsAsync(graphqlClient, updateId, storageKeys) {
|
|
9
|
+
const data = await (0, client_1.withErrorHandlingAsync)(graphqlClient
|
|
10
|
+
.query((0, graphql_tag_1.default) `
|
|
11
|
+
query GetAssetSignedUrls($updateId: ID!, $storageKeys: [String!]!) {
|
|
12
|
+
asset {
|
|
13
|
+
signedUrls(updateId: $updateId, storageKeys: $storageKeys) {
|
|
14
|
+
storageKey
|
|
15
|
+
url
|
|
16
|
+
headers
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
`, {
|
|
21
|
+
updateId,
|
|
22
|
+
storageKeys,
|
|
23
|
+
}, { additionalTypenames: [] })
|
|
24
|
+
.toPromise());
|
|
25
|
+
return data.asset.signedUrls;
|
|
26
|
+
},
|
|
27
|
+
};
|