@jevelin/bridge 2.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +12 -0
- package/README.md +78 -0
- package/dist/esm/_virtual/_polyfill-node.buffer.js +1 -0
- package/dist/esm/_virtual/_polyfill-node.global.js +1 -0
- package/dist/esm/_virtual/browser.js +1 -0
- package/dist/esm/node_modules/.pnpm/@rollup_plugin-typescript@11.1.6_rollup@4.55.1_tslib@2.8.1_typescript@4.9.5/node_modules/tslib/tslib.es6.js +1 -0
- package/dist/esm/node_modules/.pnpm/debug@4.3.5/node_modules/debug/src/browser.js +1 -0
- package/dist/esm/node_modules/.pnpm/debug@4.3.5/node_modules/debug/src/common.js +1 -0
- package/dist/esm/node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/native.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/rng.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/stringify.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/v4.js +1 -0
- package/dist/esm/node_modules/.pnpm/uuid@11.1.1/node_modules/uuid/dist/esm-browser/validate.js +1 -0
- package/dist/esm/packages/teams-js/dts/index.d.ts +2 -0
- package/dist/esm/packages/teams-js/dts/internal/VideoFrameTypes.d.ts +78 -0
- package/dist/esm/packages/teams-js/dts/internal/appHelpers.d.ts +19 -0
- package/dist/esm/packages/teams-js/dts/internal/childCommunication.d.ts +38 -0
- package/dist/esm/packages/teams-js/dts/internal/communication.d.ts +151 -0
- package/dist/esm/packages/teams-js/dts/internal/communicationUtils.d.ts +20 -0
- package/dist/esm/packages/teams-js/dts/internal/constants.d.ts +146 -0
- package/dist/esm/packages/teams-js/dts/internal/deepLinkConstants.d.ts +26 -0
- package/dist/esm/packages/teams-js/dts/internal/deepLinkUtilities.d.ts +4 -0
- package/dist/esm/packages/teams-js/dts/internal/dialogHelpers.d.ts +32 -0
- package/dist/esm/packages/teams-js/dts/internal/emailAddressValidation.d.ts +1 -0
- package/dist/esm/packages/teams-js/dts/internal/globalVars.d.ts +13 -0
- package/dist/esm/packages/teams-js/dts/internal/handlers.d.ts +101 -0
- package/dist/esm/packages/teams-js/dts/internal/hostToAppTelemetry.d.ts +51 -0
- package/dist/esm/packages/teams-js/dts/internal/idValidation.d.ts +37 -0
- package/dist/esm/packages/teams-js/dts/internal/interfaces.d.ts +58 -0
- package/dist/esm/packages/teams-js/dts/internal/internalAPIs.d.ts +61 -0
- package/dist/esm/packages/teams-js/dts/internal/marketplaceUtils.d.ts +94 -0
- package/dist/esm/packages/teams-js/dts/internal/mediaUtil.d.ts +95 -0
- package/dist/esm/packages/teams-js/dts/internal/messageObjects.d.ts +80 -0
- package/dist/esm/packages/teams-js/dts/internal/nestedAppAuthUtils.d.ts +107 -0
- package/dist/esm/packages/teams-js/dts/internal/pagesHelpers.d.ts +27 -0
- package/dist/esm/packages/teams-js/dts/internal/profileUtil.d.ts +33 -0
- package/dist/esm/packages/teams-js/dts/internal/responseHandler.d.ts +32 -0
- package/dist/esm/packages/teams-js/dts/internal/telemetry.d.ts +411 -0
- package/dist/esm/packages/teams-js/dts/internal/typeCheckUtilities.d.ts +1 -0
- package/dist/esm/packages/teams-js/dts/internal/urlPattern.d.ts +50 -0
- package/dist/esm/packages/teams-js/dts/internal/utils.d.ts +226 -0
- package/dist/esm/packages/teams-js/dts/internal/validOrigins.d.ts +13 -0
- package/dist/esm/packages/teams-js/dts/internal/videoEffectsUtils.d.ts +31 -0
- package/dist/esm/packages/teams-js/dts/internal/videoFrameTick.d.ts +10 -0
- package/dist/esm/packages/teams-js/dts/internal/videoPerformanceMonitor.d.ts +54 -0
- package/dist/esm/packages/teams-js/dts/internal/videoPerformanceStatistics.d.ts +49 -0
- package/dist/esm/packages/teams-js/dts/internal/visualMediaHelpers.d.ts +14 -0
- package/dist/esm/packages/teams-js/dts/internal/webStorageHelpers.d.ts +4 -0
- package/dist/esm/packages/teams-js/dts/private/appEntity.d.ts +89 -0
- package/dist/esm/packages/teams-js/dts/private/constants.d.ts +9 -0
- package/dist/esm/packages/teams-js/dts/private/conversations.d.ts +152 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/copilot.d.ts +5 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/customTelemetry.d.ts +33 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/eligibility.d.ts +31 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/sidePanel.d.ts +75 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/sidePanelInterfaces.d.ts +522 -0
- package/dist/esm/packages/teams-js/dts/private/copilot/view.d.ts +21 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppAuthentication.d.ts +472 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppAuthenticationForCEA.d.ts +93 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppCardActions.d.ts +111 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppCardActionsForCEA.d.ts +48 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppCardActionsForDA.d.ts +75 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppCommands.d.ts +122 -0
- package/dist/esm/packages/teams-js/dts/private/externalAppErrorHandling.d.ts +19 -0
- package/dist/esm/packages/teams-js/dts/private/files.d.ts +766 -0
- package/dist/esm/packages/teams-js/dts/private/hostEntity/hostEntity.d.ts +50 -0
- package/dist/esm/packages/teams-js/dts/private/hostEntity/tab.d.ts +134 -0
- package/dist/esm/packages/teams-js/dts/private/index.d.ts +29 -0
- package/dist/esm/packages/teams-js/dts/private/interfaces.d.ts +290 -0
- package/dist/esm/packages/teams-js/dts/private/logs.d.ts +31 -0
- package/dist/esm/packages/teams-js/dts/private/meetingRoom.d.ts +208 -0
- package/dist/esm/packages/teams-js/dts/private/messageChannels/dataLayer.d.ts +39 -0
- package/dist/esm/packages/teams-js/dts/private/messageChannels/messageChannels.d.ts +28 -0
- package/dist/esm/packages/teams-js/dts/private/messageChannels/telemetry.d.ts +39 -0
- package/dist/esm/packages/teams-js/dts/private/nestedAppAuth/nestedAppAuthBridge.d.ts +32 -0
- package/dist/esm/packages/teams-js/dts/private/notifications.d.ts +32 -0
- package/dist/esm/packages/teams-js/dts/private/otherAppStateChange.d.ts +94 -0
- package/dist/esm/packages/teams-js/dts/private/plugins.d.ts +94 -0
- package/dist/esm/packages/teams-js/dts/private/privateAPIs.d.ts +94 -0
- package/dist/esm/packages/teams-js/dts/private/remoteCamera.d.ts +303 -0
- package/dist/esm/packages/teams-js/dts/private/store.d.ts +128 -0
- package/dist/esm/packages/teams-js/dts/private/teams/fullTrust/fullTrust.d.ts +31 -0
- package/dist/esm/packages/teams-js/dts/private/teams/fullTrust/joinedTeams.d.ts +30 -0
- package/dist/esm/packages/teams-js/dts/private/teams/teams.d.ts +63 -0
- package/dist/esm/packages/teams-js/dts/private/videoEffectsEx.d.ts +250 -0
- package/dist/esm/packages/teams-js/dts/private/widgetHosting/widgetContext.d.ts +121 -0
- package/dist/esm/packages/teams-js/dts/private/widgetHosting/widgetHosting.d.ts +101 -0
- package/dist/esm/packages/teams-js/dts/public/adaptiveCards.d.ts +6 -0
- package/dist/esm/packages/teams-js/dts/public/app/app.d.ts +648 -0
- package/dist/esm/packages/teams-js/dts/public/app/lifecycle.d.ts +41 -0
- package/dist/esm/packages/teams-js/dts/public/appId.d.ts +28 -0
- package/dist/esm/packages/teams-js/dts/public/appInitialization.d.ts +57 -0
- package/dist/esm/packages/teams-js/dts/public/appInstallDialog.d.ts +18 -0
- package/dist/esm/packages/teams-js/dts/public/appPerformanceMetrics.d.ts +24 -0
- package/dist/esm/packages/teams-js/dts/public/appWindow.d.ts +66 -0
- package/dist/esm/packages/teams-js/dts/public/authentication.d.ts +417 -0
- package/dist/esm/packages/teams-js/dts/public/badge.d.ts +42 -0
- package/dist/esm/packages/teams-js/dts/public/barCode.d.ts +54 -0
- package/dist/esm/packages/teams-js/dts/public/calendar.d.ts +41 -0
- package/dist/esm/packages/teams-js/dts/public/call.d.ts +54 -0
- package/dist/esm/packages/teams-js/dts/public/chat.d.ts +68 -0
- package/dist/esm/packages/teams-js/dts/public/clipboard.d.ts +35 -0
- package/dist/esm/packages/teams-js/dts/public/connectivity.d.ts +52 -0
- package/dist/esm/packages/teams-js/dts/public/constants.d.ts +203 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/adaptiveCard/adaptiveCard.d.ts +22 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/adaptiveCard/bot.d.ts +22 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/dialog.d.ts +49 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/update.d.ts +19 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/url/bot.d.ts +25 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/url/parentCommunication.d.ts +41 -0
- package/dist/esm/packages/teams-js/dts/public/dialog/url/url.d.ts +54 -0
- package/dist/esm/packages/teams-js/dts/public/emailAddress.d.ts +12 -0
- package/dist/esm/packages/teams-js/dts/public/externalApp.d.ts +130 -0
- package/dist/esm/packages/teams-js/dts/public/featureFlags.d.ts +44 -0
- package/dist/esm/packages/teams-js/dts/public/geoLocation/geoLocation.d.ts +68 -0
- package/dist/esm/packages/teams-js/dts/public/geoLocation/map.d.ts +33 -0
- package/dist/esm/packages/teams-js/dts/public/haptics.d.ts +42 -0
- package/dist/esm/packages/teams-js/dts/public/index.d.ts +57 -0
- package/dist/esm/packages/teams-js/dts/public/interfaces.d.ts +1321 -0
- package/dist/esm/packages/teams-js/dts/public/liveShareHost.d.ts +220 -0
- package/dist/esm/packages/teams-js/dts/public/location.d.ts +85 -0
- package/dist/esm/packages/teams-js/dts/public/mail/handoff.d.ts +48 -0
- package/dist/esm/packages/teams-js/dts/public/mail/mail.d.ts +97 -0
- package/dist/esm/packages/teams-js/dts/public/marketplace.d.ts +320 -0
- package/dist/esm/packages/teams-js/dts/public/media.d.ts +435 -0
- package/dist/esm/packages/teams-js/dts/public/meeting/appShareButton.d.ts +51 -0
- package/dist/esm/packages/teams-js/dts/public/meeting/meeting.d.ts +854 -0
- package/dist/esm/packages/teams-js/dts/public/menus.d.ts +187 -0
- package/dist/esm/packages/teams-js/dts/public/monetization.d.ts +64 -0
- package/dist/esm/packages/teams-js/dts/public/navigation.d.ts +46 -0
- package/dist/esm/packages/teams-js/dts/public/nestedAppAuth.d.ts +64 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/drafts.d.ts +104 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/inbox.d.ts +86 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/offlineStorage.d.ts +258 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/outbox.d.ts +112 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/sent.d.ts +69 -0
- package/dist/esm/packages/teams-js/dts/public/offlineStorage/sync.d.ts +183 -0
- package/dist/esm/packages/teams-js/dts/public/pages/appButton.d.ts +30 -0
- package/dist/esm/packages/teams-js/dts/public/pages/backStack.d.ts +44 -0
- package/dist/esm/packages/teams-js/dts/public/pages/config.d.ts +123 -0
- package/dist/esm/packages/teams-js/dts/public/pages/currentApp.d.ts +46 -0
- package/dist/esm/packages/teams-js/dts/public/pages/fullTrust.d.ts +33 -0
- package/dist/esm/packages/teams-js/dts/public/pages/pages.d.ts +253 -0
- package/dist/esm/packages/teams-js/dts/public/pages/tabs.d.ts +32 -0
- package/dist/esm/packages/teams-js/dts/public/people.d.ts +73 -0
- package/dist/esm/packages/teams-js/dts/public/profile.d.ts +105 -0
- package/dist/esm/packages/teams-js/dts/public/publicAPIs.d.ts +218 -0
- package/dist/esm/packages/teams-js/dts/public/runtime.d.ts +240 -0
- package/dist/esm/packages/teams-js/dts/public/search.d.ts +90 -0
- package/dist/esm/packages/teams-js/dts/public/secondaryBrowser.d.ts +31 -0
- package/dist/esm/packages/teams-js/dts/public/security.d.ts +83 -0
- package/dist/esm/packages/teams-js/dts/public/serializable.interface.d.ts +17 -0
- package/dist/esm/packages/teams-js/dts/public/settings.d.ts +102 -0
- package/dist/esm/packages/teams-js/dts/public/sharing/history.d.ts +47 -0
- package/dist/esm/packages/teams-js/dts/public/sharing/sharing.d.ts +93 -0
- package/dist/esm/packages/teams-js/dts/public/shortcutRelay.d.ts +53 -0
- package/dist/esm/packages/teams-js/dts/public/stageView/self.d.ts +23 -0
- package/dist/esm/packages/teams-js/dts/public/stageView/stageView.d.ts +81 -0
- package/dist/esm/packages/teams-js/dts/public/tasks.d.ts +52 -0
- package/dist/esm/packages/teams-js/dts/public/teamsAPIs.d.ts +79 -0
- package/dist/esm/packages/teams-js/dts/public/thirdPartyCloudStorage.d.ts +118 -0
- package/dist/esm/packages/teams-js/dts/public/uuidObject.d.ts +38 -0
- package/dist/esm/packages/teams-js/dts/public/validatedSafeString.d.ts +25 -0
- package/dist/esm/packages/teams-js/dts/public/version.d.ts +5 -0
- package/dist/esm/packages/teams-js/dts/public/videoEffects.d.ts +212 -0
- package/dist/esm/packages/teams-js/dts/public/visualMedia/image.d.ts +64 -0
- package/dist/esm/packages/teams-js/dts/public/visualMedia/visualMedia.d.ts +116 -0
- package/dist/esm/packages/teams-js/dts/public/webStorage.d.ts +25 -0
- package/dist/esm/packages/teams-js/src/artifactsForCDN/validDomains.json.js +1 -0
- package/dist/esm/packages/teams-js/src/index.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/appHelpers.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/childCommunication.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/communication.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/communicationUtils.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/constants.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/deepLinkConstants.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/deepLinkUtilities.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/dialogHelpers.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/emailAddressValidation.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/globalVars.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/handlers.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/hostToAppTelemetry.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/idValidation.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/internalAPIs.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/marketplaceUtils.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/mediaUtil.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/messageObjects.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/nestedAppAuthUtils.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/pagesHelpers.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/profileUtil.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/responseHandler.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/telemetry.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/typeCheckUtilities.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/urlPattern.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/utils.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/validOrigins.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/videoEffectsUtils.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/videoFrameTick.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/videoPerformanceMonitor.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/videoPerformanceStatistics.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/visualMediaHelpers.js +1 -0
- package/dist/esm/packages/teams-js/src/internal/webStorageHelpers.js +1 -0
- package/dist/esm/packages/teams-js/src/private/appEntity.js +1 -0
- package/dist/esm/packages/teams-js/src/private/constants.js +1 -0
- package/dist/esm/packages/teams-js/src/private/conversations.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/copilot.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/customTelemetry.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/eligibility.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/sidePanel.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/sidePanelInterfaces.js +1 -0
- package/dist/esm/packages/teams-js/src/private/copilot/view.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppAuthentication.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppAuthenticationForCEA.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppCardActions.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppCardActionsForCEA.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppCardActionsForDA.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppCommands.js +1 -0
- package/dist/esm/packages/teams-js/src/private/externalAppErrorHandling.js +1 -0
- package/dist/esm/packages/teams-js/src/private/files.js +1 -0
- package/dist/esm/packages/teams-js/src/private/hostEntity/hostEntity.js +1 -0
- package/dist/esm/packages/teams-js/src/private/hostEntity/tab.js +1 -0
- package/dist/esm/packages/teams-js/src/private/interfaces.js +1 -0
- package/dist/esm/packages/teams-js/src/private/logs.js +1 -0
- package/dist/esm/packages/teams-js/src/private/meetingRoom.js +1 -0
- package/dist/esm/packages/teams-js/src/private/messageChannels/dataLayer.js +1 -0
- package/dist/esm/packages/teams-js/src/private/messageChannels/messageChannels.js +1 -0
- package/dist/esm/packages/teams-js/src/private/messageChannels/telemetry.js +1 -0
- package/dist/esm/packages/teams-js/src/private/nestedAppAuth/nestedAppAuthBridge.js +1 -0
- package/dist/esm/packages/teams-js/src/private/notifications.js +1 -0
- package/dist/esm/packages/teams-js/src/private/otherAppStateChange.js +1 -0
- package/dist/esm/packages/teams-js/src/private/plugins.js +1 -0
- package/dist/esm/packages/teams-js/src/private/privateAPIs.js +1 -0
- package/dist/esm/packages/teams-js/src/private/remoteCamera.js +1 -0
- package/dist/esm/packages/teams-js/src/private/store.js +1 -0
- package/dist/esm/packages/teams-js/src/private/teams/fullTrust/fullTrust.js +1 -0
- package/dist/esm/packages/teams-js/src/private/teams/fullTrust/joinedTeams.js +1 -0
- package/dist/esm/packages/teams-js/src/private/teams/teams.js +1 -0
- package/dist/esm/packages/teams-js/src/private/videoEffectsEx.js +1 -0
- package/dist/esm/packages/teams-js/src/private/widgetHosting/widgetHosting.js +1 -0
- package/dist/esm/packages/teams-js/src/public/adaptiveCards.js +1 -0
- package/dist/esm/packages/teams-js/src/public/app/app.js +1 -0
- package/dist/esm/packages/teams-js/src/public/app/lifecycle.js +1 -0
- package/dist/esm/packages/teams-js/src/public/appId.js +1 -0
- package/dist/esm/packages/teams-js/src/public/appInitialization.js +1 -0
- package/dist/esm/packages/teams-js/src/public/appInstallDialog.js +1 -0
- package/dist/esm/packages/teams-js/src/public/appPerformanceMetrics.js +1 -0
- package/dist/esm/packages/teams-js/src/public/appWindow.js +1 -0
- package/dist/esm/packages/teams-js/src/public/authentication.js +1 -0
- package/dist/esm/packages/teams-js/src/public/badge.js +1 -0
- package/dist/esm/packages/teams-js/src/public/barCode.js +1 -0
- package/dist/esm/packages/teams-js/src/public/calendar.js +1 -0
- package/dist/esm/packages/teams-js/src/public/call.js +1 -0
- package/dist/esm/packages/teams-js/src/public/chat.js +1 -0
- package/dist/esm/packages/teams-js/src/public/clipboard.js +1 -0
- package/dist/esm/packages/teams-js/src/public/connectivity.js +1 -0
- package/dist/esm/packages/teams-js/src/public/constants.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/adaptiveCard/adaptiveCard.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/adaptiveCard/bot.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/dialog.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/update.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/url/bot.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/url/parentCommunication.js +1 -0
- package/dist/esm/packages/teams-js/src/public/dialog/url/url.js +1 -0
- package/dist/esm/packages/teams-js/src/public/emailAddress.js +1 -0
- package/dist/esm/packages/teams-js/src/public/externalApp.js +1 -0
- package/dist/esm/packages/teams-js/src/public/featureFlags.js +1 -0
- package/dist/esm/packages/teams-js/src/public/geoLocation/geoLocation.js +1 -0
- package/dist/esm/packages/teams-js/src/public/geoLocation/map.js +1 -0
- package/dist/esm/packages/teams-js/src/public/haptics.js +1 -0
- package/dist/esm/packages/teams-js/src/public/interfaces.js +1 -0
- package/dist/esm/packages/teams-js/src/public/liveShareHost.js +1 -0
- package/dist/esm/packages/teams-js/src/public/location.js +1 -0
- package/dist/esm/packages/teams-js/src/public/mail/handoff.js +1 -0
- package/dist/esm/packages/teams-js/src/public/mail/mail.js +1 -0
- package/dist/esm/packages/teams-js/src/public/marketplace.js +1 -0
- package/dist/esm/packages/teams-js/src/public/media.js +1 -0
- package/dist/esm/packages/teams-js/src/public/meeting/appShareButton.js +1 -0
- package/dist/esm/packages/teams-js/src/public/meeting/meeting.js +1 -0
- package/dist/esm/packages/teams-js/src/public/menus.js +1 -0
- package/dist/esm/packages/teams-js/src/public/monetization.js +1 -0
- package/dist/esm/packages/teams-js/src/public/navigation.js +1 -0
- package/dist/esm/packages/teams-js/src/public/nestedAppAuth.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/drafts.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/inbox.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/offlineStorage.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/outbox.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/sent.js +1 -0
- package/dist/esm/packages/teams-js/src/public/offlineStorage/sync.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/appButton.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/backStack.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/config.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/currentApp.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/fullTrust.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/pages.js +1 -0
- package/dist/esm/packages/teams-js/src/public/pages/tabs.js +1 -0
- package/dist/esm/packages/teams-js/src/public/people.js +1 -0
- package/dist/esm/packages/teams-js/src/public/profile.js +1 -0
- package/dist/esm/packages/teams-js/src/public/publicAPIs.js +1 -0
- package/dist/esm/packages/teams-js/src/public/runtime.js +1 -0
- package/dist/esm/packages/teams-js/src/public/search.js +1 -0
- package/dist/esm/packages/teams-js/src/public/secondaryBrowser.js +1 -0
- package/dist/esm/packages/teams-js/src/public/security.js +1 -0
- package/dist/esm/packages/teams-js/src/public/serializable.interface.js +1 -0
- package/dist/esm/packages/teams-js/src/public/settings.js +1 -0
- package/dist/esm/packages/teams-js/src/public/sharing/history.js +1 -0
- package/dist/esm/packages/teams-js/src/public/sharing/sharing.js +1 -0
- package/dist/esm/packages/teams-js/src/public/shortcutRelay.js +1 -0
- package/dist/esm/packages/teams-js/src/public/stageView/self.js +1 -0
- package/dist/esm/packages/teams-js/src/public/stageView/stageView.js +1 -0
- package/dist/esm/packages/teams-js/src/public/tasks.js +1 -0
- package/dist/esm/packages/teams-js/src/public/teamsAPIs.js +1 -0
- package/dist/esm/packages/teams-js/src/public/thirdPartyCloudStorage.js +1 -0
- package/dist/esm/packages/teams-js/src/public/uuidObject.js +1 -0
- package/dist/esm/packages/teams-js/src/public/validatedSafeString.js +1 -0
- package/dist/esm/packages/teams-js/src/public/version.js +1 -0
- package/dist/esm/packages/teams-js/src/public/videoEffects.js +1 -0
- package/dist/esm/packages/teams-js/src/public/visualMedia/image.js +1 -0
- package/dist/esm/packages/teams-js/src/public/visualMedia/visualMedia.js +1 -0
- package/dist/esm/packages/teams-js/src/public/webStorage.js +1 -0
- package/dist/umd/JevelinBridge-manifest.json +642 -0
- package/dist/umd/JevelinBridge.js +23119 -0
- package/dist/umd/JevelinBridge.js.map +1 -0
- package/dist/umd/JevelinBridge.min.js +3 -0
- package/dist/umd/JevelinBridge.min.js.LICENSE.txt +8 -0
- package/dist/umd/JevelinBridge.min.js.map +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hidden
|
|
3
|
+
* @internal
|
|
4
|
+
* @beta
|
|
5
|
+
* @module
|
|
6
|
+
* Limited to Microsoft-internal use
|
|
7
|
+
*
|
|
8
|
+
* This capability allows an app to associate apps with a host entity, such as a Teams channel or chat, and configure them as needed.
|
|
9
|
+
*/
|
|
10
|
+
import * as tab from './tab';
|
|
11
|
+
export declare enum AppTypes {
|
|
12
|
+
edu = "EDU",
|
|
13
|
+
/**
|
|
14
|
+
* Enum to indicate apps should be filtered for base Townhall.
|
|
15
|
+
*/
|
|
16
|
+
baseTownhall = "BASE_TOWNHALL",
|
|
17
|
+
/**
|
|
18
|
+
* Enum to indicate apps should be filtered for streaming Townhall.
|
|
19
|
+
*/
|
|
20
|
+
streamingTownhall = "STREAMING_TOWNHALL"
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Id of the teams entity like channel, chat
|
|
24
|
+
*/
|
|
25
|
+
interface TeamsEntityId {
|
|
26
|
+
threadId: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Id of message in which channel meeting is created
|
|
30
|
+
*/
|
|
31
|
+
export interface TeamsChannelMeetingEntityIds extends TeamsEntityId {
|
|
32
|
+
parentMessageId: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Id of the host entity
|
|
36
|
+
*/
|
|
37
|
+
export type HostEntityIds = TeamsEntityId | TeamsChannelMeetingEntityIds;
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
* @internal
|
|
41
|
+
* @beta
|
|
42
|
+
* Limited to Microsoft-internal use
|
|
43
|
+
*
|
|
44
|
+
* Checks if the hostEntity capability is supported by the host
|
|
45
|
+
* @returns boolean to represent whether the hostEntity capability is supported
|
|
46
|
+
*
|
|
47
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
48
|
+
*/
|
|
49
|
+
export declare function isSupported(): boolean;
|
|
50
|
+
export { tab };
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hidden
|
|
3
|
+
* @internal
|
|
4
|
+
* @beta
|
|
5
|
+
* @module
|
|
6
|
+
* Limited to Microsoft-internal use
|
|
7
|
+
*
|
|
8
|
+
* CRUD operations for tabs associated with apps
|
|
9
|
+
*/
|
|
10
|
+
import { TabInstance } from '../../public/interfaces';
|
|
11
|
+
import { AppTypes, HostEntityIds } from './hostEntity';
|
|
12
|
+
/**
|
|
13
|
+
* Represents information about a static tab instance
|
|
14
|
+
*/
|
|
15
|
+
export interface StaticTabInstance extends TabInstance {
|
|
16
|
+
tabType: 'StaticTab';
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Represents information about a configurable tab instance
|
|
20
|
+
*/
|
|
21
|
+
export interface ConfigurableTabInstance extends TabInstance {
|
|
22
|
+
tabType: 'ConfigurableTab';
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Represents information about a tab instance associated with a host entity like chat, channel or meeting. Cab be a configurable tab or static tab.
|
|
26
|
+
*/
|
|
27
|
+
export type HostEntityTabInstance = StaticTabInstance | ConfigurableTabInstance;
|
|
28
|
+
/**
|
|
29
|
+
* Represents all tabs associated with a host entity like chat, channel or meeting
|
|
30
|
+
*/
|
|
31
|
+
export interface HostEntityTabInstances {
|
|
32
|
+
allTabs: HostEntityTabInstance[];
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
* @internal
|
|
37
|
+
* @beta
|
|
38
|
+
* Limited to Microsoft-internal use
|
|
39
|
+
*
|
|
40
|
+
* Launches host-owned UI that lets a user select an app, installs it if required,
|
|
41
|
+
* runs through app configuration if required, and then associates the app with the threadId provided
|
|
42
|
+
*
|
|
43
|
+
* @param hostEntityIds Ids of the host entity like channel, chat or meeting
|
|
44
|
+
*
|
|
45
|
+
* @param appTypes What type of applications to show the user. If EDU is passed as appType, only apps supported by EDU tenant are shown.
|
|
46
|
+
* If no value is passed, all apps are shown.
|
|
47
|
+
*
|
|
48
|
+
* @returns The HostEntityTabInstance of the newly associated app
|
|
49
|
+
*
|
|
50
|
+
* @throws Error if host does not support this capability, library as not been initialized successfully, input parameters are invalid, user cancels operation or installing
|
|
51
|
+
* or configuring or adding tab fails
|
|
52
|
+
*/
|
|
53
|
+
export declare function addAndConfigure(hostEntityIds: HostEntityIds, appTypes?: AppTypes[]): Promise<HostEntityTabInstance>;
|
|
54
|
+
/**
|
|
55
|
+
* @hidden
|
|
56
|
+
* @internal
|
|
57
|
+
* @beta
|
|
58
|
+
* Limited to Microsoft-internal use
|
|
59
|
+
*
|
|
60
|
+
* Returns all tab instances associated with a host entity
|
|
61
|
+
*
|
|
62
|
+
* @param hostEntityIds Ids of the host entity like channel, chat or meeting
|
|
63
|
+
*
|
|
64
|
+
* @returns Object with array of HostEntityTabInstance's associated with a host entity
|
|
65
|
+
*
|
|
66
|
+
* @throws Error if host does not support this capability, library as not been initialized successfully, input parameters are invalid or fetching tabs fails
|
|
67
|
+
*/
|
|
68
|
+
export declare function getAll(hostEntityIds: HostEntityIds): Promise<HostEntityTabInstances>;
|
|
69
|
+
/**
|
|
70
|
+
* @hidden
|
|
71
|
+
* @internal
|
|
72
|
+
* @beta
|
|
73
|
+
* Limited to Microsoft-internal use
|
|
74
|
+
*
|
|
75
|
+
* Launches host-owned UI that lets a user re-configure the contentUrl of the tab
|
|
76
|
+
*
|
|
77
|
+
* @param tab Configurable tab instance that needs to be updated
|
|
78
|
+
*
|
|
79
|
+
* @param hostEntityIds Ids of the host entity like channel, chat or meeting
|
|
80
|
+
*
|
|
81
|
+
* @returns The HostEntityTabInstance of the updated tab
|
|
82
|
+
*
|
|
83
|
+
* @throws Error if host does not support this capability, library as not been initialized successfully, input parameters are invalid, user cancels operation,
|
|
84
|
+
* re-configuring tab fails or if tab is a static tab
|
|
85
|
+
*/
|
|
86
|
+
export declare function reconfigure(tab: ConfigurableTabInstance, hostEntityIds: HostEntityIds): Promise<ConfigurableTabInstance>;
|
|
87
|
+
/**
|
|
88
|
+
* @hidden
|
|
89
|
+
* @internal
|
|
90
|
+
* @beta
|
|
91
|
+
* Limited to Microsoft-internal use
|
|
92
|
+
*
|
|
93
|
+
* Launches host-owned UI that lets a user rename the tab
|
|
94
|
+
*
|
|
95
|
+
* @param tab Configurable tab instance that needs to be updated
|
|
96
|
+
*
|
|
97
|
+
* @param hostEntityIds Ids of the host entity like channel, chat or meeting
|
|
98
|
+
*
|
|
99
|
+
* @returns The HostEntityTabInstance of the updated tab
|
|
100
|
+
*
|
|
101
|
+
* @throws Error if host does not support this capability, library as not been initialized successfully, input parameters are invalid, user cancels operation,
|
|
102
|
+
* re-naming tab fails or if tab is a static tab
|
|
103
|
+
*/
|
|
104
|
+
export declare function rename(tab: ConfigurableTabInstance, hostEntityIds: HostEntityIds): Promise<ConfigurableTabInstance>;
|
|
105
|
+
/**
|
|
106
|
+
* @hidden
|
|
107
|
+
* @internal
|
|
108
|
+
* @beta
|
|
109
|
+
* Limited to Microsoft-internal use
|
|
110
|
+
*
|
|
111
|
+
* Launches host-owned UI that lets a user remove the tab
|
|
112
|
+
*
|
|
113
|
+
* @param tab tab instance that needs to be updated. Can be static tab or configurable tab.
|
|
114
|
+
*
|
|
115
|
+
* @param hostEntityIds Ids of the host entity like channel, chat or meeting
|
|
116
|
+
*
|
|
117
|
+
* @returns Boolean. Returns true if removing tab was successful
|
|
118
|
+
*
|
|
119
|
+
* @throws Error if host does not support this capability, library as not been initialized successfully, input parameters are invalid, user cancels operation or
|
|
120
|
+
* removing tab fails
|
|
121
|
+
*/
|
|
122
|
+
export declare function remove(tab: HostEntityTabInstance, hostEntityIds: HostEntityIds): Promise<boolean>;
|
|
123
|
+
/**
|
|
124
|
+
* @hidden
|
|
125
|
+
* @internal
|
|
126
|
+
* @beta
|
|
127
|
+
* Limited to Microsoft-internal use
|
|
128
|
+
*
|
|
129
|
+
* Checks if the hostEntity.tab capability is supported by the host
|
|
130
|
+
* @returns boolean to represent whether the histEntity and hostEntity.tab capability is supported
|
|
131
|
+
*
|
|
132
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
133
|
+
*/
|
|
134
|
+
export declare function isSupported(): boolean;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export * as logs from './logs';
|
|
2
|
+
export { ChatMembersInformation, FilePreviewParameters, NotificationTypes, ShowNotificationParameters, TeamInstanceParameters, ThreadMember, UserJoinedTeamsInformation, ViewerActionTypes, UserSettingTypes, } from './interfaces';
|
|
3
|
+
export { sendCustomMessage, sendCustomEvent, registerCustomHandler, uploadCustomApp, registerUserSettingsChangeHandler, openFilePreview, } from './privateAPIs';
|
|
4
|
+
export * as conversations from './conversations';
|
|
5
|
+
export { ConversationResponse, OpenConversationRequest } from './conversations';
|
|
6
|
+
export * as copilot from './copilot/copilot';
|
|
7
|
+
export * as sidePanelInterfaces from './copilot/sidePanelInterfaces';
|
|
8
|
+
export * as externalAppAuthentication from './externalAppAuthentication';
|
|
9
|
+
export { ConnectorParameters, UserAuthenticationState } from './externalAppAuthentication';
|
|
10
|
+
export * as externalAppAuthenticationForCEA from './externalAppAuthenticationForCEA';
|
|
11
|
+
export * as externalAppCardActions from './externalAppCardActions';
|
|
12
|
+
export * as externalAppCardActionsForCEA from './externalAppCardActionsForCEA';
|
|
13
|
+
export * as externalAppCardActionsForDA from './externalAppCardActionsForDA';
|
|
14
|
+
export * as externalAppCommands from './externalAppCommands';
|
|
15
|
+
export * as files from './files';
|
|
16
|
+
export * as meetingRoom from './meetingRoom';
|
|
17
|
+
export * as messageChannels from './messageChannels/messageChannels';
|
|
18
|
+
export * as nestedAppAuthBridge from './nestedAppAuth/nestedAppAuthBridge';
|
|
19
|
+
export * as notifications from './notifications';
|
|
20
|
+
export * as otherAppStateChange from './otherAppStateChange';
|
|
21
|
+
export * as plugins from './plugins';
|
|
22
|
+
export * as remoteCamera from './remoteCamera';
|
|
23
|
+
export * as appEntity from './appEntity';
|
|
24
|
+
export * as teams from './teams/teams';
|
|
25
|
+
export * as videoEffectsEx from './videoEffectsEx';
|
|
26
|
+
export * as hostEntity from './hostEntity/hostEntity';
|
|
27
|
+
export * as store from './store';
|
|
28
|
+
export * as widgetHosting from './widgetHosting/widgetHosting';
|
|
29
|
+
export { ISecurityPolicy, Theme, SafeAreaInsets, SafeArea, DeviceType, UserAgent, IModalOptions, IModalResponse, JSONObject, JSONArray, JSONValue, DisplayMode, IToolInput, IToolOutput, IWidgetContext, } from './widgetHosting/widgetContext';
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
import { FileOpenPreference, TeamInformation } from '../public/interfaces';
|
|
2
|
+
/**
|
|
3
|
+
* @hidden
|
|
4
|
+
*
|
|
5
|
+
* Information about all members in a chat
|
|
6
|
+
*
|
|
7
|
+
* @internal
|
|
8
|
+
* Limited to Microsoft-internal use
|
|
9
|
+
*/
|
|
10
|
+
export interface ChatMembersInformation {
|
|
11
|
+
members: ThreadMember[];
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*
|
|
16
|
+
* Information about a chat member
|
|
17
|
+
*
|
|
18
|
+
* @internal
|
|
19
|
+
* Limited to Microsoft-internal use
|
|
20
|
+
*/
|
|
21
|
+
export interface ThreadMember {
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
* The member's user principal name in the current tenant.
|
|
25
|
+
*
|
|
26
|
+
* @internal
|
|
27
|
+
* Limited to Microsoft-internal use
|
|
28
|
+
*/
|
|
29
|
+
upn: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*
|
|
34
|
+
* @internal
|
|
35
|
+
* Limited to Microsoft-internal use
|
|
36
|
+
*/
|
|
37
|
+
export declare enum NotificationTypes {
|
|
38
|
+
fileDownloadStart = "fileDownloadStart",
|
|
39
|
+
fileDownloadComplete = "fileDownloadComplete"
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* @hidden
|
|
43
|
+
*
|
|
44
|
+
* @internal
|
|
45
|
+
* Limited to Microsoft-internal use
|
|
46
|
+
*/
|
|
47
|
+
export interface ShowNotificationParameters {
|
|
48
|
+
message: string;
|
|
49
|
+
notificationType: NotificationTypes;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @hidden
|
|
53
|
+
*
|
|
54
|
+
* @internal
|
|
55
|
+
* Limited to Microsoft-internal use
|
|
56
|
+
*/
|
|
57
|
+
export declare enum ViewerActionTypes {
|
|
58
|
+
view = "view",
|
|
59
|
+
edit = "edit",
|
|
60
|
+
editNew = "editNew"
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @hidden
|
|
64
|
+
*
|
|
65
|
+
* User setting changes that can be subscribed to
|
|
66
|
+
*/
|
|
67
|
+
export declare enum UserSettingTypes {
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
* Use this key to subscribe to changes in user's file open preference
|
|
71
|
+
*
|
|
72
|
+
* @internal
|
|
73
|
+
* Limited to Microsoft-internal use
|
|
74
|
+
*/
|
|
75
|
+
fileOpenPreference = "fileOpenPreference",
|
|
76
|
+
/**
|
|
77
|
+
* @hidden
|
|
78
|
+
* Use this key to subscribe to theme changes
|
|
79
|
+
*
|
|
80
|
+
* @internal
|
|
81
|
+
* Limited to Microsoft-internal use
|
|
82
|
+
*/
|
|
83
|
+
theme = "theme"
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @hidden
|
|
87
|
+
*
|
|
88
|
+
* @internal
|
|
89
|
+
* Limited to Microsoft-internal use
|
|
90
|
+
*/
|
|
91
|
+
export interface FilePreviewParameters {
|
|
92
|
+
/**
|
|
93
|
+
* @hidden
|
|
94
|
+
* The developer-defined unique ID for the file.
|
|
95
|
+
*
|
|
96
|
+
* @internal
|
|
97
|
+
* Limited to Microsoft-internal use
|
|
98
|
+
*/
|
|
99
|
+
entityId?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @hidden
|
|
102
|
+
* The display name of the file.
|
|
103
|
+
*
|
|
104
|
+
* @internal
|
|
105
|
+
* Limited to Microsoft-internal use
|
|
106
|
+
*/
|
|
107
|
+
title?: string;
|
|
108
|
+
/**
|
|
109
|
+
* @hidden
|
|
110
|
+
* An optional description of the file.
|
|
111
|
+
*
|
|
112
|
+
* @internal
|
|
113
|
+
* Limited to Microsoft-internal use
|
|
114
|
+
*/
|
|
115
|
+
description?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @hidden
|
|
118
|
+
* The file extension; e.g. pptx, docx, etc.
|
|
119
|
+
*
|
|
120
|
+
* @internal
|
|
121
|
+
* Limited to Microsoft-internal use
|
|
122
|
+
*/
|
|
123
|
+
type: string;
|
|
124
|
+
/**
|
|
125
|
+
* @hidden
|
|
126
|
+
* The size of the file in bytes.
|
|
127
|
+
*
|
|
128
|
+
* @internal
|
|
129
|
+
* Limited to Microsoft-internal use
|
|
130
|
+
*/
|
|
131
|
+
sizeInBytes?: number;
|
|
132
|
+
/**
|
|
133
|
+
* @hidden
|
|
134
|
+
* A url to the source of the file, used to open the content in the user's default browser
|
|
135
|
+
*
|
|
136
|
+
* @internal
|
|
137
|
+
* Limited to Microsoft-internal use
|
|
138
|
+
*/
|
|
139
|
+
objectUrl: string;
|
|
140
|
+
/**
|
|
141
|
+
* @hidden
|
|
142
|
+
* Optional; an alternate self-authenticating url used to preview the file in Mobile clients and offer it for download by the user
|
|
143
|
+
*
|
|
144
|
+
* @internal
|
|
145
|
+
* Limited to Microsoft-internal use
|
|
146
|
+
*/
|
|
147
|
+
downloadUrl?: string;
|
|
148
|
+
/**
|
|
149
|
+
* @hidden
|
|
150
|
+
* Optional; an alternate url optimized for previewing the file in web and desktop clients
|
|
151
|
+
*
|
|
152
|
+
* @internal
|
|
153
|
+
* Limited to Microsoft-internal use
|
|
154
|
+
*/
|
|
155
|
+
webPreviewUrl?: string;
|
|
156
|
+
/**
|
|
157
|
+
* @hidden
|
|
158
|
+
* Optional; an alternate url that allows editing of the file in web and desktop clients
|
|
159
|
+
*
|
|
160
|
+
* @internal
|
|
161
|
+
* Limited to Microsoft-internal use
|
|
162
|
+
*/
|
|
163
|
+
webEditUrl?: string;
|
|
164
|
+
/**
|
|
165
|
+
* @hidden
|
|
166
|
+
* Optional; the base url of the site where the file is hosted
|
|
167
|
+
*
|
|
168
|
+
* @internal
|
|
169
|
+
* Limited to Microsoft-internal use
|
|
170
|
+
*/
|
|
171
|
+
baseUrl?: string;
|
|
172
|
+
/**
|
|
173
|
+
* @hidden
|
|
174
|
+
* Deprecated; prefer using {@linkcode viewerAction} instead
|
|
175
|
+
* Optional; indicates whether the file should be opened in edit mode
|
|
176
|
+
*
|
|
177
|
+
* @internal
|
|
178
|
+
* Limited to Microsoft-internal use
|
|
179
|
+
*/
|
|
180
|
+
editFile?: boolean;
|
|
181
|
+
/**
|
|
182
|
+
* @hidden
|
|
183
|
+
* Optional; the developer-defined unique ID for the sub-entity to return to when the file stage closes.
|
|
184
|
+
* This field should be used to restore to a specific state within an entity, such as scrolling to or activating a specific piece of content.
|
|
185
|
+
*
|
|
186
|
+
* @internal
|
|
187
|
+
* Limited to Microsoft-internal use
|
|
188
|
+
*/
|
|
189
|
+
subEntityId?: string;
|
|
190
|
+
/**
|
|
191
|
+
* @hidden
|
|
192
|
+
* Optional; indicates the mode in which file should be opened. Takes precedence over edit mode.
|
|
193
|
+
*
|
|
194
|
+
* @internal
|
|
195
|
+
* Limited to Microsoft-internal use
|
|
196
|
+
*/
|
|
197
|
+
viewerAction?: ViewerActionTypes;
|
|
198
|
+
/**
|
|
199
|
+
* @hidden
|
|
200
|
+
* Optional; indicates how user prefers to open the file
|
|
201
|
+
*
|
|
202
|
+
* @internal
|
|
203
|
+
* Limited to Microsoft-internal use
|
|
204
|
+
*/
|
|
205
|
+
fileOpenPreference?: FileOpenPreference;
|
|
206
|
+
/**
|
|
207
|
+
* @hidden
|
|
208
|
+
* Optional; id required to enable conversation button in files. Will be channel id in case file is shared in a channel or the chat id in p2p chat case.
|
|
209
|
+
*
|
|
210
|
+
* @internal
|
|
211
|
+
* Limited to Microsoft-internal use
|
|
212
|
+
*/
|
|
213
|
+
conversationId?: string;
|
|
214
|
+
/**
|
|
215
|
+
* @hidden
|
|
216
|
+
* Optional; id of message where this file is shared (if applicable)
|
|
217
|
+
*
|
|
218
|
+
* @internal
|
|
219
|
+
* Limited to Microsoft-internal use
|
|
220
|
+
*/
|
|
221
|
+
messageId?: string;
|
|
222
|
+
/**
|
|
223
|
+
* @hidden
|
|
224
|
+
* Optional; used internally to differentiate different callers from within an app
|
|
225
|
+
*
|
|
226
|
+
* @internal
|
|
227
|
+
* Limited to Microsoft-internal use
|
|
228
|
+
*/
|
|
229
|
+
callerInfo?: string;
|
|
230
|
+
/**
|
|
231
|
+
* @hidden
|
|
232
|
+
* Optional; serialised string of atp data which the apps may pass to expediate safelink validations that run when a file is opened
|
|
233
|
+
*
|
|
234
|
+
* @internal
|
|
235
|
+
* Limited to Microsoft-internal use
|
|
236
|
+
*/
|
|
237
|
+
atpData?: string;
|
|
238
|
+
/**
|
|
239
|
+
* @hidden
|
|
240
|
+
* Optional; sharelink of a ODSP file
|
|
241
|
+
*
|
|
242
|
+
* @internal
|
|
243
|
+
* Limited to Microsoft-internal use
|
|
244
|
+
*/
|
|
245
|
+
shareUrl?: string;
|
|
246
|
+
/**
|
|
247
|
+
* @hidden
|
|
248
|
+
* Optional; the reply chain id of message where file is shared. Usually found in channels
|
|
249
|
+
*
|
|
250
|
+
* @internal
|
|
251
|
+
* Limited to Microsoft-internal use
|
|
252
|
+
*/
|
|
253
|
+
replyChainId?: string;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* @hidden
|
|
257
|
+
*
|
|
258
|
+
* Query parameters used when fetching team information
|
|
259
|
+
*
|
|
260
|
+
* @internal
|
|
261
|
+
* Limited to Microsoft-internal use
|
|
262
|
+
*/
|
|
263
|
+
export interface TeamInstanceParameters {
|
|
264
|
+
/**
|
|
265
|
+
* @hidden
|
|
266
|
+
* Flag allowing to select favorite teams only
|
|
267
|
+
*
|
|
268
|
+
* @internal
|
|
269
|
+
* Limited to Microsoft-internal use
|
|
270
|
+
*/
|
|
271
|
+
favoriteTeamsOnly?: boolean;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* @hidden
|
|
275
|
+
*
|
|
276
|
+
* Information on userJoined Teams
|
|
277
|
+
*
|
|
278
|
+
* @internal
|
|
279
|
+
* Limited to Microsoft-internal use
|
|
280
|
+
*/
|
|
281
|
+
export interface UserJoinedTeamsInformation {
|
|
282
|
+
/**
|
|
283
|
+
* @hidden
|
|
284
|
+
* List of team information
|
|
285
|
+
*
|
|
286
|
+
* @internal
|
|
287
|
+
* Limited to Microsoft-internal use
|
|
288
|
+
*/
|
|
289
|
+
userJoinedTeams: TeamInformation[];
|
|
290
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hidden
|
|
3
|
+
* Module to interact with the logging part of the SDK.
|
|
4
|
+
* This object is used to send the app logs on demand to the host client
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
|
+
* Limited to Microsoft-internal use
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*
|
|
12
|
+
* Registers a handler for getting app log
|
|
13
|
+
*
|
|
14
|
+
* @param handler - The handler to invoke to get the app log
|
|
15
|
+
*
|
|
16
|
+
* @internal
|
|
17
|
+
* Limited to Microsoft-internal use
|
|
18
|
+
*/
|
|
19
|
+
export declare function registerGetLogHandler(handler: () => string): void;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*
|
|
23
|
+
* Checks if the logs capability is supported by the host
|
|
24
|
+
* @returns boolean to represent whether the logs capability is supported
|
|
25
|
+
*
|
|
26
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
27
|
+
*
|
|
28
|
+
* @internal
|
|
29
|
+
* Limited to Microsoft-internal use
|
|
30
|
+
*/
|
|
31
|
+
export declare function isSupported(): boolean;
|