@expo/cli 0.7.1 → 0.8.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 +1 -1
- package/build/bin/cli +12 -3
- package/build/bin/cli.map +1 -1
- package/build/src/api/getExpoGoIntermediateCertificate.js +0 -2
- package/build/src/api/getExpoGoIntermediateCertificate.js.map +1 -1
- package/build/src/api/getProjectDevelopmentCertificate.js +0 -2
- package/build/src/api/getProjectDevelopmentCertificate.js.map +1 -1
- package/build/src/api/graphql/queries/AppQuery.js +39 -0
- package/build/src/api/graphql/queries/AppQuery.js.map +1 -0
- package/build/src/api/graphql/queries/UserQuery.js +10 -3
- package/build/src/api/graphql/queries/UserQuery.js.map +1 -1
- package/build/src/api/graphql/types/App.js +23 -0
- package/build/src/api/graphql/types/App.js.map +1 -0
- package/build/src/api/signManifest.js +0 -12
- package/build/src/api/signManifest.js.map +1 -1
- package/build/src/api/user/UserSettings.js.map +1 -1
- package/build/src/api/user/user.js.map +1 -1
- package/build/src/config/configAsync.js +3 -0
- package/build/src/config/configAsync.js.map +1 -1
- package/build/src/customize/customizeAsync.js +3 -0
- package/build/src/customize/customizeAsync.js.map +1 -1
- package/build/src/export/createBundles.js +7 -3
- package/build/src/export/createBundles.js.map +1 -1
- package/build/src/export/embed/exportEmbedAsync.js +24 -0
- package/build/src/export/embed/exportEmbedAsync.js.map +1 -0
- package/build/src/export/embed/index.js +117 -0
- package/build/src/export/embed/index.js.map +1 -0
- package/build/src/export/embed/resolveOptions.js +63 -0
- package/build/src/export/embed/resolveOptions.js.map +1 -0
- package/build/src/export/exportApp.js +56 -29
- package/build/src/export/exportApp.js.map +1 -1
- package/build/src/export/exportAssets.js +17 -0
- package/build/src/export/exportAssets.js.map +1 -1
- package/build/src/export/exportAsync.js +3 -0
- package/build/src/export/exportAsync.js.map +1 -1
- package/build/src/export/exportStaticAsync.js +179 -0
- package/build/src/export/exportStaticAsync.js.map +1 -0
- package/build/src/export/fork-bundleAsync.js +15 -42
- package/build/src/export/fork-bundleAsync.js.map +1 -1
- package/build/src/export/html.js +21 -0
- package/build/src/export/html.js.map +1 -0
- package/build/src/export/printBundleSizes.js +2 -2
- package/build/src/export/printBundleSizes.js.map +1 -1
- package/build/src/export/web/exportWebAsync.js +3 -0
- package/build/src/export/web/exportWebAsync.js.map +1 -1
- package/build/src/export/writeContents.js +5 -2
- package/build/src/export/writeContents.js.map +1 -1
- package/build/src/graphql/generated.js +462 -0
- package/build/src/graphql/generated.js.map +1 -0
- package/build/src/install/installAsync.js +3 -0
- package/build/src/install/installAsync.js.map +1 -1
- package/build/src/prebuild/clearNativeFolder.js +6 -1
- package/build/src/prebuild/clearNativeFolder.js.map +1 -1
- package/build/src/prebuild/ensureConfigAsync.js +1 -12
- package/build/src/prebuild/ensureConfigAsync.js.map +1 -1
- package/build/src/prebuild/prebuildAsync.js +7 -2
- package/build/src/prebuild/prebuildAsync.js.map +1 -1
- package/build/src/prebuild/resolveOptions.js +7 -8
- package/build/src/prebuild/resolveOptions.js.map +1 -1
- package/build/src/prebuild/resolveTemplate.js +5 -0
- package/build/src/prebuild/resolveTemplate.js.map +1 -1
- package/build/src/prebuild/updateFromTemplate.js +6 -1
- package/build/src/prebuild/updateFromTemplate.js.map +1 -1
- package/build/src/prebuild/validateTemplatePlatforms.js +48 -0
- package/build/src/prebuild/validateTemplatePlatforms.js.map +1 -0
- package/build/src/run/android/runAndroidAsync.js +4 -0
- package/build/src/run/android/runAndroidAsync.js.map +1 -1
- package/build/src/run/ios/appleDevice/AppleDevice.js +25 -19
- package/build/src/run/ios/appleDevice/AppleDevice.js.map +1 -1
- package/build/src/run/ios/appleDevice/client/InstallationProxyClient.js.map +1 -1
- package/build/src/run/ios/options/resolveNativeScheme.js +13 -4
- package/build/src/run/ios/options/resolveNativeScheme.js.map +1 -1
- package/build/src/run/ios/runIosAsync.js +3 -0
- package/build/src/run/ios/runIosAsync.js.map +1 -1
- package/build/src/run/startBundler.js +4 -0
- package/build/src/run/startBundler.js.map +1 -1
- package/build/src/start/doctor/Prerequisite.js.map +1 -1
- package/build/src/start/doctor/dependencies/ensureDependenciesAsync.js +12 -6
- package/build/src/start/doctor/dependencies/ensureDependenciesAsync.js.map +1 -1
- package/build/src/start/doctor/dependencies/validateDependenciesVersions.js +1 -3
- package/build/src/start/doctor/dependencies/validateDependenciesVersions.js.map +1 -1
- package/build/src/start/doctor/typescript/TypeScriptProjectPrerequisite.js +31 -5
- package/build/src/start/doctor/typescript/TypeScriptProjectPrerequisite.js.map +1 -1
- package/build/src/start/doctor/typescript/updateTSConfig.js +6 -0
- package/build/src/start/doctor/typescript/updateTSConfig.js.map +1 -1
- package/build/src/start/doctor/web/WebSupportProjectPrerequisite.js +1 -0
- package/build/src/start/doctor/web/WebSupportProjectPrerequisite.js.map +1 -1
- package/build/src/start/platforms/android/adb.js +1 -1
- package/build/src/start/platforms/android/adb.js.map +1 -1
- package/build/src/start/platforms/ios/AppleDeviceManager.js +1 -1
- package/build/src/start/platforms/ios/AppleDeviceManager.js.map +1 -1
- package/build/src/start/server/BundlerDevServer.js +16 -2
- package/build/src/start/server/BundlerDevServer.js.map +1 -1
- package/build/src/start/server/DevServerManager.js +33 -2
- package/build/src/start/server/DevServerManager.js.map +1 -1
- package/build/src/start/server/getStaticRenderFunctions.js +166 -0
- package/build/src/start/server/getStaticRenderFunctions.js.map +1 -0
- package/build/src/start/server/metro/MetroBundlerDevServer.js +279 -3
- package/build/src/start/server/metro/MetroBundlerDevServer.js.map +1 -1
- package/build/src/start/server/metro/MetroTerminalReporter.js +2 -34
- package/build/src/start/server/metro/MetroTerminalReporter.js.map +1 -1
- package/build/src/start/server/metro/externals.js +95 -0
- package/build/src/start/server/metro/externals.js.map +1 -0
- package/build/src/start/server/metro/getCssModulesFromBundler.js +77 -0
- package/build/src/start/server/metro/getCssModulesFromBundler.js.map +1 -0
- package/build/src/start/server/metro/inspector-proxy/index.js +2 -2
- package/build/src/start/server/metro/inspector-proxy/index.js.map +1 -1
- package/build/src/start/server/metro/inspector-proxy/proxy.js +1 -3
- package/build/src/start/server/metro/inspector-proxy/proxy.js.map +1 -1
- package/build/src/start/server/metro/instantiateMetro.js +44 -48
- package/build/src/start/server/metro/instantiateMetro.js.map +1 -1
- package/build/src/start/server/metro/metroErrorInterface.js +114 -0
- package/build/src/start/server/metro/metroErrorInterface.js.map +1 -0
- package/build/src/start/server/metro/metroWatchTypeScriptFiles.js +51 -0
- package/build/src/start/server/metro/metroWatchTypeScriptFiles.js.map +1 -0
- package/build/src/start/server/metro/resolveFromProject.js +26 -3
- package/build/src/start/server/metro/resolveFromProject.js.map +1 -1
- package/build/src/start/server/metro/router.js +4 -0
- package/build/src/start/server/metro/router.js.map +1 -1
- package/build/src/start/server/metro/runServer-fork.js +108 -0
- package/build/src/start/server/metro/runServer-fork.js.map +1 -0
- package/build/src/start/server/metro/symbolicate.js +6 -0
- package/build/src/start/server/metro/symbolicate.js.map +1 -0
- package/build/src/start/server/metro/waitForMetroToObserveTypeScriptFile.js +70 -0
- package/build/src/start/server/metro/waitForMetroToObserveTypeScriptFile.js.map +1 -0
- package/build/src/start/server/metro/withMetroMultiPlatform.js +181 -44
- package/build/src/start/server/metro/withMetroMultiPlatform.js.map +1 -1
- package/build/src/start/server/middleware/ClassicManifestMiddleware.js +8 -1
- package/build/src/start/server/middleware/ClassicManifestMiddleware.js.map +1 -1
- package/build/src/start/server/middleware/CreateFileMiddleware.js.map +1 -1
- package/build/src/start/server/middleware/ExpoGoManifestHandlerMiddleware.js +38 -32
- package/build/src/start/server/middleware/ExpoGoManifestHandlerMiddleware.js.map +1 -1
- package/build/src/start/server/middleware/ManifestMiddleware.js +53 -19
- package/build/src/start/server/middleware/ManifestMiddleware.js.map +1 -1
- package/build/src/start/server/type-generation/expo-env.js +27 -0
- package/build/src/start/server/type-generation/expo-env.js.map +1 -0
- package/build/src/start/server/type-generation/index.js +49 -0
- package/build/src/start/server/type-generation/index.js.map +1 -0
- package/build/src/start/server/type-generation/routes.js +292 -0
- package/build/src/start/server/type-generation/routes.js.map +1 -0
- package/build/src/start/server/type-generation/tsconfig.js +89 -0
- package/build/src/start/server/type-generation/tsconfig.js.map +1 -0
- package/build/src/start/server/webTemplate.js +20 -4
- package/build/src/start/server/webTemplate.js.map +1 -1
- package/build/src/start/server/webpack/WebpackBundlerDevServer.js +4 -6
- package/build/src/start/server/webpack/WebpackBundlerDevServer.js.map +1 -1
- package/build/src/start/startAsync.js +30 -8
- package/build/src/start/startAsync.js.map +1 -1
- package/build/src/utils/FileNotifier.js +11 -4
- package/build/src/utils/FileNotifier.js.map +1 -1
- package/build/src/utils/analytics/getMetroProperties.js +1 -1
- package/build/src/utils/analytics/getMetroProperties.js.map +1 -1
- package/build/src/utils/analytics/rudderstackClient.js +2 -2
- package/build/src/utils/codesigning.js +31 -7
- package/build/src/utils/codesigning.js.map +1 -1
- package/build/src/utils/env.js +3 -0
- package/build/src/utils/env.js.map +1 -1
- package/build/src/utils/mergeGitIgnorePaths.js +42 -0
- package/build/src/utils/mergeGitIgnorePaths.js.map +1 -1
- package/build/src/utils/nodeEnv.js +11 -0
- package/build/src/utils/nodeEnv.js.map +1 -0
- package/build/src/utils/resolveArgs.js +43 -0
- package/build/src/utils/resolveArgs.js.map +1 -1
- package/build/src/utils/template.js +21 -0
- package/build/src/utils/template.js.map +1 -0
- package/build/src/utils/tsconfig/evaluateTsConfig.js +61 -0
- package/build/src/utils/tsconfig/evaluateTsConfig.js.map +1 -0
- package/build/src/utils/tsconfig/loadTsConfigPaths.js +69 -0
- package/build/src/utils/tsconfig/loadTsConfigPaths.js.map +1 -0
- package/build/src/utils/tsconfig/matchTsConfigPathAlias.js +88 -0
- package/build/src/utils/tsconfig/matchTsConfigPathAlias.js.map +1 -0
- package/build/src/utils/tsconfig/resolveWithTsConfigPaths.js +41 -0
- package/build/src/utils/tsconfig/resolveWithTsConfigPaths.js.map +1 -0
- package/package.json +16 -8
- package/static/template/metro.config.js +4 -1
- package/build/src/api/getProject.js +0 -19
- package/build/src/api/getProject.js.map +0 -1
- package/build/src/api/graphql/generated.js +0 -113
- package/build/src/api/graphql/generated.js.map +0 -1
|
@@ -0,0 +1,462 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
exports.WebhookType = exports.UsageMetricsGranularity = exports.UsageMetricType = exports.UploadSessionType = exports.SubmissionStatus = exports.SubmissionArchiveSourceType = exports.SubmissionAndroidTrack = exports.SubmissionAndroidReleaseStatus = exports.SubmissionAndroidArchiveType = exports.StatuspageServiceStatus = exports.StatuspageServiceName = exports.StatuspageIncidentStatus = exports.StatuspageIncidentImpact = exports.StandardOffer = exports.SecondFactorMethod = exports.Role = exports.ProjectArchiveSourceType = exports.Permission = exports.Order = exports.OfferType = exports.NotificationType = exports.NotificationEvent = exports.MailchimpTag = exports.MailchimpAudience = exports.IosSchemeBuildConfiguration = exports.IosManagedBuildType = exports.IosDistributionType = exports.IosBuildType = exports.InvoiceDiscountType = exports.GitHubAppInstallationStatus = exports.GitHubAppEnvironment = exports.Feature = exports.EnvironmentSecretType = exports.EasTotalPlanEnablementUnit = exports.EasServiceMetric = exports.EasService = exports.EasBuildDeprecationInfoType = exports.DistributionType = exports.BuildWorkflow = exports.BuildTrigger = exports.BuildStatus = exports.BuildResourceClass = exports.BuildPriority = exports.BuildMode = exports.BuildJobStatus = exports.BuildJobLogsFormat = exports.BuildIosEnterpriseProvisioning = exports.BuildCredentialsSource = exports.AuthProtocolType = exports.AssetMetadataStatus = exports.AppsFilter = exports.AppleDeviceClass = exports.AppStoreConnectUserRole = exports.AppSort = exports.AppPrivacy = exports.AppPlatform = exports.AndroidKeystoreType = exports.AndroidFcmVersion = exports.AndroidBuildType = exports.ActivityTimelineProjectActivityType = void 0;
|
|
6
|
+
var ActivityTimelineProjectActivityType;
|
|
7
|
+
exports.ActivityTimelineProjectActivityType = ActivityTimelineProjectActivityType;
|
|
8
|
+
(function(ActivityTimelineProjectActivityType) {
|
|
9
|
+
ActivityTimelineProjectActivityType["Build"] = "BUILD";
|
|
10
|
+
ActivityTimelineProjectActivityType["BuildJob"] = "BUILD_JOB";
|
|
11
|
+
ActivityTimelineProjectActivityType["Submission"] = "SUBMISSION";
|
|
12
|
+
ActivityTimelineProjectActivityType["Update"] = "UPDATE";
|
|
13
|
+
})(ActivityTimelineProjectActivityType || (exports.ActivityTimelineProjectActivityType = ActivityTimelineProjectActivityType = {}));
|
|
14
|
+
var AndroidBuildType;
|
|
15
|
+
exports.AndroidBuildType = AndroidBuildType;
|
|
16
|
+
(function(AndroidBuildType) {
|
|
17
|
+
AndroidBuildType["Apk"] = "APK";
|
|
18
|
+
AndroidBuildType["AppBundle"] = "APP_BUNDLE";
|
|
19
|
+
AndroidBuildType[/** @deprecated Use developmentClient option instead. */ "DevelopmentClient"] = "DEVELOPMENT_CLIENT";
|
|
20
|
+
})(AndroidBuildType || (exports.AndroidBuildType = AndroidBuildType = {}));
|
|
21
|
+
var AndroidFcmVersion;
|
|
22
|
+
exports.AndroidFcmVersion = AndroidFcmVersion;
|
|
23
|
+
(function(AndroidFcmVersion) {
|
|
24
|
+
AndroidFcmVersion["Legacy"] = "LEGACY";
|
|
25
|
+
AndroidFcmVersion["V1"] = "V1";
|
|
26
|
+
})(AndroidFcmVersion || (exports.AndroidFcmVersion = AndroidFcmVersion = {}));
|
|
27
|
+
var AndroidKeystoreType;
|
|
28
|
+
exports.AndroidKeystoreType = AndroidKeystoreType;
|
|
29
|
+
(function(AndroidKeystoreType) {
|
|
30
|
+
AndroidKeystoreType["Jks"] = "JKS";
|
|
31
|
+
AndroidKeystoreType["Pkcs12"] = "PKCS12";
|
|
32
|
+
AndroidKeystoreType["Unknown"] = "UNKNOWN";
|
|
33
|
+
})(AndroidKeystoreType || (exports.AndroidKeystoreType = AndroidKeystoreType = {}));
|
|
34
|
+
var AppPlatform;
|
|
35
|
+
exports.AppPlatform = AppPlatform;
|
|
36
|
+
(function(AppPlatform) {
|
|
37
|
+
AppPlatform["Android"] = "ANDROID";
|
|
38
|
+
AppPlatform["Ios"] = "IOS";
|
|
39
|
+
})(AppPlatform || (exports.AppPlatform = AppPlatform = {}));
|
|
40
|
+
var AppPrivacy;
|
|
41
|
+
exports.AppPrivacy = AppPrivacy;
|
|
42
|
+
(function(AppPrivacy) {
|
|
43
|
+
AppPrivacy["Hidden"] = "HIDDEN";
|
|
44
|
+
AppPrivacy["Public"] = "PUBLIC";
|
|
45
|
+
AppPrivacy["Unlisted"] = "UNLISTED";
|
|
46
|
+
})(AppPrivacy || (exports.AppPrivacy = AppPrivacy = {}));
|
|
47
|
+
var AppSort;
|
|
48
|
+
exports.AppSort = AppSort;
|
|
49
|
+
(function(AppSort) {
|
|
50
|
+
AppSort[/** Sort by recently published */ "RecentlyPublished"] = "RECENTLY_PUBLISHED";
|
|
51
|
+
AppSort[/** Sort by highest trendScore */ "Viewed"] = "VIEWED";
|
|
52
|
+
})(AppSort || (exports.AppSort = AppSort = {}));
|
|
53
|
+
var AppStoreConnectUserRole;
|
|
54
|
+
exports.AppStoreConnectUserRole = AppStoreConnectUserRole;
|
|
55
|
+
(function(AppStoreConnectUserRole) {
|
|
56
|
+
AppStoreConnectUserRole["AccessToReports"] = "ACCESS_TO_REPORTS";
|
|
57
|
+
AppStoreConnectUserRole["AccountHolder"] = "ACCOUNT_HOLDER";
|
|
58
|
+
AppStoreConnectUserRole["Admin"] = "ADMIN";
|
|
59
|
+
AppStoreConnectUserRole["AppManager"] = "APP_MANAGER";
|
|
60
|
+
AppStoreConnectUserRole["CloudManagedAppDistribution"] = "CLOUD_MANAGED_APP_DISTRIBUTION";
|
|
61
|
+
AppStoreConnectUserRole["CloudManagedDeveloperId"] = "CLOUD_MANAGED_DEVELOPER_ID";
|
|
62
|
+
AppStoreConnectUserRole["CreateApps"] = "CREATE_APPS";
|
|
63
|
+
AppStoreConnectUserRole["CustomerSupport"] = "CUSTOMER_SUPPORT";
|
|
64
|
+
AppStoreConnectUserRole["Developer"] = "DEVELOPER";
|
|
65
|
+
AppStoreConnectUserRole["Finance"] = "FINANCE";
|
|
66
|
+
AppStoreConnectUserRole["ImageManager"] = "IMAGE_MANAGER";
|
|
67
|
+
AppStoreConnectUserRole["Marketing"] = "MARKETING";
|
|
68
|
+
AppStoreConnectUserRole["ReadOnly"] = "READ_ONLY";
|
|
69
|
+
AppStoreConnectUserRole["Sales"] = "SALES";
|
|
70
|
+
AppStoreConnectUserRole["Technical"] = "TECHNICAL";
|
|
71
|
+
AppStoreConnectUserRole["Unknown"] = "UNKNOWN";
|
|
72
|
+
})(AppStoreConnectUserRole || (exports.AppStoreConnectUserRole = AppStoreConnectUserRole = {}));
|
|
73
|
+
var AppleDeviceClass;
|
|
74
|
+
exports.AppleDeviceClass = AppleDeviceClass;
|
|
75
|
+
(function(AppleDeviceClass) {
|
|
76
|
+
AppleDeviceClass["Ipad"] = "IPAD";
|
|
77
|
+
AppleDeviceClass["Iphone"] = "IPHONE";
|
|
78
|
+
})(AppleDeviceClass || (exports.AppleDeviceClass = AppleDeviceClass = {}));
|
|
79
|
+
var AppsFilter;
|
|
80
|
+
exports.AppsFilter = AppsFilter;
|
|
81
|
+
(function(AppsFilter) {
|
|
82
|
+
AppsFilter[/** Featured Projects */ "Featured"] = "FEATURED";
|
|
83
|
+
AppsFilter[/** New Projects */ "New"] = "NEW";
|
|
84
|
+
})(AppsFilter || (exports.AppsFilter = AppsFilter = {}));
|
|
85
|
+
var AssetMetadataStatus;
|
|
86
|
+
exports.AssetMetadataStatus = AssetMetadataStatus;
|
|
87
|
+
(function(AssetMetadataStatus) {
|
|
88
|
+
AssetMetadataStatus["DoesNotExist"] = "DOES_NOT_EXIST";
|
|
89
|
+
AssetMetadataStatus["Exists"] = "EXISTS";
|
|
90
|
+
})(AssetMetadataStatus || (exports.AssetMetadataStatus = AssetMetadataStatus = {}));
|
|
91
|
+
var AuthProtocolType;
|
|
92
|
+
exports.AuthProtocolType = AuthProtocolType;
|
|
93
|
+
(function(AuthProtocolType) {
|
|
94
|
+
AuthProtocolType["Oidc"] = "OIDC";
|
|
95
|
+
})(AuthProtocolType || (exports.AuthProtocolType = AuthProtocolType = {}));
|
|
96
|
+
var BuildCredentialsSource;
|
|
97
|
+
exports.BuildCredentialsSource = BuildCredentialsSource;
|
|
98
|
+
(function(BuildCredentialsSource) {
|
|
99
|
+
BuildCredentialsSource["Local"] = "LOCAL";
|
|
100
|
+
BuildCredentialsSource["Remote"] = "REMOTE";
|
|
101
|
+
})(BuildCredentialsSource || (exports.BuildCredentialsSource = BuildCredentialsSource = {}));
|
|
102
|
+
var BuildIosEnterpriseProvisioning;
|
|
103
|
+
exports.BuildIosEnterpriseProvisioning = BuildIosEnterpriseProvisioning;
|
|
104
|
+
(function(BuildIosEnterpriseProvisioning) {
|
|
105
|
+
BuildIosEnterpriseProvisioning["Adhoc"] = "ADHOC";
|
|
106
|
+
BuildIosEnterpriseProvisioning["Universal"] = "UNIVERSAL";
|
|
107
|
+
})(BuildIosEnterpriseProvisioning || (exports.BuildIosEnterpriseProvisioning = BuildIosEnterpriseProvisioning = {}));
|
|
108
|
+
var BuildJobLogsFormat;
|
|
109
|
+
exports.BuildJobLogsFormat = BuildJobLogsFormat;
|
|
110
|
+
(function(BuildJobLogsFormat) {
|
|
111
|
+
BuildJobLogsFormat["Json"] = "JSON";
|
|
112
|
+
BuildJobLogsFormat["Raw"] = "RAW";
|
|
113
|
+
})(BuildJobLogsFormat || (exports.BuildJobLogsFormat = BuildJobLogsFormat = {}));
|
|
114
|
+
var BuildJobStatus;
|
|
115
|
+
exports.BuildJobStatus = BuildJobStatus;
|
|
116
|
+
(function(BuildJobStatus) {
|
|
117
|
+
BuildJobStatus["Errored"] = "ERRORED";
|
|
118
|
+
BuildJobStatus["Finished"] = "FINISHED";
|
|
119
|
+
BuildJobStatus["InProgress"] = "IN_PROGRESS";
|
|
120
|
+
BuildJobStatus["Pending"] = "PENDING";
|
|
121
|
+
BuildJobStatus["SentToQueue"] = "SENT_TO_QUEUE";
|
|
122
|
+
BuildJobStatus["Started"] = "STARTED";
|
|
123
|
+
})(BuildJobStatus || (exports.BuildJobStatus = BuildJobStatus = {}));
|
|
124
|
+
var BuildMode;
|
|
125
|
+
exports.BuildMode = BuildMode;
|
|
126
|
+
(function(BuildMode) {
|
|
127
|
+
BuildMode["Build"] = "BUILD";
|
|
128
|
+
BuildMode["Custom"] = "CUSTOM";
|
|
129
|
+
BuildMode["Resign"] = "RESIGN";
|
|
130
|
+
})(BuildMode || (exports.BuildMode = BuildMode = {}));
|
|
131
|
+
var BuildPriority;
|
|
132
|
+
exports.BuildPriority = BuildPriority;
|
|
133
|
+
(function(BuildPriority) {
|
|
134
|
+
BuildPriority["High"] = "HIGH";
|
|
135
|
+
BuildPriority["Normal"] = "NORMAL";
|
|
136
|
+
BuildPriority["NormalPlus"] = "NORMAL_PLUS";
|
|
137
|
+
})(BuildPriority || (exports.BuildPriority = BuildPriority = {}));
|
|
138
|
+
var BuildResourceClass;
|
|
139
|
+
exports.BuildResourceClass = BuildResourceClass;
|
|
140
|
+
(function(BuildResourceClass) {
|
|
141
|
+
BuildResourceClass["AndroidDefault"] = "ANDROID_DEFAULT";
|
|
142
|
+
BuildResourceClass["AndroidLarge"] = "ANDROID_LARGE";
|
|
143
|
+
BuildResourceClass["AndroidMedium"] = "ANDROID_MEDIUM";
|
|
144
|
+
BuildResourceClass["IosDefault"] = "IOS_DEFAULT";
|
|
145
|
+
BuildResourceClass[/** @deprecated Use IOS_INTEL_MEDIUM instead */ "IosIntelLarge"] = "IOS_INTEL_LARGE";
|
|
146
|
+
BuildResourceClass["IosIntelMedium"] = "IOS_INTEL_MEDIUM";
|
|
147
|
+
BuildResourceClass["IosLarge"] = "IOS_LARGE";
|
|
148
|
+
BuildResourceClass[/** @deprecated Use IOS_M_MEDIUM instead */ "IosM1Large"] = "IOS_M1_LARGE";
|
|
149
|
+
BuildResourceClass["IosM1Medium"] = "IOS_M1_MEDIUM";
|
|
150
|
+
BuildResourceClass["IosMedium"] = "IOS_MEDIUM";
|
|
151
|
+
BuildResourceClass["IosMLarge"] = "IOS_M_LARGE";
|
|
152
|
+
BuildResourceClass["IosMMedium"] = "IOS_M_MEDIUM";
|
|
153
|
+
BuildResourceClass["Legacy"] = "LEGACY";
|
|
154
|
+
})(BuildResourceClass || (exports.BuildResourceClass = BuildResourceClass = {}));
|
|
155
|
+
var BuildStatus;
|
|
156
|
+
exports.BuildStatus = BuildStatus;
|
|
157
|
+
(function(BuildStatus) {
|
|
158
|
+
BuildStatus["Canceled"] = "CANCELED";
|
|
159
|
+
BuildStatus["Errored"] = "ERRORED";
|
|
160
|
+
BuildStatus["Finished"] = "FINISHED";
|
|
161
|
+
BuildStatus["InProgress"] = "IN_PROGRESS";
|
|
162
|
+
BuildStatus["InQueue"] = "IN_QUEUE";
|
|
163
|
+
BuildStatus["New"] = "NEW";
|
|
164
|
+
})(BuildStatus || (exports.BuildStatus = BuildStatus = {}));
|
|
165
|
+
var BuildTrigger;
|
|
166
|
+
exports.BuildTrigger = BuildTrigger;
|
|
167
|
+
(function(BuildTrigger) {
|
|
168
|
+
BuildTrigger["EasCli"] = "EAS_CLI";
|
|
169
|
+
BuildTrigger["GitBasedIntegration"] = "GIT_BASED_INTEGRATION";
|
|
170
|
+
})(BuildTrigger || (exports.BuildTrigger = BuildTrigger = {}));
|
|
171
|
+
var BuildWorkflow;
|
|
172
|
+
exports.BuildWorkflow = BuildWorkflow;
|
|
173
|
+
(function(BuildWorkflow) {
|
|
174
|
+
BuildWorkflow["Generic"] = "GENERIC";
|
|
175
|
+
BuildWorkflow["Managed"] = "MANAGED";
|
|
176
|
+
BuildWorkflow["Unknown"] = "UNKNOWN";
|
|
177
|
+
})(BuildWorkflow || (exports.BuildWorkflow = BuildWorkflow = {}));
|
|
178
|
+
var DistributionType;
|
|
179
|
+
exports.DistributionType = DistributionType;
|
|
180
|
+
(function(DistributionType) {
|
|
181
|
+
DistributionType["Internal"] = "INTERNAL";
|
|
182
|
+
DistributionType["Simulator"] = "SIMULATOR";
|
|
183
|
+
DistributionType["Store"] = "STORE";
|
|
184
|
+
})(DistributionType || (exports.DistributionType = DistributionType = {}));
|
|
185
|
+
var EasBuildDeprecationInfoType;
|
|
186
|
+
exports.EasBuildDeprecationInfoType = EasBuildDeprecationInfoType;
|
|
187
|
+
(function(EasBuildDeprecationInfoType) {
|
|
188
|
+
EasBuildDeprecationInfoType["Internal"] = "INTERNAL";
|
|
189
|
+
EasBuildDeprecationInfoType["UserFacing"] = "USER_FACING";
|
|
190
|
+
})(EasBuildDeprecationInfoType || (exports.EasBuildDeprecationInfoType = EasBuildDeprecationInfoType = {}));
|
|
191
|
+
var EasService;
|
|
192
|
+
exports.EasService = EasService;
|
|
193
|
+
(function(EasService) {
|
|
194
|
+
EasService["Builds"] = "BUILDS";
|
|
195
|
+
EasService["Updates"] = "UPDATES";
|
|
196
|
+
})(EasService || (exports.EasService = EasService = {}));
|
|
197
|
+
var EasServiceMetric;
|
|
198
|
+
exports.EasServiceMetric = EasServiceMetric;
|
|
199
|
+
(function(EasServiceMetric) {
|
|
200
|
+
EasServiceMetric["AssetsRequests"] = "ASSETS_REQUESTS";
|
|
201
|
+
EasServiceMetric["BandwidthUsage"] = "BANDWIDTH_USAGE";
|
|
202
|
+
EasServiceMetric["Builds"] = "BUILDS";
|
|
203
|
+
EasServiceMetric["ManifestRequests"] = "MANIFEST_REQUESTS";
|
|
204
|
+
EasServiceMetric["UniqueUpdaters"] = "UNIQUE_UPDATERS";
|
|
205
|
+
EasServiceMetric["UniqueUsers"] = "UNIQUE_USERS";
|
|
206
|
+
})(EasServiceMetric || (exports.EasServiceMetric = EasServiceMetric = {}));
|
|
207
|
+
var EasTotalPlanEnablementUnit;
|
|
208
|
+
exports.EasTotalPlanEnablementUnit = EasTotalPlanEnablementUnit;
|
|
209
|
+
(function(EasTotalPlanEnablementUnit) {
|
|
210
|
+
EasTotalPlanEnablementUnit["Build"] = "BUILD";
|
|
211
|
+
EasTotalPlanEnablementUnit["Byte"] = "BYTE";
|
|
212
|
+
EasTotalPlanEnablementUnit["Concurrency"] = "CONCURRENCY";
|
|
213
|
+
EasTotalPlanEnablementUnit["Request"] = "REQUEST";
|
|
214
|
+
EasTotalPlanEnablementUnit["Updater"] = "UPDATER";
|
|
215
|
+
EasTotalPlanEnablementUnit["User"] = "USER";
|
|
216
|
+
})(EasTotalPlanEnablementUnit || (exports.EasTotalPlanEnablementUnit = EasTotalPlanEnablementUnit = {}));
|
|
217
|
+
var EnvironmentSecretType;
|
|
218
|
+
exports.EnvironmentSecretType = EnvironmentSecretType;
|
|
219
|
+
(function(EnvironmentSecretType) {
|
|
220
|
+
EnvironmentSecretType["FileBase64"] = "FILE_BASE64";
|
|
221
|
+
EnvironmentSecretType["String"] = "STRING";
|
|
222
|
+
})(EnvironmentSecretType || (exports.EnvironmentSecretType = EnvironmentSecretType = {}));
|
|
223
|
+
var Feature;
|
|
224
|
+
exports.Feature = Feature;
|
|
225
|
+
(function(Feature) {
|
|
226
|
+
Feature[/** Priority Builds */ "Builds"] = "BUILDS";
|
|
227
|
+
Feature[/** Funds support for open source development */ "OpenSource"] = "OPEN_SOURCE";
|
|
228
|
+
Feature[/** Top Tier Support */ "Support"] = "SUPPORT";
|
|
229
|
+
Feature[/** Share access to projects */ "Teams"] = "TEAMS";
|
|
230
|
+
})(Feature || (exports.Feature = Feature = {}));
|
|
231
|
+
var GitHubAppEnvironment;
|
|
232
|
+
exports.GitHubAppEnvironment = GitHubAppEnvironment;
|
|
233
|
+
(function(GitHubAppEnvironment) {
|
|
234
|
+
GitHubAppEnvironment["Development"] = "DEVELOPMENT";
|
|
235
|
+
GitHubAppEnvironment["Production"] = "PRODUCTION";
|
|
236
|
+
GitHubAppEnvironment["Staging"] = "STAGING";
|
|
237
|
+
})(GitHubAppEnvironment || (exports.GitHubAppEnvironment = GitHubAppEnvironment = {}));
|
|
238
|
+
var GitHubAppInstallationStatus;
|
|
239
|
+
exports.GitHubAppInstallationStatus = GitHubAppInstallationStatus;
|
|
240
|
+
(function(GitHubAppInstallationStatus) {
|
|
241
|
+
GitHubAppInstallationStatus["Active"] = "ACTIVE";
|
|
242
|
+
GitHubAppInstallationStatus["NotInstalled"] = "NOT_INSTALLED";
|
|
243
|
+
GitHubAppInstallationStatus["Suspended"] = "SUSPENDED";
|
|
244
|
+
})(GitHubAppInstallationStatus || (exports.GitHubAppInstallationStatus = GitHubAppInstallationStatus = {}));
|
|
245
|
+
var InvoiceDiscountType;
|
|
246
|
+
exports.InvoiceDiscountType = InvoiceDiscountType;
|
|
247
|
+
(function(InvoiceDiscountType) {
|
|
248
|
+
InvoiceDiscountType["Amount"] = "AMOUNT";
|
|
249
|
+
InvoiceDiscountType["Percentage"] = "PERCENTAGE";
|
|
250
|
+
})(InvoiceDiscountType || (exports.InvoiceDiscountType = InvoiceDiscountType = {}));
|
|
251
|
+
var IosBuildType;
|
|
252
|
+
exports.IosBuildType = IosBuildType;
|
|
253
|
+
(function(IosBuildType) {
|
|
254
|
+
IosBuildType["DevelopmentClient"] = "DEVELOPMENT_CLIENT";
|
|
255
|
+
IosBuildType["Release"] = "RELEASE";
|
|
256
|
+
})(IosBuildType || (exports.IosBuildType = IosBuildType = {}));
|
|
257
|
+
var IosDistributionType;
|
|
258
|
+
exports.IosDistributionType = IosDistributionType;
|
|
259
|
+
(function(IosDistributionType) {
|
|
260
|
+
IosDistributionType["AdHoc"] = "AD_HOC";
|
|
261
|
+
IosDistributionType["AppStore"] = "APP_STORE";
|
|
262
|
+
IosDistributionType["Development"] = "DEVELOPMENT";
|
|
263
|
+
IosDistributionType["Enterprise"] = "ENTERPRISE";
|
|
264
|
+
})(IosDistributionType || (exports.IosDistributionType = IosDistributionType = {}));
|
|
265
|
+
var IosManagedBuildType;
|
|
266
|
+
exports.IosManagedBuildType = IosManagedBuildType;
|
|
267
|
+
(function(IosManagedBuildType) {
|
|
268
|
+
IosManagedBuildType["DevelopmentClient"] = "DEVELOPMENT_CLIENT";
|
|
269
|
+
IosManagedBuildType["Release"] = "RELEASE";
|
|
270
|
+
})(IosManagedBuildType || (exports.IosManagedBuildType = IosManagedBuildType = {}));
|
|
271
|
+
var IosSchemeBuildConfiguration;
|
|
272
|
+
exports.IosSchemeBuildConfiguration = IosSchemeBuildConfiguration;
|
|
273
|
+
(function(IosSchemeBuildConfiguration) {
|
|
274
|
+
IosSchemeBuildConfiguration["Debug"] = "DEBUG";
|
|
275
|
+
IosSchemeBuildConfiguration["Release"] = "RELEASE";
|
|
276
|
+
})(IosSchemeBuildConfiguration || (exports.IosSchemeBuildConfiguration = IosSchemeBuildConfiguration = {}));
|
|
277
|
+
var MailchimpAudience;
|
|
278
|
+
exports.MailchimpAudience = MailchimpAudience;
|
|
279
|
+
(function(MailchimpAudience) {
|
|
280
|
+
MailchimpAudience["ExpoDevelopers"] = "EXPO_DEVELOPERS";
|
|
281
|
+
})(MailchimpAudience || (exports.MailchimpAudience = MailchimpAudience = {}));
|
|
282
|
+
var MailchimpTag;
|
|
283
|
+
exports.MailchimpTag = MailchimpTag;
|
|
284
|
+
(function(MailchimpTag) {
|
|
285
|
+
MailchimpTag["DevClientUsers"] = "DEV_CLIENT_USERS";
|
|
286
|
+
MailchimpTag["EasMasterList"] = "EAS_MASTER_LIST";
|
|
287
|
+
})(MailchimpTag || (exports.MailchimpTag = MailchimpTag = {}));
|
|
288
|
+
var NotificationEvent;
|
|
289
|
+
exports.NotificationEvent = NotificationEvent;
|
|
290
|
+
(function(NotificationEvent) {
|
|
291
|
+
NotificationEvent["BuildComplete"] = "BUILD_COMPLETE";
|
|
292
|
+
NotificationEvent["SubmissionComplete"] = "SUBMISSION_COMPLETE";
|
|
293
|
+
})(NotificationEvent || (exports.NotificationEvent = NotificationEvent = {}));
|
|
294
|
+
var NotificationType;
|
|
295
|
+
exports.NotificationType = NotificationType;
|
|
296
|
+
(function(NotificationType) {
|
|
297
|
+
NotificationType["Email"] = "EMAIL";
|
|
298
|
+
})(NotificationType || (exports.NotificationType = NotificationType = {}));
|
|
299
|
+
var OfferType;
|
|
300
|
+
exports.OfferType = OfferType;
|
|
301
|
+
(function(OfferType) {
|
|
302
|
+
OfferType[/** Addon, or supplementary subscription */ "Addon"] = "ADDON";
|
|
303
|
+
OfferType[/** Advanced Purchase of Paid Resource */ "Prepaid"] = "PREPAID";
|
|
304
|
+
OfferType[/** Term subscription */ "Subscription"] = "SUBSCRIPTION";
|
|
305
|
+
})(OfferType || (exports.OfferType = OfferType = {}));
|
|
306
|
+
var Order;
|
|
307
|
+
exports.Order = Order;
|
|
308
|
+
(function(Order) {
|
|
309
|
+
Order["Asc"] = "ASC";
|
|
310
|
+
Order["Desc"] = "DESC";
|
|
311
|
+
})(Order || (exports.Order = Order = {}));
|
|
312
|
+
var Permission;
|
|
313
|
+
exports.Permission = Permission;
|
|
314
|
+
(function(Permission) {
|
|
315
|
+
Permission["Admin"] = "ADMIN";
|
|
316
|
+
Permission["Own"] = "OWN";
|
|
317
|
+
Permission["Publish"] = "PUBLISH";
|
|
318
|
+
Permission["View"] = "VIEW";
|
|
319
|
+
})(Permission || (exports.Permission = Permission = {}));
|
|
320
|
+
var ProjectArchiveSourceType;
|
|
321
|
+
exports.ProjectArchiveSourceType = ProjectArchiveSourceType;
|
|
322
|
+
(function(ProjectArchiveSourceType) {
|
|
323
|
+
ProjectArchiveSourceType["Gcs"] = "GCS";
|
|
324
|
+
ProjectArchiveSourceType["Git"] = "GIT";
|
|
325
|
+
ProjectArchiveSourceType["None"] = "NONE";
|
|
326
|
+
ProjectArchiveSourceType["S3"] = "S3";
|
|
327
|
+
ProjectArchiveSourceType["Url"] = "URL";
|
|
328
|
+
})(ProjectArchiveSourceType || (exports.ProjectArchiveSourceType = ProjectArchiveSourceType = {}));
|
|
329
|
+
var Role;
|
|
330
|
+
exports.Role = Role;
|
|
331
|
+
(function(Role) {
|
|
332
|
+
Role["Admin"] = "ADMIN";
|
|
333
|
+
Role["Custom"] = "CUSTOM";
|
|
334
|
+
Role["Developer"] = "DEVELOPER";
|
|
335
|
+
Role["HasAdmin"] = "HAS_ADMIN";
|
|
336
|
+
Role["NotAdmin"] = "NOT_ADMIN";
|
|
337
|
+
Role["Owner"] = "OWNER";
|
|
338
|
+
Role["ViewOnly"] = "VIEW_ONLY";
|
|
339
|
+
})(Role || (exports.Role = Role = {}));
|
|
340
|
+
var SecondFactorMethod;
|
|
341
|
+
exports.SecondFactorMethod = SecondFactorMethod;
|
|
342
|
+
(function(SecondFactorMethod) {
|
|
343
|
+
SecondFactorMethod[/** Google Authenticator (TOTP) */ "Authenticator"] = "AUTHENTICATOR";
|
|
344
|
+
SecondFactorMethod[/** SMS */ "Sms"] = "SMS";
|
|
345
|
+
})(SecondFactorMethod || (exports.SecondFactorMethod = SecondFactorMethod = {}));
|
|
346
|
+
var StandardOffer;
|
|
347
|
+
exports.StandardOffer = StandardOffer;
|
|
348
|
+
(function(StandardOffer) {
|
|
349
|
+
StandardOffer[/** $29 USD per month, 30 day trial */ "Default"] = "DEFAULT";
|
|
350
|
+
StandardOffer[/** $800 USD per month */ "Support"] = "SUPPORT";
|
|
351
|
+
StandardOffer[/** $29 USD per month, 1 year trial */ "YcDeals"] = "YC_DEALS";
|
|
352
|
+
StandardOffer[/** $348 USD per year, 30 day trial */ "YearlySub"] = "YEARLY_SUB";
|
|
353
|
+
})(StandardOffer || (exports.StandardOffer = StandardOffer = {}));
|
|
354
|
+
var StatuspageIncidentImpact;
|
|
355
|
+
exports.StatuspageIncidentImpact = StatuspageIncidentImpact;
|
|
356
|
+
(function(StatuspageIncidentImpact) {
|
|
357
|
+
StatuspageIncidentImpact["Critical"] = "CRITICAL";
|
|
358
|
+
StatuspageIncidentImpact["Maintenance"] = "MAINTENANCE";
|
|
359
|
+
StatuspageIncidentImpact["Major"] = "MAJOR";
|
|
360
|
+
StatuspageIncidentImpact["Minor"] = "MINOR";
|
|
361
|
+
StatuspageIncidentImpact["None"] = "NONE";
|
|
362
|
+
})(StatuspageIncidentImpact || (exports.StatuspageIncidentImpact = StatuspageIncidentImpact = {}));
|
|
363
|
+
var StatuspageIncidentStatus;
|
|
364
|
+
exports.StatuspageIncidentStatus = StatuspageIncidentStatus;
|
|
365
|
+
(function(StatuspageIncidentStatus) {
|
|
366
|
+
StatuspageIncidentStatus["Completed"] = "COMPLETED";
|
|
367
|
+
StatuspageIncidentStatus["Identified"] = "IDENTIFIED";
|
|
368
|
+
StatuspageIncidentStatus["Investigating"] = "INVESTIGATING";
|
|
369
|
+
StatuspageIncidentStatus["InProgress"] = "IN_PROGRESS";
|
|
370
|
+
StatuspageIncidentStatus["Monitoring"] = "MONITORING";
|
|
371
|
+
StatuspageIncidentStatus["Resolved"] = "RESOLVED";
|
|
372
|
+
StatuspageIncidentStatus["Scheduled"] = "SCHEDULED";
|
|
373
|
+
StatuspageIncidentStatus["Verifying"] = "VERIFYING";
|
|
374
|
+
})(StatuspageIncidentStatus || (exports.StatuspageIncidentStatus = StatuspageIncidentStatus = {}));
|
|
375
|
+
var StatuspageServiceName;
|
|
376
|
+
exports.StatuspageServiceName = StatuspageServiceName;
|
|
377
|
+
(function(StatuspageServiceName) {
|
|
378
|
+
StatuspageServiceName["EasBuild"] = "EAS_BUILD";
|
|
379
|
+
StatuspageServiceName["EasSubmit"] = "EAS_SUBMIT";
|
|
380
|
+
StatuspageServiceName["EasUpdate"] = "EAS_UPDATE";
|
|
381
|
+
})(StatuspageServiceName || (exports.StatuspageServiceName = StatuspageServiceName = {}));
|
|
382
|
+
var StatuspageServiceStatus;
|
|
383
|
+
exports.StatuspageServiceStatus = StatuspageServiceStatus;
|
|
384
|
+
(function(StatuspageServiceStatus) {
|
|
385
|
+
StatuspageServiceStatus["DegradedPerformance"] = "DEGRADED_PERFORMANCE";
|
|
386
|
+
StatuspageServiceStatus["MajorOutage"] = "MAJOR_OUTAGE";
|
|
387
|
+
StatuspageServiceStatus["Operational"] = "OPERATIONAL";
|
|
388
|
+
StatuspageServiceStatus["PartialOutage"] = "PARTIAL_OUTAGE";
|
|
389
|
+
StatuspageServiceStatus["UnderMaintenance"] = "UNDER_MAINTENANCE";
|
|
390
|
+
})(StatuspageServiceStatus || (exports.StatuspageServiceStatus = StatuspageServiceStatus = {}));
|
|
391
|
+
var SubmissionAndroidArchiveType;
|
|
392
|
+
exports.SubmissionAndroidArchiveType = SubmissionAndroidArchiveType;
|
|
393
|
+
(function(SubmissionAndroidArchiveType) {
|
|
394
|
+
SubmissionAndroidArchiveType["Aab"] = "AAB";
|
|
395
|
+
SubmissionAndroidArchiveType["Apk"] = "APK";
|
|
396
|
+
})(SubmissionAndroidArchiveType || (exports.SubmissionAndroidArchiveType = SubmissionAndroidArchiveType = {}));
|
|
397
|
+
var SubmissionAndroidReleaseStatus;
|
|
398
|
+
exports.SubmissionAndroidReleaseStatus = SubmissionAndroidReleaseStatus;
|
|
399
|
+
(function(SubmissionAndroidReleaseStatus) {
|
|
400
|
+
SubmissionAndroidReleaseStatus["Completed"] = "COMPLETED";
|
|
401
|
+
SubmissionAndroidReleaseStatus["Draft"] = "DRAFT";
|
|
402
|
+
SubmissionAndroidReleaseStatus["Halted"] = "HALTED";
|
|
403
|
+
SubmissionAndroidReleaseStatus["InProgress"] = "IN_PROGRESS";
|
|
404
|
+
})(SubmissionAndroidReleaseStatus || (exports.SubmissionAndroidReleaseStatus = SubmissionAndroidReleaseStatus = {}));
|
|
405
|
+
var SubmissionAndroidTrack;
|
|
406
|
+
exports.SubmissionAndroidTrack = SubmissionAndroidTrack;
|
|
407
|
+
(function(SubmissionAndroidTrack) {
|
|
408
|
+
SubmissionAndroidTrack["Alpha"] = "ALPHA";
|
|
409
|
+
SubmissionAndroidTrack["Beta"] = "BETA";
|
|
410
|
+
SubmissionAndroidTrack["Internal"] = "INTERNAL";
|
|
411
|
+
SubmissionAndroidTrack["Production"] = "PRODUCTION";
|
|
412
|
+
})(SubmissionAndroidTrack || (exports.SubmissionAndroidTrack = SubmissionAndroidTrack = {}));
|
|
413
|
+
var SubmissionArchiveSourceType;
|
|
414
|
+
exports.SubmissionArchiveSourceType = SubmissionArchiveSourceType;
|
|
415
|
+
(function(SubmissionArchiveSourceType) {
|
|
416
|
+
SubmissionArchiveSourceType["GcsBuildApplicationArchive"] = "GCS_BUILD_APPLICATION_ARCHIVE";
|
|
417
|
+
SubmissionArchiveSourceType["GcsSubmitArchive"] = "GCS_SUBMIT_ARCHIVE";
|
|
418
|
+
SubmissionArchiveSourceType["Url"] = "URL";
|
|
419
|
+
})(SubmissionArchiveSourceType || (exports.SubmissionArchiveSourceType = SubmissionArchiveSourceType = {}));
|
|
420
|
+
var SubmissionStatus;
|
|
421
|
+
exports.SubmissionStatus = SubmissionStatus;
|
|
422
|
+
(function(SubmissionStatus) {
|
|
423
|
+
SubmissionStatus["AwaitingBuild"] = "AWAITING_BUILD";
|
|
424
|
+
SubmissionStatus["Canceled"] = "CANCELED";
|
|
425
|
+
SubmissionStatus["Errored"] = "ERRORED";
|
|
426
|
+
SubmissionStatus["Finished"] = "FINISHED";
|
|
427
|
+
SubmissionStatus["InProgress"] = "IN_PROGRESS";
|
|
428
|
+
SubmissionStatus["InQueue"] = "IN_QUEUE";
|
|
429
|
+
})(SubmissionStatus || (exports.SubmissionStatus = SubmissionStatus = {}));
|
|
430
|
+
var UploadSessionType;
|
|
431
|
+
exports.UploadSessionType = UploadSessionType;
|
|
432
|
+
(function(UploadSessionType) {
|
|
433
|
+
UploadSessionType["EasBuildGcsProjectSources"] = "EAS_BUILD_GCS_PROJECT_SOURCES";
|
|
434
|
+
UploadSessionType["EasBuildProjectSources"] = "EAS_BUILD_PROJECT_SOURCES";
|
|
435
|
+
UploadSessionType["EasSubmitAppArchive"] = "EAS_SUBMIT_APP_ARCHIVE";
|
|
436
|
+
UploadSessionType["EasSubmitGcsAppArchive"] = "EAS_SUBMIT_GCS_APP_ARCHIVE";
|
|
437
|
+
})(UploadSessionType || (exports.UploadSessionType = UploadSessionType = {}));
|
|
438
|
+
var UsageMetricType;
|
|
439
|
+
exports.UsageMetricType = UsageMetricType;
|
|
440
|
+
(function(UsageMetricType) {
|
|
441
|
+
UsageMetricType["Bandwidth"] = "BANDWIDTH";
|
|
442
|
+
UsageMetricType["Build"] = "BUILD";
|
|
443
|
+
UsageMetricType["Request"] = "REQUEST";
|
|
444
|
+
UsageMetricType["Update"] = "UPDATE";
|
|
445
|
+
UsageMetricType["User"] = "USER";
|
|
446
|
+
})(UsageMetricType || (exports.UsageMetricType = UsageMetricType = {}));
|
|
447
|
+
var UsageMetricsGranularity;
|
|
448
|
+
exports.UsageMetricsGranularity = UsageMetricsGranularity;
|
|
449
|
+
(function(UsageMetricsGranularity) {
|
|
450
|
+
UsageMetricsGranularity["Day"] = "DAY";
|
|
451
|
+
UsageMetricsGranularity["Hour"] = "HOUR";
|
|
452
|
+
UsageMetricsGranularity["Minute"] = "MINUTE";
|
|
453
|
+
UsageMetricsGranularity["Total"] = "TOTAL";
|
|
454
|
+
})(UsageMetricsGranularity || (exports.UsageMetricsGranularity = UsageMetricsGranularity = {}));
|
|
455
|
+
var WebhookType;
|
|
456
|
+
exports.WebhookType = WebhookType;
|
|
457
|
+
(function(WebhookType) {
|
|
458
|
+
WebhookType["Build"] = "BUILD";
|
|
459
|
+
WebhookType["Submit"] = "SUBMIT";
|
|
460
|
+
})(WebhookType || (exports.WebhookType = WebhookType = {}));
|
|
461
|
+
|
|
462
|
+
//# sourceMappingURL=generated.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/graphql/generated.ts"],"sourcesContent":["/**\n * eslint-disable\n * This file was generated using GraphQL Codegen\n * Command: yarn generate-graphql-code\n * Run this during development for automatic type generation when editing GraphQL documents\n * For more info and docs, visit https://graphql-code-generator.com/\n */\n\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: string;\n String: string;\n Boolean: boolean;\n Int: number;\n Float: number;\n DateTime: any;\n JSON: any;\n JSONObject: any;\n};\n\nexport type AccountDataInput = {\n name: Scalars['String'];\n};\n\nexport type AccountNotificationSubscriptionInput = {\n accountId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport type AccountSsoConfigurationData = {\n authEndpoint?: InputMaybe<Scalars['String']>;\n authProtocol: AuthProtocolType;\n authProviderIdentifier: Scalars['String'];\n clientIdentifier: Scalars['String'];\n clientSecret: Scalars['String'];\n issuer: Scalars['String'];\n jwksEndpoint?: InputMaybe<Scalars['String']>;\n revokeEndpoint?: InputMaybe<Scalars['String']>;\n tokenEndpoint?: InputMaybe<Scalars['String']>;\n userInfoEndpoint?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ActivityTimelineProjectActivityType {\n Build = 'BUILD',\n BuildJob = 'BUILD_JOB',\n Submission = 'SUBMISSION',\n Update = 'UPDATE'\n}\n\nexport type AddUserInput = {\n audience?: InputMaybe<MailchimpAudience>;\n email: Scalars['String'];\n tags?: InputMaybe<Array<MailchimpTag>>;\n};\n\n/** @isDefault: if set, these build credentials will become the default for the Android app. All other build credentials will have their default status set to false. */\nexport type AndroidAppBuildCredentialsInput = {\n isDefault: Scalars['Boolean'];\n keystoreId: Scalars['ID'];\n name: Scalars['String'];\n};\n\nexport type AndroidAppCredentialsFilter = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n legacyOnly?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type AndroidAppCredentialsInput = {\n fcmId?: InputMaybe<Scalars['ID']>;\n googleServiceAccountKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AndroidBuildType {\n Apk = 'APK',\n AppBundle = 'APP_BUNDLE',\n /** @deprecated Use developmentClient option instead. */\n DevelopmentClient = 'DEVELOPMENT_CLIENT'\n}\n\nexport type AndroidBuilderEnvironmentInput = {\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n ndk?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidFcmInput = {\n credential: Scalars['String'];\n version: AndroidFcmVersion;\n};\n\nexport enum AndroidFcmVersion {\n Legacy = 'LEGACY',\n V1 = 'V1'\n}\n\nexport type AndroidJobBuildCredentialsInput = {\n keystore: AndroidJobKeystoreInput;\n};\n\nexport type AndroidJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobKeystoreInput = {\n dataBase64: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n};\n\nexport type AndroidJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildProfile?: InputMaybe<Scalars['String']>;\n buildType?: InputMaybe<AndroidBuildType>;\n builderEnvironment?: InputMaybe<AndroidBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n gradleCommand?: InputMaybe<Scalars['String']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<AndroidJobSecretsInput>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<AndroidJobVersionInput>;\n};\n\nexport type AndroidJobSecretsInput = {\n buildCredentials?: InputMaybe<AndroidJobBuildCredentialsInput>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type AndroidJobVersionInput = {\n versionCode: Scalars['String'];\n};\n\nexport type AndroidKeystoreInput = {\n base64EncodedKeystore: Scalars['String'];\n keyAlias: Scalars['String'];\n keyPassword?: InputMaybe<Scalars['String']>;\n keystorePassword: Scalars['String'];\n type: AndroidKeystoreType;\n};\n\nexport enum AndroidKeystoreType {\n Jks = 'JKS',\n Pkcs12 = 'PKCS12',\n Unknown = 'UNKNOWN'\n}\n\nexport type AndroidSubmissionConfigInput = {\n applicationIdentifier?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n changesNotSentForReview?: InputMaybe<Scalars['Boolean']>;\n googleServiceAccountKeyId?: InputMaybe<Scalars['String']>;\n googleServiceAccountKeyJson?: InputMaybe<Scalars['String']>;\n releaseStatus?: InputMaybe<SubmissionAndroidReleaseStatus>;\n track: SubmissionAndroidTrack;\n};\n\nexport type AppDataInput = {\n id: Scalars['ID'];\n privacy?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInfoInput = {\n displayName?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppInput = {\n accountId: Scalars['ID'];\n appInfo?: InputMaybe<AppInfoInput>;\n privacy: AppPrivacy;\n projectName: Scalars['String'];\n};\n\nexport type AppNotificationSubscriptionInput = {\n appId: Scalars['ID'];\n event: NotificationEvent;\n type: NotificationType;\n userId: Scalars['ID'];\n};\n\nexport enum AppPlatform {\n Android = 'ANDROID',\n Ios = 'IOS'\n}\n\nexport enum AppPrivacy {\n Hidden = 'HIDDEN',\n Public = 'PUBLIC',\n Unlisted = 'UNLISTED'\n}\n\nexport enum AppSort {\n /** Sort by recently published */\n RecentlyPublished = 'RECENTLY_PUBLISHED',\n /** Sort by highest trendScore */\n Viewed = 'VIEWED'\n}\n\nexport type AppStoreConnectApiKeyInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n name?: InputMaybe<Scalars['String']>;\n roles?: InputMaybe<Array<AppStoreConnectUserRole>>;\n};\n\nexport enum AppStoreConnectUserRole {\n AccessToReports = 'ACCESS_TO_REPORTS',\n AccountHolder = 'ACCOUNT_HOLDER',\n Admin = 'ADMIN',\n AppManager = 'APP_MANAGER',\n CloudManagedAppDistribution = 'CLOUD_MANAGED_APP_DISTRIBUTION',\n CloudManagedDeveloperId = 'CLOUD_MANAGED_DEVELOPER_ID',\n CreateApps = 'CREATE_APPS',\n CustomerSupport = 'CUSTOMER_SUPPORT',\n Developer = 'DEVELOPER',\n Finance = 'FINANCE',\n ImageManager = 'IMAGE_MANAGER',\n Marketing = 'MARKETING',\n ReadOnly = 'READ_ONLY',\n Sales = 'SALES',\n Technical = 'TECHNICAL',\n Unknown = 'UNKNOWN'\n}\n\nexport type AppVersionInput = {\n appId: Scalars['ID'];\n applicationIdentifier: Scalars['String'];\n buildVersion: Scalars['String'];\n platform: AppPlatform;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n storeVersion: Scalars['String'];\n};\n\nexport type AppleAppIdentifierInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n bundleIdentifier: Scalars['String'];\n parentAppleAppId?: InputMaybe<Scalars['ID']>;\n};\n\nexport enum AppleDeviceClass {\n Ipad = 'IPAD',\n Iphone = 'IPHONE'\n}\n\nexport type AppleDeviceInput = {\n appleTeamId: Scalars['ID'];\n deviceClass?: InputMaybe<AppleDeviceClass>;\n enabled?: InputMaybe<Scalars['Boolean']>;\n identifier: Scalars['String'];\n model?: InputMaybe<Scalars['String']>;\n name?: InputMaybe<Scalars['String']>;\n softwareVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleDistributionCertificateInput = {\n appleTeamId?: InputMaybe<Scalars['ID']>;\n certP12: Scalars['String'];\n certPassword: Scalars['String'];\n certPrivateSigningKey?: InputMaybe<Scalars['String']>;\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type AppleProvisioningProfileInput = {\n appleProvisioningProfile: Scalars['String'];\n developerPortalIdentifier?: InputMaybe<Scalars['String']>;\n};\n\nexport type ApplePushKeyInput = {\n appleTeamId: Scalars['ID'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport type AppleTeamInput = {\n appleTeamIdentifier: Scalars['String'];\n appleTeamName?: InputMaybe<Scalars['String']>;\n};\n\nexport enum AppsFilter {\n /** Featured Projects */\n Featured = 'FEATURED',\n /** New Projects */\n New = 'NEW'\n}\n\nexport type AscApiKeyInput = {\n issuerIdentifier: Scalars['String'];\n keyIdentifier: Scalars['String'];\n keyP8: Scalars['String'];\n};\n\nexport enum AssetMetadataStatus {\n DoesNotExist = 'DOES_NOT_EXIST',\n Exists = 'EXISTS'\n}\n\nexport enum AuthProtocolType {\n Oidc = 'OIDC'\n}\n\nexport type BuildCacheInput = {\n cacheDefaultPaths?: InputMaybe<Scalars['Boolean']>;\n clear?: InputMaybe<Scalars['Boolean']>;\n customPaths?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;\n disabled?: InputMaybe<Scalars['Boolean']>;\n key?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildCredentialsSource {\n Local = 'LOCAL',\n Remote = 'REMOTE'\n}\n\nexport type BuildFilter = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n platform?: InputMaybe<AppPlatform>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n status?: InputMaybe<BuildStatus>;\n};\n\nexport type BuildFilterInput = {\n channel?: InputMaybe<Scalars['String']>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildIosEnterpriseProvisioning {\n Adhoc = 'ADHOC',\n Universal = 'UNIVERSAL'\n}\n\nexport enum BuildJobLogsFormat {\n Json = 'JSON',\n Raw = 'RAW'\n}\n\nexport enum BuildJobStatus {\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n SentToQueue = 'SENT_TO_QUEUE',\n Started = 'STARTED'\n}\n\nexport type BuildMetadataInput = {\n appBuildVersion?: InputMaybe<Scalars['String']>;\n appIdentifier?: InputMaybe<Scalars['String']>;\n appName?: InputMaybe<Scalars['String']>;\n appVersion?: InputMaybe<Scalars['String']>;\n buildMode?: InputMaybe<BuildMode>;\n buildProfile?: InputMaybe<Scalars['String']>;\n channel?: InputMaybe<Scalars['String']>;\n cliVersion?: InputMaybe<Scalars['String']>;\n credentialsSource?: InputMaybe<BuildCredentialsSource>;\n distribution?: InputMaybe<DistributionType>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n gitCommitMessage?: InputMaybe<Scalars['String']>;\n iosEnterpriseProvisioning?: InputMaybe<BuildIosEnterpriseProvisioning>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n runFromCI?: InputMaybe<Scalars['Boolean']>;\n runWithNoWaitFlag?: InputMaybe<Scalars['Boolean']>;\n runtimeVersion?: InputMaybe<Scalars['String']>;\n sdkVersion?: InputMaybe<Scalars['String']>;\n trackingContext?: InputMaybe<Scalars['JSONObject']>;\n username?: InputMaybe<Scalars['String']>;\n workflow?: InputMaybe<BuildWorkflow>;\n};\n\nexport enum BuildMode {\n Build = 'BUILD',\n Custom = 'CUSTOM',\n Resign = 'RESIGN'\n}\n\nexport type BuildParamsInput = {\n reactNativeVersion?: InputMaybe<Scalars['String']>;\n resourceClass: BuildResourceClass;\n sdkVersion?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildPriority {\n High = 'HIGH',\n Normal = 'NORMAL',\n NormalPlus = 'NORMAL_PLUS'\n}\n\nexport type BuildResignInput = {\n applicationArchiveSource?: InputMaybe<ProjectArchiveSourceInput>;\n};\n\nexport enum BuildResourceClass {\n AndroidDefault = 'ANDROID_DEFAULT',\n AndroidLarge = 'ANDROID_LARGE',\n AndroidMedium = 'ANDROID_MEDIUM',\n IosDefault = 'IOS_DEFAULT',\n /** @deprecated Use IOS_INTEL_MEDIUM instead */\n IosIntelLarge = 'IOS_INTEL_LARGE',\n IosIntelMedium = 'IOS_INTEL_MEDIUM',\n IosLarge = 'IOS_LARGE',\n /** @deprecated Use IOS_M_MEDIUM instead */\n IosM1Large = 'IOS_M1_LARGE',\n IosM1Medium = 'IOS_M1_MEDIUM',\n IosMedium = 'IOS_MEDIUM',\n IosMLarge = 'IOS_M_LARGE',\n IosMMedium = 'IOS_M_MEDIUM',\n Legacy = 'LEGACY'\n}\n\nexport enum BuildStatus {\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE',\n New = 'NEW'\n}\n\nexport enum BuildTrigger {\n EasCli = 'EAS_CLI',\n GitBasedIntegration = 'GIT_BASED_INTEGRATION'\n}\n\nexport type BuildUpdatesInput = {\n channel?: InputMaybe<Scalars['String']>;\n};\n\nexport enum BuildWorkflow {\n Generic = 'GENERIC',\n Managed = 'MANAGED',\n Unknown = 'UNKNOWN'\n}\n\nexport type CodeSigningInfoInput = {\n alg: Scalars['String'];\n keyid: Scalars['String'];\n sig: Scalars['String'];\n};\n\nexport type CreateAccessTokenInput = {\n actorID: Scalars['ID'];\n note?: InputMaybe<Scalars['String']>;\n};\n\nexport type CreateAndroidSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: AndroidSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CreateEnvironmentSecretInput = {\n name: Scalars['String'];\n type?: InputMaybe<EnvironmentSecretType>;\n value: Scalars['String'];\n};\n\nexport type CreateGitHubAppInstallationInput = {\n accountId: Scalars['ID'];\n installationIdentifier: Scalars['Int'];\n};\n\nexport type CreateGitHubRepositoryInput = {\n appId: Scalars['ID'];\n githubAppInstallationId: Scalars['ID'];\n githubRepositoryIdentifier: Scalars['Int'];\n nodeIdentifier: Scalars['String'];\n};\n\nexport type CreateGitHubRepositorySettingsInput = {\n appId: Scalars['ID'];\n /** The base directory is the directory to change to before starting a build. This string should be a properly formatted POSIX path starting with '/', './', or the name of the directory relative to the root of the repository. Valid examples include: '/apps/expo-app', './apps/expo-app', and 'apps/expo-app'. This is intended for monorepos or apps that live in a subdirectory of a repository. */\n baseDirectory: Scalars['String'];\n};\n\nexport type CreateIosSubmissionInput = {\n appId: Scalars['ID'];\n archiveSource?: InputMaybe<SubmissionArchiveSourceInput>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n config: IosSubmissionConfigInput;\n submittedBuildId?: InputMaybe<Scalars['ID']>;\n};\n\nexport type CustomBuildConfigInput = {\n path: Scalars['String'];\n};\n\nexport enum DistributionType {\n Internal = 'INTERNAL',\n Simulator = 'SIMULATOR',\n Store = 'STORE'\n}\n\nexport enum EasBuildDeprecationInfoType {\n Internal = 'INTERNAL',\n UserFacing = 'USER_FACING'\n}\n\nexport enum EasService {\n Builds = 'BUILDS',\n Updates = 'UPDATES'\n}\n\nexport enum EasServiceMetric {\n AssetsRequests = 'ASSETS_REQUESTS',\n BandwidthUsage = 'BANDWIDTH_USAGE',\n Builds = 'BUILDS',\n ManifestRequests = 'MANIFEST_REQUESTS',\n UniqueUpdaters = 'UNIQUE_UPDATERS',\n UniqueUsers = 'UNIQUE_USERS'\n}\n\nexport enum EasTotalPlanEnablementUnit {\n Build = 'BUILD',\n Byte = 'BYTE',\n Concurrency = 'CONCURRENCY',\n Request = 'REQUEST',\n Updater = 'UPDATER',\n User = 'USER'\n}\n\nexport type EditUpdateBranchInput = {\n appId?: InputMaybe<Scalars['ID']>;\n id?: InputMaybe<Scalars['ID']>;\n name?: InputMaybe<Scalars['String']>;\n newName: Scalars['String'];\n};\n\nexport enum EnvironmentSecretType {\n FileBase64 = 'FILE_BASE64',\n String = 'STRING'\n}\n\nexport enum Feature {\n /** Priority Builds */\n Builds = 'BUILDS',\n /** Funds support for open source development */\n OpenSource = 'OPEN_SOURCE',\n /** Top Tier Support */\n Support = 'SUPPORT',\n /** Share access to projects */\n Teams = 'TEAMS'\n}\n\nexport enum GitHubAppEnvironment {\n Development = 'DEVELOPMENT',\n Production = 'PRODUCTION',\n Staging = 'STAGING'\n}\n\nexport enum GitHubAppInstallationStatus {\n Active = 'ACTIVE',\n NotInstalled = 'NOT_INSTALLED',\n Suspended = 'SUSPENDED'\n}\n\nexport type GitHubBuildInput = {\n appId: Scalars['ID'];\n baseDirectory?: InputMaybe<Scalars['String']>;\n buildProfile: Scalars['String'];\n gitRef: Scalars['String'];\n platform: AppPlatform;\n};\n\nexport type GoogleServiceAccountKeyInput = {\n jsonKey: Scalars['JSONObject'];\n};\n\nexport enum InvoiceDiscountType {\n Amount = 'AMOUNT',\n Percentage = 'PERCENTAGE'\n}\n\nexport type IosAppBuildCredentialsFilter = {\n iosDistributionType?: InputMaybe<IosDistributionType>;\n};\n\nexport type IosAppBuildCredentialsInput = {\n distributionCertificateId: Scalars['ID'];\n iosDistributionType: IosDistributionType;\n provisioningProfileId: Scalars['ID'];\n};\n\nexport type IosAppCredentialsFilter = {\n appleAppIdentifierId?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosAppCredentialsInput = {\n appStoreConnectApiKeyForSubmissionsId?: InputMaybe<Scalars['ID']>;\n appleTeamId?: InputMaybe<Scalars['ID']>;\n pushKeyId?: InputMaybe<Scalars['ID']>;\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport type IosBuilderEnvironmentInput = {\n bundler?: InputMaybe<Scalars['String']>;\n cocoapods?: InputMaybe<Scalars['String']>;\n env?: InputMaybe<Scalars['JSONObject']>;\n expoCli?: InputMaybe<Scalars['String']>;\n fastlane?: InputMaybe<Scalars['String']>;\n image?: InputMaybe<Scalars['String']>;\n node?: InputMaybe<Scalars['String']>;\n yarn?: InputMaybe<Scalars['String']>;\n};\n\nexport enum IosDistributionType {\n AdHoc = 'AD_HOC',\n AppStore = 'APP_STORE',\n Development = 'DEVELOPMENT',\n Enterprise = 'ENTERPRISE'\n}\n\nexport type IosJobDistributionCertificateInput = {\n dataBase64: Scalars['String'];\n password: Scalars['String'];\n};\n\nexport type IosJobInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n customBuildConfig?: InputMaybe<CustomBuildConfigInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n projectArchive: ProjectArchiveSourceInput;\n projectRootDirectory: Scalars['String'];\n releaseChannel?: InputMaybe<Scalars['String']>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n triggeredBy?: InputMaybe<BuildTrigger>;\n type: BuildWorkflow;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobOverridesInput = {\n applicationArchivePath?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n artifactPath?: InputMaybe<Scalars['String']>;\n buildArtifactPaths?: InputMaybe<Array<Scalars['String']>>;\n buildConfiguration?: InputMaybe<Scalars['String']>;\n buildProfile?: InputMaybe<Scalars['String']>;\n /** @deprecated */\n buildType?: InputMaybe<IosBuildType>;\n builderEnvironment?: InputMaybe<IosBuilderEnvironmentInput>;\n cache?: InputMaybe<BuildCacheInput>;\n developmentClient?: InputMaybe<Scalars['Boolean']>;\n /** @deprecated */\n distribution?: InputMaybe<DistributionType>;\n experimental?: InputMaybe<Scalars['JSONObject']>;\n mode?: InputMaybe<BuildMode>;\n releaseChannel?: InputMaybe<Scalars['String']>;\n resign?: InputMaybe<BuildResignInput>;\n scheme?: InputMaybe<Scalars['String']>;\n secrets?: InputMaybe<IosJobSecretsInput>;\n simulator?: InputMaybe<Scalars['Boolean']>;\n type?: InputMaybe<BuildWorkflow>;\n updates?: InputMaybe<BuildUpdatesInput>;\n username?: InputMaybe<Scalars['String']>;\n version?: InputMaybe<IosJobVersionInput>;\n};\n\nexport type IosJobSecretsInput = {\n buildCredentials?: InputMaybe<Array<InputMaybe<IosJobTargetCredentialsInput>>>;\n robotAccessToken?: InputMaybe<Scalars['String']>;\n};\n\nexport type IosJobTargetCredentialsInput = {\n distributionCertificate: IosJobDistributionCertificateInput;\n provisioningProfileBase64: Scalars['String'];\n targetName: Scalars['String'];\n};\n\nexport type IosJobVersionInput = {\n buildNumber: Scalars['String'];\n};\n\n/** @deprecated Use developmentClient option instead. */\nexport enum IosManagedBuildType {\n DevelopmentClient = 'DEVELOPMENT_CLIENT',\n Release = 'RELEASE'\n}\n\nexport enum IosSchemeBuildConfiguration {\n Debug = 'DEBUG',\n Release = 'RELEASE'\n}\n\nexport type IosSubmissionConfigInput = {\n appleAppSpecificPassword?: InputMaybe<Scalars['String']>;\n appleIdUsername?: InputMaybe<Scalars['String']>;\n archiveUrl?: InputMaybe<Scalars['String']>;\n ascApiKey?: InputMaybe<AscApiKeyInput>;\n ascApiKeyId?: InputMaybe<Scalars['String']>;\n ascAppIdentifier: Scalars['String'];\n};\n\nexport enum MailchimpAudience {\n ExpoDevelopers = 'EXPO_DEVELOPERS'\n}\n\nexport enum MailchimpTag {\n DevClientUsers = 'DEV_CLIENT_USERS',\n EasMasterList = 'EAS_MASTER_LIST'\n}\n\nexport enum NotificationEvent {\n BuildComplete = 'BUILD_COMPLETE',\n SubmissionComplete = 'SUBMISSION_COMPLETE'\n}\n\nexport type NotificationSubscriptionFilter = {\n accountId?: InputMaybe<Scalars['ID']>;\n appId?: InputMaybe<Scalars['ID']>;\n event?: InputMaybe<NotificationEvent>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport enum NotificationType {\n Email = 'EMAIL'\n}\n\nexport enum OfferType {\n /** Addon, or supplementary subscription */\n Addon = 'ADDON',\n /** Advanced Purchase of Paid Resource */\n Prepaid = 'PREPAID',\n /** Term subscription */\n Subscription = 'SUBSCRIPTION'\n}\n\nexport enum Order {\n Asc = 'ASC',\n Desc = 'DESC'\n}\n\nexport type PartialManifest = {\n assets: Array<InputMaybe<PartialManifestAsset>>;\n extra?: InputMaybe<Scalars['JSONObject']>;\n launchAsset: PartialManifestAsset;\n};\n\nexport type PartialManifestAsset = {\n bundleKey: Scalars['String'];\n contentType: Scalars['String'];\n fileExtension?: InputMaybe<Scalars['String']>;\n fileSHA256: Scalars['String'];\n storageKey: Scalars['String'];\n};\n\nexport enum Permission {\n Admin = 'ADMIN',\n Own = 'OWN',\n Publish = 'PUBLISH',\n View = 'VIEW'\n}\n\nexport type ProjectArchiveSourceInput = {\n bucketKey?: InputMaybe<Scalars['String']>;\n gitRef?: InputMaybe<Scalars['String']>;\n repositoryUrl?: InputMaybe<Scalars['String']>;\n type: ProjectArchiveSourceType;\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum ProjectArchiveSourceType {\n Gcs = 'GCS',\n Git = 'GIT',\n None = 'NONE',\n S3 = 'S3',\n Url = 'URL'\n}\n\nexport type PublishUpdateGroupInput = {\n awaitingCodeSigningInfo?: InputMaybe<Scalars['Boolean']>;\n branchId: Scalars['String'];\n excludedAssets?: InputMaybe<Array<PartialManifestAsset>>;\n gitCommitHash?: InputMaybe<Scalars['String']>;\n isGitWorkingTreeDirty?: InputMaybe<Scalars['Boolean']>;\n message?: InputMaybe<Scalars['String']>;\n rollBackToEmbeddedInfoGroup?: InputMaybe<UpdateRollBackToEmbeddedGroup>;\n runtimeVersion: Scalars['String'];\n updateInfoGroup?: InputMaybe<UpdateInfoGroup>;\n};\n\nexport type RobotDataInput = {\n name?: InputMaybe<Scalars['String']>;\n};\n\nexport enum Role {\n Admin = 'ADMIN',\n Custom = 'CUSTOM',\n Developer = 'DEVELOPER',\n HasAdmin = 'HAS_ADMIN',\n NotAdmin = 'NOT_ADMIN',\n Owner = 'OWNER',\n ViewOnly = 'VIEW_ONLY'\n}\n\nexport type SecondFactorDeviceConfiguration = {\n isPrimary: Scalars['Boolean'];\n method: SecondFactorMethod;\n name: Scalars['String'];\n smsPhoneNumber?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SecondFactorMethod {\n /** Google Authenticator (TOTP) */\n Authenticator = 'AUTHENTICATOR',\n /** SMS */\n Sms = 'SMS'\n}\n\nexport type ServerlessFunctionIdentifierInput = {\n gitCommitSHA1: Scalars['String'];\n};\n\nexport enum StandardOffer {\n /** $29 USD per month, 30 day trial */\n Default = 'DEFAULT',\n /** $800 USD per month */\n Support = 'SUPPORT',\n /** $29 USD per month, 1 year trial */\n YcDeals = 'YC_DEALS',\n /** $348 USD per year, 30 day trial */\n YearlySub = 'YEARLY_SUB'\n}\n\n/** Possible Incident impact values from Expo status page API. */\nexport enum StatuspageIncidentImpact {\n Critical = 'CRITICAL',\n Maintenance = 'MAINTENANCE',\n Major = 'MAJOR',\n Minor = 'MINOR',\n None = 'NONE'\n}\n\n/** Possible Incident statuses from Expo status page API. */\nexport enum StatuspageIncidentStatus {\n Completed = 'COMPLETED',\n Identified = 'IDENTIFIED',\n Investigating = 'INVESTIGATING',\n InProgress = 'IN_PROGRESS',\n Monitoring = 'MONITORING',\n Resolved = 'RESOLVED',\n Scheduled = 'SCHEDULED',\n Verifying = 'VERIFYING'\n}\n\n/** Name of a service monitored by Expo status page. */\nexport enum StatuspageServiceName {\n EasBuild = 'EAS_BUILD',\n EasSubmit = 'EAS_SUBMIT',\n EasUpdate = 'EAS_UPDATE'\n}\n\n/** Possible statuses for a service. */\nexport enum StatuspageServiceStatus {\n DegradedPerformance = 'DEGRADED_PERFORMANCE',\n MajorOutage = 'MAJOR_OUTAGE',\n Operational = 'OPERATIONAL',\n PartialOutage = 'PARTIAL_OUTAGE',\n UnderMaintenance = 'UNDER_MAINTENANCE'\n}\n\nexport enum SubmissionAndroidArchiveType {\n Aab = 'AAB',\n Apk = 'APK'\n}\n\nexport enum SubmissionAndroidReleaseStatus {\n Completed = 'COMPLETED',\n Draft = 'DRAFT',\n Halted = 'HALTED',\n InProgress = 'IN_PROGRESS'\n}\n\nexport enum SubmissionAndroidTrack {\n Alpha = 'ALPHA',\n Beta = 'BETA',\n Internal = 'INTERNAL',\n Production = 'PRODUCTION'\n}\n\nexport type SubmissionArchiveSourceInput = {\n /** Required if the archive source type is GCS_BUILD_APPLICATION_ARCHIVE or GCS_SUBMIT_ARCHIVE */\n bucketKey?: InputMaybe<Scalars['String']>;\n type: SubmissionArchiveSourceType;\n /** Required if the archive source type is URL */\n url?: InputMaybe<Scalars['String']>;\n};\n\nexport enum SubmissionArchiveSourceType {\n GcsBuildApplicationArchive = 'GCS_BUILD_APPLICATION_ARCHIVE',\n GcsSubmitArchive = 'GCS_SUBMIT_ARCHIVE',\n Url = 'URL'\n}\n\nexport type SubmissionFilter = {\n platform?: InputMaybe<AppPlatform>;\n status?: InputMaybe<SubmissionStatus>;\n};\n\nexport enum SubmissionStatus {\n AwaitingBuild = 'AWAITING_BUILD',\n Canceled = 'CANCELED',\n Errored = 'ERRORED',\n Finished = 'FINISHED',\n InProgress = 'IN_PROGRESS',\n InQueue = 'IN_QUEUE'\n}\n\nexport type TimelineActivityFilterInput = {\n channels?: InputMaybe<Array<Scalars['String']>>;\n platforms?: InputMaybe<Array<AppPlatform>>;\n releaseChannels?: InputMaybe<Array<Scalars['String']>>;\n types?: InputMaybe<Array<ActivityTimelineProjectActivityType>>;\n};\n\nexport type UpdateGitHubRepositorySettingsInput = {\n baseDirectory: Scalars['String'];\n};\n\nexport type UpdateInfoGroup = {\n android?: InputMaybe<PartialManifest>;\n ios?: InputMaybe<PartialManifest>;\n web?: InputMaybe<PartialManifest>;\n};\n\nexport type UpdateRollBackToEmbeddedGroup = {\n android?: InputMaybe<Scalars['Boolean']>;\n ios?: InputMaybe<Scalars['Boolean']>;\n web?: InputMaybe<Scalars['Boolean']>;\n};\n\nexport type UpdatesFilter = {\n platform?: InputMaybe<AppPlatform>;\n runtimeVersions?: InputMaybe<Array<Scalars['String']>>;\n};\n\nexport enum UploadSessionType {\n EasBuildGcsProjectSources = 'EAS_BUILD_GCS_PROJECT_SOURCES',\n EasBuildProjectSources = 'EAS_BUILD_PROJECT_SOURCES',\n EasSubmitAppArchive = 'EAS_SUBMIT_APP_ARCHIVE',\n EasSubmitGcsAppArchive = 'EAS_SUBMIT_GCS_APP_ARCHIVE'\n}\n\nexport enum UsageMetricType {\n Bandwidth = 'BANDWIDTH',\n Build = 'BUILD',\n Request = 'REQUEST',\n Update = 'UPDATE',\n User = 'USER'\n}\n\nexport enum UsageMetricsGranularity {\n Day = 'DAY',\n Hour = 'HOUR',\n Minute = 'MINUTE',\n Total = 'TOTAL'\n}\n\nexport type UsageMetricsTimespan = {\n end: Scalars['DateTime'];\n start: Scalars['DateTime'];\n};\n\nexport type UserDataInput = {\n appetizeCode?: InputMaybe<Scalars['String']>;\n email?: InputMaybe<Scalars['String']>;\n firstName?: InputMaybe<Scalars['String']>;\n fullName?: InputMaybe<Scalars['String']>;\n githubUsername?: InputMaybe<Scalars['String']>;\n id?: InputMaybe<Scalars['ID']>;\n industry?: InputMaybe<Scalars['String']>;\n lastName?: InputMaybe<Scalars['String']>;\n location?: InputMaybe<Scalars['String']>;\n profilePhoto?: InputMaybe<Scalars['String']>;\n twitterUsername?: InputMaybe<Scalars['String']>;\n username?: InputMaybe<Scalars['String']>;\n};\n\nexport type WebhookFilter = {\n event?: InputMaybe<WebhookType>;\n};\n\nexport type WebhookInput = {\n event: WebhookType;\n secret: Scalars['String'];\n url: Scalars['String'];\n};\n\nexport enum WebhookType {\n Build = 'BUILD',\n Submit = 'SUBMIT'\n}\n\nexport type AppByIdQueryVariables = Exact<{\n appId: Scalars['String'];\n}>;\n\n\nexport type AppByIdQuery = { __typename?: 'RootQuery', app: { __typename?: 'AppQuery', byId: { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } } } };\n\nexport type CurrentUserQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type CurrentUserQuery = { __typename?: 'RootQuery', meActor?: { __typename: 'Robot', firstName?: string | null, id: string, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'SSOUser', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | { __typename: 'User', username: string, id: string, primaryAccount: { __typename?: 'Account', id: string }, accounts: Array<{ __typename?: 'Account', id: string, users: Array<{ __typename?: 'UserPermission', permissions: Array<Permission>, actor: { __typename?: 'Robot', id: string } | { __typename?: 'SSOUser', id: string } | { __typename?: 'User', id: string } }> }> } | null };\n\nexport type AppFragment = { __typename?: 'App', id: string, scopeKey: string, ownerAccount: { __typename?: 'Account', id: string } };\n"],"names":["ActivityTimelineProjectActivityType","Build","BuildJob","Submission","Update","AndroidBuildType","Apk","AppBundle","DevelopmentClient","AndroidFcmVersion","Legacy","V1","AndroidKeystoreType","Jks","Pkcs12","Unknown","AppPlatform","Android","Ios","AppPrivacy","Hidden","Public","Unlisted","AppSort","RecentlyPublished","Viewed","AppStoreConnectUserRole","AccessToReports","AccountHolder","Admin","AppManager","CloudManagedAppDistribution","CloudManagedDeveloperId","CreateApps","CustomerSupport","Developer","Finance","ImageManager","Marketing","ReadOnly","Sales","Technical","AppleDeviceClass","Ipad","Iphone","AppsFilter","Featured","New","AssetMetadataStatus","DoesNotExist","Exists","AuthProtocolType","Oidc","BuildCredentialsSource","Local","Remote","BuildIosEnterpriseProvisioning","Adhoc","Universal","BuildJobLogsFormat","Json","Raw","BuildJobStatus","Errored","Finished","InProgress","Pending","SentToQueue","Started","BuildMode","Custom","Resign","BuildPriority","High","Normal","NormalPlus","BuildResourceClass","AndroidDefault","AndroidLarge","AndroidMedium","IosDefault","IosIntelLarge","IosIntelMedium","IosLarge","IosM1Large","IosM1Medium","IosMedium","IosMLarge","IosMMedium","BuildStatus","Canceled","InQueue","BuildTrigger","EasCli","GitBasedIntegration","BuildWorkflow","Generic","Managed","DistributionType","Internal","Simulator","Store","EasBuildDeprecationInfoType","UserFacing","EasService","Builds","Updates","EasServiceMetric","AssetsRequests","BandwidthUsage","ManifestRequests","UniqueUpdaters","UniqueUsers","EasTotalPlanEnablementUnit","Byte","Concurrency","Request","Updater","User","EnvironmentSecretType","FileBase64","String","Feature","OpenSource","Support","Teams","GitHubAppEnvironment","Development","Production","Staging","GitHubAppInstallationStatus","Active","NotInstalled","Suspended","InvoiceDiscountType","Amount","Percentage","IosBuildType","Release","IosDistributionType","AdHoc","AppStore","Enterprise","IosManagedBuildType","IosSchemeBuildConfiguration","Debug","MailchimpAudience","ExpoDevelopers","MailchimpTag","DevClientUsers","EasMasterList","NotificationEvent","BuildComplete","SubmissionComplete","NotificationType","Email","OfferType","Addon","Prepaid","Subscription","Order","Asc","Desc","Permission","Own","Publish","View","ProjectArchiveSourceType","Gcs","Git","None","S3","Url","Role","HasAdmin","NotAdmin","Owner","ViewOnly","SecondFactorMethod","Authenticator","Sms","StandardOffer","Default","YcDeals","YearlySub","StatuspageIncidentImpact","Critical","Maintenance","Major","Minor","StatuspageIncidentStatus","Completed","Identified","Investigating","Monitoring","Resolved","Scheduled","Verifying","StatuspageServiceName","EasBuild","EasSubmit","EasUpdate","StatuspageServiceStatus","DegradedPerformance","MajorOutage","Operational","PartialOutage","UnderMaintenance","SubmissionAndroidArchiveType","Aab","SubmissionAndroidReleaseStatus","Draft","Halted","SubmissionAndroidTrack","Alpha","Beta","SubmissionArchiveSourceType","GcsBuildApplicationArchive","GcsSubmitArchive","SubmissionStatus","AwaitingBuild","UploadSessionType","EasBuildGcsProjectSources","EasBuildProjectSources","EasSubmitAppArchive","EasSubmitGcsAppArchive","UsageMetricType","Bandwidth","UsageMetricsGranularity","Day","Hour","Minute","Total","WebhookType","Submit"],"mappings":"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"}
|
|
@@ -12,6 +12,7 @@ var Log = _interopRequireWildcard(require("../log"));
|
|
|
12
12
|
var _getVersionedPackages = require("../start/doctor/dependencies/getVersionedPackages");
|
|
13
13
|
var _array = require("../utils/array");
|
|
14
14
|
var _findUp = require("../utils/findUp");
|
|
15
|
+
var _nodeEnv = require("../utils/nodeEnv");
|
|
15
16
|
var _checkPackages = require("./checkPackages");
|
|
16
17
|
function _interopRequireDefault(obj) {
|
|
17
18
|
return obj && obj.__esModule ? obj : {
|
|
@@ -40,10 +41,12 @@ function _interopRequireWildcard(obj) {
|
|
|
40
41
|
}
|
|
41
42
|
}
|
|
42
43
|
async function installAsync(packages, options, packageManagerArguments = []) {
|
|
44
|
+
(0, _nodeEnv).setNodeEnv("development");
|
|
43
45
|
var _projectRoot;
|
|
44
46
|
// Locate the project root based on the process current working directory.
|
|
45
47
|
// This enables users to run `npx expo install` from a subdirectory of the project.
|
|
46
48
|
const projectRoot = (_projectRoot = options.projectRoot) != null ? _projectRoot : (0, _findUp).findUpProjectRootOrAssert(process.cwd());
|
|
49
|
+
require("@expo/env").load(projectRoot);
|
|
47
50
|
// Resolve the package manager used by the project, or based on the provided arguments.
|
|
48
51
|
const packageManager = PackageManager.createForProject(projectRoot, {
|
|
49
52
|
npm: options.npm,
|