eas-cli 16.28.0 → 16.31.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 +97 -94
- package/build/analytics/AnalyticsManager.js +4 -4
- package/build/analytics/common.js +1 -2
- package/build/api.js +5 -5
- package/build/branch/delete.js +1 -2
- package/build/branch/queries.js +5 -5
- package/build/branch/utils.js +2 -2
- package/build/build/android/build.js +3 -4
- package/build/build/android/graphql.js +1 -2
- package/build/build/android/prepareJob.js +1 -2
- package/build/build/android/syncProjectConfiguration.js +2 -3
- package/build/build/android/version.js +6 -6
- package/build/build/build.js +3 -4
- package/build/build/configure.js +4 -5
- package/build/build/createContext.js +1 -2
- package/build/build/evaluateConfigWithEnvVarsAsync.js +1 -2
- package/build/build/graphql.js +7 -7
- package/build/build/ios/build.js +2 -3
- package/build/build/ios/credentials.js +2 -3
- package/build/build/ios/graphql.js +2 -3
- package/build/build/ios/prepareJob.js +2 -3
- package/build/build/ios/syncProjectConfiguration.js +1 -2
- package/build/build/ios/version.js +10 -10
- package/build/build/local.js +2 -2
- package/build/build/metadata.js +3 -4
- package/build/build/queries.js +4 -4
- package/build/build/runBuildAndSubmit.js +2 -3
- package/build/build/utils/appJson.js +2 -3
- package/build/build/utils/credentials.js +1 -2
- package/build/build/utils/devClient.js +1 -2
- package/build/build/utils/formatBuild.js +2 -3
- package/build/build/utils/printBuildInfo.js +4 -5
- package/build/build/utils/repository.js +8 -9
- package/build/build/utils/resourceClass.js +1 -2
- package/build/build/utils/url.js +8 -9
- package/build/build/utils/version.js +2 -3
- package/build/build/validate.js +3 -4
- package/build/channel/branch-mapping.js +24 -24
- package/build/channel/delete.d.ts +5 -0
- package/build/channel/delete.js +23 -0
- package/build/channel/print-utils.js +2 -3
- package/build/channel/queries.js +8 -8
- package/build/channel/utils.js +1 -2
- package/build/commandUtils/builds.js +3 -4
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -2
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +2 -3
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -4
- package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +1 -2
- package/build/commandUtils/experienceParser.d.ts +6 -0
- package/build/commandUtils/experienceParser.js +42 -0
- package/build/commandUtils/new/commands.js +3 -4
- package/build/commandUtils/new/configs.js +4 -5
- package/build/commandUtils/new/projectFiles.js +6 -7
- package/build/commandUtils/new/utils.js +1 -2
- package/build/commandUtils/projectNameValidation.d.ts +8 -0
- package/build/commandUtils/projectNameValidation.js +30 -0
- package/build/commandUtils/workflow/buildProfileUtils.js +12 -13
- package/build/commandUtils/workflow/creation.js +5 -5
- package/build/commandUtils/workflow/fetchLogs.js +2 -3
- package/build/commandUtils/workflow/inputs.js +5 -5
- package/build/commandUtils/workflow/stateMachine.js +7 -7
- package/build/commandUtils/workflow/utils.js +12 -12
- package/build/commandUtils/workflow/validation.js +4 -5
- package/build/commands/build/cancel.js +1 -2
- package/build/commands/build/delete.js +1 -2
- package/build/commands/build/index.js +1 -2
- package/build/commands/channel/delete.js +7 -23
- package/build/commands/channel/edit.js +1 -2
- package/build/commands/channel/pause.js +1 -2
- package/build/commands/channel/resume.js +1 -2
- package/build/commands/deploy/index.js +1 -1
- package/build/commands/project/init.js +3 -1
- package/build/commands/project/new.js +3 -4
- package/build/commands/update/index.d.ts +8 -0
- package/build/commands/update/index.js +39 -56
- package/build/commands/update/list.d.ts +3 -0
- package/build/commands/update/list.js +30 -1
- package/build/commands/update/revert-update-rollout.js +1 -2
- package/build/credentials/android/actions/BuildCredentialsUtils.js +6 -7
- package/build/credentials/android/api/GraphqlClient.js +21 -21
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.d.ts +2 -2
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +5 -5
- package/build/credentials/android/utils/googleServiceAccountKey.js +4 -4
- package/build/credentials/android/utils/keystore.js +2 -3
- package/build/credentials/android/utils/keystoreNew.js +3 -4
- package/build/credentials/android/utils/printCredentials.js +3 -4
- package/build/credentials/credentialsJson/read.js +3 -4
- package/build/credentials/credentialsJson/update.js +2 -3
- package/build/credentials/credentialsJson/utils.js +2 -3
- package/build/credentials/ios/actions/AppleTeamFormatting.js +1 -2
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -2
- package/build/credentials/ios/actions/AscApiKeyUtils.js +10 -10
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +7 -8
- package/build/credentials/ios/actions/DeviceUtils.js +2 -3
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -5
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +2 -3
- package/build/credentials/ios/actions/PushKeyUtils.js +5 -6
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +2 -2
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +6 -2
- package/build/credentials/ios/api/GraphqlClient.js +24 -25
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +8 -8
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.d.ts +1 -1
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +0 -2
- package/build/credentials/ios/appstore/Credentials.js +4 -5
- package/build/credentials/ios/appstore/Credentials.types.d.ts +0 -1
- package/build/credentials/ios/appstore/CredentialsUtils.js +6 -7
- package/build/credentials/ios/appstore/ascApiKey.d.ts +0 -1
- package/build/credentials/ios/appstore/ascApiKey.js +6 -7
- package/build/credentials/ios/appstore/authenticate.d.ts +0 -1
- package/build/credentials/ios/appstore/authenticate.js +4 -5
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.js +2 -3
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +3 -3
- package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +0 -1
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -2
- package/build/credentials/ios/appstore/capabilityList.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.js +2 -3
- package/build/credentials/ios/appstore/distributionCertificate.d.ts +0 -1
- package/build/credentials/ios/appstore/distributionCertificate.js +7 -7
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +6 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +55 -18
- package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +0 -1
- package/build/credentials/ios/appstore/ensureTestFlightGroup.js +1 -2
- package/build/credentials/ios/appstore/keychain.js +4 -4
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfile.js +5 -5
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +1 -2
- package/build/credentials/ios/appstore/pushKey.js +4 -4
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +0 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +6 -7
- package/build/credentials/ios/credentials.d.ts +0 -1
- package/build/credentials/ios/credentials.js +2 -2
- package/build/credentials/ios/utils/authType.d.ts +0 -1
- package/build/credentials/ios/utils/authType.js +1 -2
- package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -2
- package/build/credentials/ios/utils/p12Certificate.d.ts +0 -1
- package/build/credentials/ios/utils/p12Certificate.js +3 -4
- package/build/credentials/ios/utils/printCredentials.js +3 -4
- package/build/credentials/ios/utils/provisioningProfile.js +5 -6
- package/build/credentials/ios/validators/validateAscApiKey.js +2 -3
- package/build/credentials/ios/validators/validateDistributionCertificate.js +1 -2
- package/build/credentials/ios/validators/validateProvisioningProfile.js +1 -2
- package/build/credentials/ios/validators/validatePushKey.js +1 -2
- package/build/credentials/manager/IosActions.js +4 -4
- package/build/credentials/manager/SelectPlatform.js +1 -1
- package/build/credentials/utils/promptForCredentials.js +3 -4
- package/build/devices/actions/create/currentMachineMethod.js +1 -2
- package/build/devices/actions/create/developerPortalMethod.d.ts +0 -1
- package/build/devices/actions/create/developerPortalMethod.js +2 -3
- package/build/devices/actions/create/inputMethod.js +1 -2
- package/build/devices/actions/create/registrationUrlMethod.js +1 -2
- package/build/devices/actions/create/utils.js +4 -5
- package/build/devices/context.js +1 -2
- package/build/devices/queries.js +4 -4
- package/build/devices/udids.js +2 -3
- package/build/devices/utils/formatDevice.js +2 -3
- package/build/fetch.d.ts +0 -1
- package/build/fetch.js +1 -1
- package/build/fingerprint/cli.js +3 -4
- package/build/fingerprint/diff.js +1 -2
- package/build/fingerprint/types.d.ts +0 -1
- package/build/fingerprint/utils.js +4 -5
- package/build/graphql/client.js +2 -2
- package/build/graphql/generated.d.ts +177 -88
- package/build/graphql/generated.js +39 -3
- package/build/graphql/mutations/PublishMutation.d.ts +2 -2
- package/build/graphql/queries/AccountUsageQuery.d.ts +1 -1
- package/build/graphql/queries/AppVersionQuery.d.ts +1 -1
- package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +1 -1
- package/build/graphql/queries/BranchQuery.d.ts +3 -3
- package/build/graphql/queries/BuildQuery.d.ts +3 -3
- package/build/graphql/queries/ChannelQuery.d.ts +2 -2
- package/build/graphql/queries/ChannelQuery.js +2 -2
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +12 -12
- package/build/graphql/queries/FingerprintQuery.d.ts +6 -6
- package/build/graphql/queries/PublishQuery.d.ts +1 -1
- package/build/graphql/queries/SubmissionQuery.d.ts +1 -1
- package/build/graphql/queries/UserQuery.d.ts +1 -1
- package/build/graphql/queries/WorkflowJobQuery.d.ts +2 -2
- package/build/graphql/queries/WorkflowRunQuery.d.ts +4 -4
- package/build/graphql/types/AppPlatform.js +2 -3
- package/build/log.js +2 -3
- package/build/metadata/apple/config/reader.d.ts +0 -1
- package/build/metadata/apple/config/writer.d.ts +0 -1
- package/build/metadata/apple/data.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.js +0 -1
- package/build/metadata/apple/tasks/app-info.d.ts +0 -1
- package/build/metadata/apple/tasks/app-info.js +15 -4
- package/build/metadata/apple/tasks/app-review-detail.d.ts +0 -1
- package/build/metadata/apple/tasks/app-review-detail.js +0 -1
- package/build/metadata/apple/tasks/app-version.d.ts +0 -1
- package/build/metadata/apple/tasks/app-version.js +15 -3
- package/build/metadata/apple/tasks/index.js +1 -2
- package/build/metadata/apple/types.d.ts +0 -1
- package/build/metadata/auth.d.ts +0 -1
- package/build/metadata/auth.js +1 -2
- package/build/metadata/config/resolve.js +4 -5
- package/build/metadata/config/validate.js +1 -2
- package/build/metadata/download.js +1 -2
- package/build/metadata/errors.js +3 -3
- package/build/metadata/upload.js +1 -2
- package/build/metadata/utils/ajv.js +2 -3
- package/build/metadata/utils/asc.d.ts +0 -1
- package/build/metadata/utils/date.js +1 -2
- package/build/metadata/utils/log.js +1 -2
- package/build/metadata/utils/retry.js +2 -3
- package/build/metadata/utils/telemetry.d.ts +0 -1
- package/build/metadata/utils/telemetry.js +2 -3
- package/build/onboarding/git.js +3 -4
- package/build/onboarding/installDependencies.js +3 -3
- package/build/onboarding/runCommand.js +1 -2
- package/build/ora.js +1 -2
- package/build/platform.d.ts +1 -0
- package/build/platform.js +28 -10
- package/build/project/android/applicationId.js +6 -6
- package/build/project/android/gradle.js +1 -2
- package/build/project/android/gradleUtils.js +4 -4
- package/build/project/android/versions.js +3 -3
- package/build/project/applicationIdentifier.js +1 -2
- package/build/project/customBuildConfig.js +3 -4
- package/build/project/expoConfig.js +5 -6
- package/build/project/expoSdk.js +1 -2
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +2 -3
- package/build/project/ios/bundleIdentifier.js +6 -6
- package/build/project/ios/entitlements.js +2 -3
- package/build/project/ios/exemptEncryption.js +1 -2
- package/build/project/ios/scheme.js +2 -3
- package/build/project/ios/target.d.ts +0 -1
- package/build/project/ios/target.js +8 -9
- package/build/project/ios/versions.js +3 -3
- package/build/project/maybeUploadAssetMapAsync.js +1 -2
- package/build/project/maybeUploadFingerprintAsync.js +1 -2
- package/build/project/metroConfig.js +1 -2
- package/build/project/projectUtils.js +15 -16
- package/build/project/publish.d.ts +15 -2
- package/build/project/publish.js +56 -29
- package/build/project/remoteVersionSource.js +6 -6
- package/build/project/resolveRuntimeVersionAsync.js +2 -3
- package/build/project/uploadAccountScopedFileAsync.js +1 -2
- package/build/project/uploadAccountScopedProjectSourceAsync.js +1 -2
- package/build/project/workflow.js +3 -4
- package/build/prompts.js +5 -6
- package/build/rollout/branch-mapping.js +14 -15
- package/build/rollout/utils.js +5 -6
- package/build/run/android/aapt.js +2 -3
- package/build/run/android/adb.js +8 -9
- package/build/run/android/emulator.js +6 -6
- package/build/run/android/run.js +1 -2
- package/build/run/android/sdk.d.ts +0 -1
- package/build/run/android/sdk.js +2 -2
- package/build/run/android/systemRequirements.js +1 -2
- package/build/run/ios/run.js +1 -2
- package/build/run/ios/simctl.js +1 -2
- package/build/run/ios/simulator.js +9 -10
- package/build/run/ios/systemRequirements.js +1 -2
- package/build/run/ios/xcode.js +5 -5
- package/build/run/ios/xcrun.js +3 -4
- package/build/run/run.js +2 -3
- package/build/run/utils.js +1 -2
- package/build/submit/ArchiveSource.js +3 -3
- package/build/submit/android/ServiceAccountSource.js +4 -4
- package/build/submit/commons.js +2 -3
- package/build/submit/context.js +1 -2
- package/build/submit/ios/AppProduce.js +1 -2
- package/build/submit/ios/AppSpecificPasswordSource.js +3 -3
- package/build/submit/ios/AscApiKeySource.js +4 -4
- package/build/submit/ios/utils/language.js +1 -2
- package/build/submit/submit.js +3 -4
- package/build/submit/utils/builds.js +1 -2
- package/build/submit/utils/errors.js +1 -2
- package/build/submit/utils/files.js +2 -3
- package/build/submit/utils/logs.js +1 -2
- package/build/submit/utils/summary.js +2 -3
- package/build/submit/utils/urls.js +2 -3
- package/build/submit/utils/wait.js +2 -3
- package/build/update/android/UpdatesModule.js +2 -3
- package/build/update/configure.js +4 -4
- package/build/update/delete.js +1 -2
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +1 -2
- package/build/update/ios/UpdatesModule.js +2 -3
- package/build/update/queries.d.ts +5 -3
- package/build/update/queries.js +12 -9
- package/build/update/republish.js +5 -6
- package/build/update/roll-back-to-embedded.js +1 -2
- package/build/update/utils.js +15 -15
- package/build/uploads.js +3 -4
- package/build/user/User.js +2 -3
- package/build/user/actions.js +1 -2
- package/build/user/expoSsoLauncher.js +1 -2
- package/build/user/fetchSessionSecretAndSsoUser.js +1 -2
- package/build/user/fetchSessionSecretAndUser.js +1 -2
- package/build/user/fetchUser.js +1 -2
- package/build/utils/code-signing.d.ts +0 -1
- package/build/utils/code-signing.js +7 -8
- package/build/utils/date.js +1 -2
- package/build/utils/download.js +2 -3
- package/build/utils/expoCli.js +4 -4
- package/build/utils/expoUpdatesCli.js +2 -2
- package/build/utils/expodash/areSetsEqual.js +1 -1
- package/build/utils/expodash/capitalize.js +1 -1
- package/build/utils/expodash/chunk.js +1 -1
- package/build/utils/expodash/differenceBy.js +1 -1
- package/build/utils/expodash/filter.js +1 -2
- package/build/utils/expodash/groupBy.js +1 -1
- package/build/utils/expodash/intersection.js +1 -1
- package/build/utils/expodash/mapMapAsync.js +1 -1
- package/build/utils/expodash/memoize.js +1 -2
- package/build/utils/expodash/pick.js +1 -1
- package/build/utils/expodash/sortBy.js +1 -1
- package/build/utils/expodash/uniq.js +1 -1
- package/build/utils/expodash/uniqBy.js +1 -1
- package/build/utils/expodash/zipObject.js +1 -1
- package/build/utils/files.js +2 -3
- package/build/utils/formatFields.js +1 -1
- package/build/utils/image.js +3 -3
- package/build/utils/json.js +2 -3
- package/build/utils/plist.d.ts +0 -1
- package/build/utils/plist.js +3 -4
- package/build/utils/pollForBackgroundJobReceiptAsync.js +2 -2
- package/build/utils/profiles.js +3 -4
- package/build/utils/progress.js +1 -2
- package/build/utils/promise.js +1 -2
- package/build/utils/prompts.js +8 -9
- package/build/utils/queries.js +2 -3
- package/build/utils/relay.js +4 -4
- package/build/utils/statuspageService.js +1 -2
- package/build/utils/timer.js +4 -5
- package/build/utils/usage/checkForOverages.js +4 -5
- package/build/utils/variableUtils.js +4 -5
- package/build/vcs/clients/git.js +1 -2
- package/build/vcs/git.js +5 -6
- package/build/vcs/index.js +1 -2
- package/build/vcs/local.js +2 -2
- package/build/webhooks/formatWebhook.js +1 -2
- package/build/webhooks/input.js +3 -4
- package/build/worker/assets.d.ts +0 -1
- package/build/worker/assets.js +6 -7
- package/build/worker/deployment.js +8 -9
- package/build/worker/mutations.d.ts +1 -1
- package/build/worker/queries.d.ts +4 -4
- package/build/worker/upload.d.ts +0 -2
- package/build/worker/upload.js +5 -6
- package/build/worker/utils/logs.js +5 -5
- package/build/worker/utils/multipart.js +3 -3
- package/oclif.manifest.json +35 -1
- package/package.json +13 -11
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getFingerprintInfoFromLocalProjectForPlatformsAsync = getFingerprintInfoFromLocalProjectForPlatformsAsync;
|
|
4
|
+
exports.appPlatformToPlatform = appPlatformToPlatform;
|
|
5
|
+
exports.appPlatformToString = appPlatformToString;
|
|
6
|
+
exports.stringToAppPlatform = stringToAppPlatform;
|
|
4
7
|
const tslib_1 = require("tslib");
|
|
5
8
|
const eas_build_job_1 = require("@expo/eas-build-job");
|
|
6
9
|
const cli_1 = require("./cli");
|
|
@@ -35,7 +38,6 @@ async function getFingerprintInfoFromLocalProjectForPlatformsAsync(graphqlClient
|
|
|
35
38
|
});
|
|
36
39
|
return projectFingerprint;
|
|
37
40
|
}
|
|
38
|
-
exports.getFingerprintInfoFromLocalProjectForPlatformsAsync = getFingerprintInfoFromLocalProjectForPlatformsAsync;
|
|
39
41
|
function getFingerprintOptionsFromWorkflow(platforms, workflowsByPlatform) {
|
|
40
42
|
if (platforms.length === 0) {
|
|
41
43
|
throw new Error('Could not determine platform from fingerprint sources');
|
|
@@ -68,7 +70,6 @@ function appPlatformToPlatform(platform) {
|
|
|
68
70
|
throw new Error(`Unsupported platform: ${platform}`);
|
|
69
71
|
}
|
|
70
72
|
}
|
|
71
|
-
exports.appPlatformToPlatform = appPlatformToPlatform;
|
|
72
73
|
function appPlatformToString(platform) {
|
|
73
74
|
switch (platform) {
|
|
74
75
|
case generated_1.AppPlatform.Android:
|
|
@@ -79,7 +80,6 @@ function appPlatformToString(platform) {
|
|
|
79
80
|
throw new Error(`Unsupported platform: ${platform}`);
|
|
80
81
|
}
|
|
81
82
|
}
|
|
82
|
-
exports.appPlatformToString = appPlatformToString;
|
|
83
83
|
function stringToAppPlatform(platform) {
|
|
84
84
|
switch (platform) {
|
|
85
85
|
case 'android':
|
|
@@ -90,4 +90,3 @@ function stringToAppPlatform(platform) {
|
|
|
90
90
|
throw new Error(`Unsupported platform: ${platform}`);
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
|
-
exports.stringToAppPlatform = stringToAppPlatform;
|
package/build/graphql/client.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GraphqlError =
|
|
3
|
+
exports.GraphqlError = void 0;
|
|
4
|
+
exports.withErrorHandlingAsync = withErrorHandlingAsync;
|
|
4
5
|
const tslib_1 = require("tslib");
|
|
5
6
|
const core_1 = require("@urql/core");
|
|
6
7
|
Object.defineProperty(exports, "GraphqlError", { enumerable: true, get: function () { return core_1.CombinedError; } });
|
|
@@ -24,4 +25,3 @@ async function withErrorHandlingAsync(promise) {
|
|
|
24
25
|
}
|
|
25
26
|
return data;
|
|
26
27
|
}
|
|
27
|
-
exports.withErrorHandlingAsync = withErrorHandlingAsync;
|
|
@@ -640,12 +640,6 @@ export type AccountNotificationPreferenceInput = {
|
|
|
640
640
|
event: NotificationEvent;
|
|
641
641
|
type: NotificationType;
|
|
642
642
|
};
|
|
643
|
-
export type AccountNotificationSubscriptionInput = {
|
|
644
|
-
accountId: Scalars['ID']['input'];
|
|
645
|
-
event: NotificationEvent;
|
|
646
|
-
type: NotificationType;
|
|
647
|
-
userId: Scalars['ID']['input'];
|
|
648
|
-
};
|
|
649
643
|
export type AccountQuery = {
|
|
650
644
|
__typename?: 'AccountQuery';
|
|
651
645
|
/** Query an Account by ID */
|
|
@@ -1236,6 +1230,7 @@ export type App = Project & {
|
|
|
1236
1230
|
likedBy: Array<Maybe<User>>;
|
|
1237
1231
|
logRocketProject?: Maybe<LogRocketProject>;
|
|
1238
1232
|
name: Scalars['String']['output'];
|
|
1233
|
+
observe: AppObserve;
|
|
1239
1234
|
ownerAccount: Account;
|
|
1240
1235
|
/** @deprecated No longer supported */
|
|
1241
1236
|
packageName: Scalars['String']['output'];
|
|
@@ -1427,6 +1422,10 @@ export type AppLikedByArgs = {
|
|
|
1427
1422
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1428
1423
|
};
|
|
1429
1424
|
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1425
|
+
export type AppProfileImageUrlArgs = {
|
|
1426
|
+
width?: InputMaybe<AppProfileImageWidth>;
|
|
1427
|
+
};
|
|
1428
|
+
/** Represents an Exponent App (or Experience in legacy terms) */
|
|
1430
1429
|
export type AppRuntimesArgs = {
|
|
1431
1430
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
1432
1431
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1711,12 +1710,88 @@ export type AppNotificationPreferenceInput = {
|
|
|
1711
1710
|
event: NotificationEvent;
|
|
1712
1711
|
type: NotificationType;
|
|
1713
1712
|
};
|
|
1714
|
-
export type
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1713
|
+
export type AppObserve = {
|
|
1714
|
+
__typename?: 'AppObserve';
|
|
1715
|
+
byAppVersion: Array<AppVersionMetrics>;
|
|
1716
|
+
events: AppObserveEventsConnection;
|
|
1717
|
+
};
|
|
1718
|
+
export type AppObserveByAppVersionArgs = {
|
|
1719
|
+
eventNames?: InputMaybe<Array<AppObserveEventName>>;
|
|
1720
|
+
};
|
|
1721
|
+
export type AppObserveEventsArgs = {
|
|
1722
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1723
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
+
filter?: InputMaybe<AppObserveEventsFilter>;
|
|
1725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1726
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1727
|
+
orderBy?: InputMaybe<AppObserveEventsOrderBy>;
|
|
1728
|
+
};
|
|
1729
|
+
export type AppObserveEvent = {
|
|
1730
|
+
__typename?: 'AppObserveEvent';
|
|
1731
|
+
appBuildNumber: Scalars['String']['output'];
|
|
1732
|
+
appIdentifier: Scalars['String']['output'];
|
|
1733
|
+
appName: Scalars['String']['output'];
|
|
1734
|
+
appVersion: Scalars['String']['output'];
|
|
1735
|
+
category: Scalars['String']['output'];
|
|
1736
|
+
clientVersion?: Maybe<Scalars['String']['output']>;
|
|
1737
|
+
countryCode?: Maybe<Scalars['String']['output']>;
|
|
1738
|
+
deviceLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
1739
|
+
deviceModel: Scalars['String']['output'];
|
|
1740
|
+
deviceName?: Maybe<Scalars['String']['output']>;
|
|
1741
|
+
deviceOs: Scalars['String']['output'];
|
|
1742
|
+
deviceOsVersion: Scalars['String']['output'];
|
|
1743
|
+
easClientId: Scalars['String']['output'];
|
|
1744
|
+
eventBatchId: Scalars['ID']['output'];
|
|
1745
|
+
expoSdkVersion?: Maybe<Scalars['String']['output']>;
|
|
1746
|
+
id: Scalars['ID']['output'];
|
|
1747
|
+
ingestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1748
|
+
metricName: Scalars['String']['output'];
|
|
1749
|
+
metricValue: Scalars['Float']['output'];
|
|
1750
|
+
name: Scalars['String']['output'];
|
|
1751
|
+
parentSessionId?: Maybe<Scalars['String']['output']>;
|
|
1752
|
+
reactNativeVersion?: Maybe<Scalars['String']['output']>;
|
|
1753
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
1754
|
+
tags: Scalars['JSON']['output'];
|
|
1755
|
+
timestamp: Scalars['DateTime']['output'];
|
|
1756
|
+
};
|
|
1757
|
+
export type AppObserveEventEdge = {
|
|
1758
|
+
__typename?: 'AppObserveEventEdge';
|
|
1759
|
+
cursor: Scalars['String']['output'];
|
|
1760
|
+
node: AppObserveEvent;
|
|
1761
|
+
};
|
|
1762
|
+
export declare enum AppObserveEventName {
|
|
1763
|
+
BundleLoadTime = "BUNDLE_LOAD_TIME",
|
|
1764
|
+
LaunchTime = "LAUNCH_TIME",
|
|
1765
|
+
LoadTime = "LOAD_TIME",
|
|
1766
|
+
TimeToFirstRender = "TIME_TO_FIRST_RENDER",
|
|
1767
|
+
TimeToInteractive = "TIME_TO_INTERACTIVE"
|
|
1768
|
+
}
|
|
1769
|
+
export type AppObserveEventsConnection = {
|
|
1770
|
+
__typename?: 'AppObserveEventsConnection';
|
|
1771
|
+
edges: Array<AppObserveEventEdge>;
|
|
1772
|
+
pageInfo: PageInfo;
|
|
1773
|
+
};
|
|
1774
|
+
export type AppObserveEventsFilter = {
|
|
1775
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1776
|
+
eventName?: InputMaybe<AppObserveEventName>;
|
|
1777
|
+
platform?: InputMaybe<AppObservePlatform>;
|
|
1719
1778
|
};
|
|
1779
|
+
export type AppObserveEventsOrderBy = {
|
|
1780
|
+
direction: AppObserveEventsOrderByDirection;
|
|
1781
|
+
field: AppObserveEventsOrderByField;
|
|
1782
|
+
};
|
|
1783
|
+
export declare enum AppObserveEventsOrderByDirection {
|
|
1784
|
+
Asc = "ASC",
|
|
1785
|
+
Desc = "DESC"
|
|
1786
|
+
}
|
|
1787
|
+
export declare enum AppObserveEventsOrderByField {
|
|
1788
|
+
MetricValue = "METRIC_VALUE",
|
|
1789
|
+
Timestamp = "TIMESTAMP"
|
|
1790
|
+
}
|
|
1791
|
+
export declare enum AppObservePlatform {
|
|
1792
|
+
Android = "ANDROID",
|
|
1793
|
+
Ios = "IOS"
|
|
1794
|
+
}
|
|
1720
1795
|
export declare enum AppPlatform {
|
|
1721
1796
|
Android = "ANDROID",
|
|
1722
1797
|
Ios = "IOS"
|
|
@@ -1726,6 +1801,12 @@ export declare enum AppPrivacy {
|
|
|
1726
1801
|
Public = "PUBLIC",
|
|
1727
1802
|
Unlisted = "UNLISTED"
|
|
1728
1803
|
}
|
|
1804
|
+
export declare enum AppProfileImageWidth {
|
|
1805
|
+
ExtraLarge = "EXTRA_LARGE",
|
|
1806
|
+
Large = "LARGE",
|
|
1807
|
+
Medium = "MEDIUM",
|
|
1808
|
+
Small = "SMALL"
|
|
1809
|
+
}
|
|
1729
1810
|
export type AppPushNotifications = {
|
|
1730
1811
|
__typename?: 'AppPushNotifications';
|
|
1731
1812
|
id: Scalars['ID']['output'];
|
|
@@ -1951,6 +2032,12 @@ export type AppVersionInput = {
|
|
|
1951
2032
|
runtimeVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1952
2033
|
storeVersion: Scalars['String']['input'];
|
|
1953
2034
|
};
|
|
2035
|
+
export type AppVersionMetrics = {
|
|
2036
|
+
__typename?: 'AppVersionMetrics';
|
|
2037
|
+
android: Array<PlatformMetrics>;
|
|
2038
|
+
appVersion: Scalars['String']['output'];
|
|
2039
|
+
ios: Array<PlatformMetrics>;
|
|
2040
|
+
};
|
|
1954
2041
|
export type AppVersionMutation = {
|
|
1955
2042
|
__typename?: 'AppVersionMutation';
|
|
1956
2043
|
/** Create an app version */
|
|
@@ -2258,6 +2345,7 @@ export type AppleTeam = {
|
|
|
2258
2345
|
appleTeamName?: Maybe<Scalars['String']['output']>;
|
|
2259
2346
|
appleTeamType?: Maybe<AppleTeamType>;
|
|
2260
2347
|
id: Scalars['ID']['output'];
|
|
2348
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
2261
2349
|
};
|
|
2262
2350
|
export type AppleTeamAppleAppIdentifiersArgs = {
|
|
2263
2351
|
bundleIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2281,6 +2369,8 @@ export type AppleTeamMutation = {
|
|
|
2281
2369
|
__typename?: 'AppleTeamMutation';
|
|
2282
2370
|
/** Create an Apple Team */
|
|
2283
2371
|
createAppleTeam: AppleTeam;
|
|
2372
|
+
/** Delete an Apple Team in the background */
|
|
2373
|
+
scheduleAppleTeamDeletion: BackgroundJobReceipt;
|
|
2284
2374
|
/** Update an Apple Team */
|
|
2285
2375
|
updateAppleTeam: AppleTeam;
|
|
2286
2376
|
};
|
|
@@ -2288,6 +2378,9 @@ export type AppleTeamMutationCreateAppleTeamArgs = {
|
|
|
2288
2378
|
accountId: Scalars['ID']['input'];
|
|
2289
2379
|
appleTeamInput: AppleTeamInput;
|
|
2290
2380
|
};
|
|
2381
|
+
export type AppleTeamMutationScheduleAppleTeamDeletionArgs = {
|
|
2382
|
+
id: Scalars['ID']['input'];
|
|
2383
|
+
};
|
|
2291
2384
|
export type AppleTeamMutationUpdateAppleTeamArgs = {
|
|
2292
2385
|
appleTeamUpdateInput: AppleTeamUpdateInput;
|
|
2293
2386
|
id: Scalars['ID']['input'];
|
|
@@ -2489,7 +2582,8 @@ export declare enum BackgroundJobResultType {
|
|
|
2489
2582
|
AuditLogsExport = "AUDIT_LOGS_EXPORT",
|
|
2490
2583
|
GithubBuild = "GITHUB_BUILD",
|
|
2491
2584
|
UserAuditLogsExport = "USER_AUDIT_LOGS_EXPORT",
|
|
2492
|
-
Void = "VOID"
|
|
2585
|
+
Void = "VOID",
|
|
2586
|
+
WorkflowsInsightsExport = "WORKFLOWS_INSIGHTS_EXPORT"
|
|
2493
2587
|
}
|
|
2494
2588
|
export declare enum BackgroundJobState {
|
|
2495
2589
|
Failure = "FAILURE",
|
|
@@ -4905,6 +4999,17 @@ export type MeteredBillingStatus = {
|
|
|
4905
4999
|
EAS_BUILD: Scalars['Boolean']['output'];
|
|
4906
5000
|
EAS_UPDATE: Scalars['Boolean']['output'];
|
|
4907
5001
|
};
|
|
5002
|
+
export type MetricStatistics = {
|
|
5003
|
+
__typename?: 'MetricStatistics';
|
|
5004
|
+
average?: Maybe<Scalars['Float']['output']>;
|
|
5005
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
5006
|
+
max?: Maybe<Scalars['Float']['output']>;
|
|
5007
|
+
median?: Maybe<Scalars['Float']['output']>;
|
|
5008
|
+
min?: Maybe<Scalars['Float']['output']>;
|
|
5009
|
+
p80?: Maybe<Scalars['Float']['output']>;
|
|
5010
|
+
p95?: Maybe<Scalars['Float']['output']>;
|
|
5011
|
+
p99?: Maybe<Scalars['Float']['output']>;
|
|
5012
|
+
};
|
|
4908
5013
|
export type Notification = {
|
|
4909
5014
|
__typename?: 'Notification';
|
|
4910
5015
|
accountName: Scalars['String']['output'];
|
|
@@ -4946,37 +5051,6 @@ export type NotificationPreferenceMutationSetAccountNotificationPreferenceArgs =
|
|
|
4946
5051
|
export type NotificationPreferenceMutationSetAppNotificationPreferenceArgs = {
|
|
4947
5052
|
input: AppNotificationPreferenceInput;
|
|
4948
5053
|
};
|
|
4949
|
-
export type NotificationSubscription = {
|
|
4950
|
-
__typename?: 'NotificationSubscription';
|
|
4951
|
-
account?: Maybe<Account>;
|
|
4952
|
-
actor?: Maybe<Actor>;
|
|
4953
|
-
app?: Maybe<App>;
|
|
4954
|
-
createdAt: Scalars['DateTime']['output'];
|
|
4955
|
-
event: NotificationEvent;
|
|
4956
|
-
id: Scalars['ID']['output'];
|
|
4957
|
-
type: NotificationType;
|
|
4958
|
-
};
|
|
4959
|
-
export type NotificationSubscriptionFilter = {
|
|
4960
|
-
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
4961
|
-
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
4962
|
-
event?: InputMaybe<NotificationEvent>;
|
|
4963
|
-
type?: InputMaybe<NotificationType>;
|
|
4964
|
-
};
|
|
4965
|
-
export type NotificationSubscriptionMutation = {
|
|
4966
|
-
__typename?: 'NotificationSubscriptionMutation';
|
|
4967
|
-
subscribeToEventForAccount: SubscribeToNotificationResult;
|
|
4968
|
-
subscribeToEventForApp: SubscribeToNotificationResult;
|
|
4969
|
-
unsubscribe: UnsubscribeFromNotificationResult;
|
|
4970
|
-
};
|
|
4971
|
-
export type NotificationSubscriptionMutationSubscribeToEventForAccountArgs = {
|
|
4972
|
-
input: AccountNotificationSubscriptionInput;
|
|
4973
|
-
};
|
|
4974
|
-
export type NotificationSubscriptionMutationSubscribeToEventForAppArgs = {
|
|
4975
|
-
input: AppNotificationSubscriptionInput;
|
|
4976
|
-
};
|
|
4977
|
-
export type NotificationSubscriptionMutationUnsubscribeArgs = {
|
|
4978
|
-
id: Scalars['ID']['input'];
|
|
4979
|
-
};
|
|
4980
5054
|
export type NotificationThresholdExceeded = {
|
|
4981
5055
|
__typename?: 'NotificationThresholdExceeded';
|
|
4982
5056
|
count: Scalars['Int']['output'];
|
|
@@ -5073,6 +5147,12 @@ export type PinnedDashboardView = {
|
|
|
5073
5147
|
view: DashboardViewPin;
|
|
5074
5148
|
};
|
|
5075
5149
|
export type PlanEnablement = Concurrencies | EasTotalPlanEnablement;
|
|
5150
|
+
export type PlatformMetrics = {
|
|
5151
|
+
__typename?: 'PlatformMetrics';
|
|
5152
|
+
category: Scalars['String']['output'];
|
|
5153
|
+
name: Scalars['String']['output'];
|
|
5154
|
+
statistics?: Maybe<MetricStatistics>;
|
|
5155
|
+
};
|
|
5076
5156
|
export type Project = {
|
|
5077
5157
|
description: Scalars['String']['output'];
|
|
5078
5158
|
fullName: Scalars['String']['output'];
|
|
@@ -5365,11 +5445,6 @@ export type RootMutation = {
|
|
|
5365
5445
|
me: MeMutation;
|
|
5366
5446
|
/** Notification preference management */
|
|
5367
5447
|
notificationPreference: NotificationPreferenceMutation;
|
|
5368
|
-
/**
|
|
5369
|
-
* Mutations that modify a NotificationSubscription
|
|
5370
|
-
* @deprecated Use notificationPreference mutation instead
|
|
5371
|
-
*/
|
|
5372
|
-
notificationSubscription: NotificationSubscriptionMutation;
|
|
5373
5448
|
/** Mutations that create, update, and delete Robots */
|
|
5374
5449
|
robot: RobotMutation;
|
|
5375
5450
|
/** Mutations for Sentry installations */
|
|
@@ -5402,6 +5477,7 @@ export type RootMutation = {
|
|
|
5402
5477
|
workflowJobApproval: WorkflowJobApprovalMutation;
|
|
5403
5478
|
workflowRevision: WorkflowRevisionMutation;
|
|
5404
5479
|
workflowRun: WorkflowRunMutation;
|
|
5480
|
+
workflowsInsights: WorkflowsInsightsMutation;
|
|
5405
5481
|
};
|
|
5406
5482
|
export type RootMutationAccountArgs = {
|
|
5407
5483
|
accountName?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5682,8 +5758,6 @@ export type SsoUser = Actor & UserActor & {
|
|
|
5682
5758
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
5683
5759
|
/** @deprecated No longer supported */
|
|
5684
5760
|
location?: Maybe<Scalars['String']['output']>;
|
|
5685
|
-
/** @deprecated Use Account/App.viewerNotificationPreferences instead */
|
|
5686
|
-
notificationSubscriptions: Array<NotificationSubscription>;
|
|
5687
5761
|
pinnedApps: Array<App>;
|
|
5688
5762
|
pinnedDashboardViews: Array<PinnedDashboardView>;
|
|
5689
5763
|
preferences: UserPreferences;
|
|
@@ -5715,10 +5789,6 @@ export type SsoUserFeatureGatesArgs = {
|
|
|
5715
5789
|
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5716
5790
|
};
|
|
5717
5791
|
/** Represents a human SSO (not robot) actor. */
|
|
5718
|
-
export type SsoUserNotificationSubscriptionsArgs = {
|
|
5719
|
-
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
5720
|
-
};
|
|
5721
|
-
/** Represents a human SSO (not robot) actor. */
|
|
5722
5792
|
export type SsoUserSnacksArgs = {
|
|
5723
5793
|
limit: Scalars['Int']['input'];
|
|
5724
5794
|
offset: Scalars['Int']['input'];
|
|
@@ -6074,10 +6144,6 @@ export declare enum SubmissionStatus {
|
|
|
6074
6144
|
InProgress = "IN_PROGRESS",
|
|
6075
6145
|
InQueue = "IN_QUEUE"
|
|
6076
6146
|
}
|
|
6077
|
-
export type SubscribeToNotificationResult = {
|
|
6078
|
-
__typename?: 'SubscribeToNotificationResult';
|
|
6079
|
-
notificationSubscription: NotificationSubscription;
|
|
6080
|
-
};
|
|
6081
6147
|
export type SubscriptionDetails = {
|
|
6082
6148
|
__typename?: 'SubscriptionDetails';
|
|
6083
6149
|
addons: Array<AddonDetails>;
|
|
@@ -6133,10 +6199,6 @@ export type UniqueUsersOverTimeData = {
|
|
|
6133
6199
|
__typename?: 'UniqueUsersOverTimeData';
|
|
6134
6200
|
data: LineChartData;
|
|
6135
6201
|
};
|
|
6136
|
-
export type UnsubscribeFromNotificationResult = {
|
|
6137
|
-
__typename?: 'UnsubscribeFromNotificationResult';
|
|
6138
|
-
notificationSubscription: NotificationSubscription;
|
|
6139
|
-
};
|
|
6140
6202
|
export type Update = ActivityTimelineProjectActivity & {
|
|
6141
6203
|
__typename?: 'Update';
|
|
6142
6204
|
activityTimestamp: Scalars['DateTime']['output'];
|
|
@@ -6186,6 +6248,7 @@ export type UpdateBranch = {
|
|
|
6186
6248
|
appId: Scalars['ID']['output'];
|
|
6187
6249
|
createdAt: Scalars['DateTime']['output'];
|
|
6188
6250
|
id: Scalars['ID']['output'];
|
|
6251
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6189
6252
|
latestActivity: Scalars['DateTime']['output'];
|
|
6190
6253
|
name: Scalars['String']['output'];
|
|
6191
6254
|
runtimes: RuntimesConnection;
|
|
@@ -6261,6 +6324,7 @@ export type UpdateChannel = {
|
|
|
6261
6324
|
createdAt: Scalars['DateTime']['output'];
|
|
6262
6325
|
id: Scalars['ID']['output'];
|
|
6263
6326
|
isPaused: Scalars['Boolean']['output'];
|
|
6327
|
+
lastDeletionAttemptTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6264
6328
|
latestRuntimes: ChannelRuntimesConnection;
|
|
6265
6329
|
name: Scalars['String']['output'];
|
|
6266
6330
|
runtimeInsights: UpdateChannelRuntimeInsights;
|
|
@@ -6286,7 +6350,10 @@ export type UpdateChannelMutation = {
|
|
|
6286
6350
|
* stringified JSON supplied to the mutation as a variable.
|
|
6287
6351
|
*/
|
|
6288
6352
|
createUpdateChannelForApp: UpdateChannel;
|
|
6289
|
-
/**
|
|
6353
|
+
/**
|
|
6354
|
+
* delete an EAS channel that doesn't point to any branches
|
|
6355
|
+
* @deprecated Use scheduleUpdateChannelDeletion instead
|
|
6356
|
+
*/
|
|
6290
6357
|
deleteUpdateChannel: DeleteUpdateChannelResult;
|
|
6291
6358
|
/**
|
|
6292
6359
|
* Edit an EAS channel.
|
|
@@ -6299,6 +6366,8 @@ export type UpdateChannelMutation = {
|
|
|
6299
6366
|
pauseUpdateChannel: UpdateChannel;
|
|
6300
6367
|
/** Resume updates for an EAS channel. */
|
|
6301
6368
|
resumeUpdateChannel: UpdateChannel;
|
|
6369
|
+
/** Delete an EAS channel and all of its builds in the background */
|
|
6370
|
+
scheduleUpdateChannelDeletion: BackgroundJobReceipt;
|
|
6302
6371
|
};
|
|
6303
6372
|
export type UpdateChannelMutationCreateUpdateChannelForAppArgs = {
|
|
6304
6373
|
appId: Scalars['ID']['input'];
|
|
@@ -6318,6 +6387,9 @@ export type UpdateChannelMutationPauseUpdateChannelArgs = {
|
|
|
6318
6387
|
export type UpdateChannelMutationResumeUpdateChannelArgs = {
|
|
6319
6388
|
channelId: Scalars['ID']['input'];
|
|
6320
6389
|
};
|
|
6390
|
+
export type UpdateChannelMutationScheduleUpdateChannelDeletionArgs = {
|
|
6391
|
+
channelId: Scalars['ID']['input'];
|
|
6392
|
+
};
|
|
6321
6393
|
export type UpdateChannelRuntimeInsights = {
|
|
6322
6394
|
__typename?: 'UpdateChannelRuntimeInsights';
|
|
6323
6395
|
cumulativeMetricsOverTime: ChannelRuntimeCumulativeMetricsOverTimeData;
|
|
@@ -6595,8 +6667,7 @@ export type User = Actor & UserActor & {
|
|
|
6595
6667
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
6596
6668
|
/** @deprecated No longer supported */
|
|
6597
6669
|
location?: Maybe<Scalars['String']['output']>;
|
|
6598
|
-
|
|
6599
|
-
notificationSubscriptions: Array<NotificationSubscription>;
|
|
6670
|
+
newEmailPendingVerification?: Maybe<Scalars['String']['output']>;
|
|
6600
6671
|
/** Pending UserInvitations for this user. Only resolves for the viewer. */
|
|
6601
6672
|
pendingUserInvitations: Array<UserInvitation>;
|
|
6602
6673
|
pinnedApps: Array<App>;
|
|
@@ -6632,10 +6703,6 @@ export type UserFeatureGatesArgs = {
|
|
|
6632
6703
|
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6633
6704
|
};
|
|
6634
6705
|
/** Represents a human (not robot) actor. */
|
|
6635
|
-
export type UserNotificationSubscriptionsArgs = {
|
|
6636
|
-
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
6637
|
-
};
|
|
6638
|
-
/** Represents a human (not robot) actor. */
|
|
6639
6706
|
export type UserSnacksArgs = {
|
|
6640
6707
|
limit: Scalars['Int']['input'];
|
|
6641
6708
|
offset: Scalars['Int']['input'];
|
|
@@ -6695,8 +6762,6 @@ export type UserActor = {
|
|
|
6695
6762
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
6696
6763
|
/** @deprecated No longer supported */
|
|
6697
6764
|
location?: Maybe<Scalars['String']['output']>;
|
|
6698
|
-
/** @deprecated Use Account/App.viewerNotificationPreferences instead */
|
|
6699
|
-
notificationSubscriptions: Array<NotificationSubscription>;
|
|
6700
6765
|
pinnedApps: Array<App>;
|
|
6701
6766
|
preferences: UserPreferences;
|
|
6702
6767
|
/** Associated accounts */
|
|
@@ -6727,10 +6792,6 @@ export type UserActorFeatureGatesArgs = {
|
|
|
6727
6792
|
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6728
6793
|
};
|
|
6729
6794
|
/** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
|
|
6730
|
-
export type UserActorNotificationSubscriptionsArgs = {
|
|
6731
|
-
filter?: InputMaybe<NotificationSubscriptionFilter>;
|
|
6732
|
-
};
|
|
6733
|
-
/** A human user (type User or SSOUser) that can login to the Expo website, use Expo services, and be a member of accounts. */
|
|
6734
6795
|
export type UserActorSnacksArgs = {
|
|
6735
6796
|
limit: Scalars['Int']['input'];
|
|
6736
6797
|
offset: Scalars['Int']['input'];
|
|
@@ -7867,6 +7928,7 @@ export type WorkflowRun = ActivityTimelineProjectActivity & {
|
|
|
7867
7928
|
gitCommitMessage?: Maybe<Scalars['String']['output']>;
|
|
7868
7929
|
githubRepository?: Maybe<GitHubRepository>;
|
|
7869
7930
|
id: Scalars['ID']['output'];
|
|
7931
|
+
inputs?: Maybe<Scalars['JSONObject']['output']>;
|
|
7870
7932
|
jobs: Array<WorkflowJob>;
|
|
7871
7933
|
name: Scalars['String']['output'];
|
|
7872
7934
|
pullRequestNumber?: Maybe<Scalars['Int']['output']>;
|
|
@@ -7961,6 +8023,16 @@ export type WorkflowRunsConnection = {
|
|
|
7961
8023
|
edges: Array<WorkflowRunEdge>;
|
|
7962
8024
|
pageInfo: PageInfo;
|
|
7963
8025
|
};
|
|
8026
|
+
export declare enum WorkflowsInsightsExportFormat {
|
|
8027
|
+
Csv = "CSV",
|
|
8028
|
+
Ndjson = "NDJSON"
|
|
8029
|
+
}
|
|
8030
|
+
export type WorkflowsInsightsExportInput = {
|
|
8031
|
+
appId: Scalars['ID']['input'];
|
|
8032
|
+
filters?: InputMaybe<WorkflowsInsightsFiltersInput>;
|
|
8033
|
+
format: WorkflowsInsightsExportFormat;
|
|
8034
|
+
timespan: WorkflowsInsightsTimespanInput;
|
|
8035
|
+
};
|
|
7964
8036
|
export type WorkflowsInsightsFiltersInput = {
|
|
7965
8037
|
gitRefRequested?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7966
8038
|
statuses?: InputMaybe<Array<WorkflowRunStatus>>;
|
|
@@ -7972,6 +8044,13 @@ export type WorkflowsInsightsMetric = {
|
|
|
7972
8044
|
currentValue: Scalars['Float']['output'];
|
|
7973
8045
|
previousValue: Scalars['Float']['output'];
|
|
7974
8046
|
};
|
|
8047
|
+
export type WorkflowsInsightsMutation = {
|
|
8048
|
+
__typename?: 'WorkflowsInsightsMutation';
|
|
8049
|
+
exportWorkflowRuns: BackgroundJobReceipt;
|
|
8050
|
+
};
|
|
8051
|
+
export type WorkflowsInsightsMutationExportWorkflowRunsArgs = {
|
|
8052
|
+
input: WorkflowsInsightsExportInput;
|
|
8053
|
+
};
|
|
7975
8054
|
export type WorkflowsInsightsOverviewMetrics = {
|
|
7976
8055
|
__typename?: 'WorkflowsInsightsOverviewMetrics';
|
|
7977
8056
|
activeWorkflows: WorkflowsInsightsMetric;
|
|
@@ -8072,6 +8151,29 @@ export type CreateUpdateBranchForAppMutation = {
|
|
|
8072
8151
|
};
|
|
8073
8152
|
};
|
|
8074
8153
|
};
|
|
8154
|
+
export type ScheduleChannelDeletionMutationVariables = Exact<{
|
|
8155
|
+
channelId: Scalars['ID']['input'];
|
|
8156
|
+
}>;
|
|
8157
|
+
export type ScheduleChannelDeletionMutation = {
|
|
8158
|
+
__typename?: 'RootMutation';
|
|
8159
|
+
updateChannel: {
|
|
8160
|
+
__typename?: 'UpdateChannelMutation';
|
|
8161
|
+
scheduleUpdateChannelDeletion: {
|
|
8162
|
+
__typename?: 'BackgroundJobReceipt';
|
|
8163
|
+
id: string;
|
|
8164
|
+
state: BackgroundJobState;
|
|
8165
|
+
tries: number;
|
|
8166
|
+
willRetry: boolean;
|
|
8167
|
+
resultId?: string | null;
|
|
8168
|
+
resultType: BackgroundJobResultType;
|
|
8169
|
+
resultData?: any | null;
|
|
8170
|
+
errorCode?: string | null;
|
|
8171
|
+
errorMessage?: string | null;
|
|
8172
|
+
createdAt: any;
|
|
8173
|
+
updatedAt: any;
|
|
8174
|
+
};
|
|
8175
|
+
};
|
|
8176
|
+
};
|
|
8075
8177
|
export type CreateUpdateChannelOnAppMutationVariables = Exact<{
|
|
8076
8178
|
appId: Scalars['ID']['input'];
|
|
8077
8179
|
name: Scalars['String']['input'];
|
|
@@ -8149,19 +8251,6 @@ export type DeleteBuildMutation = {
|
|
|
8149
8251
|
};
|
|
8150
8252
|
};
|
|
8151
8253
|
};
|
|
8152
|
-
export type DeleteUpdateChannelMutationVariables = Exact<{
|
|
8153
|
-
channelId: Scalars['ID']['input'];
|
|
8154
|
-
}>;
|
|
8155
|
-
export type DeleteUpdateChannelMutation = {
|
|
8156
|
-
__typename?: 'RootMutation';
|
|
8157
|
-
updateChannel: {
|
|
8158
|
-
__typename?: 'UpdateChannelMutation';
|
|
8159
|
-
deleteUpdateChannel: {
|
|
8160
|
-
__typename?: 'DeleteUpdateChannelResult';
|
|
8161
|
-
id: string;
|
|
8162
|
-
};
|
|
8163
|
-
};
|
|
8164
|
-
};
|
|
8165
8254
|
export type UpdateChannelBranchMappingMutationVariables = Exact<{
|
|
8166
8255
|
channelId: Scalars['ID']['input'];
|
|
8167
8256
|
branchMapping: Scalars['String']['input'];
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
* For more info and docs, visit https://graphql-code-generator.com/
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.WorkflowsInsightsRunsOverTimeGranularity = exports.WorkflowRunTriggerEventType = exports.WorkflowRunStatus = exports.WorkflowProjectSourceType = exports.WorkflowJobType = exports.WorkflowJobStatus = exports.WorkflowJobReviewDecision = exports.WorkflowArtifactStorageType = exports.WorkerLoggerLevel = exports.WorkerDeploymentLogLevel = exports.WorkerDeploymentCrashKind = exports.WebhookType = exports.UserSpecifiedAccountUsage = exports.UserEntityTypeName = exports.UserAgentPlatform = exports.UserAgentOs = exports.UserAgentBrowser = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.TargetEntityMutationType = void 0;
|
|
9
|
+
exports.EasServiceMetric = exports.EasService = exports.EasBuildWaiverType = exports.EasBuildDeprecationInfoType = exports.EasBuildBillingResourceClass = exports.DistributionType = exports.DashboardViewPin = exports.CustomDomainStatus = exports.CustomDomainDnsRecordType = exports.CrashSampleFor = exports.ContinentCode = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildRetryDisabledReason = exports.BuildResourceClass = exports.BuildPriority = exports.BuildPhase = exports.BuildMode = exports.BuildLimitThresholdExceededMetadataType = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.BuildAnnotationType = exports.BackgroundJobState = exports.BackgroundJobResultType = exports.AuthProviderIdentifier = exports.AuthProtocolType = exports.AuditLogsExportFormat = exports.AssetMetadataStatus = exports.AssetMapSourceType = exports.AppsFilter = exports.AppleTeamType = exports.AppleDeviceClass = exports.AppUploadSessionType = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppProfileImageWidth = exports.AppPrivacy = exports.AppPlatform = exports.AppObservePlatform = exports.AppObserveEventsOrderByField = exports.AppObserveEventsOrderByDirection = exports.AppObserveEventName = exports.AppInternalDistributionBuildPrivacy = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = exports.AccountUploadSessionType = exports.AccountAppsSortByField = void 0;
|
|
10
|
+
exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ResponseType = exports.ResponseStatusType = exports.ResponseCacheStatus = exports.ResourceClassExperiment = exports.RequestsOrderByField = exports.RequestsOrderByDirection = exports.RequestMethod = exports.ProjectArchiveSourceType = exports.Permission = exports.Order = exports.OnboardingEnvironment = exports.OnboardingDeviceType = exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.LocalBuildArchiveSourceType = exports.JobRunStatus = exports.JobRunPriority = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.InsightsFilterType = exports.GitHubJobRunTriggerType = exports.GitHubJobRunTriggerRunStatus = exports.GitHubJobRunJobType = exports.GitHubBuildTriggerType = exports.GitHubBuildTriggerRunStatus = exports.GitHubBuildTriggerExecutionBehavior = exports.GitHubAppInstallationStatus = exports.GitHubAppInstallationAccountType = exports.GitHubAppEnvironment = exports.FingerprintSourceType = exports.Feature = exports.Experiment = exports.EnvironmentVariableVisibility = exports.EnvironmentVariableScope = exports.EnvironmentSecretType = exports.EntityTypeName = exports.EasTotalPlanEnablementUnit = void 0;
|
|
11
|
+
exports.WorkflowsInsightsRunsOverTimeGranularity = exports.WorkflowsInsightsExportFormat = exports.WorkflowRunTriggerEventType = exports.WorkflowRunStatus = exports.WorkflowProjectSourceType = exports.WorkflowJobType = exports.WorkflowJobStatus = exports.WorkflowJobReviewDecision = exports.WorkflowArtifactStorageType = exports.WorkerLoggerLevel = exports.WorkerDeploymentLogLevel = exports.WorkerDeploymentCrashKind = exports.WebhookType = exports.UserSpecifiedAccountUsage = exports.UserEntityTypeName = exports.UserAgentPlatform = exports.UserAgentOs = exports.UserAgentBrowser = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.TargetEntityMutationType = exports.SubmissionStatus = exports.SubmissionPriority = exports.SubmissionArchiveSourceType = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = void 0;
|
|
12
12
|
var AccountAppsSortByField;
|
|
13
13
|
(function (AccountAppsSortByField) {
|
|
14
14
|
AccountAppsSortByField["LatestActivityTime"] = "LATEST_ACTIVITY_TIME";
|
|
@@ -54,6 +54,29 @@ var AppInternalDistributionBuildPrivacy;
|
|
|
54
54
|
AppInternalDistributionBuildPrivacy["Private"] = "PRIVATE";
|
|
55
55
|
AppInternalDistributionBuildPrivacy["Public"] = "PUBLIC";
|
|
56
56
|
})(AppInternalDistributionBuildPrivacy || (exports.AppInternalDistributionBuildPrivacy = AppInternalDistributionBuildPrivacy = {}));
|
|
57
|
+
var AppObserveEventName;
|
|
58
|
+
(function (AppObserveEventName) {
|
|
59
|
+
AppObserveEventName["BundleLoadTime"] = "BUNDLE_LOAD_TIME";
|
|
60
|
+
AppObserveEventName["LaunchTime"] = "LAUNCH_TIME";
|
|
61
|
+
AppObserveEventName["LoadTime"] = "LOAD_TIME";
|
|
62
|
+
AppObserveEventName["TimeToFirstRender"] = "TIME_TO_FIRST_RENDER";
|
|
63
|
+
AppObserveEventName["TimeToInteractive"] = "TIME_TO_INTERACTIVE";
|
|
64
|
+
})(AppObserveEventName || (exports.AppObserveEventName = AppObserveEventName = {}));
|
|
65
|
+
var AppObserveEventsOrderByDirection;
|
|
66
|
+
(function (AppObserveEventsOrderByDirection) {
|
|
67
|
+
AppObserveEventsOrderByDirection["Asc"] = "ASC";
|
|
68
|
+
AppObserveEventsOrderByDirection["Desc"] = "DESC";
|
|
69
|
+
})(AppObserveEventsOrderByDirection || (exports.AppObserveEventsOrderByDirection = AppObserveEventsOrderByDirection = {}));
|
|
70
|
+
var AppObserveEventsOrderByField;
|
|
71
|
+
(function (AppObserveEventsOrderByField) {
|
|
72
|
+
AppObserveEventsOrderByField["MetricValue"] = "METRIC_VALUE";
|
|
73
|
+
AppObserveEventsOrderByField["Timestamp"] = "TIMESTAMP";
|
|
74
|
+
})(AppObserveEventsOrderByField || (exports.AppObserveEventsOrderByField = AppObserveEventsOrderByField = {}));
|
|
75
|
+
var AppObservePlatform;
|
|
76
|
+
(function (AppObservePlatform) {
|
|
77
|
+
AppObservePlatform["Android"] = "ANDROID";
|
|
78
|
+
AppObservePlatform["Ios"] = "IOS";
|
|
79
|
+
})(AppObservePlatform || (exports.AppObservePlatform = AppObservePlatform = {}));
|
|
57
80
|
var AppPlatform;
|
|
58
81
|
(function (AppPlatform) {
|
|
59
82
|
AppPlatform["Android"] = "ANDROID";
|
|
@@ -65,6 +88,13 @@ var AppPrivacy;
|
|
|
65
88
|
AppPrivacy["Public"] = "PUBLIC";
|
|
66
89
|
AppPrivacy["Unlisted"] = "UNLISTED";
|
|
67
90
|
})(AppPrivacy || (exports.AppPrivacy = AppPrivacy = {}));
|
|
91
|
+
var AppProfileImageWidth;
|
|
92
|
+
(function (AppProfileImageWidth) {
|
|
93
|
+
AppProfileImageWidth["ExtraLarge"] = "EXTRA_LARGE";
|
|
94
|
+
AppProfileImageWidth["Large"] = "LARGE";
|
|
95
|
+
AppProfileImageWidth["Medium"] = "MEDIUM";
|
|
96
|
+
AppProfileImageWidth["Small"] = "SMALL";
|
|
97
|
+
})(AppProfileImageWidth || (exports.AppProfileImageWidth = AppProfileImageWidth = {}));
|
|
68
98
|
var AppSort;
|
|
69
99
|
(function (AppSort) {
|
|
70
100
|
/** Sort by recently published */
|
|
@@ -150,6 +180,7 @@ var BackgroundJobResultType;
|
|
|
150
180
|
BackgroundJobResultType["GithubBuild"] = "GITHUB_BUILD";
|
|
151
181
|
BackgroundJobResultType["UserAuditLogsExport"] = "USER_AUDIT_LOGS_EXPORT";
|
|
152
182
|
BackgroundJobResultType["Void"] = "VOID";
|
|
183
|
+
BackgroundJobResultType["WorkflowsInsightsExport"] = "WORKFLOWS_INSIGHTS_EXPORT";
|
|
153
184
|
})(BackgroundJobResultType || (exports.BackgroundJobResultType = BackgroundJobResultType = {}));
|
|
154
185
|
var BackgroundJobState;
|
|
155
186
|
(function (BackgroundJobState) {
|
|
@@ -930,6 +961,11 @@ var WorkflowRunTriggerEventType;
|
|
|
930
961
|
WorkflowRunTriggerEventType["Manual"] = "MANUAL";
|
|
931
962
|
WorkflowRunTriggerEventType["Schedule"] = "SCHEDULE";
|
|
932
963
|
})(WorkflowRunTriggerEventType || (exports.WorkflowRunTriggerEventType = WorkflowRunTriggerEventType = {}));
|
|
964
|
+
var WorkflowsInsightsExportFormat;
|
|
965
|
+
(function (WorkflowsInsightsExportFormat) {
|
|
966
|
+
WorkflowsInsightsExportFormat["Csv"] = "CSV";
|
|
967
|
+
WorkflowsInsightsExportFormat["Ndjson"] = "NDJSON";
|
|
968
|
+
})(WorkflowsInsightsExportFormat || (exports.WorkflowsInsightsExportFormat = WorkflowsInsightsExportFormat = {}));
|
|
933
969
|
var WorkflowsInsightsRunsOverTimeGranularity;
|
|
934
970
|
(function (WorkflowsInsightsRunsOverTimeGranularity) {
|
|
935
971
|
WorkflowsInsightsRunsOverTimeGranularity["Day"] = "DAY";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
2
|
import { CodeSigningInfoInput, GetSignedUploadMutation, PublishUpdateGroupInput, SetCodeSigningInfoMutation, UpdateFragment } from '../generated';
|
|
3
3
|
export declare const PublishMutation: {
|
|
4
|
-
getUploadURLsAsync(graphqlClient: ExpoGraphqlClient, contentTypes: string[]): Promise<GetSignedUploadMutation[
|
|
4
|
+
getUploadURLsAsync(graphqlClient: ExpoGraphqlClient, contentTypes: string[]): Promise<GetSignedUploadMutation["asset"]["getSignedAssetUploadSpecifications"]>;
|
|
5
5
|
publishUpdateGroupAsync(graphqlClient: ExpoGraphqlClient, publishUpdateGroupsInput: PublishUpdateGroupInput[]): Promise<UpdateFragment[]>;
|
|
6
|
-
setCodeSigningInfoAsync(graphqlClient: ExpoGraphqlClient, updateId: string, codeSigningInfo: CodeSigningInfoInput): Promise<SetCodeSigningInfoMutation[
|
|
6
|
+
setCodeSigningInfoAsync(graphqlClient: ExpoGraphqlClient, updateId: string, codeSigningInfo: CodeSigningInfoInput): Promise<SetCodeSigningInfoMutation["update"]["setCodeSigningInfo"]>;
|
|
7
7
|
setRolloutPercentageAsync(graphqlClient: ExpoGraphqlClient, updateId: string, rolloutPercentage: number): Promise<UpdateFragment>;
|
|
8
8
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
2
|
import { AccountUsageForOverageWarningQuery } from '../generated';
|
|
3
3
|
export declare const AccountUsageQuery: {
|
|
4
|
-
getUsageForOverageWarningAsync(graphqlClient: ExpoGraphqlClient, accountId: string, currentDate: Date): Promise<AccountUsageForOverageWarningQuery[
|
|
4
|
+
getUsageForOverageWarningAsync(graphqlClient: ExpoGraphqlClient, accountId: string, currentDate: Date): Promise<AccountUsageForOverageWarningQuery["account"]["byId"]>;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
2
|
import { AppPlatform, AppVersion } from '../generated';
|
|
3
3
|
export declare const AppVersionQuery: {
|
|
4
|
-
latestVersionAsync(graphqlClient: ExpoGraphqlClient, appId: string, platform: AppPlatform, applicationIdentifier: string): Promise<Pick<AppVersion,
|
|
4
|
+
latestVersionAsync(graphqlClient: ExpoGraphqlClient, appId: string, platform: AppPlatform, applicationIdentifier: string): Promise<Pick<AppVersion, "storeVersion" | "buildVersion"> | null>;
|
|
5
5
|
};
|