@microsoft/teamsfx-core 1.0.0-rc.0 → 1.0.0-rc.1

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 (54) hide show
  1. package/build/common/constants.d.ts +4 -1
  2. package/build/common/constants.d.ts.map +1 -1
  3. package/build/common/constants.js +6 -2
  4. package/build/common/constants.js.map +1 -1
  5. package/build/common/samples-config.json +12 -3
  6. package/build/common/tools.d.ts.map +1 -1
  7. package/build/common/tools.js +1 -15
  8. package/build/common/tools.js.map +1 -1
  9. package/build/core/index.d.ts +1 -0
  10. package/build/core/index.d.ts.map +1 -1
  11. package/build/core/index.js +7 -3
  12. package/build/core/index.js.map +1 -1
  13. package/build/core/middleware/projectMigrator.d.ts +2 -2
  14. package/build/core/middleware/projectMigrator.d.ts.map +1 -1
  15. package/build/core/middleware/projectMigrator.js +76 -21
  16. package/build/core/middleware/projectMigrator.js.map +1 -1
  17. package/build/core/middleware/projectSettingsLoader.d.ts.map +1 -1
  18. package/build/core/middleware/projectSettingsLoader.js +1 -0
  19. package/build/core/middleware/projectSettingsLoader.js.map +1 -1
  20. package/build/plugins/resource/appstudio/errors.d.ts.map +1 -1
  21. package/build/plugins/resource/appstudio/errors.js +5 -3
  22. package/build/plugins/resource/appstudio/errors.js.map +1 -1
  23. package/build/plugins/resource/appstudio/index.d.ts.map +1 -1
  24. package/build/plugins/resource/appstudio/index.js +2 -2
  25. package/build/plugins/resource/appstudio/index.js.map +1 -1
  26. package/build/plugins/resource/appstudio/plugin.d.ts.map +1 -1
  27. package/build/plugins/resource/appstudio/plugin.js +32 -19
  28. package/build/plugins/resource/appstudio/plugin.js.map +1 -1
  29. package/build/plugins/resource/appstudio/results.d.ts +1 -1
  30. package/build/plugins/resource/appstudio/results.d.ts.map +1 -1
  31. package/build/plugins/resource/appstudio/results.js +1 -1
  32. package/build/plugins/resource/appstudio/results.js.map +1 -1
  33. package/build/plugins/resource/bot/aadRegistration.js +1 -1
  34. package/build/plugins/resource/bot/aadRegistration.js.map +1 -1
  35. package/build/plugins/solution/fx-solution/arm.d.ts.map +1 -1
  36. package/build/plugins/solution/fx-solution/arm.js +4 -8
  37. package/build/plugins/solution/fx-solution/arm.js.map +1 -1
  38. package/build/plugins/solution/fx-solution/constants.d.ts +0 -3
  39. package/build/plugins/solution/fx-solution/constants.d.ts.map +1 -1
  40. package/build/plugins/solution/fx-solution/constants.js +1 -5
  41. package/build/plugins/solution/fx-solution/constants.js.map +1 -1
  42. package/build/plugins/solution/fx-solution/question.js +1 -1
  43. package/build/plugins/solution/fx-solution/question.js.map +1 -1
  44. package/build/plugins/solution/fx-solution/solution.d.ts.map +1 -1
  45. package/build/plugins/solution/fx-solution/solution.js +2 -2
  46. package/build/plugins/solution/fx-solution/solution.js.map +1 -1
  47. package/build/plugins/solution/fx-solution/v2/getQuestions.d.ts.map +1 -1
  48. package/build/plugins/solution/fx-solution/v2/getQuestions.js +13 -12
  49. package/build/plugins/solution/fx-solution/v2/getQuestions.js.map +1 -1
  50. package/package.json +2 -2
  51. package/resource/upgrade-change-logs.md +4 -2
  52. package/templates/azure/provision/simpleAuth.bicep +2 -2
  53. package/templates/plugins/resource/simpleauth/bicep/simpleAuthProvision.template.bicep +2 -2
  54. package/templates/plugins/solution/v1/README.md +1 -1
@@ -5,7 +5,7 @@ var resourceBaseName = provisionParameters.resourceBaseName
5
5
  var sku = contains(provisionParameters, 'simpleAuthSku') ? provisionParameters['simpleAuthSku'] : 'F1'
6
6
  var serverFarmsName = contains(provisionParameters, 'simpleAuthServerFarmsName') ? provisionParameters['simpleAuthServerFarmsName'] : '${resourceBaseName}simpleAuth'
7
7
  var webAppName = contains(provisionParameters, 'simpleAuthWebAppName') ? provisionParameters['simpleAuthWebAppName'] : '${resourceBaseName}simpleAuth'
8
- var simpelAuthPackageUri = contains(provisionParameters, 'simpleAuthPackageUri') ? provisionParameters['simpleAuthPackageUri'] : 'https://github.com/OfficeDev/TeamsFx/releases/download/simpleauth@0.1.0/Microsoft.TeamsFx.SimpleAuth_0.1.0.zip'
8
+ var simpleAuthPackageUri = contains(provisionParameters, 'simpleAuthPackageUri') ? provisionParameters['simpleAuthPackageUri'] : 'https://github.com/OfficeDev/TeamsFx/releases/download/simpleauth@0.1.0/Microsoft.TeamsFx.SimpleAuth_0.1.0.zip'
9
9
 
10
10
  resource serverFarms 'Microsoft.Web/serverfarms@2021-02-01' = {
11
11
  name: serverFarmsName
@@ -36,7 +36,7 @@ resource simpleAuthDeploy 'Microsoft.Web/sites/extensions@2021-02-01' = {
36
36
  parent: webApp
37
37
  name: 'MSDeploy'
38
38
  properties: {
39
- packageUri: simpelAuthPackageUri
39
+ packageUri: simpleAuthPackageUri
40
40
  }
41
41
  }
42
42
 
@@ -16,7 +16,7 @@ There are some configuration changed in your project to make it compatible with
16
16
 
17
17
  ## Edit the manifest
18
18
 
19
- You can find the Teams manifest in `.fx/manifest.source.json`. It contains template arguments with `{...}` statements which will be replaced at build time. You may add any extra properties or permissions you require to this file. See the [schema reference](https://docs.microsoft.com/en-us/microsoftteams/platform/resources/schema/manifest-schema) for more.
19
+ You can find the Teams app manifest template in `./templates/appPackage/manifest.local.template.json`. It contains template arguments with `{...}` statements which will be replaced at build time. You may add any extra properties or permissions you require to this file. See the [schema reference](https://docs.microsoft.com/en-us/microsoftteams/platform/resources/schema/manifest-schema) for more.
20
20
 
21
21
  ## Learn more
22
22