├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Lab-910-BEGIN ├── .funcignore ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── TreyResearch API.postman_collection.json ├── appPackage │ ├── TreyResearch-blue-192.png │ ├── TreyResearch-blue-32.png │ ├── extra-icons │ │ ├── TreyResearch-gold-192.png │ │ ├── TreyResearch-gold-32.png │ │ ├── TreyResearch-green-192.png │ │ ├── TreyResearch-green-32.png │ │ ├── TreyResearch-red-192.png │ │ ├── TreyResearch-red-32.png │ │ ├── color.png │ │ └── outline.png │ ├── manifest.json │ ├── trey-declarative-agent.json │ ├── trey-definition.json │ └── trey-plugin.json ├── env │ ├── .env.dev │ ├── .env.local.sample │ └── .env.local.user.sample ├── host.json ├── http │ └── treyResearchAPI.http ├── infra │ ├── azure.bicep │ └── azure.parameters.json ├── local.settings.json ├── package-lock.json ├── package.json ├── sampleDocs │ ├── Bellows College MSA.docx │ ├── Bellows College NDA.docx │ ├── Bellows College SOW - Network security review.docx │ ├── My Hours.xlsx │ ├── Woodgrove MSA.docx │ ├── Woodgrove NDA.docx │ └── Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx ├── scripts │ ├── db-setup.js │ └── db │ │ ├── Assignment.json │ │ ├── Consultant.json │ │ └── Project.json ├── src │ ├── functions │ │ ├── consultants.ts │ │ └── me.ts │ ├── model │ │ ├── apiModel.ts │ │ ├── baseModel.ts │ │ └── dbModel.ts │ └── services │ │ ├── AssignmentDbService.ts │ │ ├── ConsultantApiService.ts │ │ ├── ConsultantDbService.ts │ │ ├── DbService.ts │ │ ├── IdentityService.ts │ │ ├── ProjectApiService.ts │ │ ├── ProjectDbService.ts │ │ └── Utilities.ts ├── teamsapp.local.yml ├── teamsapp.yml └── tsconfig.json ├── Lab-910-END ├── .funcignore ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── TreyResearch API.postman_collection.json ├── appPackage │ ├── TreyResearch-blue-192.png │ ├── TreyResearch-blue-32.png │ ├── extra-icons │ │ ├── TreyResearch-gold-192.png │ │ ├── TreyResearch-gold-32.png │ │ ├── TreyResearch-green-192.png │ │ ├── TreyResearch-green-32.png │ │ ├── TreyResearch-red-192.png │ │ ├── TreyResearch-red-32.png │ │ ├── color.png │ │ └── outline.png │ ├── manifest.json │ ├── trey-declarative-agent.json │ ├── trey-definition.json │ └── trey-plugin.json ├── env │ ├── .env.dev │ ├── .env.local.sample │ └── .env.local.user.sample ├── host.json ├── http │ └── treyResearchAPI.http ├── infra │ ├── azure.bicep │ └── azure.parameters.json ├── local.settings.json ├── package-lock.json ├── package.json ├── sampleDocs │ ├── Bellows College MSA.docx │ ├── Bellows College NDA.docx │ ├── Bellows College SOW - Network security review.docx │ ├── My Hours.xlsx │ ├── Woodgrove MSA.docx │ ├── Woodgrove NDA.docx │ └── Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx ├── scripts │ ├── db-setup.js │ └── db │ │ ├── Assignment.json │ │ ├── Consultant.json │ │ └── Project.json ├── src │ ├── functions │ │ ├── consultants.ts │ │ ├── me.ts │ │ └── projects.ts │ ├── model │ │ ├── apiModel.ts │ │ ├── baseModel.ts │ │ └── dbModel.ts │ └── services │ │ ├── AssignmentDbService.ts │ │ ├── ConsultantApiService.ts │ │ ├── ConsultantDbService.ts │ │ ├── DbService.ts │ │ ├── IdentityService.ts │ │ ├── ProjectApiService.ts │ │ ├── ProjectDbService.ts │ │ └── Utilities.ts ├── teamsapp.local.yml ├── teamsapp.yml └── tsconfig.json ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── Bellows College MSA.docx ├── Bellows College NDA.docx ├── Bellows College SOW - Network security review.docx ├── My Hours.xlsx ├── Woodgrove MSA.docx ├── Woodgrove NDA.docx └── Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx ├── instructions.md └── skillable ├── exercise1.md ├── exercise2.md ├── exercise3.md ├── media ├── 01-04-Setup-TTK-01.png ├── run-declarative-copilot-01.png ├── run-declarative-permission.png ├── run-in-ttk01.png ├── run-in-ttk02.png ├── run-in-ttk04.png ├── run-in-ttk05.png └── sharepoint-docs.png └── prerequisites.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab-910-BEGIN/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.funcignore -------------------------------------------------------------------------------- /Lab-910-BEGIN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.gitignore -------------------------------------------------------------------------------- /Lab-910-BEGIN/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.vscode/extensions.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.vscode/launch.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.vscode/settings.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/.vscode/tasks.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/README.md -------------------------------------------------------------------------------- /Lab-910-BEGIN/TreyResearch API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/TreyResearch API.postman_collection.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/TreyResearch-blue-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/TreyResearch-blue-192.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/TreyResearch-blue-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/TreyResearch-blue-32.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-gold-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-gold-192.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-gold-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-gold-32.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-green-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-green-192.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-green-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-green-32.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-red-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-red-192.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-red-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/TreyResearch-red-32.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/color.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/extra-icons/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/extra-icons/outline.png -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/manifest.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/trey-declarative-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/trey-declarative-agent.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/trey-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/trey-definition.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/appPackage/trey-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/appPackage/trey-plugin.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/env/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/env/.env.dev -------------------------------------------------------------------------------- /Lab-910-BEGIN/env/.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/env/.env.local.sample -------------------------------------------------------------------------------- /Lab-910-BEGIN/env/.env.local.user.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/env/.env.local.user.sample -------------------------------------------------------------------------------- /Lab-910-BEGIN/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/host.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/http/treyResearchAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/http/treyResearchAPI.http -------------------------------------------------------------------------------- /Lab-910-BEGIN/infra/azure.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/infra/azure.bicep -------------------------------------------------------------------------------- /Lab-910-BEGIN/infra/azure.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/infra/azure.parameters.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/local.settings.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/package-lock.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/package.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Bellows College MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Bellows College MSA.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Bellows College NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Bellows College NDA.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Bellows College SOW - Network security review.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Bellows College SOW - Network security review.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/My Hours.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/My Hours.xlsx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Woodgrove MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Woodgrove MSA.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Woodgrove NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Woodgrove NDA.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx -------------------------------------------------------------------------------- /Lab-910-BEGIN/scripts/db-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/scripts/db-setup.js -------------------------------------------------------------------------------- /Lab-910-BEGIN/scripts/db/Assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/scripts/db/Assignment.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/scripts/db/Consultant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/scripts/db/Consultant.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/scripts/db/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/scripts/db/Project.json -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/functions/consultants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/functions/consultants.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/functions/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/functions/me.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/model/apiModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/model/apiModel.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/model/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/model/baseModel.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/model/dbModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/model/dbModel.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/AssignmentDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/AssignmentDbService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/ConsultantApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/ConsultantApiService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/ConsultantDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/ConsultantDbService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/DbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/DbService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/IdentityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/IdentityService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/ProjectApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/ProjectApiService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/ProjectDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/ProjectDbService.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/src/services/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/src/services/Utilities.ts -------------------------------------------------------------------------------- /Lab-910-BEGIN/teamsapp.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/teamsapp.local.yml -------------------------------------------------------------------------------- /Lab-910-BEGIN/teamsapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/teamsapp.yml -------------------------------------------------------------------------------- /Lab-910-BEGIN/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-BEGIN/tsconfig.json -------------------------------------------------------------------------------- /Lab-910-END/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.funcignore -------------------------------------------------------------------------------- /Lab-910-END/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.gitignore -------------------------------------------------------------------------------- /Lab-910-END/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.vscode/extensions.json -------------------------------------------------------------------------------- /Lab-910-END/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.vscode/launch.json -------------------------------------------------------------------------------- /Lab-910-END/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.vscode/settings.json -------------------------------------------------------------------------------- /Lab-910-END/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/.vscode/tasks.json -------------------------------------------------------------------------------- /Lab-910-END/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/README.md -------------------------------------------------------------------------------- /Lab-910-END/TreyResearch API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/TreyResearch API.postman_collection.json -------------------------------------------------------------------------------- /Lab-910-END/appPackage/TreyResearch-blue-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/TreyResearch-blue-192.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/TreyResearch-blue-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/TreyResearch-blue-32.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-gold-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-gold-192.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-gold-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-gold-32.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-green-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-green-192.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-green-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-green-32.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-red-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-red-192.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/TreyResearch-red-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/TreyResearch-red-32.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/color.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/extra-icons/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/extra-icons/outline.png -------------------------------------------------------------------------------- /Lab-910-END/appPackage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/manifest.json -------------------------------------------------------------------------------- /Lab-910-END/appPackage/trey-declarative-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/trey-declarative-agent.json -------------------------------------------------------------------------------- /Lab-910-END/appPackage/trey-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/trey-definition.json -------------------------------------------------------------------------------- /Lab-910-END/appPackage/trey-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/appPackage/trey-plugin.json -------------------------------------------------------------------------------- /Lab-910-END/env/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/env/.env.dev -------------------------------------------------------------------------------- /Lab-910-END/env/.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/env/.env.local.sample -------------------------------------------------------------------------------- /Lab-910-END/env/.env.local.user.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/env/.env.local.user.sample -------------------------------------------------------------------------------- /Lab-910-END/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/host.json -------------------------------------------------------------------------------- /Lab-910-END/http/treyResearchAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/http/treyResearchAPI.http -------------------------------------------------------------------------------- /Lab-910-END/infra/azure.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/infra/azure.bicep -------------------------------------------------------------------------------- /Lab-910-END/infra/azure.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/infra/azure.parameters.json -------------------------------------------------------------------------------- /Lab-910-END/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/local.settings.json -------------------------------------------------------------------------------- /Lab-910-END/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/package-lock.json -------------------------------------------------------------------------------- /Lab-910-END/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/package.json -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Bellows College MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Bellows College MSA.docx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Bellows College NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Bellows College NDA.docx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Bellows College SOW - Network security review.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Bellows College SOW - Network security review.docx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/My Hours.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/My Hours.xlsx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Woodgrove MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Woodgrove MSA.docx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Woodgrove NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Woodgrove NDA.docx -------------------------------------------------------------------------------- /Lab-910-END/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx -------------------------------------------------------------------------------- /Lab-910-END/scripts/db-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/scripts/db-setup.js -------------------------------------------------------------------------------- /Lab-910-END/scripts/db/Assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/scripts/db/Assignment.json -------------------------------------------------------------------------------- /Lab-910-END/scripts/db/Consultant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/scripts/db/Consultant.json -------------------------------------------------------------------------------- /Lab-910-END/scripts/db/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/scripts/db/Project.json -------------------------------------------------------------------------------- /Lab-910-END/src/functions/consultants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/functions/consultants.ts -------------------------------------------------------------------------------- /Lab-910-END/src/functions/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/functions/me.ts -------------------------------------------------------------------------------- /Lab-910-END/src/functions/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/functions/projects.ts -------------------------------------------------------------------------------- /Lab-910-END/src/model/apiModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/model/apiModel.ts -------------------------------------------------------------------------------- /Lab-910-END/src/model/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/model/baseModel.ts -------------------------------------------------------------------------------- /Lab-910-END/src/model/dbModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/model/dbModel.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/AssignmentDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/AssignmentDbService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/ConsultantApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/ConsultantApiService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/ConsultantDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/ConsultantDbService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/DbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/DbService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/IdentityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/IdentityService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/ProjectApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/ProjectApiService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/ProjectDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/ProjectDbService.ts -------------------------------------------------------------------------------- /Lab-910-END/src/services/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/src/services/Utilities.ts -------------------------------------------------------------------------------- /Lab-910-END/teamsapp.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/teamsapp.local.yml -------------------------------------------------------------------------------- /Lab-910-END/teamsapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/teamsapp.yml -------------------------------------------------------------------------------- /Lab-910-END/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/Lab-910-END/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/Bellows College MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Bellows College MSA.docx -------------------------------------------------------------------------------- /docs/Bellows College NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Bellows College NDA.docx -------------------------------------------------------------------------------- /docs/Bellows College SOW - Network security review.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Bellows College SOW - Network security review.docx -------------------------------------------------------------------------------- /docs/My Hours.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/My Hours.xlsx -------------------------------------------------------------------------------- /docs/Woodgrove MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Woodgrove MSA.docx -------------------------------------------------------------------------------- /docs/Woodgrove NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Woodgrove NDA.docx -------------------------------------------------------------------------------- /docs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/docs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/instructions.md -------------------------------------------------------------------------------- /skillable/exercise1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/exercise1.md -------------------------------------------------------------------------------- /skillable/exercise2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/exercise2.md -------------------------------------------------------------------------------- /skillable/exercise3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/exercise3.md -------------------------------------------------------------------------------- /skillable/media/01-04-Setup-TTK-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/01-04-Setup-TTK-01.png -------------------------------------------------------------------------------- /skillable/media/run-declarative-copilot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-declarative-copilot-01.png -------------------------------------------------------------------------------- /skillable/media/run-declarative-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-declarative-permission.png -------------------------------------------------------------------------------- /skillable/media/run-in-ttk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-in-ttk01.png -------------------------------------------------------------------------------- /skillable/media/run-in-ttk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-in-ttk02.png -------------------------------------------------------------------------------- /skillable/media/run-in-ttk04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-in-ttk04.png -------------------------------------------------------------------------------- /skillable/media/run-in-ttk05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/run-in-ttk05.png -------------------------------------------------------------------------------- /skillable/media/sharepoint-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/media/sharepoint-docs.png -------------------------------------------------------------------------------- /skillable/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MCAPSTechConnect25-lab-910/HEAD/skillable/prerequisites.md --------------------------------------------------------------------------------