eas-cli 10.2.2 → 10.2.4
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 +60 -60
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +1 -0
- package/build/build/runBuildAndSubmit.js +11 -0
- package/build/commandUtils/flags.d.ts +13 -0
- package/build/commandUtils/flags.js +47 -1
- package/build/commands/env/create.d.ts +23 -0
- package/build/commands/env/create.js +164 -0
- package/build/commands/env/delete.d.ts +18 -0
- package/build/commands/env/delete.js +92 -0
- package/build/commands/env/get.d.ts +19 -0
- package/build/commands/env/get.js +92 -0
- package/build/commands/env/link.d.ts +15 -0
- package/build/commands/env/link.js +57 -0
- package/build/commands/env/list.d.ts +16 -0
- package/build/commands/env/list.js +55 -0
- package/build/commands/env/unlink.d.ts +15 -0
- package/build/commands/env/unlink.js +62 -0
- package/build/commands/env/update.d.ts +21 -0
- package/build/commands/env/update.js +130 -0
- package/build/env.d.ts +5 -0
- package/build/env.js +5 -0
- package/build/graphql/generated.d.ts +555 -52
- package/build/graphql/generated.js +42 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +38 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.js +113 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +13 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.js +83 -0
- package/build/graphql/types/EnvironmentVariable.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariable.js +16 -0
- package/build/project/ios/bundleIdentifier.js +4 -0
- package/build/utils/formatVariable.d.ts +2 -0
- package/build/utils/formatVariable.js +16 -0
- package/build/utils/prompts.d.ts +9 -0
- package/build/utils/prompts.js +68 -0
- package/oclif.manifest.json +410 -1
- package/package.json +5 -5
|
@@ -149,6 +149,8 @@ export type Account = {
|
|
|
149
149
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
150
150
|
/** Environment variables for an account */
|
|
151
151
|
environmentVariables: Array<EnvironmentVariable>;
|
|
152
|
+
/** Environment variables for an account with decrypted secret values */
|
|
153
|
+
environmentVariablesIncludingSensitive: Array<EnvironmentVariableWithSecret>;
|
|
152
154
|
/** GitHub App installations for an account */
|
|
153
155
|
githubAppInstallations: Array<GitHubAppInstallation>;
|
|
154
156
|
/** @deprecated Use googleServiceAccountKeysPaginated */
|
|
@@ -354,6 +356,13 @@ export type AccountEnvironmentSecretsArgs = {
|
|
|
354
356
|
export type AccountEnvironmentVariablesArgs = {
|
|
355
357
|
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
356
358
|
};
|
|
359
|
+
/**
|
|
360
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
361
|
+
* data and settings. Actors may own and be members of accounts.
|
|
362
|
+
*/
|
|
363
|
+
export type AccountEnvironmentVariablesIncludingSensitiveArgs = {
|
|
364
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
365
|
+
};
|
|
357
366
|
/**
|
|
358
367
|
* An account is a container owning projects, credentials, billing and other organization
|
|
359
368
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -480,17 +489,12 @@ export type AccountGoogleServiceAccountKeysEdge = {
|
|
|
480
489
|
};
|
|
481
490
|
export type AccountMutation = {
|
|
482
491
|
__typename?: 'AccountMutation';
|
|
483
|
-
/**
|
|
484
|
-
* Makes a one time purchase
|
|
485
|
-
* @deprecated Build packs are no longer supported
|
|
486
|
-
*/
|
|
487
|
-
buyProduct?: Maybe<Account>;
|
|
488
492
|
/** Cancels all subscriptions immediately */
|
|
489
493
|
cancelAllSubscriptionsImmediately: Account;
|
|
490
494
|
/** Cancel scheduled subscription change */
|
|
491
495
|
cancelScheduledSubscriptionChange: Account;
|
|
492
|
-
/**
|
|
493
|
-
|
|
496
|
+
/** Buys or revokes account's additional concurrencies, charging the account the appropriate amount if needed. */
|
|
497
|
+
changeAdditionalConcurrenciesCount: Account;
|
|
494
498
|
/** Upgrades or downgrades the active subscription to the newPlanIdentifier, which must be one of the EAS plans (i.e., Production or Enterprise). */
|
|
495
499
|
changePlan: Account;
|
|
496
500
|
/** Add specified account Permissions for Actor. Actor must already have at least one permission on the account. */
|
|
@@ -501,30 +505,18 @@ export type AccountMutation = {
|
|
|
501
505
|
requestRefund?: Maybe<Scalars['Boolean']['output']>;
|
|
502
506
|
/** Revoke specified Permissions for Actor. Actor must already have at least one permission on the account. */
|
|
503
507
|
revokeActorPermissions: Account;
|
|
504
|
-
/**
|
|
505
|
-
* Update setting to purchase new build packs when the current one is consumed
|
|
506
|
-
* @deprecated Build packs are no longer supported
|
|
507
|
-
*/
|
|
508
|
-
setBuildAutoRenew?: Maybe<Account>;
|
|
509
|
-
/** Set payment details */
|
|
510
|
-
setPaymentSource: Account;
|
|
511
508
|
/** Require authorization to send push notifications for experiences owned by this account */
|
|
512
509
|
setPushSecurityEnabled: Account;
|
|
513
510
|
};
|
|
514
|
-
export type AccountMutationBuyProductArgs = {
|
|
515
|
-
accountName: Scalars['ID']['input'];
|
|
516
|
-
autoRenew?: InputMaybe<Scalars['Boolean']['input']>;
|
|
517
|
-
paymentSource?: InputMaybe<Scalars['ID']['input']>;
|
|
518
|
-
productId: Scalars['ID']['input'];
|
|
519
|
-
};
|
|
520
511
|
export type AccountMutationCancelAllSubscriptionsImmediatelyArgs = {
|
|
521
512
|
accountID: Scalars['ID']['input'];
|
|
522
513
|
};
|
|
523
514
|
export type AccountMutationCancelScheduledSubscriptionChangeArgs = {
|
|
524
515
|
accountID: Scalars['ID']['input'];
|
|
525
516
|
};
|
|
526
|
-
export type
|
|
527
|
-
|
|
517
|
+
export type AccountMutationChangeAdditionalConcurrenciesCountArgs = {
|
|
518
|
+
accountID: Scalars['ID']['input'];
|
|
519
|
+
newAdditionalConcurrenciesCount: Scalars['Int']['input'];
|
|
528
520
|
};
|
|
529
521
|
export type AccountMutationChangePlanArgs = {
|
|
530
522
|
accountID: Scalars['ID']['input'];
|
|
@@ -551,14 +543,6 @@ export type AccountMutationRevokeActorPermissionsArgs = {
|
|
|
551
543
|
actorID: Scalars['ID']['input'];
|
|
552
544
|
permissions?: InputMaybe<Array<InputMaybe<Permission>>>;
|
|
553
545
|
};
|
|
554
|
-
export type AccountMutationSetBuildAutoRenewArgs = {
|
|
555
|
-
accountName: Scalars['ID']['input'];
|
|
556
|
-
autoRenew?: InputMaybe<Scalars['Boolean']['input']>;
|
|
557
|
-
};
|
|
558
|
-
export type AccountMutationSetPaymentSourceArgs = {
|
|
559
|
-
accountName: Scalars['ID']['input'];
|
|
560
|
-
paymentSource: Scalars['ID']['input'];
|
|
561
|
-
};
|
|
562
546
|
export type AccountMutationSetPushSecurityEnabledArgs = {
|
|
563
547
|
accountID: Scalars['ID']['input'];
|
|
564
548
|
pushSecurityEnabled: Scalars['Boolean']['input'];
|
|
@@ -758,6 +742,7 @@ export type AddonDetails = {
|
|
|
758
742
|
name: Scalars['String']['output'];
|
|
759
743
|
nextInvoice?: Maybe<Scalars['DateTime']['output']>;
|
|
760
744
|
planId: Scalars['String']['output'];
|
|
745
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
761
746
|
willCancel?: Maybe<Scalars['Boolean']['output']>;
|
|
762
747
|
};
|
|
763
748
|
export type Address = {
|
|
@@ -1089,6 +1074,8 @@ export type App = Project & {
|
|
|
1089
1074
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
1090
1075
|
/** Environment variables for an app */
|
|
1091
1076
|
environmentVariables: Array<EnvironmentVariable>;
|
|
1077
|
+
/** Environment variables for an app with decrypted secret values */
|
|
1078
|
+
environmentVariablesIncludingSensitive: Array<EnvironmentVariableWithSecret>;
|
|
1092
1079
|
fullName: Scalars['String']['output'];
|
|
1093
1080
|
githubBuildTriggers: Array<GitHubBuildTrigger>;
|
|
1094
1081
|
githubJobRunTriggers: Array<GitHubJobRunTrigger>;
|
|
@@ -1112,6 +1099,7 @@ export type App = Project & {
|
|
|
1112
1099
|
internalDistributionBuildPrivacy: AppInternalDistributionBuildPrivacy;
|
|
1113
1100
|
/** iOS app credentials for the project */
|
|
1114
1101
|
iosAppCredentials: Array<IosAppCredentials>;
|
|
1102
|
+
/** @deprecated Use lastDeletionAttemptTime !== null instead */
|
|
1115
1103
|
isDeleting: Scalars['Boolean']['output'];
|
|
1116
1104
|
/**
|
|
1117
1105
|
* Whether the latest classic update publish is using a deprecated SDK version
|
|
@@ -1207,7 +1195,13 @@ export type App = Project & {
|
|
|
1207
1195
|
users?: Maybe<Array<Maybe<User>>>;
|
|
1208
1196
|
/** Webhooks for an app */
|
|
1209
1197
|
webhooks: Array<Webhook>;
|
|
1198
|
+
workerCustomDomain?: Maybe<WorkerCustomDomain>;
|
|
1199
|
+
workerDeployment?: Maybe<WorkerDeployment>;
|
|
1200
|
+
workerDeploymentAlias?: Maybe<WorkerDeploymentAlias>;
|
|
1201
|
+
workerDeploymentAliases: WorkerDeploymentAliasesConnection;
|
|
1210
1202
|
workerDeployments: WorkerDeploymentsConnection;
|
|
1203
|
+
workerDeploymentsCrashes?: Maybe<WorkerDeploymentCrashes>;
|
|
1204
|
+
workerDeploymentsMetrics?: Maybe<WorkerDeploymentMetrics>;
|
|
1211
1205
|
};
|
|
1212
1206
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1213
1207
|
export type AppActivityTimelineProjectActivitiesArgs = {
|
|
@@ -1273,7 +1267,12 @@ export type AppEnvironmentSecretsArgs = {
|
|
|
1273
1267
|
};
|
|
1274
1268
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1275
1269
|
export type AppEnvironmentVariablesArgs = {
|
|
1276
|
-
environment
|
|
1270
|
+
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
1271
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1272
|
+
};
|
|
1273
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1274
|
+
export type AppEnvironmentVariablesIncludingSensitiveArgs = {
|
|
1275
|
+
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
1277
1276
|
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1278
1277
|
};
|
|
1279
1278
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
@@ -1364,12 +1363,36 @@ export type AppWebhooksArgs = {
|
|
|
1364
1363
|
filter?: InputMaybe<WebhookFilter>;
|
|
1365
1364
|
};
|
|
1366
1365
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1366
|
+
export type AppWorkerDeploymentArgs = {
|
|
1367
|
+
deploymentIdentifier: Scalars['String']['input'];
|
|
1368
|
+
};
|
|
1369
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1370
|
+
export type AppWorkerDeploymentAliasArgs = {
|
|
1371
|
+
aliasName?: InputMaybe<Scalars['String']['input']>;
|
|
1372
|
+
};
|
|
1373
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1374
|
+
export type AppWorkerDeploymentAliasesArgs = {
|
|
1375
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1376
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1377
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1378
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1379
|
+
};
|
|
1380
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1367
1381
|
export type AppWorkerDeploymentsArgs = {
|
|
1368
1382
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
1369
1383
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
1370
1384
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1371
1385
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1372
1386
|
};
|
|
1387
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1388
|
+
export type AppWorkerDeploymentsCrashesArgs = {
|
|
1389
|
+
limit?: Scalars['Int']['input'];
|
|
1390
|
+
timespan: CrashesTimespan;
|
|
1391
|
+
};
|
|
1392
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1393
|
+
export type AppWorkerDeploymentsMetricsArgs = {
|
|
1394
|
+
timespan: MetricsTimespan;
|
|
1395
|
+
};
|
|
1373
1396
|
export type AppBranchEdge = {
|
|
1374
1397
|
__typename?: 'AppBranchEdge';
|
|
1375
1398
|
cursor: Scalars['String']['output'];
|
|
@@ -1465,12 +1488,14 @@ export declare enum AppInternalDistributionBuildPrivacy {
|
|
|
1465
1488
|
}
|
|
1466
1489
|
export type AppMutation = {
|
|
1467
1490
|
__typename?: 'AppMutation';
|
|
1468
|
-
/** Create an
|
|
1491
|
+
/** Create an app */
|
|
1469
1492
|
createApp: App;
|
|
1470
|
-
/** Create an
|
|
1493
|
+
/** Create an app and GitHub repository if user desire to */
|
|
1471
1494
|
createAppAndGithubRepository: CreateAppAndGithubRepositoryResponse;
|
|
1472
1495
|
/** @deprecated No longer supported */
|
|
1473
1496
|
grantAccess?: Maybe<App>;
|
|
1497
|
+
/** Delete an App. Returns the ID of the background job receipt. Use BackgroundJobReceiptQuery to get the status of the job. */
|
|
1498
|
+
scheduleAppDeletion: BackgroundJobReceipt;
|
|
1474
1499
|
/** Set display info for app */
|
|
1475
1500
|
setAppInfo: App;
|
|
1476
1501
|
/** Require api token to send push notifs for experience */
|
|
@@ -1488,6 +1513,9 @@ export type AppMutationGrantAccessArgs = {
|
|
|
1488
1513
|
accessLevel?: InputMaybe<Scalars['String']['input']>;
|
|
1489
1514
|
toUser: Scalars['ID']['input'];
|
|
1490
1515
|
};
|
|
1516
|
+
export type AppMutationScheduleAppDeletionArgs = {
|
|
1517
|
+
appId: Scalars['ID']['input'];
|
|
1518
|
+
};
|
|
1491
1519
|
export type AppMutationSetAppInfoArgs = {
|
|
1492
1520
|
appId: Scalars['ID']['input'];
|
|
1493
1521
|
appInfo: AppInfoInput;
|
|
@@ -1524,10 +1552,19 @@ export type AppPushNotificationsInsights = {
|
|
|
1524
1552
|
__typename?: 'AppPushNotificationsInsights';
|
|
1525
1553
|
id: Scalars['ID']['output'];
|
|
1526
1554
|
notificationsSentOverTime: NotificationsSentOverTimeData;
|
|
1555
|
+
successFailureOverTime: NotificationsSentOverTimeData;
|
|
1556
|
+
totalNotificationsSent: Scalars['Int']['output'];
|
|
1527
1557
|
};
|
|
1528
1558
|
export type AppPushNotificationsInsightsNotificationsSentOverTimeArgs = {
|
|
1529
1559
|
timespan: InsightsTimespan;
|
|
1530
1560
|
};
|
|
1561
|
+
export type AppPushNotificationsInsightsSuccessFailureOverTimeArgs = {
|
|
1562
|
+
timespan: InsightsTimespan;
|
|
1563
|
+
};
|
|
1564
|
+
export type AppPushNotificationsInsightsTotalNotificationsSentArgs = {
|
|
1565
|
+
filters?: InputMaybe<Array<Scalars['JSON']['input']>>;
|
|
1566
|
+
timespan: InsightsTimespan;
|
|
1567
|
+
};
|
|
1531
1568
|
export type AppQuery = {
|
|
1532
1569
|
__typename?: 'AppQuery';
|
|
1533
1570
|
/**
|
|
@@ -2035,8 +2072,8 @@ export type AuditLog = {
|
|
|
2035
2072
|
};
|
|
2036
2073
|
export type AuditLogExportInput = {
|
|
2037
2074
|
accountId: Scalars['ID']['input'];
|
|
2038
|
-
createdAfter: Scalars['
|
|
2039
|
-
createdBefore: Scalars['
|
|
2075
|
+
createdAfter: Scalars['String']['input'];
|
|
2076
|
+
createdBefore: Scalars['String']['input'];
|
|
2040
2077
|
format: AuditLogsExportFormat;
|
|
2041
2078
|
};
|
|
2042
2079
|
export type AuditLogMutation = {
|
|
@@ -2051,17 +2088,12 @@ export type AuditLogQuery = {
|
|
|
2051
2088
|
__typename?: 'AuditLogQuery';
|
|
2052
2089
|
/** Query Audit Logs by account ID */
|
|
2053
2090
|
byAccountId: Array<AuditLog>;
|
|
2054
|
-
/** Query an Audit Log by ID */
|
|
2055
|
-
byId: AuditLog;
|
|
2056
2091
|
};
|
|
2057
2092
|
export type AuditLogQueryByAccountIdArgs = {
|
|
2058
2093
|
accountId: Scalars['ID']['input'];
|
|
2059
2094
|
limit: Scalars['Int']['input'];
|
|
2060
2095
|
offset: Scalars['Int']['input'];
|
|
2061
2096
|
};
|
|
2062
|
-
export type AuditLogQueryByIdArgs = {
|
|
2063
|
-
auditLogId: Scalars['ID']['input'];
|
|
2064
|
-
};
|
|
2065
2097
|
export declare enum AuditLogsExportFormat {
|
|
2066
2098
|
Csv = "CSV",
|
|
2067
2099
|
Json = "JSON",
|
|
@@ -2074,7 +2106,8 @@ export declare enum AuthProviderIdentifier {
|
|
|
2074
2106
|
GoogleWs = "GOOGLE_WS",
|
|
2075
2107
|
MsEntraId = "MS_ENTRA_ID",
|
|
2076
2108
|
Okta = "OKTA",
|
|
2077
|
-
OneLogin = "ONE_LOGIN"
|
|
2109
|
+
OneLogin = "ONE_LOGIN",
|
|
2110
|
+
StubIdp = "STUB_IDP"
|
|
2078
2111
|
}
|
|
2079
2112
|
export type BackgroundJobReceipt = {
|
|
2080
2113
|
__typename?: 'BackgroundJobReceipt';
|
|
@@ -2274,6 +2307,7 @@ export type BuildArtifacts = {
|
|
|
2274
2307
|
applicationArchiveUrl?: Maybe<Scalars['String']['output']>;
|
|
2275
2308
|
buildArtifactsUrl?: Maybe<Scalars['String']['output']>;
|
|
2276
2309
|
buildUrl?: Maybe<Scalars['String']['output']>;
|
|
2310
|
+
fingerprintUrl?: Maybe<Scalars['String']['output']>;
|
|
2277
2311
|
xcodeBuildLogsUrl?: Maybe<Scalars['String']['output']>;
|
|
2278
2312
|
};
|
|
2279
2313
|
export type BuildCacheInput = {
|
|
@@ -2342,6 +2376,7 @@ export type BuildMetadataInput = {
|
|
|
2342
2376
|
customWorkflowName?: InputMaybe<Scalars['String']['input']>;
|
|
2343
2377
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2344
2378
|
distribution?: InputMaybe<DistributionType>;
|
|
2379
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
2345
2380
|
fingerprintSource?: InputMaybe<FingerprintSourceInput>;
|
|
2346
2381
|
gitCommitHash?: InputMaybe<Scalars['String']['input']>;
|
|
2347
2382
|
gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2636,6 +2671,10 @@ export type Concurrencies = {
|
|
|
2636
2671
|
ios: Scalars['Int']['output'];
|
|
2637
2672
|
total: Scalars['Int']['output'];
|
|
2638
2673
|
};
|
|
2674
|
+
export type CrashesTimespan = {
|
|
2675
|
+
end: Scalars['DateTime']['input'];
|
|
2676
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2677
|
+
};
|
|
2639
2678
|
export type CreateAccessTokenInput = {
|
|
2640
2679
|
actorID: Scalars['ID']['input'];
|
|
2641
2680
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2672,8 +2711,9 @@ export type CreateEnvironmentSecretInput = {
|
|
|
2672
2711
|
export type CreateEnvironmentVariableInput = {
|
|
2673
2712
|
environment: EnvironmentVariableEnvironment;
|
|
2674
2713
|
name: Scalars['String']['input'];
|
|
2675
|
-
|
|
2714
|
+
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2676
2715
|
value: Scalars['String']['input'];
|
|
2716
|
+
visibility: EnvironmentVariableVisibility;
|
|
2677
2717
|
};
|
|
2678
2718
|
export type CreateGitHubAppInstallationInput = {
|
|
2679
2719
|
accountId: Scalars['ID']['input'];
|
|
@@ -2725,8 +2765,9 @@ export type CreateServerlessFunctionUploadUrlResult = {
|
|
|
2725
2765
|
};
|
|
2726
2766
|
export type CreateSharedEnvironmentVariableInput = {
|
|
2727
2767
|
name: Scalars['String']['input'];
|
|
2728
|
-
|
|
2768
|
+
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2729
2769
|
value: Scalars['String']['input'];
|
|
2770
|
+
visibility: EnvironmentVariableVisibility;
|
|
2730
2771
|
};
|
|
2731
2772
|
export type CreateSubmissionResult = {
|
|
2732
2773
|
__typename?: 'CreateSubmissionResult';
|
|
@@ -2736,6 +2777,53 @@ export type CreateSubmissionResult = {
|
|
|
2736
2777
|
export type CustomBuildConfigInput = {
|
|
2737
2778
|
path: Scalars['String']['input'];
|
|
2738
2779
|
};
|
|
2780
|
+
export type CustomDomainDnsRecord = {
|
|
2781
|
+
__typename?: 'CustomDomainDNSRecord';
|
|
2782
|
+
dnsContent: Scalars['String']['output'];
|
|
2783
|
+
dnsName: Scalars['String']['output'];
|
|
2784
|
+
dnsType: CustomDomainDnsRecordType;
|
|
2785
|
+
};
|
|
2786
|
+
export declare enum CustomDomainDnsRecordType {
|
|
2787
|
+
Cname = "CNAME",
|
|
2788
|
+
Txt = "TXT"
|
|
2789
|
+
}
|
|
2790
|
+
export type CustomDomainMetadata = {
|
|
2791
|
+
__typename?: 'CustomDomainMetadata';
|
|
2792
|
+
ownershipVerification?: Maybe<CustomDomainDnsRecord>;
|
|
2793
|
+
status: CustomDomainStatus;
|
|
2794
|
+
verificationErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
2795
|
+
};
|
|
2796
|
+
export type CustomDomainMutation = {
|
|
2797
|
+
__typename?: 'CustomDomainMutation';
|
|
2798
|
+
deleteCustomDomain: DeleteCustomDomainResult;
|
|
2799
|
+
refreshCustomDomain: WorkerCustomDomain;
|
|
2800
|
+
registerCustomDomain: WorkerCustomDomain;
|
|
2801
|
+
};
|
|
2802
|
+
export type CustomDomainMutationDeleteCustomDomainArgs = {
|
|
2803
|
+
customDomainId: Scalars['ID']['input'];
|
|
2804
|
+
};
|
|
2805
|
+
export type CustomDomainMutationRefreshCustomDomainArgs = {
|
|
2806
|
+
customDomainId: Scalars['ID']['input'];
|
|
2807
|
+
};
|
|
2808
|
+
export type CustomDomainMutationRegisterCustomDomainArgs = {
|
|
2809
|
+
aliasName?: InputMaybe<Scalars['String']['input']>;
|
|
2810
|
+
appId: Scalars['ID']['input'];
|
|
2811
|
+
hostname: Scalars['String']['input'];
|
|
2812
|
+
};
|
|
2813
|
+
export declare enum CustomDomainStatus {
|
|
2814
|
+
Active = "ACTIVE",
|
|
2815
|
+
ActiveRedeploying = "ACTIVE_REDEPLOYING",
|
|
2816
|
+
Blocked = "BLOCKED",
|
|
2817
|
+
Deleted = "DELETED",
|
|
2818
|
+
Moved = "MOVED",
|
|
2819
|
+
Pending = "PENDING",
|
|
2820
|
+
PendingBlocked = "PENDING_BLOCKED",
|
|
2821
|
+
PendingDeletion = "PENDING_DELETION",
|
|
2822
|
+
PendingMigration = "PENDING_MIGRATION",
|
|
2823
|
+
PendingProvisioned = "PENDING_PROVISIONED",
|
|
2824
|
+
Provisioned = "PROVISIONED",
|
|
2825
|
+
Unknown = "UNKNOWN"
|
|
2826
|
+
}
|
|
2739
2827
|
export type DeleteAccessTokenResult = {
|
|
2740
2828
|
__typename?: 'DeleteAccessTokenResult';
|
|
2741
2829
|
id: Scalars['ID']['output'];
|
|
@@ -2748,6 +2836,11 @@ export type DeleteAccountSsoConfigurationResult = {
|
|
|
2748
2836
|
__typename?: 'DeleteAccountSSOConfigurationResult';
|
|
2749
2837
|
id: Scalars['ID']['output'];
|
|
2750
2838
|
};
|
|
2839
|
+
export type DeleteAliasResult = {
|
|
2840
|
+
__typename?: 'DeleteAliasResult';
|
|
2841
|
+
aliasName?: Maybe<Scalars['String']['output']>;
|
|
2842
|
+
id: Scalars['ID']['output'];
|
|
2843
|
+
};
|
|
2751
2844
|
export type DeleteAndroidAppCredentialsResult = {
|
|
2752
2845
|
__typename?: 'DeleteAndroidAppCredentialsResult';
|
|
2753
2846
|
id: Scalars['ID']['output'];
|
|
@@ -2772,6 +2865,12 @@ export type DeleteBuildAnnotationResult = {
|
|
|
2772
2865
|
__typename?: 'DeleteBuildAnnotationResult';
|
|
2773
2866
|
buildAnnotationId: Scalars['ID']['output'];
|
|
2774
2867
|
};
|
|
2868
|
+
export type DeleteCustomDomainResult = {
|
|
2869
|
+
__typename?: 'DeleteCustomDomainResult';
|
|
2870
|
+
appId: Scalars['ID']['output'];
|
|
2871
|
+
hostname: Scalars['String']['output'];
|
|
2872
|
+
id: Scalars['ID']['output'];
|
|
2873
|
+
};
|
|
2775
2874
|
export type DeleteDiscordUserResult = {
|
|
2776
2875
|
__typename?: 'DeleteDiscordUserResult';
|
|
2777
2876
|
id: Scalars['ID']['output'];
|
|
@@ -2906,13 +3005,24 @@ export type DeploymentsConnection = {
|
|
|
2906
3005
|
};
|
|
2907
3006
|
export type DeploymentsMutation = {
|
|
2908
3007
|
__typename?: 'DeploymentsMutation';
|
|
3008
|
+
assignAlias: WorkerDeploymentAlias;
|
|
2909
3009
|
/** Create a signed deployment URL */
|
|
2910
3010
|
createSignedDeploymentUrl: DeploymentSignedUrlResult;
|
|
3011
|
+
deleteAlias: DeleteAliasResult;
|
|
3012
|
+
};
|
|
3013
|
+
export type DeploymentsMutationAssignAliasArgs = {
|
|
3014
|
+
aliasName?: InputMaybe<Scalars['String']['input']>;
|
|
3015
|
+
appId: Scalars['ID']['input'];
|
|
3016
|
+
deploymentIdentifier: Scalars['ID']['input'];
|
|
2911
3017
|
};
|
|
2912
3018
|
export type DeploymentsMutationCreateSignedDeploymentUrlArgs = {
|
|
2913
3019
|
appId: Scalars['ID']['input'];
|
|
2914
3020
|
deploymentIdentifier?: InputMaybe<Scalars['ID']['input']>;
|
|
2915
3021
|
};
|
|
3022
|
+
export type DeploymentsMutationDeleteAliasArgs = {
|
|
3023
|
+
aliasName?: InputMaybe<Scalars['String']['input']>;
|
|
3024
|
+
appId: Scalars['ID']['input'];
|
|
3025
|
+
};
|
|
2916
3026
|
export type DiscordUser = {
|
|
2917
3027
|
__typename?: 'DiscordUser';
|
|
2918
3028
|
discordIdentifier: Scalars['String']['output'];
|
|
@@ -3030,6 +3140,7 @@ export declare enum EnvironmentSecretType {
|
|
|
3030
3140
|
}
|
|
3031
3141
|
export type EnvironmentVariable = {
|
|
3032
3142
|
__typename?: 'EnvironmentVariable';
|
|
3143
|
+
apps: Array<App>;
|
|
3033
3144
|
createdAt: Scalars['DateTime']['output'];
|
|
3034
3145
|
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3035
3146
|
id: Scalars['ID']['output'];
|
|
@@ -3037,6 +3148,7 @@ export type EnvironmentVariable = {
|
|
|
3037
3148
|
scope: EnvironmentVariableScope;
|
|
3038
3149
|
updatedAt: Scalars['DateTime']['output'];
|
|
3039
3150
|
value?: Maybe<Scalars['String']['output']>;
|
|
3151
|
+
visibility?: Maybe<EnvironmentVariableVisibility>;
|
|
3040
3152
|
};
|
|
3041
3153
|
export declare enum EnvironmentVariableEnvironment {
|
|
3042
3154
|
Development = "DEVELOPMENT",
|
|
@@ -3045,17 +3157,31 @@ export declare enum EnvironmentVariableEnvironment {
|
|
|
3045
3157
|
}
|
|
3046
3158
|
export type EnvironmentVariableMutation = {
|
|
3047
3159
|
__typename?: 'EnvironmentVariableMutation';
|
|
3160
|
+
/** Create bulk env variables for an Account */
|
|
3161
|
+
createBulkEnvironmentVariablesForAccount: Array<EnvironmentVariable>;
|
|
3162
|
+
/** Create bulk env variables for an App */
|
|
3163
|
+
createBulkEnvironmentVariablesForApp: Array<EnvironmentVariable>;
|
|
3048
3164
|
/** Create an environment variable for an Account */
|
|
3049
3165
|
createEnvironmentVariableForAccount: EnvironmentVariable;
|
|
3050
3166
|
/** Create an environment variable for an App */
|
|
3051
3167
|
createEnvironmentVariableForApp: EnvironmentVariable;
|
|
3052
3168
|
/** Delete an environment variable */
|
|
3053
3169
|
deleteEnvironmentVariable: DeleteEnvironmentVariableResult;
|
|
3170
|
+
/** Bulk link shared environment variables */
|
|
3171
|
+
linkBulkSharedEnvironmentVariables: Array<EnvironmentVariable>;
|
|
3054
3172
|
/** Link shared environment variable */
|
|
3055
3173
|
linkSharedEnvironmentVariable: EnvironmentVariable;
|
|
3056
3174
|
/** Unlink shared environment variable */
|
|
3057
3175
|
unlinkSharedEnvironmentVariable: EnvironmentVariable;
|
|
3058
3176
|
};
|
|
3177
|
+
export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForAccountArgs = {
|
|
3178
|
+
accountId: Scalars['ID']['input'];
|
|
3179
|
+
environmentVariablesData: Array<CreateSharedEnvironmentVariableInput>;
|
|
3180
|
+
};
|
|
3181
|
+
export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForAppArgs = {
|
|
3182
|
+
appId: Scalars['ID']['input'];
|
|
3183
|
+
environmentVariablesData: Array<CreateEnvironmentVariableInput>;
|
|
3184
|
+
};
|
|
3059
3185
|
export type EnvironmentVariableMutationCreateEnvironmentVariableForAccountArgs = {
|
|
3060
3186
|
accountId: Scalars['ID']['input'];
|
|
3061
3187
|
environmentVariableData: CreateSharedEnvironmentVariableInput;
|
|
@@ -3067,6 +3193,9 @@ export type EnvironmentVariableMutationCreateEnvironmentVariableForAppArgs = {
|
|
|
3067
3193
|
export type EnvironmentVariableMutationDeleteEnvironmentVariableArgs = {
|
|
3068
3194
|
id: Scalars['ID']['input'];
|
|
3069
3195
|
};
|
|
3196
|
+
export type EnvironmentVariableMutationLinkBulkSharedEnvironmentVariablesArgs = {
|
|
3197
|
+
linkData: Array<LinkSharedEnvironmentVariableInput>;
|
|
3198
|
+
};
|
|
3070
3199
|
export type EnvironmentVariableMutationLinkSharedEnvironmentVariableArgs = {
|
|
3071
3200
|
appId: Scalars['ID']['input'];
|
|
3072
3201
|
environment: EnvironmentVariableEnvironment;
|
|
@@ -3081,6 +3210,24 @@ export declare enum EnvironmentVariableScope {
|
|
|
3081
3210
|
Project = "PROJECT",
|
|
3082
3211
|
Shared = "SHARED"
|
|
3083
3212
|
}
|
|
3213
|
+
export declare enum EnvironmentVariableVisibility {
|
|
3214
|
+
Public = "PUBLIC",
|
|
3215
|
+
Secret = "SECRET",
|
|
3216
|
+
Sensitive = "SENSITIVE"
|
|
3217
|
+
}
|
|
3218
|
+
export type EnvironmentVariableWithSecret = {
|
|
3219
|
+
__typename?: 'EnvironmentVariableWithSecret';
|
|
3220
|
+
apps: Array<App>;
|
|
3221
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3222
|
+
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3223
|
+
id: Scalars['ID']['output'];
|
|
3224
|
+
name: Scalars['String']['output'];
|
|
3225
|
+
scope: EnvironmentVariableScope;
|
|
3226
|
+
sensitive: Scalars['Boolean']['output'];
|
|
3227
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
3228
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3229
|
+
visibility: EnvironmentVariableVisibility;
|
|
3230
|
+
};
|
|
3084
3231
|
export type EstimatedOverageAndCost = {
|
|
3085
3232
|
__typename?: 'EstimatedOverageAndCost';
|
|
3086
3233
|
id: Scalars['ID']['output'];
|
|
@@ -3151,6 +3298,7 @@ export type FutureSubscription = {
|
|
|
3151
3298
|
id: Scalars['ID']['output'];
|
|
3152
3299
|
meteredBillingStatus: MeteredBillingStatus;
|
|
3153
3300
|
planId: Scalars['String']['output'];
|
|
3301
|
+
recurringCents?: Maybe<Scalars['Int']['output']>;
|
|
3154
3302
|
startDate: Scalars['DateTime']['output'];
|
|
3155
3303
|
};
|
|
3156
3304
|
export type GetSignedAssetUploadSpecificationsResult = {
|
|
@@ -3454,6 +3602,17 @@ export type GoogleServiceAccountKeyMutationCreateGoogleServiceAccountKeyArgs = {
|
|
|
3454
3602
|
export type GoogleServiceAccountKeyMutationDeleteGoogleServiceAccountKeyArgs = {
|
|
3455
3603
|
id: Scalars['ID']['input'];
|
|
3456
3604
|
};
|
|
3605
|
+
/**
|
|
3606
|
+
* The value field is always sent from the client as a string,
|
|
3607
|
+
* and then it's parsed server-side according to the filterType
|
|
3608
|
+
*/
|
|
3609
|
+
export type InsightsFilter = {
|
|
3610
|
+
filterType: InsightsFilterType;
|
|
3611
|
+
value: Scalars['String']['input'];
|
|
3612
|
+
};
|
|
3613
|
+
export declare enum InsightsFilterType {
|
|
3614
|
+
Platform = "PLATFORM"
|
|
3615
|
+
}
|
|
3457
3616
|
export type InsightsTimespan = {
|
|
3458
3617
|
end: Scalars['DateTime']['input'];
|
|
3459
3618
|
start: Scalars['DateTime']['input'];
|
|
@@ -3495,16 +3654,20 @@ export type InvoiceLineItem = {
|
|
|
3495
3654
|
amount: Scalars['Int']['output'];
|
|
3496
3655
|
description: Scalars['String']['output'];
|
|
3497
3656
|
id: Scalars['ID']['output'];
|
|
3657
|
+
metadata: Scalars['JSONObject']['output'];
|
|
3498
3658
|
period: InvoicePeriod;
|
|
3659
|
+
/** @deprecated Use 'price' instead */
|
|
3499
3660
|
plan: InvoiceLineItemPlan;
|
|
3661
|
+
price?: Maybe<StripePrice>;
|
|
3500
3662
|
proration: Scalars['Boolean']['output'];
|
|
3501
3663
|
quantity: Scalars['Int']['output'];
|
|
3502
|
-
|
|
3664
|
+
/** The unit amount excluding tax, in cents */
|
|
3665
|
+
unitAmountExcludingTax?: Maybe<Scalars['Float']['output']>;
|
|
3503
3666
|
};
|
|
3504
3667
|
export type InvoiceLineItemPlan = {
|
|
3505
3668
|
__typename?: 'InvoiceLineItemPlan';
|
|
3506
3669
|
id: Scalars['ID']['output'];
|
|
3507
|
-
name
|
|
3670
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3508
3671
|
};
|
|
3509
3672
|
export type InvoicePeriod = {
|
|
3510
3673
|
__typename?: 'InvoicePeriod';
|
|
@@ -3513,9 +3676,21 @@ export type InvoicePeriod = {
|
|
|
3513
3676
|
};
|
|
3514
3677
|
export type InvoiceQuery = {
|
|
3515
3678
|
__typename?: 'InvoiceQuery';
|
|
3679
|
+
/**
|
|
3680
|
+
* Previews the invoice for the specified number of additional concurrencies.
|
|
3681
|
+
* This is the total number of concurrencies the customer wishes to purchase
|
|
3682
|
+
* on top of their base plan, not the relative change in concurrencies
|
|
3683
|
+
* the customer wishes to make. For example, specify "3" if the customer has
|
|
3684
|
+
* two add-on concurrencies and wishes to purchase one more.
|
|
3685
|
+
*/
|
|
3686
|
+
previewInvoiceForAdditionalConcurrenciesCountUpdate?: Maybe<Invoice>;
|
|
3516
3687
|
/** Preview an upgrade subscription invoice, with proration */
|
|
3517
3688
|
previewInvoiceForSubscriptionUpdate: Invoice;
|
|
3518
3689
|
};
|
|
3690
|
+
export type InvoiceQueryPreviewInvoiceForAdditionalConcurrenciesCountUpdateArgs = {
|
|
3691
|
+
accountID: Scalars['ID']['input'];
|
|
3692
|
+
additionalConcurrenciesCount: Scalars['Int']['input'];
|
|
3693
|
+
};
|
|
3519
3694
|
export type InvoiceQueryPreviewInvoiceForSubscriptionUpdateArgs = {
|
|
3520
3695
|
accountId: Scalars['String']['input'];
|
|
3521
3696
|
couponCode?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3833,6 +4008,15 @@ export type LineDataset = {
|
|
|
3833
4008
|
id: Scalars['ID']['output'];
|
|
3834
4009
|
label: Scalars['String']['output'];
|
|
3835
4010
|
};
|
|
4011
|
+
export type LinkSharedEnvironmentVariableInput = {
|
|
4012
|
+
appId: Scalars['ID']['input'];
|
|
4013
|
+
environment: EnvironmentVariableEnvironment;
|
|
4014
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
4015
|
+
};
|
|
4016
|
+
export type LogsTimespan = {
|
|
4017
|
+
end: Scalars['DateTime']['input'];
|
|
4018
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4019
|
+
};
|
|
3836
4020
|
export declare enum MailchimpAudience {
|
|
3837
4021
|
ExpoDevelopers = "EXPO_DEVELOPERS",
|
|
3838
4022
|
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING"
|
|
@@ -3874,6 +4058,12 @@ export type MeMutation = {
|
|
|
3874
4058
|
purgeUnfinishedSecondFactorAuthentication: SecondFactorBooleanResult;
|
|
3875
4059
|
/** Regenerate backup codes for the current user */
|
|
3876
4060
|
regenerateSecondFactorBackupCodes: SecondFactorRegenerateBackupCodesResult;
|
|
4061
|
+
/** Schedule deletion for Account created via createAccount */
|
|
4062
|
+
scheduleAccountDeletion: BackgroundJobReceipt;
|
|
4063
|
+
/** Schedule deletion of the current regular user */
|
|
4064
|
+
scheduleCurrentUserDeletion: BackgroundJobReceipt;
|
|
4065
|
+
/** Schedule deletion of a SSO user. Actor must be an owner on the SSO user's SSO account. */
|
|
4066
|
+
scheduleSSOUserDeletionAsSSOAccountOwner: BackgroundJobReceipt;
|
|
3877
4067
|
/** Send SMS OTP to a second factor device for use during device setup or during change confirmation */
|
|
3878
4068
|
sendSMSOTPToSecondFactorDevice: SecondFactorBooleanResult;
|
|
3879
4069
|
/**
|
|
@@ -3885,8 +4075,6 @@ export type MeMutation = {
|
|
|
3885
4075
|
setPrimarySecondFactorDevice: SecondFactorBooleanResult;
|
|
3886
4076
|
/** Transfer project to a different Account */
|
|
3887
4077
|
transferApp: App;
|
|
3888
|
-
/** Unpublish an App that the current user owns */
|
|
3889
|
-
unpublishApp: App;
|
|
3890
4078
|
/** Update an App that the current user owns */
|
|
3891
4079
|
updateApp: App;
|
|
3892
4080
|
/** Update the current regular user's data */
|
|
@@ -3930,6 +4118,12 @@ export type MeMutationLeaveAccountArgs = {
|
|
|
3930
4118
|
export type MeMutationRegenerateSecondFactorBackupCodesArgs = {
|
|
3931
4119
|
otp: Scalars['String']['input'];
|
|
3932
4120
|
};
|
|
4121
|
+
export type MeMutationScheduleAccountDeletionArgs = {
|
|
4122
|
+
accountId: Scalars['ID']['input'];
|
|
4123
|
+
};
|
|
4124
|
+
export type MeMutationScheduleSsoUserDeletionAsSsoAccountOwnerArgs = {
|
|
4125
|
+
ssoUserId: Scalars['ID']['input'];
|
|
4126
|
+
};
|
|
3933
4127
|
export type MeMutationSendSmsotpToSecondFactorDeviceArgs = {
|
|
3934
4128
|
userSecondFactorDeviceId: Scalars['ID']['input'];
|
|
3935
4129
|
};
|
|
@@ -3943,9 +4137,6 @@ export type MeMutationTransferAppArgs = {
|
|
|
3943
4137
|
appId: Scalars['ID']['input'];
|
|
3944
4138
|
destinationAccountId: Scalars['ID']['input'];
|
|
3945
4139
|
};
|
|
3946
|
-
export type MeMutationUnpublishAppArgs = {
|
|
3947
|
-
appId: Scalars['ID']['input'];
|
|
3948
|
-
};
|
|
3949
4140
|
export type MeMutationUpdateAppArgs = {
|
|
3950
4141
|
appData: AppDataInput;
|
|
3951
4142
|
};
|
|
@@ -3960,6 +4151,10 @@ export type MeteredBillingStatus = {
|
|
|
3960
4151
|
EAS_BUILD: Scalars['Boolean']['output'];
|
|
3961
4152
|
EAS_UPDATE: Scalars['Boolean']['output'];
|
|
3962
4153
|
};
|
|
4154
|
+
export type MetricsTimespan = {
|
|
4155
|
+
end: Scalars['DateTime']['input'];
|
|
4156
|
+
start: Scalars['DateTime']['input'];
|
|
4157
|
+
};
|
|
3963
4158
|
export type Notification = {
|
|
3964
4159
|
__typename?: 'Notification';
|
|
3965
4160
|
accountName: Scalars['String']['output'];
|
|
@@ -4197,6 +4392,8 @@ export type RobotMutation = {
|
|
|
4197
4392
|
createRobotForAccount: Robot;
|
|
4198
4393
|
/** Delete a Robot */
|
|
4199
4394
|
deleteRobot: DeleteRobotResult;
|
|
4395
|
+
/** Schedule deletion of a Robot */
|
|
4396
|
+
scheduleRobotDeletion: BackgroundJobReceipt;
|
|
4200
4397
|
/** Update a Robot */
|
|
4201
4398
|
updateRobot: Robot;
|
|
4202
4399
|
};
|
|
@@ -4208,6 +4405,9 @@ export type RobotMutationCreateRobotForAccountArgs = {
|
|
|
4208
4405
|
export type RobotMutationDeleteRobotArgs = {
|
|
4209
4406
|
id: Scalars['String']['input'];
|
|
4210
4407
|
};
|
|
4408
|
+
export type RobotMutationScheduleRobotDeletionArgs = {
|
|
4409
|
+
id: Scalars['ID']['input'];
|
|
4410
|
+
};
|
|
4211
4411
|
export type RobotMutationUpdateRobotArgs = {
|
|
4212
4412
|
id: Scalars['String']['input'];
|
|
4213
4413
|
robotData: RobotDataInput;
|
|
@@ -4270,6 +4470,7 @@ export type RootMutation = {
|
|
|
4270
4470
|
build: BuildMutation;
|
|
4271
4471
|
/** Mutations that create, update, and delete Build Annotations */
|
|
4272
4472
|
buildAnnotation: BuildAnnotationMutation;
|
|
4473
|
+
customDomain: CustomDomainMutation;
|
|
4273
4474
|
deployments: DeploymentsMutation;
|
|
4274
4475
|
/** Mutations that assign or modify DevDomainNames for apps */
|
|
4275
4476
|
devDomainName: AppDevDomainNameMutation;
|
|
@@ -4326,7 +4527,7 @@ export type RootMutation = {
|
|
|
4326
4527
|
websiteNotifications: WebsiteNotificationMutation;
|
|
4327
4528
|
};
|
|
4328
4529
|
export type RootMutationAccountArgs = {
|
|
4329
|
-
accountName
|
|
4530
|
+
accountName?: InputMaybe<Scalars['ID']['input']>;
|
|
4330
4531
|
};
|
|
4331
4532
|
export type RootMutationAppArgs = {
|
|
4332
4533
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4402,6 +4603,8 @@ export type RootQuery = {
|
|
|
4402
4603
|
/** Top-level query object for querying Expo status page services. */
|
|
4403
4604
|
statuspageService: StatuspageServiceQuery;
|
|
4404
4605
|
submissions: SubmissionQuery;
|
|
4606
|
+
/** Top-level query object for querying Updates. */
|
|
4607
|
+
updates: UpdateQuery;
|
|
4405
4608
|
/** fetch all updates in a group */
|
|
4406
4609
|
updatesByGroup: Array<Update>;
|
|
4407
4610
|
/**
|
|
@@ -4429,6 +4632,7 @@ export type RootQuery = {
|
|
|
4429
4632
|
viewer?: Maybe<User>;
|
|
4430
4633
|
/** Top-level query object for querying Webhooks. */
|
|
4431
4634
|
webhook: WebhookQuery;
|
|
4635
|
+
workerDeployment: WorkerDeploymentQuery;
|
|
4432
4636
|
};
|
|
4433
4637
|
export type RootQueryAllPublicAppsArgs = {
|
|
4434
4638
|
filter: AppsFilter;
|
|
@@ -4752,6 +4956,10 @@ export type StripeCoupon = {
|
|
|
4752
4956
|
percentOff?: Maybe<Scalars['Float']['output']>;
|
|
4753
4957
|
valid: Scalars['Boolean']['output'];
|
|
4754
4958
|
};
|
|
4959
|
+
export type StripePrice = {
|
|
4960
|
+
__typename?: 'StripePrice';
|
|
4961
|
+
id: Scalars['ID']['output'];
|
|
4962
|
+
};
|
|
4755
4963
|
/** Represents an EAS Submission */
|
|
4756
4964
|
export type Submission = ActivityTimelineProjectActivity & {
|
|
4757
4965
|
__typename?: 'Submission';
|
|
@@ -4863,7 +5071,7 @@ export type SubscribeToNotificationResult = {
|
|
|
4863
5071
|
export type SubscriptionDetails = {
|
|
4864
5072
|
__typename?: 'SubscriptionDetails';
|
|
4865
5073
|
addons: Array<AddonDetails>;
|
|
4866
|
-
|
|
5074
|
+
cancelAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4867
5075
|
concurrencies?: Maybe<Concurrencies>;
|
|
4868
5076
|
coupon?: Maybe<StripeCoupon>;
|
|
4869
5077
|
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4873,11 +5081,14 @@ export type SubscriptionDetails = {
|
|
|
4873
5081
|
meteredBillingStatus: MeteredBillingStatus;
|
|
4874
5082
|
name?: Maybe<Scalars['String']['output']>;
|
|
4875
5083
|
nextInvoice?: Maybe<Scalars['DateTime']['output']>;
|
|
5084
|
+
nextInvoiceAmountDueCents?: Maybe<Scalars['Int']['output']>;
|
|
4876
5085
|
planEnablement?: Maybe<PlanEnablement>;
|
|
4877
5086
|
planId?: Maybe<Scalars['String']['output']>;
|
|
4878
5087
|
price: Scalars['Int']['output'];
|
|
5088
|
+
recurringCents?: Maybe<Scalars['Int']['output']>;
|
|
4879
5089
|
status?: Maybe<Scalars['String']['output']>;
|
|
4880
5090
|
trialEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
5091
|
+
upcomingInvoice?: Maybe<Invoice>;
|
|
4881
5092
|
willCancel?: Maybe<Scalars['Boolean']['output']>;
|
|
4882
5093
|
};
|
|
4883
5094
|
export type SubscriptionDetailsPlanEnablementArgs = {
|
|
@@ -5092,6 +5303,14 @@ export type UpdateMutationSetCodeSigningInfoArgs = {
|
|
|
5092
5303
|
codeSigningInfo: CodeSigningInfoInput;
|
|
5093
5304
|
updateId: Scalars['ID']['input'];
|
|
5094
5305
|
};
|
|
5306
|
+
export type UpdateQuery = {
|
|
5307
|
+
__typename?: 'UpdateQuery';
|
|
5308
|
+
/** Query an Update by ID */
|
|
5309
|
+
byId: Update;
|
|
5310
|
+
};
|
|
5311
|
+
export type UpdateQueryByIdArgs = {
|
|
5312
|
+
updateId: Scalars['ID']['input'];
|
|
5313
|
+
};
|
|
5095
5314
|
export type UpdateRollBackToEmbeddedGroup = {
|
|
5096
5315
|
android?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5097
5316
|
ios?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -5627,15 +5846,126 @@ export type WebsiteNotificationsConnection = {
|
|
|
5627
5846
|
edges: Array<WebsiteNotificationEdge>;
|
|
5628
5847
|
pageInfo: PageInfo;
|
|
5629
5848
|
};
|
|
5849
|
+
export type WorkerCustomDomain = {
|
|
5850
|
+
__typename?: 'WorkerCustomDomain';
|
|
5851
|
+
alias: WorkerDeploymentAlias;
|
|
5852
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5853
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5854
|
+
dnsRecord: CustomDomainDnsRecord;
|
|
5855
|
+
hostname: Scalars['String']['output'];
|
|
5856
|
+
id: Scalars['ID']['output'];
|
|
5857
|
+
metadata?: Maybe<CustomDomainMetadata>;
|
|
5858
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
5859
|
+
};
|
|
5630
5860
|
export type WorkerDeployment = {
|
|
5631
5861
|
__typename?: 'WorkerDeployment';
|
|
5862
|
+
aliases?: Maybe<Array<WorkerDeploymentAlias>>;
|
|
5863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5864
|
+
deploymentDomain: Scalars['String']['output'];
|
|
5865
|
+
deploymentIdentifier: Scalars['String']['output'];
|
|
5866
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5632
5867
|
id: Scalars['ID']['output'];
|
|
5868
|
+
logs?: Maybe<WorkerDeploymentLogs>;
|
|
5869
|
+
metrics?: Maybe<WorkerDeploymentMetrics>;
|
|
5870
|
+
subdomain: Scalars['String']['output'];
|
|
5871
|
+
url: Scalars['String']['output'];
|
|
5872
|
+
};
|
|
5873
|
+
export type WorkerDeploymentLogsArgs = {
|
|
5874
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5875
|
+
timespan: LogsTimespan;
|
|
5876
|
+
};
|
|
5877
|
+
export type WorkerDeploymentMetricsArgs = {
|
|
5878
|
+
timespan: MetricsTimespan;
|
|
5879
|
+
};
|
|
5880
|
+
export type WorkerDeploymentAlias = {
|
|
5881
|
+
__typename?: 'WorkerDeploymentAlias';
|
|
5882
|
+
aliasName?: Maybe<Scalars['String']['output']>;
|
|
5883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5884
|
+
deploymentDomain: Scalars['String']['output'];
|
|
5885
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5886
|
+
id: Scalars['ID']['output'];
|
|
5887
|
+
subdomain: Scalars['String']['output'];
|
|
5888
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
5889
|
+
url: Scalars['String']['output'];
|
|
5890
|
+
workerDeployment: WorkerDeployment;
|
|
5891
|
+
};
|
|
5892
|
+
export type WorkerDeploymentAliasEdge = {
|
|
5893
|
+
__typename?: 'WorkerDeploymentAliasEdge';
|
|
5894
|
+
cursor: Scalars['String']['output'];
|
|
5895
|
+
node: WorkerDeploymentAlias;
|
|
5896
|
+
};
|
|
5897
|
+
export type WorkerDeploymentAliasesConnection = {
|
|
5898
|
+
__typename?: 'WorkerDeploymentAliasesConnection';
|
|
5899
|
+
edges: Array<WorkerDeploymentAliasEdge>;
|
|
5900
|
+
pageInfo: PageInfo;
|
|
5901
|
+
};
|
|
5902
|
+
export type WorkerDeploymentCrashNode = {
|
|
5903
|
+
__typename?: 'WorkerDeploymentCrashNode';
|
|
5904
|
+
minOccurrences: Scalars['Int']['output'];
|
|
5905
|
+
mostRecentlyOccurredAt: Scalars['DateTime']['output'];
|
|
5906
|
+
sample?: Maybe<WorkerDeploymentCrashSample>;
|
|
5907
|
+
sampleMessage?: Maybe<Scalars['String']['output']>;
|
|
5908
|
+
};
|
|
5909
|
+
export type WorkerDeploymentCrashSample = {
|
|
5910
|
+
__typename?: 'WorkerDeploymentCrashSample';
|
|
5911
|
+
message: Scalars['String']['output'];
|
|
5912
|
+
requestTimestamp: Scalars['DateTime']['output'];
|
|
5913
|
+
};
|
|
5914
|
+
export type WorkerDeploymentCrashes = {
|
|
5915
|
+
__typename?: 'WorkerDeploymentCrashes';
|
|
5916
|
+
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
5917
|
+
nodes: Array<WorkerDeploymentCrashNode>;
|
|
5633
5918
|
};
|
|
5634
5919
|
export type WorkerDeploymentEdge = {
|
|
5635
5920
|
__typename?: 'WorkerDeploymentEdge';
|
|
5636
5921
|
cursor: Scalars['String']['output'];
|
|
5637
5922
|
node: WorkerDeployment;
|
|
5638
5923
|
};
|
|
5924
|
+
export declare enum WorkerDeploymentLogLevel {
|
|
5925
|
+
Debug = "DEBUG",
|
|
5926
|
+
Error = "ERROR",
|
|
5927
|
+
Fatal = "FATAL",
|
|
5928
|
+
Info = "INFO",
|
|
5929
|
+
Log = "LOG",
|
|
5930
|
+
Warn = "WARN"
|
|
5931
|
+
}
|
|
5932
|
+
export type WorkerDeploymentLogNode = {
|
|
5933
|
+
__typename?: 'WorkerDeploymentLogNode';
|
|
5934
|
+
level: WorkerDeploymentLogLevel;
|
|
5935
|
+
message: Scalars['String']['output'];
|
|
5936
|
+
timestamp: Scalars['DateTime']['output'];
|
|
5937
|
+
};
|
|
5938
|
+
export type WorkerDeploymentLogs = {
|
|
5939
|
+
__typename?: 'WorkerDeploymentLogs';
|
|
5940
|
+
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
5941
|
+
nodes: Array<WorkerDeploymentLogNode>;
|
|
5942
|
+
};
|
|
5943
|
+
export type WorkerDeploymentMetrics = {
|
|
5944
|
+
__typename?: 'WorkerDeploymentMetrics';
|
|
5945
|
+
groups: Array<Maybe<WorkerDeploymentMetricsEdge>>;
|
|
5946
|
+
id: Scalars['ID']['output'];
|
|
5947
|
+
summary: WorkerDeploymentMetricsData;
|
|
5948
|
+
};
|
|
5949
|
+
export type WorkerDeploymentMetricsData = {
|
|
5950
|
+
__typename?: 'WorkerDeploymentMetricsData';
|
|
5951
|
+
crashesSum: Scalars['Int']['output'];
|
|
5952
|
+
durationP50?: Maybe<Scalars['Float']['output']>;
|
|
5953
|
+
durationP90?: Maybe<Scalars['Float']['output']>;
|
|
5954
|
+
durationP99?: Maybe<Scalars['Float']['output']>;
|
|
5955
|
+
requestsSum: Scalars['Int']['output'];
|
|
5956
|
+
};
|
|
5957
|
+
export type WorkerDeploymentMetricsEdge = {
|
|
5958
|
+
__typename?: 'WorkerDeploymentMetricsEdge';
|
|
5959
|
+
node: WorkerDeploymentMetricsData;
|
|
5960
|
+
timestamp: Scalars['DateTime']['output'];
|
|
5961
|
+
};
|
|
5962
|
+
export type WorkerDeploymentQuery = {
|
|
5963
|
+
__typename?: 'WorkerDeploymentQuery';
|
|
5964
|
+
byId: WorkerDeployment;
|
|
5965
|
+
};
|
|
5966
|
+
export type WorkerDeploymentQueryByIdArgs = {
|
|
5967
|
+
id: Scalars['ID']['input'];
|
|
5968
|
+
};
|
|
5639
5969
|
export type WorkerDeploymentsConnection = {
|
|
5640
5970
|
__typename?: 'WorkerDeploymentsConnection';
|
|
5641
5971
|
edges: Array<WorkerDeploymentEdge>;
|
|
@@ -9841,6 +10171,101 @@ export type DeleteEnvironmentSecretMutation = {
|
|
|
9841
10171
|
};
|
|
9842
10172
|
};
|
|
9843
10173
|
};
|
|
10174
|
+
export type LinkSharedEnvironmentVariableMutationVariables = Exact<{
|
|
10175
|
+
appId: Scalars['ID']['input'];
|
|
10176
|
+
environment: EnvironmentVariableEnvironment;
|
|
10177
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
10178
|
+
}>;
|
|
10179
|
+
export type LinkSharedEnvironmentVariableMutation = {
|
|
10180
|
+
__typename?: 'RootMutation';
|
|
10181
|
+
environmentVariable: {
|
|
10182
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10183
|
+
linkSharedEnvironmentVariable: {
|
|
10184
|
+
__typename?: 'EnvironmentVariable';
|
|
10185
|
+
id: string;
|
|
10186
|
+
name: string;
|
|
10187
|
+
value?: string | null;
|
|
10188
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10189
|
+
createdAt: any;
|
|
10190
|
+
scope: EnvironmentVariableScope;
|
|
10191
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10192
|
+
};
|
|
10193
|
+
};
|
|
10194
|
+
};
|
|
10195
|
+
export type UnlinkSharedEnvironmentVariableMutationVariables = Exact<{
|
|
10196
|
+
appId: Scalars['ID']['input'];
|
|
10197
|
+
environment: EnvironmentVariableEnvironment;
|
|
10198
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
10199
|
+
}>;
|
|
10200
|
+
export type UnlinkSharedEnvironmentVariableMutation = {
|
|
10201
|
+
__typename?: 'RootMutation';
|
|
10202
|
+
environmentVariable: {
|
|
10203
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10204
|
+
unlinkSharedEnvironmentVariable: {
|
|
10205
|
+
__typename?: 'EnvironmentVariable';
|
|
10206
|
+
id: string;
|
|
10207
|
+
name: string;
|
|
10208
|
+
value?: string | null;
|
|
10209
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10210
|
+
createdAt: any;
|
|
10211
|
+
scope: EnvironmentVariableScope;
|
|
10212
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10213
|
+
};
|
|
10214
|
+
};
|
|
10215
|
+
};
|
|
10216
|
+
export type CreateEnvironmentVariableForAccountMutationVariables = Exact<{
|
|
10217
|
+
input: CreateSharedEnvironmentVariableInput;
|
|
10218
|
+
accountId: Scalars['ID']['input'];
|
|
10219
|
+
}>;
|
|
10220
|
+
export type CreateEnvironmentVariableForAccountMutation = {
|
|
10221
|
+
__typename?: 'RootMutation';
|
|
10222
|
+
environmentVariable: {
|
|
10223
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10224
|
+
createEnvironmentVariableForAccount: {
|
|
10225
|
+
__typename?: 'EnvironmentVariable';
|
|
10226
|
+
id: string;
|
|
10227
|
+
name: string;
|
|
10228
|
+
value?: string | null;
|
|
10229
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10230
|
+
createdAt: any;
|
|
10231
|
+
scope: EnvironmentVariableScope;
|
|
10232
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10233
|
+
};
|
|
10234
|
+
};
|
|
10235
|
+
};
|
|
10236
|
+
export type CreateEnvironmentVariableForAppMutationVariables = Exact<{
|
|
10237
|
+
input: CreateEnvironmentVariableInput;
|
|
10238
|
+
appId: Scalars['ID']['input'];
|
|
10239
|
+
}>;
|
|
10240
|
+
export type CreateEnvironmentVariableForAppMutation = {
|
|
10241
|
+
__typename?: 'RootMutation';
|
|
10242
|
+
environmentVariable: {
|
|
10243
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10244
|
+
createEnvironmentVariableForApp: {
|
|
10245
|
+
__typename?: 'EnvironmentVariable';
|
|
10246
|
+
id: string;
|
|
10247
|
+
name: string;
|
|
10248
|
+
value?: string | null;
|
|
10249
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10250
|
+
createdAt: any;
|
|
10251
|
+
scope: EnvironmentVariableScope;
|
|
10252
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10253
|
+
};
|
|
10254
|
+
};
|
|
10255
|
+
};
|
|
10256
|
+
export type DeleteEnvironmentVariableMutationVariables = Exact<{
|
|
10257
|
+
id: Scalars['ID']['input'];
|
|
10258
|
+
}>;
|
|
10259
|
+
export type DeleteEnvironmentVariableMutation = {
|
|
10260
|
+
__typename?: 'RootMutation';
|
|
10261
|
+
environmentVariable: {
|
|
10262
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10263
|
+
deleteEnvironmentVariable: {
|
|
10264
|
+
__typename?: 'DeleteEnvironmentVariableResult';
|
|
10265
|
+
id: string;
|
|
10266
|
+
};
|
|
10267
|
+
};
|
|
10268
|
+
};
|
|
9844
10269
|
export type CreateKeystoreGenerationUrlMutationVariables = Exact<{
|
|
9845
10270
|
[key: string]: never;
|
|
9846
10271
|
}>;
|
|
@@ -10855,6 +11280,7 @@ export type ViewUpdateChannelsPaginatedOnAppQuery = {
|
|
|
10855
11280
|
};
|
|
10856
11281
|
export type EnvironmentSecretsByAppIdQueryVariables = Exact<{
|
|
10857
11282
|
appId: Scalars['String']['input'];
|
|
11283
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
10858
11284
|
}>;
|
|
10859
11285
|
export type EnvironmentSecretsByAppIdQuery = {
|
|
10860
11286
|
__typename?: 'RootQuery';
|
|
@@ -10884,6 +11310,73 @@ export type EnvironmentSecretsByAppIdQuery = {
|
|
|
10884
11310
|
};
|
|
10885
11311
|
};
|
|
10886
11312
|
};
|
|
11313
|
+
export type EnvironmentVariablesByAppIdQueryVariables = Exact<{
|
|
11314
|
+
appId: Scalars['String']['input'];
|
|
11315
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11316
|
+
environment: EnvironmentVariableEnvironment;
|
|
11317
|
+
}>;
|
|
11318
|
+
export type EnvironmentVariablesByAppIdQuery = {
|
|
11319
|
+
__typename?: 'RootQuery';
|
|
11320
|
+
app: {
|
|
11321
|
+
__typename?: 'AppQuery';
|
|
11322
|
+
byId: {
|
|
11323
|
+
__typename?: 'App';
|
|
11324
|
+
id: string;
|
|
11325
|
+
ownerAccount: {
|
|
11326
|
+
__typename?: 'Account';
|
|
11327
|
+
id: string;
|
|
11328
|
+
environmentVariables: Array<{
|
|
11329
|
+
__typename?: 'EnvironmentVariable';
|
|
11330
|
+
id: string;
|
|
11331
|
+
name: string;
|
|
11332
|
+
value?: string | null;
|
|
11333
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
11334
|
+
createdAt: any;
|
|
11335
|
+
scope: EnvironmentVariableScope;
|
|
11336
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
11337
|
+
}>;
|
|
11338
|
+
};
|
|
11339
|
+
environmentVariables: Array<{
|
|
11340
|
+
__typename?: 'EnvironmentVariable';
|
|
11341
|
+
id: string;
|
|
11342
|
+
name: string;
|
|
11343
|
+
value?: string | null;
|
|
11344
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
11345
|
+
createdAt: any;
|
|
11346
|
+
scope: EnvironmentVariableScope;
|
|
11347
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
11348
|
+
}>;
|
|
11349
|
+
};
|
|
11350
|
+
};
|
|
11351
|
+
};
|
|
11352
|
+
export type EnvironmentVariablesSharedQueryVariables = Exact<{
|
|
11353
|
+
appId: Scalars['String']['input'];
|
|
11354
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11355
|
+
}>;
|
|
11356
|
+
export type EnvironmentVariablesSharedQuery = {
|
|
11357
|
+
__typename?: 'RootQuery';
|
|
11358
|
+
app: {
|
|
11359
|
+
__typename?: 'AppQuery';
|
|
11360
|
+
byId: {
|
|
11361
|
+
__typename?: 'App';
|
|
11362
|
+
id: string;
|
|
11363
|
+
ownerAccount: {
|
|
11364
|
+
__typename?: 'Account';
|
|
11365
|
+
id: string;
|
|
11366
|
+
environmentVariables: Array<{
|
|
11367
|
+
__typename?: 'EnvironmentVariable';
|
|
11368
|
+
id: string;
|
|
11369
|
+
name: string;
|
|
11370
|
+
value?: string | null;
|
|
11371
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
11372
|
+
createdAt: any;
|
|
11373
|
+
scope: EnvironmentVariableScope;
|
|
11374
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
11375
|
+
}>;
|
|
11376
|
+
};
|
|
11377
|
+
};
|
|
11378
|
+
};
|
|
11379
|
+
};
|
|
10887
11380
|
export type GetAssetMetadataQueryVariables = Exact<{
|
|
10888
11381
|
storageKeys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
10889
11382
|
}>;
|
|
@@ -11705,6 +12198,16 @@ export type EnvironmentSecretFragment = {
|
|
|
11705
12198
|
type: EnvironmentSecretType;
|
|
11706
12199
|
createdAt: any;
|
|
11707
12200
|
};
|
|
12201
|
+
export type EnvironmentVariableFragment = {
|
|
12202
|
+
__typename?: 'EnvironmentVariable';
|
|
12203
|
+
id: string;
|
|
12204
|
+
name: string;
|
|
12205
|
+
value?: string | null;
|
|
12206
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
12207
|
+
createdAt: any;
|
|
12208
|
+
scope: EnvironmentVariableScope;
|
|
12209
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
12210
|
+
};
|
|
11708
12211
|
export type RuntimeFragment = {
|
|
11709
12212
|
__typename?: 'Runtime';
|
|
11710
12213
|
id: string;
|