File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
etc/api/angular_devkit/core/src
packages/angular_devkit/core/src/json/schema Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -715,6 +715,7 @@ export interface PromptDefinition {
715
715
} > ;
716
716
message : string ;
717
717
multiselect ?: boolean ;
718
+ propertyTypes : Set < string > ;
718
719
raw ?: string | JsonObject ;
719
720
type : string ;
720
721
validator ?: ( value : JsonValue ) => boolean | string | Promise < boolean | string > ;
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export interface PromptDefinition {
105
105
106
106
raw ?: string | JsonObject ;
107
107
multiselect ?: boolean ;
108
+ propertyTypes : Set < string > ;
108
109
}
109
110
110
111
export type PromptProvider = ( definitions : Array < PromptDefinition > )
Original file line number Diff line number Diff line change @@ -590,6 +590,7 @@ export class CoreSchemaRegistry implements SchemaRegistry {
590
590
raw : schema ,
591
591
items,
592
592
multiselect,
593
+ propertyTypes,
593
594
default :
594
595
typeof ( parentSchema as JsonObject ) . default == 'object' &&
595
596
( parentSchema as JsonObject ) . default !== null &&
You can’t perform that action at this time.
0 commit comments