eas-cli 13.0.0 → 13.1.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 +63 -63
- package/build/build/build.js +50 -5
- package/build/build/metadata.d.ts +2 -1
- package/build/build/metadata.js +4 -3
- package/build/build/utils/url.d.ts +1 -0
- package/build/build/utils/url.js +5 -1
- package/build/commands/update/index.js +1 -1
- package/build/commands/workflow/run.d.ts +21 -0
- package/build/commands/workflow/run.js +91 -0
- package/build/commands/workflow/validate.d.ts +11 -0
- package/build/commands/workflow/validate.js +87 -0
- package/build/graphql/generated.d.ts +297 -44
- package/build/graphql/generated.js +72 -31
- package/build/graphql/mutations/UploadSessionMutation.d.ts +5 -1
- package/build/graphql/mutations/UploadSessionMutation.js +18 -0
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +11 -0
- package/build/graphql/mutations/WorkflowRunMutation.js +36 -0
- package/build/metadata/apple/config/reader.js +6 -4
- package/build/metadata/apple/config/writer.d.ts +1 -1
- package/build/metadata/apple/config/writer.js +7 -4
- package/build/metadata/apple/types.d.ts +1 -1
- package/build/project/maybeUploadFingerprintAsync.d.ts +3 -3
- package/build/project/maybeUploadFingerprintAsync.js +5 -5
- package/build/project/uploadAccountScopedEasJsonAsync.d.ts +12 -0
- package/build/project/uploadAccountScopedEasJsonAsync.js +34 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.d.ts +13 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.js +48 -0
- package/build/uploads.d.ts +7 -1
- package/build/uploads.js +7 -1
- package/build/utils/fingerprintCli.d.ts +12 -0
- package/build/utils/fingerprintCli.js +26 -0
- package/build/utils/progress.js +2 -1
- package/oclif.manifest.json +51 -1
- package/package.json +4 -3
- package/schema/metadata-0.json +53 -18
|
@@ -641,6 +641,9 @@ export type AccountSsoConfigurationPublicDataQuery = {
|
|
|
641
641
|
export type AccountSsoConfigurationPublicDataQueryPublicDataByAccountNameArgs = {
|
|
642
642
|
accountName: Scalars['String']['input'];
|
|
643
643
|
};
|
|
644
|
+
export declare enum AccountUploadSessionType {
|
|
645
|
+
WorkflowsProjectSources = "WORKFLOWS_PROJECT_SOURCES"
|
|
646
|
+
}
|
|
644
647
|
export type AccountUsageEasBuildMetadata = {
|
|
645
648
|
__typename?: 'AccountUsageEASBuildMetadata';
|
|
646
649
|
billingResourceClass?: Maybe<EasBuildBillingResourceClass>;
|
|
@@ -1225,6 +1228,7 @@ export type App = Project & {
|
|
|
1225
1228
|
workerDeploymentsCrashes?: Maybe<WorkerDeploymentCrashes>;
|
|
1226
1229
|
workerDeploymentsRequest: WorkerDeploymentRequestEdge;
|
|
1227
1230
|
workerDeploymentsRequests?: Maybe<WorkerDeploymentRequests>;
|
|
1231
|
+
workflowRunsPaginated: AppWorkflowRunsConnection;
|
|
1228
1232
|
workflows: Array<Workflow>;
|
|
1229
1233
|
};
|
|
1230
1234
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
@@ -1232,7 +1236,6 @@ export type AppActivityTimelineProjectActivitiesArgs = {
|
|
|
1232
1236
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1233
1237
|
filterChannels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1234
1238
|
filterPlatforms?: InputMaybe<Array<AppPlatform>>;
|
|
1235
|
-
filterReleaseChannels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1236
1239
|
filterTypes?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;
|
|
1237
1240
|
limit: Scalars['Int']['input'];
|
|
1238
1241
|
};
|
|
@@ -1427,6 +1430,13 @@ export type AppWorkerDeploymentsRequestsArgs = {
|
|
|
1427
1430
|
filters?: InputMaybe<RequestsFilters>;
|
|
1428
1431
|
timespan: DatasetTimespan;
|
|
1429
1432
|
};
|
|
1433
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1434
|
+
export type AppWorkflowRunsPaginatedArgs = {
|
|
1435
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1436
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1437
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1438
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1439
|
+
};
|
|
1430
1440
|
export type AppBranchEdge = {
|
|
1431
1441
|
__typename?: 'AppBranchEdge';
|
|
1432
1442
|
cursor: Scalars['String']['output'];
|
|
@@ -1783,6 +1793,16 @@ export type AppWithGithubRepositoryInput = {
|
|
|
1783
1793
|
privacy: AppPrivacy;
|
|
1784
1794
|
projectName: Scalars['String']['input'];
|
|
1785
1795
|
};
|
|
1796
|
+
export type AppWorkflowRunEdge = {
|
|
1797
|
+
__typename?: 'AppWorkflowRunEdge';
|
|
1798
|
+
cursor: Scalars['String']['output'];
|
|
1799
|
+
node: WorkflowRun;
|
|
1800
|
+
};
|
|
1801
|
+
export type AppWorkflowRunsConnection = {
|
|
1802
|
+
__typename?: 'AppWorkflowRunsConnection';
|
|
1803
|
+
edges: Array<AppWorkflowRunEdge>;
|
|
1804
|
+
pageInfo: PageInfo;
|
|
1805
|
+
};
|
|
1786
1806
|
export type AppleAppIdentifier = {
|
|
1787
1807
|
__typename?: 'AppleAppIdentifier';
|
|
1788
1808
|
account: Account;
|
|
@@ -2107,7 +2127,8 @@ export type AuditLog = {
|
|
|
2107
2127
|
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
2108
2128
|
targetEntityId: Scalars['ID']['output'];
|
|
2109
2129
|
targetEntityMutationType: TargetEntityMutationType;
|
|
2110
|
-
targetEntityTypeName:
|
|
2130
|
+
targetEntityTypeName: EntityTypeName;
|
|
2131
|
+
targetEntityTypePublicName: Scalars['String']['output'];
|
|
2111
2132
|
websiteMessage: Scalars['String']['output'];
|
|
2112
2133
|
};
|
|
2113
2134
|
export type AuditLogConnection = {
|
|
@@ -2144,6 +2165,7 @@ export type AuditLogQuery = {
|
|
|
2144
2165
|
__typename?: 'AuditLogQuery';
|
|
2145
2166
|
/** Audit logs for account */
|
|
2146
2167
|
byId: AuditLog;
|
|
2168
|
+
typeNamesMap: Array<LogNameTypeMapping>;
|
|
2147
2169
|
};
|
|
2148
2170
|
export type AuditLogQueryByIdArgs = {
|
|
2149
2171
|
auditLogId: Scalars['ID']['input'];
|
|
@@ -2446,6 +2468,7 @@ export type BuildMetadataInput = {
|
|
|
2446
2468
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2447
2469
|
distribution?: InputMaybe<DistributionType>;
|
|
2448
2470
|
environment?: InputMaybe<Scalars['String']['input']>;
|
|
2471
|
+
fingerprintHash?: InputMaybe<Scalars['String']['input']>;
|
|
2449
2472
|
fingerprintSource?: InputMaybe<FingerprintSourceInput>;
|
|
2450
2473
|
gitCommitHash?: InputMaybe<Scalars['String']['input']>;
|
|
2451
2474
|
gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2672,7 +2695,9 @@ export declare enum BuildResourceClass {
|
|
|
2672
2695
|
IosMedium = "IOS_MEDIUM",
|
|
2673
2696
|
IosMLarge = "IOS_M_LARGE",
|
|
2674
2697
|
IosMMedium = "IOS_M_MEDIUM",
|
|
2675
|
-
Legacy = "LEGACY"
|
|
2698
|
+
Legacy = "LEGACY",
|
|
2699
|
+
LinuxLarge = "LINUX_LARGE",
|
|
2700
|
+
LinuxMedium = "LINUX_MEDIUM"
|
|
2676
2701
|
}
|
|
2677
2702
|
export declare enum BuildRetryDisabledReason {
|
|
2678
2703
|
AlreadyRetried = "ALREADY_RETRIED",
|
|
@@ -2799,8 +2824,8 @@ export type CreateEnvironmentSecretInput = {
|
|
|
2799
2824
|
value: Scalars['String']['input'];
|
|
2800
2825
|
};
|
|
2801
2826
|
export type CreateEnvironmentVariableInput = {
|
|
2802
|
-
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
2803
2827
|
environments?: InputMaybe<Array<EnvironmentVariableEnvironment>>;
|
|
2828
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
2804
2829
|
name: Scalars['String']['input'];
|
|
2805
2830
|
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2806
2831
|
type?: InputMaybe<EnvironmentSecretType>;
|
|
@@ -2859,6 +2884,8 @@ export type CreateServerlessFunctionUploadUrlResult = {
|
|
|
2859
2884
|
};
|
|
2860
2885
|
export type CreateSharedEnvironmentVariableInput = {
|
|
2861
2886
|
environments?: InputMaybe<Array<EnvironmentVariableEnvironment>>;
|
|
2887
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
2888
|
+
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2862
2889
|
name: Scalars['String']['input'];
|
|
2863
2890
|
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2864
2891
|
type?: InputMaybe<EnvironmentSecretType>;
|
|
@@ -2872,8 +2899,8 @@ export type CreateSubmissionResult = {
|
|
|
2872
2899
|
};
|
|
2873
2900
|
export type CumulativeMetrics = {
|
|
2874
2901
|
__typename?: 'CumulativeMetrics';
|
|
2875
|
-
|
|
2876
|
-
|
|
2902
|
+
data: UpdatesMetricsData;
|
|
2903
|
+
metricsAtLastTimestamp: CumulativeMetricsTotals;
|
|
2877
2904
|
};
|
|
2878
2905
|
export type CumulativeMetricsOverTimeData = {
|
|
2879
2906
|
__typename?: 'CumulativeMetricsOverTimeData';
|
|
@@ -2885,6 +2912,13 @@ export type CumulativeMetricsTotals = {
|
|
|
2885
2912
|
totalFailedInstalls: Scalars['Int']['output'];
|
|
2886
2913
|
totalInstalls: Scalars['Int']['output'];
|
|
2887
2914
|
};
|
|
2915
|
+
export type CumulativeUpdatesDataset = {
|
|
2916
|
+
__typename?: 'CumulativeUpdatesDataset';
|
|
2917
|
+
cumulative: Array<Scalars['Int']['output']>;
|
|
2918
|
+
difference: Array<Scalars['Int']['output']>;
|
|
2919
|
+
id: Scalars['String']['output'];
|
|
2920
|
+
label: Scalars['String']['output'];
|
|
2921
|
+
};
|
|
2888
2922
|
export type CustomBuildConfigInput = {
|
|
2889
2923
|
path: Scalars['String']['input'];
|
|
2890
2924
|
};
|
|
@@ -3256,25 +3290,25 @@ export type EmailSubscriptionMutationAddUserArgs = {
|
|
|
3256
3290
|
addUserInput: AddUserInput;
|
|
3257
3291
|
};
|
|
3258
3292
|
export declare enum EntityTypeName {
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3293
|
+
AccountEntity = "AccountEntity",
|
|
3294
|
+
AccountSsoConfigurationEntity = "AccountSSOConfigurationEntity",
|
|
3295
|
+
AndroidAppCredentialsEntity = "AndroidAppCredentialsEntity",
|
|
3296
|
+
AndroidKeystoreEntity = "AndroidKeystoreEntity",
|
|
3297
|
+
AppEntity = "AppEntity",
|
|
3298
|
+
AppStoreConnectApiKeyEntity = "AppStoreConnectApiKeyEntity",
|
|
3299
|
+
AppleDeviceEntity = "AppleDeviceEntity",
|
|
3300
|
+
AppleDistributionCertificateEntity = "AppleDistributionCertificateEntity",
|
|
3301
|
+
AppleProvisioningProfileEntity = "AppleProvisioningProfileEntity",
|
|
3302
|
+
AppleTeamEntity = "AppleTeamEntity",
|
|
3303
|
+
BranchEntity = "BranchEntity",
|
|
3304
|
+
ChannelEntity = "ChannelEntity",
|
|
3305
|
+
CustomerEntity = "CustomerEntity",
|
|
3306
|
+
GoogleServiceAccountKeyEntity = "GoogleServiceAccountKeyEntity",
|
|
3307
|
+
IosAppCredentialsEntity = "IosAppCredentialsEntity",
|
|
3308
|
+
UserInvitationEntity = "UserInvitationEntity",
|
|
3309
|
+
UserPermissionEntity = "UserPermissionEntity",
|
|
3310
|
+
WorkflowEntity = "WorkflowEntity",
|
|
3311
|
+
WorkflowRevisionEntity = "WorkflowRevisionEntity"
|
|
3278
3312
|
}
|
|
3279
3313
|
export type EnvironmentSecret = {
|
|
3280
3314
|
__typename?: 'EnvironmentSecret';
|
|
@@ -3312,9 +3346,10 @@ export type EnvironmentVariable = {
|
|
|
3312
3346
|
__typename?: 'EnvironmentVariable';
|
|
3313
3347
|
apps: Array<App>;
|
|
3314
3348
|
createdAt: Scalars['DateTime']['output'];
|
|
3315
|
-
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3316
3349
|
environments?: Maybe<Array<EnvironmentVariableEnvironment>>;
|
|
3350
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
3317
3351
|
id: Scalars['ID']['output'];
|
|
3352
|
+
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
3318
3353
|
linkedEnvironments?: Maybe<Array<EnvironmentVariableEnvironment>>;
|
|
3319
3354
|
name: Scalars['String']['output'];
|
|
3320
3355
|
scope: EnvironmentVariableScope;
|
|
@@ -3404,9 +3439,10 @@ export type EnvironmentVariableWithSecret = {
|
|
|
3404
3439
|
__typename?: 'EnvironmentVariableWithSecret';
|
|
3405
3440
|
apps: Array<App>;
|
|
3406
3441
|
createdAt: Scalars['DateTime']['output'];
|
|
3407
|
-
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3408
3442
|
environments?: Maybe<Array<EnvironmentVariableEnvironment>>;
|
|
3443
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
3409
3444
|
id: Scalars['ID']['output'];
|
|
3445
|
+
isGlobal: Scalars['Boolean']['output'];
|
|
3410
3446
|
linkedEnvironments?: Maybe<Array<EnvironmentVariableEnvironment>>;
|
|
3411
3447
|
name: Scalars['String']['output'];
|
|
3412
3448
|
scope: EnvironmentVariableScope;
|
|
@@ -4226,13 +4262,20 @@ export type LinkSharedEnvironmentVariableInput = {
|
|
|
4226
4262
|
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
4227
4263
|
environmentVariableId: Scalars['ID']['input'];
|
|
4228
4264
|
};
|
|
4265
|
+
export type LogNameTypeMapping = {
|
|
4266
|
+
__typename?: 'LogNameTypeMapping';
|
|
4267
|
+
publicName: Scalars['String']['output'];
|
|
4268
|
+
typeName: EntityTypeName;
|
|
4269
|
+
};
|
|
4229
4270
|
export type LogsTimespan = {
|
|
4230
4271
|
end: Scalars['DateTime']['input'];
|
|
4231
4272
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4232
4273
|
};
|
|
4233
4274
|
export declare enum MailchimpAudience {
|
|
4234
4275
|
ExpoDevelopers = "EXPO_DEVELOPERS",
|
|
4235
|
-
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING"
|
|
4276
|
+
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING",
|
|
4277
|
+
LaunchParty_2024 = "LAUNCH_PARTY_2024",
|
|
4278
|
+
NonprodExpoDevelopers = "NONPROD_EXPO_DEVELOPERS"
|
|
4236
4279
|
}
|
|
4237
4280
|
export declare enum MailchimpTag {
|
|
4238
4281
|
DevClientUsers = "DEV_CLIENT_USERS",
|
|
@@ -4781,6 +4824,7 @@ export type RootMutation = {
|
|
|
4781
4824
|
/** Mutations that modify a websiteNotification */
|
|
4782
4825
|
websiteNotifications: WebsiteNotificationMutation;
|
|
4783
4826
|
workflowJob: WorkflowJobMutation;
|
|
4827
|
+
workflowRun: WorkflowRunMutation;
|
|
4784
4828
|
};
|
|
4785
4829
|
export type RootMutationAccountArgs = {
|
|
4786
4830
|
accountName?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4903,7 +4947,9 @@ export type RootQuery = {
|
|
|
4903
4947
|
/** Top-level query object for querying Webhooks. */
|
|
4904
4948
|
webhook: WebhookQuery;
|
|
4905
4949
|
workerDeployment: WorkerDeploymentQuery;
|
|
4950
|
+
workflowJobs: WorkflowJobQuery;
|
|
4906
4951
|
workflowRevisions: WorkflowRevisionQuery;
|
|
4952
|
+
workflowRuns: WorkflowRunQuery;
|
|
4907
4953
|
workflows: WorkflowQuery;
|
|
4908
4954
|
};
|
|
4909
4955
|
export type RootQueryAllPublicAppsArgs = {
|
|
@@ -5145,6 +5191,8 @@ export type Snack = Project & {
|
|
|
5145
5191
|
/** Preview image of the running snack */
|
|
5146
5192
|
previewImage?: Maybe<Scalars['String']['output']>;
|
|
5147
5193
|
published: Scalars['Boolean']['output'];
|
|
5194
|
+
/** SDK version of the snack */
|
|
5195
|
+
sdkVersion: Scalars['String']['output'];
|
|
5148
5196
|
/** Slug name, e.g. "mysnack", "245631" */
|
|
5149
5197
|
slug: Scalars['String']['output'];
|
|
5150
5198
|
/** Date and time the Snack was last updated */
|
|
@@ -5612,7 +5660,9 @@ export type UpdateDeploymentsConnection = {
|
|
|
5612
5660
|
};
|
|
5613
5661
|
export type UpdateEnvironmentVariableInput = {
|
|
5614
5662
|
environments?: InputMaybe<Array<EnvironmentVariableEnvironment>>;
|
|
5663
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
5615
5664
|
id: Scalars['ID']['input'];
|
|
5665
|
+
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5616
5666
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5617
5667
|
type?: InputMaybe<EnvironmentSecretType>;
|
|
5618
5668
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5646,11 +5696,10 @@ export type UpdateInfoGroup = {
|
|
|
5646
5696
|
export type UpdateInsights = {
|
|
5647
5697
|
__typename?: 'UpdateInsights';
|
|
5648
5698
|
cumulativeMetrics: CumulativeMetrics;
|
|
5649
|
-
cumulativeMetricsOverTime: CumulativeMetricsOverTimeData;
|
|
5650
5699
|
id: Scalars['ID']['output'];
|
|
5651
5700
|
totalUniqueUsers: Scalars['Int']['output'];
|
|
5652
5701
|
};
|
|
5653
|
-
export type
|
|
5702
|
+
export type UpdateInsightsCumulativeMetricsArgs = {
|
|
5654
5703
|
timespan: InsightsTimespan;
|
|
5655
5704
|
};
|
|
5656
5705
|
export type UpdateInsightsTotalUniqueUsersArgs = {
|
|
@@ -5703,11 +5752,23 @@ export type UpdatesFilter = {
|
|
|
5703
5752
|
runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5704
5753
|
sdkVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5705
5754
|
};
|
|
5755
|
+
export type UpdatesMetricsData = {
|
|
5756
|
+
__typename?: 'UpdatesMetricsData';
|
|
5757
|
+
failedInstallsDataset: CumulativeUpdatesDataset;
|
|
5758
|
+
installsDataset: CumulativeUpdatesDataset;
|
|
5759
|
+
labels: Array<Scalars['String']['output']>;
|
|
5760
|
+
};
|
|
5706
5761
|
export type UploadSession = {
|
|
5707
5762
|
__typename?: 'UploadSession';
|
|
5763
|
+
/** Create an Upload Session for a specific account */
|
|
5764
|
+
createAccountScopedUploadSession: Scalars['JSONObject']['output'];
|
|
5708
5765
|
/** Create an Upload Session */
|
|
5709
5766
|
createUploadSession: Scalars['JSONObject']['output'];
|
|
5710
5767
|
};
|
|
5768
|
+
export type UploadSessionCreateAccountScopedUploadSessionArgs = {
|
|
5769
|
+
accountID: Scalars['ID']['input'];
|
|
5770
|
+
type: AccountUploadSessionType;
|
|
5771
|
+
};
|
|
5711
5772
|
export type UploadSessionCreateUploadSessionArgs = {
|
|
5712
5773
|
type: UploadSessionType;
|
|
5713
5774
|
};
|
|
@@ -6022,7 +6083,8 @@ export type UserAuditLog = {
|
|
|
6022
6083
|
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
6023
6084
|
targetEntityId: Scalars['ID']['output'];
|
|
6024
6085
|
targetEntityMutationType: TargetEntityMutationType;
|
|
6025
|
-
targetEntityTypeName:
|
|
6086
|
+
targetEntityTypeName: UserEntityTypeName;
|
|
6087
|
+
targetEntityTypePublicName: Scalars['String']['output'];
|
|
6026
6088
|
user: User;
|
|
6027
6089
|
websiteMessage: Scalars['String']['output'];
|
|
6028
6090
|
};
|
|
@@ -6061,6 +6123,7 @@ export type UserAuditLogQuery = {
|
|
|
6061
6123
|
/** Audit logs for user */
|
|
6062
6124
|
byId: UserAuditLog;
|
|
6063
6125
|
byUserIdPaginated: UserAuditLogConnection;
|
|
6126
|
+
typeNamesMap: Array<UserLogNameTypeMapping>;
|
|
6064
6127
|
};
|
|
6065
6128
|
export type UserAuditLogQueryByIdArgs = {
|
|
6066
6129
|
auditLogId: Scalars['ID']['input'];
|
|
@@ -6083,15 +6146,15 @@ export type UserDataInput = {
|
|
|
6083
6146
|
username?: InputMaybe<Scalars['String']['input']>;
|
|
6084
6147
|
};
|
|
6085
6148
|
export declare enum UserEntityTypeName {
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6093
|
-
|
|
6094
|
-
|
|
6149
|
+
AccessTokenEntity = "AccessTokenEntity",
|
|
6150
|
+
DiscordUserEntity = "DiscordUserEntity",
|
|
6151
|
+
GitHubUserEntity = "GitHubUserEntity",
|
|
6152
|
+
PasswordEntity = "PasswordEntity",
|
|
6153
|
+
SsoUserEntity = "SSOUserEntity",
|
|
6154
|
+
UserEntity = "UserEntity",
|
|
6155
|
+
UserPermissionEntity = "UserPermissionEntity",
|
|
6156
|
+
UserSecondFactorBackupCodesEntity = "UserSecondFactorBackupCodesEntity",
|
|
6157
|
+
UserSecondFactorDeviceEntity = "UserSecondFactorDeviceEntity"
|
|
6095
6158
|
}
|
|
6096
6159
|
/** An pending invitation sent to an email granting membership on an Account. */
|
|
6097
6160
|
export type UserInvitation = {
|
|
@@ -6176,6 +6239,11 @@ export type UserInvitationPublicDataQuery = {
|
|
|
6176
6239
|
export type UserInvitationPublicDataQueryByTokenArgs = {
|
|
6177
6240
|
token: Scalars['ID']['input'];
|
|
6178
6241
|
};
|
|
6242
|
+
export type UserLogNameTypeMapping = {
|
|
6243
|
+
__typename?: 'UserLogNameTypeMapping';
|
|
6244
|
+
publicName: Scalars['String']['output'];
|
|
6245
|
+
typeName: UserEntityTypeName;
|
|
6246
|
+
};
|
|
6179
6247
|
export type UserPermission = {
|
|
6180
6248
|
__typename?: 'UserPermission';
|
|
6181
6249
|
actor: Actor;
|
|
@@ -6425,7 +6493,7 @@ export type WorkerDeploymentCrashesAggregationNode = {
|
|
|
6425
6493
|
distinctCrashes: Scalars['Int']['output'];
|
|
6426
6494
|
firstOccurredAt: Scalars['DateTime']['output'];
|
|
6427
6495
|
mostRecentlyOccurredAt: Scalars['DateTime']['output'];
|
|
6428
|
-
sampleRate
|
|
6496
|
+
sampleRate?: Maybe<Scalars['Float']['output']>;
|
|
6429
6497
|
};
|
|
6430
6498
|
export type WorkerDeploymentCrashesHashEdge = {
|
|
6431
6499
|
__typename?: 'WorkerDeploymentCrashesHashEdge';
|
|
@@ -6589,7 +6657,7 @@ export type WorkerDeploymentRequestsAggregationNode = {
|
|
|
6589
6657
|
durationP99: Scalars['Float']['output'];
|
|
6590
6658
|
requestsPerMs?: Maybe<Scalars['Float']['output']>;
|
|
6591
6659
|
requestsSum: Scalars['Int']['output'];
|
|
6592
|
-
sampleRate
|
|
6660
|
+
sampleRate?: Maybe<Scalars['Float']['output']>;
|
|
6593
6661
|
serverErrorRatio: Scalars['Float']['output'];
|
|
6594
6662
|
serverErrorRatioP50: Scalars['Float']['output'];
|
|
6595
6663
|
serverErrorRatioP90: Scalars['Float']['output'];
|
|
@@ -6672,8 +6740,44 @@ export type Workflow = {
|
|
|
6672
6740
|
fileName: Scalars['String']['output'];
|
|
6673
6741
|
id: Scalars['ID']['output'];
|
|
6674
6742
|
name?: Maybe<Scalars['String']['output']>;
|
|
6675
|
-
|
|
6743
|
+
revisionsPaginated: WorkflowRevisionsConnection;
|
|
6744
|
+
runsPaginated: WorkflowRunsConnection;
|
|
6745
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
6746
|
+
};
|
|
6747
|
+
export type WorkflowRevisionsPaginatedArgs = {
|
|
6748
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6749
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
6750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6751
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6752
|
+
};
|
|
6753
|
+
export type WorkflowRunsPaginatedArgs = {
|
|
6754
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6755
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
6756
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6757
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6758
|
+
};
|
|
6759
|
+
export type WorkflowJob = {
|
|
6760
|
+
__typename?: 'WorkflowJob';
|
|
6761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
6762
|
+
credentialsAppleDeviceRegistrationRequest?: Maybe<AppleDeviceRegistrationRequest>;
|
|
6763
|
+
errors: Array<WorkflowJobError>;
|
|
6764
|
+
id: Scalars['ID']['output'];
|
|
6765
|
+
key: Scalars['String']['output'];
|
|
6766
|
+
name: Scalars['String']['output'];
|
|
6767
|
+
outputs: Scalars['JSONObject']['output'];
|
|
6768
|
+
requiredJobKeys: Array<Scalars['String']['output']>;
|
|
6769
|
+
status: WorkflowJobStatus;
|
|
6770
|
+
turtleBuild?: Maybe<Build>;
|
|
6771
|
+
turtleJobRun?: Maybe<JobRun>;
|
|
6772
|
+
turtleSubmission?: Maybe<Submission>;
|
|
6773
|
+
type: WorkflowJobType;
|
|
6676
6774
|
updatedAt: Scalars['DateTime']['output'];
|
|
6775
|
+
workflowRun: WorkflowRun;
|
|
6776
|
+
};
|
|
6777
|
+
export type WorkflowJobError = {
|
|
6778
|
+
__typename?: 'WorkflowJobError';
|
|
6779
|
+
message: Scalars['String']['output'];
|
|
6780
|
+
title: Scalars['String']['output'];
|
|
6677
6781
|
};
|
|
6678
6782
|
export type WorkflowJobMutation = {
|
|
6679
6783
|
__typename?: 'WorkflowJobMutation';
|
|
@@ -6682,6 +6786,39 @@ export type WorkflowJobMutation = {
|
|
|
6682
6786
|
export type WorkflowJobMutationApproveWorkflowJobArgs = {
|
|
6683
6787
|
workflowJobId: Scalars['ID']['input'];
|
|
6684
6788
|
};
|
|
6789
|
+
export type WorkflowJobQuery = {
|
|
6790
|
+
__typename?: 'WorkflowJobQuery';
|
|
6791
|
+
byId: WorkflowJob;
|
|
6792
|
+
};
|
|
6793
|
+
export type WorkflowJobQueryByIdArgs = {
|
|
6794
|
+
workflowJobId: Scalars['ID']['input'];
|
|
6795
|
+
};
|
|
6796
|
+
export declare enum WorkflowJobStatus {
|
|
6797
|
+
ActionRequired = "ACTION_REQUIRED",
|
|
6798
|
+
Canceled = "CANCELED",
|
|
6799
|
+
Failure = "FAILURE",
|
|
6800
|
+
InProgress = "IN_PROGRESS",
|
|
6801
|
+
New = "NEW",
|
|
6802
|
+
Skipped = "SKIPPED",
|
|
6803
|
+
Success = "SUCCESS"
|
|
6804
|
+
}
|
|
6805
|
+
export declare enum WorkflowJobType {
|
|
6806
|
+
AppleDeviceRegistrationRequest = "APPLE_DEVICE_REGISTRATION_REQUEST",
|
|
6807
|
+
Build = "BUILD",
|
|
6808
|
+
Custom = "CUSTOM",
|
|
6809
|
+
MaestroTest = "MAESTRO_TEST",
|
|
6810
|
+
RequireApproval = "REQUIRE_APPROVAL",
|
|
6811
|
+
Submission = "SUBMISSION",
|
|
6812
|
+
Update = "UPDATE"
|
|
6813
|
+
}
|
|
6814
|
+
export type WorkflowProjectSourceInput = {
|
|
6815
|
+
easJsonBucketKey: Scalars['String']['input'];
|
|
6816
|
+
projectArchiveBucketKey: Scalars['String']['input'];
|
|
6817
|
+
type: WorkflowProjectSourceType;
|
|
6818
|
+
};
|
|
6819
|
+
export declare enum WorkflowProjectSourceType {
|
|
6820
|
+
Gcs = "GCS"
|
|
6821
|
+
}
|
|
6685
6822
|
/** Look up Workflow by ID */
|
|
6686
6823
|
export type WorkflowQuery = {
|
|
6687
6824
|
__typename?: 'WorkflowQuery';
|
|
@@ -6694,12 +6831,21 @@ export type WorkflowQueryByIdArgs = {
|
|
|
6694
6831
|
export type WorkflowRevision = {
|
|
6695
6832
|
__typename?: 'WorkflowRevision';
|
|
6696
6833
|
blobSha: Scalars['String']['output'];
|
|
6697
|
-
commitSha
|
|
6834
|
+
commitSha?: Maybe<Scalars['String']['output']>;
|
|
6698
6835
|
createdAt: Scalars['DateTime']['output'];
|
|
6699
6836
|
id: Scalars['ID']['output'];
|
|
6700
6837
|
workflow: Workflow;
|
|
6701
6838
|
yamlConfig: Scalars['String']['output'];
|
|
6702
6839
|
};
|
|
6840
|
+
export type WorkflowRevisionEdge = {
|
|
6841
|
+
__typename?: 'WorkflowRevisionEdge';
|
|
6842
|
+
cursor: Scalars['String']['output'];
|
|
6843
|
+
node: WorkflowRevision;
|
|
6844
|
+
};
|
|
6845
|
+
export type WorkflowRevisionInput = {
|
|
6846
|
+
fileName: Scalars['String']['input'];
|
|
6847
|
+
yamlConfig: Scalars['String']['input'];
|
|
6848
|
+
};
|
|
6703
6849
|
export type WorkflowRevisionQuery = {
|
|
6704
6850
|
__typename?: 'WorkflowRevisionQuery';
|
|
6705
6851
|
byId: WorkflowRevision;
|
|
@@ -6707,6 +6853,65 @@ export type WorkflowRevisionQuery = {
|
|
|
6707
6853
|
export type WorkflowRevisionQueryByIdArgs = {
|
|
6708
6854
|
workflowRevisionId: Scalars['ID']['input'];
|
|
6709
6855
|
};
|
|
6856
|
+
export type WorkflowRevisionsConnection = {
|
|
6857
|
+
__typename?: 'WorkflowRevisionsConnection';
|
|
6858
|
+
edges: Array<WorkflowRevisionEdge>;
|
|
6859
|
+
pageInfo: PageInfo;
|
|
6860
|
+
};
|
|
6861
|
+
export type WorkflowRun = {
|
|
6862
|
+
__typename?: 'WorkflowRun';
|
|
6863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
6864
|
+
gitCommitHash?: Maybe<Scalars['String']['output']>;
|
|
6865
|
+
gitCommitMessage?: Maybe<Scalars['String']['output']>;
|
|
6866
|
+
githubRepository?: Maybe<GitHubRepository>;
|
|
6867
|
+
id: Scalars['ID']['output'];
|
|
6868
|
+
initiatingUser?: Maybe<User>;
|
|
6869
|
+
jobs: Array<WorkflowJob>;
|
|
6870
|
+
name: Scalars['String']['output'];
|
|
6871
|
+
pullRequestNumber?: Maybe<Scalars['Int']['output']>;
|
|
6872
|
+
requestedGitRef?: Maybe<Scalars['String']['output']>;
|
|
6873
|
+
status: WorkflowRunStatus;
|
|
6874
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
6875
|
+
workflow: Workflow;
|
|
6876
|
+
workflowRevision?: Maybe<WorkflowRevision>;
|
|
6877
|
+
};
|
|
6878
|
+
export type WorkflowRunEdge = {
|
|
6879
|
+
__typename?: 'WorkflowRunEdge';
|
|
6880
|
+
cursor: Scalars['String']['output'];
|
|
6881
|
+
node: WorkflowRun;
|
|
6882
|
+
};
|
|
6883
|
+
export type WorkflowRunInput = {
|
|
6884
|
+
projectSource: WorkflowProjectSourceInput;
|
|
6885
|
+
};
|
|
6886
|
+
export type WorkflowRunMutation = {
|
|
6887
|
+
__typename?: 'WorkflowRunMutation';
|
|
6888
|
+
createWorkflowRun: WorkflowRun;
|
|
6889
|
+
};
|
|
6890
|
+
export type WorkflowRunMutationCreateWorkflowRunArgs = {
|
|
6891
|
+
appId: Scalars['ID']['input'];
|
|
6892
|
+
workflowRevisionInput: WorkflowRevisionInput;
|
|
6893
|
+
workflowRunInput: WorkflowRunInput;
|
|
6894
|
+
};
|
|
6895
|
+
export type WorkflowRunQuery = {
|
|
6896
|
+
__typename?: 'WorkflowRunQuery';
|
|
6897
|
+
byId: WorkflowRun;
|
|
6898
|
+
};
|
|
6899
|
+
export type WorkflowRunQueryByIdArgs = {
|
|
6900
|
+
workflowRunId: Scalars['ID']['input'];
|
|
6901
|
+
};
|
|
6902
|
+
export declare enum WorkflowRunStatus {
|
|
6903
|
+
ActionRequired = "ACTION_REQUIRED",
|
|
6904
|
+
Canceled = "CANCELED",
|
|
6905
|
+
Failure = "FAILURE",
|
|
6906
|
+
InProgress = "IN_PROGRESS",
|
|
6907
|
+
New = "NEW",
|
|
6908
|
+
Success = "SUCCESS"
|
|
6909
|
+
}
|
|
6910
|
+
export type WorkflowRunsConnection = {
|
|
6911
|
+
__typename?: 'WorkflowRunsConnection';
|
|
6912
|
+
edges: Array<WorkflowRunEdge>;
|
|
6913
|
+
pageInfo: PageInfo;
|
|
6914
|
+
};
|
|
6710
6915
|
export type DeleteAndroidAppBuildCredentialsResult = {
|
|
6711
6916
|
__typename?: 'deleteAndroidAppBuildCredentialsResult';
|
|
6712
6917
|
id: Scalars['ID']['output'];
|
|
@@ -11329,6 +11534,17 @@ export type CreateUploadSessionMutation = {
|
|
|
11329
11534
|
createUploadSession: any;
|
|
11330
11535
|
};
|
|
11331
11536
|
};
|
|
11537
|
+
export type CreateAccountScopedUploadSessionMutationVariables = Exact<{
|
|
11538
|
+
accountID: Scalars['ID']['input'];
|
|
11539
|
+
type: AccountUploadSessionType;
|
|
11540
|
+
}>;
|
|
11541
|
+
export type CreateAccountScopedUploadSessionMutation = {
|
|
11542
|
+
__typename?: 'RootMutation';
|
|
11543
|
+
uploadSession: {
|
|
11544
|
+
__typename?: 'UploadSession';
|
|
11545
|
+
createAccountScopedUploadSession: any;
|
|
11546
|
+
};
|
|
11547
|
+
};
|
|
11332
11548
|
export type MarkCliDoneInOnboardingUserPreferencesMutationVariables = Exact<{
|
|
11333
11549
|
preferences: UserPreferencesInput;
|
|
11334
11550
|
}>;
|
|
@@ -11395,6 +11611,21 @@ export type DeleteWebhookMutation = {
|
|
|
11395
11611
|
};
|
|
11396
11612
|
};
|
|
11397
11613
|
};
|
|
11614
|
+
export type CreateWorkflowRunMutationVariables = Exact<{
|
|
11615
|
+
appId: Scalars['ID']['input'];
|
|
11616
|
+
workflowRevisionInput: WorkflowRevisionInput;
|
|
11617
|
+
workflowRunInput: WorkflowRunInput;
|
|
11618
|
+
}>;
|
|
11619
|
+
export type CreateWorkflowRunMutation = {
|
|
11620
|
+
__typename?: 'RootMutation';
|
|
11621
|
+
workflowRun: {
|
|
11622
|
+
__typename?: 'WorkflowRunMutation';
|
|
11623
|
+
createWorkflowRun: {
|
|
11624
|
+
__typename?: 'WorkflowRun';
|
|
11625
|
+
id: string;
|
|
11626
|
+
};
|
|
11627
|
+
};
|
|
11628
|
+
};
|
|
11398
11629
|
export type AppByIdQueryVariables = Exact<{
|
|
11399
11630
|
appId: Scalars['String']['input'];
|
|
11400
11631
|
}>;
|
|
@@ -12248,6 +12479,11 @@ export type EnvironmentVariablesIncludingSensitiveByAppIdQuery = {
|
|
|
12248
12479
|
name: string;
|
|
12249
12480
|
value?: string | null;
|
|
12250
12481
|
environments?: Array<EnvironmentVariableEnvironment> | null;
|
|
12482
|
+
createdAt: any;
|
|
12483
|
+
updatedAt: any;
|
|
12484
|
+
scope: EnvironmentVariableScope;
|
|
12485
|
+
visibility: EnvironmentVariableVisibility;
|
|
12486
|
+
type: EnvironmentSecretType;
|
|
12251
12487
|
valueWithFileContent?: string | null;
|
|
12252
12488
|
}>;
|
|
12253
12489
|
};
|
|
@@ -12339,6 +12575,11 @@ export type EnvironmentVariablesSharedWithSensitiveQuery = {
|
|
|
12339
12575
|
name: string;
|
|
12340
12576
|
value?: string | null;
|
|
12341
12577
|
environments?: Array<EnvironmentVariableEnvironment> | null;
|
|
12578
|
+
createdAt: any;
|
|
12579
|
+
updatedAt: any;
|
|
12580
|
+
scope: EnvironmentVariableScope;
|
|
12581
|
+
visibility: EnvironmentVariableVisibility;
|
|
12582
|
+
type: EnvironmentSecretType;
|
|
12342
12583
|
valueWithFileContent?: string | null;
|
|
12343
12584
|
}>;
|
|
12344
12585
|
};
|
|
@@ -13207,6 +13448,18 @@ export type EnvironmentVariableFragment = {
|
|
|
13207
13448
|
visibility?: EnvironmentVariableVisibility | null;
|
|
13208
13449
|
type: EnvironmentSecretType;
|
|
13209
13450
|
};
|
|
13451
|
+
export type EnvironmentVariableWithSecretFragment = {
|
|
13452
|
+
__typename?: 'EnvironmentVariableWithSecret';
|
|
13453
|
+
id: string;
|
|
13454
|
+
name: string;
|
|
13455
|
+
value?: string | null;
|
|
13456
|
+
environments?: Array<EnvironmentVariableEnvironment> | null;
|
|
13457
|
+
createdAt: any;
|
|
13458
|
+
updatedAt: any;
|
|
13459
|
+
scope: EnvironmentVariableScope;
|
|
13460
|
+
visibility: EnvironmentVariableVisibility;
|
|
13461
|
+
type: EnvironmentSecretType;
|
|
13462
|
+
};
|
|
13210
13463
|
export type RuntimeFragment = {
|
|
13211
13464
|
__typename?: 'Runtime';
|
|
13212
13465
|
id: string;
|