eas-cli 0.33.0 → 0.35.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 +27 -27
- package/build/analytics.js +3 -9
- package/build/api.js +3 -3
- package/build/build/android/UpdatesModule.js +4 -15
- package/build/build/android/configure.js +2 -2
- package/build/build/android/graphql.js +2 -4
- package/build/build/android/prepareJob.js +4 -3
- package/build/build/build.js +2 -2
- package/build/build/configure.js +14 -7
- package/build/build/ios/UpdatesModule.js +6 -18
- package/build/build/ios/graphql.js +2 -23
- package/build/build/ios/prepareJob.js +4 -6
- package/build/build/metadata.js +5 -10
- package/build/build/utils/devClient.js +8 -5
- package/build/build/utils/formatBuild.js +1 -9
- package/build/build/utils/repository.js +10 -7
- package/build/build/utils/url.js +1 -1
- package/build/build/validate.js +4 -4
- package/build/commandUtils/EasCommand.d.ts +1 -0
- package/build/commandUtils/EasCommand.js +21 -0
- package/build/commands/branch/create.js +3 -2
- package/build/commands/branch/delete.js +1 -1
- package/build/commands/branch/list.js +1 -1
- package/build/commands/branch/publish.js +20 -48
- package/build/commands/branch/view.js +1 -1
- package/build/commands/build/index.js +43 -24
- package/build/commands/channel/edit.js +1 -1
- package/build/commands/channel/list.js +1 -1
- package/build/commands/channel/view.js +1 -1
- package/build/commands/diagnostics.js +2 -2
- package/build/commands/project/info.js +1 -1
- package/build/commands/secret/delete.js +1 -1
- package/build/commands/update/view.js +1 -1
- package/build/credentials/android/AndroidCredentialsProvider.js +2 -2
- package/build/credentials/android/actions/{SetupBuildCredentials.d.ts → SetUpBuildCredentials.d.ts} +1 -1
- package/build/credentials/android/actions/{SetupBuildCredentials.js → SetUpBuildCredentials.js} +3 -3
- package/build/credentials/android/actions/{SetupBuildCredentialsFromCredentialsJson.d.ts → SetUpBuildCredentialsFromCredentialsJson.d.ts} +1 -1
- package/build/credentials/android/actions/{SetupBuildCredentialsFromCredentialsJson.js → SetUpBuildCredentialsFromCredentialsJson.js} +3 -3
- package/build/credentials/android/actions/{SetupGoogleServiceAccountKey.d.ts → SetUpGoogleServiceAccountKey.d.ts} +1 -1
- package/build/credentials/android/actions/{SetupGoogleServiceAccountKey.js → SetUpGoogleServiceAccountKey.js} +3 -3
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.js +2 -0
- package/build/credentials/credentialsJson/update.js +5 -4
- package/build/credentials/errors.d.ts +4 -0
- package/build/credentials/errors.js +8 -1
- package/build/credentials/ios/IosCredentialsProvider.js +4 -4
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +17 -1
- package/build/credentials/ios/actions/AscApiKeyUtils.js +156 -23
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +9 -0
- package/build/credentials/ios/actions/AssignAscApiKey.js +29 -0
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +9 -0
- package/build/credentials/ios/actions/CreateAscApiKey.js +21 -0
- package/build/credentials/ios/actions/CreateDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/CreatePushKey.js +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.d.ts +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +6 -8
- package/build/credentials/ios/actions/PushKeyUtils.d.ts +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +6 -6
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +14 -0
- package/build/credentials/ios/actions/RemoveAscApiKey.js +55 -0
- package/build/credentials/ios/actions/{SetupAdhocProvisioningProfile.d.ts → SetUpAdhocProvisioningProfile.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupAdhocProvisioningProfile.js → SetUpAdhocProvisioningProfile.js} +5 -5
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +21 -0
- package/build/credentials/ios/actions/SetUpAscApiKey.js +114 -0
- package/build/credentials/ios/actions/{SetupBuildCredentials.d.ts → SetUpBuildCredentials.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupBuildCredentials.js → SetUpBuildCredentials.js} +5 -5
- package/build/credentials/ios/actions/{SetupBuildCredentialsFromCredentialsJson.d.ts → SetUpBuildCredentialsFromCredentialsJson.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupBuildCredentialsFromCredentialsJson.js → SetUpBuildCredentialsFromCredentialsJson.js} +5 -5
- package/build/credentials/ios/actions/{SetupDistributionCertificate.d.ts → SetUpDistributionCertificate.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupDistributionCertificate.js → SetUpDistributionCertificate.js} +3 -3
- package/build/credentials/ios/actions/{SetupInternalProvisioningProfile.d.ts → SetUpInternalProvisioningProfile.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupInternalProvisioningProfile.js → SetUpInternalProvisioningProfile.js} +7 -7
- package/build/credentials/ios/actions/{SetupProvisioningProfile.d.ts → SetUpProvisioningProfile.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupProvisioningProfile.js → SetUpProvisioningProfile.js} +5 -5
- package/build/credentials/ios/actions/{SetupPushKey.d.ts → SetUpPushKey.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupPushKey.js → SetUpPushKey.js} +3 -3
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.d.ts +10 -0
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.js +53 -0
- package/build/credentials/ios/actions/{SetupTargetBuildCredentials.d.ts → SetUpTargetBuildCredentials.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupTargetBuildCredentials.js → SetUpTargetBuildCredentials.js} +10 -10
- package/build/credentials/ios/actions/{SetupTargetBuildCredentialsFromCredentialsJson.d.ts → SetUpTargetBuildCredentialsFromCredentialsJson.d.ts} +1 -1
- package/build/credentials/ios/actions/{SetupTargetBuildCredentialsFromCredentialsJson.js → SetUpTargetBuildCredentialsFromCredentialsJson.js} +3 -3
- package/build/credentials/ios/api/GraphqlClient.d.ts +8 -2
- package/build/credentials/ios/api/GraphqlClient.js +74 -2
- package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.d.ts +5 -0
- package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.js +54 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.d.ts +1 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.js +25 -0
- package/build/credentials/ios/api/graphql/queries/AppQuery.js +3 -1
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +4 -0
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.js +33 -0
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +6 -2
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.js +7 -1
- package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.js +5 -1
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.js +2 -0
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +5 -1
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +1 -1
- package/build/credentials/ios/appstore/Credentials.types.d.ts +1 -0
- package/build/credentials/ios/appstore/ascApiKey.d.ts +1 -1
- package/build/credentials/ios/appstore/ascApiKey.js +22 -12
- package/build/credentials/ios/credentials.d.ts +2 -1
- package/build/credentials/ios/credentials.js +8 -3
- package/build/credentials/ios/utils/printCredentials.js +30 -1
- package/build/credentials/ios/validators/validateAscApiKey.d.ts +5 -0
- package/build/credentials/ios/validators/validateAscApiKey.js +21 -0
- package/build/credentials/manager/Actions.d.ts +52 -0
- package/build/credentials/manager/Actions.js +53 -0
- package/build/credentials/manager/AndroidActions.d.ts +6 -0
- package/build/credentials/manager/AndroidActions.js +114 -0
- package/build/credentials/manager/IosActions.d.ts +7 -0
- package/build/credentials/manager/IosActions.js +145 -0
- package/build/credentials/manager/ManageAndroid.d.ts +1 -29
- package/build/credentials/manager/ManageAndroid.js +30 -163
- package/build/credentials/manager/ManageIos.d.ts +1 -29
- package/build/credentials/manager/ManageIos.js +78 -166
- package/build/credentials/utils/promptForCredentials.d.ts +2 -1
- package/build/credentials/utils/promptForCredentials.js +3 -2
- package/build/graphql/client.d.ts +8 -2
- package/build/graphql/client.js +1 -1
- package/build/graphql/generated.d.ts +170 -33
- package/build/graphql/generated.js +23 -1
- package/build/graphql/queries/BuildQuery.js +4 -1
- package/build/graphql/queries/EnvironmentSecretsQuery.js +4 -2
- package/build/graphql/queries/ProjectQuery.js +3 -1
- package/build/graphql/queries/PublishQuery.js +4 -1
- package/build/graphql/queries/SubmissionQuery.js +5 -2
- package/build/graphql/queries/UserQuery.js +4 -1
- package/build/graphql/queries/WebhookQuery.js +6 -2
- package/build/graphql/types/Build.js +1 -6
- package/build/graphql/types/credentials/AppStoreConnectApiKey.d.ts +1 -0
- package/build/graphql/types/credentials/AppStoreConnectApiKey.js +23 -0
- package/build/graphql/types/credentials/IosAppCredentials.js +6 -0
- package/build/log.d.ts +0 -2
- package/build/log.js +2 -12
- package/build/project/projectUtils.js +1 -1
- package/build/project/publish.js +2 -2
- package/build/project/workflow.js +2 -2
- package/build/submit/ArchiveSource.js +6 -5
- package/build/submit/android/ServiceAccountSource.js +2 -2
- package/build/submit/ios/AppSpecificPasswordSource.d.ts +2 -6
- package/build/submit/ios/AppSpecificPasswordSource.js +0 -18
- package/build/submit/ios/AscApiKeySource.d.ts +9 -3
- package/build/submit/ios/AscApiKeySource.js +10 -10
- package/build/submit/ios/CredentialsServiceSource.d.ts +14 -0
- package/build/submit/ios/CredentialsServiceSource.js +46 -0
- package/build/submit/ios/IosSubmitCommand.js +22 -14
- package/build/submit/ios/IosSubmitter.d.ts +3 -0
- package/build/submit/ios/IosSubmitter.js +30 -20
- package/build/submit/utils/errors.js +2 -0
- package/build/user/User.js +1 -0
- package/build/utils/easCli.d.ts +1 -0
- package/build/utils/easCli.js +5 -0
- package/build/utils/{expoCommand.d.ts → expoCli.d.ts} +0 -0
- package/build/utils/{expoCommand.js → expoCli.js} +0 -0
- package/build/utils/profiles.js +9 -2
- package/build/vcs/clients/git.d.ts +26 -0
- package/build/vcs/clients/git.js +184 -0
- package/build/vcs/clients/gitNoCommit.d.ts +7 -0
- package/build/vcs/clients/gitNoCommit.js +27 -0
- package/build/vcs/clients/noVcs.d.ts +6 -0
- package/build/vcs/clients/noVcs.js +19 -0
- package/build/vcs/git.d.ts +10 -17
- package/build/vcs/git.js +7 -175
- package/build/vcs/index.d.ts +2 -2
- package/build/vcs/index.js +15 -6
- package/build/vcs/local.d.ts +18 -5
- package/build/vcs/local.js +61 -32
- package/build/vcs/vcs.d.ts +2 -1
- package/build/vcs/vcs.js +8 -4
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
|
@@ -20,154 +20,21 @@ const DownloadKeystore_1 = require("../android/actions/DownloadKeystore");
|
|
|
20
20
|
const RemoveFcm_1 = require("../android/actions/RemoveFcm");
|
|
21
21
|
const RemoveGoogleServiceAccountKey_1 = require("../android/actions/RemoveGoogleServiceAccountKey");
|
|
22
22
|
const RemoveKeystore_1 = require("../android/actions/RemoveKeystore");
|
|
23
|
-
const
|
|
24
|
-
const
|
|
23
|
+
const SetUpBuildCredentialsFromCredentialsJson_1 = require("../android/actions/SetUpBuildCredentialsFromCredentialsJson");
|
|
24
|
+
const SetUpGoogleServiceAccountKey_1 = require("../android/actions/SetUpGoogleServiceAccountKey");
|
|
25
25
|
const UpdateCredentialsJson_1 = require("../android/actions/UpdateCredentialsJson");
|
|
26
26
|
const UseExistingGoogleServiceAccountKey_1 = require("../android/actions/UseExistingGoogleServiceAccountKey");
|
|
27
27
|
const printCredentials_1 = require("../android/utils/printCredentials");
|
|
28
|
+
const Actions_1 = require("./Actions");
|
|
29
|
+
const AndroidActions_1 = require("./AndroidActions");
|
|
28
30
|
const HelperActions_1 = require("./HelperActions");
|
|
29
31
|
const SelectAndroidBuildCredentials_1 = require("./SelectAndroidBuildCredentials");
|
|
30
32
|
const SelectBuildProfileFromEasJson_1 = require("./SelectBuildProfileFromEasJson");
|
|
31
|
-
var ActionType;
|
|
32
|
-
(function (ActionType) {
|
|
33
|
-
ActionType[ActionType["ManageBuildCredentials"] = 0] = "ManageBuildCredentials";
|
|
34
|
-
ActionType[ActionType["ManageFcm"] = 1] = "ManageFcm";
|
|
35
|
-
ActionType[ActionType["ManageGoogleServiceAccountKey"] = 2] = "ManageGoogleServiceAccountKey";
|
|
36
|
-
ActionType[ActionType["ManageCredentialsJson"] = 3] = "ManageCredentialsJson";
|
|
37
|
-
ActionType[ActionType["GoBackToCaller"] = 4] = "GoBackToCaller";
|
|
38
|
-
ActionType[ActionType["GoBackToHighLevelActions"] = 5] = "GoBackToHighLevelActions";
|
|
39
|
-
ActionType[ActionType["CreateKeystore"] = 6] = "CreateKeystore";
|
|
40
|
-
ActionType[ActionType["DownloadKeystore"] = 7] = "DownloadKeystore";
|
|
41
|
-
ActionType[ActionType["RemoveKeystore"] = 8] = "RemoveKeystore";
|
|
42
|
-
ActionType[ActionType["CreateFcm"] = 9] = "CreateFcm";
|
|
43
|
-
ActionType[ActionType["RemoveFcm"] = 10] = "RemoveFcm";
|
|
44
|
-
ActionType[ActionType["CreateGsaKey"] = 11] = "CreateGsaKey";
|
|
45
|
-
ActionType[ActionType["UseExistingGsaKey"] = 12] = "UseExistingGsaKey";
|
|
46
|
-
ActionType[ActionType["RemoveGsaKey"] = 13] = "RemoveGsaKey";
|
|
47
|
-
ActionType[ActionType["SetupGsaKey"] = 14] = "SetupGsaKey";
|
|
48
|
-
ActionType[ActionType["UpdateCredentialsJson"] = 15] = "UpdateCredentialsJson";
|
|
49
|
-
ActionType[ActionType["SetupBuildCredentialsFromCredentialsJson"] = 16] = "SetupBuildCredentialsFromCredentialsJson";
|
|
50
|
-
})(ActionType || (ActionType = {}));
|
|
51
|
-
var Scope;
|
|
52
|
-
(function (Scope) {
|
|
53
|
-
Scope[Scope["Project"] = 0] = "Project";
|
|
54
|
-
Scope[Scope["Manager"] = 1] = "Manager";
|
|
55
|
-
})(Scope || (Scope = {}));
|
|
56
|
-
const highLevelActions = [
|
|
57
|
-
{
|
|
58
|
-
value: ActionType.ManageBuildCredentials,
|
|
59
|
-
title: 'Keystore: Manage everything needed to build your project',
|
|
60
|
-
scope: Scope.Manager,
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
value: ActionType.ManageFcm,
|
|
64
|
-
title: 'Push Notifications: Manage your FCM Api Key',
|
|
65
|
-
scope: Scope.Manager,
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
value: ActionType.ManageGoogleServiceAccountKey,
|
|
69
|
-
title: 'Google Service Account: Manage your Service Account Key',
|
|
70
|
-
scope: Scope.Manager,
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
value: ActionType.ManageCredentialsJson,
|
|
74
|
-
title: 'credentials.json: Upload/Download credentials between EAS servers and your local json ',
|
|
75
|
-
scope: Scope.Manager,
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
value: ActionType.GoBackToCaller,
|
|
79
|
-
title: 'Go back',
|
|
80
|
-
scope: Scope.Manager,
|
|
81
|
-
},
|
|
82
|
-
];
|
|
83
|
-
const credentialsJsonActions = [
|
|
84
|
-
{
|
|
85
|
-
value: ActionType.UpdateCredentialsJson,
|
|
86
|
-
title: 'Download credentials from EAS to credentials.json',
|
|
87
|
-
scope: Scope.Project,
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
value: ActionType.SetupBuildCredentialsFromCredentialsJson,
|
|
91
|
-
title: 'Upload credentials from credentials.json to EAS',
|
|
92
|
-
scope: Scope.Project,
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
value: ActionType.GoBackToHighLevelActions,
|
|
96
|
-
title: 'Go back',
|
|
97
|
-
scope: Scope.Manager,
|
|
98
|
-
},
|
|
99
|
-
];
|
|
100
|
-
const buildCredentialsActions = [
|
|
101
|
-
{
|
|
102
|
-
value: ActionType.CreateKeystore,
|
|
103
|
-
title: 'Set up a new keystore',
|
|
104
|
-
scope: Scope.Project,
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
value: ActionType.DownloadKeystore,
|
|
108
|
-
title: 'Download existing keystore',
|
|
109
|
-
scope: Scope.Project,
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
value: ActionType.RemoveKeystore,
|
|
113
|
-
title: 'Delete your keystore',
|
|
114
|
-
scope: Scope.Project,
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
value: ActionType.GoBackToHighLevelActions,
|
|
118
|
-
title: 'Go back',
|
|
119
|
-
scope: Scope.Manager,
|
|
120
|
-
},
|
|
121
|
-
];
|
|
122
|
-
const fcmActions = [
|
|
123
|
-
{
|
|
124
|
-
value: ActionType.CreateFcm,
|
|
125
|
-
title: 'Upload an FCM Api Key',
|
|
126
|
-
scope: Scope.Project,
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
value: ActionType.RemoveFcm,
|
|
130
|
-
title: 'Delete your FCM Api Key',
|
|
131
|
-
scope: Scope.Project,
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
value: ActionType.GoBackToHighLevelActions,
|
|
135
|
-
title: 'Go back',
|
|
136
|
-
scope: Scope.Manager,
|
|
137
|
-
},
|
|
138
|
-
];
|
|
139
|
-
const gsaKeyActions = [
|
|
140
|
-
{
|
|
141
|
-
value: ActionType.SetupGsaKey,
|
|
142
|
-
title: 'Setup a Google Service Account Key',
|
|
143
|
-
scope: Scope.Project,
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
value: ActionType.CreateGsaKey,
|
|
147
|
-
title: 'Upload a Google Service Account Key',
|
|
148
|
-
scope: Scope.Project,
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
value: ActionType.UseExistingGsaKey,
|
|
152
|
-
title: 'Use an existing Google Service Account Key',
|
|
153
|
-
scope: Scope.Project,
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
value: ActionType.RemoveGsaKey,
|
|
157
|
-
title: 'Delete a Google Service Account Key',
|
|
158
|
-
scope: Scope.Project,
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
value: ActionType.GoBackToHighLevelActions,
|
|
162
|
-
title: 'Go back',
|
|
163
|
-
scope: Scope.Manager,
|
|
164
|
-
},
|
|
165
|
-
];
|
|
166
33
|
class ManageAndroid {
|
|
167
34
|
constructor(callingAction) {
|
|
168
35
|
this.callingAction = callingAction;
|
|
169
36
|
}
|
|
170
|
-
async runAsync(ctx, currentActions = highLevelActions) {
|
|
37
|
+
async runAsync(ctx, currentActions = AndroidActions_1.highLevelActions) {
|
|
171
38
|
const accountName = ctx.hasProjectContext
|
|
172
39
|
? (0, projectUtils_1.getProjectAccountName)(ctx.exp, ctx.user)
|
|
173
40
|
: (0, actions_1.ensureActorHasUsername)(ctx.user);
|
|
@@ -210,28 +77,28 @@ class ManageAndroid {
|
|
|
210
77
|
if (!actionInfo) {
|
|
211
78
|
throw new Error('Action not supported yet');
|
|
212
79
|
}
|
|
213
|
-
if (actionInfo.scope === Scope.Manager) {
|
|
214
|
-
if (chosenAction ===
|
|
215
|
-
currentActions = buildCredentialsActions;
|
|
80
|
+
if (actionInfo.scope === Actions_1.Scope.Manager) {
|
|
81
|
+
if (chosenAction === Actions_1.AndroidActionType.ManageBuildCredentials) {
|
|
82
|
+
currentActions = AndroidActions_1.buildCredentialsActions;
|
|
216
83
|
continue;
|
|
217
84
|
}
|
|
218
|
-
else if (chosenAction ===
|
|
219
|
-
currentActions = fcmActions;
|
|
85
|
+
else if (chosenAction === Actions_1.AndroidActionType.ManageFcm) {
|
|
86
|
+
currentActions = AndroidActions_1.fcmActions;
|
|
220
87
|
continue;
|
|
221
88
|
}
|
|
222
|
-
else if (chosenAction ===
|
|
223
|
-
currentActions = gsaKeyActions;
|
|
89
|
+
else if (chosenAction === Actions_1.AndroidActionType.ManageGoogleServiceAccountKey) {
|
|
90
|
+
currentActions = AndroidActions_1.gsaKeyActions;
|
|
224
91
|
continue;
|
|
225
92
|
}
|
|
226
|
-
else if (chosenAction ===
|
|
227
|
-
currentActions = credentialsJsonActions;
|
|
93
|
+
else if (chosenAction === Actions_1.AndroidActionType.ManageCredentialsJson) {
|
|
94
|
+
currentActions = AndroidActions_1.credentialsJsonActions;
|
|
228
95
|
continue;
|
|
229
96
|
}
|
|
230
|
-
else if (chosenAction ===
|
|
231
|
-
currentActions = highLevelActions;
|
|
97
|
+
else if (chosenAction === Actions_1.AndroidActionType.GoBackToHighLevelActions) {
|
|
98
|
+
currentActions = AndroidActions_1.highLevelActions;
|
|
232
99
|
continue;
|
|
233
100
|
}
|
|
234
|
-
else if (chosenAction ===
|
|
101
|
+
else if (chosenAction === Actions_1.AndroidActionType.GoBackToCaller) {
|
|
235
102
|
return await this.callingAction.runAsync(ctx);
|
|
236
103
|
}
|
|
237
104
|
}
|
|
@@ -265,7 +132,7 @@ class ManageAndroid {
|
|
|
265
132
|
async runProjectSpecificActionAsync(ctx, action, gradleContext) {
|
|
266
133
|
(0, assert_1.default)(ctx.hasProjectContext, 'You must be in your project directory in order to perform this action');
|
|
267
134
|
const appLookupParams = await (0, BuildCredentialsUtils_1.getAppLookupParamsFromContextAsync)(ctx, gradleContext);
|
|
268
|
-
if (action ===
|
|
135
|
+
if (action === Actions_1.AndroidActionType.CreateKeystore) {
|
|
269
136
|
const selectBuildCredentialsResult = await new SelectAndroidBuildCredentials_1.SelectAndroidBuildCredentials(appLookupParams).runAsync(ctx);
|
|
270
137
|
const keystore = await new CreateKeystore_1.CreateKeystore(appLookupParams.account).runAsync(ctx);
|
|
271
138
|
if (selectBuildCredentialsResult.resultType ===
|
|
@@ -281,49 +148,49 @@ class ManageAndroid {
|
|
|
281
148
|
});
|
|
282
149
|
}
|
|
283
150
|
}
|
|
284
|
-
else if (action ===
|
|
151
|
+
else if (action === Actions_1.AndroidActionType.DownloadKeystore) {
|
|
285
152
|
const buildCredentials = await new SelectAndroidBuildCredentials_1.SelectExistingAndroidBuildCredentials(appLookupParams).runAsync(ctx);
|
|
286
153
|
if (buildCredentials) {
|
|
287
154
|
await new DownloadKeystore_1.DownloadKeystore({ app: appLookupParams }).runAsync(ctx, buildCredentials);
|
|
288
155
|
}
|
|
289
156
|
}
|
|
290
|
-
else if (action ===
|
|
157
|
+
else if (action === Actions_1.AndroidActionType.RemoveKeystore) {
|
|
291
158
|
const buildCredentials = await new SelectAndroidBuildCredentials_1.SelectExistingAndroidBuildCredentials(appLookupParams).runAsync(ctx);
|
|
292
159
|
if (buildCredentials) {
|
|
293
160
|
await new RemoveKeystore_1.RemoveKeystore(appLookupParams).runAsync(ctx, buildCredentials);
|
|
294
161
|
}
|
|
295
162
|
}
|
|
296
|
-
else if (action ===
|
|
163
|
+
else if (action === Actions_1.AndroidActionType.CreateFcm) {
|
|
297
164
|
const fcm = await new CreateFcm_1.CreateFcm(appLookupParams.account).runAsync(ctx);
|
|
298
165
|
await new AssignFcm_1.AssignFcm(appLookupParams).runAsync(ctx, fcm);
|
|
299
166
|
}
|
|
300
|
-
else if (action ===
|
|
167
|
+
else if (action === Actions_1.AndroidActionType.RemoveFcm) {
|
|
301
168
|
await new RemoveFcm_1.RemoveFcm(appLookupParams).runAsync(ctx);
|
|
302
169
|
}
|
|
303
|
-
else if (action ===
|
|
170
|
+
else if (action === Actions_1.AndroidActionType.CreateGsaKey) {
|
|
304
171
|
const gsaKey = await new CreateGoogleServiceAccountKey_1.CreateGoogleServiceAccountKey(appLookupParams.account).runAsync(ctx);
|
|
305
172
|
await new AssignGoogleServiceAccountKey_1.AssignGoogleServiceAccountKey(appLookupParams).runAsync(ctx, gsaKey);
|
|
306
173
|
}
|
|
307
|
-
else if (action ===
|
|
174
|
+
else if (action === Actions_1.AndroidActionType.UseExistingGsaKey) {
|
|
308
175
|
const gsaKey = await new UseExistingGoogleServiceAccountKey_1.UseExistingGoogleServiceAccountKey(appLookupParams.account).runAsync(ctx);
|
|
309
176
|
if (gsaKey) {
|
|
310
177
|
await new AssignGoogleServiceAccountKey_1.AssignGoogleServiceAccountKey(appLookupParams).runAsync(ctx, gsaKey);
|
|
311
178
|
}
|
|
312
179
|
}
|
|
313
|
-
else if (action ===
|
|
180
|
+
else if (action === Actions_1.AndroidActionType.RemoveGsaKey) {
|
|
314
181
|
await new RemoveGoogleServiceAccountKey_1.SelectAndRemoveGoogleServiceAccountKey(appLookupParams.account).runAsync(ctx);
|
|
315
182
|
}
|
|
316
|
-
else if (action ===
|
|
317
|
-
await new
|
|
183
|
+
else if (action === Actions_1.AndroidActionType.SetUpGsaKey) {
|
|
184
|
+
await new SetUpGoogleServiceAccountKey_1.SetUpGoogleServiceAccountKey(appLookupParams).runAsync(ctx);
|
|
318
185
|
}
|
|
319
|
-
else if (action ===
|
|
186
|
+
else if (action === Actions_1.AndroidActionType.UpdateCredentialsJson) {
|
|
320
187
|
const buildCredentials = await new SelectAndroidBuildCredentials_1.SelectExistingAndroidBuildCredentials(appLookupParams).runAsync(ctx);
|
|
321
188
|
if (buildCredentials) {
|
|
322
189
|
await new UpdateCredentialsJson_1.UpdateCredentialsJson().runAsync(ctx, buildCredentials);
|
|
323
190
|
}
|
|
324
191
|
}
|
|
325
|
-
else if (action ===
|
|
326
|
-
await new
|
|
192
|
+
else if (action === Actions_1.AndroidActionType.SetUpBuildCredentialsFromCredentialsJson) {
|
|
193
|
+
await new SetUpBuildCredentialsFromCredentialsJson_1.SetUpBuildCredentialsFromCredentialsJson(appLookupParams).runAsync(ctx);
|
|
327
194
|
}
|
|
328
195
|
}
|
|
329
196
|
}
|
|
@@ -1,33 +1,6 @@
|
|
|
1
1
|
import { CredentialsContext } from '../context';
|
|
2
|
+
import { ActionInfo } from './Actions';
|
|
2
3
|
import { Action } from './HelperActions';
|
|
3
|
-
declare enum ActionType {
|
|
4
|
-
ManageCredentialsJson = 0,
|
|
5
|
-
ManageBuildCredentials = 1,
|
|
6
|
-
ManagePushKey = 2,
|
|
7
|
-
GoBackToCaller = 3,
|
|
8
|
-
GoBackToHighLevelActions = 4,
|
|
9
|
-
SetupBuildCredentials = 5,
|
|
10
|
-
SetupBuildCredentialsFromCredentialsJson = 6,
|
|
11
|
-
UpdateCredentialsJson = 7,
|
|
12
|
-
UseExistingDistributionCertificate = 8,
|
|
13
|
-
RemoveProvisioningProfile = 9,
|
|
14
|
-
CreateDistributionCertificate = 10,
|
|
15
|
-
RemoveDistributionCertificate = 11,
|
|
16
|
-
SetupPushKey = 12,
|
|
17
|
-
CreatePushKey = 13,
|
|
18
|
-
UseExistingPushKey = 14,
|
|
19
|
-
RemovePushKey = 15
|
|
20
|
-
}
|
|
21
|
-
declare enum Scope {
|
|
22
|
-
Project = 0,
|
|
23
|
-
Account = 1,
|
|
24
|
-
Manager = 2
|
|
25
|
-
}
|
|
26
|
-
declare type ActionInfo = {
|
|
27
|
-
value: ActionType;
|
|
28
|
-
title: string;
|
|
29
|
-
scope: Scope;
|
|
30
|
-
};
|
|
31
4
|
export declare class ManageIos {
|
|
32
5
|
private callingAction;
|
|
33
6
|
constructor(callingAction: Action);
|
|
@@ -38,4 +11,3 @@ export declare class ManageIos {
|
|
|
38
11
|
private setupProvisioningProfileWithSpecificDistCertAsync;
|
|
39
12
|
private selectTargetAsync;
|
|
40
13
|
}
|
|
41
|
-
export {};
|