mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-28 07:40:30 -04:00
Fixing bug where SQLCMD vars weren't getting JSONified (#23082)
* changing param for sqlcmdvars back to Record since Json.stringify doesn't handle Maps * swapping over savePublishProfile
This commit is contained in:
@@ -515,7 +515,7 @@ export interface DeployParams {
|
||||
packageFilePath: string;
|
||||
databaseName: string;
|
||||
upgradeExisting: boolean;
|
||||
sqlCommandVariableValues?: Map<string, string>;
|
||||
sqlCommandVariableValues?: Record<string, string>;
|
||||
deploymentOptions?: mssql.DeploymentOptions;
|
||||
ownerUri: string;
|
||||
taskExecutionMode: TaskExecutionMode;
|
||||
@@ -524,7 +524,7 @@ export interface DeployParams {
|
||||
export interface GenerateDeployScriptParams {
|
||||
packageFilePath: string;
|
||||
databaseName: string;
|
||||
sqlCommandVariableValues?: Map<string, string>;
|
||||
sqlCommandVariableValues?: Record<string, string>;
|
||||
deploymentOptions?: mssql.DeploymentOptions
|
||||
ownerUri: string;
|
||||
taskExecutionMode: TaskExecutionMode;
|
||||
@@ -555,7 +555,7 @@ export interface SavePublishProfileParams {
|
||||
profilePath: string;
|
||||
databaseName: string;
|
||||
connectionString: string;
|
||||
sqlCommandVariableValues?: Map<string, string>;
|
||||
sqlCommandVariableValues?: Record<string, string>;
|
||||
deploymentOptions?: mssql.DeploymentOptions;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user