@frontegg/rest-api 3.2.1 → 3.2.2-alpha.11551682009
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/auth/index.js +4 -0
- package/auth/interfaces.d.ts +1 -0
- package/index.js +1 -1
- package/node/auth/index.js +4 -0
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/index.js
CHANGED
|
@@ -502,6 +502,10 @@ export class AuthenticationApi extends BaseApiClient {
|
|
|
502
502
|
queryParams.code_verifier = params.codeVerifier;
|
|
503
503
|
}
|
|
504
504
|
|
|
505
|
+
if (params.codeVerifierPkce) {
|
|
506
|
+
queryParams.code_verifier_pkce = params.codeVerifierPkce;
|
|
507
|
+
}
|
|
508
|
+
|
|
505
509
|
if (params.state) {
|
|
506
510
|
queryParams.state = params.state;
|
|
507
511
|
}
|
package/auth/interfaces.d.ts
CHANGED
package/index.js
CHANGED
package/node/auth/index.js
CHANGED
|
@@ -585,6 +585,10 @@ class AuthenticationApi extends _BaseApiClient.BaseApiClient {
|
|
|
585
585
|
queryParams.code_verifier = params.codeVerifier;
|
|
586
586
|
}
|
|
587
587
|
|
|
588
|
+
if (params.codeVerifierPkce) {
|
|
589
|
+
queryParams.code_verifier_pkce = params.codeVerifierPkce;
|
|
590
|
+
}
|
|
591
|
+
|
|
588
592
|
if (params.state) {
|
|
589
593
|
queryParams.state = params.state;
|
|
590
594
|
}
|
package/node/index.js
CHANGED