@microsoft/teamsfx-core 3.0.0-alpha.2d7daae71.0 → 3.0.0-alpha.38bb5b8fc.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 (47) hide show
  1. package/build/common/daSpecParser.d.ts.map +1 -1
  2. package/build/common/daSpecParser.js +7 -0
  3. package/build/common/daSpecParser.js.map +1 -1
  4. package/build/common/samples.d.ts +1 -1
  5. package/build/common/samples.js +3 -3
  6. package/build/common/samples.js.map +1 -1
  7. package/build/common/templates-config.json +1 -1
  8. package/build/component/configManager/interface.d.ts +11 -0
  9. package/build/component/configManager/interface.d.ts.map +1 -1
  10. package/build/component/configManager/interface.js.map +1 -1
  11. package/build/component/configManager/lifecycle.d.ts +1 -0
  12. package/build/component/configManager/lifecycle.d.ts.map +1 -1
  13. package/build/component/configManager/lifecycle.js +3 -2
  14. package/build/component/configManager/lifecycle.js.map +1 -1
  15. package/build/component/coordinator/index.d.ts +3 -1
  16. package/build/component/coordinator/index.d.ts.map +1 -1
  17. package/build/component/coordinator/index.js +31 -1
  18. package/build/component/coordinator/index.js.map +1 -1
  19. package/build/component/driver/script/scriptDriver.d.ts +0 -1
  20. package/build/component/driver/script/scriptDriver.d.ts.map +1 -1
  21. package/build/component/generator/combinedProject/generator.d.ts +1 -1
  22. package/build/component/generator/combinedProject/generator.js +2 -2
  23. package/build/component/generator/declarativeAgent/helper.js +1 -1
  24. package/build/component/generator/openApiSpec/helper.d.ts.map +1 -1
  25. package/build/component/generator/openApiSpec/helper.js +5 -0
  26. package/build/component/generator/openApiSpec/helper.js.map +1 -1
  27. package/build/component/generator/templates/templateNames.js +1 -1
  28. package/build/component/utils/envUtil.d.ts +0 -1
  29. package/build/component/utils/envUtil.d.ts.map +1 -1
  30. package/build/component/utils/metadataGraphPermssion.d.ts.map +1 -1
  31. package/build/component/utils/metadataGraphPermssion.js +9 -0
  32. package/build/component/utils/metadataGraphPermssion.js.map +1 -1
  33. package/build/question/create.js +8 -8
  34. package/build/question/inputs/AddKnowledgeInputs.d.ts +2 -2
  35. package/build/question/options/AddKnowledgeOptions.js +3 -3
  36. package/build/question/other.js +1 -1
  37. package/build/question/scaffold/vsc/createRootNode.d.ts.map +1 -1
  38. package/build/question/scaffold/vsc/createRootNode.js +4 -1
  39. package/build/question/scaffold/vsc/createRootNode.js.map +1 -1
  40. package/build/tsconfig.tsbuildinfo +1 -1
  41. package/package.json +4 -4
  42. package/resource/package.nls.json +16 -15
  43. package/templates/fallback/common.zip +0 -0
  44. package/templates/fallback/csharp.zip +0 -0
  45. package/templates/fallback/js.zip +0 -0
  46. package/templates/fallback/python.zip +0 -0
  47. package/templates/fallback/ts.zip +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/teamsfx-core",
3
- "version": "3.0.0-alpha.2d7daae71.0",
3
+ "version": "3.0.0-alpha.38bb5b8fc.0",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "license": "MIT",
@@ -106,8 +106,8 @@
106
106
  "@microsoft/dev-tunnels-contracts": "1.1.9",
107
107
  "@microsoft/dev-tunnels-management": "1.1.9",
108
108
  "@microsoft/kiota": "1.25.1-preview.202504240001",
109
- "@microsoft/m365-spec-parser": "^0.2.7-alpha.2d7daae71.0",
110
- "@microsoft/teamsfx-api": "0.23.6-alpha.2d7daae71.0",
109
+ "@microsoft/m365-spec-parser": "^0.2.7-alpha.38bb5b8fc.0",
110
+ "@microsoft/teamsfx-api": "0.23.6-alpha.38bb5b8fc.0",
111
111
  "adm-zip": "^0.5.10",
112
112
  "ajv": "^8.5.0",
