@unito/integrations-platform-client 0.48.4 → 1.0.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/addons.d.ts +154 -0
- package/dist/src/addons.js +182 -0
- package/dist/src/api.d.ts +813 -95
- package/dist/src/api.js +76 -151
- package/dist/src/index.cjs +252 -146
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/package.json +2 -2
package/dist/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
export * from './api.js';
|
|
2
|
+
export * from './addons.js';
|
package/dist/src/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
export * from './api.js';
|
|
2
|
+
export * from './addons.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integrations-platform-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.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 --no-freeze
|
|
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",
|