@microsoft/teamsfx-core 3.0.13 → 3.0.14-alpha.1ba1d62e58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/client/teamsGraphClient.d.ts +3 -0
- package/build/client/teamsGraphClient.d.ts.map +1 -1
- package/build/client/teamsGraphClient.js +17 -0
- package/build/client/teamsGraphClient.js.map +1 -1
- package/build/common/featureFlags.d.ts +12 -2
- package/build/common/featureFlags.d.ts.map +1 -1
- package/build/common/featureFlags.js +15 -3
- package/build/common/featureFlags.js.map +1 -1
- package/build/common/projectSettingsHelper.d.ts +0 -2
- package/build/common/projectSettingsHelper.d.ts.map +1 -1
- package/build/common/projectSettingsHelper.js +1 -56
- package/build/common/projectSettingsHelper.js.map +1 -1
- package/build/common/telemetry.d.ts +4 -15
- package/build/common/telemetry.d.ts.map +1 -1
- package/build/common/telemetry.js +5 -18
- package/build/common/telemetry.js.map +1 -1
- package/build/common/templates-config.json +8 -2
- package/build/component/configManager/validator.d.ts.map +1 -1
- package/build/component/configManager/validator.js +2 -0
- package/build/component/configManager/validator.js.map +1 -1
- package/build/component/coordinator/index.d.ts.map +1 -1
- package/build/component/coordinator/index.js +5 -1
- package/build/component/coordinator/index.js.map +1 -1
- package/build/component/driver/copilotAgent/interfaces/PublishArgs.d.ts +14 -0
- package/build/component/driver/copilotAgent/interfaces/PublishArgs.d.ts.map +1 -0
- package/build/component/driver/copilotAgent/interfaces/PublishArgs.js +5 -0
- package/build/component/driver/copilotAgent/interfaces/PublishArgs.js.map +1 -0
- package/build/component/driver/copilotAgent/publish.d.ts +16 -0
- package/build/component/driver/copilotAgent/publish.d.ts.map +1 -0
- package/build/component/driver/copilotAgent/publish.js +175 -0
- package/build/component/driver/copilotAgent/publish.js.map +1 -0
- package/build/component/driver/dcr/create.d.ts +10 -0
- package/build/component/driver/dcr/create.d.ts.map +1 -0
- package/build/component/driver/dcr/create.js +142 -0
- package/build/component/driver/dcr/create.js.map +1 -0
- package/build/component/driver/dcr/error/dcrNameTooLong.d.ts +5 -0
- package/build/component/driver/dcr/error/dcrNameTooLong.d.ts.map +1 -0
- package/build/component/driver/dcr/error/dcrNameTooLong.js +21 -0
- package/build/component/driver/dcr/error/dcrNameTooLong.js.map +1 -0
- package/build/component/driver/dcr/error/dcrWellKnownInvalid.d.ts +5 -0
- package/build/component/driver/dcr/error/dcrWellKnownInvalid.d.ts.map +1 -0
- package/build/component/driver/dcr/error/dcrWellKnownInvalid.js +21 -0
- package/build/component/driver/dcr/error/dcrWellKnownInvalid.js.map +1 -0
- package/build/component/driver/dcr/interface/createDcrArgs.d.ts +9 -0
- package/build/component/driver/dcr/interface/createDcrArgs.d.ts.map +1 -0
- package/build/component/driver/dcr/interface/createDcrArgs.js +5 -0
- package/build/component/driver/dcr/interface/createDcrArgs.js.map +1 -0
- package/build/component/driver/dcr/interface/createDcrOutputs.d.ts +7 -0
- package/build/component/driver/dcr/interface/createDcrOutputs.d.ts.map +1 -0
- package/build/component/driver/dcr/interface/createDcrOutputs.js +10 -0
- package/build/component/driver/dcr/interface/createDcrOutputs.js.map +1 -0
- package/build/component/driver/dcr/utility/constants.d.ts +7 -0
- package/build/component/driver/dcr/utility/constants.d.ts.map +1 -0
- package/build/component/driver/dcr/utility/constants.js +12 -0
- package/build/component/driver/dcr/utility/constants.js.map +1 -0
- package/build/component/driver/index.d.ts +2 -0
- package/build/component/driver/index.d.ts.map +1 -1
- package/build/component/driver/index.js +2 -0
- package/build/component/driver/index.js.map +1 -1
- package/build/component/driver/teamsApp/constants.d.ts +1 -0
- package/build/component/driver/teamsApp/constants.d.ts.map +1 -1
- package/build/component/driver/teamsApp/constants.js +1 -0
- package/build/component/driver/teamsApp/constants.js.map +1 -1
- package/build/component/driver/teamsApp/createAppPackage.d.ts +2 -0
- package/build/component/driver/teamsApp/createAppPackage.d.ts.map +1 -1
- package/build/component/driver/teamsApp/createAppPackage.js +51 -6
- package/build/component/driver/teamsApp/createAppPackage.js.map +1 -1
- package/build/component/driver/teamsApp/interfaces/DcrRegistration.d.ts +10 -0
- package/build/component/driver/teamsApp/interfaces/DcrRegistration.d.ts.map +1 -0
- package/build/component/driver/teamsApp/interfaces/DcrRegistration.js +5 -0
- package/build/component/driver/teamsApp/interfaces/DcrRegistration.js.map +1 -0
- package/build/component/driver/teamsApp/publishAppPackage.d.ts +0 -2
- package/build/component/driver/teamsApp/publishAppPackage.d.ts.map +1 -1
- package/build/component/driver/teamsApp/publishAppPackage.js +2 -51
- package/build/component/driver/teamsApp/publishAppPackage.js.map +1 -1
- package/build/component/driver/teamsApp/utils/ManifestUtils.d.ts +1 -1
- package/build/component/driver/teamsApp/utils/ManifestUtils.d.ts.map +1 -1
- package/build/component/driver/teamsApp/utils/ManifestUtils.js +10 -2
- package/build/component/driver/teamsApp/utils/ManifestUtils.js.map +1 -1
- package/build/component/driver/teamsApp/utils/McpCertVerification.d.ts +13 -0
- package/build/component/driver/teamsApp/utils/McpCertVerification.d.ts.map +1 -0
- package/build/component/driver/teamsApp/utils/McpCertVerification.js +65 -0
- package/build/component/driver/teamsApp/utils/McpCertVerification.js.map +1 -0
- package/build/component/driver/teamsApp/validate.js +1 -1
- package/build/component/driver/teamsApp/validate.js.map +1 -1
- package/build/component/generator/declarativeAgent/generator.d.ts.map +1 -1
- package/build/component/generator/declarativeAgent/generator.js +1 -2
- package/build/component/generator/declarativeAgent/generator.js.map +1 -1
- package/build/component/generator/defaultGenerator.d.ts.map +1 -1
- package/build/component/generator/defaultGenerator.js +14 -1
- package/build/component/generator/defaultGenerator.js.map +1 -1
- package/build/component/generator/error.d.ts +3 -0
- package/build/component/generator/error.d.ts.map +1 -1
- package/build/component/generator/error.js +7 -1
- package/build/component/generator/error.js.map +1 -1
- package/build/component/generator/officeAddin/generator.d.ts +8 -0
- package/build/component/generator/officeAddin/generator.d.ts.map +1 -1
- package/build/component/generator/officeAddin/generator.js +47 -0
- package/build/component/generator/officeAddin/generator.js.map +1 -1
- package/build/component/generator/openPlugin/authorParser.d.ts +8 -0
- package/build/component/generator/openPlugin/authorParser.d.ts.map +1 -0
- package/build/component/generator/openPlugin/authorParser.js +49 -0
- package/build/component/generator/openPlugin/authorParser.js.map +1 -0
- package/build/component/generator/openPlugin/deterministicId.d.ts +6 -0
- package/build/component/generator/openPlugin/deterministicId.d.ts.map +1 -0
- package/build/component/generator/openPlugin/deterministicId.js +31 -0
- package/build/component/generator/openPlugin/deterministicId.js.map +1 -0
- package/build/component/generator/openPlugin/exporter.d.ts +18 -0
- package/build/component/generator/openPlugin/exporter.d.ts.map +1 -0
- package/build/component/generator/openPlugin/exporter.js +233 -0
- package/build/component/generator/openPlugin/exporter.js.map +1 -0
- package/build/component/generator/openPlugin/iconStrategy.d.ts +8 -0
- package/build/component/generator/openPlugin/iconStrategy.d.ts.map +1 -0
- package/build/component/generator/openPlugin/iconStrategy.js +62 -0
- package/build/component/generator/openPlugin/iconStrategy.js.map +1 -0
- package/build/component/generator/openPlugin/importer.d.ts +25 -0
- package/build/component/generator/openPlugin/importer.d.ts.map +1 -0
- package/build/component/generator/openPlugin/importer.js +140 -0
- package/build/component/generator/openPlugin/importer.js.map +1 -0
- package/build/component/generator/openPlugin/mapper.d.ts +6 -0
- package/build/component/generator/openPlugin/mapper.d.ts.map +1 -0
- package/build/component/generator/openPlugin/mapper.js +141 -0
- package/build/component/generator/openPlugin/mapper.js.map +1 -0
- package/build/component/generator/openPlugin/parser.d.ts +3 -0
- package/build/component/generator/openPlugin/parser.d.ts.map +1 -0
- package/build/component/generator/openPlugin/parser.js +153 -0
- package/build/component/generator/openPlugin/parser.js.map +1 -0
- package/build/component/generator/openPlugin/placeholderPng.d.ts +6 -0
- package/build/component/generator/openPlugin/placeholderPng.d.ts.map +1 -0
- package/build/component/generator/openPlugin/placeholderPng.js +71 -0
- package/build/component/generator/openPlugin/placeholderPng.js.map +1 -0
- package/build/component/generator/openPlugin/textUtils.d.ts +12 -0
- package/build/component/generator/openPlugin/textUtils.d.ts.map +1 -0
- package/build/component/generator/openPlugin/textUtils.js +43 -0
- package/build/component/generator/openPlugin/textUtils.js.map +1 -0
- package/build/component/generator/openPlugin/types.d.ts +128 -0
- package/build/component/generator/openPlugin/types.d.ts.map +1 -0
- package/build/component/generator/openPlugin/types.js.map +1 -0
- package/build/component/generator/templates/templateNames.d.ts +2 -1
- package/build/component/generator/templates/templateNames.d.ts.map +1 -1
- package/build/component/generator/templates/templateNames.js +2 -0
- package/build/component/generator/templates/templateNames.js.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.d.ts.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.js +4 -1
- package/build/component/generator/templates/templateReplaceMap.js.map +1 -1
- package/build/component/generator/v4TemplateBridge.d.ts +29 -0
- package/build/component/generator/v4TemplateBridge.d.ts.map +1 -0
- package/build/component/generator/v4TemplateBridge.js +114 -0
- package/build/component/generator/v4TemplateBridge.js.map +1 -0
- package/build/component/m365/packageService.d.ts +5 -0
- package/build/component/m365/packageService.d.ts.map +1 -1
- package/build/component/m365/packageService.js +23 -1
- package/build/component/m365/packageService.js.map +1 -1
- package/build/core/FxCore.d.ts +2 -4
- package/build/core/FxCore.d.ts.map +1 -1
- package/build/core/FxCore.js +3 -62
- package/build/core/FxCore.js.map +1 -1
- package/build/core/FxCore.openPlugin.d.ts +23 -0
- package/build/core/FxCore.openPlugin.d.ts.map +1 -0
- package/build/core/FxCore.openPlugin.js +131 -0
- package/build/core/FxCore.openPlugin.js.map +1 -0
- package/build/core/middleware/concurrentLocker.d.ts.map +1 -1
- package/build/core/middleware/concurrentLocker.js +0 -3
- package/build/core/middleware/concurrentLocker.js.map +1 -1
- package/build/core/middleware/errorHandler.d.ts.map +1 -1
- package/build/core/middleware/errorHandler.js +9 -0
- package/build/core/middleware/errorHandler.js.map +1 -1
- package/build/core/middleware/utils/v3MigrationUtils.d.ts +1 -34
- package/build/core/middleware/utils/v3MigrationUtils.d.ts.map +1 -1
- package/build/core/middleware/utils/v3MigrationUtils.js +6 -245
- package/build/core/middleware/utils/v3MigrationUtils.js.map +1 -1
- package/build/question/constants.d.ts.map +1 -1
- package/build/question/constants.js +1 -6
- package/build/question/constants.js.map +1 -1
- package/build/question/inputs/ExportOpenPluginInputs.d.ts +10 -0
- package/build/question/inputs/ExportOpenPluginInputs.d.ts.map +1 -0
- package/build/question/inputs/ExportOpenPluginInputs.js +5 -0
- package/build/question/inputs/ExportOpenPluginInputs.js.map +1 -0
- package/build/question/inputs/ImportOpenPluginInputs.d.ts +28 -0
- package/build/question/inputs/ImportOpenPluginInputs.d.ts.map +1 -0
- package/build/question/inputs/ImportOpenPluginInputs.js +5 -0
- package/build/question/inputs/ImportOpenPluginInputs.js.map +1 -0
- package/build/question/inputs/index.d.ts +2 -0
- package/build/question/inputs/index.d.ts.map +1 -1
- package/build/question/inputs/index.js +2 -0
- package/build/question/inputs/index.js.map +1 -1
- package/build/question/options/ExportOpenPluginOptions.d.ts +4 -0
- package/build/question/options/ExportOpenPluginOptions.d.ts.map +1 -0
- package/build/question/options/ExportOpenPluginOptions.js +29 -0
- package/build/question/options/ExportOpenPluginOptions.js.map +1 -0
- package/build/question/options/ImportOpenPluginOptions.d.ts +4 -0
- package/build/question/options/ImportOpenPluginOptions.d.ts.map +1 -0
- package/build/question/options/ImportOpenPluginOptions.js +54 -0
- package/build/question/options/ImportOpenPluginOptions.js.map +1 -0
- package/build/question/options/index.d.ts +2 -0
- package/build/question/options/index.d.ts.map +1 -1
- package/build/question/options/index.js +2 -0
- package/build/question/options/index.js.map +1 -1
- package/build/question/scaffold/vsc/daProjectTypeNode.d.ts.map +1 -1
- package/build/question/scaffold/vsc/daProjectTypeNode.js +1 -3
- package/build/question/scaffold/vsc/daProjectTypeNode.js.map +1 -1
- package/build/v4/distribution/bundledFloor.d.ts +12 -0
- package/build/v4/distribution/bundledFloor.d.ts.map +1 -0
- package/build/v4/distribution/bundledFloor.js +80 -0
- package/build/v4/distribution/bundledFloor.js.map +1 -0
- package/build/v4/distribution/templateConfig.d.ts +53 -0
- package/build/v4/distribution/templateConfig.d.ts.map +1 -0
- package/build/v4/distribution/templateConfig.js +43 -0
- package/build/v4/distribution/templateConfig.js.map +1 -0
- package/build/v4/distribution/templatePackage.d.ts +29 -0
- package/build/v4/distribution/templatePackage.d.ts.map +1 -0
- package/build/v4/distribution/templatePackage.js +82 -0
- package/build/v4/distribution/templatePackage.js.map +1 -0
- package/build/v4/distribution/templateSource.d.ts +67 -0
- package/build/v4/distribution/templateSource.d.ts.map +1 -0
- package/build/v4/distribution/templateSource.js +220 -0
- package/build/v4/distribution/templateSource.js.map +1 -0
- package/build/v4/distribution/templateSourcePort.d.ts +50 -0
- package/build/v4/distribution/templateSourcePort.d.ts.map +1 -0
- package/build/v4/distribution/templateSourcePort.js +207 -0
- package/build/v4/distribution/templateSourcePort.js.map +1 -0
- package/build/v4/index.d.ts +13 -0
- package/build/v4/index.d.ts.map +1 -0
- package/build/v4/index.js +18 -0
- package/build/v4/index.js.map +1 -0
- package/package.json +4 -4
- package/resource/package.nls.cs.json +9 -1
- package/resource/package.nls.de.json +10 -2
- package/resource/package.nls.es.json +9 -1
- package/resource/package.nls.fr.json +9 -1
- package/resource/package.nls.it.json +10 -2
- package/resource/package.nls.ja.json +9 -1
- package/resource/package.nls.json +10 -13
- package/resource/package.nls.ko.json +9 -1
- package/resource/package.nls.pl.json +10 -2
- package/resource/package.nls.pt-BR.json +9 -1
- package/resource/package.nls.ru.json +10 -2
- package/resource/package.nls.tr.json +11 -3
- package/resource/package.nls.zh-Hans.json +9 -1
- package/resource/package.nls.zh-Hant.json +9 -1
- package/resource/yaml-schema/v1.12/yaml.schema.json +2132 -0
- package/resource/yaml-schema/v1.13/yaml.schema.json +2193 -0
- package/resource/yaml-schema/yaml.schema.json +124 -2
- package/templates/fallback/common.zip +0 -0
- package/templates/fallback/csharp.zip +0 -0
- package/templates/fallback/js.zip +0 -0
- package/templates/fallback/python.zip +0 -0
- package/templates/fallback/ts.zip +0 -0
- package/templates/metadata.zip +0 -0
- package/templates/ui/tdpNode.json +1 -2
- package/templates/ui/wizardNode.json +1 -2
- package/templates/v4/floor.json +3 -0
- package/templates/v4/templates.zip +0 -0
- package/build/core/middleware/projectMigratorV3.d.ts +0 -39
- package/build/core/middleware/projectMigratorV3.d.ts.map +0 -1
- package/build/core/middleware/projectMigratorV3.js +0 -694
- package/build/core/middleware/projectMigratorV3.js.map +0 -1
- package/build/core/middleware/projectVersionChecker.d.ts +0 -3
- package/build/core/middleware/projectVersionChecker.d.ts.map +0 -1
- package/build/core/middleware/projectVersionChecker.js +0 -60
- package/build/core/middleware/projectVersionChecker.js.map +0 -1
- package/build/core/middleware/types.d.ts +0 -9
- package/build/core/middleware/types.d.ts.map +0 -1
- package/build/core/middleware/types.js.map +0 -1
- package/build/core/middleware/utils/MigrationUtils.d.ts +0 -13
- package/build/core/middleware/utils/MigrationUtils.d.ts.map +0 -1
- package/build/core/middleware/utils/MigrationUtils.js +0 -212
- package/build/core/middleware/utils/MigrationUtils.js.map +0 -1
- package/build/core/middleware/utils/appYmlGenerator.d.ts +0 -34
- package/build/core/middleware/utils/appYmlGenerator.d.ts.map +0 -1
- package/build/core/middleware/utils/appYmlGenerator.js +0 -158
- package/build/core/middleware/utils/appYmlGenerator.js.map +0 -1
- package/build/core/middleware/utils/debug/appLocalYmlGenerator.d.ts +0 -65
- package/build/core/middleware/utils/debug/appLocalYmlGenerator.d.ts.map +0 -1
- package/build/core/middleware/utils/debug/appLocalYmlGenerator.js +0 -61
- package/build/core/middleware/utils/debug/appLocalYmlGenerator.js.map +0 -1
- package/build/core/middleware/utils/debug/constants.d.ts +0 -20
- package/build/core/middleware/utils/debug/constants.d.ts.map +0 -1
- package/build/core/middleware/utils/debug/constants.js +0 -28
- package/build/core/middleware/utils/debug/constants.js.map +0 -1
- package/build/core/middleware/utils/debug/debugMigrationContext.d.ts +0 -14
- package/build/core/middleware/utils/debug/debugMigrationContext.d.ts.map +0 -1
- package/build/core/middleware/utils/debug/debugMigrationContext.js +0 -23
- package/build/core/middleware/utils/debug/debugMigrationContext.js.map +0 -1
- package/build/core/middleware/utils/debug/debugV3MigrationUtils.d.ts +0 -37
- package/build/core/middleware/utils/debug/debugV3MigrationUtils.d.ts.map +0 -1
- package/build/core/middleware/utils/debug/debugV3MigrationUtils.js +0 -291
- package/build/core/middleware/utils/debug/debugV3MigrationUtils.js.map +0 -1
- package/build/core/middleware/utils/debug/taskMigrator.d.ts +0 -22
- package/build/core/middleware/utils/debug/taskMigrator.d.ts.map +0 -1
- package/build/core/middleware/utils/debug/taskMigrator.js +0 -935
- package/build/core/middleware/utils/debug/taskMigrator.js.map +0 -1
- package/build/core/middleware/utils/migrationContext.d.ts +0 -32
- package/build/core/middleware/utils/migrationContext.d.ts.map +0 -1
- package/build/core/middleware/utils/migrationContext.js +0 -104
- package/build/core/middleware/utils/migrationContext.js.map +0 -1
- /package/build/{core/middleware → component/generator/openPlugin}/types.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FxCore.d.ts","sourceRoot":"","sources":["../../src/core/FxCore.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,QAAQ,EACR,aAAa,EAKd,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,YAAY,EAKZ,iBAAiB,EACjB,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,
|
|
1
|
+
{"version":3,"file":"FxCore.d.ts","sourceRoot":"","sources":["../../src/core/FxCore.ts"],"names":[],"mappings":"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"}
|
package/build/core/FxCore.js
CHANGED
|
@@ -59,7 +59,6 @@ const metadataUtil_1 = require("../component/utils/metadataUtil");
|
|
|
59
59
|
const pathUtils_1 = require("../component/utils/pathUtils");
|
|
60
60
|
const settingsUtil_1 = require("../component/utils/settingsUtil");
|
|
61
61
|
const common_2 = require("../error/common");
|
|
62
|
-
const upgrade_1 = require("../error/upgrade");
|
|
63
62
|
const yml_1 = require("../error/yml");
|
|
64
63
|
const constants_3 = require("../question/constants");
|
|
65
64
|
const other_1 = require("../question/other");
|
|
@@ -69,18 +68,17 @@ const callback_1 = require("./callback");
|
|
|
69
68
|
const collaborator_1 = require("./collaborator");
|
|
70
69
|
const crypto_1 = require("./crypto");
|
|
71
70
|
const environmentName_1 = require("./environmentName");
|
|
72
|
-
const
|
|
71
|
+
const FxCore_openPlugin_1 = require("./FxCore.openPlugin");
|
|
73
72
|
const generateConfigFiles_1 = require("./generateConfigFiles");
|
|
74
73
|
const concurrentLocker_1 = require("./middleware/concurrentLocker");
|
|
75
74
|
const contextInjector_1 = require("./middleware/contextInjector");
|
|
76
75
|
const errorHandler_1 = require("./middleware/errorHandler");
|
|
77
76
|
const fileLocker_1 = require("./middleware/fileLocker");
|
|
78
|
-
const projectMigratorV3_1 = require("./middleware/projectMigratorV3");
|
|
79
77
|
const retry_1 = require("./middleware/retry");
|
|
80
78
|
const v3MigrationUtils_1 = require("./middleware/utils/v3MigrationUtils");
|
|
81
79
|
const share_2 = require("./share");
|
|
82
80
|
const telemetry_2 = require("./telemetry");
|
|
83
|
-
class FxCore extends
|
|
81
|
+
class FxCore extends FxCore_openPlugin_1.FxCoreOpenPluginPart {
|
|
84
82
|
constructor(tools) {
|
|
85
83
|
super();
|
|
86
84
|
(0, globalVars_1.setTools)(tools);
|
|
@@ -1065,45 +1063,16 @@ class FxCore extends FxCore_declarativeAgent_1.FxCoreDeclarativeAgentPart {
|
|
|
1065
1063
|
globalVars_1.TOOLS.logProvider.info(`env file created: ${targetDotEnvFile}`);
|
|
1066
1064
|
return (0, teamsfx_api_1.ok)(undefined);
|
|
1067
1065
|
}
|
|
1068
|
-
// a phantom migration method for V3
|
|
1069
|
-
async phantomMigrationV3(inputs) {
|
|
1070
|
-
// If the project is invalid or upgraded, the ProjectMigratorMWV3 will not take action.
|
|
1071
|
-
// Check invaliad/upgraded project here before call ProjectMigratorMWV3
|
|
1072
|
-
const projectPath = inputs.projectPath || "";
|
|
1073
|
-
const version = await (0, v3MigrationUtils_1.getProjectVersionFromPath)(projectPath);
|
|
1074
|
-
if (version.source === versionMetadata_1.VersionSource.teamsapp) {
|
|
1075
|
-
return (0, teamsfx_api_1.err)(new upgrade_1.NoNeedUpgradeError());
|
|
1076
|
-
}
|
|
1077
|
-
else if (version.source === versionMetadata_1.VersionSource.projectSettings) {
|
|
1078
|
-
const isValid = await (0, projectMigratorV3_1.checkActiveResourcePlugins)(projectPath);
|
|
1079
|
-
if (!isValid) {
|
|
1080
|
-
return (0, teamsfx_api_1.err)(new common_2.InvalidProjectError(projectPath));
|
|
1081
|
-
}
|
|
1082
|
-
}
|
|
1083
|
-
if (version.source === versionMetadata_1.VersionSource.unknown) {
|
|
1084
|
-
return (0, teamsfx_api_1.err)(new common_2.InvalidProjectError(projectPath));
|
|
1085
|
-
}
|
|
1086
|
-
return this.innerMigrationV3(inputs);
|
|
1087
|
-
}
|
|
1088
|
-
innerMigrationV3(inputs) {
|
|
1089
|
-
return (0, teamsfx_api_1.ok)(undefined);
|
|
1090
|
-
}
|
|
1091
1066
|
// a project version check
|
|
1092
1067
|
async projectVersionCheck(inputs) {
|
|
1093
1068
|
const projectPath = inputs.projectPath || "";
|
|
1094
|
-
if ((0, projectSettingsHelper_1.isValidProjectV3)(projectPath)
|
|
1069
|
+
if ((0, projectSettingsHelper_1.isValidProjectV3)(projectPath)) {
|
|
1095
1070
|
const versionInfo = await (0, v3MigrationUtils_1.getProjectVersionFromPath)(projectPath);
|
|
1096
1071
|
if (!versionInfo.version) {
|
|
1097
1072
|
return (0, teamsfx_api_1.err)(new common_2.InvalidProjectError(projectPath));
|
|
1098
1073
|
}
|
|
1099
1074
|
const trackingId = await (0, v3MigrationUtils_1.getTrackingIdFromPath)(projectPath);
|
|
1100
1075
|
const isSupport = (0, v3MigrationUtils_1.getVersionState)(versionInfo);
|
|
1101
|
-
// if the project is upgradeable, check whether the project is valid and invalid project should not show upgrade option.
|
|
1102
|
-
if (isSupport === versionMetadata_1.VersionState.upgradeable) {
|
|
1103
|
-
if (!(await (0, projectMigratorV3_1.checkActiveResourcePlugins)(projectPath))) {
|
|
1104
|
-
return (0, teamsfx_api_1.err)(new common_2.InvalidProjectError(projectPath));
|
|
1105
|
-
}
|
|
1106
|
-
}
|
|
1107
1076
|
return (0, teamsfx_api_1.ok)({
|
|
1108
1077
|
currentVersion: versionInfo.version,
|
|
1109
1078
|
trackingId,
|
|
@@ -2033,7 +2002,6 @@ tslib_1.__decorate([
|
|
|
2033
2002
|
(0, hooks_1.hooks)([
|
|
2034
2003
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "provision", reset: true }),
|
|
2035
2004
|
errorHandler_1.ErrorHandlerMW,
|
|
2036
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2037
2005
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2038
2006
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2039
2007
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2047,7 +2015,6 @@ tslib_1.__decorate([
|
|
|
2047
2015
|
(0, hooks_1.hooks)([
|
|
2048
2016
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "uninstall", reset: true }),
|
|
2049
2017
|
errorHandler_1.ErrorHandlerMW,
|
|
2050
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2051
2018
|
(0, questionMW_1.QuestionMW)("uninstall"),
|
|
2052
2019
|
]),
|
|
2053
2020
|
tslib_1.__metadata("design:type", Function),
|
|
@@ -2116,7 +2083,6 @@ tslib_1.__decorate([
|
|
|
2116
2083
|
(0, hooks_1.hooks)([
|
|
2117
2084
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "deploy", reset: true }),
|
|
2118
2085
|
errorHandler_1.ErrorHandlerMW,
|
|
2119
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2120
2086
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2121
2087
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2122
2088
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2136,7 +2102,6 @@ tslib_1.__decorate([
|
|
|
2136
2102
|
(0, hooks_1.hooks)([
|
|
2137
2103
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "deployAadManifest", reset: true }),
|
|
2138
2104
|
errorHandler_1.ErrorHandlerMW,
|
|
2139
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2140
2105
|
(0, questionMW_1.QuestionMW)("deployAadManifest"),
|
|
2141
2106
|
(0, envMW_1.EnvLoaderMW)(true, true),
|
|
2142
2107
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
@@ -2151,7 +2116,6 @@ tslib_1.__decorate([
|
|
|
2151
2116
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "addWebpart", reset: true }),
|
|
2152
2117
|
errorHandler_1.ErrorHandlerMW,
|
|
2153
2118
|
(0, questionMW_1.QuestionMW)("addWebpart"),
|
|
2154
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2155
2119
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2156
2120
|
]),
|
|
2157
2121
|
tslib_1.__metadata("design:type", Function),
|
|
@@ -2162,7 +2126,6 @@ tslib_1.__decorate([
|
|
|
2162
2126
|
(0, hooks_1.hooks)([
|
|
2163
2127
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "publish", reset: true }),
|
|
2164
2128
|
errorHandler_1.ErrorHandlerMW,
|
|
2165
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2166
2129
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2167
2130
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2168
2131
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2177,7 +2140,6 @@ tslib_1.__decorate([
|
|
|
2177
2140
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "share", reset: true }),
|
|
2178
2141
|
errorHandler_1.ErrorHandlerMW,
|
|
2179
2142
|
(0, questionMW_1.QuestionMW)("removeSharedAccess"),
|
|
2180
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2181
2143
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2182
2144
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2183
2145
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2191,7 +2153,6 @@ tslib_1.__decorate([
|
|
|
2191
2153
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "share", reset: true }),
|
|
2192
2154
|
errorHandler_1.ErrorHandlerMW,
|
|
2193
2155
|
(0, questionMW_1.QuestionMW)("share"),
|
|
2194
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2195
2156
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2196
2157
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2197
2158
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2205,7 +2166,6 @@ tslib_1.__decorate([
|
|
|
2205
2166
|
(0, hooks_1.hooks)([
|
|
2206
2167
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "executeUserTask", reset: true }),
|
|
2207
2168
|
errorHandler_1.ErrorHandlerMW,
|
|
2208
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2209
2169
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2210
2170
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2211
2171
|
]),
|
|
@@ -2217,7 +2177,6 @@ tslib_1.__decorate([
|
|
|
2217
2177
|
(0, hooks_1.hooks)([
|
|
2218
2178
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "buildAadManifest", reset: true }),
|
|
2219
2179
|
errorHandler_1.ErrorHandlerMW,
|
|
2220
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2221
2180
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2222
2181
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2223
2182
|
]),
|
|
@@ -2239,7 +2198,6 @@ tslib_1.__decorate([
|
|
|
2239
2198
|
(0, hooks_1.hooks)([
|
|
2240
2199
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "deployTeamsManifest", reset: true }),
|
|
2241
2200
|
errorHandler_1.ErrorHandlerMW,
|
|
2242
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2243
2201
|
(0, questionMW_1.QuestionMW)("selectTeamsAppManifest"),
|
|
2244
2202
|
(0, envMW_1.EnvLoaderMW)(true),
|
|
2245
2203
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
@@ -2404,7 +2362,6 @@ tslib_1.__decorate([
|
|
|
2404
2362
|
(0, hooks_1.hooks)([
|
|
2405
2363
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "grantPermission", reset: true }),
|
|
2406
2364
|
errorHandler_1.ErrorHandlerMW,
|
|
2407
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2408
2365
|
(0, questionMW_1.QuestionMW)("grantPermission"),
|
|
2409
2366
|
(0, envMW_1.EnvLoaderMW)(false, true),
|
|
2410
2367
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
@@ -2418,7 +2375,6 @@ tslib_1.__decorate([
|
|
|
2418
2375
|
(0, hooks_1.hooks)([
|
|
2419
2376
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "checkPermission", reset: true }),
|
|
2420
2377
|
errorHandler_1.ErrorHandlerMW,
|
|
2421
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2422
2378
|
(0, questionMW_1.QuestionMW)("listCollaborator"),
|
|
2423
2379
|
(0, envMW_1.EnvLoaderMW)(false, true),
|
|
2424
2380
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
@@ -2432,7 +2388,6 @@ tslib_1.__decorate([
|
|
|
2432
2388
|
(0, hooks_1.hooks)([
|
|
2433
2389
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "listCollaborator", reset: true }),
|
|
2434
2390
|
errorHandler_1.ErrorHandlerMW,
|
|
2435
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2436
2391
|
(0, questionMW_1.QuestionMW)("listCollaborator"),
|
|
2437
2392
|
(0, envMW_1.EnvLoaderMW)(false, true),
|
|
2438
2393
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
@@ -2481,18 +2436,6 @@ tslib_1.__decorate([
|
|
|
2481
2436
|
tslib_1.__metadata("design:paramtypes", [Object]),
|
|
2482
2437
|
tslib_1.__metadata("design:returntype", Promise)
|
|
2483
2438
|
], FxCore.prototype, "createEnv", null);
|
|
2484
|
-
tslib_1.__decorate([
|
|
2485
|
-
(0, hooks_1.hooks)([(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "phantomMigrationV3", reset: true })]),
|
|
2486
|
-
tslib_1.__metadata("design:type", Function),
|
|
2487
|
-
tslib_1.__metadata("design:paramtypes", [Object]),
|
|
2488
|
-
tslib_1.__metadata("design:returntype", Promise)
|
|
2489
|
-
], FxCore.prototype, "phantomMigrationV3", null);
|
|
2490
|
-
tslib_1.__decorate([
|
|
2491
|
-
(0, hooks_1.hooks)([errorHandler_1.ErrorHandlerMW, projectMigratorV3_1.ProjectMigratorMWV3]),
|
|
2492
|
-
tslib_1.__metadata("design:type", Function),
|
|
2493
|
-
tslib_1.__metadata("design:paramtypes", [Object]),
|
|
2494
|
-
tslib_1.__metadata("design:returntype", Object)
|
|
2495
|
-
], FxCore.prototype, "innerMigrationV3", null);
|
|
2496
2439
|
tslib_1.__decorate([
|
|
2497
2440
|
(0, hooks_1.hooks)([
|
|
2498
2441
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "projectVersionCheck", reset: true }),
|
|
@@ -2506,7 +2449,6 @@ tslib_1.__decorate([
|
|
|
2506
2449
|
(0, hooks_1.hooks)([
|
|
2507
2450
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "preProvisionForVS" }),
|
|
2508
2451
|
errorHandler_1.ErrorHandlerMW,
|
|
2509
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2510
2452
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2511
2453
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2512
2454
|
contextInjector_1.ContextInjectorMW,
|
|
@@ -2519,7 +2461,6 @@ tslib_1.__decorate([
|
|
|
2519
2461
|
(0, hooks_1.hooks)([
|
|
2520
2462
|
(0, globalVars_1.ErrorContextMW)({ component: "FxCore", stage: "preCheckYmlAndEnvForVS" }),
|
|
2521
2463
|
errorHandler_1.ErrorHandlerMW,
|
|
2522
|
-
projectMigratorV3_1.ProjectMigratorMWV3,
|
|
2523
2464
|
(0, envMW_1.EnvLoaderMW)(false),
|
|
2524
2465
|
concurrentLocker_1.ConcurrentLockerMW,
|
|
2525
2466
|
contextInjector_1.ContextInjectorMW,
|