@unito/integration-sdk 1.8.1 → 1.8.3
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 +1 -1
- package/dist/src/integration.js +1 -1
- package/package.json +2 -2
- package/src/integration.ts +1 -1
package/dist/src/index.cjs
CHANGED
|
@@ -1061,7 +1061,7 @@ class Integration {
|
|
|
1061
1061
|
// Express Server initialization
|
|
1062
1062
|
const app = express();
|
|
1063
1063
|
// Parse query strings with https://github.com/ljharb/qs.
|
|
1064
|
-
app.set('query parser', '
|
|
1064
|
+
app.set('query parser', 'simple');
|
|
1065
1065
|
app.use(express.json());
|
|
1066
1066
|
// Must be one of the first handlers (to catch all the errors).
|
|
1067
1067
|
app.use(onFinish);
|
package/dist/src/integration.js
CHANGED
|
@@ -111,7 +111,7 @@ export default class Integration {
|
|
|
111
111
|
// Express Server initialization
|
|
112
112
|
const app = express();
|
|
113
113
|
// Parse query strings with https://github.com/ljharb/qs.
|
|
114
|
-
app.set('query parser', '
|
|
114
|
+
app.set('query parser', 'simple');
|
|
115
115
|
app.use(express.json());
|
|
116
116
|
// Must be one of the first handlers (to catch all the errors).
|
|
117
117
|
app.use(finishMiddleware);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integration-sdk",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"description": "Integration SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"typescript": "5.x"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@unito/integration-api": "
|
|
49
|
+
"@unito/integration-api": "1.x",
|
|
50
50
|
"busboy": "^1.6.0",
|
|
51
51
|
"cachette": "2.x",
|
|
52
52
|
"express": "^5.x",
|
package/src/integration.ts
CHANGED
|
@@ -124,7 +124,7 @@ export default class Integration {
|
|
|
124
124
|
const app: express.Application = express();
|
|
125
125
|
|
|
126
126
|
// Parse query strings with https://github.com/ljharb/qs.
|
|
127
|
-
app.set('query parser', '
|
|
127
|
+
app.set('query parser', 'simple');
|
|
128
128
|
|
|
129
129
|
app.use(express.json());
|
|
130
130
|
|