113
113
  "axios": "^1.8.3",
@@ -230,7 +230,7 @@
230
230
  "resource/**/*",
231
231
  "templates/**/*"
232
232
  ],
233
- "gitHead": "2d555f5c54da3df6e1ff367651f1b29be79a2615",
233
+ "gitHead": "1640c7580b4a0ddb5113305d82a79e700e5c830f",
234
234
  "publishConfig": {
235
235
  "access": "public"
236
236
  },
@@ -298,6 +298,7 @@
298
298
  "core.copilotPlugin.scaffold.summary.warning.operationId": "%s Mitigation: Not required, operationId has been automatically generated and added into \"%s\" file.",
299
299
  "core.copilotPlugin.scaffold.summary.warning.operationIdContainsSpecialCharacters": "Operation id '%s' in OpenAPI description document contained special characters and was renamed to '%s'.",
300
300
  "core.copilotPlugin.scaffold.summary.warning.swaggerVersion": "The OpenAPI description document is on Swagger version 2.0. Mitigation: Not required. The content has been converted to OpenAPI 3.0 and saved in \"%s\".",
301
+ "core.copilotPlugin.scaffold.summary.warning.spec31ConvertTo30": "The OpenAPI description document version is 3.1 and has been converted to OpenAPI 3.0 and saved in \"%s\".",
301
302
  "core.copilotPlugin.scaffold.summary.warning.teamsManifest.lengthExceeding": "\"%s\" must not have more than %s characters. ",
302
303
  "core.copilotPlugin.scaffold.summary.warning.teamsManifest.missingFullDescription": "Missing full description. ",
303
304
  "core.copilotPlugin.scaffold.summary.warning.teamsManifest.mitigation": "Mitigation: update \"%s\" field in \"%s\".",
@@ -346,7 +347,7 @@
346
347
  "core.createProjectQuestion.projectType.declarativeAgent.detail": "Create your own agent by declaring instructions, actions, & knowledge to suit your needs.",
347
348
  "core.createProjectQuestion.title": "New Project",
348
349
  "core.createProjectQuestion.capability.botMessageExtension.label": "Start with a Bot",
349
- "core.createProjectQuestion.capability.botMessageExtension.detail": "Create a message extension using Bot Framework",
350
+ "core.createProjectQuestion.capability.botMessageExtension.detail": "Create a message extension using Agents SDK",
350
351
  "core.createProjectQuestion.capability.copilotPluginNewApiOption.label": "Start with a New API",
351
352
  "core.createProjectQuestion.capability.copilotPluginNewApiOption.detail": "Create an action with a new API from Azure Functions",
352
353
  "core.createProjectQuestion.capability.messageExtensionNewApiOption.detail": "Create a message extension with a new API from Azure Functions",
@@ -391,7 +392,7 @@
391
392
  "core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Search the web for grounding information.",
392
393
  "core.createProjectQuestion.capability.knowledgeOneDriveSharePoint.label": "OneDrive and SharePoint",
393
394
  "core.createProjectQuestion.capability.knowledgeOneDriveSharePoint.detail": "Search a user's SharePoint and OneDrive for grounding information.",
394
- "core.createProjectQuestion.capability.knowledgeGraphConnector.label": "Copilot Connector",
395
+ "core.createProjectQuestion.capability.knowledgeGraphConnector.label": "Copilot connector",
395
396
  "core.createProjectQuestion.capability.knowledgeGraphConnector.detail": "Search selected Microsoft Copilot connectors for grounding information.",
396
397
  "core.createProjectQuestion.capability.knowledgeEmbeddedKnowledge.label": "Embedded Knowledge",
397
398
  "core.createProjectQuestion.capability.knowledgeEmbeddedKnowledge.detail": "Embed files directly as grounding information.",
@@ -447,7 +448,7 @@
447
448
  "core.createProjectQuestion.noPlugin.detail": "Create declarative agent only",
448
449
  "core.createProjectQuestion.addPlugin.label": "Add an Action",
449
450
  "core.createProjectQuestion.addPlugin.detail": "Create a declarative agent with an action",
450
- "core.createProjectQuestion.createGraphConnector.label": "Copilot Connector",
451
+ "core.createProjectQuestion.createGraphConnector.label": "Copilot connector",
451
452
  "core.createProjectQuestion.createGraphConnector.detail": "Embed your organization data to make it searchable in Microsoft 365 Copilot",
