├── .devcontainer └── devcontainer.json ├── .gitignore ├── .vscode └── settings.json ├── Bruno ├── README.md ├── SharePoint Embedded.json └── template.bruno_environment.json ├── CODE_OF_CONDUCT.md ├── Copilot └── README.md ├── Fall24Events ├── attendee-materials │ ├── SPE Relevant Links.pdf │ └── SharePoint Embedded Event Sept 2024.pdf └── hands-on-labs │ ├── Lab1 - Getting Started.pdf │ ├── Lab2 - Copilot, Metadata, and Search.pdf │ └── content │ ├── fruits │ ├── Apples.docx │ ├── Bananas.docx │ ├── Grapes.docx │ ├── Oranges.docx │ ├── Overview.docx │ └── Strawberries.docx │ └── vegetables │ ├── Broccoli.docx │ ├── Carrots.docx │ ├── Overview.docx │ ├── Potatoes.docx │ ├── Spinach.docx │ └── Tomatoes.docx ├── LICENSE ├── Postman ├── README.md ├── SharePoint Embedded.postman_collection.json └── template.postman_environment.json ├── Prompts ├── README.md ├── container-permissions.md ├── contoso-audit-agent.md ├── contoso-audit-starter.md ├── contoso-legal-agent.md └── contoso-legal-starter.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── Samples ├── Power Platform │ ├── Images │ │ ├── Containers.png │ │ ├── Files.png │ │ └── Search.png │ ├── SharePoint Embedded Power Platform Connector - Private Preview.pdf │ ├── SharePointEmbeddedStarterKit.zip │ ├── assets │ │ └── sample.json │ └── readme.md ├── PowerShell │ ├── CreateContainer.ps1 │ └── RegisterContainer.ps1 ├── README.md ├── SPE Adoption Kit.pdf ├── asp.net-webservice │ ├── .devcontainer │ │ ├── Dockerfile │ │ ├── devcontainer.json │ │ ├── docker-compose.yml │ │ └── mssql │ │ │ ├── installSQLtools.sh │ │ │ ├── postCreateCommand.sh │ │ │ └── setup.sql │ ├── .gitignore │ ├── Controllers │ │ ├── ContainerController.cs │ │ ├── ContainerMetadataController.cs │ │ ├── ContainerPermissionsController.cs │ │ ├── ContainersController.cs │ │ ├── DriveItemController.cs │ │ ├── HomeController.cs │ │ ├── OnboardingController.cs │ │ ├── PermissionsController.cs │ │ └── PreviewItemController.cs │ ├── Data │ │ ├── DemoDbContext.cs │ │ └── Entities │ │ │ └── TenantSite.cs │ ├── Demo.csproj │ ├── Demo.sln │ ├── Exceptions │ │ └── ContainerException.cs │ ├── Models │ │ ├── ContainerModel.cs │ │ ├── ContainerPermissionModel.cs │ │ ├── ErrorViewModel.cs │ │ └── FilesViewModel.cs │ ├── Program.cs │ ├── README.md │ ├── Services │ │ ├── IMSGraphService.cs │ │ └── MSGraphService.cs │ ├── Startup.cs │ ├── Tutorials │ │ ├── DISTRIBUTED-CACHE.md │ │ ├── RAZOR-PAGES.md │ │ └── USING-CERTIFICATES.md │ ├── Utils │ │ ├── GraphScope.cs │ │ └── UnauthorizedTenantException.cs │ ├── Views │ │ ├── Container │ │ │ └── Index.cshtml │ │ ├── ContainerMetadata │ │ │ └── Index.cshtml │ │ ├── ContainerPermissions │ │ │ ├── Add.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Containers │ │ │ └── Index.cshtml │ │ ├── DriveItem │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── OnBoarding │ │ │ └── SignUp.cshtml │ │ ├── Permissions │ │ │ ├── Add.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── PreviewItem │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.baseline.json │ ├── appsettings.docker.json │ └── wwwroot │ │ └── css │ │ └── site.css ├── docker.md ├── images │ ├── step1b.png │ ├── step2b.png │ ├── step3.png │ ├── step3b.png │ ├── step3b2.png │ ├── step3b3.png │ ├── step4.png │ ├── step4b.png │ ├── step4b2.png │ ├── step5.png │ ├── step5b.png │ ├── step6b.png │ ├── step7b1.png │ ├── step7b2.png │ ├── step8b.png │ ├── step8b10.png │ ├── step8b2.png │ ├── step8b3.png │ ├── step8b4.png │ ├── step8b5.png │ ├── step8b6.png │ ├── step8b7.png │ ├── step8b8.png │ └── step8b9.png ├── migrate-abs-to-spe │ ├── AzureBlobManager.cs │ ├── FileMigrator.cs │ ├── GraphClientManager.cs │ ├── IGraphClientManager.cs │ ├── MigrateABStoSPE.csproj │ ├── MigrateABStoSPE.sln │ ├── Program.cs │ ├── README.md │ └── Utility.cs ├── spa-azurefunction │ ├── .devcontainer │ │ └── devcontainer.json │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── lerna.json │ ├── package-lock.json │ ├── package.json │ └── packages │ │ ├── azure-functions │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── AddContainerPermission │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── CreateContainer │ │ │ ├── function.json │ │ │ ├── index.js │ │ │ └── sample.dat │ │ ├── DeleteContainerPermissionById │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── FAILED TO INITIALIZE RUN FROM PACKAGE.txt │ │ ├── GetContainerPermissions │ │ │ ├── function.json │ │ │ ├── index.js │ │ │ └── sample.dat │ │ ├── ListContainers │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── RaaSSampleFunctionApi.csproj │ │ ├── host.json │ │ ├── local.settings_template.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── utils │ │ │ └── auth.js │ │ └── web.config │ │ └── client-app │ │ ├── .env_template │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SUPPORT.md │ │ ├── first-app-creation.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── containers.js │ │ ├── files.js │ │ └── permissions.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ ├── services │ │ └── raas.js │ │ ├── setupTests.js │ │ └── utils │ │ └── constants.js ├── spe-ocr-sample │ ├── .env │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── ngrok-registration.png │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── server │ │ ├── GraphProvider.ts │ │ ├── ReceiptProcessor.ts │ │ ├── auth.ts │ │ ├── common │ │ │ └── scopes.ts │ │ ├── createContainer.ts │ │ ├── index.ts │ │ ├── listContainers.ts │ │ ├── onReceiptAdded.ts │ │ └── tsconfig.json │ ├── src │ │ ├── App.test.js │ │ ├── App.tsx │ │ ├── common │ │ │ ├── IContainer.ts │ │ │ ├── constants.ts │ │ │ ├── scopes.js │ │ │ └── scopes.ts │ │ ├── components │ │ │ ├── containers.tsx │ │ │ └── files.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.js │ │ ├── services │ │ │ └── spembedded.ts │ │ └── setupTests.js │ └── tsconfig.json └── spe-typescript-react-azurefunction │ ├── .devcontainer │ └── devcontainer.json │ ├── .gitignore │ ├── common │ └── schemas │ │ └── ContainerSchemas.ts │ ├── function-api │ ├── .funcignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── host.json │ ├── local.settings.template.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── common │ │ │ └── Errors.ts │ │ ├── functions │ │ │ ├── changeNotifications.ts │ │ │ ├── containerTypes.ts │ │ │ └── containers.ts │ │ └── providers │ │ │ ├── AppAuthProvider.ts │ │ │ ├── AuthProvider.ts │ │ │ ├── AzureDocAnalysisProvider.ts │ │ │ ├── GraphProvider.ts │ │ │ ├── JwtProvider.ts │ │ │ └── OboAuthProvider.ts │ └── tsconfig.json │ ├── package-lock.json │ ├── package.json │ └── react-client │ ├── .gitignore │ ├── .template.env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── ErrorPage.tsx │ ├── common │ │ ├── Constants.ts │ │ ├── FileSchemas.ts │ │ ├── ILoaderParams.ts │ │ └── Scopes.ts │ ├── components │ │ ├── ChatSidebar.tsx │ │ ├── ContainerActionBar.tsx │ │ ├── ContainerBrowser.tsx │ │ ├── ContainerSelector.tsx │ │ ├── ContainerSettingsDialog.tsx │ │ ├── CreateContainerButton.tsx │ │ └── RouteNotFound.tsx │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── providers │ │ ├── ChatAuthProvider.ts │ │ ├── ChatController.ts │ │ ├── ContainersApiProvider.ts │ │ ├── CustomAppApiAuthProvider.ts │ │ ├── GraphAuthProvider.ts │ │ └── GraphProvider.ts │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── routes │ │ ├── App.css │ │ ├── App.tsx │ │ ├── Containers.tsx │ │ └── Home.tsx │ └── setupTests.ts │ └── tsconfig.json └── events └── SPE City Tour - Slides.pptx /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Bruno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Bruno/README.md -------------------------------------------------------------------------------- /Bruno/SharePoint Embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Bruno/SharePoint Embedded.json -------------------------------------------------------------------------------- /Bruno/template.bruno_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Bruno/template.bruno_environment.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Copilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Copilot/README.md -------------------------------------------------------------------------------- /Fall24Events/attendee-materials/SPE Relevant Links.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/attendee-materials/SPE Relevant Links.pdf -------------------------------------------------------------------------------- /Fall24Events/attendee-materials/SharePoint Embedded Event Sept 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/attendee-materials/SharePoint Embedded Event Sept 2024.pdf -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/Lab1 - Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/Lab1 - Getting Started.pdf -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/Lab2 - Copilot, Metadata, and Search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/Lab2 - Copilot, Metadata, and Search.pdf -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Apples.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Apples.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Bananas.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Bananas.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Grapes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Grapes.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Oranges.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Oranges.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Overview.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/fruits/Strawberries.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/fruits/Strawberries.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Broccoli.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Broccoli.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Carrots.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Carrots.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Overview.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Potatoes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Potatoes.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Spinach.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Spinach.docx -------------------------------------------------------------------------------- /Fall24Events/hands-on-labs/content/vegetables/Tomatoes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Fall24Events/hands-on-labs/content/vegetables/Tomatoes.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Postman/README.md -------------------------------------------------------------------------------- /Postman/SharePoint Embedded.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Postman/SharePoint Embedded.postman_collection.json -------------------------------------------------------------------------------- /Postman/template.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Postman/template.postman_environment.json -------------------------------------------------------------------------------- /Prompts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/README.md -------------------------------------------------------------------------------- /Prompts/container-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/container-permissions.md -------------------------------------------------------------------------------- /Prompts/contoso-audit-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/contoso-audit-agent.md -------------------------------------------------------------------------------- /Prompts/contoso-audit-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/contoso-audit-starter.md -------------------------------------------------------------------------------- /Prompts/contoso-legal-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/contoso-legal-agent.md -------------------------------------------------------------------------------- /Prompts/contoso-legal-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Prompts/contoso-legal-starter.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Samples/Power Platform/Images/Containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/Images/Containers.png -------------------------------------------------------------------------------- /Samples/Power Platform/Images/Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/Images/Files.png -------------------------------------------------------------------------------- /Samples/Power Platform/Images/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/Images/Search.png -------------------------------------------------------------------------------- /Samples/Power Platform/SharePoint Embedded Power Platform Connector - Private Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/SharePoint Embedded Power Platform Connector - Private Preview.pdf -------------------------------------------------------------------------------- /Samples/Power Platform/SharePointEmbeddedStarterKit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/SharePointEmbeddedStarterKit.zip -------------------------------------------------------------------------------- /Samples/Power Platform/assets/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/assets/sample.json -------------------------------------------------------------------------------- /Samples/Power Platform/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/Power Platform/readme.md -------------------------------------------------------------------------------- /Samples/PowerShell/CreateContainer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/PowerShell/CreateContainer.ps1 -------------------------------------------------------------------------------- /Samples/PowerShell/RegisterContainer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/PowerShell/RegisterContainer.ps1 -------------------------------------------------------------------------------- /Samples/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/SPE Adoption Kit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/SPE Adoption Kit.pdf -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/mssql/installSQLtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.devcontainer/mssql/installSQLtools.sh -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/mssql/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.devcontainer/mssql/postCreateCommand.sh -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.devcontainer/mssql/setup.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE RaaSDemoAppDb; 2 | GO 3 | -------------------------------------------------------------------------------- /Samples/asp.net-webservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/.gitignore -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/ContainerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/ContainerController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/ContainerMetadataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/ContainerMetadataController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/ContainerPermissionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/ContainerPermissionsController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/ContainersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/ContainersController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/DriveItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/DriveItemController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/OnboardingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/OnboardingController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/PermissionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/PermissionsController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Controllers/PreviewItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Controllers/PreviewItemController.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Data/DemoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Data/DemoDbContext.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Data/Entities/TenantSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Data/Entities/TenantSite.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Demo.csproj -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Demo.sln -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Exceptions/ContainerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Exceptions/ContainerException.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Models/ContainerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Models/ContainerModel.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Models/ContainerPermissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Models/ContainerPermissionModel.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Models/FilesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Models/FilesViewModel.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Program.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/README.md -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Services/IMSGraphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Services/IMSGraphService.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Services/MSGraphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Services/MSGraphService.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Startup.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Tutorials/DISTRIBUTED-CACHE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Tutorials/DISTRIBUTED-CACHE.md -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Tutorials/RAZOR-PAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Tutorials/RAZOR-PAGES.md -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Tutorials/USING-CERTIFICATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Tutorials/USING-CERTIFICATES.md -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Utils/GraphScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Utils/GraphScope.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Utils/UnauthorizedTenantException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Utils/UnauthorizedTenantException.cs -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Container/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Container/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/ContainerMetadata/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/ContainerMetadata/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/ContainerPermissions/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/ContainerPermissions/Add.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/ContainerPermissions/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/ContainerPermissions/Edit.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/ContainerPermissions/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/ContainerPermissions/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Containers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Containers/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/DriveItem/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/DriveItem/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/OnBoarding/SignUp.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/OnBoarding/SignUp.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Permissions/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Permissions/Add.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Permissions/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Permissions/Edit.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Permissions/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Permissions/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/PreviewItem/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/PreviewItem/Index.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Samples/asp.net-webservice/appsettings.baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/appsettings.baseline.json -------------------------------------------------------------------------------- /Samples/asp.net-webservice/appsettings.docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/appsettings.docker.json -------------------------------------------------------------------------------- /Samples/asp.net-webservice/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/asp.net-webservice/wwwroot/css/site.css -------------------------------------------------------------------------------- /Samples/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/docker.md -------------------------------------------------------------------------------- /Samples/images/step1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step1b.png -------------------------------------------------------------------------------- /Samples/images/step2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step2b.png -------------------------------------------------------------------------------- /Samples/images/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step3.png -------------------------------------------------------------------------------- /Samples/images/step3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step3b.png -------------------------------------------------------------------------------- /Samples/images/step3b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step3b2.png -------------------------------------------------------------------------------- /Samples/images/step3b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step3b3.png -------------------------------------------------------------------------------- /Samples/images/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step4.png -------------------------------------------------------------------------------- /Samples/images/step4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step4b.png -------------------------------------------------------------------------------- /Samples/images/step4b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step4b2.png -------------------------------------------------------------------------------- /Samples/images/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step5.png -------------------------------------------------------------------------------- /Samples/images/step5b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step5b.png -------------------------------------------------------------------------------- /Samples/images/step6b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step6b.png -------------------------------------------------------------------------------- /Samples/images/step7b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step7b1.png -------------------------------------------------------------------------------- /Samples/images/step7b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step7b2.png -------------------------------------------------------------------------------- /Samples/images/step8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b.png -------------------------------------------------------------------------------- /Samples/images/step8b10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b10.png -------------------------------------------------------------------------------- /Samples/images/step8b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b2.png -------------------------------------------------------------------------------- /Samples/images/step8b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b3.png -------------------------------------------------------------------------------- /Samples/images/step8b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b4.png -------------------------------------------------------------------------------- /Samples/images/step8b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b5.png -------------------------------------------------------------------------------- /Samples/images/step8b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b6.png -------------------------------------------------------------------------------- /Samples/images/step8b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b7.png -------------------------------------------------------------------------------- /Samples/images/step8b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b8.png -------------------------------------------------------------------------------- /Samples/images/step8b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/images/step8b9.png -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/AzureBlobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/AzureBlobManager.cs -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/FileMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/FileMigrator.cs -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/GraphClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/GraphClientManager.cs -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/IGraphClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/IGraphClientManager.cs -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/MigrateABStoSPE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/MigrateABStoSPE.csproj -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/MigrateABStoSPE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/MigrateABStoSPE.sln -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/Program.cs -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/README.md -------------------------------------------------------------------------------- /Samples/migrate-abs-to-spe/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/migrate-abs-to-spe/Utility.cs -------------------------------------------------------------------------------- /Samples/spa-azurefunction/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | #A note in gitignore -------------------------------------------------------------------------------- /Samples/spa-azurefunction/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/.vscode/launch.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/README.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/lerna.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/package-lock.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/package.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/.funcignore -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/.gitignore -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/AddContainerPermission/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/AddContainerPermission/function.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/AddContainerPermission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/AddContainerPermission/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/CreateContainer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/CreateContainer/function.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/CreateContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/CreateContainer/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/CreateContainer/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/DeleteContainerPermissionById/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/DeleteContainerPermissionById/function.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/DeleteContainerPermissionById/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/DeleteContainerPermissionById/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/FAILED TO INITIALIZE RUN FROM PACKAGE.txt: -------------------------------------------------------------------------------- 1 | Run From Package Initialization failed. -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/GetContainerPermissions/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/GetContainerPermissions/function.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/GetContainerPermissions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/GetContainerPermissions/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/GetContainerPermissions/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/ListContainers/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/ListContainers/function.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/ListContainers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/ListContainers/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/RaaSSampleFunctionApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/RaaSSampleFunctionApi.csproj -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/host.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/local.settings_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/local.settings_template.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/package-lock.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/package.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/utils/auth.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/azure-functions/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/azure-functions/web.config -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/.env_template: -------------------------------------------------------------------------------- 1 | REACT_APP_CLIENT_ID = -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/.gitignore -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/LICENSE -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/README.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/SECURITY.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/SUPPORT.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/first-app-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/first-app-creation.md -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/package-lock.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/package.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/favicon.ico -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/index.html -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/logo192.png -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/logo512.png -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/manifest.json -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/public/robots.txt -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/App.css -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/App.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/App.test.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/components/containers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/components/containers.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/components/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/components/files.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/components/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/components/permissions.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/index.css -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/index.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/logo.svg -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/services/raas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/services/raas.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/setupTests.js -------------------------------------------------------------------------------- /Samples/spa-azurefunction/packages/client-app/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spa-azurefunction/packages/client-app/src/utils/constants.js -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/.env -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/.gitignore -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/.vscode/settings.json -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/README.md -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/ngrok-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/ngrok-registration.png -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/package-lock.json -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/package.json -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/favicon.ico -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/index.html -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/logo192.png -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/logo512.png -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/manifest.json -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/public/robots.txt -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/GraphProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/GraphProvider.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/ReceiptProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/ReceiptProcessor.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/auth.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/common/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/common/scopes.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/createContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/createContainer.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/index.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/listContainers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/listContainers.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/onReceiptAdded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/onReceiptAdded.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/server/tsconfig.json -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/App.test.js -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/App.tsx -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/common/IContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/common/IContainer.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/common/constants.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/common/scopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/common/scopes.js -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/common/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/common/scopes.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/components/containers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/components/containers.tsx -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/components/files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/components/files.tsx -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/index.css -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/index.tsx -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/logo.svg -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/reportWebVitals.js -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/services/spembedded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/services/spembedded.ts -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/src/setupTests.js -------------------------------------------------------------------------------- /Samples/spe-ocr-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-ocr-sample/tsconfig.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | function-api/local.settings.json 4 | 5 | .env 6 | 7 | dist/ -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/common/schemas/ContainerSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/common/schemas/ContainerSchemas.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/.funcignore -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/.vscode/extensions.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/.vscode/launch.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/.vscode/settings.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/.vscode/tasks.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/host.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/local.settings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/local.settings.template.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/package-lock.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/package.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/common/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/common/Errors.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/functions/changeNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/functions/changeNotifications.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/functions/containerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/functions/containerTypes.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/functions/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/functions/containers.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/AppAuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/AppAuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/AuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/AzureDocAnalysisProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/AzureDocAnalysisProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/GraphProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/GraphProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/JwtProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/JwtProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/src/providers/OboAuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/src/providers/OboAuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/function-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/function-api/tsconfig.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/package-lock.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/package.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/.gitignore -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/.template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/.template.env -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/README.md -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/package-lock.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/package.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/favicon.ico -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/index.html -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/logo192.png -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/logo512.png -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/manifest.json -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/public/robots.txt -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/ErrorPage.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/common/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/common/Constants.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/common/FileSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/common/FileSchemas.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/common/ILoaderParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/common/ILoaderParams.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/common/Scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/common/Scopes.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/ChatSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/ChatSidebar.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerActionBar.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerBrowser.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerSelector.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/ContainerSettingsDialog.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/CreateContainerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/CreateContainerButton.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/components/RouteNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/components/RouteNotFound.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/index.css -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/index.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/logo.svg -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/ChatAuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/ChatAuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/ChatController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/ChatController.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/ContainersApiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/ContainersApiProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/CustomAppApiAuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/CustomAppApiAuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/GraphAuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/GraphAuthProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/providers/GraphProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/providers/GraphProvider.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/reportWebVitals.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/routes/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/routes/App.css -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/routes/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/routes/App.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/routes/Containers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/routes/Containers.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/routes/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/routes/Home.tsx -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/src/setupTests.ts -------------------------------------------------------------------------------- /Samples/spe-typescript-react-azurefunction/react-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/Samples/spe-typescript-react-azurefunction/react-client/tsconfig.json -------------------------------------------------------------------------------- /events/SPE City Tour - Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SharePoint-Embedded-Samples/HEAD/events/SPE City Tour - Slides.pptx --------------------------------------------------------------------------------