bdy 1.19.1-dev-pipeline → 1.19.2-dev
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/distTs/package.json +1 -1
- package/distTs/src/api/client.js +2 -61
- package/distTs/src/command/pipeline/run.js +125 -22
- package/distTs/src/command/project/get.js +18 -0
- package/distTs/src/command/project/link.js +11 -11
- package/distTs/src/command/project/set.js +31 -0
- package/distTs/src/command/sandbox/get/yaml.js +30 -0
- package/distTs/src/command/vt/scrape.js +193 -0
- package/distTs/src/input.js +31 -14
- package/distTs/src/output.js +31 -149
- package/distTs/src/texts.js +33 -55
- package/distTs/src/tunnel/output/interactive/tunnel.js +2 -2
- package/package.json +1 -1
- package/distTs/src/command/crawl/link.js +0 -61
- package/distTs/src/command/crawl/run.js +0 -147
- package/distTs/src/command/crawl/validation.js +0 -154
- package/distTs/src/command/crawl.js +0 -13
- package/distTs/src/command/pipeline/run/apply.js +0 -62
- package/distTs/src/command/pipeline/run/approve.js +0 -62
- package/distTs/src/command/pipeline/run/cancel.js +0 -36
- package/distTs/src/command/pipeline/run/list.js +0 -52
- package/distTs/src/command/pipeline/run/logs.js +0 -37
- package/distTs/src/command/pipeline/run/retry.js +0 -36
- package/distTs/src/command/pipeline/run/start.js +0 -96
- package/distTs/src/command/pipeline/run/status.js +0 -35
- package/distTs/src/command/tests/capture/validation.js +0 -46
- package/distTs/src/command/tests/capture.js +0 -103
- package/distTs/src/command/tests/unit/link.js +0 -61
- package/distTs/src/command/tests/unit/upload.js +0 -91
- package/distTs/src/command/tests/unit.js +0 -13
- package/distTs/src/command/tests/visual/link.js +0 -61
- package/distTs/src/command/tests/visual/session/close.js +0 -32
- package/distTs/src/command/tests/visual/session/create.js +0 -86
- package/distTs/src/command/tests/visual/session.js +0 -13
- package/distTs/src/command/tests/visual/setup.js +0 -20
- package/distTs/src/command/tests/visual/shared/validation.js +0 -145
- package/distTs/src/command/tests/visual/upload.js +0 -141
- package/distTs/src/command/tests/visual.js +0 -17
- package/distTs/src/command/tests.js +0 -15
- package/distTs/src/crawl/requests.js +0 -141
- package/distTs/src/output/pipeline.js +0 -1527
- package/distTs/src/types/crawl.js +0 -2
- package/distTs/src/types/pipeline.js +0 -424
- package/distTs/src/unitTest/context.js +0 -26
|
@@ -1,424 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PIPELINE_STATUS_PROGRESS_ANIMATION = exports.PIPELINE_STATUS_ICONS = exports.PIPELINE_PRIORITY = exports.PIPELINE_RUN_TRIGGER = exports.PIPELINE_ACTION_NAME = exports.PIPELINE_ACTION_TYPE = exports.PIPELINE_RUN_STATUS = void 0;
|
|
4
|
-
var PIPELINE_RUN_STATUS;
|
|
5
|
-
(function (PIPELINE_RUN_STATUS) {
|
|
6
|
-
PIPELINE_RUN_STATUS["INPROGRESS"] = "INPROGRESS";
|
|
7
|
-
PIPELINE_RUN_STATUS["ENQUEUED"] = "ENQUEUED";
|
|
8
|
-
PIPELINE_RUN_STATUS["TERMINATED"] = "TERMINATED";
|
|
9
|
-
PIPELINE_RUN_STATUS["SUCCESSFUL"] = "SUCCESSFUL";
|
|
10
|
-
PIPELINE_RUN_STATUS["FAILED"] = "FAILED";
|
|
11
|
-
PIPELINE_RUN_STATUS["INITIAL"] = "INITIAL";
|
|
12
|
-
PIPELINE_RUN_STATUS["NOT_EXECUTED"] = "NOT_EXECUTED";
|
|
13
|
-
PIPELINE_RUN_STATUS["SKIPPED"] = "SKIPPED";
|
|
14
|
-
PIPELINE_RUN_STATUS["TERMINATING"] = "TERMINATING";
|
|
15
|
-
PIPELINE_RUN_STATUS["WAITING_FOR_APPLY"] = "WAITING_FOR_APPLY";
|
|
16
|
-
PIPELINE_RUN_STATUS["WAITING_FOR_VARIABLES"] = "WAITING_FOR_VARIABLES";
|
|
17
|
-
PIPELINE_RUN_STATUS["WAITING_FOR_SETTABLE_VARIABLES"] = "WAITING_FOR_SETTABLE_VARIABLES";
|
|
18
|
-
PIPELINE_RUN_STATUS["WAITING_FOR_VT_SESSION"] = "WAITING_FOR_VT_SESSION";
|
|
19
|
-
})(PIPELINE_RUN_STATUS || (exports.PIPELINE_RUN_STATUS = PIPELINE_RUN_STATUS = {}));
|
|
20
|
-
var PIPELINE_ACTION_TYPE;
|
|
21
|
-
(function (PIPELINE_ACTION_TYPE) {
|
|
22
|
-
PIPELINE_ACTION_TYPE["TRANSFER"] = "TRANSFER";
|
|
23
|
-
PIPELINE_ACTION_TYPE["AMAZON_S3"] = "AMAZON_S3";
|
|
24
|
-
PIPELINE_ACTION_TYPE["WEB_DAV"] = "WEB_DAV";
|
|
25
|
-
PIPELINE_ACTION_TYPE["SSH_COMMAND"] = "SSH_COMMAND";
|
|
26
|
-
PIPELINE_ACTION_TYPE["HTTP"] = "HTTP";
|
|
27
|
-
PIPELINE_ACTION_TYPE["SLACK"] = "SLACK";
|
|
28
|
-
PIPELINE_ACTION_TYPE["EMAIL"] = "EMAIL";
|
|
29
|
-
PIPELINE_ACTION_TYPE["SMS"] = "SMS";
|
|
30
|
-
PIPELINE_ACTION_TYPE["PUSH"] = "PUSH";
|
|
31
|
-
PIPELINE_ACTION_TYPE["HEROKU"] = "HEROKU";
|
|
32
|
-
PIPELINE_ACTION_TYPE["BUILD"] = "BUILD";
|
|
33
|
-
PIPELINE_ACTION_TYPE["PING"] = "PING";
|
|
34
|
-
PIPELINE_ACTION_TYPE["WEB"] = "WEB";
|
|
35
|
-
PIPELINE_ACTION_TYPE["TCP"] = "TCP";
|
|
36
|
-
PIPELINE_ACTION_TYPE["RUN_NEXT_PIPELINE"] = "RUN_NEXT_PIPELINE";
|
|
37
|
-
PIPELINE_ACTION_TYPE["ELASTIC_BEANSTALK"] = "ELASTIC_BEANSTALK";
|
|
38
|
-
PIPELINE_ACTION_TYPE["GCS"] = "GCS";
|
|
39
|
-
PIPELINE_ACTION_TYPE["SHOPIFY"] = "SHOPIFY";
|
|
40
|
-
PIPELINE_ACTION_TYPE["PUSHOVER"] = "PUSHOVER";
|
|
41
|
-
PIPELINE_ACTION_TYPE["PUSHBULLET"] = "PUSHBULLET";
|
|
42
|
-
PIPELINE_ACTION_TYPE["CODE_DEPLOY"] = "CODE_DEPLOY";
|
|
43
|
-
PIPELINE_ACTION_TYPE["AZURE"] = "AZURE";
|
|
44
|
-
PIPELINE_ACTION_TYPE["DOCKERFILE"] = "DOCKERFILE";
|
|
45
|
-
PIPELINE_ACTION_TYPE["GOOGLE_APP_ENGINE"] = "GOOGLE_APP_ENGINE";
|
|
46
|
-
PIPELINE_ACTION_TYPE["LAMBDA"] = "LAMBDA";
|
|
47
|
-
PIPELINE_ACTION_TYPE["HEROKU_CLI"] = "HEROKU_CLI";
|
|
48
|
-
PIPELINE_ACTION_TYPE["RACKSPACE"] = "RACKSPACE";
|
|
49
|
-
PIPELINE_ACTION_TYPE["CLOUDFLARE"] = "CLOUDFLARE";
|
|
50
|
-
PIPELINE_ACTION_TYPE["CLOUD_FRONT"] = "CLOUD_FRONT";
|
|
51
|
-
PIPELINE_ACTION_TYPE["MONITOR"] = "MONITOR";
|
|
52
|
-
PIPELINE_ACTION_TYPE["SLEEP"] = "SLEEP";
|
|
53
|
-
PIPELINE_ACTION_TYPE["AWS_CLI"] = "AWS_CLI";
|
|
54
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CDN"] = "GOOGLE_CDN";
|
|
55
|
-
PIPELINE_ACTION_TYPE["AWS_LAMBDA_DEPLOY"] = "AWS_LAMBDA_DEPLOY";
|
|
56
|
-
PIPELINE_ACTION_TYPE["KUBERNETES_APPLY"] = "KUBERNETES_APPLY";
|
|
57
|
-
PIPELINE_ACTION_TYPE["KUBERNETES_SET_IMAGE"] = "KUBERNETES_SET_IMAGE";
|
|
58
|
-
PIPELINE_ACTION_TYPE["KUBERNETES_RUN_POD"] = "KUBERNETES_RUN_POD";
|
|
59
|
-
PIPELINE_ACTION_TYPE["WAIT_FOR_APPLY"] = "WAIT_FOR_APPLY";
|
|
60
|
-
PIPELINE_ACTION_TYPE["APPROVE_VT"] = "APPROVE_VT";
|
|
61
|
-
PIPELINE_ACTION_TYPE["NEW_RELIC"] = "NEW_RELIC";
|
|
62
|
-
PIPELINE_ACTION_TYPE["KUBERNETES_RUN_JOB"] = "KUBERNETES_RUN_JOB";
|
|
63
|
-
PIPELINE_ACTION_TYPE["ZIP"] = "ZIP";
|
|
64
|
-
PIPELINE_ACTION_TYPE["ROLLBAR"] = "ROLLBAR";
|
|
65
|
-
PIPELINE_ACTION_TYPE["SENTRY"] = "SENTRY";
|
|
66
|
-
PIPELINE_ACTION_TYPE["DATADOG"] = "DATADOG";
|
|
67
|
-
PIPELINE_ACTION_TYPE["DO_SPACES"] = "DO_SPACES";
|
|
68
|
-
PIPELINE_ACTION_TYPE["HONEYBADGER"] = "HONEYBADGER";
|
|
69
|
-
PIPELINE_ACTION_TYPE["SENTRY_ENTERPRISE"] = "SENTRY_ENTERPRISE";
|
|
70
|
-
PIPELINE_ACTION_TYPE["LOGGLY"] = "LOGGLY";
|
|
71
|
-
PIPELINE_ACTION_TYPE["KUBERNETES_CLI"] = "KUBERNETES_CLI";
|
|
72
|
-
PIPELINE_ACTION_TYPE["RUN_DOCKER_CONTAINER"] = "RUN_DOCKER_CONTAINER";
|
|
73
|
-
PIPELINE_ACTION_TYPE["ESLINT"] = "ESLINT";
|
|
74
|
-
PIPELINE_ACTION_TYPE["DOCKER_PUSH"] = "DOCKER_PUSH";
|
|
75
|
-
PIPELINE_ACTION_TYPE["ANDROID_SIGN"] = "ANDROID_SIGN";
|
|
76
|
-
PIPELINE_ACTION_TYPE["ANDROID_PLAY"] = "ANDROID_PLAY";
|
|
77
|
-
PIPELINE_ACTION_TYPE["WAIT_FOR_VARIABLES"] = "WAIT_FOR_VARIABLES";
|
|
78
|
-
PIPELINE_ACTION_TYPE["GCLOUD_CLI"] = "GCLOUD_CLI";
|
|
79
|
-
PIPELINE_ACTION_TYPE["AWS_ECS"] = "AWS_ECS";
|
|
80
|
-
PIPELINE_ACTION_TYPE["COPY_FILES"] = "COPY_FILES";
|
|
81
|
-
PIPELINE_ACTION_TYPE["FIREBASE"] = "FIREBASE";
|
|
82
|
-
PIPELINE_ACTION_TYPE["TELEGRAM"] = "TELEGRAM";
|
|
83
|
-
PIPELINE_ACTION_TYPE["REPLACE"] = "REPLACE";
|
|
84
|
-
PIPELINE_ACTION_TYPE["GOOGLE_FUNCTIONS_DEPLOY"] = "GOOGLE_FUNCTIONS_DEPLOY";
|
|
85
|
-
PIPELINE_ACTION_TYPE["GOOGLE_FUNCTIONS"] = "GOOGLE_FUNCTIONS";
|
|
86
|
-
PIPELINE_ACTION_TYPE["BUGSNAG"] = "BUGSNAG";
|
|
87
|
-
PIPELINE_ACTION_TYPE["SPLIT_TESTS"] = "SPLIT_TESTS";
|
|
88
|
-
PIPELINE_ACTION_TYPE["RAYGUN"] = "RAYGUN";
|
|
89
|
-
PIPELINE_ACTION_TYPE["DATADOG_STATUS_CHECK"] = "DATADOG_STATUS_CHECK";
|
|
90
|
-
PIPELINE_ACTION_TYPE["GHOST_INSPECTOR"] = "GHOST_INSPECTOR";
|
|
91
|
-
PIPELINE_ACTION_TYPE["AWS_CLOUD_FORMATION"] = "AWS_CLOUD_FORMATION";
|
|
92
|
-
PIPELINE_ACTION_TYPE["DIGITAL_OCEAN_CDN"] = "DIGITAL_OCEAN_CDN";
|
|
93
|
-
PIPELINE_ACTION_TYPE["DISCORD2"] = "DISCORD2";
|
|
94
|
-
PIPELINE_ACTION_TYPE["IMAGE_COMPRESSION"] = "IMAGE_COMPRESSION";
|
|
95
|
-
PIPELINE_ACTION_TYPE["NETLIFY"] = "NETLIFY";
|
|
96
|
-
PIPELINE_ACTION_TYPE["GIT_CRYPT_UNLOCK"] = "GIT_CRYPT_UNLOCK";
|
|
97
|
-
PIPELINE_ACTION_TYPE["GIT_CRYPT_LOCK"] = "GIT_CRYPT_LOCK";
|
|
98
|
-
PIPELINE_ACTION_TYPE["HELM"] = "HELM";
|
|
99
|
-
PIPELINE_ACTION_TYPE["DOCKERFILE_LINTER"] = "DOCKERFILE_LINTER";
|
|
100
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD"] = "DOWNLOAD";
|
|
101
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_S3"] = "DOWNLOAD_S3";
|
|
102
|
-
PIPELINE_ACTION_TYPE["LIGHTHOUSE"] = "LIGHTHOUSE";
|
|
103
|
-
PIPELINE_ACTION_TYPE["ANDROID_SIGN_BUNDLE"] = "ANDROID_SIGN_BUNDLE";
|
|
104
|
-
PIPELINE_ACTION_TYPE["ANDROID_PLAY_BUNDLE"] = "ANDROID_PLAY_BUNDLE";
|
|
105
|
-
PIPELINE_ACTION_TYPE["VISUAL_TESTS"] = "VISUAL_TESTS";
|
|
106
|
-
PIPELINE_ACTION_TYPE["VISUAL_TEST_2"] = "VISUAL_TEST_2";
|
|
107
|
-
PIPELINE_ACTION_TYPE["LINK_VALIDATOR"] = "LINK_VALIDATOR";
|
|
108
|
-
PIPELINE_ACTION_TYPE["AZURE_CLI"] = "AZURE_CLI";
|
|
109
|
-
PIPELINE_ACTION_TYPE["SHOPIFY_THEMEKIT_CLI"] = "SHOPIFY_THEMEKIT_CLI";
|
|
110
|
-
PIPELINE_ACTION_TYPE["SSL_VERIFY"] = "SSL_VERIFY";
|
|
111
|
-
PIPELINE_ACTION_TYPE["AZURE_STORAGE"] = "AZURE_STORAGE";
|
|
112
|
-
PIPELINE_ACTION_TYPE["DEPLOY_TO_SANDBOX"] = "DEPLOY_TO_SANDBOX";
|
|
113
|
-
PIPELINE_ACTION_TYPE["SANDBOX_START"] = "SANDBOX_START";
|
|
114
|
-
PIPELINE_ACTION_TYPE["SANDBOX_STOP"] = "SANDBOX_STOP";
|
|
115
|
-
PIPELINE_ACTION_TYPE["SANDBOX_EXEC"] = "SANDBOX_EXEC";
|
|
116
|
-
PIPELINE_ACTION_TYPE["GIT_HUB_RELEASE"] = "GIT_HUB_RELEASE";
|
|
117
|
-
PIPELINE_ACTION_TYPE["GCLOUD_RUN_DEPLOY"] = "GCLOUD_RUN_DEPLOY";
|
|
118
|
-
PIPELINE_ACTION_TYPE["SANDBOX_SNAPSHOT"] = "SANDBOX_SNAPSHOT";
|
|
119
|
-
PIPELINE_ACTION_TYPE["AWS_CLI_2"] = "AWS_CLI_2";
|
|
120
|
-
PIPELINE_ACTION_TYPE["MICROSOFT_TEAMS"] = "MICROSOFT_TEAMS";
|
|
121
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_WINDOWS"] = "NATIVE_BUILD_WINDOWS";
|
|
122
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC"] = "NATIVE_BUILD_MAC";
|
|
123
|
-
PIPELINE_ACTION_TYPE["DOCTL"] = "DOCTL";
|
|
124
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_REACT"] = "NATIVE_BUILD_MAC_REACT";
|
|
125
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_CORDOVA"] = "NATIVE_BUILD_MAC_CORDOVA";
|
|
126
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_FASTLANE"] = "NATIVE_BUILD_MAC_FASTLANE";
|
|
127
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_FLUTTER"] = "NATIVE_BUILD_MAC_FLUTTER";
|
|
128
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CLOUD_STORAGE"] = "GOOGLE_CLOUD_STORAGE";
|
|
129
|
-
PIPELINE_ACTION_TYPE["GOOGLE_FUNCTION_DEPLOY"] = "GOOGLE_FUNCTION_DEPLOY";
|
|
130
|
-
PIPELINE_ACTION_TYPE["GOOGLE_FUNCTION_INVOKE"] = "GOOGLE_FUNCTION_INVOKE";
|
|
131
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CDN_INVALIDATE"] = "GOOGLE_CDN_INVALIDATE";
|
|
132
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CLOUD_CLI"] = "GOOGLE_CLOUD_CLI";
|
|
133
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CLOUD_RUN_DEPLOY"] = "GOOGLE_CLOUD_RUN_DEPLOY";
|
|
134
|
-
PIPELINE_ACTION_TYPE["GOOGLE_APP_DEPLOY"] = "GOOGLE_APP_DEPLOY";
|
|
135
|
-
PIPELINE_ACTION_TYPE["ANDROID_PUBLISH_APK"] = "ANDROID_PUBLISH_APK";
|
|
136
|
-
PIPELINE_ACTION_TYPE["ANDROID_PUBLISH_APP_BUNDLE"] = "ANDROID_PUBLISH_APP_BUNDLE";
|
|
137
|
-
PIPELINE_ACTION_TYPE["SANDBOX_CREATE_NEW"] = "SANDBOX_CREATE_NEW";
|
|
138
|
-
PIPELINE_ACTION_TYPE["SANDBOX_CREATE_FROM_SANDBOX"] = "SANDBOX_CREATE_FROM_SANDBOX";
|
|
139
|
-
PIPELINE_ACTION_TYPE["SANDBOX_CREATE_FROM_SNAPSHOT"] = "SANDBOX_CREATE_FROM_SNAPSHOT";
|
|
140
|
-
PIPELINE_ACTION_TYPE["SANDBOX_DELETE"] = "SANDBOX_DELETE";
|
|
141
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_SIGN"] = "NATIVE_BUILD_MAC_SIGN";
|
|
142
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_DEPLOY"] = "NATIVE_BUILD_MAC_DEPLOY";
|
|
143
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_DOCKER_CLI"] = "NATIVE_BUILD_DOCKER_CLI";
|
|
144
|
-
PIPELINE_ACTION_TYPE["CLEAR_CACHE"] = "CLEAR_CACHE";
|
|
145
|
-
PIPELINE_ACTION_TYPE["FASTLANE_ANDROID"] = "FASTLANE_ANDROID";
|
|
146
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_LINUX"] = "NATIVE_BUILD_LINUX";
|
|
147
|
-
PIPELINE_ACTION_TYPE["GIT_HUB_CLI"] = "GIT_HUB_CLI";
|
|
148
|
-
PIPELINE_ACTION_TYPE["INTEGRATION_VARIABLES"] = "INTEGRATION_VARIABLES";
|
|
149
|
-
PIPELINE_ACTION_TYPE["DOCKER_BUILD_MULTI_ARCH"] = "DOCKER_BUILD_MULTI_ARCH";
|
|
150
|
-
PIPELINE_ACTION_TYPE["CODE_PIPELINE"] = "CODE_PIPELINE";
|
|
151
|
-
PIPELINE_ACTION_TYPE["GIT_LAB_CLI"] = "GIT_LAB_CLI";
|
|
152
|
-
PIPELINE_ACTION_TYPE["AWS_APP_RUNNER_DEPLOY"] = "AWS_APP_RUNNER_DEPLOY";
|
|
153
|
-
PIPELINE_ACTION_TYPE["AWS_APP_RUNNER_MONITOR"] = "AWS_APP_RUNNER_MONITOR";
|
|
154
|
-
PIPELINE_ACTION_TYPE["NATIVE_BUILD_MAC_VM"] = "NATIVE_BUILD_MAC_VM";
|
|
155
|
-
PIPELINE_ACTION_TYPE["AWS_CDK_CLI"] = "AWS_CDK_CLI";
|
|
156
|
-
PIPELINE_ACTION_TYPE["GHOST_INSPECTOR_CLI"] = "GHOST_INSPECTOR_CLI";
|
|
157
|
-
PIPELINE_ACTION_TYPE["TERRAFORM"] = "TERRAFORM";
|
|
158
|
-
PIPELINE_ACTION_TYPE["ATOP"] = "ATOP";
|
|
159
|
-
PIPELINE_ACTION_TYPE["SNYK_CLI"] = "SNYK_CLI";
|
|
160
|
-
PIPELINE_ACTION_TYPE["STACK_HAWK_CLI"] = "STACK_HAWK_CLI";
|
|
161
|
-
PIPELINE_ACTION_TYPE["JMETER_CLI"] = "JMETER_CLI";
|
|
162
|
-
PIPELINE_ACTION_TYPE["CUSTOM"] = "CUSTOM";
|
|
163
|
-
PIPELINE_ACTION_TYPE["BLACKFIRE_PHP"] = "BLACKFIRE_PHP";
|
|
164
|
-
PIPELINE_ACTION_TYPE["BLACKFIRE_PYTHON"] = "BLACKFIRE_PYTHON";
|
|
165
|
-
PIPELINE_ACTION_TYPE["BLACKFIRE_GO"] = "BLACKFIRE_GO";
|
|
166
|
-
PIPELINE_ACTION_TYPE["LINK_CHECKER"] = "LINK_CHECKER";
|
|
167
|
-
PIPELINE_ACTION_TYPE["SHOPIFY_CLI"] = "SHOPIFY_CLI";
|
|
168
|
-
PIPELINE_ACTION_TYPE["DOCKER"] = "DOCKER";
|
|
169
|
-
PIPELINE_ACTION_TYPE["SET_VARIABLES"] = "SET_VARIABLES";
|
|
170
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_FROM_SANDBOX"] = "DOWNLOAD_FROM_SANDBOX";
|
|
171
|
-
PIPELINE_ACTION_TYPE["PIPELINE_SETTINGS"] = "PIPELINE_SETTINGS";
|
|
172
|
-
PIPELINE_ACTION_TYPE["BACKBLAZE_B2"] = "BACKBLAZE_B2";
|
|
173
|
-
PIPELINE_ACTION_TYPE["NEW_RELIC_CLI"] = "NEW_RELIC_CLI";
|
|
174
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_GCS"] = "DOWNLOAD_GCS";
|
|
175
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_BACKBLAZE_B2"] = "DOWNLOAD_BACKBLAZE_B2";
|
|
176
|
-
PIPELINE_ACTION_TYPE["WP_CLI"] = "WP_CLI";
|
|
177
|
-
PIPELINE_ACTION_TYPE["GOOGLE_CHAT"] = "GOOGLE_CHAT";
|
|
178
|
-
PIPELINE_ACTION_TYPE["SANDBOX_APPLICATION_START"] = "SANDBOX_APPLICATION_START";
|
|
179
|
-
PIPELINE_ACTION_TYPE["SANDBOX_APPLICATION_STOP"] = "SANDBOX_APPLICATION_STOP";
|
|
180
|
-
PIPELINE_ACTION_TYPE["POWERSHELL"] = "POWERSHELL";
|
|
181
|
-
PIPELINE_ACTION_TYPE["SANDBOX_MANAGE"] = "SANDBOX_MANAGE";
|
|
182
|
-
PIPELINE_ACTION_TYPE["SANDBOX_CREATE"] = "SANDBOX_CREATE";
|
|
183
|
-
PIPELINE_ACTION_TYPE["CONTENTFUL_CLI"] = "CONTENTFUL_CLI";
|
|
184
|
-
PIPELINE_ACTION_TYPE["JIRA_BUILD"] = "JIRA_BUILD";
|
|
185
|
-
PIPELINE_ACTION_TYPE["JIRA_DEPLOYMENT"] = "JIRA_DEPLOYMENT";
|
|
186
|
-
PIPELINE_ACTION_TYPE["MYSQL_CLI"] = "MYSQL_CLI";
|
|
187
|
-
PIPELINE_ACTION_TYPE["FTP"] = "FTP";
|
|
188
|
-
PIPELINE_ACTION_TYPE["FTPS"] = "FTPS";
|
|
189
|
-
PIPELINE_ACTION_TYPE["SFTP"] = "SFTP";
|
|
190
|
-
PIPELINE_ACTION_TYPE["GCE"] = "GCE";
|
|
191
|
-
PIPELINE_ACTION_TYPE["VULTR"] = "VULTR";
|
|
192
|
-
PIPELINE_ACTION_TYPE["UPCLOUD"] = "UPCLOUD";
|
|
193
|
-
PIPELINE_ACTION_TYPE["DIGITAL_OCEAN"] = "DIGITAL_OCEAN";
|
|
194
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_FTP"] = "DOWNLOAD_FTP";
|
|
195
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_FTPS"] = "DOWNLOAD_FTPS";
|
|
196
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_SSH"] = "DOWNLOAD_SSH";
|
|
197
|
-
PIPELINE_ACTION_TYPE["RSYNC"] = "RSYNC";
|
|
198
|
-
PIPELINE_ACTION_TYPE["PROMOTE_IMAGE"] = "PROMOTE_IMAGE";
|
|
199
|
-
PIPELINE_ACTION_TYPE["PUBLISH_PACKAGE_VERSION"] = "PUBLISH_PACKAGE_VERSION";
|
|
200
|
-
PIPELINE_ACTION_TYPE["DOWNLOAD_PACKAGE_VERSION"] = "DOWNLOAD_PACKAGE_VERSION";
|
|
201
|
-
PIPELINE_ACTION_TYPE["STORYBOOK"] = "STORYBOOK";
|
|
202
|
-
})(PIPELINE_ACTION_TYPE || (exports.PIPELINE_ACTION_TYPE = PIPELINE_ACTION_TYPE = {}));
|
|
203
|
-
exports.PIPELINE_ACTION_NAME = {
|
|
204
|
-
[PIPELINE_ACTION_TYPE.TRANSFER]: 'Transfer',
|
|
205
|
-
[PIPELINE_ACTION_TYPE.AMAZON_S3]: 'S3 Transfer',
|
|
206
|
-
[PIPELINE_ACTION_TYPE.WEB_DAV]: 'WebDAV',
|
|
207
|
-
[PIPELINE_ACTION_TYPE.SSH_COMMAND]: 'SSH',
|
|
208
|
-
[PIPELINE_ACTION_TYPE.HTTP]: 'HTTP Request',
|
|
209
|
-
[PIPELINE_ACTION_TYPE.SLACK]: 'Slack',
|
|
210
|
-
[PIPELINE_ACTION_TYPE.EMAIL]: 'Email',
|
|
211
|
-
[PIPELINE_ACTION_TYPE.SMS]: 'SMS',
|
|
212
|
-
[PIPELINE_ACTION_TYPE.PUSH]: 'Git Push',
|
|
213
|
-
[PIPELINE_ACTION_TYPE.HEROKU]: 'Heroku',
|
|
214
|
-
[PIPELINE_ACTION_TYPE.BUILD]: 'Build',
|
|
215
|
-
[PIPELINE_ACTION_TYPE.PING]: 'Ping',
|
|
216
|
-
[PIPELINE_ACTION_TYPE.WEB]: 'Monitoring',
|
|
217
|
-
[PIPELINE_ACTION_TYPE.TCP]: 'TCP',
|
|
218
|
-
[PIPELINE_ACTION_TYPE.RUN_NEXT_PIPELINE]: 'Trigger',
|
|
219
|
-
[PIPELINE_ACTION_TYPE.ELASTIC_BEANSTALK]: 'EBS',
|
|
220
|
-
[PIPELINE_ACTION_TYPE.GCS]: 'GCS',
|
|
221
|
-
[PIPELINE_ACTION_TYPE.SHOPIFY]: 'Shopify',
|
|
222
|
-
[PIPELINE_ACTION_TYPE.PUSHOVER]: 'Pushover',
|
|
223
|
-
[PIPELINE_ACTION_TYPE.PUSHBULLET]: 'Pushbullet',
|
|
224
|
-
[PIPELINE_ACTION_TYPE.CODE_DEPLOY]: 'CodeDeploy',
|
|
225
|
-
[PIPELINE_ACTION_TYPE.AZURE]: 'Azure',
|
|
226
|
-
[PIPELINE_ACTION_TYPE.DOCKERFILE]: 'Build Image',
|
|
227
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_APP_ENGINE]: 'GAE',
|
|
228
|
-
[PIPELINE_ACTION_TYPE.LAMBDA]: 'Lambda',
|
|
229
|
-
[PIPELINE_ACTION_TYPE.HEROKU_CLI]: 'Heroku CLI',
|
|
230
|
-
[PIPELINE_ACTION_TYPE.RACKSPACE]: 'Rackspace',
|
|
231
|
-
[PIPELINE_ACTION_TYPE.CLOUDFLARE]: 'Cloudflare',
|
|
232
|
-
[PIPELINE_ACTION_TYPE.CLOUD_FRONT]: 'CloudFront',
|
|
233
|
-
[PIPELINE_ACTION_TYPE.MONITOR]: 'Monitor',
|
|
234
|
-
[PIPELINE_ACTION_TYPE.SLEEP]: 'Sleep',
|
|
235
|
-
[PIPELINE_ACTION_TYPE.AWS_CLI]: 'AWS CLI',
|
|
236
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CDN]: 'Google CDN',
|
|
237
|
-
[PIPELINE_ACTION_TYPE.AWS_LAMBDA_DEPLOY]: 'Lambda Deploy',
|
|
238
|
-
[PIPELINE_ACTION_TYPE.KUBERNETES_APPLY]: 'K8 Apply',
|
|
239
|
-
[PIPELINE_ACTION_TYPE.KUBERNETES_SET_IMAGE]: 'K8 Set Image',
|
|
240
|
-
[PIPELINE_ACTION_TYPE.KUBERNETES_RUN_POD]: 'K8 Run Pod',
|
|
241
|
-
[PIPELINE_ACTION_TYPE.WAIT_FOR_APPLY]: 'Approve',
|
|
242
|
-
[PIPELINE_ACTION_TYPE.APPROVE_VT]: 'Approve VT',
|
|
243
|
-
[PIPELINE_ACTION_TYPE.NEW_RELIC]: 'New Relic',
|
|
244
|
-
[PIPELINE_ACTION_TYPE.KUBERNETES_RUN_JOB]: 'K8 Run Job',
|
|
245
|
-
[PIPELINE_ACTION_TYPE.ZIP]: 'Zip',
|
|
246
|
-
[PIPELINE_ACTION_TYPE.ROLLBAR]: 'Rollbar',
|
|
247
|
-
[PIPELINE_ACTION_TYPE.SENTRY]: 'Sentry',
|
|
248
|
-
[PIPELINE_ACTION_TYPE.DATADOG]: 'Datadog',
|
|
249
|
-
[PIPELINE_ACTION_TYPE.DO_SPACES]: 'DO Spaces',
|
|
250
|
-
[PIPELINE_ACTION_TYPE.HONEYBADGER]: 'Honeybadger',
|
|
251
|
-
[PIPELINE_ACTION_TYPE.SENTRY_ENTERPRISE]: 'Sentry S-H',
|
|
252
|
-
[PIPELINE_ACTION_TYPE.LOGGLY]: 'Loggly',
|
|
253
|
-
[PIPELINE_ACTION_TYPE.KUBERNETES_CLI]: 'K8 CLI',
|
|
254
|
-
[PIPELINE_ACTION_TYPE.RUN_DOCKER_CONTAINER]: 'Run Image',
|
|
255
|
-
[PIPELINE_ACTION_TYPE.ESLINT]: 'ESLint',
|
|
256
|
-
[PIPELINE_ACTION_TYPE.DOCKER_PUSH]: 'Push Image',
|
|
257
|
-
[PIPELINE_ACTION_TYPE.ANDROID_SIGN]: 'Sign APK',
|
|
258
|
-
[PIPELINE_ACTION_TYPE.ANDROID_PLAY]: 'Publish APK',
|
|
259
|
-
[PIPELINE_ACTION_TYPE.WAIT_FOR_VARIABLES]: 'Pass Variables',
|
|
260
|
-
[PIPELINE_ACTION_TYPE.GCLOUD_CLI]: 'Google CLI',
|
|
261
|
-
[PIPELINE_ACTION_TYPE.AWS_ECS]: 'ECS',
|
|
262
|
-
[PIPELINE_ACTION_TYPE.COPY_FILES]: 'Copy Files',
|
|
263
|
-
[PIPELINE_ACTION_TYPE.FIREBASE]: 'Firebase',
|
|
264
|
-
[PIPELINE_ACTION_TYPE.TELEGRAM]: 'Telegram',
|
|
265
|
-
[PIPELINE_ACTION_TYPE.REPLACE]: 'Find & Replace',
|
|
266
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_FUNCTIONS_DEPLOY]: 'Google Deploy',
|
|
267
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_FUNCTIONS]: 'Google Function',
|
|
268
|
-
[PIPELINE_ACTION_TYPE.BUGSNAG]: 'Bugsnag',
|
|
269
|
-
[PIPELINE_ACTION_TYPE.SPLIT_TESTS]: 'Split Test',
|
|
270
|
-
[PIPELINE_ACTION_TYPE.RAYGUN]: 'Raygun',
|
|
271
|
-
[PIPELINE_ACTION_TYPE.DATADOG_STATUS_CHECK]: 'Datadog check',
|
|
272
|
-
[PIPELINE_ACTION_TYPE.GHOST_INSPECTOR]: 'Ghost Inspector',
|
|
273
|
-
[PIPELINE_ACTION_TYPE.AWS_CLOUD_FORMATION]: 'CloudFormation',
|
|
274
|
-
[PIPELINE_ACTION_TYPE.DIGITAL_OCEAN_CDN]: 'DO Spaces CDN',
|
|
275
|
-
[PIPELINE_ACTION_TYPE.DISCORD2]: 'Discord',
|
|
276
|
-
[PIPELINE_ACTION_TYPE.IMAGE_COMPRESSION]: 'Compress Images',
|
|
277
|
-
[PIPELINE_ACTION_TYPE.NETLIFY]: 'Netlify',
|
|
278
|
-
[PIPELINE_ACTION_TYPE.GIT_CRYPT_UNLOCK]: 'Git-Crypt Unlock',
|
|
279
|
-
[PIPELINE_ACTION_TYPE.GIT_CRYPT_LOCK]: 'Git-Crypt Lock',
|
|
280
|
-
[PIPELINE_ACTION_TYPE.HELM]: 'Helm',
|
|
281
|
-
[PIPELINE_ACTION_TYPE.DOCKERFILE_LINTER]: 'Lint Dockerfile',
|
|
282
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD]: 'Download',
|
|
283
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_S3]: 'S3 Download',
|
|
284
|
-
[PIPELINE_ACTION_TYPE.LIGHTHOUSE]: 'Lighthouse',
|
|
285
|
-
[PIPELINE_ACTION_TYPE.ANDROID_SIGN_BUNDLE]: 'Sign Bundle',
|
|
286
|
-
[PIPELINE_ACTION_TYPE.ANDROID_PLAY_BUNDLE]: 'Google Play',
|
|
287
|
-
[PIPELINE_ACTION_TYPE.VISUAL_TESTS]: 'Visual Tests',
|
|
288
|
-
[PIPELINE_ACTION_TYPE.VISUAL_TEST_2]: 'Visual Tests',
|
|
289
|
-
[PIPELINE_ACTION_TYPE.LINK_VALIDATOR]: 'Link Checker',
|
|
290
|
-
[PIPELINE_ACTION_TYPE.AZURE_CLI]: 'Azure CLI',
|
|
291
|
-
[PIPELINE_ACTION_TYPE.SHOPIFY_THEMEKIT_CLI]: 'Shopify Theme Kit',
|
|
292
|
-
[PIPELINE_ACTION_TYPE.SSL_VERIFY]: 'SSL Checker',
|
|
293
|
-
[PIPELINE_ACTION_TYPE.AZURE_STORAGE]: 'Azure Storage',
|
|
294
|
-
[PIPELINE_ACTION_TYPE.DEPLOY_TO_SANDBOX]: 'Sandbox Upload',
|
|
295
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_START]: 'Sandbox Start',
|
|
296
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_STOP]: 'Sandbox Stop',
|
|
297
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_EXEC]: 'Sandbox Exec',
|
|
298
|
-
[PIPELINE_ACTION_TYPE.GIT_HUB_RELEASE]: 'GitHub Release',
|
|
299
|
-
[PIPELINE_ACTION_TYPE.GCLOUD_RUN_DEPLOY]: 'Cloud Run',
|
|
300
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_SNAPSHOT]: 'Sandbox Snapshot',
|
|
301
|
-
[PIPELINE_ACTION_TYPE.AWS_CLI_2]: 'AWS CLI',
|
|
302
|
-
[PIPELINE_ACTION_TYPE.MICROSOFT_TEAMS]: 'MS Teams',
|
|
303
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_WINDOWS]: 'VM Windows',
|
|
304
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC]: 'VM macOS',
|
|
305
|
-
[PIPELINE_ACTION_TYPE.DOCTL]: 'DO CLI',
|
|
306
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_REACT]: 'React Native',
|
|
307
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_CORDOVA]: 'iOS Cordova',
|
|
308
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_FASTLANE]: 'Fastlane',
|
|
309
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_FLUTTER]: 'Flutter',
|
|
310
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CLOUD_STORAGE]: 'Cloud Storage',
|
|
311
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_FUNCTION_DEPLOY]: 'Function Deploy',
|
|
312
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_FUNCTION_INVOKE]: 'Function Trigger',
|
|
313
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CDN_INVALIDATE]: 'Google CDN purge',
|
|
314
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CLOUD_CLI]: 'Cloud CLI',
|
|
315
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CLOUD_RUN_DEPLOY]: 'Cloud Run',
|
|
316
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_APP_DEPLOY]: 'App Engine',
|
|
317
|
-
[PIPELINE_ACTION_TYPE.ANDROID_PUBLISH_APK]: 'Publish APK',
|
|
318
|
-
[PIPELINE_ACTION_TYPE.ANDROID_PUBLISH_APP_BUNDLE]: 'Publish Bundle',
|
|
319
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_CREATE_NEW]: 'Sandbox Create',
|
|
320
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_CREATE_FROM_SANDBOX]: 'Sandbox Create',
|
|
321
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_CREATE_FROM_SNAPSHOT]: 'Sandbox Create',
|
|
322
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_DELETE]: 'Sandbox Delete',
|
|
323
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_SIGN]: 'Sign & Export',
|
|
324
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_DEPLOY]: 'Store Publish',
|
|
325
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_DOCKER_CLI]: 'VM Docker',
|
|
326
|
-
[PIPELINE_ACTION_TYPE.CLEAR_CACHE]: 'Clear Cache',
|
|
327
|
-
[PIPELINE_ACTION_TYPE.FASTLANE_ANDROID]: 'Fastlane',
|
|
328
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_LINUX]: 'VM Linux',
|
|
329
|
-
[PIPELINE_ACTION_TYPE.GIT_HUB_CLI]: 'GitHub',
|
|
330
|
-
[PIPELINE_ACTION_TYPE.INTEGRATION_VARIABLES]: 'Integration Vars',
|
|
331
|
-
[PIPELINE_ACTION_TYPE.DOCKER_BUILD_MULTI_ARCH]: 'Multi-Arch Image',
|
|
332
|
-
[PIPELINE_ACTION_TYPE.CODE_PIPELINE]: 'CodePipeline',
|
|
333
|
-
[PIPELINE_ACTION_TYPE.GIT_LAB_CLI]: 'GitLab',
|
|
334
|
-
[PIPELINE_ACTION_TYPE.AWS_APP_RUNNER_DEPLOY]: 'App Runner Deploy',
|
|
335
|
-
[PIPELINE_ACTION_TYPE.AWS_APP_RUNNER_MONITOR]: 'App Runner Monitor',
|
|
336
|
-
[PIPELINE_ACTION_TYPE.NATIVE_BUILD_MAC_VM]: 'VM macOS',
|
|
337
|
-
[PIPELINE_ACTION_TYPE.AWS_CDK_CLI]: 'CDK',
|
|
338
|
-
[PIPELINE_ACTION_TYPE.GHOST_INSPECTOR_CLI]: 'Ghost Inspector',
|
|
339
|
-
[PIPELINE_ACTION_TYPE.TERRAFORM]: 'Terraform',
|
|
340
|
-
[PIPELINE_ACTION_TYPE.ATOP]: 'ATOP',
|
|
341
|
-
[PIPELINE_ACTION_TYPE.SNYK_CLI]: 'Snyk',
|
|
342
|
-
[PIPELINE_ACTION_TYPE.STACK_HAWK_CLI]: 'StackHawk',
|
|
343
|
-
[PIPELINE_ACTION_TYPE.JMETER_CLI]: 'JMeter',
|
|
344
|
-
[PIPELINE_ACTION_TYPE.CUSTOM]: 'Custom',
|
|
345
|
-
[PIPELINE_ACTION_TYPE.BLACKFIRE_PHP]: 'Blackfire PHP',
|
|
346
|
-
[PIPELINE_ACTION_TYPE.BLACKFIRE_PYTHON]: 'Blackfire Python',
|
|
347
|
-
[PIPELINE_ACTION_TYPE.BLACKFIRE_GO]: 'Blackfire Go',
|
|
348
|
-
[PIPELINE_ACTION_TYPE.LINK_CHECKER]: 'Link Checker',
|
|
349
|
-
[PIPELINE_ACTION_TYPE.SHOPIFY_CLI]: 'Shopify CLI',
|
|
350
|
-
[PIPELINE_ACTION_TYPE.DOCKER]: 'Docker',
|
|
351
|
-
[PIPELINE_ACTION_TYPE.SET_VARIABLES]: 'Set Variables',
|
|
352
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_FROM_SANDBOX]: 'Sandbox Download',
|
|
353
|
-
[PIPELINE_ACTION_TYPE.PIPELINE_SETTINGS]: 'Set Cron',
|
|
354
|
-
[PIPELINE_ACTION_TYPE.BACKBLAZE_B2]: 'Backblaze B2',
|
|
355
|
-
[PIPELINE_ACTION_TYPE.NEW_RELIC_CLI]: 'New Relic CLI',
|
|
356
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_GCS]: 'GCS Download',
|
|
357
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_BACKBLAZE_B2]: 'Backblaze Download',
|
|
358
|
-
[PIPELINE_ACTION_TYPE.WP_CLI]: 'WordPress CLI',
|
|
359
|
-
[PIPELINE_ACTION_TYPE.GOOGLE_CHAT]: 'Google Chat',
|
|
360
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_APPLICATION_START]: 'Sandbox App Start',
|
|
361
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_APPLICATION_STOP]: 'Sandbox App Stop',
|
|
362
|
-
[PIPELINE_ACTION_TYPE.POWERSHELL]: 'Powershell',
|
|
363
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_MANAGE]: 'Sandbox Manage',
|
|
364
|
-
[PIPELINE_ACTION_TYPE.SANDBOX_CREATE]: 'Sandbox Create',
|
|
365
|
-
[PIPELINE_ACTION_TYPE.CONTENTFUL_CLI]: 'Contentful',
|
|
366
|
-
[PIPELINE_ACTION_TYPE.JIRA_BUILD]: 'Jira Build',
|
|
367
|
-
[PIPELINE_ACTION_TYPE.JIRA_DEPLOYMENT]: 'Jira Deployment',
|
|
368
|
-
[PIPELINE_ACTION_TYPE.MYSQL_CLI]: 'MySQL CLI',
|
|
369
|
-
[PIPELINE_ACTION_TYPE.FTP]: 'FTP',
|
|
370
|
-
[PIPELINE_ACTION_TYPE.FTPS]: 'FTPS',
|
|
371
|
-
[PIPELINE_ACTION_TYPE.SFTP]: 'SFTP',
|
|
372
|
-
[PIPELINE_ACTION_TYPE.GCE]: 'GCE',
|
|
373
|
-
[PIPELINE_ACTION_TYPE.VULTR]: 'Vultr',
|
|
374
|
-
[PIPELINE_ACTION_TYPE.UPCLOUD]: 'Upcloud',
|
|
375
|
-
[PIPELINE_ACTION_TYPE.DIGITAL_OCEAN]: 'DigitalOcean',
|
|
376
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_FTP]: 'FTP Download',
|
|
377
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_FTPS]: 'FTPS Download',
|
|
378
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_SSH]: 'SSH Download',
|
|
379
|
-
[PIPELINE_ACTION_TYPE.RSYNC]: 'RSYNC',
|
|
380
|
-
[PIPELINE_ACTION_TYPE.PROMOTE_IMAGE]: 'Tag Image',
|
|
381
|
-
[PIPELINE_ACTION_TYPE.PUBLISH_PACKAGE_VERSION]: 'Package Publish',
|
|
382
|
-
[PIPELINE_ACTION_TYPE.DOWNLOAD_PACKAGE_VERSION]: 'Package Download',
|
|
383
|
-
[PIPELINE_ACTION_TYPE.STORYBOOK]: 'Storybook',
|
|
384
|
-
};
|
|
385
|
-
var PIPELINE_RUN_TRIGGER;
|
|
386
|
-
(function (PIPELINE_RUN_TRIGGER) {
|
|
387
|
-
PIPELINE_RUN_TRIGGER["CLICK"] = "CLICK";
|
|
388
|
-
PIPELINE_RUN_TRIGGER["SCHEDULE"] = "SCHEDULE";
|
|
389
|
-
PIPELINE_RUN_TRIGGER["EVENT"] = "EVENT";
|
|
390
|
-
PIPELINE_RUN_TRIGGER["PIPELINE"] = "PIPELINE";
|
|
391
|
-
PIPELINE_RUN_TRIGGER["WEBHOOK"] = "WEBHOOK";
|
|
392
|
-
PIPELINE_RUN_TRIGGER["EMAIL"] = "EMAIL";
|
|
393
|
-
})(PIPELINE_RUN_TRIGGER || (exports.PIPELINE_RUN_TRIGGER = PIPELINE_RUN_TRIGGER = {}));
|
|
394
|
-
var PIPELINE_PRIORITY;
|
|
395
|
-
(function (PIPELINE_PRIORITY) {
|
|
396
|
-
PIPELINE_PRIORITY["LOW"] = "LOW";
|
|
397
|
-
PIPELINE_PRIORITY["NORMAL"] = "NORMAL";
|
|
398
|
-
PIPELINE_PRIORITY["HIGH"] = "HIGH";
|
|
399
|
-
})(PIPELINE_PRIORITY || (exports.PIPELINE_PRIORITY = PIPELINE_PRIORITY = {}));
|
|
400
|
-
exports.PIPELINE_STATUS_ICONS = {
|
|
401
|
-
[PIPELINE_RUN_STATUS.SUCCESSFUL]: '✓',
|
|
402
|
-
[PIPELINE_RUN_STATUS.FAILED]: '✗',
|
|
403
|
-
[PIPELINE_RUN_STATUS.TERMINATED]: '✗',
|
|
404
|
-
[PIPELINE_RUN_STATUS.SKIPPED]: '⊘',
|
|
405
|
-
[PIPELINE_RUN_STATUS.ENQUEUED]: '○',
|
|
406
|
-
[PIPELINE_RUN_STATUS.INITIAL]: '○',
|
|
407
|
-
[PIPELINE_RUN_STATUS.NOT_EXECUTED]: '○',
|
|
408
|
-
[PIPELINE_RUN_STATUS.WAITING_FOR_APPLY]: '◷',
|
|
409
|
-
[PIPELINE_RUN_STATUS.WAITING_FOR_VARIABLES]: '◷',
|
|
410
|
-
[PIPELINE_RUN_STATUS.WAITING_FOR_SETTABLE_VARIABLES]: '◷',
|
|
411
|
-
[PIPELINE_RUN_STATUS.WAITING_FOR_VT_SESSION]: '◷',
|
|
412
|
-
[PIPELINE_RUN_STATUS.INPROGRESS]: '▶',
|
|
413
|
-
[PIPELINE_RUN_STATUS.TERMINATING]: '▶',
|
|
414
|
-
};
|
|
415
|
-
exports.PIPELINE_STATUS_PROGRESS_ANIMATION = [
|
|
416
|
-
'⠋',
|
|
417
|
-
'⠙',
|
|
418
|
-
'⠹',
|
|
419
|
-
'⠸',
|
|
420
|
-
'⠼',
|
|
421
|
-
'⠴',
|
|
422
|
-
'⠦',
|
|
423
|
-
'⠧',
|
|
424
|
-
];
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createUtContext = createUtContext;
|
|
4
|
-
exports.applyUtToken = applyUtToken;
|
|
5
|
-
exports.applyUtCiInfo = applyUtCiInfo;
|
|
6
|
-
const ci_info_1 = require("@buddy-works/ci-info");
|
|
7
|
-
function createUtContext() {
|
|
8
|
-
return {
|
|
9
|
-
token: '',
|
|
10
|
-
ciProvider: ci_info_1.CI.NONE,
|
|
11
|
-
refType: '',
|
|
12
|
-
refName: '',
|
|
13
|
-
buildId: '',
|
|
14
|
-
toRevision: '',
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
function applyUtToken(ctx, token) {
|
|
18
|
-
ctx.token = token;
|
|
19
|
-
}
|
|
20
|
-
function applyUtCiInfo(ctx, ciInfo) {
|
|
21
|
-
ctx.ciProvider = ciInfo.ciProvider;
|
|
22
|
-
ctx.refType = ciInfo.refType;
|
|
23
|
-
ctx.refName = ciInfo.refName;
|
|
24
|
-
ctx.buildId = ciInfo.buildId;
|
|
25
|
-
ctx.toRevision = ciInfo.toRevision;
|
|
26
|
-
}
|