eas-cli 10.2.3 → 11.0.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 -65
- package/build/branch/actions/SelectBranch.d.ts +1 -1
- package/build/branch/actions/SelectBranch.js +2 -2
- package/build/branch/queries.js +3 -1
- package/build/build/android/build.js +1 -1
- package/build/build/android/version.js +1 -1
- package/build/build/build.js +21 -10
- package/build/build/context.d.ts +1 -0
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +6 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.d.ts +16 -0
- package/build/build/evaluateConfigWithEnvVarsAsync.js +44 -0
- package/build/build/ios/build.js +4 -4
- package/build/build/local.d.ts +1 -1
- package/build/build/local.js +3 -2
- package/build/build/queries.js +3 -1
- package/build/build/runBuildAndSubmit.d.ts +2 -0
- package/build/build/runBuildAndSubmit.js +14 -7
- package/build/build/utils/printBuildInfo.js +6 -2
- package/build/build/validate.js +2 -2
- package/build/channel/actions/SelectChannel.d.ts +1 -1
- package/build/channel/actions/SelectChannel.js +2 -2
- package/build/channel/queries.js +6 -2
- package/build/commandUtils/EasCommand.js +2 -2
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -1
- package/build/commandUtils/flags.d.ts +16 -0
- package/build/commandUtils/flags.js +61 -1
- package/build/commandUtils/gating/FeatureGating.js +6 -2
- package/build/commands/analytics.js +1 -1
- package/build/commands/build/index.d.ts +4 -1
- package/build/commands/build/index.js +3 -0
- package/build/commands/build/resign.d.ts +4 -1
- package/build/commands/build/resign.js +12 -3
- package/build/commands/build/version/get.d.ts +1 -0
- package/build/commands/build/version/get.js +9 -2
- package/build/commands/build/version/set.d.ts +1 -0
- package/build/commands/build/version/set.js +11 -1
- package/build/commands/build/version/sync.d.ts +1 -0
- package/build/commands/build/version/sync.js +13 -5
- package/build/commands/config.d.ts +2 -0
- package/build/commands/config.js +10 -3
- package/build/commands/device/delete.js +1 -1
- package/build/commands/device/rename.js +1 -1
- package/build/commands/env/create.d.ts +23 -0
- package/build/commands/env/create.js +169 -0
- package/build/commands/env/delete.d.ts +18 -0
- package/build/commands/env/delete.js +95 -0
- package/build/commands/env/get.d.ts +19 -0
- package/build/commands/env/get.js +100 -0
- package/build/commands/env/link.d.ts +15 -0
- package/build/commands/env/link.js +59 -0
- package/build/commands/env/list.d.ts +18 -0
- package/build/commands/env/list.js +82 -0
- package/build/commands/env/pull.d.ts +15 -0
- package/build/commands/env/pull.js +64 -0
- package/build/commands/env/push.d.ts +17 -0
- package/build/commands/env/push.js +148 -0
- package/build/commands/env/unlink.d.ts +15 -0
- package/build/commands/env/unlink.js +65 -0
- package/build/commands/env/update.d.ts +21 -0
- package/build/commands/env/update.js +135 -0
- package/build/commands/metadata/lint.js +4 -2
- package/build/commands/project/onboarding.js +1 -1
- package/build/commands/update/edit.d.ts +19 -0
- package/build/commands/update/edit.js +102 -0
- package/build/commands/update/index.d.ts +1 -2
- package/build/commands/update/index.js +53 -25
- package/build/commands/update/list.js +6 -3
- package/build/commands/update/roll-back-to-embedded.js +1 -1
- package/build/credentials/android/AndroidCredentialsProvider.d.ts +2 -2
- package/build/credentials/android/actions/AssignFcm.d.ts +1 -1
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.d.ts +1 -1
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.d.ts +1 -1
- package/build/credentials/android/actions/CreateFcm.d.ts +1 -1
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +1 -1
- package/build/credentials/android/actions/CreateKeystore.d.ts +1 -1
- package/build/credentials/android/actions/DownloadKeystore.d.ts +2 -2
- package/build/credentials/android/actions/RemoveFcm.d.ts +1 -1
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +2 -2
- package/build/credentials/android/actions/RemoveKeystore.d.ts +1 -1
- package/build/credentials/android/actions/SetUpBuildCredentials.d.ts +1 -1
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.d.ts +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.d.ts +1 -1
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +1 -1
- package/build/credentials/android/api/GraphqlClient.js +3 -3
- package/build/credentials/context.d.ts +2 -2
- package/build/credentials/context.js +1 -1
- package/build/credentials/ios/IosCredentialsProvider.d.ts +2 -2
- package/build/credentials/ios/IosCredentialsProvider.js +1 -1
- package/build/credentials/ios/actions/AscApiKeyUtils.js +1 -1
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/AssignPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.d.ts +4 -4
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +1 -1
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +3 -3
- package/build/credentials/ios/actions/CreatePushKey.d.ts +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +5 -5
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +2 -2
- package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +3 -3
- package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +2 -2
- package/build/credentials/ios/actions/RemovePushKey.d.ts +2 -2
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +2 -2
- package/build/credentials/ios/actions/SetUpBuildCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +2 -2
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +3 -3
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/actions/UpdateCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/api/GraphqlClient.js +4 -4
- package/build/credentials/ios/appstore/AppStoreApi.js +4 -4
- package/build/credentials/ios/appstore/authenticate.js +1 -1
- package/build/credentials/ios/appstore/bundleId.js +1 -1
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +1 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +1 -1
- package/build/credentials/ios/appstore/keychain.js +8 -6
- package/build/credentials/ios/appstore/provisioningProfile.js +1 -1
- package/build/credentials/ios/appstore/pushKey.js +1 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +2 -2
- package/build/credentials/ios/credentials.js +1 -1
- package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.js +2 -4
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +3 -3
- package/build/credentials/manager/CreateAndroidBuildCredentials.d.ts +1 -1
- package/build/credentials/manager/ManageAndroid.js +2 -1
- package/build/credentials/manager/ManageIos.js +3 -2
- package/build/credentials/manager/SelectAndroidBuildCredentials.d.ts +2 -2
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +2 -2
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.d.ts +1 -1
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.js +1 -1
- package/build/credentials/manager/SelectPlatform.js +3 -2
- package/build/credentials/manager/SetDefaultAndroidKeystore.d.ts +1 -1
- package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +1 -1
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +3 -2
- package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +1 -1
- package/build/devices/actions/create/action.d.ts +4 -4
- package/build/devices/actions/create/registrationUrlMethod.js +3 -1
- package/build/devices/manager.d.ts +4 -4
- package/build/devices/queries.js +3 -1
- package/build/easMultiselect.js +6 -2
- package/build/graphql/generated.d.ts +874 -62
- package/build/graphql/generated.js +92 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +39 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.js +133 -0
- package/build/graphql/mutations/PublishMutation.d.ts +1 -0
- package/build/graphql/mutations/PublishMutation.js +16 -0
- package/build/graphql/queries/BranchQuery.d.ts +7 -1
- package/build/graphql/queries/BranchQuery.js +42 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +22 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.js +106 -0
- package/build/graphql/types/EnvironmentVariable.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariable.js +16 -0
- package/build/graphql/types/Update.js +4 -0
- package/build/metadata/apple/config/reader.js +1 -1
- package/build/metadata/apple/tasks/age-rating.js +1 -1
- package/build/metadata/apple/tasks/app-review-detail.js +2 -1
- package/build/metadata/apple/tasks/app-version.d.ts +1 -1
- package/build/metadata/config/resolve.js +2 -1
- package/build/metadata/errors.js +2 -1
- package/build/metadata/utils/log.js +1 -1
- package/build/metadata/utils/retry.js +1 -1
- package/build/onboarding/runCommand.js +1 -1
- package/build/ora.js +12 -4
- package/build/project/android/applicationId.js +1 -1
- package/build/project/applicationIdentifier.d.ts +3 -2
- package/build/project/applicationIdentifier.js +2 -2
- package/build/project/expoConfig.js +2 -2
- package/build/project/ios/entitlements.js +1 -1
- package/build/project/publish.d.ts +31 -18
- package/build/project/publish.js +61 -37
- package/build/project/resolveRuntimeVersionAsync.d.ts +4 -1
- package/build/project/resolveRuntimeVersionAsync.js +9 -3
- package/build/rollout/actions/CreateRollout.d.ts +2 -2
- package/build/rollout/actions/EditRollout.d.ts +2 -2
- package/build/rollout/actions/EndRollout.d.ts +2 -2
- package/build/rollout/actions/ManageRollout.d.ts +2 -2
- package/build/rollout/actions/NonInteractiveRollout.d.ts +1 -1
- package/build/rollout/actions/RolloutMainMenu.d.ts +1 -1
- package/build/rollout/actions/SelectRuntime.d.ts +3 -3
- package/build/run/android/adb.js +1 -1
- package/build/run/ios/simctl.js +1 -1
- package/build/run/ios/systemRequirements.js +1 -1
- package/build/submit/ArchiveSource.js +15 -15
- package/build/submit/BaseSubmitter.js +2 -2
- package/build/submit/submit.js +1 -1
- package/build/update/android/UpdatesModule.js +1 -1
- package/build/update/configure.d.ts +1 -1
- package/build/update/queries.js +8 -3
- package/build/update/republish.js +2 -1
- package/build/update/utils.d.ts +1 -0
- package/build/update/utils.js +7 -0
- package/build/user/expoSsoLauncher.js +1 -1
- package/build/utils/download.js +2 -2
- package/build/utils/filterAsync.js +1 -1
- package/build/utils/formatVariable.d.ts +2 -0
- package/build/utils/formatVariable.js +16 -0
- package/build/utils/image.js +2 -2
- package/build/utils/progress.js +1 -1
- package/build/utils/promise.js +1 -1
- package/build/utils/prompts.d.ts +9 -0
- package/build/utils/prompts.js +68 -0
- package/build/utils/queries.js +2 -2
- package/build/vcs/clients/git.d.ts +1 -1
- package/build/vcs/local.d.ts +1 -1
- package/oclif.manifest.json +627 -22
- package/package.json +15 -15
|
@@ -63,6 +63,10 @@ export type Scalars = {
|
|
|
63
63
|
input: any;
|
|
64
64
|
output: any;
|
|
65
65
|
};
|
|
66
|
+
WorkerDeploymentIdentifier: {
|
|
67
|
+
input: any;
|
|
68
|
+
output: any;
|
|
69
|
+
};
|
|
66
70
|
};
|
|
67
71
|
export type AcceptUserInvitationResult = {
|
|
68
72
|
__typename?: 'AcceptUserInvitationResult';
|
|
@@ -137,6 +141,8 @@ export type Account = {
|
|
|
137
141
|
apps: Array<App>;
|
|
138
142
|
/** Paginated list of apps associated with this account. By default sorted by name. Use filter to adjust the sorting order. */
|
|
139
143
|
appsPaginated: AccountAppsConnection;
|
|
144
|
+
/** Audit logs for account */
|
|
145
|
+
auditLogsPaginated: AuditLogConnection;
|
|
140
146
|
/** @deprecated Build packs are no longer supported */
|
|
141
147
|
availableBuilds?: Maybe<Scalars['Int']['output']>;
|
|
142
148
|
/** Billing information. Only visible to members with the ADMIN or OWNER role. */
|
|
@@ -149,6 +155,8 @@ export type Account = {
|
|
|
149
155
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
150
156
|
/** Environment variables for an account */
|
|
151
157
|
environmentVariables: Array<EnvironmentVariable>;
|
|
158
|
+
/** Environment variables for an account with decrypted secret values */
|
|
159
|
+
environmentVariablesIncludingSensitive: Array<EnvironmentVariableWithSecret>;
|
|
152
160
|
/** GitHub App installations for an account */
|
|
153
161
|
githubAppInstallations: Array<GitHubAppInstallation>;
|
|
154
162
|
/** @deprecated Use googleServiceAccountKeysPaginated */
|
|
@@ -323,6 +331,17 @@ export type AccountAppsPaginatedArgs = {
|
|
|
323
331
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
324
332
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
325
333
|
};
|
|
334
|
+
/**
|
|
335
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
336
|
+
* data and settings. Actors may own and be members of accounts.
|
|
337
|
+
*/
|
|
338
|
+
export type AccountAuditLogsPaginatedArgs = {
|
|
339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
340
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
341
|
+
filter?: InputMaybe<AuditLogFilterInput>;
|
|
342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
343
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
344
|
+
};
|
|
326
345
|
/**
|
|
327
346
|
* An account is a container owning projects, credentials, billing and other organization
|
|
328
347
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -354,6 +373,13 @@ export type AccountEnvironmentSecretsArgs = {
|
|
|
354
373
|
export type AccountEnvironmentVariablesArgs = {
|
|
355
374
|
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
356
375
|
};
|
|
376
|
+
/**
|
|
377
|
+
* An account is a container owning projects, credentials, billing and other organization
|
|
378
|
+
* data and settings. Actors may own and be members of accounts.
|
|
379
|
+
*/
|
|
380
|
+
export type AccountEnvironmentVariablesIncludingSensitiveArgs = {
|
|
381
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
382
|
+
};
|
|
357
383
|
/**
|
|
358
384
|
* An account is a container owning projects, credentials, billing and other organization
|
|
359
385
|
* data and settings. Actors may own and be members of accounts.
|
|
@@ -480,17 +506,12 @@ export type AccountGoogleServiceAccountKeysEdge = {
|
|
|
480
506
|
};
|
|
481
507
|
export type AccountMutation = {
|
|
482
508
|
__typename?: 'AccountMutation';
|
|
483
|
-
/**
|
|
484
|
-
* Makes a one time purchase
|
|
485
|
-
* @deprecated Build packs are no longer supported
|
|
486
|
-
*/
|
|
487
|
-
buyProduct?: Maybe<Account>;
|
|
488
509
|
/** Cancels all subscriptions immediately */
|
|
489
510
|
cancelAllSubscriptionsImmediately: Account;
|
|
490
511
|
/** Cancel scheduled subscription change */
|
|
491
512
|
cancelScheduledSubscriptionChange: Account;
|
|
492
|
-
/**
|
|
493
|
-
|
|
513
|
+
/** Buys or revokes account's additional concurrencies, charging the account the appropriate amount if needed. */
|
|
514
|
+
changeAdditionalConcurrenciesCount: Account;
|
|
494
515
|
/** Upgrades or downgrades the active subscription to the newPlanIdentifier, which must be one of the EAS plans (i.e., Production or Enterprise). */
|
|
495
516
|
changePlan: Account;
|
|
496
517
|
/** Add specified account Permissions for Actor. Actor must already have at least one permission on the account. */
|
|
@@ -501,30 +522,18 @@ export type AccountMutation = {
|
|
|
501
522
|
requestRefund?: Maybe<Scalars['Boolean']['output']>;
|
|
502
523
|
/** Revoke specified Permissions for Actor. Actor must already have at least one permission on the account. */
|
|
503
524
|
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
525
|
/** Require authorization to send push notifications for experiences owned by this account */
|
|
512
526
|
setPushSecurityEnabled: Account;
|
|
513
527
|
};
|
|
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
528
|
export type AccountMutationCancelAllSubscriptionsImmediatelyArgs = {
|
|
521
529
|
accountID: Scalars['ID']['input'];
|
|
522
530
|
};
|
|
523
531
|
export type AccountMutationCancelScheduledSubscriptionChangeArgs = {
|
|
524
532
|
accountID: Scalars['ID']['input'];
|
|
525
533
|
};
|
|
526
|
-
export type
|
|
527
|
-
|
|
534
|
+
export type AccountMutationChangeAdditionalConcurrenciesCountArgs = {
|
|
535
|
+
accountID: Scalars['ID']['input'];
|
|
536
|
+
newAdditionalConcurrenciesCount: Scalars['Int']['input'];
|
|
528
537
|
};
|
|
529
538
|
export type AccountMutationChangePlanArgs = {
|
|
530
539
|
accountID: Scalars['ID']['input'];
|
|
@@ -551,14 +560,6 @@ export type AccountMutationRevokeActorPermissionsArgs = {
|
|
|
551
560
|
actorID: Scalars['ID']['input'];
|
|
552
561
|
permissions?: InputMaybe<Array<InputMaybe<Permission>>>;
|
|
553
562
|
};
|
|
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
563
|
export type AccountMutationSetPushSecurityEnabledArgs = {
|
|
563
564
|
accountID: Scalars['ID']['input'];
|
|
564
565
|
pushSecurityEnabled: Scalars['Boolean']['input'];
|
|
@@ -758,6 +759,7 @@ export type AddonDetails = {
|
|
|
758
759
|
name: Scalars['String']['output'];
|
|
759
760
|
nextInvoice?: Maybe<Scalars['DateTime']['output']>;
|
|
760
761
|
planId: Scalars['String']['output'];
|
|
762
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
761
763
|
willCancel?: Maybe<Scalars['Boolean']['output']>;
|
|
762
764
|
};
|
|
763
765
|
export type Address = {
|
|
@@ -1089,6 +1091,8 @@ export type App = Project & {
|
|
|
1089
1091
|
environmentSecrets: Array<EnvironmentSecret>;
|
|
1090
1092
|
/** Environment variables for an app */
|
|
1091
1093
|
environmentVariables: Array<EnvironmentVariable>;
|
|
1094
|
+
/** Environment variables for an app with decrypted secret values */
|
|
1095
|
+
environmentVariablesIncludingSensitive: Array<EnvironmentVariableWithSecret>;
|
|
1092
1096
|
fullName: Scalars['String']['output'];
|
|
1093
1097
|
githubBuildTriggers: Array<GitHubBuildTrigger>;
|
|
1094
1098
|
githubJobRunTriggers: Array<GitHubJobRunTrigger>;
|
|
@@ -1112,6 +1116,7 @@ export type App = Project & {
|
|
|
1112
1116
|
internalDistributionBuildPrivacy: AppInternalDistributionBuildPrivacy;
|
|
1113
1117
|
/** iOS app credentials for the project */
|
|
1114
1118
|
iosAppCredentials: Array<IosAppCredentials>;
|
|
1119
|
+
/** @deprecated Use lastDeletionAttemptTime !== null instead */
|
|
1115
1120
|
isDeleting: Scalars['Boolean']['output'];
|
|
1116
1121
|
/**
|
|
1117
1122
|
* Whether the latest classic update publish is using a deprecated SDK version
|
|
@@ -1207,7 +1212,14 @@ export type App = Project & {
|
|
|
1207
1212
|
users?: Maybe<Array<Maybe<User>>>;
|
|
1208
1213
|
/** Webhooks for an app */
|
|
1209
1214
|
webhooks: Array<Webhook>;
|
|
1215
|
+
workerCustomDomain?: Maybe<WorkerCustomDomain>;
|
|
1216
|
+
workerDeployment?: Maybe<WorkerDeployment>;
|
|
1217
|
+
workerDeploymentAlias?: Maybe<WorkerDeploymentAlias>;
|
|
1218
|
+
workerDeploymentAliases: WorkerDeploymentAliasesConnection;
|
|
1210
1219
|
workerDeployments: WorkerDeploymentsConnection;
|
|
1220
|
+
workerDeploymentsCrashes?: Maybe<WorkerDeploymentCrashes>;
|
|
1221
|
+
workerDeploymentsMetrics?: Maybe<WorkerDeploymentMetrics>;
|
|
1222
|
+
workerDeploymentsRequests?: Maybe<WorkerDeploymentRequests>;
|
|
1211
1223
|
};
|
|
1212
1224
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1213
1225
|
export type AppActivityTimelineProjectActivitiesArgs = {
|
|
@@ -1273,7 +1285,12 @@ export type AppEnvironmentSecretsArgs = {
|
|
|
1273
1285
|
};
|
|
1274
1286
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1275
1287
|
export type AppEnvironmentVariablesArgs = {
|
|
1276
|
-
environment
|
|
1288
|
+
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
1289
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1290
|
+
};
|
|
1291
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1292
|
+
export type AppEnvironmentVariablesIncludingSensitiveArgs = {
|
|
1293
|
+
environment?: InputMaybe<EnvironmentVariableEnvironment>;
|
|
1277
1294
|
filterNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1278
1295
|
};
|
|
1279
1296
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
@@ -1364,12 +1381,42 @@ export type AppWebhooksArgs = {
|
|
|
1364
1381
|
filter?: InputMaybe<WebhookFilter>;
|
|
1365
1382
|
};
|
|
1366
1383
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1384
|
+
export type AppWorkerDeploymentArgs = {
|
|
1385
|
+
deploymentIdentifier: Scalars['WorkerDeploymentIdentifier']['input'];
|
|
1386
|
+
};
|
|
1387
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1388
|
+
export type AppWorkerDeploymentAliasArgs = {
|
|
1389
|
+
aliasName?: InputMaybe<Scalars['WorkerDeploymentIdentifier']['input']>;
|
|
1390
|
+
};
|
|
1391
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1392
|
+
export type AppWorkerDeploymentAliasesArgs = {
|
|
1393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1394
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1396
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1397
|
+
};
|
|
1398
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1367
1399
|
export type AppWorkerDeploymentsArgs = {
|
|
1368
1400
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
1369
1401
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
1370
1402
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1371
1403
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1372
1404
|
};
|
|
1405
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1406
|
+
export type AppWorkerDeploymentsCrashesArgs = {
|
|
1407
|
+
limit?: Scalars['Int']['input'];
|
|
1408
|
+
timespan: CrashesTimespan;
|
|
1409
|
+
};
|
|
1410
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1411
|
+
export type AppWorkerDeploymentsMetricsArgs = {
|
|
1412
|
+
timespan: MetricsTimespan;
|
|
1413
|
+
};
|
|
1414
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1415
|
+
export type AppWorkerDeploymentsRequestsArgs = {
|
|
1416
|
+
filter?: InputMaybe<WorkerDeploymentRequestsFilter>;
|
|
1417
|
+
limit?: Scalars['Int']['input'];
|
|
1418
|
+
timespan: RequestsTimespan;
|
|
1419
|
+
};
|
|
1373
1420
|
export type AppBranchEdge = {
|
|
1374
1421
|
__typename?: 'AppBranchEdge';
|
|
1375
1422
|
cursor: Scalars['String']['output'];
|
|
@@ -1465,12 +1512,14 @@ export declare enum AppInternalDistributionBuildPrivacy {
|
|
|
1465
1512
|
}
|
|
1466
1513
|
export type AppMutation = {
|
|
1467
1514
|
__typename?: 'AppMutation';
|
|
1468
|
-
/** Create an
|
|
1515
|
+
/** Create an app */
|
|
1469
1516
|
createApp: App;
|
|
1470
|
-
/** Create an
|
|
1517
|
+
/** Create an app and GitHub repository if user desire to */
|
|
1471
1518
|
createAppAndGithubRepository: CreateAppAndGithubRepositoryResponse;
|
|
1472
1519
|
/** @deprecated No longer supported */
|
|
1473
1520
|
grantAccess?: Maybe<App>;
|
|
1521
|
+
/** Delete an App. Returns the ID of the background job receipt. Use BackgroundJobReceiptQuery to get the status of the job. */
|
|
1522
|
+
scheduleAppDeletion: BackgroundJobReceipt;
|
|
1474
1523
|
/** Set display info for app */
|
|
1475
1524
|
setAppInfo: App;
|
|
1476
1525
|
/** Require api token to send push notifs for experience */
|
|
@@ -1488,6 +1537,9 @@ export type AppMutationGrantAccessArgs = {
|
|
|
1488
1537
|
accessLevel?: InputMaybe<Scalars['String']['input']>;
|
|
1489
1538
|
toUser: Scalars['ID']['input'];
|
|
1490
1539
|
};
|
|
1540
|
+
export type AppMutationScheduleAppDeletionArgs = {
|
|
1541
|
+
appId: Scalars['ID']['input'];
|
|
1542
|
+
};
|
|
1491
1543
|
export type AppMutationSetAppInfoArgs = {
|
|
1492
1544
|
appId: Scalars['ID']['input'];
|
|
1493
1545
|
appInfo: AppInfoInput;
|
|
@@ -1524,10 +1576,19 @@ export type AppPushNotificationsInsights = {
|
|
|
1524
1576
|
__typename?: 'AppPushNotificationsInsights';
|
|
1525
1577
|
id: Scalars['ID']['output'];
|
|
1526
1578
|
notificationsSentOverTime: NotificationsSentOverTimeData;
|
|
1579
|
+
successFailureOverTime: NotificationsSentOverTimeData;
|
|
1580
|
+
totalNotificationsSent: Scalars['Int']['output'];
|
|
1527
1581
|
};
|
|
1528
1582
|
export type AppPushNotificationsInsightsNotificationsSentOverTimeArgs = {
|
|
1529
1583
|
timespan: InsightsTimespan;
|
|
1530
1584
|
};
|
|
1585
|
+
export type AppPushNotificationsInsightsSuccessFailureOverTimeArgs = {
|
|
1586
|
+
timespan: InsightsTimespan;
|
|
1587
|
+
};
|
|
1588
|
+
export type AppPushNotificationsInsightsTotalNotificationsSentArgs = {
|
|
1589
|
+
filters?: InputMaybe<Array<Scalars['JSON']['input']>>;
|
|
1590
|
+
timespan: InsightsTimespan;
|
|
1591
|
+
};
|
|
1531
1592
|
export type AppQuery = {
|
|
1532
1593
|
__typename?: 'AppQuery';
|
|
1533
1594
|
/**
|
|
@@ -2029,16 +2090,29 @@ export type AuditLog = {
|
|
|
2029
2090
|
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
2030
2091
|
targetEntityId: Scalars['ID']['output'];
|
|
2031
2092
|
targetEntityMutationType: TargetEntityMutationType;
|
|
2032
|
-
targetEntityTableName: Scalars['String']['output'];
|
|
2033
2093
|
targetEntityTypeName: Scalars['String']['output'];
|
|
2034
2094
|
websiteMessage: Scalars['String']['output'];
|
|
2035
2095
|
};
|
|
2096
|
+
export type AuditLogConnection = {
|
|
2097
|
+
__typename?: 'AuditLogConnection';
|
|
2098
|
+
edges: Array<AuditLogEdge>;
|
|
2099
|
+
pageInfo: PageInfo;
|
|
2100
|
+
};
|
|
2101
|
+
export type AuditLogEdge = {
|
|
2102
|
+
__typename?: 'AuditLogEdge';
|
|
2103
|
+
cursor: Scalars['String']['output'];
|
|
2104
|
+
node: AuditLog;
|
|
2105
|
+
};
|
|
2036
2106
|
export type AuditLogExportInput = {
|
|
2037
2107
|
accountId: Scalars['ID']['input'];
|
|
2038
|
-
createdAfter: Scalars['
|
|
2039
|
-
createdBefore: Scalars['
|
|
2108
|
+
createdAfter: Scalars['String']['input'];
|
|
2109
|
+
createdBefore: Scalars['String']['input'];
|
|
2040
2110
|
format: AuditLogsExportFormat;
|
|
2041
2111
|
};
|
|
2112
|
+
export type AuditLogFilterInput = {
|
|
2113
|
+
entityTypes?: InputMaybe<Array<EntityTypeName>>;
|
|
2114
|
+
mutationTypes?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
2115
|
+
};
|
|
2042
2116
|
export type AuditLogMutation = {
|
|
2043
2117
|
__typename?: 'AuditLogMutation';
|
|
2044
2118
|
/** Exports Audit Logs for an account. Returns the ID of the background job receipt. Use BackgroundJobReceiptQuery to get the status of the job. */
|
|
@@ -2051,16 +2125,13 @@ export type AuditLogQuery = {
|
|
|
2051
2125
|
__typename?: 'AuditLogQuery';
|
|
2052
2126
|
/** Query Audit Logs by account ID */
|
|
2053
2127
|
byAccountId: Array<AuditLog>;
|
|
2054
|
-
/** Query an Audit Log by ID */
|
|
2055
|
-
byId: AuditLog;
|
|
2056
2128
|
};
|
|
2057
2129
|
export type AuditLogQueryByAccountIdArgs = {
|
|
2058
2130
|
accountId: Scalars['ID']['input'];
|
|
2059
2131
|
limit: Scalars['Int']['input'];
|
|
2060
2132
|
offset: Scalars['Int']['input'];
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
auditLogId: Scalars['ID']['input'];
|
|
2133
|
+
targetEntityMutationType?: InputMaybe<Array<TargetEntityMutationType>>;
|
|
2134
|
+
targetEntityTypeName?: InputMaybe<Array<EntityTypeName>>;
|
|
2064
2135
|
};
|
|
2065
2136
|
export declare enum AuditLogsExportFormat {
|
|
2066
2137
|
Csv = "CSV",
|
|
@@ -2074,7 +2145,8 @@ export declare enum AuthProviderIdentifier {
|
|
|
2074
2145
|
GoogleWs = "GOOGLE_WS",
|
|
2075
2146
|
MsEntraId = "MS_ENTRA_ID",
|
|
2076
2147
|
Okta = "OKTA",
|
|
2077
|
-
OneLogin = "ONE_LOGIN"
|
|
2148
|
+
OneLogin = "ONE_LOGIN",
|
|
2149
|
+
StubIdp = "STUB_IDP"
|
|
2078
2150
|
}
|
|
2079
2151
|
export type BackgroundJobReceipt = {
|
|
2080
2152
|
__typename?: 'BackgroundJobReceipt';
|
|
@@ -2274,6 +2346,7 @@ export type BuildArtifacts = {
|
|
|
2274
2346
|
applicationArchiveUrl?: Maybe<Scalars['String']['output']>;
|
|
2275
2347
|
buildArtifactsUrl?: Maybe<Scalars['String']['output']>;
|
|
2276
2348
|
buildUrl?: Maybe<Scalars['String']['output']>;
|
|
2349
|
+
fingerprintUrl?: Maybe<Scalars['String']['output']>;
|
|
2277
2350
|
xcodeBuildLogsUrl?: Maybe<Scalars['String']['output']>;
|
|
2278
2351
|
};
|
|
2279
2352
|
export type BuildCacheInput = {
|
|
@@ -2342,6 +2415,7 @@ export type BuildMetadataInput = {
|
|
|
2342
2415
|
customWorkflowName?: InputMaybe<Scalars['String']['input']>;
|
|
2343
2416
|
developmentClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2344
2417
|
distribution?: InputMaybe<DistributionType>;
|
|
2418
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
2345
2419
|
fingerprintSource?: InputMaybe<FingerprintSourceInput>;
|
|
2346
2420
|
gitCommitHash?: InputMaybe<Scalars['String']['input']>;
|
|
2347
2421
|
gitCommitMessage?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2636,6 +2710,20 @@ export type Concurrencies = {
|
|
|
2636
2710
|
ios: Scalars['Int']['output'];
|
|
2637
2711
|
total: Scalars['Int']['output'];
|
|
2638
2712
|
};
|
|
2713
|
+
export declare enum ContinentCode {
|
|
2714
|
+
Af = "AF",
|
|
2715
|
+
An = "AN",
|
|
2716
|
+
As = "AS",
|
|
2717
|
+
Eu = "EU",
|
|
2718
|
+
Na = "NA",
|
|
2719
|
+
Oc = "OC",
|
|
2720
|
+
Sa = "SA",
|
|
2721
|
+
T1 = "T1"
|
|
2722
|
+
}
|
|
2723
|
+
export type CrashesTimespan = {
|
|
2724
|
+
end: Scalars['DateTime']['input'];
|
|
2725
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2726
|
+
};
|
|
2639
2727
|
export type CreateAccessTokenInput = {
|
|
2640
2728
|
actorID: Scalars['ID']['input'];
|
|
2641
2729
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2672,8 +2760,9 @@ export type CreateEnvironmentSecretInput = {
|
|
|
2672
2760
|
export type CreateEnvironmentVariableInput = {
|
|
2673
2761
|
environment: EnvironmentVariableEnvironment;
|
|
2674
2762
|
name: Scalars['String']['input'];
|
|
2675
|
-
|
|
2763
|
+
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2676
2764
|
value: Scalars['String']['input'];
|
|
2765
|
+
visibility: EnvironmentVariableVisibility;
|
|
2677
2766
|
};
|
|
2678
2767
|
export type CreateGitHubAppInstallationInput = {
|
|
2679
2768
|
accountId: Scalars['ID']['input'];
|
|
@@ -2683,6 +2772,7 @@ export type CreateGitHubBuildTriggerInput = {
|
|
|
2683
2772
|
appId: Scalars['ID']['input'];
|
|
2684
2773
|
autoSubmit: Scalars['Boolean']['input'];
|
|
2685
2774
|
buildProfile: Scalars['String']['input'];
|
|
2775
|
+
executionBehavior: GitHubBuildTriggerExecutionBehavior;
|
|
2686
2776
|
isActive: Scalars['Boolean']['input'];
|
|
2687
2777
|
platform: AppPlatform;
|
|
2688
2778
|
/** A branch or tag name, or a wildcard pattern where the code change originates from. For example, `main` or `release/*`. */
|
|
@@ -2725,8 +2815,9 @@ export type CreateServerlessFunctionUploadUrlResult = {
|
|
|
2725
2815
|
};
|
|
2726
2816
|
export type CreateSharedEnvironmentVariableInput = {
|
|
2727
2817
|
name: Scalars['String']['input'];
|
|
2728
|
-
|
|
2818
|
+
overwrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2729
2819
|
value: Scalars['String']['input'];
|
|
2820
|
+
visibility: EnvironmentVariableVisibility;
|
|
2730
2821
|
};
|
|
2731
2822
|
export type CreateSubmissionResult = {
|
|
2732
2823
|
__typename?: 'CreateSubmissionResult';
|
|
@@ -2736,6 +2827,53 @@ export type CreateSubmissionResult = {
|
|
|
2736
2827
|
export type CustomBuildConfigInput = {
|
|
2737
2828
|
path: Scalars['String']['input'];
|
|
2738
2829
|
};
|
|
2830
|
+
export type CustomDomainDnsRecord = {
|
|
2831
|
+
__typename?: 'CustomDomainDNSRecord';
|
|
2832
|
+
dnsContent: Scalars['String']['output'];
|
|
2833
|
+
dnsName: Scalars['String']['output'];
|
|
2834
|
+
dnsType: CustomDomainDnsRecordType;
|
|
2835
|
+
};
|
|
2836
|
+
export declare enum CustomDomainDnsRecordType {
|
|
2837
|
+
Cname = "CNAME",
|
|
2838
|
+
Txt = "TXT"
|
|
2839
|
+
}
|
|
2840
|
+
export type CustomDomainMetadata = {
|
|
2841
|
+
__typename?: 'CustomDomainMetadata';
|
|
2842
|
+
ownershipVerification?: Maybe<CustomDomainDnsRecord>;
|
|
2843
|
+
status: CustomDomainStatus;
|
|
2844
|
+
verificationErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
2845
|
+
};
|
|
2846
|
+
export type CustomDomainMutation = {
|
|
2847
|
+
__typename?: 'CustomDomainMutation';
|
|
2848
|
+
deleteCustomDomain: DeleteCustomDomainResult;
|
|
2849
|
+
refreshCustomDomain: WorkerCustomDomain;
|
|
2850
|
+
registerCustomDomain: WorkerCustomDomain;
|
|
2851
|
+
};
|
|
2852
|
+
export type CustomDomainMutationDeleteCustomDomainArgs = {
|
|
2853
|
+
customDomainId: Scalars['ID']['input'];
|
|
2854
|
+
};
|
|
2855
|
+
export type CustomDomainMutationRefreshCustomDomainArgs = {
|
|
2856
|
+
customDomainId: Scalars['ID']['input'];
|
|
2857
|
+
};
|
|
2858
|
+
export type CustomDomainMutationRegisterCustomDomainArgs = {
|
|
2859
|
+
aliasName?: InputMaybe<Scalars['WorkerDeploymentIdentifier']['input']>;
|
|
2860
|
+
appId: Scalars['ID']['input'];
|
|
2861
|
+
hostname: Scalars['String']['input'];
|
|
2862
|
+
};
|
|
2863
|
+
export declare enum CustomDomainStatus {
|
|
2864
|
+
Active = "ACTIVE",
|
|
2865
|
+
ActiveRedeploying = "ACTIVE_REDEPLOYING",
|
|
2866
|
+
Blocked = "BLOCKED",
|
|
2867
|
+
Deleted = "DELETED",
|
|
2868
|
+
Moved = "MOVED",
|
|
2869
|
+
Pending = "PENDING",
|
|
2870
|
+
PendingBlocked = "PENDING_BLOCKED",
|
|
2871
|
+
PendingDeletion = "PENDING_DELETION",
|
|
2872
|
+
PendingMigration = "PENDING_MIGRATION",
|
|
2873
|
+
PendingProvisioned = "PENDING_PROVISIONED",
|
|
2874
|
+
Provisioned = "PROVISIONED",
|
|
2875
|
+
Unknown = "UNKNOWN"
|
|
2876
|
+
}
|
|
2739
2877
|
export type DeleteAccessTokenResult = {
|
|
2740
2878
|
__typename?: 'DeleteAccessTokenResult';
|
|
2741
2879
|
id: Scalars['ID']['output'];
|
|
@@ -2748,6 +2886,11 @@ export type DeleteAccountSsoConfigurationResult = {
|
|
|
2748
2886
|
__typename?: 'DeleteAccountSSOConfigurationResult';
|
|
2749
2887
|
id: Scalars['ID']['output'];
|
|
2750
2888
|
};
|
|
2889
|
+
export type DeleteAliasResult = {
|
|
2890
|
+
__typename?: 'DeleteAliasResult';
|
|
2891
|
+
aliasName?: Maybe<Scalars['WorkerDeploymentIdentifier']['output']>;
|
|
2892
|
+
id: Scalars['ID']['output'];
|
|
2893
|
+
};
|
|
2751
2894
|
export type DeleteAndroidAppCredentialsResult = {
|
|
2752
2895
|
__typename?: 'DeleteAndroidAppCredentialsResult';
|
|
2753
2896
|
id: Scalars['ID']['output'];
|
|
@@ -2772,6 +2915,12 @@ export type DeleteBuildAnnotationResult = {
|
|
|
2772
2915
|
__typename?: 'DeleteBuildAnnotationResult';
|
|
2773
2916
|
buildAnnotationId: Scalars['ID']['output'];
|
|
2774
2917
|
};
|
|
2918
|
+
export type DeleteCustomDomainResult = {
|
|
2919
|
+
__typename?: 'DeleteCustomDomainResult';
|
|
2920
|
+
appId: Scalars['ID']['output'];
|
|
2921
|
+
hostname: Scalars['String']['output'];
|
|
2922
|
+
id: Scalars['ID']['output'];
|
|
2923
|
+
};
|
|
2775
2924
|
export type DeleteDiscordUserResult = {
|
|
2776
2925
|
__typename?: 'DeleteDiscordUserResult';
|
|
2777
2926
|
id: Scalars['ID']['output'];
|
|
@@ -2878,6 +3027,7 @@ export type DeploymentInsights = {
|
|
|
2878
3027
|
embeddedUpdateUniqueUsersOverTime: UniqueUsersOverTimeData;
|
|
2879
3028
|
id: Scalars['ID']['output'];
|
|
2880
3029
|
mostPopularUpdates: Array<Update>;
|
|
3030
|
+
mostPopularUpdatesNew: Array<Update>;
|
|
2881
3031
|
uniqueUsersOverTime: UniqueUsersOverTimeData;
|
|
2882
3032
|
};
|
|
2883
3033
|
export type DeploymentInsightsEmbeddedUpdateTotalUniqueUsersArgs = {
|
|
@@ -2889,6 +3039,9 @@ export type DeploymentInsightsEmbeddedUpdateUniqueUsersOverTimeArgs = {
|
|
|
2889
3039
|
export type DeploymentInsightsMostPopularUpdatesArgs = {
|
|
2890
3040
|
timespan: InsightsTimespan;
|
|
2891
3041
|
};
|
|
3042
|
+
export type DeploymentInsightsMostPopularUpdatesNewArgs = {
|
|
3043
|
+
timespan: InsightsTimespan;
|
|
3044
|
+
};
|
|
2892
3045
|
export type DeploymentInsightsUniqueUsersOverTimeArgs = {
|
|
2893
3046
|
timespan: InsightsTimespan;
|
|
2894
3047
|
};
|
|
@@ -2906,13 +3059,24 @@ export type DeploymentsConnection = {
|
|
|
2906
3059
|
};
|
|
2907
3060
|
export type DeploymentsMutation = {
|
|
2908
3061
|
__typename?: 'DeploymentsMutation';
|
|
3062
|
+
assignAlias: WorkerDeploymentAlias;
|
|
2909
3063
|
/** Create a signed deployment URL */
|
|
2910
3064
|
createSignedDeploymentUrl: DeploymentSignedUrlResult;
|
|
3065
|
+
deleteAlias: DeleteAliasResult;
|
|
3066
|
+
};
|
|
3067
|
+
export type DeploymentsMutationAssignAliasArgs = {
|
|
3068
|
+
aliasName?: InputMaybe<Scalars['WorkerDeploymentIdentifier']['input']>;
|
|
3069
|
+
appId: Scalars['ID']['input'];
|
|
3070
|
+
deploymentIdentifier: Scalars['ID']['input'];
|
|
2911
3071
|
};
|
|
2912
3072
|
export type DeploymentsMutationCreateSignedDeploymentUrlArgs = {
|
|
2913
3073
|
appId: Scalars['ID']['input'];
|
|
2914
3074
|
deploymentIdentifier?: InputMaybe<Scalars['ID']['input']>;
|
|
2915
3075
|
};
|
|
3076
|
+
export type DeploymentsMutationDeleteAliasArgs = {
|
|
3077
|
+
aliasName?: InputMaybe<Scalars['WorkerDeploymentIdentifier']['input']>;
|
|
3078
|
+
appId: Scalars['ID']['input'];
|
|
3079
|
+
};
|
|
2916
3080
|
export type DiscordUser = {
|
|
2917
3081
|
__typename?: 'DiscordUser';
|
|
2918
3082
|
discordIdentifier: Scalars['String']['output'];
|
|
@@ -2996,6 +3160,27 @@ export type EmailSubscriptionMutation = {
|
|
|
2996
3160
|
export type EmailSubscriptionMutationAddUserArgs = {
|
|
2997
3161
|
addUserInput: AddUserInput;
|
|
2998
3162
|
};
|
|
3163
|
+
export declare enum EntityTypeName {
|
|
3164
|
+
Account = "Account",
|
|
3165
|
+
AccountSsoConfiguration = "AccountSSOConfiguration",
|
|
3166
|
+
AndroidAppCredentials = "AndroidAppCredentials",
|
|
3167
|
+
AndroidKeystore = "AndroidKeystore",
|
|
3168
|
+
App = "App",
|
|
3169
|
+
AppStoreConnectApiKey = "AppStoreConnectApiKey",
|
|
3170
|
+
AppleDevice = "AppleDevice",
|
|
3171
|
+
AppleDistributionCertificate = "AppleDistributionCertificate",
|
|
3172
|
+
AppleProvisioningProfile = "AppleProvisioningProfile",
|
|
3173
|
+
AppleTeam = "AppleTeam",
|
|
3174
|
+
Branch = "Branch",
|
|
3175
|
+
Channel = "Channel",
|
|
3176
|
+
Customer = "Customer",
|
|
3177
|
+
GoogleServiceAccountKey = "GoogleServiceAccountKey",
|
|
3178
|
+
IosAppCredentials = "IosAppCredentials",
|
|
3179
|
+
TurtleBuild = "TurtleBuild",
|
|
3180
|
+
Update = "Update",
|
|
3181
|
+
UserInvitation = "UserInvitation",
|
|
3182
|
+
UserPermission = "UserPermission"
|
|
3183
|
+
}
|
|
2999
3184
|
export type EnvironmentSecret = {
|
|
3000
3185
|
__typename?: 'EnvironmentSecret';
|
|
3001
3186
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -3030,6 +3215,7 @@ export declare enum EnvironmentSecretType {
|
|
|
3030
3215
|
}
|
|
3031
3216
|
export type EnvironmentVariable = {
|
|
3032
3217
|
__typename?: 'EnvironmentVariable';
|
|
3218
|
+
apps: Array<App>;
|
|
3033
3219
|
createdAt: Scalars['DateTime']['output'];
|
|
3034
3220
|
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3035
3221
|
id: Scalars['ID']['output'];
|
|
@@ -3037,6 +3223,7 @@ export type EnvironmentVariable = {
|
|
|
3037
3223
|
scope: EnvironmentVariableScope;
|
|
3038
3224
|
updatedAt: Scalars['DateTime']['output'];
|
|
3039
3225
|
value?: Maybe<Scalars['String']['output']>;
|
|
3226
|
+
visibility?: Maybe<EnvironmentVariableVisibility>;
|
|
3040
3227
|
};
|
|
3041
3228
|
export declare enum EnvironmentVariableEnvironment {
|
|
3042
3229
|
Development = "DEVELOPMENT",
|
|
@@ -3045,17 +3232,31 @@ export declare enum EnvironmentVariableEnvironment {
|
|
|
3045
3232
|
}
|
|
3046
3233
|
export type EnvironmentVariableMutation = {
|
|
3047
3234
|
__typename?: 'EnvironmentVariableMutation';
|
|
3235
|
+
/** Create bulk env variables for an Account */
|
|
3236
|
+
createBulkEnvironmentVariablesForAccount: Array<EnvironmentVariable>;
|
|
3237
|
+
/** Create bulk env variables for an App */
|
|
3238
|
+
createBulkEnvironmentVariablesForApp: Array<EnvironmentVariable>;
|
|
3048
3239
|
/** Create an environment variable for an Account */
|
|
3049
3240
|
createEnvironmentVariableForAccount: EnvironmentVariable;
|
|
3050
3241
|
/** Create an environment variable for an App */
|
|
3051
3242
|
createEnvironmentVariableForApp: EnvironmentVariable;
|
|
3052
3243
|
/** Delete an environment variable */
|
|
3053
3244
|
deleteEnvironmentVariable: DeleteEnvironmentVariableResult;
|
|
3245
|
+
/** Bulk link shared environment variables */
|
|
3246
|
+
linkBulkSharedEnvironmentVariables: Array<EnvironmentVariable>;
|
|
3054
3247
|
/** Link shared environment variable */
|
|
3055
3248
|
linkSharedEnvironmentVariable: EnvironmentVariable;
|
|
3056
3249
|
/** Unlink shared environment variable */
|
|
3057
3250
|
unlinkSharedEnvironmentVariable: EnvironmentVariable;
|
|
3058
3251
|
};
|
|
3252
|
+
export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForAccountArgs = {
|
|
3253
|
+
accountId: Scalars['ID']['input'];
|
|
3254
|
+
environmentVariablesData: Array<CreateSharedEnvironmentVariableInput>;
|
|
3255
|
+
};
|
|
3256
|
+
export type EnvironmentVariableMutationCreateBulkEnvironmentVariablesForAppArgs = {
|
|
3257
|
+
appId: Scalars['ID']['input'];
|
|
3258
|
+
environmentVariablesData: Array<CreateEnvironmentVariableInput>;
|
|
3259
|
+
};
|
|
3059
3260
|
export type EnvironmentVariableMutationCreateEnvironmentVariableForAccountArgs = {
|
|
3060
3261
|
accountId: Scalars['ID']['input'];
|
|
3061
3262
|
environmentVariableData: CreateSharedEnvironmentVariableInput;
|
|
@@ -3067,6 +3268,9 @@ export type EnvironmentVariableMutationCreateEnvironmentVariableForAppArgs = {
|
|
|
3067
3268
|
export type EnvironmentVariableMutationDeleteEnvironmentVariableArgs = {
|
|
3068
3269
|
id: Scalars['ID']['input'];
|
|
3069
3270
|
};
|
|
3271
|
+
export type EnvironmentVariableMutationLinkBulkSharedEnvironmentVariablesArgs = {
|
|
3272
|
+
linkData: Array<LinkSharedEnvironmentVariableInput>;
|
|
3273
|
+
};
|
|
3070
3274
|
export type EnvironmentVariableMutationLinkSharedEnvironmentVariableArgs = {
|
|
3071
3275
|
appId: Scalars['ID']['input'];
|
|
3072
3276
|
environment: EnvironmentVariableEnvironment;
|
|
@@ -3081,6 +3285,24 @@ export declare enum EnvironmentVariableScope {
|
|
|
3081
3285
|
Project = "PROJECT",
|
|
3082
3286
|
Shared = "SHARED"
|
|
3083
3287
|
}
|
|
3288
|
+
export declare enum EnvironmentVariableVisibility {
|
|
3289
|
+
Public = "PUBLIC",
|
|
3290
|
+
Secret = "SECRET",
|
|
3291
|
+
Sensitive = "SENSITIVE"
|
|
3292
|
+
}
|
|
3293
|
+
export type EnvironmentVariableWithSecret = {
|
|
3294
|
+
__typename?: 'EnvironmentVariableWithSecret';
|
|
3295
|
+
apps: Array<App>;
|
|
3296
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3297
|
+
environment?: Maybe<EnvironmentVariableEnvironment>;
|
|
3298
|
+
id: Scalars['ID']['output'];
|
|
3299
|
+
name: Scalars['String']['output'];
|
|
3300
|
+
scope: EnvironmentVariableScope;
|
|
3301
|
+
sensitive: Scalars['Boolean']['output'];
|
|
3302
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
3303
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3304
|
+
visibility: EnvironmentVariableVisibility;
|
|
3305
|
+
};
|
|
3084
3306
|
export type EstimatedOverageAndCost = {
|
|
3085
3307
|
__typename?: 'EstimatedOverageAndCost';
|
|
3086
3308
|
id: Scalars['ID']['output'];
|
|
@@ -3140,6 +3362,7 @@ export declare enum Feature {
|
|
|
3140
3362
|
}
|
|
3141
3363
|
export type FingerprintSourceInput = {
|
|
3142
3364
|
bucketKey?: InputMaybe<Scalars['String']['input']>;
|
|
3365
|
+
isDebugFingerprint?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3143
3366
|
type?: InputMaybe<FingerprintSourceType>;
|
|
3144
3367
|
};
|
|
3145
3368
|
export declare enum FingerprintSourceType {
|
|
@@ -3151,6 +3374,7 @@ export type FutureSubscription = {
|
|
|
3151
3374
|
id: Scalars['ID']['output'];
|
|
3152
3375
|
meteredBillingStatus: MeteredBillingStatus;
|
|
3153
3376
|
planId: Scalars['String']['output'];
|
|
3377
|
+
recurringCents?: Maybe<Scalars['Int']['output']>;
|
|
3154
3378
|
startDate: Scalars['DateTime']['output'];
|
|
3155
3379
|
};
|
|
3156
3380
|
export type GetSignedAssetUploadSpecificationsResult = {
|
|
@@ -3241,6 +3465,7 @@ export type GitHubBuildTrigger = {
|
|
|
3241
3465
|
autoSubmit: Scalars['Boolean']['output'];
|
|
3242
3466
|
buildProfile: Scalars['String']['output'];
|
|
3243
3467
|
createdAt: Scalars['DateTime']['output'];
|
|
3468
|
+
executionBehavior: GitHubBuildTriggerExecutionBehavior;
|
|
3244
3469
|
id: Scalars['ID']['output'];
|
|
3245
3470
|
isActive: Scalars['Boolean']['output'];
|
|
3246
3471
|
lastRunAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3255,6 +3480,10 @@ export type GitHubBuildTrigger = {
|
|
|
3255
3480
|
type: GitHubBuildTriggerType;
|
|
3256
3481
|
updatedAt: Scalars['DateTime']['output'];
|
|
3257
3482
|
};
|
|
3483
|
+
export declare enum GitHubBuildTriggerExecutionBehavior {
|
|
3484
|
+
Always = "ALWAYS",
|
|
3485
|
+
BaseDirectoryChanged = "BASE_DIRECTORY_CHANGED"
|
|
3486
|
+
}
|
|
3258
3487
|
export type GitHubBuildTriggerMutation = {
|
|
3259
3488
|
__typename?: 'GitHubBuildTriggerMutation';
|
|
3260
3489
|
/** Create GitHub build trigger for an App */
|
|
@@ -3454,6 +3683,17 @@ export type GoogleServiceAccountKeyMutationCreateGoogleServiceAccountKeyArgs = {
|
|
|
3454
3683
|
export type GoogleServiceAccountKeyMutationDeleteGoogleServiceAccountKeyArgs = {
|
|
3455
3684
|
id: Scalars['ID']['input'];
|
|
3456
3685
|
};
|
|
3686
|
+
/**
|
|
3687
|
+
* The value field is always sent from the client as a string,
|
|
3688
|
+
* and then it's parsed server-side according to the filterType
|
|
3689
|
+
*/
|
|
3690
|
+
export type InsightsFilter = {
|
|
3691
|
+
filterType: InsightsFilterType;
|
|
3692
|
+
value: Scalars['String']['input'];
|
|
3693
|
+
};
|
|
3694
|
+
export declare enum InsightsFilterType {
|
|
3695
|
+
Platform = "PLATFORM"
|
|
3696
|
+
}
|
|
3457
3697
|
export type InsightsTimespan = {
|
|
3458
3698
|
end: Scalars['DateTime']['input'];
|
|
3459
3699
|
start: Scalars['DateTime']['input'];
|
|
@@ -3495,16 +3735,20 @@ export type InvoiceLineItem = {
|
|
|
3495
3735
|
amount: Scalars['Int']['output'];
|
|
3496
3736
|
description: Scalars['String']['output'];
|
|
3497
3737
|
id: Scalars['ID']['output'];
|
|
3738
|
+
metadata: Scalars['JSONObject']['output'];
|
|
3498
3739
|
period: InvoicePeriod;
|
|
3740
|
+
/** @deprecated Use 'price' instead */
|
|
3499
3741
|
plan: InvoiceLineItemPlan;
|
|
3742
|
+
price?: Maybe<StripePrice>;
|
|
3500
3743
|
proration: Scalars['Boolean']['output'];
|
|
3501
3744
|
quantity: Scalars['Int']['output'];
|
|
3502
|
-
|
|
3745
|
+
/** The unit amount excluding tax, in cents */
|
|
3746
|
+
unitAmountExcludingTax?: Maybe<Scalars['Float']['output']>;
|
|
3503
3747
|
};
|
|
3504
3748
|
export type InvoiceLineItemPlan = {
|
|
3505
3749
|
__typename?: 'InvoiceLineItemPlan';
|
|
3506
3750
|
id: Scalars['ID']['output'];
|
|
3507
|
-
name
|
|
3751
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3508
3752
|
};
|
|
3509
3753
|
export type InvoicePeriod = {
|
|
3510
3754
|
__typename?: 'InvoicePeriod';
|
|
@@ -3513,9 +3757,21 @@ export type InvoicePeriod = {
|
|
|
3513
3757
|
};
|
|
3514
3758
|
export type InvoiceQuery = {
|
|
3515
3759
|
__typename?: 'InvoiceQuery';
|
|
3760
|
+
/**
|
|
3761
|
+
* Previews the invoice for the specified number of additional concurrencies.
|
|
3762
|
+
* This is the total number of concurrencies the customer wishes to purchase
|
|
3763
|
+
* on top of their base plan, not the relative change in concurrencies
|
|
3764
|
+
* the customer wishes to make. For example, specify "3" if the customer has
|
|
3765
|
+
* two add-on concurrencies and wishes to purchase one more.
|
|
3766
|
+
*/
|
|
3767
|
+
previewInvoiceForAdditionalConcurrenciesCountUpdate?: Maybe<Invoice>;
|
|
3516
3768
|
/** Preview an upgrade subscription invoice, with proration */
|
|
3517
3769
|
previewInvoiceForSubscriptionUpdate: Invoice;
|
|
3518
3770
|
};
|
|
3771
|
+
export type InvoiceQueryPreviewInvoiceForAdditionalConcurrenciesCountUpdateArgs = {
|
|
3772
|
+
accountID: Scalars['ID']['input'];
|
|
3773
|
+
additionalConcurrenciesCount: Scalars['Int']['input'];
|
|
3774
|
+
};
|
|
3519
3775
|
export type InvoiceQueryPreviewInvoiceForSubscriptionUpdateArgs = {
|
|
3520
3776
|
accountId: Scalars['String']['input'];
|
|
3521
3777
|
couponCode?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3751,6 +4007,7 @@ export type IosSubmissionConfigInput = {
|
|
|
3751
4007
|
export type JobRun = {
|
|
3752
4008
|
__typename?: 'JobRun';
|
|
3753
4009
|
app: App;
|
|
4010
|
+
/** @deprecated No longer supported */
|
|
3754
4011
|
childJobRun?: Maybe<JobRun>;
|
|
3755
4012
|
createdAt: Scalars['DateTime']['output'];
|
|
3756
4013
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -3773,15 +4030,10 @@ export type JobRunMutation = {
|
|
|
3773
4030
|
__typename?: 'JobRunMutation';
|
|
3774
4031
|
/** Cancel an EAS Job Run */
|
|
3775
4032
|
cancelJobRun: JobRun;
|
|
3776
|
-
/** Retry an EAS Job Run */
|
|
3777
|
-
retryJobRun: JobRun;
|
|
3778
4033
|
};
|
|
3779
4034
|
export type JobRunMutationCancelJobRunArgs = {
|
|
3780
4035
|
jobRunId: Scalars['ID']['input'];
|
|
3781
4036
|
};
|
|
3782
|
-
export type JobRunMutationRetryJobRunArgs = {
|
|
3783
|
-
jobRunId: Scalars['ID']['input'];
|
|
3784
|
-
};
|
|
3785
4037
|
export declare enum JobRunPriority {
|
|
3786
4038
|
High = "HIGH",
|
|
3787
4039
|
Normal = "NORMAL"
|
|
@@ -3833,6 +4085,15 @@ export type LineDataset = {
|
|
|
3833
4085
|
id: Scalars['ID']['output'];
|
|
3834
4086
|
label: Scalars['String']['output'];
|
|
3835
4087
|
};
|
|
4088
|
+
export type LinkSharedEnvironmentVariableInput = {
|
|
4089
|
+
appId: Scalars['ID']['input'];
|
|
4090
|
+
environment: EnvironmentVariableEnvironment;
|
|
4091
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
4092
|
+
};
|
|
4093
|
+
export type LogsTimespan = {
|
|
4094
|
+
end: Scalars['DateTime']['input'];
|
|
4095
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4096
|
+
};
|
|
3836
4097
|
export declare enum MailchimpAudience {
|
|
3837
4098
|
ExpoDevelopers = "EXPO_DEVELOPERS",
|
|
3838
4099
|
ExpoDeveloperOnboarding = "EXPO_DEVELOPER_ONBOARDING"
|
|
@@ -3874,6 +4135,12 @@ export type MeMutation = {
|
|
|
3874
4135
|
purgeUnfinishedSecondFactorAuthentication: SecondFactorBooleanResult;
|
|
3875
4136
|
/** Regenerate backup codes for the current user */
|
|
3876
4137
|
regenerateSecondFactorBackupCodes: SecondFactorRegenerateBackupCodesResult;
|
|
4138
|
+
/** Schedule deletion for Account created via createAccount */
|
|
4139
|
+
scheduleAccountDeletion: BackgroundJobReceipt;
|
|
4140
|
+
/** Schedule deletion of the current regular user */
|
|
4141
|
+
scheduleCurrentUserDeletion: BackgroundJobReceipt;
|
|
4142
|
+
/** Schedule deletion of a SSO user. Actor must be an owner on the SSO user's SSO account. */
|
|
4143
|
+
scheduleSSOUserDeletionAsSSOAccountOwner: BackgroundJobReceipt;
|
|
3877
4144
|
/** Send SMS OTP to a second factor device for use during device setup or during change confirmation */
|
|
3878
4145
|
sendSMSOTPToSecondFactorDevice: SecondFactorBooleanResult;
|
|
3879
4146
|
/**
|
|
@@ -3885,8 +4152,6 @@ export type MeMutation = {
|
|
|
3885
4152
|
setPrimarySecondFactorDevice: SecondFactorBooleanResult;
|
|
3886
4153
|
/** Transfer project to a different Account */
|
|
3887
4154
|
transferApp: App;
|
|
3888
|
-
/** Unpublish an App that the current user owns */
|
|
3889
|
-
unpublishApp: App;
|
|
3890
4155
|
/** Update an App that the current user owns */
|
|
3891
4156
|
updateApp: App;
|
|
3892
4157
|
/** Update the current regular user's data */
|
|
@@ -3896,7 +4161,7 @@ export type MeMutation = {
|
|
|
3896
4161
|
};
|
|
3897
4162
|
export type MeMutationAddSecondFactorDeviceArgs = {
|
|
3898
4163
|
deviceConfiguration: SecondFactorDeviceConfiguration;
|
|
3899
|
-
otp
|
|
4164
|
+
otp?: InputMaybe<Scalars['String']['input']>;
|
|
3900
4165
|
};
|
|
3901
4166
|
export type MeMutationCertifySecondFactorDeviceArgs = {
|
|
3902
4167
|
otp: Scalars['String']['input'];
|
|
@@ -3911,14 +4176,14 @@ export type MeMutationDeleteSsoUserArgs = {
|
|
|
3911
4176
|
ssoUserId: Scalars['ID']['input'];
|
|
3912
4177
|
};
|
|
3913
4178
|
export type MeMutationDeleteSecondFactorDeviceArgs = {
|
|
3914
|
-
otp
|
|
4179
|
+
otp?: InputMaybe<Scalars['String']['input']>;
|
|
3915
4180
|
userSecondFactorDeviceId: Scalars['ID']['input'];
|
|
3916
4181
|
};
|
|
3917
4182
|
export type MeMutationDeleteSnackArgs = {
|
|
3918
4183
|
snackId: Scalars['ID']['input'];
|
|
3919
4184
|
};
|
|
3920
4185
|
export type MeMutationDisableSecondFactorAuthenticationArgs = {
|
|
3921
|
-
otp
|
|
4186
|
+
otp?: InputMaybe<Scalars['String']['input']>;
|
|
3922
4187
|
};
|
|
3923
4188
|
export type MeMutationInitiateSecondFactorAuthenticationArgs = {
|
|
3924
4189
|
deviceConfigurations: Array<SecondFactorDeviceConfiguration>;
|
|
@@ -3928,7 +4193,13 @@ export type MeMutationLeaveAccountArgs = {
|
|
|
3928
4193
|
accountId: Scalars['ID']['input'];
|
|
3929
4194
|
};
|
|
3930
4195
|
export type MeMutationRegenerateSecondFactorBackupCodesArgs = {
|
|
3931
|
-
otp
|
|
4196
|
+
otp?: InputMaybe<Scalars['String']['input']>;
|
|
4197
|
+
};
|
|
4198
|
+
export type MeMutationScheduleAccountDeletionArgs = {
|
|
4199
|
+
accountId: Scalars['ID']['input'];
|
|
4200
|
+
};
|
|
4201
|
+
export type MeMutationScheduleSsoUserDeletionAsSsoAccountOwnerArgs = {
|
|
4202
|
+
ssoUserId: Scalars['ID']['input'];
|
|
3932
4203
|
};
|
|
3933
4204
|
export type MeMutationSendSmsotpToSecondFactorDeviceArgs = {
|
|
3934
4205
|
userSecondFactorDeviceId: Scalars['ID']['input'];
|
|
@@ -3943,9 +4214,6 @@ export type MeMutationTransferAppArgs = {
|
|
|
3943
4214
|
appId: Scalars['ID']['input'];
|
|
3944
4215
|
destinationAccountId: Scalars['ID']['input'];
|
|
3945
4216
|
};
|
|
3946
|
-
export type MeMutationUnpublishAppArgs = {
|
|
3947
|
-
appId: Scalars['ID']['input'];
|
|
3948
|
-
};
|
|
3949
4217
|
export type MeMutationUpdateAppArgs = {
|
|
3950
4218
|
appData: AppDataInput;
|
|
3951
4219
|
};
|
|
@@ -3960,6 +4228,10 @@ export type MeteredBillingStatus = {
|
|
|
3960
4228
|
EAS_BUILD: Scalars['Boolean']['output'];
|
|
3961
4229
|
EAS_UPDATE: Scalars['Boolean']['output'];
|
|
3962
4230
|
};
|
|
4231
|
+
export type MetricsTimespan = {
|
|
4232
|
+
end: Scalars['DateTime']['input'];
|
|
4233
|
+
start: Scalars['DateTime']['input'];
|
|
4234
|
+
};
|
|
3963
4235
|
export type Notification = {
|
|
3964
4236
|
__typename?: 'Notification';
|
|
3965
4237
|
accountName: Scalars['String']['output'];
|
|
@@ -4152,10 +4424,21 @@ export type PublishUpdateGroupInput = {
|
|
|
4152
4424
|
isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4153
4425
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
4154
4426
|
rollBackToEmbeddedInfoGroup?: InputMaybe<UpdateRollBackToEmbeddedGroup>;
|
|
4427
|
+
rolloutInfoGroup?: InputMaybe<UpdateRolloutInfoGroup>;
|
|
4155
4428
|
runtimeVersion: Scalars['String']['input'];
|
|
4156
4429
|
turtleJobRunId?: InputMaybe<Scalars['String']['input']>;
|
|
4157
4430
|
updateInfoGroup?: InputMaybe<UpdateInfoGroup>;
|
|
4158
4431
|
};
|
|
4432
|
+
export declare enum RequestStatusPattern {
|
|
4433
|
+
Http_2Xx = "HTTP_2XX",
|
|
4434
|
+
Http_3Xx = "HTTP_3XX",
|
|
4435
|
+
Http_4Xx = "HTTP_4XX",
|
|
4436
|
+
Http_5Xx = "HTTP_5XX"
|
|
4437
|
+
}
|
|
4438
|
+
export type RequestsTimespan = {
|
|
4439
|
+
end: Scalars['DateTime']['input'];
|
|
4440
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4441
|
+
};
|
|
4159
4442
|
export type RescindUserInvitationResult = {
|
|
4160
4443
|
__typename?: 'RescindUserInvitationResult';
|
|
4161
4444
|
id: Scalars['ID']['output'];
|
|
@@ -4197,6 +4480,8 @@ export type RobotMutation = {
|
|
|
4197
4480
|
createRobotForAccount: Robot;
|
|
4198
4481
|
/** Delete a Robot */
|
|
4199
4482
|
deleteRobot: DeleteRobotResult;
|
|
4483
|
+
/** Schedule deletion of a Robot */
|
|
4484
|
+
scheduleRobotDeletion: BackgroundJobReceipt;
|
|
4200
4485
|
/** Update a Robot */
|
|
4201
4486
|
updateRobot: Robot;
|
|
4202
4487
|
};
|
|
@@ -4208,6 +4493,9 @@ export type RobotMutationCreateRobotForAccountArgs = {
|
|
|
4208
4493
|
export type RobotMutationDeleteRobotArgs = {
|
|
4209
4494
|
id: Scalars['String']['input'];
|
|
4210
4495
|
};
|
|
4496
|
+
export type RobotMutationScheduleRobotDeletionArgs = {
|
|
4497
|
+
id: Scalars['ID']['input'];
|
|
4498
|
+
};
|
|
4211
4499
|
export type RobotMutationUpdateRobotArgs = {
|
|
4212
4500
|
id: Scalars['String']['input'];
|
|
4213
4501
|
robotData: RobotDataInput;
|
|
@@ -4270,6 +4558,7 @@ export type RootMutation = {
|
|
|
4270
4558
|
build: BuildMutation;
|
|
4271
4559
|
/** Mutations that create, update, and delete Build Annotations */
|
|
4272
4560
|
buildAnnotation: BuildAnnotationMutation;
|
|
4561
|
+
customDomain: CustomDomainMutation;
|
|
4273
4562
|
deployments: DeploymentsMutation;
|
|
4274
4563
|
/** Mutations that assign or modify DevDomainNames for apps */
|
|
4275
4564
|
devDomainName: AppDevDomainNameMutation;
|
|
@@ -4326,7 +4615,7 @@ export type RootMutation = {
|
|
|
4326
4615
|
websiteNotifications: WebsiteNotificationMutation;
|
|
4327
4616
|
};
|
|
4328
4617
|
export type RootMutationAccountArgs = {
|
|
4329
|
-
accountName
|
|
4618
|
+
accountName?: InputMaybe<Scalars['ID']['input']>;
|
|
4330
4619
|
};
|
|
4331
4620
|
export type RootMutationAppArgs = {
|
|
4332
4621
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4402,6 +4691,8 @@ export type RootQuery = {
|
|
|
4402
4691
|
/** Top-level query object for querying Expo status page services. */
|
|
4403
4692
|
statuspageService: StatuspageServiceQuery;
|
|
4404
4693
|
submissions: SubmissionQuery;
|
|
4694
|
+
/** Top-level query object for querying Updates. */
|
|
4695
|
+
updates: UpdateQuery;
|
|
4405
4696
|
/** fetch all updates in a group */
|
|
4406
4697
|
updatesByGroup: Array<Update>;
|
|
4407
4698
|
/**
|
|
@@ -4429,6 +4720,7 @@ export type RootQuery = {
|
|
|
4429
4720
|
viewer?: Maybe<User>;
|
|
4430
4721
|
/** Top-level query object for querying Webhooks. */
|
|
4431
4722
|
webhook: WebhookQuery;
|
|
4723
|
+
workerDeployment: WorkerDeploymentQuery;
|
|
4432
4724
|
};
|
|
4433
4725
|
export type RootQueryAllPublicAppsArgs = {
|
|
4434
4726
|
filter: AppsFilter;
|
|
@@ -4752,6 +5044,10 @@ export type StripeCoupon = {
|
|
|
4752
5044
|
percentOff?: Maybe<Scalars['Float']['output']>;
|
|
4753
5045
|
valid: Scalars['Boolean']['output'];
|
|
4754
5046
|
};
|
|
5047
|
+
export type StripePrice = {
|
|
5048
|
+
__typename?: 'StripePrice';
|
|
5049
|
+
id: Scalars['ID']['output'];
|
|
5050
|
+
};
|
|
4755
5051
|
/** Represents an EAS Submission */
|
|
4756
5052
|
export type Submission = ActivityTimelineProjectActivity & {
|
|
4757
5053
|
__typename?: 'Submission';
|
|
@@ -4776,6 +5072,7 @@ export type Submission = ActivityTimelineProjectActivity & {
|
|
|
4776
5072
|
maxRetryTimeMinutes: Scalars['Int']['output'];
|
|
4777
5073
|
parentSubmission?: Maybe<Submission>;
|
|
4778
5074
|
platform: AppPlatform;
|
|
5075
|
+
priority?: Maybe<SubmissionPriority>;
|
|
4779
5076
|
status: SubmissionStatus;
|
|
4780
5077
|
submittedBuild?: Maybe<Build>;
|
|
4781
5078
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -4840,6 +5137,10 @@ export type SubmissionMutationCreateIosSubmissionArgs = {
|
|
|
4840
5137
|
export type SubmissionMutationRetrySubmissionArgs = {
|
|
4841
5138
|
parentSubmissionId: Scalars['ID']['input'];
|
|
4842
5139
|
};
|
|
5140
|
+
export declare enum SubmissionPriority {
|
|
5141
|
+
High = "HIGH",
|
|
5142
|
+
Normal = "NORMAL"
|
|
5143
|
+
}
|
|
4843
5144
|
export type SubmissionQuery = {
|
|
4844
5145
|
__typename?: 'SubmissionQuery';
|
|
4845
5146
|
/** Look up EAS Submission by submission ID */
|
|
@@ -4863,7 +5164,7 @@ export type SubscribeToNotificationResult = {
|
|
|
4863
5164
|
export type SubscriptionDetails = {
|
|
4864
5165
|
__typename?: 'SubscriptionDetails';
|
|
4865
5166
|
addons: Array<AddonDetails>;
|
|
4866
|
-
|
|
5167
|
+
cancelAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4867
5168
|
concurrencies?: Maybe<Concurrencies>;
|
|
4868
5169
|
coupon?: Maybe<StripeCoupon>;
|
|
4869
5170
|
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4873,11 +5174,14 @@ export type SubscriptionDetails = {
|
|
|
4873
5174
|
meteredBillingStatus: MeteredBillingStatus;
|
|
4874
5175
|
name?: Maybe<Scalars['String']['output']>;
|
|
4875
5176
|
nextInvoice?: Maybe<Scalars['DateTime']['output']>;
|
|
5177
|
+
nextInvoiceAmountDueCents?: Maybe<Scalars['Int']['output']>;
|
|
4876
5178
|
planEnablement?: Maybe<PlanEnablement>;
|
|
4877
5179
|
planId?: Maybe<Scalars['String']['output']>;
|
|
4878
5180
|
price: Scalars['Int']['output'];
|
|
5181
|
+
recurringCents?: Maybe<Scalars['Int']['output']>;
|
|
4879
5182
|
status?: Maybe<Scalars['String']['output']>;
|
|
4880
5183
|
trialEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
5184
|
+
upcomingInvoice?: Maybe<Invoice>;
|
|
4881
5185
|
willCancel?: Maybe<Scalars['Boolean']['output']>;
|
|
4882
5186
|
};
|
|
4883
5187
|
export type SubscriptionDetailsPlanEnablementArgs = {
|
|
@@ -4939,6 +5243,8 @@ export type Update = ActivityTimelineProjectActivity & {
|
|
|
4939
5243
|
manifestPermalink: Scalars['String']['output'];
|
|
4940
5244
|
message?: Maybe<Scalars['String']['output']>;
|
|
4941
5245
|
platform: Scalars['String']['output'];
|
|
5246
|
+
rolloutControlUpdate?: Maybe<Update>;
|
|
5247
|
+
rolloutPercentage?: Maybe<Scalars['Int']['output']>;
|
|
4942
5248
|
runtime: Runtime;
|
|
4943
5249
|
/** @deprecated Use 'runtime' field . */
|
|
4944
5250
|
runtimeVersion: Scalars['String']['output'];
|
|
@@ -5050,6 +5356,7 @@ export type UpdateChannelMutationEditUpdateChannelArgs = {
|
|
|
5050
5356
|
export type UpdateGitHubBuildTriggerInput = {
|
|
5051
5357
|
autoSubmit: Scalars['Boolean']['input'];
|
|
5052
5358
|
buildProfile: Scalars['String']['input'];
|
|
5359
|
+
executionBehavior: GitHubBuildTriggerExecutionBehavior;
|
|
5053
5360
|
isActive: Scalars['Boolean']['input'];
|
|
5054
5361
|
platform: AppPlatform;
|
|
5055
5362
|
sourcePattern: Scalars['String']['input'];
|
|
@@ -5084,6 +5391,8 @@ export type UpdateMutation = {
|
|
|
5084
5391
|
deleteUpdateGroup: DeleteUpdateGroupResult;
|
|
5085
5392
|
/** Set code signing info for an update */
|
|
5086
5393
|
setCodeSigningInfo: Update;
|
|
5394
|
+
/** Set rollout percentage for an update */
|
|
5395
|
+
setRolloutPercentage: Update;
|
|
5087
5396
|
};
|
|
5088
5397
|
export type UpdateMutationDeleteUpdateGroupArgs = {
|
|
5089
5398
|
group: Scalars['ID']['input'];
|
|
@@ -5092,11 +5401,32 @@ export type UpdateMutationSetCodeSigningInfoArgs = {
|
|
|
5092
5401
|
codeSigningInfo: CodeSigningInfoInput;
|
|
5093
5402
|
updateId: Scalars['ID']['input'];
|
|
5094
5403
|
};
|
|
5404
|
+
export type UpdateMutationSetRolloutPercentageArgs = {
|
|
5405
|
+
percentage: Scalars['Int']['input'];
|
|
5406
|
+
updateId: Scalars['ID']['input'];
|
|
5407
|
+
};
|
|
5408
|
+
export type UpdateQuery = {
|
|
5409
|
+
__typename?: 'UpdateQuery';
|
|
5410
|
+
/** Query an Update by ID */
|
|
5411
|
+
byId: Update;
|
|
5412
|
+
};
|
|
5413
|
+
export type UpdateQueryByIdArgs = {
|
|
5414
|
+
updateId: Scalars['ID']['input'];
|
|
5415
|
+
};
|
|
5095
5416
|
export type UpdateRollBackToEmbeddedGroup = {
|
|
5096
5417
|
android?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5097
5418
|
ios?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5098
5419
|
web?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5099
5420
|
};
|
|
5421
|
+
export type UpdateRolloutInfo = {
|
|
5422
|
+
rolloutControlUpdateId: Scalars['ID']['input'];
|
|
5423
|
+
rolloutPercentage: Scalars['Int']['input'];
|
|
5424
|
+
};
|
|
5425
|
+
export type UpdateRolloutInfoGroup = {
|
|
5426
|
+
android?: InputMaybe<UpdateRolloutInfo>;
|
|
5427
|
+
ios?: InputMaybe<UpdateRolloutInfo>;
|
|
5428
|
+
web?: InputMaybe<UpdateRolloutInfo>;
|
|
5429
|
+
};
|
|
5100
5430
|
export type UpdatesFilter = {
|
|
5101
5431
|
platform?: InputMaybe<AppPlatform>;
|
|
5102
5432
|
runtimeVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5627,15 +5957,154 @@ export type WebsiteNotificationsConnection = {
|
|
|
5627
5957
|
edges: Array<WebsiteNotificationEdge>;
|
|
5628
5958
|
pageInfo: PageInfo;
|
|
5629
5959
|
};
|
|
5960
|
+
export type WorkerCustomDomain = {
|
|
5961
|
+
__typename?: 'WorkerCustomDomain';
|
|
5962
|
+
alias: WorkerDeploymentAlias;
|
|
5963
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5964
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5965
|
+
dnsRecord: CustomDomainDnsRecord;
|
|
5966
|
+
hostname: Scalars['String']['output'];
|
|
5967
|
+
id: Scalars['ID']['output'];
|
|
5968
|
+
metadata?: Maybe<CustomDomainMetadata>;
|
|
5969
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
5970
|
+
};
|
|
5630
5971
|
export type WorkerDeployment = {
|
|
5631
5972
|
__typename?: 'WorkerDeployment';
|
|
5973
|
+
aliases?: Maybe<Array<WorkerDeploymentAlias>>;
|
|
5974
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5975
|
+
deploymentDomain: Scalars['String']['output'];
|
|
5976
|
+
deploymentIdentifier: Scalars['WorkerDeploymentIdentifier']['output'];
|
|
5977
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5978
|
+
id: Scalars['ID']['output'];
|
|
5979
|
+
logs?: Maybe<WorkerDeploymentLogs>;
|
|
5980
|
+
metrics?: Maybe<WorkerDeploymentMetrics>;
|
|
5981
|
+
subdomain: Scalars['String']['output'];
|
|
5982
|
+
url: Scalars['String']['output'];
|
|
5983
|
+
};
|
|
5984
|
+
export type WorkerDeploymentLogsArgs = {
|
|
5985
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5986
|
+
timespan: LogsTimespan;
|
|
5987
|
+
};
|
|
5988
|
+
export type WorkerDeploymentMetricsArgs = {
|
|
5989
|
+
timespan: MetricsTimespan;
|
|
5990
|
+
};
|
|
5991
|
+
export type WorkerDeploymentAlias = {
|
|
5992
|
+
__typename?: 'WorkerDeploymentAlias';
|
|
5993
|
+
aliasName?: Maybe<Scalars['WorkerDeploymentIdentifier']['output']>;
|
|
5994
|
+
createdAt: Scalars['DateTime']['output'];
|
|
5995
|
+
deploymentDomain: Scalars['String']['output'];
|
|
5996
|
+
devDomainName: Scalars['DevDomainName']['output'];
|
|
5632
5997
|
id: Scalars['ID']['output'];
|
|
5998
|
+
subdomain: Scalars['String']['output'];
|
|
5999
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
6000
|
+
url: Scalars['String']['output'];
|
|
6001
|
+
workerDeployment: WorkerDeployment;
|
|
6002
|
+
};
|
|
6003
|
+
export type WorkerDeploymentAliasEdge = {
|
|
6004
|
+
__typename?: 'WorkerDeploymentAliasEdge';
|
|
6005
|
+
cursor: Scalars['String']['output'];
|
|
6006
|
+
node: WorkerDeploymentAlias;
|
|
6007
|
+
};
|
|
6008
|
+
export type WorkerDeploymentAliasesConnection = {
|
|
6009
|
+
__typename?: 'WorkerDeploymentAliasesConnection';
|
|
6010
|
+
edges: Array<WorkerDeploymentAliasEdge>;
|
|
6011
|
+
pageInfo: PageInfo;
|
|
6012
|
+
};
|
|
6013
|
+
export type WorkerDeploymentCrashNode = {
|
|
6014
|
+
__typename?: 'WorkerDeploymentCrashNode';
|
|
6015
|
+
minOccurrences: Scalars['Int']['output'];
|
|
6016
|
+
mostRecentlyOccurredAt: Scalars['DateTime']['output'];
|
|
6017
|
+
sample?: Maybe<WorkerDeploymentCrashSample>;
|
|
6018
|
+
sampleMessage?: Maybe<Scalars['String']['output']>;
|
|
6019
|
+
};
|
|
6020
|
+
export type WorkerDeploymentCrashSample = {
|
|
6021
|
+
__typename?: 'WorkerDeploymentCrashSample';
|
|
6022
|
+
message: Scalars['String']['output'];
|
|
6023
|
+
name: Scalars['String']['output'];
|
|
6024
|
+
requestTimestamp: Scalars['DateTime']['output'];
|
|
6025
|
+
stack?: Maybe<Array<Scalars['String']['output']>>;
|
|
6026
|
+
};
|
|
6027
|
+
export type WorkerDeploymentCrashes = {
|
|
6028
|
+
__typename?: 'WorkerDeploymentCrashes';
|
|
6029
|
+
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
6030
|
+
nodes: Array<WorkerDeploymentCrashNode>;
|
|
5633
6031
|
};
|
|
5634
6032
|
export type WorkerDeploymentEdge = {
|
|
5635
6033
|
__typename?: 'WorkerDeploymentEdge';
|
|
5636
6034
|
cursor: Scalars['String']['output'];
|
|
5637
6035
|
node: WorkerDeployment;
|
|
5638
6036
|
};
|
|
6037
|
+
export declare enum WorkerDeploymentLogLevel {
|
|
6038
|
+
Debug = "DEBUG",
|
|
6039
|
+
Error = "ERROR",
|
|
6040
|
+
Fatal = "FATAL",
|
|
6041
|
+
Info = "INFO",
|
|
6042
|
+
Log = "LOG",
|
|
6043
|
+
Warn = "WARN"
|
|
6044
|
+
}
|
|
6045
|
+
export type WorkerDeploymentLogNode = {
|
|
6046
|
+
__typename?: 'WorkerDeploymentLogNode';
|
|
6047
|
+
level: WorkerDeploymentLogLevel;
|
|
6048
|
+
message: Scalars['String']['output'];
|
|
6049
|
+
timestamp: Scalars['DateTime']['output'];
|
|
6050
|
+
};
|
|
6051
|
+
export type WorkerDeploymentLogs = {
|
|
6052
|
+
__typename?: 'WorkerDeploymentLogs';
|
|
6053
|
+
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
6054
|
+
nodes: Array<WorkerDeploymentLogNode>;
|
|
6055
|
+
};
|
|
6056
|
+
export type WorkerDeploymentMetrics = {
|
|
6057
|
+
__typename?: 'WorkerDeploymentMetrics';
|
|
6058
|
+
groups: Array<Maybe<WorkerDeploymentMetricsEdge>>;
|
|
6059
|
+
id: Scalars['ID']['output'];
|
|
6060
|
+
summary: WorkerDeploymentMetricsData;
|
|
6061
|
+
};
|
|
6062
|
+
export type WorkerDeploymentMetricsData = {
|
|
6063
|
+
__typename?: 'WorkerDeploymentMetricsData';
|
|
6064
|
+
crashesSum: Scalars['Int']['output'];
|
|
6065
|
+
durationP50?: Maybe<Scalars['Float']['output']>;
|
|
6066
|
+
durationP90?: Maybe<Scalars['Float']['output']>;
|
|
6067
|
+
durationP99?: Maybe<Scalars['Float']['output']>;
|
|
6068
|
+
requestsSum: Scalars['Int']['output'];
|
|
6069
|
+
};
|
|
6070
|
+
export type WorkerDeploymentMetricsEdge = {
|
|
6071
|
+
__typename?: 'WorkerDeploymentMetricsEdge';
|
|
6072
|
+
node: WorkerDeploymentMetricsData;
|
|
6073
|
+
timestamp: Scalars['DateTime']['output'];
|
|
6074
|
+
};
|
|
6075
|
+
export type WorkerDeploymentQuery = {
|
|
6076
|
+
__typename?: 'WorkerDeploymentQuery';
|
|
6077
|
+
byId: WorkerDeployment;
|
|
6078
|
+
};
|
|
6079
|
+
export type WorkerDeploymentQueryByIdArgs = {
|
|
6080
|
+
id: Scalars['ID']['input'];
|
|
6081
|
+
};
|
|
6082
|
+
export type WorkerDeploymentRequestLocation = {
|
|
6083
|
+
__typename?: 'WorkerDeploymentRequestLocation';
|
|
6084
|
+
continent?: Maybe<ContinentCode>;
|
|
6085
|
+
countryCode?: Maybe<Scalars['String']['output']>;
|
|
6086
|
+
regionCode?: Maybe<Scalars['String']['output']>;
|
|
6087
|
+
};
|
|
6088
|
+
export type WorkerDeploymentRequestNode = {
|
|
6089
|
+
__typename?: 'WorkerDeploymentRequestNode';
|
|
6090
|
+
location?: Maybe<WorkerDeploymentRequestLocation>;
|
|
6091
|
+
method: Scalars['String']['output'];
|
|
6092
|
+
pathname: Scalars['String']['output'];
|
|
6093
|
+
search?: Maybe<Scalars['String']['output']>;
|
|
6094
|
+
status: Scalars['Int']['output'];
|
|
6095
|
+
timestamp: Scalars['DateTime']['output'];
|
|
6096
|
+
};
|
|
6097
|
+
export type WorkerDeploymentRequests = {
|
|
6098
|
+
__typename?: 'WorkerDeploymentRequests';
|
|
6099
|
+
minRowsWithoutLimit?: Maybe<Scalars['Int']['output']>;
|
|
6100
|
+
nodes: Array<WorkerDeploymentRequestNode>;
|
|
6101
|
+
};
|
|
6102
|
+
export type WorkerDeploymentRequestsFilter = {
|
|
6103
|
+
methods?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6104
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
6105
|
+
statusCodes?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
6106
|
+
statusPatterns?: InputMaybe<Array<RequestStatusPattern>>;
|
|
6107
|
+
};
|
|
5639
6108
|
export type WorkerDeploymentsConnection = {
|
|
5640
6109
|
__typename?: 'WorkerDeploymentsConnection';
|
|
5641
6110
|
edges: Array<WorkerDeploymentEdge>;
|
|
@@ -9841,6 +10310,115 @@ export type DeleteEnvironmentSecretMutation = {
|
|
|
9841
10310
|
};
|
|
9842
10311
|
};
|
|
9843
10312
|
};
|
|
10313
|
+
export type LinkSharedEnvironmentVariableMutationVariables = Exact<{
|
|
10314
|
+
appId: Scalars['ID']['input'];
|
|
10315
|
+
environment: EnvironmentVariableEnvironment;
|
|
10316
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
10317
|
+
}>;
|
|
10318
|
+
export type LinkSharedEnvironmentVariableMutation = {
|
|
10319
|
+
__typename?: 'RootMutation';
|
|
10320
|
+
environmentVariable: {
|
|
10321
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10322
|
+
linkSharedEnvironmentVariable: {
|
|
10323
|
+
__typename?: 'EnvironmentVariable';
|
|
10324
|
+
id: string;
|
|
10325
|
+
name: string;
|
|
10326
|
+
value?: string | null;
|
|
10327
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10328
|
+
createdAt: any;
|
|
10329
|
+
scope: EnvironmentVariableScope;
|
|
10330
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10331
|
+
};
|
|
10332
|
+
};
|
|
10333
|
+
};
|
|
10334
|
+
export type UnlinkSharedEnvironmentVariableMutationVariables = Exact<{
|
|
10335
|
+
appId: Scalars['ID']['input'];
|
|
10336
|
+
environment: EnvironmentVariableEnvironment;
|
|
10337
|
+
environmentVariableId: Scalars['ID']['input'];
|
|
10338
|
+
}>;
|
|
10339
|
+
export type UnlinkSharedEnvironmentVariableMutation = {
|
|
10340
|
+
__typename?: 'RootMutation';
|
|
10341
|
+
environmentVariable: {
|
|
10342
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10343
|
+
unlinkSharedEnvironmentVariable: {
|
|
10344
|
+
__typename?: 'EnvironmentVariable';
|
|
10345
|
+
id: string;
|
|
10346
|
+
name: string;
|
|
10347
|
+
value?: string | null;
|
|
10348
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10349
|
+
createdAt: any;
|
|
10350
|
+
scope: EnvironmentVariableScope;
|
|
10351
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10352
|
+
};
|
|
10353
|
+
};
|
|
10354
|
+
};
|
|
10355
|
+
export type CreateEnvironmentVariableForAccountMutationVariables = Exact<{
|
|
10356
|
+
input: CreateSharedEnvironmentVariableInput;
|
|
10357
|
+
accountId: Scalars['ID']['input'];
|
|
10358
|
+
}>;
|
|
10359
|
+
export type CreateEnvironmentVariableForAccountMutation = {
|
|
10360
|
+
__typename?: 'RootMutation';
|
|
10361
|
+
environmentVariable: {
|
|
10362
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10363
|
+
createEnvironmentVariableForAccount: {
|
|
10364
|
+
__typename?: 'EnvironmentVariable';
|
|
10365
|
+
id: string;
|
|
10366
|
+
name: string;
|
|
10367
|
+
value?: string | null;
|
|
10368
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10369
|
+
createdAt: any;
|
|
10370
|
+
scope: EnvironmentVariableScope;
|
|
10371
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10372
|
+
};
|
|
10373
|
+
};
|
|
10374
|
+
};
|
|
10375
|
+
export type CreateEnvironmentVariableForAppMutationVariables = Exact<{
|
|
10376
|
+
input: CreateEnvironmentVariableInput;
|
|
10377
|
+
appId: Scalars['ID']['input'];
|
|
10378
|
+
}>;
|
|
10379
|
+
export type CreateEnvironmentVariableForAppMutation = {
|
|
10380
|
+
__typename?: 'RootMutation';
|
|
10381
|
+
environmentVariable: {
|
|
10382
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10383
|
+
createEnvironmentVariableForApp: {
|
|
10384
|
+
__typename?: 'EnvironmentVariable';
|
|
10385
|
+
id: string;
|
|
10386
|
+
name: string;
|
|
10387
|
+
value?: string | null;
|
|
10388
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
10389
|
+
createdAt: any;
|
|
10390
|
+
scope: EnvironmentVariableScope;
|
|
10391
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
10392
|
+
};
|
|
10393
|
+
};
|
|
10394
|
+
};
|
|
10395
|
+
export type DeleteEnvironmentVariableMutationVariables = Exact<{
|
|
10396
|
+
id: Scalars['ID']['input'];
|
|
10397
|
+
}>;
|
|
10398
|
+
export type DeleteEnvironmentVariableMutation = {
|
|
10399
|
+
__typename?: 'RootMutation';
|
|
10400
|
+
environmentVariable: {
|
|
10401
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10402
|
+
deleteEnvironmentVariable: {
|
|
10403
|
+
__typename?: 'DeleteEnvironmentVariableResult';
|
|
10404
|
+
id: string;
|
|
10405
|
+
};
|
|
10406
|
+
};
|
|
10407
|
+
};
|
|
10408
|
+
export type CreateBulkEnvironmentVariablesForAppMutationVariables = Exact<{
|
|
10409
|
+
input: Array<CreateEnvironmentVariableInput> | CreateEnvironmentVariableInput;
|
|
10410
|
+
appId: Scalars['ID']['input'];
|
|
10411
|
+
}>;
|
|
10412
|
+
export type CreateBulkEnvironmentVariablesForAppMutation = {
|
|
10413
|
+
__typename?: 'RootMutation';
|
|
10414
|
+
environmentVariable: {
|
|
10415
|
+
__typename?: 'EnvironmentVariableMutation';
|
|
10416
|
+
createBulkEnvironmentVariablesForApp: Array<{
|
|
10417
|
+
__typename?: 'EnvironmentVariable';
|
|
10418
|
+
id: string;
|
|
10419
|
+
}>;
|
|
10420
|
+
};
|
|
10421
|
+
};
|
|
9844
10422
|
export type CreateKeystoreGenerationUrlMutationVariables = Exact<{
|
|
9845
10423
|
[key: string]: never;
|
|
9846
10424
|
}>;
|
|
@@ -9887,6 +10465,7 @@ export type UpdatePublishMutation = {
|
|
|
9887
10465
|
isRollBackToEmbedded: boolean;
|
|
9888
10466
|
manifestPermalink: string;
|
|
9889
10467
|
gitCommitHash?: string | null;
|
|
10468
|
+
rolloutPercentage?: number | null;
|
|
9890
10469
|
actor?: {
|
|
9891
10470
|
__typename: 'Robot';
|
|
9892
10471
|
firstName?: string | null;
|
|
@@ -9911,6 +10490,10 @@ export type UpdatePublishMutation = {
|
|
|
9911
10490
|
sig: string;
|
|
9912
10491
|
alg: string;
|
|
9913
10492
|
} | null;
|
|
10493
|
+
rolloutControlUpdate?: {
|
|
10494
|
+
__typename?: 'Update';
|
|
10495
|
+
id: string;
|
|
10496
|
+
} | null;
|
|
9914
10497
|
}>;
|
|
9915
10498
|
};
|
|
9916
10499
|
};
|
|
@@ -9936,6 +10519,58 @@ export type SetCodeSigningInfoMutation = {
|
|
|
9936
10519
|
};
|
|
9937
10520
|
};
|
|
9938
10521
|
};
|
|
10522
|
+
export type SetRolloutPercentageMutationVariables = Exact<{
|
|
10523
|
+
updateId: Scalars['ID']['input'];
|
|
10524
|
+
rolloutPercentage: Scalars['Int']['input'];
|
|
10525
|
+
}>;
|
|
10526
|
+
export type SetRolloutPercentageMutation = {
|
|
10527
|
+
__typename?: 'RootMutation';
|
|
10528
|
+
update: {
|
|
10529
|
+
__typename?: 'UpdateMutation';
|
|
10530
|
+
setRolloutPercentage: {
|
|
10531
|
+
__typename?: 'Update';
|
|
10532
|
+
id: string;
|
|
10533
|
+
group: string;
|
|
10534
|
+
message?: string | null;
|
|
10535
|
+
createdAt: any;
|
|
10536
|
+
runtimeVersion: string;
|
|
10537
|
+
platform: string;
|
|
10538
|
+
manifestFragment: string;
|
|
10539
|
+
isRollBackToEmbedded: boolean;
|
|
10540
|
+
manifestPermalink: string;
|
|
10541
|
+
gitCommitHash?: string | null;
|
|
10542
|
+
rolloutPercentage?: number | null;
|
|
10543
|
+
actor?: {
|
|
10544
|
+
__typename: 'Robot';
|
|
10545
|
+
firstName?: string | null;
|
|
10546
|
+
id: string;
|
|
10547
|
+
} | {
|
|
10548
|
+
__typename: 'SSOUser';
|
|
10549
|
+
username: string;
|
|
10550
|
+
id: string;
|
|
10551
|
+
} | {
|
|
10552
|
+
__typename: 'User';
|
|
10553
|
+
username: string;
|
|
10554
|
+
id: string;
|
|
10555
|
+
} | null;
|
|
10556
|
+
branch: {
|
|
10557
|
+
__typename?: 'UpdateBranch';
|
|
10558
|
+
id: string;
|
|
10559
|
+
name: string;
|
|
10560
|
+
};
|
|
10561
|
+
codeSigningInfo?: {
|
|
10562
|
+
__typename?: 'CodeSigningInfo';
|
|
10563
|
+
keyid: string;
|
|
10564
|
+
sig: string;
|
|
10565
|
+
alg: string;
|
|
10566
|
+
} | null;
|
|
10567
|
+
rolloutControlUpdate?: {
|
|
10568
|
+
__typename?: 'Update';
|
|
10569
|
+
id: string;
|
|
10570
|
+
} | null;
|
|
10571
|
+
};
|
|
10572
|
+
};
|
|
10573
|
+
};
|
|
9939
10574
|
export type CreateAndroidSubmissionMutationVariables = Exact<{
|
|
9940
10575
|
appId: Scalars['ID']['input'];
|
|
9941
10576
|
config: AndroidSubmissionConfigInput;
|
|
@@ -10258,6 +10893,30 @@ export type ViewBranchQuery = {
|
|
|
10258
10893
|
};
|
|
10259
10894
|
};
|
|
10260
10895
|
};
|
|
10896
|
+
export type ViewLatestUpdateOnBranchQueryVariables = Exact<{
|
|
10897
|
+
appId: Scalars['String']['input'];
|
|
10898
|
+
branchName: Scalars['String']['input'];
|
|
10899
|
+
platform: AppPlatform;
|
|
10900
|
+
runtimeVersion: Scalars['String']['input'];
|
|
10901
|
+
}>;
|
|
10902
|
+
export type ViewLatestUpdateOnBranchQuery = {
|
|
10903
|
+
__typename?: 'RootQuery';
|
|
10904
|
+
app: {
|
|
10905
|
+
__typename?: 'AppQuery';
|
|
10906
|
+
byId: {
|
|
10907
|
+
__typename?: 'App';
|
|
10908
|
+
id: string;
|
|
10909
|
+
updateBranchByName?: {
|
|
10910
|
+
__typename?: 'UpdateBranch';
|
|
10911
|
+
id: string;
|
|
10912
|
+
updates: Array<{
|
|
10913
|
+
__typename?: 'Update';
|
|
10914
|
+
id: string;
|
|
10915
|
+
}>;
|
|
10916
|
+
} | null;
|
|
10917
|
+
};
|
|
10918
|
+
};
|
|
10919
|
+
};
|
|
10261
10920
|
export type BranchesByAppQueryVariables = Exact<{
|
|
10262
10921
|
appId: Scalars['String']['input'];
|
|
10263
10922
|
limit: Scalars['Int']['input'];
|
|
@@ -10286,6 +10945,7 @@ export type BranchesByAppQuery = {
|
|
|
10286
10945
|
isRollBackToEmbedded: boolean;
|
|
10287
10946
|
manifestPermalink: string;
|
|
10288
10947
|
gitCommitHash?: string | null;
|
|
10948
|
+
rolloutPercentage?: number | null;
|
|
10289
10949
|
actor?: {
|
|
10290
10950
|
__typename: 'Robot';
|
|
10291
10951
|
firstName?: string | null;
|
|
@@ -10310,6 +10970,10 @@ export type BranchesByAppQuery = {
|
|
|
10310
10970
|
sig: string;
|
|
10311
10971
|
alg: string;
|
|
10312
10972
|
} | null;
|
|
10973
|
+
rolloutControlUpdate?: {
|
|
10974
|
+
__typename?: 'Update';
|
|
10975
|
+
id: string;
|
|
10976
|
+
} | null;
|
|
10313
10977
|
}>;
|
|
10314
10978
|
}>;
|
|
10315
10979
|
};
|
|
@@ -10383,6 +11047,7 @@ export type ViewBranchesOnUpdateChannelQuery = {
|
|
|
10383
11047
|
isRollBackToEmbedded: boolean;
|
|
10384
11048
|
manifestPermalink: string;
|
|
10385
11049
|
gitCommitHash?: string | null;
|
|
11050
|
+
rolloutPercentage?: number | null;
|
|
10386
11051
|
actor?: {
|
|
10387
11052
|
__typename: 'Robot';
|
|
10388
11053
|
firstName?: string | null;
|
|
@@ -10407,6 +11072,10 @@ export type ViewBranchesOnUpdateChannelQuery = {
|
|
|
10407
11072
|
sig: string;
|
|
10408
11073
|
alg: string;
|
|
10409
11074
|
} | null;
|
|
11075
|
+
rolloutControlUpdate?: {
|
|
11076
|
+
__typename?: 'Update';
|
|
11077
|
+
id: string;
|
|
11078
|
+
} | null;
|
|
10410
11079
|
}>>;
|
|
10411
11080
|
}>;
|
|
10412
11081
|
} | null;
|
|
@@ -10721,6 +11390,7 @@ export type ViewUpdateChannelOnAppQuery = {
|
|
|
10721
11390
|
isRollBackToEmbedded: boolean;
|
|
10722
11391
|
manifestPermalink: string;
|
|
10723
11392
|
gitCommitHash?: string | null;
|
|
11393
|
+
rolloutPercentage?: number | null;
|
|
10724
11394
|
actor?: {
|
|
10725
11395
|
__typename: 'Robot';
|
|
10726
11396
|
firstName?: string | null;
|
|
@@ -10745,6 +11415,10 @@ export type ViewUpdateChannelOnAppQuery = {
|
|
|
10745
11415
|
sig: string;
|
|
10746
11416
|
alg: string;
|
|
10747
11417
|
} | null;
|
|
11418
|
+
rolloutControlUpdate?: {
|
|
11419
|
+
__typename?: 'Update';
|
|
11420
|
+
id: string;
|
|
11421
|
+
} | null;
|
|
10748
11422
|
}>>;
|
|
10749
11423
|
}>;
|
|
10750
11424
|
} | null;
|
|
@@ -10786,6 +11460,7 @@ export type ViewUpdateChannelsOnAppQuery = {
|
|
|
10786
11460
|
isRollBackToEmbedded: boolean;
|
|
10787
11461
|
manifestPermalink: string;
|
|
10788
11462
|
gitCommitHash?: string | null;
|
|
11463
|
+
rolloutPercentage?: number | null;
|
|
10789
11464
|
actor?: {
|
|
10790
11465
|
__typename: 'Robot';
|
|
10791
11466
|
firstName?: string | null;
|
|
@@ -10810,6 +11485,10 @@ export type ViewUpdateChannelsOnAppQuery = {
|
|
|
10810
11485
|
sig: string;
|
|
10811
11486
|
alg: string;
|
|
10812
11487
|
} | null;
|
|
11488
|
+
rolloutControlUpdate?: {
|
|
11489
|
+
__typename?: 'Update';
|
|
11490
|
+
id: string;
|
|
11491
|
+
} | null;
|
|
10813
11492
|
}>>;
|
|
10814
11493
|
}>;
|
|
10815
11494
|
}>;
|
|
@@ -10884,6 +11563,104 @@ export type EnvironmentSecretsByAppIdQuery = {
|
|
|
10884
11563
|
};
|
|
10885
11564
|
};
|
|
10886
11565
|
};
|
|
11566
|
+
export type EnvironmentVariablesIncludingSensitiveByAppIdQueryVariables = Exact<{
|
|
11567
|
+
appId: Scalars['String']['input'];
|
|
11568
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11569
|
+
environment: EnvironmentVariableEnvironment;
|
|
11570
|
+
}>;
|
|
11571
|
+
export type EnvironmentVariablesIncludingSensitiveByAppIdQuery = {
|
|
11572
|
+
__typename?: 'RootQuery';
|
|
11573
|
+
app: {
|
|
11574
|
+
__typename?: 'AppQuery';
|
|
11575
|
+
byId: {
|
|
11576
|
+
__typename?: 'App';
|
|
11577
|
+
id: string;
|
|
11578
|
+
environmentVariablesIncludingSensitive: Array<{
|
|
11579
|
+
__typename?: 'EnvironmentVariableWithSecret';
|
|
11580
|
+
id: string;
|
|
11581
|
+
name: string;
|
|
11582
|
+
value?: string | null;
|
|
11583
|
+
}>;
|
|
11584
|
+
};
|
|
11585
|
+
};
|
|
11586
|
+
};
|
|
11587
|
+
export type EnvironmentVariablesByAppIdQueryVariables = Exact<{
|
|
11588
|
+
appId: Scalars['String']['input'];
|
|
11589
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11590
|
+
environment: EnvironmentVariableEnvironment;
|
|
11591
|
+
}>;
|
|
11592
|
+
export type EnvironmentVariablesByAppIdQuery = {
|
|
11593
|
+
__typename?: 'RootQuery';
|
|
11594
|
+
app: {
|
|
11595
|
+
__typename?: 'AppQuery';
|
|
11596
|
+
byId: {
|
|
11597
|
+
__typename?: 'App';
|
|
11598
|
+
id: string;
|
|
11599
|
+
environmentVariables: Array<{
|
|
11600
|
+
__typename?: 'EnvironmentVariable';
|
|
11601
|
+
id: string;
|
|
11602
|
+
name: string;
|
|
11603
|
+
value?: string | null;
|
|
11604
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
11605
|
+
createdAt: any;
|
|
11606
|
+
scope: EnvironmentVariableScope;
|
|
11607
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
11608
|
+
}>;
|
|
11609
|
+
};
|
|
11610
|
+
};
|
|
11611
|
+
};
|
|
11612
|
+
export type EnvironmentVariablesSharedQueryVariables = Exact<{
|
|
11613
|
+
appId: Scalars['String']['input'];
|
|
11614
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11615
|
+
}>;
|
|
11616
|
+
export type EnvironmentVariablesSharedQuery = {
|
|
11617
|
+
__typename?: 'RootQuery';
|
|
11618
|
+
app: {
|
|
11619
|
+
__typename?: 'AppQuery';
|
|
11620
|
+
byId: {
|
|
11621
|
+
__typename?: 'App';
|
|
11622
|
+
id: string;
|
|
11623
|
+
ownerAccount: {
|
|
11624
|
+
__typename?: 'Account';
|
|
11625
|
+
id: string;
|
|
11626
|
+
environmentVariables: Array<{
|
|
11627
|
+
__typename?: 'EnvironmentVariable';
|
|
11628
|
+
id: string;
|
|
11629
|
+
name: string;
|
|
11630
|
+
value?: string | null;
|
|
11631
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
11632
|
+
createdAt: any;
|
|
11633
|
+
scope: EnvironmentVariableScope;
|
|
11634
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
11635
|
+
}>;
|
|
11636
|
+
};
|
|
11637
|
+
};
|
|
11638
|
+
};
|
|
11639
|
+
};
|
|
11640
|
+
export type EnvironmentVariablesSharedWithSensitiveQueryVariables = Exact<{
|
|
11641
|
+
appId: Scalars['String']['input'];
|
|
11642
|
+
filterNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
11643
|
+
}>;
|
|
11644
|
+
export type EnvironmentVariablesSharedWithSensitiveQuery = {
|
|
11645
|
+
__typename?: 'RootQuery';
|
|
11646
|
+
app: {
|
|
11647
|
+
__typename?: 'AppQuery';
|
|
11648
|
+
byId: {
|
|
11649
|
+
__typename?: 'App';
|
|
11650
|
+
id: string;
|
|
11651
|
+
ownerAccount: {
|
|
11652
|
+
__typename?: 'Account';
|
|
11653
|
+
id: string;
|
|
11654
|
+
environmentVariablesIncludingSensitive: Array<{
|
|
11655
|
+
__typename?: 'EnvironmentVariableWithSecret';
|
|
11656
|
+
id: string;
|
|
11657
|
+
name: string;
|
|
11658
|
+
value?: string | null;
|
|
11659
|
+
}>;
|
|
11660
|
+
};
|
|
11661
|
+
};
|
|
11662
|
+
};
|
|
11663
|
+
};
|
|
10887
11664
|
export type GetAssetMetadataQueryVariables = Exact<{
|
|
10888
11665
|
storageKeys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
10889
11666
|
}>;
|
|
@@ -11090,6 +11867,7 @@ export type ViewUpdatesByGroupQuery = {
|
|
|
11090
11867
|
isRollBackToEmbedded: boolean;
|
|
11091
11868
|
manifestPermalink: string;
|
|
11092
11869
|
gitCommitHash?: string | null;
|
|
11870
|
+
rolloutPercentage?: number | null;
|
|
11093
11871
|
actor?: {
|
|
11094
11872
|
__typename: 'Robot';
|
|
11095
11873
|
firstName?: string | null;
|
|
@@ -11114,6 +11892,10 @@ export type ViewUpdatesByGroupQuery = {
|
|
|
11114
11892
|
sig: string;
|
|
11115
11893
|
alg: string;
|
|
11116
11894
|
} | null;
|
|
11895
|
+
rolloutControlUpdate?: {
|
|
11896
|
+
__typename?: 'Update';
|
|
11897
|
+
id: string;
|
|
11898
|
+
} | null;
|
|
11117
11899
|
}>;
|
|
11118
11900
|
};
|
|
11119
11901
|
export type ViewUpdateGroupsOnBranchQueryVariables = Exact<{
|
|
@@ -11145,6 +11927,7 @@ export type ViewUpdateGroupsOnBranchQuery = {
|
|
|
11145
11927
|
isRollBackToEmbedded: boolean;
|
|
11146
11928
|
manifestPermalink: string;
|
|
11147
11929
|
gitCommitHash?: string | null;
|
|
11930
|
+
rolloutPercentage?: number | null;
|
|
11148
11931
|
actor?: {
|
|
11149
11932
|
__typename: 'Robot';
|
|
11150
11933
|
firstName?: string | null;
|
|
@@ -11169,6 +11952,10 @@ export type ViewUpdateGroupsOnBranchQuery = {
|
|
|
11169
11952
|
sig: string;
|
|
11170
11953
|
alg: string;
|
|
11171
11954
|
} | null;
|
|
11955
|
+
rolloutControlUpdate?: {
|
|
11956
|
+
__typename?: 'Update';
|
|
11957
|
+
id: string;
|
|
11958
|
+
} | null;
|
|
11172
11959
|
}>>;
|
|
11173
11960
|
} | null;
|
|
11174
11961
|
};
|
|
@@ -11199,6 +11986,7 @@ export type ViewUpdateGroupsOnAppQuery = {
|
|
|
11199
11986
|
isRollBackToEmbedded: boolean;
|
|
11200
11987
|
manifestPermalink: string;
|
|
11201
11988
|
gitCommitHash?: string | null;
|
|
11989
|
+
rolloutPercentage?: number | null;
|
|
11202
11990
|
actor?: {
|
|
11203
11991
|
__typename: 'Robot';
|
|
11204
11992
|
firstName?: string | null;
|
|
@@ -11223,6 +12011,10 @@ export type ViewUpdateGroupsOnAppQuery = {
|
|
|
11223
12011
|
sig: string;
|
|
11224
12012
|
alg: string;
|
|
11225
12013
|
} | null;
|
|
12014
|
+
rolloutControlUpdate?: {
|
|
12015
|
+
__typename?: 'Update';
|
|
12016
|
+
id: string;
|
|
12017
|
+
} | null;
|
|
11226
12018
|
}>>;
|
|
11227
12019
|
};
|
|
11228
12020
|
};
|
|
@@ -11705,6 +12497,16 @@ export type EnvironmentSecretFragment = {
|
|
|
11705
12497
|
type: EnvironmentSecretType;
|
|
11706
12498
|
createdAt: any;
|
|
11707
12499
|
};
|
|
12500
|
+
export type EnvironmentVariableFragment = {
|
|
12501
|
+
__typename?: 'EnvironmentVariable';
|
|
12502
|
+
id: string;
|
|
12503
|
+
name: string;
|
|
12504
|
+
value?: string | null;
|
|
12505
|
+
environment?: EnvironmentVariableEnvironment | null;
|
|
12506
|
+
createdAt: any;
|
|
12507
|
+
scope: EnvironmentVariableScope;
|
|
12508
|
+
visibility?: EnvironmentVariableVisibility | null;
|
|
12509
|
+
};
|
|
11708
12510
|
export type RuntimeFragment = {
|
|
11709
12511
|
__typename?: 'Runtime';
|
|
11710
12512
|
id: string;
|
|
@@ -11771,6 +12573,7 @@ export type UpdateFragment = {
|
|
|
11771
12573
|
isRollBackToEmbedded: boolean;
|
|
11772
12574
|
manifestPermalink: string;
|
|
11773
12575
|
gitCommitHash?: string | null;
|
|
12576
|
+
rolloutPercentage?: number | null;
|
|
11774
12577
|
actor?: {
|
|
11775
12578
|
__typename: 'Robot';
|
|
11776
12579
|
firstName?: string | null;
|
|
@@ -11795,6 +12598,10 @@ export type UpdateFragment = {
|
|
|
11795
12598
|
sig: string;
|
|
11796
12599
|
alg: string;
|
|
11797
12600
|
} | null;
|
|
12601
|
+
rolloutControlUpdate?: {
|
|
12602
|
+
__typename?: 'Update';
|
|
12603
|
+
id: string;
|
|
12604
|
+
} | null;
|
|
11798
12605
|
};
|
|
11799
12606
|
export type UpdateBranchFragment = {
|
|
11800
12607
|
__typename?: 'UpdateBranch';
|
|
@@ -11812,6 +12619,7 @@ export type UpdateBranchFragment = {
|
|
|
11812
12619
|
isRollBackToEmbedded: boolean;
|
|
11813
12620
|
manifestPermalink: string;
|
|
11814
12621
|
gitCommitHash?: string | null;
|
|
12622
|
+
rolloutPercentage?: number | null;
|
|
11815
12623
|
actor?: {
|
|
11816
12624
|
__typename: 'Robot';
|
|
11817
12625
|
firstName?: string | null;
|
|
@@ -11836,6 +12644,10 @@ export type UpdateBranchFragment = {
|
|
|
11836
12644
|
sig: string;
|
|
11837
12645
|
alg: string;
|
|
11838
12646
|
} | null;
|
|
12647
|
+
rolloutControlUpdate?: {
|
|
12648
|
+
__typename?: 'Update';
|
|
12649
|
+
id: string;
|
|
12650
|
+
} | null;
|
|
11839
12651
|
}>;
|
|
11840
12652
|
};
|
|
11841
12653
|
export type UpdateBranchBasicInfoFragment = {
|