@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,187 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Module to interact with the menu-specific part of the SDK.
|
|
3
|
+
* This object is used to show View Configuration, Action Menu and Navigation Bar Menu.
|
|
4
|
+
* @module
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
* Represents information about item in View Configuration.
|
|
9
|
+
*
|
|
10
|
+
* @internal
|
|
11
|
+
* Limited to Microsoft-internal use
|
|
12
|
+
*/
|
|
13
|
+
export interface ViewConfiguration {
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
* Unique identifier of view.
|
|
17
|
+
*
|
|
18
|
+
* @internal
|
|
19
|
+
* Limited to Microsoft-internal use
|
|
20
|
+
*/
|
|
21
|
+
id: string;
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
* Display title of the view.
|
|
25
|
+
*
|
|
26
|
+
* @internal
|
|
27
|
+
* Limited to Microsoft-internal use
|
|
28
|
+
*/
|
|
29
|
+
title: string;
|
|
30
|
+
/**
|
|
31
|
+
* @hidden
|
|
32
|
+
* Additional information for accessibility.
|
|
33
|
+
*
|
|
34
|
+
* @internal
|
|
35
|
+
* Limited to Microsoft-internal use
|
|
36
|
+
*/
|
|
37
|
+
contentDescription?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Defines how a menu item should appear in the NavBar.
|
|
41
|
+
*/
|
|
42
|
+
export declare enum DisplayMode {
|
|
43
|
+
/**
|
|
44
|
+
* Only place this item in the NavBar if there's room for it.
|
|
45
|
+
* If there's no room, item is shown in the overflow menu.
|
|
46
|
+
*/
|
|
47
|
+
ifRoom = 0,
|
|
48
|
+
/**
|
|
49
|
+
* Never place this item in the NavBar.
|
|
50
|
+
* The item would always be shown in NavBar's overflow menu.
|
|
51
|
+
*/
|
|
52
|
+
overflowOnly = 1
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @hidden
|
|
56
|
+
* Represents information about menu item for Action Menu and Navigation Bar Menu.
|
|
57
|
+
*/
|
|
58
|
+
export declare class MenuItem {
|
|
59
|
+
/**
|
|
60
|
+
* @hidden
|
|
61
|
+
* Unique identifier for the menu item.
|
|
62
|
+
*/
|
|
63
|
+
id: string;
|
|
64
|
+
/**
|
|
65
|
+
* @hidden
|
|
66
|
+
* Display title of the menu item.
|
|
67
|
+
*/
|
|
68
|
+
title: string;
|
|
69
|
+
/**
|
|
70
|
+
* @hidden
|
|
71
|
+
* Display icon of the menu item. The icon value must be a string having SVG icon content.
|
|
72
|
+
*/
|
|
73
|
+
icon: string;
|
|
74
|
+
/**
|
|
75
|
+
* @hidden
|
|
76
|
+
* Selected state display icon of the menu item. The icon value must be a string having SVG icon content.
|
|
77
|
+
*/
|
|
78
|
+
iconSelected?: string;
|
|
79
|
+
/**
|
|
80
|
+
* @hidden
|
|
81
|
+
* Additional information for accessibility.
|
|
82
|
+
*/
|
|
83
|
+
contentDescription?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @hidden
|
|
86
|
+
* State of the menu item
|
|
87
|
+
*/
|
|
88
|
+
enabled: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* @hidden
|
|
91
|
+
* Interface to show list of items on selection of menu item.
|
|
92
|
+
*/
|
|
93
|
+
viewData?: ViewData;
|
|
94
|
+
/**
|
|
95
|
+
* @hidden
|
|
96
|
+
* Whether the menu item is selected or not
|
|
97
|
+
*/
|
|
98
|
+
selected: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* The Display Mode of the menu item.
|
|
101
|
+
* Default Behaviour would be DisplayMode.ifRoom if null.
|
|
102
|
+
* Refer {@link DisplayMode}
|
|
103
|
+
*/
|
|
104
|
+
displayMode?: DisplayMode;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* @hidden
|
|
108
|
+
* Represents information about view to show on Navigation Bar Menu item selection
|
|
109
|
+
*/
|
|
110
|
+
export interface ViewData {
|
|
111
|
+
/**
|
|
112
|
+
* @hidden
|
|
113
|
+
* Display header title of the item list.
|
|
114
|
+
*/
|
|
115
|
+
listTitle?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @hidden
|
|
118
|
+
* Type of the menu item.
|
|
119
|
+
*/
|
|
120
|
+
listType: MenuListType;
|
|
121
|
+
/**
|
|
122
|
+
* @hidden
|
|
123
|
+
* Array of MenuItem. Icon value will be required for all items in the list.
|
|
124
|
+
*/
|
|
125
|
+
listItems: MenuItem[];
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* @hidden
|
|
129
|
+
* Represents information about type of list to display in Navigation Bar Menu.
|
|
130
|
+
*/
|
|
131
|
+
export declare enum MenuListType {
|
|
132
|
+
dropDown = "dropDown",
|
|
133
|
+
popOver = "popOver"
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* @hidden
|
|
137
|
+
* Register navBarMenuItemPress, actionMenuItemPress, setModuleView handlers.
|
|
138
|
+
*
|
|
139
|
+
* @internal
|
|
140
|
+
* Limited to Microsoft-internal use.
|
|
141
|
+
*/
|
|
142
|
+
export declare function initialize(): void;
|
|
143
|
+
/**
|
|
144
|
+
* @hidden
|
|
145
|
+
* Registers list of view configurations and it's handler.
|
|
146
|
+
* Handler is responsible for listening selection of View Configuration.
|
|
147
|
+
*
|
|
148
|
+
* @param viewConfig - List of view configurations. Minimum 1 value is required.
|
|
149
|
+
* @param handler - The handler to invoke when the user selects view configuration.
|
|
150
|
+
*/
|
|
151
|
+
export declare function setUpViews(viewConfig: ViewConfiguration[], handler: (id: string) => boolean): void;
|
|
152
|
+
/**
|
|
153
|
+
* @hidden
|
|
154
|
+
* Used to set menu items on the Navigation Bar. If icon is available, icon will be shown, otherwise title will be shown.
|
|
155
|
+
*
|
|
156
|
+
* @param items List of MenuItems for Navigation Bar Menu.
|
|
157
|
+
* @param handler The handler to invoke when the user selects menu item.
|
|
158
|
+
*/
|
|
159
|
+
export declare function setNavBarMenu(items: MenuItem[], handler: (id: string) => boolean): void;
|
|
160
|
+
/** Parameters used to create an action menu within an app */
|
|
161
|
+
export interface ActionMenuParameters {
|
|
162
|
+
/**
|
|
163
|
+
* @hidden
|
|
164
|
+
* Display title for Action Menu
|
|
165
|
+
*/
|
|
166
|
+
title: string;
|
|
167
|
+
/**
|
|
168
|
+
* @hidden
|
|
169
|
+
* List of MenuItems for Action Menu
|
|
170
|
+
*/
|
|
171
|
+
items: MenuItem[];
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* @hidden
|
|
175
|
+
* Used to show Action Menu.
|
|
176
|
+
*
|
|
177
|
+
* @param params - Parameters for Menu Parameters
|
|
178
|
+
* @param handler - The handler to invoke when the user selects menu item.
|
|
179
|
+
*/
|
|
180
|
+
export declare function showActionMenu(params: ActionMenuParameters, handler: (id: string) => boolean): void;
|
|
181
|
+
/**
|
|
182
|
+
* Checks if the menus capability is supported by the host
|
|
183
|
+
* @returns boolean to represent whether the menus capability is supported
|
|
184
|
+
*
|
|
185
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
186
|
+
*/
|
|
187
|
+
export declare function isSupported(): boolean;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hidden
|
|
3
|
+
* Hidden from Docs
|
|
4
|
+
*
|
|
5
|
+
* @internal
|
|
6
|
+
* Limited to Microsoft-internal use
|
|
7
|
+
* @module
|
|
8
|
+
*/
|
|
9
|
+
import { SdkError } from './interfaces';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
* Data structure to represent a subscription plan.
|
|
13
|
+
*
|
|
14
|
+
* @internal
|
|
15
|
+
* Limited to Microsoft-internal use
|
|
16
|
+
*/
|
|
17
|
+
export interface PlanInfo {
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
* plan id
|
|
21
|
+
*/
|
|
22
|
+
planId: string;
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
* term of the plan
|
|
26
|
+
*/
|
|
27
|
+
term: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
* Open dialog to start user's purchase experience
|
|
32
|
+
*
|
|
33
|
+
* @param planInfo optional parameter. It contains info of the subscription plan pushed to users.
|
|
34
|
+
* error can either contain an error of type SdkError, incase of an error, or null when get is successful
|
|
35
|
+
* @returns Promise that will be resolved when the operation has completed or rejected with SdkError value
|
|
36
|
+
*
|
|
37
|
+
* @internal
|
|
38
|
+
* Limited to Microsoft-internal use
|
|
39
|
+
*/
|
|
40
|
+
export declare function openPurchaseExperience(planInfo?: PlanInfo): Promise<void>;
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated
|
|
43
|
+
* As of TeamsJS v2.0.0, please use {@link monetization.openPurchaseExperience monetization.openPurchaseExperience(planInfo?: PlanInfo): Promise\<void\>} instead.
|
|
44
|
+
*
|
|
45
|
+
* @hidden
|
|
46
|
+
* Open dialog to start user's purchase experience
|
|
47
|
+
*
|
|
48
|
+
* @param callback Callback contains 1 parameters, error.
|
|
49
|
+
* @param planInfo optional parameter. It contains info of the subscription plan pushed to users.
|
|
50
|
+
* error can either contain an error of type SdkError, incase of an error, or null when get is successful
|
|
51
|
+
*
|
|
52
|
+
* @internal
|
|
53
|
+
* Limited to Microsoft-internal use
|
|
54
|
+
*/
|
|
55
|
+
export declare function openPurchaseExperience(callback: (error: SdkError | null) => void, planInfo?: PlanInfo): void;
|
|
56
|
+
/**
|
|
57
|
+
* @hidden
|
|
58
|
+
*
|
|
59
|
+
* Checks if the monetization capability is supported by the host
|
|
60
|
+
* @returns boolean to represent whether the monetization capability is supported
|
|
61
|
+
*
|
|
62
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
63
|
+
*/
|
|
64
|
+
export declare function isSupported(): boolean;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Navigation specific part of the SDK.
|
|
3
|
+
* @module
|
|
4
|
+
*/
|
|
5
|
+
import { TabInstance } from './interfaces';
|
|
6
|
+
/** Navigation on complete handler function type */
|
|
7
|
+
export type onCompleteHandlerFunctionType = (status: boolean, reason?: string) => void;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated
|
|
10
|
+
* As of TeamsJS v2.0.0, please use {@link pages.returnFocus pages.returnFocus(navigateForward?: boolean): void} instead.
|
|
11
|
+
*
|
|
12
|
+
* Return focus to the main Teams app. Will focus search bar if navigating foward and app bar if navigating back.
|
|
13
|
+
*
|
|
14
|
+
* @param navigateForward - Determines the direction to focus in teams app.
|
|
15
|
+
*/
|
|
16
|
+
export declare function returnFocus(navigateForward?: boolean): void;
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated
|
|
19
|
+
* As of TeamsJS v2.0.0, please use {@link pages.tabs.navigateToTab pages.tabs.navigateToTab(tabInstance: TabInstance): Promise\<void\>} instead.
|
|
20
|
+
*
|
|
21
|
+
* Navigates the Microsoft Teams app to the specified tab instance.
|
|
22
|
+
*
|
|
23
|
+
* @param tabInstance - The tab instance to navigate to.
|
|
24
|
+
* @param onComplete - The callback to invoke when the action is complete.
|
|
25
|
+
*/
|
|
26
|
+
export declare function navigateToTab(tabInstance: TabInstance, onComplete?: onCompleteHandlerFunctionType): void;
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated
|
|
29
|
+
* As of 2.0.0, this API is deprecated and can be replaced by the standard JavaScript
|
|
30
|
+
* API, window.location.href, when navigating the app to a new cross-domain URL. Any URL
|
|
31
|
+
* that is redirected to must be listed in the validDomains block of the manifest. Please
|
|
32
|
+
* remove any calls to this API.
|
|
33
|
+
* @param url - The URL to navigate the frame to.
|
|
34
|
+
* @param onComplete - The callback to invoke when the action is complete.
|
|
35
|
+
*/
|
|
36
|
+
export declare function navigateCrossDomain(url: string, onComplete?: onCompleteHandlerFunctionType): void;
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated
|
|
39
|
+
* As of TeamsJS v2.0.0, please use {@link pages.backStack.navigateBack pages.backStack.navigateBack(): Promise\<void\>} instead.
|
|
40
|
+
*
|
|
41
|
+
* Navigates back in the Teams client.
|
|
42
|
+
* See registerBackButtonHandler for more information on when it's appropriate to use this method.
|
|
43
|
+
*
|
|
44
|
+
* @param onComplete - The callback to invoke when the action is complete.
|
|
45
|
+
*/
|
|
46
|
+
export declare function navigateBack(onComplete?: onCompleteHandlerFunctionType): void;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Checks if MSAL-NAA channel recommended by the host
|
|
3
|
+
* @returns true if host is recommending NAA channel and false otherwise
|
|
4
|
+
*
|
|
5
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export declare function isNAAChannelRecommended(): boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Gets the origin of the parent window if available.
|
|
11
|
+
* This will be the top-level origin in the case of a parent app.
|
|
12
|
+
* It is used to pass to the embedded child app to initialize the Nested App Auth bridge.
|
|
13
|
+
|
|
14
|
+
* @returns The origin string if available, otherwise null
|
|
15
|
+
*
|
|
16
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
17
|
+
*
|
|
18
|
+
* @beta
|
|
19
|
+
*/
|
|
20
|
+
export declare function getParentOrigin(): string | null;
|
|
21
|
+
/**
|
|
22
|
+
* Checks if the parent has the capability to manage its list of trusted child origins
|
|
23
|
+
* for Nested App Auth (NAA).
|
|
24
|
+
*
|
|
25
|
+
* @returns true if parent can manage NAA TrustedOrigins, false otherwise
|
|
26
|
+
*
|
|
27
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
28
|
+
*
|
|
29
|
+
* @beta
|
|
30
|
+
*/
|
|
31
|
+
export declare function canParentManageNAATrustedOrigins(): boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Checks if NAA deeply nested scenario supported by the host
|
|
34
|
+
* @returns true if host supports
|
|
35
|
+
*
|
|
36
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
37
|
+
*
|
|
38
|
+
* @beta
|
|
39
|
+
*/
|
|
40
|
+
export declare function isDeeplyNestedAuthSupported(): boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Registers the origins of child apps as trusted for Nested App Auth (NAA).
|
|
43
|
+
*
|
|
44
|
+
* This allows a top-level parent app to specify which child app origins are considered trusted
|
|
45
|
+
*
|
|
46
|
+
* @param appOrigins - An array of child app origins to trust (must be a non-empty array).
|
|
47
|
+
* @returns A Promise resolving with the result of the action.
|
|
48
|
+
* @throws Error if called from a non-top-level parent or if parameters are invalid.
|
|
49
|
+
*
|
|
50
|
+
* @beta
|
|
51
|
+
*/
|
|
52
|
+
export declare function addNAATrustedOrigins(appOrigins: string[]): Promise<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Removes previously trusted child app origins from Nested App Auth (NAA).
|
|
55
|
+
*
|
|
56
|
+
* The specified origins will no longer be considered trusted.
|
|
57
|
+
*
|
|
58
|
+
* @param appOrigins - An array of child app origins to remove from the trusted list (must be a non-empty array).
|
|
59
|
+
* @returns A Promise resolving with the result of the action.
|
|
60
|
+
* @throws Error if called from a non-top-level parent or if parameters are invalid.
|
|
61
|
+
*
|
|
62
|
+
* @beta
|
|
63
|
+
*/
|
|
64
|
+
export declare function deleteNAATrustedOrigins(appOrigins: string[]): Promise<string>;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Module for managing client-owned draft records in offline storage.
|
|
3
|
+
* Drafts are records created locally that have not yet been submitted for synchronization.
|
|
4
|
+
*
|
|
5
|
+
* @beta
|
|
6
|
+
* @module
|
|
7
|
+
*/
|
|
8
|
+
import { OfflineRecord, PaginatedResult, QueryOptions } from './offlineStorage';
|
|
9
|
+
/**
|
|
10
|
+
* Result returned when a new draft record is created.
|
|
11
|
+
* @beta
|
|
12
|
+
*/
|
|
13
|
+
export interface DraftCreateResult {
|
|
14
|
+
/** The generated unique identifier for the created draft record. */
|
|
15
|
+
id: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Creates a new draft record in offline storage
|
|
19
|
+
*
|
|
20
|
+
* @param schemaId - The schema identifier for this record
|
|
21
|
+
* @param data - The record data conforming to the schema definition
|
|
22
|
+
* @returns A promise that resolves to an object containing the generated record id
|
|
23
|
+
*
|
|
24
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
25
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
26
|
+
*
|
|
27
|
+
* @beta
|
|
28
|
+
*/
|
|
29
|
+
export declare function create(schemaId: string, data: Record<string, unknown>): Promise<DraftCreateResult>;
|
|
30
|
+
/**
|
|
31
|
+
* Updates an existing draft record
|
|
32
|
+
*
|
|
33
|
+
* @param schemaId - The schema identifier for this record
|
|
34
|
+
* @param id - The unique identifier of the draft to update
|
|
35
|
+
* @param data - Partial record data to merge into the existing draft
|
|
36
|
+
* @returns A promise that resolves when the update is complete
|
|
37
|
+
*
|
|
38
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
39
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
40
|
+
*
|
|
41
|
+
* @beta
|
|
42
|
+
*/
|
|
43
|
+
export declare function update(schemaId: string, id: string, data: Partial<Record<string, unknown>>): Promise<void>;
|
|
44
|
+
/**
|
|
45
|
+
* Retrieves a single draft record by its identifier
|
|
46
|
+
*
|
|
47
|
+
* @param schemaId - The schema identifier for this record
|
|
48
|
+
* @param id - The unique identifier of the draft to retrieve
|
|
49
|
+
* @returns A promise that resolves to the draft record
|
|
50
|
+
*
|
|
51
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
52
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
53
|
+
*
|
|
54
|
+
* @beta
|
|
55
|
+
*/
|
|
56
|
+
export declare function get(schemaId: string, id: string): Promise<OfflineRecord>;
|
|
57
|
+
/**
|
|
58
|
+
* Queries draft records with optional filtering and pagination
|
|
59
|
+
*
|
|
60
|
+
* @param schemaId - The schema identifier to query
|
|
61
|
+
* @param options - Optional query parameters including filters, sorting, and pagination
|
|
62
|
+
* @returns A promise that resolves to a paginated result set
|
|
63
|
+
*
|
|
64
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
65
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
66
|
+
*
|
|
67
|
+
* @beta
|
|
68
|
+
*/
|
|
69
|
+
export declare function query(schemaId: string, options?: QueryOptions): Promise<PaginatedResult>;
|
|
70
|
+
/**
|
|
71
|
+
* Deletes a draft record from offline storage
|
|
72
|
+
*
|
|
73
|
+
* @param schemaId - The schema identifier for this record
|
|
74
|
+
* @param id - The unique identifier of the draft to delete
|
|
75
|
+
* @returns A promise that resolves when the deletion is complete
|
|
76
|
+
*
|
|
77
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
78
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
79
|
+
*
|
|
80
|
+
* @beta
|
|
81
|
+
*/
|
|
82
|
+
export declare function remove(schemaId: string, id: string): Promise<void>;
|
|
83
|
+
/**
|
|
84
|
+
* Submits a draft record for synchronization, moving it to the outbox
|
|
85
|
+
*
|
|
86
|
+
* @param schemaId - The schema identifier for this record
|
|
87
|
+
* @param id - The unique identifier of the draft to submit
|
|
88
|
+
* @returns A promise that resolves when the record has been moved to the outbox
|
|
89
|
+
*
|
|
90
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
91
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
92
|
+
*
|
|
93
|
+
* @beta
|
|
94
|
+
*/
|
|
95
|
+
export declare function submit(schemaId: string, id: string): Promise<void>;
|
|
96
|
+
/**
|
|
97
|
+
* Checks if the offlineStorage.drafts capability is supported by the host
|
|
98
|
+
* @returns boolean to represent whether the offlineStorage.drafts capability is supported
|
|
99
|
+
*
|
|
100
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
101
|
+
*
|
|
102
|
+
* @beta
|
|
103
|
+
*/
|
|
104
|
+
export declare function isSupported(): boolean;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Module for managing server-owned inbox records in offline storage.
|
|
3
|
+
* Inbox records are received from the server and are read-only on the client.
|
|
4
|
+
*
|
|
5
|
+
* @beta
|
|
6
|
+
* @module
|
|
7
|
+
*/
|
|
8
|
+
import { OfflineRecord, PaginatedResult, QueryOptions } from './offlineStorage';
|
|
9
|
+
/**
|
|
10
|
+
* Handler invoked when new records arrive in the inbox from the server
|
|
11
|
+
*
|
|
12
|
+
* @beta
|
|
13
|
+
*/
|
|
14
|
+
export type InboxUpdateHandler = (schemaId: string, records: OfflineRecord[]) => void;
|
|
15
|
+
/**
|
|
16
|
+
* Retrieves a single inbox record by its identifier
|
|
17
|
+
*
|
|
18
|
+
* @param schemaId - The schema identifier for this record
|
|
19
|
+
* @param id - The unique identifier of the inbox record to retrieve
|
|
20
|
+
* @returns A promise that resolves to the inbox record
|
|
21
|
+
*
|
|
22
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
23
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
24
|
+
*
|
|
25
|
+
* @beta
|
|
26
|
+
*/
|
|
27
|
+
export declare function get(schemaId: string, id: string): Promise<OfflineRecord>;
|
|
28
|
+
/**
|
|
29
|
+
* Queries inbox records with optional filtering and pagination
|
|
30
|
+
*
|
|
31
|
+
* @param schemaId - The schema identifier to query
|
|
32
|
+
* @param options - Optional query parameters including filters, sorting, and pagination
|
|
33
|
+
* @returns A promise that resolves to a paginated result set
|
|
34
|
+
*
|
|
35
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
36
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
37
|
+
*
|
|
38
|
+
* @beta
|
|
39
|
+
*/
|
|
40
|
+
export declare function query(schemaId: string, options?: QueryOptions): Promise<PaginatedResult>;
|
|
41
|
+
/**
|
|
42
|
+
* Returns the count of inbox records for a given schema, optionally filtered
|
|
43
|
+
*
|
|
44
|
+
* @param schemaId - The schema identifier to count records for
|
|
45
|
+
* @param options - Optional query filters
|
|
46
|
+
* @returns A promise that resolves to the number of matching inbox records
|
|
47
|
+
*
|
|
48
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
49
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
50
|
+
*
|
|
51
|
+
* @beta
|
|
52
|
+
*/
|
|
53
|
+
export declare function getCount(schemaId: string, options?: QueryOptions): Promise<number>;
|
|
54
|
+
/**
|
|
55
|
+
* Marks one or more inbox records as read
|
|
56
|
+
*
|
|
57
|
+
* @param schemaId - The schema identifier for the records
|
|
58
|
+
* @param ids - Array of record identifiers to mark as read
|
|
59
|
+
* @returns A promise that resolves when the operation is complete
|
|
60
|
+
*
|
|
61
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
62
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
63
|
+
*
|
|
64
|
+
* @beta
|
|
65
|
+
*/
|
|
66
|
+
export declare function markAsRead(schemaId: string, ids: string[]): Promise<void>;
|
|
67
|
+
/**
|
|
68
|
+
* Registers a handler to be called when new records arrive in the inbox
|
|
69
|
+
*
|
|
70
|
+
* @param handler - The handler function to invoke when inbox updates arrive
|
|
71
|
+
*
|
|
72
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
73
|
+
* @throws Error if the offlineStorage capability is not supported
|
|
74
|
+
*
|
|
75
|
+
* @beta
|
|
76
|
+
*/
|
|
77
|
+
export declare function registerOnUpdateHandler(handler: InboxUpdateHandler): void;
|
|
78
|
+
/**
|
|
79
|
+
* Checks if the offlineStorage.inbox capability is supported by the host
|
|
80
|
+
* @returns boolean to represent whether the offlineStorage.inbox capability is supported
|
|
81
|
+
*
|
|
82
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
|
83
|
+
*
|
|
84
|
+
* @beta
|
|
85
|
+
*/
|
|
86
|
+
export declare function isSupported(): boolean;
|