452
453
  "core.createProjectQuestion.addExistingPlugin.pluginManifest.title": "Import Manifest File",
453
454
  "core.createProjectQuestion.addExistingPlugin.apiSpec.title": "Import OpenAPI Description Document",
@@ -543,27 +544,27 @@
543
544
  "core.selectValidateMethodQuestion.validate.appPackageOptionDescription": "Validate app before publishing app to Teams store",
544
545
  "core.selectValidateMethodQuestion.validate.testCasesOption": "Validate all integration test cases before publishing",
545
546
  "core.selectValidateMethodQuestion.validate.testCasesOptionDescription": "Comprehensive tests to ensure readiness",
546
- "core.GCSelectQuestion.title": "Copilot Connector Content",
547
- "core.GCSelectOptions.listOption.title": "Select existing Copilot Connectors",
548
- "core.GCSelectOptions.listOption.description": "List all existing Copilot Connectors",
549
- "core.GCSelectOptions.inputOption.title": "Enter a Copilot Connector Connection ID",
550
- "core.GCSelectOptions.inputOption.description": "Enter a Copilot Connector Connection ID manually",
551
- "core.GCListQuestion.title": "Select one or more Copilot Connectors as capability source",
552
- "core.GCListQuestion.placeholder": "List all existing Copilot Connectors",
547
+ "core.GCSelectQuestion.title": "Copilot connector Content",
548
+ "core.GCSelectOptions.listOption.title": "Select existing Copilot connectors",
549
+ "core.GCSelectOptions.listOption.description": "List all existing Copilot connectors",
550
+ "core.GCSelectOptions.inputOption.title": "Enter a Copilot connector Connection ID",
551
+ "core.GCSelectOptions.inputOption.description": "Enter a Copilot connector Connection ID manually",
552
+ "core.GCListQuestion.title": "Select one or more Copilot connectors as capability source",
553
+ "core.GCListQuestion.placeholder": "List all existing Copilot connectors",
553
554
  "core.GCInputQuestion.title": "Connection ID",
554
555
  "core.GCListQuestion.invalidMessage": "%s API(s) selected. You need to select at least one APIs.",
555
556
  "core.GCNameQuestion.title": "Add a connector name",
556
- "core.GCNameQuestion.placeholder": "Create a name for Copilot Connector",
557
+ "core.GCNameQuestion.placeholder": "Create a name for Copilot connector",
557
558
  "core.GCConnectionIdQuestion.title": "Add a connection ID",
558
- "core.GCConnectionIdQuestion.placeholder": "Add a connection ID for Copilot Connector",
559
+ "core.GCConnectionIdQuestion.placeholder": "Add a connection ID for Copilot connector",
559
560
  "core.GCConnectionIdQuestion.validation.pattern": "Connector ID must contain only alphanumeric characters.",
560
561
  "core.GCConnectionIdQuestion.validation.specialBeginner": "Connection ID should not begin with %s.",
561
562
  "core.GCConnectionIdQuestion.validation.minlength": "Connection ID is shorter than the 3 characters.",
562
563
  "core.GCConnectionIdQuestion.validation.maxlength": "Connection ID is longer than the 32 characters.",
563
- "core.GCList.insufficientPermission": "To list Copilot Connectors, you need org's Microsoft 365 tenant admin permissions.",
564
+ "core.GCList.insufficientPermission": "To list Copilot connectors, you need org's Microsoft 365 tenant admin permissions.",
564
565
  "core.confirmManifestQuestion.placeholder": "Confirm you've selected the correct manifest file",
565
- "core.createProjectQuestion.addGC.label": "Add a Copilot Connector",
566
- "core.createProjectQuestion.addGC.detail": "Create a declarative agent with a Copilot Connector",
566
+ "core.createProjectQuestion.addGC.label": "Add a Copilot connector",
567
+ "core.createProjectQuestion.addGC.detail": "Create a declarative agent with a Copilot connector",
567
568
  "core.aadAppQuestion.label": "Microsoft Entra app",
568
569
  "core.aadAppQuestion.description": "Your Microsoft Entra app for Single Sign On",
569
570
  "core.convertAadToNewSchema.continue": "Continue",
Binary file
Binary file
Binary file
Binary file
Binary file