AAE-20447 Add new field to choose auth flow type for custom UIs (#9451)

* AAE-20447 Add new field to choose auth flow type for custom UIs

* AAE-20447 Rename property customUIAuthFlowType to DescriptorCustomUIAuthFlowType
This commit is contained in:
Amedeo Lepore 2024-03-22 11:08:56 +01:00 committed by GitHub
parent ff60cb594e
commit a03d61a304
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,6 +45,12 @@ export interface Descriptor {
version?: string;
runtimeBundleVersion?: string;
enableLocalDevelopment?: boolean;
customUIAuthFlowType?: DescriptorCustomUIAuthFlowType;
}
export enum DescriptorCustomUIAuthFlowType {
CODE = 'CODE',
IMPLICIT = 'IMPLICIT'
}
export interface DescriptorSecurity {