@unito/integration-sdk 2.1.0 → 2.1.2

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.
@@ -1,7 +1,7 @@
1
1
  import * as API from '@unito/integration-api';
2
2
  import Logger from './logger.js';
3
3
  import { Credentials } from '../middlewares/credentials.js';
4
- import { Secrets } from 'src/middlewares/secrets.js';
4
+ import { Secrets } from '../middlewares/secrets.js';
5
5
  import { Filter } from '../middlewares/filters.js';
6
6
  type Maybe<T> = T | null;
7
7
  type Empty = Record<string, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-sdk",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Integration SDK",
5
5
  "type": "module",
6
6
  "types": "dist/src/index.d.ts",
@@ -40,7 +40,6 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/busboy": "^1.5.4",
43
- "@types/express": "5.x",
44
43
  "@types/node": "20.x",
45
44
  "@typescript-eslint/eslint-plugin": "7.x",
46
45
  "@typescript-eslint/parser": "7.x",
@@ -52,9 +51,10 @@
52
51
  "typescript": "5.x"
53
52
  },
54
53
  "dependencies": {
54
+ "@types/express": "5.x",
55
55
  "@unito/integration-api": "4.x",
56
56
  "busboy": "^1.6.0",
57
- "cachette": "2.x",
57
+ "cachette": "4.x",
58
58
  "express": "^5.x",
59
59
  "form-data": "^4.0.0"
60
60
  },
@@ -2,7 +2,7 @@
2
2
  import * as API from '@unito/integration-api';
3
3
  import Logger from './logger.js';
4
4
  import { Credentials } from '../middlewares/credentials.js';
5
- import { Secrets } from 'src/middlewares/secrets.js';
5
+ import { Secrets } from '../middlewares/secrets.js';
6
6
  import { Filter } from '../middlewares/filters.js';
7
7
 
8
8
  type Maybe<T> = T | null;
package/tsconfig.json CHANGED
@@ -21,7 +21,6 @@
21
21
  "noUnusedLocals": true,
22
22
  "noUnusedParameters": true,
23
23
  "outDir": "./dist",
24
- "skipLibCheck": true,
25
24
  "strict": true
26
25
  },
27
26
  "include": ["src/**/*", "test/**/*"],