@unito/integrations-platform-client 0.46.0 → 0.46.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/dist/src/index.cjs +3 -3
- package/package.json +2 -2
package/dist/src/index.cjs
CHANGED
|
@@ -17,7 +17,7 @@ function _interopNamespaceDefault(e) {
|
|
|
17
17
|
});
|
|
18
18
|
}
|
|
19
19
|
n.default = e;
|
|
20
|
-
return
|
|
20
|
+
return n;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
var Oazapfts__namespace = /*#__PURE__*/_interopNamespaceDefault(Oazapfts);
|
|
@@ -431,7 +431,7 @@ function getHealthAlive(opts) {
|
|
|
431
431
|
}));
|
|
432
432
|
}
|
|
433
433
|
|
|
434
|
-
var api =
|
|
434
|
+
var api = {
|
|
435
435
|
__proto__: null,
|
|
436
436
|
HttpError: HttpError,
|
|
437
437
|
createCredential: createCredential,
|
|
@@ -472,6 +472,6 @@ var api = /*#__PURE__*/Object.freeze({
|
|
|
472
472
|
updateProfile: updateProfile,
|
|
473
473
|
updateUser: updateUser,
|
|
474
474
|
updateWebhookSubscription: updateWebhookSubscription
|
|
475
|
-
}
|
|
475
|
+
};
|
|
476
476
|
|
|
477
477
|
module.exports = api;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integrations-platform-client",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.1",
|
|
4
4
|
"description": "The Unito Integrations Platform Client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prepare": "npm run compile",
|
|
24
24
|
"lint": "eslint --fix src test --ext .ts && prettier --write src test",
|
|
25
25
|
"compile:esm": "tsc",
|
|
26
|
-
"compile:cjs": "rollup dist/src/index.js --file dist/src/index.cjs --format cjs",
|
|
26
|
+
"compile:cjs": "rollup dist/src/index.js --file dist/src/index.cjs --format cjs --no-freeze",
|
|
27
27
|
"compile": "rm -rf dist && npm run compile:esm && npm run compile:cjs",
|
|
28
28
|
"test": "NODE_ENV=test node --loader ts-node/esm --test ./test/*.test.ts",
|
|
29
29
|
"test:debug": "NODE_ENV=test node --loader ts-node/esm --inspect-brk --test ./test/*.test.ts",
|