Updates
This commit is contained in:
+3
-3
@@ -76,7 +76,7 @@ function queryDSQLAPI(_a) {
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred while parsing the response`,
|
msg: `An error occurred while parsing the response`,
|
||||||
error: error.message,
|
error: error.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -86,7 +86,7 @@ function queryDSQLAPI(_a) {
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred on the response`,
|
msg: `An error occurred on the response`,
|
||||||
error: err.message,
|
error: err.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -96,7 +96,7 @@ function queryDSQLAPI(_a) {
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred while making the request`,
|
msg: `An error occurred while making the request`,
|
||||||
error: err.message,
|
error: err.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
if (reqPayload) {
|
if (reqPayload) {
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ export default async function queryDSQLAPI<
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred while parsing the response`,
|
msg: `An error occurred while parsing the response`,
|
||||||
error: error.message,
|
error: error.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
} as APIResponseObject);
|
} as APIResponseObject);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -112,7 +112,7 @@ export default async function queryDSQLAPI<
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred on the response`,
|
msg: `An error occurred on the response`,
|
||||||
error: err.message,
|
error: err.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
} as APIResponseObject);
|
} as APIResponseObject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -124,7 +124,7 @@ export default async function queryDSQLAPI<
|
|||||||
payload: undefined,
|
payload: undefined,
|
||||||
msg: `An error occurred while making the request`,
|
msg: `An error occurred while making the request`,
|
||||||
error: err.message,
|
error: err.message,
|
||||||
errorData: requestOptions,
|
errorData: { requestOptions, grabedHostNames },
|
||||||
} as APIResponseObject);
|
} as APIResponseObject);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/datasquirel",
|
"name": "@moduletrace/datasquirel",
|
||||||
"version": "4.8.3",
|
"version": "4.8.4",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
Reference in New Issue
Block a user