mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Enabled dynamic options to use CategoryValue type. SQL MIAA deploy now up to parity with Portal. (#18279)
* Removed extra backup policy field in MIAA deploy. Re-ordered fields in MIAA deploy for parity. * Enabled dynamic options to work with categoryvalue type objects. * Removed defaultValue CategoryValue typing, fixed some type checks. * Added a clarifying comment to setModelValues and removed unnecessary type from defaultValue * Removed CategoryValue from selection * Undo parenthesis for single type
This commit is contained in:
@@ -24,7 +24,7 @@ declare module 'resource-deployment' {
|
||||
getIsPassword?: (variableName: string) => boolean | Promise<boolean>;
|
||||
}
|
||||
|
||||
export type InputValueType = string | number | boolean | undefined;
|
||||
export type InputValueType = string | number | boolean | azdata.CategoryValue | undefined;
|
||||
|
||||
export interface IValueProvider {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user