@microsoft/teamsfx-core 3.1.3 → 3.1.4-alpha.db74a278f9.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.
Files changed (131) hide show
  1. package/build/common/templates-config.json +4 -4
  2. package/build/component/configManager/actionInjector.d.ts +4 -2
  3. package/build/component/configManager/actionInjector.d.ts.map +1 -1
  4. package/build/component/configManager/actionInjector.js +50 -3
  5. package/build/component/configManager/actionInjector.js.map +1 -1
  6. package/build/component/driver/teamsApp/utils/utils.d.ts.map +1 -1
  7. package/build/component/driver/teamsApp/utils/utils.js +1 -18
  8. package/build/component/driver/teamsApp/utils/utils.js.map +1 -1
  9. package/build/component/generator/openApiSpec/helper.d.ts +1 -1
  10. package/build/component/generator/openApiSpec/helper.d.ts.map +1 -1
  11. package/build/component/generator/openApiSpec/helper.js +23 -3
  12. package/build/component/generator/openApiSpec/helper.js.map +1 -1
  13. package/build/component/generator/openPlugin/authResolver.d.ts +2 -2
  14. package/build/component/generator/openPlugin/authResolver.d.ts.map +1 -1
  15. package/build/component/generator/openPlugin/authResolver.js +17 -7
  16. package/build/component/generator/openPlugin/authResolver.js.map +1 -1
  17. package/build/component/generator/openPlugin/errors.d.ts +4 -0
  18. package/build/component/generator/openPlugin/errors.d.ts.map +1 -0
  19. package/build/component/generator/openPlugin/errors.js +13 -0
  20. package/build/component/generator/openPlugin/errors.js.map +1 -0
  21. package/build/component/generator/openPlugin/exporter.d.ts +9 -6
  22. package/build/component/generator/openPlugin/exporter.d.ts.map +1 -1
  23. package/build/component/generator/openPlugin/exporter.js +502 -53
  24. package/build/component/generator/openPlugin/exporter.js.map +1 -1
  25. package/build/component/generator/openPlugin/fileSystem.d.ts +28 -0
  26. package/build/component/generator/openPlugin/fileSystem.d.ts.map +1 -0
  27. package/build/component/generator/openPlugin/fileSystem.js +181 -0
  28. package/build/component/generator/openPlugin/fileSystem.js.map +1 -0
  29. package/build/component/generator/openPlugin/iconStrategy.d.ts.map +1 -1
  30. package/build/component/generator/openPlugin/iconStrategy.js +30 -14
  31. package/build/component/generator/openPlugin/iconStrategy.js.map +1 -1
  32. package/build/component/generator/openPlugin/importer.d.ts.map +1 -1
  33. package/build/component/generator/openPlugin/importer.js +75 -12
  34. package/build/component/generator/openPlugin/importer.js.map +1 -1
  35. package/build/component/generator/openPlugin/mapper.d.ts +3 -2
  36. package/build/component/generator/openPlugin/mapper.d.ts.map +1 -1
  37. package/build/component/generator/openPlugin/mapper.js +188 -29
  38. package/build/component/generator/openPlugin/mapper.js.map +1 -1
  39. package/build/component/generator/openPlugin/parser.d.ts.map +1 -1
  40. package/build/component/generator/openPlugin/parser.js +264 -70
  41. package/build/component/generator/openPlugin/parser.js.map +1 -1
  42. package/build/component/generator/openPlugin/skillValidation.d.ts +2 -0
  43. package/build/component/generator/openPlugin/skillValidation.d.ts.map +1 -0
  44. package/build/component/generator/openPlugin/skillValidation.js +63 -0
  45. package/build/component/generator/openPlugin/skillValidation.js.map +1 -0
  46. package/build/component/generator/openPlugin/spec.d.ts +67 -0
  47. package/build/component/generator/openPlugin/spec.d.ts.map +1 -0
  48. package/build/component/generator/openPlugin/spec.js +157 -0
  49. package/build/component/generator/openPlugin/spec.js.map +1 -0
  50. package/build/component/generator/openPlugin/textUtils.d.ts +1 -1
  51. package/build/component/generator/openPlugin/textUtils.d.ts.map +1 -1
  52. package/build/component/generator/openPlugin/textUtils.js +8 -7
  53. package/build/component/generator/openPlugin/textUtils.js.map +1 -1
  54. package/build/component/generator/openPlugin/types.d.ts +76 -14
  55. package/build/component/generator/openPlugin/types.d.ts.map +1 -1
  56. package/build/component/generator/openPlugin/validation.d.ts +17 -0
  57. package/build/component/generator/openPlugin/validation.d.ts.map +1 -0
  58. package/build/component/generator/openPlugin/validation.js +563 -0
  59. package/build/component/generator/openPlugin/validation.js.map +1 -0
  60. package/build/component/utils/common.d.ts +1 -9
  61. package/build/component/utils/common.d.ts.map +1 -1
  62. package/build/component/utils/common.js +7 -37
  63. package/build/component/utils/common.js.map +1 -1
  64. package/build/component/utils/envFunctionUtils.d.ts +3 -8
  65. package/build/component/utils/envFunctionUtils.d.ts.map +1 -1
  66. package/build/component/utils/envFunctionUtils.js +46 -131
  67. package/build/component/utils/envFunctionUtils.js.map +1 -1
  68. package/build/component/utils/mcpAuthScaffolder.d.ts +5 -0
  69. package/build/component/utils/mcpAuthScaffolder.d.ts.map +1 -1
  70. package/build/component/utils/mcpAuthScaffolder.js +14 -2
  71. package/build/component/utils/mcpAuthScaffolder.js.map +1 -1
  72. package/build/core/FxCore.d.ts +1 -1
  73. package/build/core/FxCore.d.ts.map +1 -1
  74. package/build/core/FxCore.declarativeAgent.d.ts +2 -1
  75. package/build/core/FxCore.declarativeAgent.d.ts.map +1 -1
  76. package/build/core/FxCore.declarativeAgent.js +17 -6
  77. package/build/core/FxCore.declarativeAgent.js.map +1 -1
  78. package/build/core/FxCore.js +3 -3
  79. package/build/core/FxCore.js.map +1 -1
  80. package/build/core/FxCore.openPlugin.d.ts +7 -6
  81. package/build/core/FxCore.openPlugin.d.ts.map +1 -1
  82. package/build/core/FxCore.openPlugin.js +7 -6
  83. package/build/core/FxCore.openPlugin.js.map +1 -1
  84. package/build/question/inputs/AddAuthActionInputs.d.ts +2 -0
  85. package/build/question/inputs/AddAuthActionInputs.d.ts.map +1 -1
  86. package/build/question/inputs/AddPluginInputs.d.ts +5 -1
  87. package/build/question/inputs/AddPluginInputs.d.ts.map +1 -1
  88. package/build/question/options/AddAuthActionOptions.d.ts.map +1 -1
  89. package/build/question/options/AddAuthActionOptions.js +7 -0
  90. package/build/question/options/AddAuthActionOptions.js.map +1 -1
  91. package/build/question/options/AddPluginOptions.d.ts.map +1 -1
  92. package/build/question/options/AddPluginOptions.js +14 -1
  93. package/build/question/options/AddPluginOptions.js.map +1 -1
  94. package/build/question/options/ExportOpenPluginOptions.js +2 -2
  95. package/build/question/options/ExportOpenPluginOptions.js.map +1 -1
  96. package/build/question/options/ImportOpenPluginOptions.js +4 -4
  97. package/build/question/options/ImportOpenPluginOptions.js.map +1 -1
  98. package/build/question/other.d.ts +1 -0
  99. package/build/question/other.d.ts.map +1 -1
  100. package/build/question/other.js +49 -9
  101. package/build/question/other.js.map +1 -1
  102. package/build/question/questionNames.d.ts +1 -0
  103. package/build/question/questionNames.d.ts.map +1 -1
  104. package/build/question/questionNames.js +1 -0
  105. package/build/question/questionNames.js.map +1 -1
  106. package/build/question/scaffold/vsc/teamsProjectTypeNode.d.ts +2 -0
  107. package/build/question/scaffold/vsc/teamsProjectTypeNode.d.ts.map +1 -1
  108. package/build/question/scaffold/vsc/teamsProjectTypeNode.js +24 -1
  109. package/build/question/scaffold/vsc/teamsProjectTypeNode.js.map +1 -1
  110. package/build/v4/mcp/mcpAuthAction.d.ts +2 -1
  111. package/build/v4/mcp/mcpAuthAction.d.ts.map +1 -1
  112. package/build/v4/mcp/mcpAuthAction.js +32 -5
  113. package/build/v4/mcp/mcpAuthAction.js.map +1 -1
  114. package/build/v4/mcp/mcpAuthScaffold.d.ts +3 -0
  115. package/build/v4/mcp/mcpAuthScaffold.d.ts.map +1 -1
  116. package/build/v4/mcp/mcpAuthScaffold.js +57 -30
  117. package/build/v4/mcp/mcpAuthScaffold.js.map +1 -1
  118. package/build/v4/runtime/steps/mcpAuth.d.ts.map +1 -1
  119. package/build/v4/runtime/steps/mcpAuth.js +13 -0
  120. package/build/v4/runtime/steps/mcpAuth.js.map +1 -1
  121. package/package.json +3 -3
  122. package/resource/package.nls.json +20 -0
  123. package/templates/fallback/common.zip +0 -0
  124. package/templates/fallback/csharp.zip +0 -0
  125. package/templates/fallback/js.zip +0 -0
  126. package/templates/fallback/python.zip +0 -0
  127. package/templates/fallback/ts.zip +0 -0
  128. package/templates/metadata.zip +0 -0
  129. package/templates/v4/floor.json +1 -1
  130. package/templates/v4/templates-metadata.zip +0 -0
  131. package/templates/v4/templates.zip +0 -0
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "6.16.0"
2
+ "version": "6.16.1"
3
3
  }
Binary file
Binary file