@slates/provider-handler 1.0.0-rc.10 → 1.0.0-rc.11
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/index.cjs +1 -0
- package/dist/index.module.js +1 -0
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -590,6 +590,7 @@ var createProviderHandler = (slate, listeners) => (0, import_proto.createSlatesP
|
|
|
590
590
|
clientId: params.clientId,
|
|
591
591
|
clientSecret: params.clientSecret,
|
|
592
592
|
scopes: params.scopes,
|
|
593
|
+
callbackParams: params.callbackParams || {},
|
|
593
594
|
callbackState: params.callbackState || {}
|
|
594
595
|
})
|
|
595
596
|
)
|
package/dist/index.module.js
CHANGED
|
@@ -563,6 +563,7 @@ var createProviderHandler = (slate, listeners) => createSlatesProviderProtoHandl
|
|
|
563
563
|
clientId: params.clientId,
|
|
564
564
|
clientSecret: params.clientSecret,
|
|
565
565
|
scopes: params.scopes,
|
|
566
|
+
callbackParams: params.callbackParams || {},
|
|
566
567
|
callbackState: params.callbackState || {}
|
|
567
568
|
})
|
|
568
569
|
)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slates/provider-handler",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@lowerdeck/error": "^1.1.0",
|
|
35
35
|
"@slates/proto": "1.0.0-rc.9",
|
|
36
|
-
"@slates/provider": "1.0.0-rc.
|
|
36
|
+
"@slates/provider": "1.0.0-rc.12",
|
|
37
37
|
"zod": "^4.2.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -539,6 +539,7 @@ export let createProviderHandler = <ConfigType extends {}, AuthType extends {}>(
|
|
|
539
539
|
clientId: params.clientId,
|
|
540
540
|
clientSecret: params.clientSecret,
|
|
541
541
|
scopes: params.scopes,
|
|
542
|
+
callbackParams: params.callbackParams || {},
|
|
542
543
|
callbackState: params.callbackState || {}
|
|
543
544
|
})
|
|
544
545
|
)
|