@hubspot/cli 3.0.12 → 3.0.13-beta.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.
|
@@ -107,7 +107,7 @@ const PERSONAL_ACCESS_KEY = {
|
|
|
107
107
|
name: 'personalAccessKey',
|
|
108
108
|
message: i18n(`${i18nKey}.enterPersonalAccessKey`),
|
|
109
109
|
validate(val) {
|
|
110
|
-
if (typeof val !== 'string') {
|
|
110
|
+
if (!val || typeof val !== 'string') {
|
|
111
111
|
return i18n(`${i18nKey}.errors.invalidPersonalAccessKey`);
|
|
112
112
|
} else if (val[0] === '•') {
|
|
113
113
|
return i18n(`${i18nKey}.errors.invalidPersonalAccessKeyCopy`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13-beta.0",
|
|
4
4
|
"description": "CLI for working with HubSpot",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "a4c15c0ae8f06064273c51c44a7b7b38863bcd38"
|
|
43
43
|
}
|
package/bin/hubspot
DELETED