@unito/integration-sdk 1.1.0 → 1.1.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.
@@ -17,7 +17,7 @@ type UpdateItemBody = API.UpdateItemRequestPayload;
17
17
  *
18
18
  * It contains the parsed request params, query string, credentials, secrets, etc.
19
19
  */
20
- export type Context<P extends Maybe<Params> = Params, Q extends Maybe<Query> = Query> = {
20
+ export type Context<P extends Maybe<Params> = Maybe<Params>, Q extends Maybe<Query> = Maybe<Query>> = {
21
21
  /**
22
22
  * The parsed credentials associated with the request through the X-Unito-Credentials header.
23
23
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Integration SDK",
5
5
  "type": "module",
6
6
  "types": "dist/src/index.d.ts",
@@ -20,7 +20,7 @@ type UpdateItemBody = API.UpdateItemRequestPayload;
20
20
  *
21
21
  * It contains the parsed request params, query string, credentials, secrets, etc.
22
22
  */
23
- export type Context<P extends Maybe<Params> = Params, Q extends Maybe<Query> = Query> = {
23
+ export type Context<P extends Maybe<Params> = Maybe<Params>, Q extends Maybe<Query> = Maybe<Query>> = {
24
24
  /**
25
25
  * The parsed credentials associated with the request through the X-Unito-Credentials header.
26
26
  *