@trayio/cdk-cli 4.27.0 → 4.28.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
CHANGED
|
@@ -19,7 +19,7 @@ $ npm install -g @trayio/cdk-cli
|
|
|
19
19
|
$ tray-cdk COMMAND
|
|
20
20
|
running command...
|
|
21
21
|
$ tray-cdk (--version|-v)
|
|
22
|
-
@trayio/cdk-cli/4.
|
|
22
|
+
@trayio/cdk-cli/4.28.0 linux-x64 node-v18.20.4
|
|
23
23
|
$ tray-cdk --help [COMMAND]
|
|
24
24
|
USAGE
|
|
25
25
|
$ tray-cdk COMMAND
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAiBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SAAoD;IAEtE,MAAM,CAAC,IAAI;;;;MAiBT;IAEF,MAAM,CAAC,KAAK;;;;;MAOV;IAEF,MAAM,CAAC,QAAQ,WAUb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEF,OAAO,CAAC,6BAA6B,CAkCnC;IAEF,OAAO,CAAC,qBAAqB,CAe3B;IAEI,GAAG;
|
|
1
|
+
{"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/commands/deployment/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAmB,MAAM,aAAa,CAAC;AAiBvD,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACvC,MAAM,CAAC,WAAW,SAAoD;IAEtE,MAAM,CAAC,IAAI;;;;MAiBT;IAEF,MAAM,CAAC,KAAK;;;;;MAOV;IAEF,MAAM,CAAC,QAAQ,WAUb;IAEF,OAAO,CAAC,aAAa,CAGnB;IAEF,OAAO,CAAC,6BAA6B,CAkCnC;IAEF,OAAO,CAAC,qBAAqB,CAe3B;IAEI,GAAG;CAsGT"}
|
|
@@ -137,6 +137,9 @@ class Get extends core_1.Command {
|
|
|
137
137
|
break;
|
|
138
138
|
case ConnectorDeploymentApi_1.ConnectorDeploymentStatus.BuildFailed:
|
|
139
139
|
this.log((0, colorizeString_1.error)(`Connector Build Failed, please try again or contact support`));
|
|
140
|
+
if (response.value.errorMessage) {
|
|
141
|
+
this.log(`Error: ${response.value.errorMessage}`);
|
|
142
|
+
}
|
|
140
143
|
break;
|
|
141
144
|
case ConnectorDeploymentApi_1.ConnectorDeploymentStatus.Deploying:
|
|
142
145
|
this.log((0, colorizeString_1.info)(`Connector is currently being deployed, this could take a few minutes. Please check the connector status again later.`));
|
|
@@ -146,6 +149,9 @@ class Get extends core_1.Command {
|
|
|
146
149
|
break;
|
|
147
150
|
case ConnectorDeploymentApi_1.ConnectorDeploymentStatus.Failed:
|
|
148
151
|
this.log((0, colorizeString_1.error)(`Connector Deploy Failed, please try again or contact support`));
|
|
152
|
+
if (response.value.errorMessage) {
|
|
153
|
+
this.log(`Error: ${response.value.errorMessage}`);
|
|
154
|
+
}
|
|
149
155
|
break;
|
|
150
156
|
default:
|
|
151
157
|
this.log((0, colorizeString_1.error)(`Connector Deploy Failed, please try again or contact support`));
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trayio/cdk-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.28.0",
|
|
4
4
|
"description": "A CLI for connector development",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": "./dist/*.js"
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"@oclif/plugin-version": "2.0.11",
|
|
23
23
|
"@oclif/plugin-warn-if-update-available": "^3.1.4",
|
|
24
24
|
"@oclif/test": "3.1.12",
|
|
25
|
-
"@trayio/axios": "4.
|
|
26
|
-
"@trayio/cdk-build": "4.
|
|
27
|
-
"@trayio/commons": "4.
|
|
28
|
-
"@trayio/generator": "4.
|
|
29
|
-
"@trayio/tray-client": "4.
|
|
30
|
-
"@trayio/tray-openapi": "4.
|
|
25
|
+
"@trayio/axios": "4.28.0",
|
|
26
|
+
"@trayio/cdk-build": "4.28.0",
|
|
27
|
+
"@trayio/commons": "4.28.0",
|
|
28
|
+
"@trayio/generator": "4.28.0",
|
|
29
|
+
"@trayio/tray-client": "4.28.0",
|
|
30
|
+
"@trayio/tray-openapi": "4.28.0",
|
|
31
31
|
"chalk": "4.1.2",
|
|
32
32
|
"inquirer": "8.2.6"
|
|
33
33
|
},
|