-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from openfort-xyz/fix/refresh-token
Feat/refresh token
- Loading branch information
Showing
25 changed files
with
386 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
packages/internal/openapi-clients/src/backend/models/discord-oauth-config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Openfort API | ||
* Complete Openfort API references and guides can be found at: https://openfort.xyz/docs | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* Contact: founders@openfort.xyz | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { OAuthProviderDISCORD } from './oauth-provider-discord'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface DiscordOAuthConfig | ||
*/ | ||
export interface DiscordOAuthConfig { | ||
/** | ||
* Enable OAuth provider. | ||
* @type {boolean} | ||
* @memberof DiscordOAuthConfig | ||
*/ | ||
'enabled': boolean; | ||
/** | ||
* | ||
* @type {OAuthProviderDISCORD} | ||
* @memberof DiscordOAuthConfig | ||
*/ | ||
'provider': OAuthProviderDISCORD; | ||
/** | ||
* Discord API client ID. | ||
* @type {string} | ||
* @memberof DiscordOAuthConfig | ||
*/ | ||
'clientId': string; | ||
/** | ||
* Discord API client secret. | ||
* @type {string} | ||
* @memberof DiscordOAuthConfig | ||
*/ | ||
'clientSecret': string; | ||
} | ||
|
||
|
||
|
53 changes: 53 additions & 0 deletions
53
packages/internal/openapi-clients/src/backend/models/epic-games-oauth-config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Openfort API | ||
* Complete Openfort API references and guides can be found at: https://openfort.xyz/docs | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* Contact: founders@openfort.xyz | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { OAuthProviderEPICGAMES } from './oauth-provider-epicgames'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface EpicGamesOAuthConfig | ||
*/ | ||
export interface EpicGamesOAuthConfig { | ||
/** | ||
* Enable OAuth provider. | ||
* @type {boolean} | ||
* @memberof EpicGamesOAuthConfig | ||
*/ | ||
'enabled': boolean; | ||
/** | ||
* | ||
* @type {OAuthProviderEPICGAMES} | ||
* @memberof EpicGamesOAuthConfig | ||
*/ | ||
'provider': OAuthProviderEPICGAMES; | ||
/** | ||
* Epic Games API client ID. | ||
* @type {string} | ||
* @memberof EpicGamesOAuthConfig | ||
*/ | ||
'clientId': string; | ||
/** | ||
* Epic Games API client secret. | ||
* @type {string} | ||
* @memberof EpicGamesOAuthConfig | ||
*/ | ||
'clientSecret': string; | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.