├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── policies │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ ├── main.yml │ ├── postrelease.yml │ ├── prerelease.yml │ ├── runtimeCheck.yml │ └── size-limit.yml ├── .gitignore ├── .hintrc ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .sdl ├── .gdnbaselines ├── .gdnsuppress └── CredScanSuppressions.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RUNTIME.md ├── SECURITY.md ├── apps ├── .eslintrc.js ├── blazor-test-app │ ├── .gitignore │ ├── App.razor │ ├── Blazor-Test-App.csproj │ ├── Components │ │ ├── Loading.razor │ │ ├── Welcome.razor │ │ └── Welcome.razor.css │ ├── Config.cs │ ├── FakesAssemblies │ │ ├── Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.dll │ │ └── Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.fakesconfig │ ├── Interop │ │ ├── InteropModuleBase.cs │ │ └── TeamsSDK │ │ │ ├── EnumDescriptionConverter.cs │ │ │ ├── MicrosoftTeams.cs │ │ │ ├── TeamsContext.cs │ │ │ └── TeamsInstanceSettings.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Tab.razor │ │ ├── Tab.razor.css │ │ ├── TabConfig.razor │ │ └── _Host.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Shared │ │ └── MainLayout.razor │ ├── _Imports.razor │ ├── appsettings.json │ ├── env │ │ └── .env.dev │ ├── global.json │ ├── package.json │ └── wwwroot │ │ ├── css │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ ├── favicon.ico │ │ ├── hello.png │ │ └── js │ │ └── TeamsJsBlazorInterop.js ├── ssr-test-app │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── manifest.json │ ├── package.json │ ├── pages │ │ └── index.tsx │ └── tsconfig.json ├── teams-perf-test-app │ ├── .babelrc │ ├── .eslintrc.js │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AppInitialization.tsx │ │ │ └── BoxAndButton.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── tsconfig.json │ └── webpack.config.js ├── teams-test-app │ ├── .babelrc │ ├── .eslintrc.js │ ├── README.md │ ├── capabilities.schema.json │ ├── e2e-test-data │ │ ├── app.json │ │ ├── appEntity.json │ │ ├── appInstallDialog.json │ │ ├── authentication.json │ │ ├── barCode.json │ │ ├── calendar.json │ │ ├── call.json │ │ ├── chat.json │ │ ├── clipboard.json │ │ ├── conversation.json │ │ ├── dialog.card.json │ │ ├── dialog.json │ │ ├── dialog.update.json │ │ ├── dialog.url.json │ │ ├── dialog.url.parentCommunication.json │ │ ├── externalAppAuthentication.json │ │ ├── externalAppAuthenticationForCEA.json │ │ ├── externalAppCardActions.json │ │ ├── externalAppCardActionsForCEA.json │ │ ├── externalAppCardActionsForDA.json │ │ ├── externalAppCommands.json │ │ ├── files.json │ │ ├── geoLocation.json │ │ ├── geoLocation.map.json │ │ ├── hostEntity.tab.json │ │ ├── interactive.json │ │ ├── location.json │ │ ├── log.json │ │ ├── mail.handoff.json │ │ ├── mail.json │ │ ├── marketplace.json │ │ ├── media.json │ │ ├── meeting.appShareButton.json │ │ ├── meeting.json │ │ ├── meetingRoom.json │ │ ├── messageChannels.json │ │ ├── monetization.json │ │ ├── nestedAppAuth.json │ │ ├── notifications.json │ │ ├── otherAppStateChange.json │ │ ├── pages.appButton.json │ │ ├── pages.backStack.json │ │ ├── pages.config.json │ │ ├── pages.currentApp.json │ │ ├── pages.fullTrust.json │ │ ├── pages.json │ │ ├── pages.tabs.json │ │ ├── people.json │ │ ├── profile.json │ │ ├── remoteCamera.json │ │ ├── search.json │ │ ├── secondaryBrowser.json │ │ ├── sharing.json │ │ ├── stageView.json │ │ ├── store.json │ │ ├── teams.fullTrust.joinedTeams.json │ │ ├── teams.fullTrust.json │ │ ├── teams.json │ │ ├── thirdPartyCloudStorage.json │ │ ├── video.json │ │ ├── video.mediaStream.json │ │ ├── video.sharedFrame.json │ │ ├── visualMedia.image.json │ │ └── webStorage.json │ ├── index_bundle.html │ ├── index_cdn.html │ ├── index_local.html │ ├── package.json │ ├── public │ │ ├── README.md │ │ ├── color.png │ │ ├── manifest.json │ │ └── outline.png │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AppAPIs.tsx │ │ │ ├── AppEntityAPIs.tsx │ │ │ ├── AppInitialization.tsx │ │ │ ├── AppInstallDialog.tsx │ │ │ ├── AuthenticationAPIs.tsx │ │ │ ├── BarCodeAPIs.tsx │ │ │ ├── CalendarAPIs.tsx │ │ │ ├── CallAPIs.tsx │ │ │ ├── Clipboard.tsx │ │ │ ├── Custom.tsx │ │ │ ├── DialogAPIs.tsx │ │ │ ├── DialogCardAPIs.tsx │ │ │ ├── DialogCardBotAPIs.tsx │ │ │ ├── DialogUpdateAPIs.tsx │ │ │ ├── DialogUrlAPIs.tsx │ │ │ ├── DialogUrlBotAPIs.tsx │ │ │ ├── DialogUrlParentCommunicationAPIs.tsx │ │ │ ├── GeoLocationAPIs.tsx │ │ │ ├── HostEntityTabAPIs.tsx │ │ │ ├── Links.tsx │ │ │ ├── LocationAPIs.tsx │ │ │ ├── LogsAPIs.tsx │ │ │ ├── MailAPIs.tsx │ │ │ ├── MarketplaceAPIs.tsx │ │ │ ├── MediaAPIs.tsx │ │ │ ├── MeetingAPIs.tsx │ │ │ ├── MenusAPIs.tsx │ │ │ ├── NestedAppAuthAPIs.tsx │ │ │ ├── OtherAppStateChangeAPIs.tsx │ │ │ ├── PagesAPIs.tsx │ │ │ ├── PagesAppButtonAPIs.tsx │ │ │ ├── PagesBackStackAPIs.tsx │ │ │ ├── PagesConfigAPIs.tsx │ │ │ ├── PagesCurrentAppAPIs.tsx │ │ │ ├── PagesTabsAPIs.tsx │ │ │ ├── PeopleAPIs.tsx │ │ │ ├── ProfileAPIs.tsx │ │ │ ├── RemoteCameraAPIs.tsx │ │ │ ├── SearchAPIs.tsx │ │ │ ├── SecondaryBrowserAPIs.tsx │ │ │ ├── SharingAPIs.tsx │ │ │ ├── ShortcutRelayAPIs.tsx │ │ │ ├── StageViewAPIs.tsx │ │ │ ├── StageViewSelfAPIs.tsx │ │ │ ├── StoreApis.tsx │ │ │ ├── TeamsCoreAPIs.tsx │ │ │ ├── ThirdPartyCloudStorageAPIs.tsx │ │ │ ├── ThirdPatryCookies.tsx │ │ │ ├── Version.tsx │ │ │ ├── VideoEffectsApis.tsx │ │ │ ├── VisualMediaAPIs.tsx │ │ │ ├── WebStorageAPIs.tsx │ │ │ ├── privateApis │ │ │ │ ├── ChatAPIs.tsx │ │ │ │ ├── CopilotAPIs.tsx │ │ │ │ ├── ExternalAppAuthenticationAPIs.tsx │ │ │ │ ├── ExternalAppAuthenticationForCEAAPIs.tsx │ │ │ │ ├── ExternalAppCardActionsAPIs.tsx │ │ │ │ ├── ExternalAppCardActionsForCEAAPIs.tsx │ │ │ │ ├── ExternalAppCardActionsForDAAPIs.tsx │ │ │ │ ├── ExternalAppCommandsAPIs.tsx │ │ │ │ ├── FilesAPIs.tsx │ │ │ │ ├── FullTrustAPIs.tsx │ │ │ │ ├── MeetingRoomAPIs.tsx │ │ │ │ ├── MessageChannelAPIs.tsx │ │ │ │ ├── MonetizationAPIs.tsx │ │ │ │ ├── NotificationAPIs.tsx │ │ │ │ ├── PrivateAPIs.tsx │ │ │ │ ├── TeamsAPIs.tsx │ │ │ │ └── VideoEffectsExAPIs.tsx │ │ │ └── utils │ │ │ │ ├── ApiContainer.tsx │ │ │ │ ├── ApiWithCheckboxInput.tsx │ │ │ │ ├── ApiWithTextInput.tsx │ │ │ │ ├── ApiWithoutInput.tsx │ │ │ │ ├── ModuleWrapper.tsx │ │ │ │ ├── PrettyPrintJson.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── isTestBackCompat.ts │ │ │ │ └── utils.css │ │ ├── index.css │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── SecondRoute.tsx │ │ │ └── TestApp.tsx │ │ └── public │ │ │ ├── auth_end.html │ │ │ ├── auth_start.html │ │ │ ├── externalOauth_end.html │ │ │ └── naa_childIframe.html │ ├── tsconfig.json │ ├── webpack.cdn.config.js │ ├── webpack.common.js │ ├── webpack.config.js │ └── webpack.local.config.js ├── tree-shaking-test-app │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.cjs └── typed-dependency-tester │ ├── .eslintrc.js │ ├── MicrosoftTeams.min.js │ ├── README.md │ ├── package.json │ ├── tsconfig.json │ └── tsconfig.strictNullChecks.json ├── azure-pipelines.yml ├── beachball.config.js ├── change └── @microsoft-teams-js-fb406c59-b6ec-4286-aab3-7455014d91b6.json ├── enforceBeachball.js ├── jest.config.common.js ├── lerna.json ├── package.json ├── packages └── teams-js │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── eslint-rules │ └── eslint-plugin-recommend-no-namespaces │ │ ├── index.js │ │ ├── package.json │ │ └── recommendNoNamespaces.js │ ├── jest-setup.cjs │ ├── jest.config.cjs │ ├── package.json │ ├── prepBetaRelease.cjs │ ├── rollup.config.mjs │ ├── scripts │ ├── add-npmrc-npmtoken.ps1 │ └── view-published-packages-urls.ps1 │ ├── src │ ├── artifactsForCDN │ │ └── validDomains.json │ ├── index.ts │ ├── internal │ │ ├── VideoFrameTypes.ts │ │ ├── appHelpers.ts │ │ ├── childCommunication.ts │ │ ├── communication.ts │ │ ├── communicationUtils.ts │ │ ├── constants.ts │ │ ├── deepLinkConstants.ts │ │ ├── deepLinkUtilities.ts │ │ ├── dialogHelpers.ts │ │ ├── emailAddressValidation.ts │ │ ├── globalVars.ts │ │ ├── handlers.ts │ │ ├── hostToAppTelemetry.ts │ │ ├── idValidation.ts │ │ ├── interfaces.ts │ │ ├── internalAPIs.ts │ │ ├── marketplaceUtils.ts │ │ ├── mediaUtil.ts │ │ ├── messageObjects.ts │ │ ├── nestedAppAuthUtils.ts │ │ ├── pagesHelpers.ts │ │ ├── profileUtil.ts │ │ ├── responseHandler.ts │ │ ├── telemetry.ts │ │ ├── typeCheckUtilities.ts │ │ ├── utils.ts │ │ ├── validOrigins.ts │ │ ├── videoEffectsUtils.ts │ │ ├── videoFrameTick.ts │ │ ├── videoPerformanceMonitor.ts │ │ ├── videoPerformanceStatistics.ts │ │ ├── visualMediaHelpers.ts │ │ └── webStorageHelpers.ts │ ├── private │ │ ├── appEntity.ts │ │ ├── constants.ts │ │ ├── conversations.ts │ │ ├── copilot │ │ │ ├── copilot.ts │ │ │ ├── customTelemetry.ts │ │ │ ├── eligibility.ts │ │ │ ├── sidePanel.ts │ │ │ ├── sidePanelInterfaces.ts │ │ │ └── view.ts │ │ ├── externalAppAuthentication.ts │ │ ├── externalAppAuthenticationForCEA.ts │ │ ├── externalAppCardActions.ts │ │ ├── externalAppCardActionsForCEA.ts │ │ ├── externalAppCardActionsForDA.ts │ │ ├── externalAppCommands.ts │ │ ├── externalAppErrorHandling.ts │ │ ├── files.ts │ │ ├── hostEntity │ │ │ ├── hostEntity.ts │ │ │ └── tab.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── logs.ts │ │ ├── meetingRoom.ts │ │ ├── messageChannels │ │ │ ├── dataLayer.ts │ │ │ ├── messageChannels.ts │ │ │ └── telemetry.ts │ │ ├── nestedAppAuth │ │ │ └── nestedAppAuthBridge.ts │ │ ├── notifications.ts │ │ ├── otherAppStateChange.ts │ │ ├── privateAPIs.ts │ │ ├── remoteCamera.ts │ │ ├── store.ts │ │ ├── teams │ │ │ ├── fullTrust │ │ │ │ ├── fullTrust.ts │ │ │ │ └── joinedTeams.ts │ │ │ └── teams.ts │ │ └── videoEffectsEx.ts │ └── public │ │ ├── adaptiveCards.ts │ │ ├── app │ │ ├── app.ts │ │ └── lifecycle.ts │ │ ├── appId.ts │ │ ├── appInitialization.ts │ │ ├── appInstallDialog.ts │ │ ├── appWindow.ts │ │ ├── authentication.ts │ │ ├── barCode.ts │ │ ├── calendar.ts │ │ ├── call.ts │ │ ├── chat.ts │ │ ├── clipboard.ts │ │ ├── constants.ts │ │ ├── dialog │ │ ├── adaptiveCard │ │ │ ├── adaptiveCard.ts │ │ │ └── bot.ts │ │ ├── dialog.ts │ │ ├── update.ts │ │ └── url │ │ │ ├── bot.ts │ │ │ ├── parentCommunication.ts │ │ │ └── url.ts │ │ ├── emailAddress.ts │ │ ├── featureFlags.ts │ │ ├── geoLocation │ │ ├── geoLocation.ts │ │ └── map.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── liveShareHost.ts │ │ ├── location.ts │ │ ├── mail │ │ ├── handoff.ts │ │ └── mail.ts │ │ ├── marketplace.ts │ │ ├── media.ts │ │ ├── meeting │ │ ├── appShareButton.ts │ │ └── meeting.ts │ │ ├── menus.ts │ │ ├── monetization.ts │ │ ├── navigation.ts │ │ ├── nestedAppAuth.ts │ │ ├── pages │ │ ├── appButton.ts │ │ ├── backStack.ts │ │ ├── config.ts │ │ ├── currentApp.ts │ │ ├── fullTrust.ts │ │ ├── pages.ts │ │ └── tabs.ts │ │ ├── people.ts │ │ ├── profile.ts │ │ ├── publicAPIs.ts │ │ ├── runtime.ts │ │ ├── search.ts │ │ ├── secondaryBrowser.ts │ │ ├── serializable.interface.ts │ │ ├── settings.ts │ │ ├── sharing │ │ ├── history.ts │ │ └── sharing.ts │ │ ├── shortcutRelay.ts │ │ ├── stageView │ │ ├── self.ts │ │ └── stageView.ts │ │ ├── tasks.ts │ │ ├── teamsAPIs.ts │ │ ├── thirdPartyCloudStorage.ts │ │ ├── uuidObject.ts │ │ ├── validatedSafeString.ts │ │ ├── version.ts │ │ ├── videoEffects.ts │ │ ├── visualMedia │ │ ├── image.ts │ │ └── visualMedia.ts │ │ └── webStorage.ts │ ├── test │ ├── internal │ │ ├── childCommunication.spec.ts │ │ ├── communication.spec.ts │ │ ├── communicationUtils.spec.ts │ │ ├── deepLinkUtilities.spec.ts │ │ ├── emailAddressValidation.spec.ts │ │ ├── idValidation.spec.ts │ │ ├── internalAPI.spec.ts │ │ ├── marketplaceUtils.spec.ts │ │ ├── mediaUtil.spec.ts │ │ ├── profileUtil.spec.ts │ │ ├── responseHandler.spec.ts │ │ ├── utils.spec.ts │ │ ├── validOrigins.spec.ts │ │ ├── videoFrameTick.spec.ts │ │ ├── videoPerformanceMonitor.spec.ts │ │ └── videoPerformanceStatistics.spec.ts │ ├── private │ │ ├── appEntity.spec.ts │ │ ├── conversations.spec.ts │ │ ├── copilot.spec.ts │ │ ├── externalAppAuthentication.spec.ts │ │ ├── externalAppAuthenticationForCEA.spec.ts │ │ ├── externalAppCardActions.spec.ts │ │ ├── externalAppCardActionsForCEA.spec.ts │ │ ├── externalAppCardActionsForDA.spec.ts │ │ ├── externalAppCommands.spec.ts │ │ ├── files.spec.ts │ │ ├── hostEntity.spec.ts │ │ ├── logs.spec.ts │ │ ├── meetingRoom.spec.ts │ │ ├── messageChannels.spec.ts │ │ ├── nestedAppAuthBridge.spec.ts │ │ ├── notifications.spec.ts │ │ ├── otherAppStateChange.spec.ts │ │ ├── privateAPIs.spec.ts │ │ ├── remoteCamera.spec.ts │ │ ├── store.spec.ts │ │ ├── teams.spec.ts │ │ └── videoEffectsEx.spec.ts │ ├── promiseTester.ts │ ├── public │ │ ├── adaptiveCards.spec.ts │ │ ├── app.spec.ts │ │ ├── appId.spec.ts │ │ ├── appInitialization.spec.ts │ │ ├── appInstallDialog.spec.ts │ │ ├── appWindow.spec.ts │ │ ├── authentication.spec.ts │ │ ├── barCode.spec.ts │ │ ├── calendar.spec.ts │ │ ├── call.spec.ts │ │ ├── chat.spec.ts │ │ ├── clipboard.spec.ts │ │ ├── dialog.spec.ts │ │ ├── emailAddress.spec.ts │ │ ├── geoLocation.spec.ts │ │ ├── liveShareHost.spec.ts │ │ ├── location.spec.ts │ │ ├── mail.spec.ts │ │ ├── marketplace.spec.ts │ │ ├── media.spec.ts │ │ ├── meeting.spec.ts │ │ ├── menus.spec.ts │ │ ├── monetization.spec.ts │ │ ├── navigation.spec.ts │ │ ├── nestedAppAuth.spec.ts │ │ ├── pages.spec.ts │ │ ├── people.spec.ts │ │ ├── profile.spec.ts │ │ ├── publicAPIs.spec.ts │ │ ├── runtime.spec.ts │ │ ├── search.spec.ts │ │ ├── secondaryBrowser.spec.ts │ │ ├── serializable.spec.ts │ │ ├── settings.spec.ts │ │ ├── sharing.spec.ts │ │ ├── shortcutRelay.spec.ts │ │ ├── stageView.spec.ts │ │ ├── tasks.spec.ts │ │ ├── teamsAPIs.spec.ts │ │ ├── thirdPartyCloudStorage.spec.ts │ │ ├── version.spec.ts │ │ ├── videoEffects.spec.ts │ │ ├── visualMedia.spec.ts │ │ └── webStorage.spec.ts │ ├── resultValidation.ts │ ├── setupTest.ts │ └── utils.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── typedoc.json │ └── webpack.config.cjs ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── skeleton-buffer ├── index.d.ts ├── index.js └── package.json ├── tools ├── bundle-size-tools │ ├── .eslintrc.js │ ├── README.md │ ├── bundle-analysis-app │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── ADO │ │ │ ├── AdoArtifactFileProvider.ts │ │ │ ├── AdoSizeComparator.ts │ │ │ ├── Constants.ts │ │ │ ├── DefaultStatsProcessors.ts │ │ │ ├── FileSystemBundleFileProvider.ts │ │ │ ├── PrCommentsUtils.ts │ │ │ ├── getAzureDevopsApi.ts │ │ │ ├── getBuildTagForCommit.ts │ │ │ ├── getBundleBuddyConfigMap.ts │ │ │ ├── getBundleFilePathsFromFolder.ts │ │ │ ├── getBundleSummaries.ts │ │ │ ├── getCommentForBundleDiff.ts │ │ │ └── index.ts │ │ ├── BundleBuddyTypes.ts │ │ ├── compareBundles.ts │ │ ├── index.ts │ │ ├── statsProcessors │ │ │ ├── bundleBuddyConfigProcessor.ts │ │ │ ├── entryStatsProcessor.ts │ │ │ ├── index.ts │ │ │ └── totalSizeStatsProcessor.ts │ │ └── utilities │ │ │ ├── decompressStatsFile.ts │ │ │ ├── getAllFilesInDirectory.ts │ │ │ ├── getBuilds.ts │ │ │ ├── getChunkAndDependenciesSizes.ts │ │ │ ├── getChunkParsedSize.ts │ │ │ ├── getLastCommitHashFromPR.ts │ │ │ ├── gitCommands.ts │ │ │ ├── index.ts │ │ │ ├── runProcessorOnStatsFile.ts │ │ │ └── unzipStream.ts │ ├── test │ │ └── gitCommands.spec.ts │ ├── tsconfig.json │ └── tsconfig.strictNullChecks.json ├── cli │ ├── collectBundleAnalysis.js │ ├── compareBundleAnalysis.js │ ├── preRelease.js │ └── readChangelog.js ├── releases │ ├── build-release.yml │ ├── ddl-release.yml │ ├── prod-release.yml │ └── sdf-release.yml ├── validateTestSchema.ts └── yaml-templates │ ├── android-test.yml │ ├── build-app-host.yml │ ├── build-test-publish.yml │ ├── ios-test.yml │ ├── security.yml │ ├── web-e2e-tests-job.yml │ └── web-e2e-versions.yml ├── tsconfig.common.json └── tsconfig.strictNullChecks.json /.eslintignore: -------------------------------------------------------------------------------- 1 | .sdl 2 | .vscode 3 | dist 4 | node_modules -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/postrelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/postrelease.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/runtimeCheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/runtimeCheck.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.hintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.sdl/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.sdl/.gdnbaselines -------------------------------------------------------------------------------- /.sdl/.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.sdl/.gdnsuppress -------------------------------------------------------------------------------- /.sdl/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.sdl/CredScanSuppressions.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @OfficeDev/teams-client-sdk-approvers 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/README.md -------------------------------------------------------------------------------- /RUNTIME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/RUNTIME.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/.eslintrc.js -------------------------------------------------------------------------------- /apps/blazor-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/.gitignore -------------------------------------------------------------------------------- /apps/blazor-test-app/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/App.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/Blazor-Test-App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Blazor-Test-App.csproj -------------------------------------------------------------------------------- /apps/blazor-test-app/Components/Loading.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Components/Loading.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/Components/Welcome.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Components/Welcome.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/Components/Welcome.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Components/Welcome.razor.css -------------------------------------------------------------------------------- /apps/blazor-test-app/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Config.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/FakesAssemblies/Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/FakesAssemblies/Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.dll -------------------------------------------------------------------------------- /apps/blazor-test-app/FakesAssemblies/Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.fakesconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/FakesAssemblies/Microsoft.AspNetCore.Components.Server.6.0.0.0.Fakes.fakesconfig -------------------------------------------------------------------------------- /apps/blazor-test-app/Interop/InteropModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Interop/InteropModuleBase.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Interop/TeamsSDK/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Interop/TeamsSDK/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Interop/TeamsSDK/MicrosoftTeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Interop/TeamsSDK/MicrosoftTeams.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Interop/TeamsSDK/TeamsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Interop/TeamsSDK/TeamsContext.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Interop/TeamsSDK/TeamsInstanceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Interop/TeamsSDK/TeamsInstanceSettings.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/Error.cshtml -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/Tab.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/Tab.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/Tab.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/Tab.razor.css -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/TabConfig.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/TabConfig.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Pages/_Host.cshtml -------------------------------------------------------------------------------- /apps/blazor-test-app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Program.cs -------------------------------------------------------------------------------- /apps/blazor-test-app/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/Properties/launchSettings.json -------------------------------------------------------------------------------- /apps/blazor-test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/README.md -------------------------------------------------------------------------------- /apps/blazor-test-app/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | @Body 3 | -------------------------------------------------------------------------------- /apps/blazor-test-app/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/_Imports.razor -------------------------------------------------------------------------------- /apps/blazor-test-app/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/appsettings.json -------------------------------------------------------------------------------- /apps/blazor-test-app/env/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/env/.env.dev -------------------------------------------------------------------------------- /apps/blazor-test-app/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/global.json -------------------------------------------------------------------------------- /apps/blazor-test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/package.json -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/css/site.css -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/favicon.ico -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/hello.png -------------------------------------------------------------------------------- /apps/blazor-test-app/wwwroot/js/TeamsJsBlazorInterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/blazor-test-app/wwwroot/js/TeamsJsBlazorInterop.js -------------------------------------------------------------------------------- /apps/ssr-test-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/.eslintrc.js -------------------------------------------------------------------------------- /apps/ssr-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/.gitignore -------------------------------------------------------------------------------- /apps/ssr-test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/README.md -------------------------------------------------------------------------------- /apps/ssr-test-app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/manifest.json -------------------------------------------------------------------------------- /apps/ssr-test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/package.json -------------------------------------------------------------------------------- /apps/ssr-test-app/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/pages/index.tsx -------------------------------------------------------------------------------- /apps/ssr-test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/ssr-test-app/tsconfig.json -------------------------------------------------------------------------------- /apps/teams-perf-test-app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/.babelrc -------------------------------------------------------------------------------- /apps/teams-perf-test-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/.eslintrc.js -------------------------------------------------------------------------------- /apps/teams-perf-test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/README.md -------------------------------------------------------------------------------- /apps/teams-perf-test-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/index.html -------------------------------------------------------------------------------- /apps/teams-perf-test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/package.json -------------------------------------------------------------------------------- /apps/teams-perf-test-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/public/manifest.json -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/App.css -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/App.tsx -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/components/AppInitialization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/components/AppInitialization.tsx -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/components/BoxAndButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/components/BoxAndButton.tsx -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/index.css -------------------------------------------------------------------------------- /apps/teams-perf-test-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/src/index.tsx -------------------------------------------------------------------------------- /apps/teams-perf-test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/tsconfig.json -------------------------------------------------------------------------------- /apps/teams-perf-test-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-perf-test-app/webpack.config.js -------------------------------------------------------------------------------- /apps/teams-test-app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/.babelrc -------------------------------------------------------------------------------- /apps/teams-test-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/.eslintrc.js -------------------------------------------------------------------------------- /apps/teams-test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/README.md -------------------------------------------------------------------------------- /apps/teams-test-app/capabilities.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/capabilities.schema.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/app.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/appEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/appEntity.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/appInstallDialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/appInstallDialog.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/authentication.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/barCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/barCode.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/calendar.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/call.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/chat.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/clipboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/clipboard.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/conversation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/conversation.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/dialog.card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/dialog.card.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/dialog.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/dialog.update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/dialog.update.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/dialog.url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/dialog.url.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/dialog.url.parentCommunication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/dialog.url.parentCommunication.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppAuthentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppAuthentication.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppAuthenticationForCEA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppAuthenticationForCEA.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppCardActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppCardActions.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppCardActionsForCEA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppCardActionsForCEA.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppCardActionsForDA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppCardActionsForDA.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/externalAppCommands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/externalAppCommands.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/files.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/geoLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/geoLocation.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/geoLocation.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/geoLocation.map.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/hostEntity.tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/hostEntity.tab.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/interactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/interactive.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/location.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/log.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/mail.handoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/mail.handoff.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/mail.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/marketplace.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/media.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/meeting.appShareButton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/meeting.appShareButton.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/meeting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/meeting.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/meetingRoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/meetingRoom.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/messageChannels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/messageChannels.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/monetization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/monetization.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/nestedAppAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/nestedAppAuth.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/notifications.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/otherAppStateChange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/otherAppStateChange.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.appButton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.appButton.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.backStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.backStack.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.config.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.currentApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.currentApp.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.fullTrust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.fullTrust.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/pages.tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/pages.tabs.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/people.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/profile.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/remoteCamera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/remoteCamera.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/search.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/secondaryBrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/secondaryBrowser.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/sharing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/sharing.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/stageView.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/stageView.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/store.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/teams.fullTrust.joinedTeams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/teams.fullTrust.joinedTeams.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/teams.fullTrust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/teams.fullTrust.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/teams.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/thirdPartyCloudStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/thirdPartyCloudStorage.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/video.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/video.mediaStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/video.mediaStream.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/video.sharedFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/video.sharedFrame.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/visualMedia.image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/visualMedia.image.json -------------------------------------------------------------------------------- /apps/teams-test-app/e2e-test-data/webStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/e2e-test-data/webStorage.json -------------------------------------------------------------------------------- /apps/teams-test-app/index_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/index_bundle.html -------------------------------------------------------------------------------- /apps/teams-test-app/index_cdn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/index_cdn.html -------------------------------------------------------------------------------- /apps/teams-test-app/index_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/index_local.html -------------------------------------------------------------------------------- /apps/teams-test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/package.json -------------------------------------------------------------------------------- /apps/teams-test-app/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/public/README.md -------------------------------------------------------------------------------- /apps/teams-test-app/public/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/public/color.png -------------------------------------------------------------------------------- /apps/teams-test-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/public/manifest.json -------------------------------------------------------------------------------- /apps/teams-test-app/public/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/public/outline.png -------------------------------------------------------------------------------- /apps/teams-test-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/App.css -------------------------------------------------------------------------------- /apps/teams-test-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/App.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/AppAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/AppAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/AppEntityAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/AppEntityAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/AppInitialization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/AppInitialization.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/AppInstallDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/AppInstallDialog.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/AuthenticationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/AuthenticationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/BarCodeAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/BarCodeAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/CalendarAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/CalendarAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/CallAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/CallAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/Clipboard.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/Custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/Custom.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogCardAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogCardAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogCardBotAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogCardBotAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogUpdateAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogUpdateAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogUrlAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogUrlAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogUrlBotAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogUrlBotAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/DialogUrlParentCommunicationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/DialogUrlParentCommunicationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/GeoLocationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/GeoLocationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/HostEntityTabAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/HostEntityTabAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/Links.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/LocationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/LocationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/LogsAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/LogsAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/MailAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/MailAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/MarketplaceAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/MarketplaceAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/MediaAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/MediaAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/MeetingAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/MeetingAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/MenusAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/MenusAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/NestedAppAuthAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/NestedAppAuthAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/OtherAppStateChangeAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/OtherAppStateChangeAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesAppButtonAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesAppButtonAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesBackStackAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesBackStackAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesConfigAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesConfigAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesCurrentAppAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesCurrentAppAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PagesTabsAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PagesTabsAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/PeopleAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/PeopleAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/ProfileAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/ProfileAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/RemoteCameraAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/RemoteCameraAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/SearchAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/SearchAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/SecondaryBrowserAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/SecondaryBrowserAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/SharingAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/SharingAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/ShortcutRelayAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/ShortcutRelayAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/StageViewAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/StageViewAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/StageViewSelfAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/StageViewSelfAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/StoreApis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/StoreApis.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/TeamsCoreAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/TeamsCoreAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/ThirdPartyCloudStorageAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/ThirdPartyCloudStorageAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/ThirdPatryCookies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/ThirdPatryCookies.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/Version.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/VideoEffectsApis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/VideoEffectsApis.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/VisualMediaAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/VisualMediaAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/WebStorageAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/WebStorageAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ChatAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ChatAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/CopilotAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/CopilotAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppAuthenticationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppAuthenticationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppAuthenticationForCEAAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppAuthenticationForCEAAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsForCEAAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsForCEAAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsForDAAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppCardActionsForDAAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/ExternalAppCommandsAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/ExternalAppCommandsAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/FilesAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/FilesAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/FullTrustAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/FullTrustAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/MeetingRoomAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/MeetingRoomAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/MessageChannelAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/MessageChannelAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/MonetizationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/MonetizationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/NotificationAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/NotificationAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/PrivateAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/PrivateAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/TeamsAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/TeamsAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/privateApis/VideoEffectsExAPIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/privateApis/VideoEffectsExAPIs.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/ApiContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/ApiContainer.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/ApiWithCheckboxInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/ApiWithCheckboxInput.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/ApiWithTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/ApiWithTextInput.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/ApiWithoutInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/ApiWithoutInput.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/ModuleWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/ModuleWrapper.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/PrettyPrintJson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/PrettyPrintJson.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/index.ts -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/isTestBackCompat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/isTestBackCompat.ts -------------------------------------------------------------------------------- /apps/teams-test-app/src/components/utils/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/components/utils/utils.css -------------------------------------------------------------------------------- /apps/teams-test-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/index.css -------------------------------------------------------------------------------- /apps/teams-test-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/index.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/pages/SecondRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/pages/SecondRoute.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/pages/TestApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/pages/TestApp.tsx -------------------------------------------------------------------------------- /apps/teams-test-app/src/public/auth_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/public/auth_end.html -------------------------------------------------------------------------------- /apps/teams-test-app/src/public/auth_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/public/auth_start.html -------------------------------------------------------------------------------- /apps/teams-test-app/src/public/externalOauth_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/public/externalOauth_end.html -------------------------------------------------------------------------------- /apps/teams-test-app/src/public/naa_childIframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/src/public/naa_childIframe.html -------------------------------------------------------------------------------- /apps/teams-test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/tsconfig.json -------------------------------------------------------------------------------- /apps/teams-test-app/webpack.cdn.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/webpack.cdn.config.js -------------------------------------------------------------------------------- /apps/teams-test-app/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/webpack.common.js -------------------------------------------------------------------------------- /apps/teams-test-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/webpack.config.js -------------------------------------------------------------------------------- /apps/teams-test-app/webpack.local.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/teams-test-app/webpack.local.config.js -------------------------------------------------------------------------------- /apps/tree-shaking-test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/tree-shaking-test-app/package.json -------------------------------------------------------------------------------- /apps/tree-shaking-test-app/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/tree-shaking-test-app/rollup.config.mjs -------------------------------------------------------------------------------- /apps/tree-shaking-test-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/tree-shaking-test-app/src/index.ts -------------------------------------------------------------------------------- /apps/tree-shaking-test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/tree-shaking-test-app/tsconfig.json -------------------------------------------------------------------------------- /apps/tree-shaking-test-app/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/tree-shaking-test-app/webpack.config.cjs -------------------------------------------------------------------------------- /apps/typed-dependency-tester/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/.eslintrc.js -------------------------------------------------------------------------------- /apps/typed-dependency-tester/MicrosoftTeams.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/MicrosoftTeams.min.js -------------------------------------------------------------------------------- /apps/typed-dependency-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/README.md -------------------------------------------------------------------------------- /apps/typed-dependency-tester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/package.json -------------------------------------------------------------------------------- /apps/typed-dependency-tester/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/tsconfig.json -------------------------------------------------------------------------------- /apps/typed-dependency-tester/tsconfig.strictNullChecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/apps/typed-dependency-tester/tsconfig.strictNullChecks.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /beachball.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/beachball.config.js -------------------------------------------------------------------------------- /change/@microsoft-teams-js-fb406c59-b6ec-4286-aab3-7455014d91b6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/change/@microsoft-teams-js-fb406c59-b6ec-4286-aab3-7455014d91b6.json -------------------------------------------------------------------------------- /enforceBeachball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/enforceBeachball.js -------------------------------------------------------------------------------- /jest.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/jest.config.common.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/package.json -------------------------------------------------------------------------------- /packages/teams-js/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/teams-js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/CHANGELOG.md -------------------------------------------------------------------------------- /packages/teams-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/LICENSE -------------------------------------------------------------------------------- /packages/teams-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/README.md -------------------------------------------------------------------------------- /packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/index.js -------------------------------------------------------------------------------- /packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/package.json -------------------------------------------------------------------------------- /packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/recommendNoNamespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/eslint-rules/eslint-plugin-recommend-no-namespaces/recommendNoNamespaces.js -------------------------------------------------------------------------------- /packages/teams-js/jest-setup.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/jest-setup.cjs -------------------------------------------------------------------------------- /packages/teams-js/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/jest.config.cjs -------------------------------------------------------------------------------- /packages/teams-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/package.json -------------------------------------------------------------------------------- /packages/teams-js/prepBetaRelease.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/prepBetaRelease.cjs -------------------------------------------------------------------------------- /packages/teams-js/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/rollup.config.mjs -------------------------------------------------------------------------------- /packages/teams-js/scripts/add-npmrc-npmtoken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/scripts/add-npmrc-npmtoken.ps1 -------------------------------------------------------------------------------- /packages/teams-js/scripts/view-published-packages-urls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/scripts/view-published-packages-urls.ps1 -------------------------------------------------------------------------------- /packages/teams-js/src/artifactsForCDN/validDomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/artifactsForCDN/validDomains.json -------------------------------------------------------------------------------- /packages/teams-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/index.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/VideoFrameTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/VideoFrameTypes.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/appHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/appHelpers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/childCommunication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/childCommunication.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/communication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/communication.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/communicationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/communicationUtils.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/constants.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/deepLinkConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/deepLinkConstants.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/deepLinkUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/deepLinkUtilities.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/dialogHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/dialogHelpers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/emailAddressValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/emailAddressValidation.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/globalVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/globalVars.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/handlers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/hostToAppTelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/hostToAppTelemetry.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/idValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/idValidation.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/interfaces.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/internalAPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/internalAPIs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/marketplaceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/marketplaceUtils.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/mediaUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/mediaUtil.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/messageObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/messageObjects.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/nestedAppAuthUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/nestedAppAuthUtils.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/pagesHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/pagesHelpers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/profileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/profileUtil.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/responseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/responseHandler.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/telemetry.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/typeCheckUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/typeCheckUtilities.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/utils.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/validOrigins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/validOrigins.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/videoEffectsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/videoEffectsUtils.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/videoFrameTick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/videoFrameTick.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/videoPerformanceMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/videoPerformanceMonitor.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/videoPerformanceStatistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/videoPerformanceStatistics.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/visualMediaHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/visualMediaHelpers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/internal/webStorageHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/internal/webStorageHelpers.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/appEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/appEntity.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/constants.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/conversations.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/copilot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/copilot.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/customTelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/customTelemetry.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/eligibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/eligibility.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/sidePanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/sidePanel.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/sidePanelInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/sidePanelInterfaces.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/copilot/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/copilot/view.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppAuthentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppAuthentication.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppAuthenticationForCEA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppAuthenticationForCEA.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppCardActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppCardActions.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppCardActionsForCEA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppCardActionsForCEA.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppCardActionsForDA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppCardActionsForDA.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppCommands.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/externalAppErrorHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/externalAppErrorHandling.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/files.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/hostEntity/hostEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/hostEntity/hostEntity.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/hostEntity/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/hostEntity/tab.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/index.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/interfaces.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/logs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/meetingRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/meetingRoom.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/messageChannels/dataLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/messageChannels/dataLayer.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/messageChannels/messageChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/messageChannels/messageChannels.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/messageChannels/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/messageChannels/telemetry.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/nestedAppAuth/nestedAppAuthBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/nestedAppAuth/nestedAppAuthBridge.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/notifications.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/otherAppStateChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/otherAppStateChange.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/privateAPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/privateAPIs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/remoteCamera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/remoteCamera.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/store.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/teams/fullTrust/fullTrust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/teams/fullTrust/fullTrust.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/teams/fullTrust/joinedTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/teams/fullTrust/joinedTeams.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/teams/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/teams/teams.ts -------------------------------------------------------------------------------- /packages/teams-js/src/private/videoEffectsEx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/private/videoEffectsEx.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/adaptiveCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/adaptiveCards.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/app/app.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/app/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/app/lifecycle.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/appId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/appId.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/appInitialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/appInitialization.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/appInstallDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/appInstallDialog.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/appWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/appWindow.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/authentication.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/barCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/barCode.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/calendar.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/call.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/chat.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/clipboard.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/constants.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/adaptiveCard/adaptiveCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/adaptiveCard/adaptiveCard.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/adaptiveCard/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/adaptiveCard/bot.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/dialog.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/update.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/url/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/url/bot.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/url/parentCommunication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/url/parentCommunication.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/dialog/url/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/dialog/url/url.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/emailAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/emailAddress.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/featureFlags.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/geoLocation/geoLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/geoLocation/geoLocation.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/geoLocation/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/geoLocation/map.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/index.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/interfaces.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/liveShareHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/liveShareHost.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/location.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/mail/handoff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/mail/handoff.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/mail/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/mail/mail.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/marketplace.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/media.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/meeting/appShareButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/meeting/appShareButton.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/meeting/meeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/meeting/meeting.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/menus.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/monetization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/monetization.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/navigation.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/nestedAppAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/nestedAppAuth.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/appButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/appButton.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/backStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/backStack.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/config.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/currentApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/currentApp.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/fullTrust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/fullTrust.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/pages.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/pages/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/pages/tabs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/people.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/people.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/profile.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/publicAPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/publicAPIs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/runtime.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/search.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/secondaryBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/secondaryBrowser.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/serializable.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/serializable.interface.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/settings.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/sharing/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/sharing/history.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/sharing/sharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/sharing/sharing.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/shortcutRelay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/shortcutRelay.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/stageView/self.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/stageView/self.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/stageView/stageView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/stageView/stageView.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/tasks.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/teamsAPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/teamsAPIs.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/thirdPartyCloudStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/thirdPartyCloudStorage.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/uuidObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/uuidObject.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/validatedSafeString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/validatedSafeString.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/version.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/videoEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/videoEffects.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/visualMedia/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/visualMedia/image.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/visualMedia/visualMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/visualMedia/visualMedia.ts -------------------------------------------------------------------------------- /packages/teams-js/src/public/webStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/src/public/webStorage.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/childCommunication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/childCommunication.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/communication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/communication.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/communicationUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/communicationUtils.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/deepLinkUtilities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/deepLinkUtilities.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/emailAddressValidation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/emailAddressValidation.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/idValidation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/idValidation.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/internalAPI.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/internalAPI.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/marketplaceUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/marketplaceUtils.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/mediaUtil.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/mediaUtil.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/profileUtil.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/profileUtil.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/responseHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/responseHandler.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/utils.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/validOrigins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/validOrigins.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/videoFrameTick.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/videoFrameTick.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/videoPerformanceMonitor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/videoPerformanceMonitor.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/internal/videoPerformanceStatistics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/internal/videoPerformanceStatistics.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/appEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/appEntity.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/conversations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/conversations.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/copilot.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/copilot.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppAuthentication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppAuthentication.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppAuthenticationForCEA.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppAuthenticationForCEA.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppCardActions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppCardActions.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppCardActionsForCEA.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppCardActionsForCEA.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppCardActionsForDA.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppCardActionsForDA.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/externalAppCommands.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/externalAppCommands.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/files.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/files.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/hostEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/hostEntity.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/logs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/logs.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/meetingRoom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/meetingRoom.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/messageChannels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/messageChannels.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/nestedAppAuthBridge.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/nestedAppAuthBridge.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/notifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/notifications.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/otherAppStateChange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/otherAppStateChange.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/privateAPIs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/privateAPIs.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/remoteCamera.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/remoteCamera.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/store.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/teams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/teams.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/private/videoEffectsEx.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/private/videoEffectsEx.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/promiseTester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/promiseTester.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/adaptiveCards.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/adaptiveCards.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/app.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/appId.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/appId.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/appInitialization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/appInitialization.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/appInstallDialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/appInstallDialog.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/appWindow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/appWindow.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/authentication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/authentication.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/barCode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/barCode.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/calendar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/calendar.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/call.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/call.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/chat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/chat.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/clipboard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/clipboard.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/dialog.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/emailAddress.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/emailAddress.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/geoLocation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/geoLocation.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/liveShareHost.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/liveShareHost.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/location.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/mail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/mail.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/marketplace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/marketplace.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/media.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/media.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/meeting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/meeting.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/menus.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/menus.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/monetization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/monetization.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/navigation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/navigation.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/nestedAppAuth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/nestedAppAuth.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/pages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/pages.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/people.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/people.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/profile.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/publicAPIs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/publicAPIs.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/runtime.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/runtime.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/search.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/secondaryBrowser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/secondaryBrowser.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/serializable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/serializable.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/settings.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/sharing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/sharing.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/shortcutRelay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/shortcutRelay.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/stageView.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/stageView.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/tasks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/tasks.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/teamsAPIs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/teamsAPIs.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/thirdPartyCloudStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/thirdPartyCloudStorage.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/version.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/videoEffects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/videoEffects.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/visualMedia.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/visualMedia.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/public/webStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/public/webStorage.spec.ts -------------------------------------------------------------------------------- /packages/teams-js/test/resultValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/resultValidation.ts -------------------------------------------------------------------------------- /packages/teams-js/test/setupTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/setupTest.ts -------------------------------------------------------------------------------- /packages/teams-js/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/test/utils.ts -------------------------------------------------------------------------------- /packages/teams-js/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/teams-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/tsconfig.json -------------------------------------------------------------------------------- /packages/teams-js/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/typedoc.json -------------------------------------------------------------------------------- /packages/teams-js/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/packages/teams-js/webpack.config.cjs -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /skeleton-buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/skeleton-buffer/index.d.ts -------------------------------------------------------------------------------- /skeleton-buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/skeleton-buffer/index.js -------------------------------------------------------------------------------- /skeleton-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/skeleton-buffer/package.json -------------------------------------------------------------------------------- /tools/bundle-size-tools/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/.eslintrc.js -------------------------------------------------------------------------------- /tools/bundle-size-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/README.md -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/.eslintrc.js -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/README.md -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/index.html -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/package.json -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/src/index.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/tsconfig.json -------------------------------------------------------------------------------- /tools/bundle-size-tools/bundle-analysis-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/bundle-analysis-app/webpack.config.js -------------------------------------------------------------------------------- /tools/bundle-size-tools/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/jest.config.js -------------------------------------------------------------------------------- /tools/bundle-size-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/package.json -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/AdoArtifactFileProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/AdoArtifactFileProvider.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/AdoSizeComparator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/AdoSizeComparator.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/Constants.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/DefaultStatsProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/DefaultStatsProcessors.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/FileSystemBundleFileProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/FileSystemBundleFileProvider.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/PrCommentsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/PrCommentsUtils.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getAzureDevopsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getAzureDevopsApi.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getBuildTagForCommit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getBuildTagForCommit.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getBundleBuddyConfigMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getBundleBuddyConfigMap.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getBundleFilePathsFromFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getBundleFilePathsFromFolder.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getBundleSummaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getBundleSummaries.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/getCommentForBundleDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/getCommentForBundleDiff.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/ADO/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/ADO/index.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/BundleBuddyTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/BundleBuddyTypes.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/compareBundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/compareBundles.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/index.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/statsProcessors/bundleBuddyConfigProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/statsProcessors/bundleBuddyConfigProcessor.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/statsProcessors/entryStatsProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/statsProcessors/entryStatsProcessor.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/statsProcessors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/statsProcessors/index.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/statsProcessors/totalSizeStatsProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/statsProcessors/totalSizeStatsProcessor.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/decompressStatsFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/decompressStatsFile.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/getAllFilesInDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/getAllFilesInDirectory.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/getBuilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/getBuilds.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/getChunkAndDependenciesSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/getChunkAndDependenciesSizes.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/getChunkParsedSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/getChunkParsedSize.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/getLastCommitHashFromPR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/getLastCommitHashFromPR.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/gitCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/gitCommands.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/index.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/runProcessorOnStatsFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/runProcessorOnStatsFile.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/src/utilities/unzipStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/src/utilities/unzipStream.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/test/gitCommands.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/test/gitCommands.spec.ts -------------------------------------------------------------------------------- /tools/bundle-size-tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/tsconfig.json -------------------------------------------------------------------------------- /tools/bundle-size-tools/tsconfig.strictNullChecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/bundle-size-tools/tsconfig.strictNullChecks.json -------------------------------------------------------------------------------- /tools/cli/collectBundleAnalysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/cli/collectBundleAnalysis.js -------------------------------------------------------------------------------- /tools/cli/compareBundleAnalysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/cli/compareBundleAnalysis.js -------------------------------------------------------------------------------- /tools/cli/preRelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/cli/preRelease.js -------------------------------------------------------------------------------- /tools/cli/readChangelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/cli/readChangelog.js -------------------------------------------------------------------------------- /tools/releases/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/releases/build-release.yml -------------------------------------------------------------------------------- /tools/releases/ddl-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/releases/ddl-release.yml -------------------------------------------------------------------------------- /tools/releases/prod-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/releases/prod-release.yml -------------------------------------------------------------------------------- /tools/releases/sdf-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/releases/sdf-release.yml -------------------------------------------------------------------------------- /tools/validateTestSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/validateTestSchema.ts -------------------------------------------------------------------------------- /tools/yaml-templates/android-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/android-test.yml -------------------------------------------------------------------------------- /tools/yaml-templates/build-app-host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/build-app-host.yml -------------------------------------------------------------------------------- /tools/yaml-templates/build-test-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/build-test-publish.yml -------------------------------------------------------------------------------- /tools/yaml-templates/ios-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/ios-test.yml -------------------------------------------------------------------------------- /tools/yaml-templates/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/security.yml -------------------------------------------------------------------------------- /tools/yaml-templates/web-e2e-tests-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/web-e2e-tests-job.yml -------------------------------------------------------------------------------- /tools/yaml-templates/web-e2e-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tools/yaml-templates/web-e2e-versions.yml -------------------------------------------------------------------------------- /tsconfig.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tsconfig.common.json -------------------------------------------------------------------------------- /tsconfig.strictNullChecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-library-js/HEAD/tsconfig.strictNullChecks.json --------------------------------------------------------------------------------