@frontegg/rest-api 3.0.4 → 3.0.5
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/interfaces.d.ts +4 -3
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/interfaces.d.ts
CHANGED
|
@@ -322,9 +322,10 @@ export interface ISSOConfiguration {
|
|
|
322
322
|
groups: ISamlRolesGroup[];
|
|
323
323
|
}
|
|
324
324
|
export interface IExchangeOAuthTokens {
|
|
325
|
-
code
|
|
326
|
-
|
|
327
|
-
|
|
325
|
+
code?: string;
|
|
326
|
+
code_verifier?: string;
|
|
327
|
+
redirect_uri?: string;
|
|
328
|
+
refresh_token?: string;
|
|
328
329
|
}
|
|
329
330
|
export interface IOAuthTokenResponse {
|
|
330
331
|
access_token: string;
|
package/index.js
CHANGED
package/node/index.js
CHANGED