@microsoft/teamsfx-api
Advanced tools
Comparing version 0.7.1-alpha.42363f5f.0 to 0.7.1-alpha.4d848766.0
@@ -31,2 +31,3 @@ /** | ||
accessAsUserScopeId?: string; | ||
[k: string]: unknown; | ||
}; | ||
@@ -45,2 +46,3 @@ /** | ||
resourceGroupName?: string; | ||
[k: string]: unknown; | ||
}; | ||
@@ -59,2 +61,3 @@ /** | ||
appPassword?: string; | ||
[k: string]: unknown; | ||
}; | ||
@@ -92,3 +95,4 @@ /** | ||
skipAddingSqlUser?: boolean; | ||
[k: string]: unknown; | ||
} | ||
//# sourceMappingURL=envConfig.d.ts.map |
@@ -39,4 +39,3 @@ { | ||
"accessAsUserScopeId": ["clientId", "clientSecret", "objectId"] | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
@@ -58,4 +57,3 @@ "azure": { | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
@@ -80,4 +78,3 @@ "bot": { | ||
"appPassword": ["appId"] | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
@@ -124,4 +121,3 @@ "manifest": { | ||
}, | ||
"additionalProperties": false, | ||
"required": ["manifest"] | ||
} |
@@ -100,2 +100,3 @@ import { OptionItem } from "./qm"; | ||
ignoreEnvInfo?: boolean; | ||
askEnvSelect?: boolean; | ||
} | ||
@@ -102,0 +103,0 @@ export interface ProjectConfig { |
@@ -121,3 +121,3 @@ import { Result } from "neverthrow"; | ||
*/ | ||
publishApplication?: (ctx: Context, inputs: Inputs, provisionInputConfig: Json, provisionOutputs: Json, tokenProvider: AppStudioTokenProvider) => Promise<Result<Void, FxError>>; | ||
publishApplication?: (ctx: Context, inputs: Inputs, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: AppStudioTokenProvider) => Promise<Result<Void, FxError>>; | ||
/** | ||
@@ -146,6 +146,6 @@ * provisionLocalResource is a special lifecycle, called when users press F5 in vscode. | ||
getQuestionsForScaffolding?: (ctx: Context, inputs: Inputs) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
executeUserTask?: (ctx: Context, inputs: Inputs, func: Func) => Promise<Result<unknown, FxError>>; | ||
getQuestions?: (ctx: Context, inputs: Inputs) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
getQuestionsForUserTask?: (ctx: Context, inputs: Inputs, func: Func) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
executeUserTask?: (ctx: Context, inputs: Inputs, func: Func, envInfo: EnvInfoV2, tokenProvider: TokenProvider) => Promise<Result<unknown, FxError>>; | ||
getQuestions?: (ctx: Context, inputs: Inputs, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: TokenProvider) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
getQuestionsForUserTask?: (ctx: Context, inputs: Inputs, func: Func, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: TokenProvider) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
} | ||
//# sourceMappingURL=resourcePlugin.d.ts.map |
@@ -66,3 +66,3 @@ import { Result } from "neverthrow"; | ||
*/ | ||
publishApplication: (ctx: Context, inputs: Inputs, provisionInputConfig: Json, provisionOutputs: Json, tokenProvider: AppStudioTokenProvider) => Promise<Result<Void, FxError>>; | ||
publishApplication: (ctx: Context, inputs: Inputs, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: AppStudioTokenProvider) => Promise<Result<Void, FxError>>; | ||
/** | ||
@@ -89,3 +89,3 @@ * provisionLocalResource is a special lifecycle, called when users press F5 in vscode. | ||
*/ | ||
executeUserTask?: (ctx: Context, inputs: Inputs, func: Func, tokenProvider: TokenProvider) => Promise<Result<unknown, FxError>>; | ||
executeUserTask?: (ctx: Context, inputs: Inputs, func: Func, envInfo: EnvInfoV2, tokenProvider: TokenProvider) => Promise<Result<unknown, FxError>>; | ||
/** | ||
@@ -102,5 +102,5 @@ * for env management | ||
listCollaborator?: (ctx: Context, inputs: Inputs, tokenProvider: TokenProvider) => Promise<Result<any, FxError>>; | ||
getQuestions?: (ctx: Context, inputs: Inputs) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
getQuestionsForUserTask?: (ctx: Context, inputs: Inputs, func: Func) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
getQuestions?: (ctx: Context, inputs: Inputs, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: TokenProvider) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
getQuestionsForUserTask?: (ctx: Context, inputs: Inputs, func: Func, envInfo: DeepReadonly<EnvInfoV2>, tokenProvider: TokenProvider) => Promise<Result<QTreeNode | undefined, FxError>>; | ||
} | ||
//# sourceMappingURL=solutionPlugin.d.ts.map |
{ | ||
"name": "@microsoft/teamsfx-api", | ||
"version": "0.7.1-alpha.42363f5f.0", | ||
"version": "0.7.1-alpha.4d848766.0", | ||
"description": "teamsfx framework api", | ||
@@ -67,3 +67,3 @@ "main": "build/index.js", | ||
}, | ||
"gitHead": "32c57fa32538f1ed381db9a110146b59cbe7bc4a", | ||
"gitHead": "12428bf641a976d02569977aa003f9b06c29ee70", | ||
"publishConfig": { | ||
@@ -70,0 +70,0 @@ "access": "public" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
245087
3961