nocal-auth-sdk 0.1.0 → 0.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/NocalAuth.js CHANGED
@@ -23,7 +23,7 @@ export class NocalAuth {
23
23
  this.extraParams = options.extraParams;
24
24
  }
25
25
  getAuthorizeUrl() {
26
- const baseUrl = `${this.issuerOrigin}/authorize`;
26
+ const baseUrl = `${this.issuerOrigin}`;
27
27
  const query = buildQuery({
28
28
  client_id: this.clientId,
29
29
  redirect_uri: this.redirectUri,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nocal-auth-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Nocal Auth - client-side SDK for Login with Nocal (popup flow)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",