File tree Expand file tree Collapse file tree 3 files changed +0
-66
lines changed
src/management/__generated Expand file tree Collapse file tree 3 files changed +0
-66
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ import {
2828 PromptsManager ,
2929 RefreshTokensManager ,
3030 ResourceServersManager ,
31- RiskAssessmentManager ,
3231 RiskAssessmentsManager ,
3332 RolesManager ,
3433 RulesManager ,
@@ -73,7 +72,6 @@ export abstract class ManagementClientBase {
7372 public readonly prompts = new PromptsManager ( this . configuration ) ;
7473 public readonly refreshTokens = new RefreshTokensManager ( this . configuration ) ;
7574 public readonly resourceServers = new ResourceServersManager ( this . configuration ) ;
76- public readonly riskAssessment = new RiskAssessmentManager ( this . configuration ) ;
7775 public readonly riskAssessments = new RiskAssessmentsManager ( this . configuration ) ;
7876 public readonly roles = new RolesManager ( this . configuration ) ;
7977 public readonly rules = new RulesManager ( this . configuration ) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export * from './organizations-manager.js';
2424export * from './prompts-manager.js' ;
2525export * from './refresh-tokens-manager.js' ;
2626export * from './resource-servers-manager.js' ;
27- export * from './risk-assessment-manager.js' ;
2827export * from './risk-assessments-manager.js' ;
2928export * from './roles-manager.js' ;
3029export * from './rules-manager.js' ;
Original file line number Diff line number Diff line change @@ -5617,40 +5617,6 @@ export interface GetClients200ResponseOneOf1 {
56175617 */
56185618 clients: Array<Client>;
56195619}
5620- /**
5621- *
5622- */
5623- export interface GetConfig200Response {
5624- /**
5625- *
5626- *
5627- */
5628- BeforeLoginPrompt?: boolean;
5629- /**
5630- *
5631- *
5632- */
5633- BeforeLoginPromptMonitoring?: boolean;
5634- /**
5635- *
5636- *
5637- */
5638- AfterAuthentication?: boolean;
5639- /**
5640- *
5641- *
5642- */
5643- botDetectionLevel?: GetConfig200ResponseBotDetectionLevelEnum;
5644- }
5645-
5646- export const GetConfig200ResponseBotDetectionLevelEnum = {
5647- low: 'low',
5648- medium: 'medium',
5649- high: 'high',
5650- } as const;
5651- export type GetConfig200ResponseBotDetectionLevelEnum =
5652- (typeof GetConfig200ResponseBotDetectionLevelEnum)[keyof typeof GetConfig200ResponseBotDetectionLevelEnum];
5653-
56545620/**
56555621 *
56565622 */
@@ -10094,35 +10060,6 @@ export interface PatchClientsRequestInner {
1009410060 */
1009510061 status: boolean;
1009610062}
10097- /**
10098- *
10099- */
10100- export type PatchConfigRequest = PatchConfigRequestOneOf | PatchConfigRequestOneOf1;
10101- /**
10102- *
10103- */
10104- export interface PatchConfigRequestOneOf {
10105- /**
10106- * Enables Tenant logs for Before Login Prompt Assessments
10107- *
10108- */
10109- BeforeLoginPromptMonitoring?: boolean;
10110- /**
10111- * Sets the bot detection risk tolerance
10112- *
10113- */
10114- botDetectionLevel?: string;
10115- }
10116- /**
10117- *
10118- */
10119- export interface PatchConfigRequestOneOf1 {
10120- /**
10121- * Enables Assessments after a successful user authentication takes place
10122- *
10123- */
10124- AfterAuthentication: boolean;
10125- }
1012610063/**
1012710064 *
1012810065 */
You can’t perform that action at this time.
0 commit comments