authtara-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.
package/dist/react.js CHANGED
@@ -170,6 +170,8 @@ function AuthTaraProvider({
170
170
  }));
171
171
  const params = new URLSearchParams({
172
172
  response_type: "code",
173
+ provider,
174
+ // ← NEW: Pass provider for Clerk-style direct redirect
173
175
  client_id: appId,
174
176
  redirect_uri: callbackUrl,
175
177
  state,
package/dist/react.mjs CHANGED
@@ -132,6 +132,8 @@ function AuthTaraProvider({
132
132
  }));
133
133
  const params = new URLSearchParams({
134
134
  response_type: "code",
135
+ provider,
136
+ // ← NEW: Pass provider for Clerk-style direct redirect
135
137
  client_id: appId,
136
138
  redirect_uri: callbackUrl,
137
139
  state,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authtara-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "SDK Client untuk integrasi dengan DigitalSolution Platform - SSO, Billing, dan Metering",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",