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

View File

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