@hubspot/local-dev-lib 1.8.0 → 1.9.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/api/projects.js +1 -1
- package/package.json +2 -1
package/api/projects.js
CHANGED
|
@@ -202,7 +202,7 @@ async function cloneApp(accountId, appId) {
|
|
|
202
202
|
exports.cloneApp = cloneApp;
|
|
203
203
|
async function checkCloneStatus(accountId, exportId) {
|
|
204
204
|
return http_1.default.get(accountId, {
|
|
205
|
-
url: `${MIGRATIONS_API_PATH}/exports
|
|
205
|
+
url: `${MIGRATIONS_API_PATH}/exports/${exportId}/status`,
|
|
206
206
|
});
|
|
207
207
|
}
|
|
208
208
|
exports.checkCloneStatus = checkCloneStatus;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/local-dev-lib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"./api/*": "./api/*.js",
|
|
52
52
|
"./errors/*": "./errors/*.js",
|
|
53
53
|
"./http": "./http/index.js",
|
|
54
|
+
"./http/*": "./http/*.js",
|
|
54
55
|
"./config": "./config/index.js",
|
|
55
56
|
"./constants/*": "./constants/*.js",
|
|
56
57
|
"./models/*": "./models/*.js"
|