-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SDK-4646] Add MFA tenant setting and handle deprecations (#960)
- Loading branch information
Showing
8 changed files
with
227 additions
and
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// These can be removed in the next major. | ||
import { | ||
EmailProviderCreate, | ||
EmailProviderCreateNameEnum, | ||
EmailProviderUpdate, | ||
EmailProviderUpdateNameEnum, | ||
EmailProviderUpdateCredentials, | ||
ClientCreateOidcLogout, | ||
ClientOidcLogout, | ||
ClientUpdateOidcLogout, | ||
} from './management/__generated/models/index.js'; | ||
|
||
/** | ||
* @deprecated Use {@link EmailProviderUpdate} instead. | ||
*/ | ||
export type PatchProviderRequest = EmailProviderUpdate; | ||
/** | ||
* @deprecated Use {@link EmailProviderUpdateNameEnum} instead. | ||
*/ | ||
export const PatchProviderRequestNameEnum = EmailProviderUpdateNameEnum; | ||
/** | ||
* @deprecated Use {@link EmailProviderCreate} instead. | ||
*/ | ||
export type PostProviderRequest = EmailProviderCreate; | ||
/** | ||
* @deprecated Use {@link EmailProviderCreateNameEnum} instead. | ||
*/ | ||
export const PostProviderRequestNameEnum = EmailProviderCreateNameEnum; | ||
/** | ||
* @deprecated Use {@link EmailProviderUpdateCredentials} instead. | ||
*/ | ||
export type PostProviderRequestCredentials = EmailProviderUpdateCredentials; | ||
/** | ||
* @deprecated Use {@link ClientCreateOidcLogout} instead. | ||
*/ | ||
export type ClientCreateOidcBackchannelLogout = ClientCreateOidcLogout; | ||
/** | ||
* @deprecated Use {@link ClientOidcLogout} instead. | ||
*/ | ||
export type ClientOidcBackchannelLogout = ClientOidcLogout; | ||
/** | ||
* @deprecated Use {@link ClientUpdateOidcLogout} instead. | ||
*/ | ||
export type ClientUpdateOidcBackchannelLogout = ClientUpdateOidcLogout; |
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
Oops, something went wrong.