zapier-platform-core 15.7.0 → 15.7.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zapier-platform-core",
|
|
3
|
-
"version": "15.7.
|
|
3
|
+
"version": "15.7.1",
|
|
4
4
|
"description": "The core SDK for CLI apps in the Zapier Developer Platform.",
|
|
5
5
|
"repository": "zapier/zapier-platform",
|
|
6
6
|
"homepage": "https://platform.zapier.com/",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"node-fetch": "2.6.7",
|
|
53
53
|
"oauth-sign": "0.9.0",
|
|
54
54
|
"semver": "7.5.2",
|
|
55
|
-
"zapier-platform-schema": "15.7.
|
|
55
|
+
"zapier-platform-schema": "15.7.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/node-fetch": "^2.6.11",
|
|
@@ -123,7 +123,7 @@ const toStdout = (event, msg, data) => {
|
|
|
123
123
|
const attemptFindSecretsInStr = (s, isGettingNewSecret) => {
|
|
124
124
|
let parsedRespContent;
|
|
125
125
|
try {
|
|
126
|
-
parsedRespContent = JSON.parse(s);
|
|
126
|
+
parsedRespContent = JSON.parse(s) || {};
|
|
127
127
|
} catch {
|
|
128
128
|
return [];
|
|
129
129
|
}
|