@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.10
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/impact-js-api.spec.json +15 -0
- package/js-api.esm.js +440 -12
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +148 -36
- package/lib/apps/assets-manager/App.vue.d.ts +75 -0
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +22 -0
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +16 -0
- package/lib/apps/browser/App.vue.d.ts +3 -1
- package/lib/apps/browser/appTypes.d.ts +4 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +15 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +11 -7
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +5 -1
- package/lib/apps/browser/stores/api.d.ts +51 -12
- package/lib/apps/browser/stores/app.d.ts +3 -0
- package/lib/apps/browser/stores/upload.d.ts +16 -20
- package/lib/apps/browser/types/actionKeys.d.ts +22 -0
- package/lib/apps/canvas-builder/App.vue.d.ts +317 -261
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +148 -36
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +60 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +21 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/{EditableComponentRevamp.vue.d.ts → EditableComponentContent.vue.d.ts} +15 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +162 -37
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +20 -20
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +30 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +76 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +11 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +32 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +87 -8
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +13 -9
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +23 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +11 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +6 -2
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +154 -0
- package/lib/apps/canvas-builder/composables/useAnnotation.d.ts +29 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +1815 -286
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +192 -18
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +4 -2
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +184 -4
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +9 -9
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +21 -4
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useControlBarCollapse.d.ts +8 -0
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -2
- package/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -6
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -4
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -4
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +98 -0
- package/lib/apps/canvas-builder/composables/useScribbleToolbar.d.ts +11 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useTemporaryContext.d.ts +14 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +34 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +71 -2
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +5 -4
- package/lib/apps/canvas-builder/util/iframe.util.d.ts +16 -0
- package/lib/apps/canvas-builder/util/print.util.d.ts +22 -0
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +171 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +160 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +28 -28
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +5 -1
- package/lib/apps/collection-player/stores/app.store.d.ts +3 -0
- package/lib/apps/collection-player/types/collection-player.type.d.ts +17 -0
- package/lib/apps/collection-selector/App.vue.d.ts +7 -7
- package/lib/apps/collection-selector/stores/app.store.d.ts +4 -2
- package/lib/apps/collection-selector/utils/content-selector-adapter.util.d.ts +16 -7
- package/lib/apps/collection-selector/utils/data.util.d.ts +4 -4
- package/lib/apps/content-selector/App.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets.vue.d.ts +2 -2
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +1 -0
- package/lib/apps/content-selector/components/Content.vue.d.ts +74 -1
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +12 -2
- package/lib/apps/content-selector/stores/app.d.ts +16 -1
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -1
- package/lib/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +1 -0
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +18 -0
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +2 -0
- package/lib/components/CCarousel/CCarousel.vue.d.ts +118 -20
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +9 -6
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +7 -5
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +7 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +56 -3
- package/lib/components/CContentError/CContentError.vue.d.ts +9 -0
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +3 -0
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +2 -2
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +10 -8
- package/lib/components/CDataTable/CDataTable.vue.d.ts +876 -100
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +6 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +5 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -5
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +3 -2
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +2 -6
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +11 -7
- package/lib/components/CImage/CImage.vue.d.ts +110 -20
- package/lib/components/CInput/CInput.vue.d.ts +148 -36
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +1 -1
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +2 -0
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +27 -0
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +14 -0
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +1 -1
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +19 -0
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +28 -0
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +290 -80
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +468 -130
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +288 -80
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +148 -36
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +19 -0
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +27 -1
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +11 -0
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +18 -0
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +14 -0
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +2 -7
- package/lib/components/CTable/CTable.vue.d.ts +6 -5
- package/lib/components/CTableInput/CTableInput.vue.d.ts +296 -72
- package/lib/components/CTableTag/CTableTag.vue.d.ts +290 -38
- package/lib/components/CTags/CTags.vue.d.ts +290 -38
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +25 -0
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +26 -0
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +2 -2
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +109 -30
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +440 -0
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +41 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +46 -60
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +13 -19
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +21 -17
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +2 -2
- package/lib/components/filters/CSearchFilter.vue.d.ts +3 -1
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +11 -7
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +176 -46
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +2 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +16 -12
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +1 -0
- package/lib/components/sections/CSectionManagement.vue.d.ts +26 -0
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +7 -0
- package/lib/components/themes/CThemeManagement.vue.d.ts +98 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +31 -3
- package/lib/composables/appsDb.use.d.ts +2 -2
- package/lib/composables/bulkActions.use.d.ts +2 -2
- package/lib/composables/useBroadcastRouteChange.d.ts +4 -0
- package/lib/composables/useCanvasStandardFilters.d.ts +35 -0
- package/lib/composables/useCollectionPlayerOverlay.d.ts +18 -0
- package/lib/composables/useDeleteUsedCanvasesConfirmation.d.ts +23 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +6 -2
- package/lib/composables/useFileInfo.d.ts +30 -0
- package/lib/composables/useFilterSuggestions.d.ts +8 -16
- package/lib/composables/useFolderNameDescription.d.ts +25 -0
- package/lib/composables/useLegacyCollectionFileLoader.d.ts +31 -0
- package/lib/composables/useMetadataSearch.d.ts +1 -0
- package/lib/composables/usePolling.d.ts +23 -0
- package/lib/composables/useWindowEvents.d.ts +1 -0
- package/lib/constants/cdp.const.d.ts +5 -0
- package/lib/constants/dimensions.const.d.ts +23 -0
- package/lib/constants/tables.const.d.ts +1 -1
- package/lib/custom-naive-locales/it.d.ts +124 -0
- package/lib/custom-naive-locales/ja.d.ts +124 -0
- package/lib/custom-naive-locales/nl.d.ts +124 -0
- package/lib/custom-naive-locales/pt-br.d.ts +124 -0
- package/lib/custom-naive-locales/pt.d.ts +124 -0
- package/lib/custom-naive-locales/th.d.ts +124 -0
- package/lib/custom-naive-locales/zh.d.ts +124 -0
- package/lib/directives/vTrustedHtml.d.ts +6 -0
- package/lib/main.lib.d.ts +26 -3
- package/lib/sdk/api/HighLevelApi.d.ts +31 -2
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +24 -1
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +13 -0
- package/lib/sdk/api/modules/dsr/files.dsr.d.ts +12 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +3 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +6 -1
- package/lib/sdk/api/modules/files.d.ts +12 -2
- package/lib/sdk/api/modules/query.d.ts +153 -1
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +35 -1
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +24 -0
- package/lib/sdk/api/modules/webView.d.ts +2 -1
- package/lib/sdk/interfaces.d.ts +61 -3
- package/lib/sdk/main.d.ts +63 -14
- package/lib/sdk/payload.types.d.ts +133 -0
- package/lib/sdk/peer-connectivity/index.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +13 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.types.d.ts +35 -0
- package/lib/stores/sectionSmartFolderStore.d.ts +2 -0
- package/lib/theme/light.d.ts +113 -8
- package/lib/types/app.d.ts +7 -0
- package/lib/types/canvases.d.ts +3 -0
- package/lib/types/files.d.ts +2 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +11 -1
- package/lib/types/launchDarkly.types.d.ts +2 -4
- package/lib/types/organizationMetadata.types.d.ts +3 -2
- package/lib/types/organizationSettings.types.d.ts +38 -3
- package/lib/types/sfdc.d.ts +1 -0
- package/lib/util/app.util.d.ts +46 -0
- package/lib/util/handlebars.d.ts +35 -0
- package/lib/util/soql.util.d.ts +2 -0
- package/lib/util/storage.util.d.ts +2 -0
- package/lib/util/string.d.ts +1 -1
- package/lib/util/toCssClassKey.d.ts +1 -0
- package/lib/utils/defaultThumbnail.util.d.ts +3 -0
- package/lib/utils/iframeInitialize.d.ts +12 -0
- package/npm-cache/_cacache/content-v2/sha512/3e/27/b4826de89487d07340c5facfb59a809827e65850e472a2d853f7f72dbfc2b4ce5b453253d8c1b11077f5dccb02ea418d8708e7f3f52f756f276b663740a3 +0 -0
- package/npm-cache/_cacache/content-v2/sha512/64/5a/421e053f6177ae9816e985e900126bd7808f16ec0cc5f58c3e082c79c37d1610e6d493c0b99e4d09224e84ad12bcefb46b8f4cabd04d0f397fa8a5b999e3 +0 -0
- package/npm-cache/_cacache/index-v5/ef/db/1a303888dee96dbf0872b6eb0b16af940d57c22846114d55ac441140c1a2 +3 -0
- package/npm-cache/_logs/2025-12-12T08_06_50_883Z-debug-0.log +1194 -0
- package/npm-cache/_logs/2025-12-12T08_20_34_296Z-debug-0.log +1218 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +7 -0
- package/types/openapi/models/Account.d.ts +1 -1
- package/types/openapi/models/AccountRequest.d.ts +1 -1
- package/types/openapi/models/Canvas.d.ts +1 -1
- package/types/openapi/models/CanvasCreate.d.ts +2 -2
- package/types/openapi/models/CanvasCreateRequest.d.ts +2 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +0 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +2 -2
- package/types/openapi/models/CanvasSection.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +2 -2
- package/types/openapi/models/CanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/ContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +1 -0
- package/types/openapi/models/DeletedCanvas.d.ts +1 -1
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +0 -2
- package/types/openapi/models/DeletedFolder.d.ts +4 -0
- package/types/openapi/models/DeletedInstance.d.ts +2 -0
- package/types/openapi/models/DeletedRegion.d.ts +12 -0
- package/types/openapi/models/FavoriteFolder.d.ts +3 -0
- package/types/openapi/models/FavoriteFolderRequest.d.ts +3 -0
- package/types/openapi/models/File.d.ts +0 -2
- package/types/openapi/models/FileCreate.d.ts +0 -2
- package/types/openapi/models/FileCreateRequest.d.ts +0 -1
- package/types/openapi/models/FileRetrieve.d.ts +0 -2
- package/types/openapi/models/FileUpdate.d.ts +0 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/Folder.d.ts +4 -0
- package/types/openapi/models/FolderCreate.d.ts +5 -1
- package/types/openapi/models/FolderFile.d.ts +2 -0
- package/types/openapi/models/FolderFolder.d.ts +5 -0
- package/types/openapi/models/FolderRetrieve.d.ts +9 -1
- package/types/openapi/models/FolderUpdate.d.ts +5 -1
- package/types/openapi/models/Instance.d.ts +2 -0
- package/types/openapi/models/InstanceMembership.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +1 -2
- package/types/openapi/models/InstanceRequest.d.ts +1 -0
- package/types/openapi/models/InstanceUpdate.d.ts +2 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/OfflineSyncFolder.d.ts +1 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +2 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +2 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +7 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/Region.d.ts +10 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +1 -1
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +1 -1
- package/types/openapi/models/User.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -111
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbFavorite.pdf.use.d.ts +0 -10
- package/lib/components/CImage/CBrokenImage.vue.d.ts +0 -10
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +0 -59
- package/lib/directives/usage-track.directive.d.ts +0 -10
- package/lib/util/usage-tracking.util.d.ts +0 -5
- /package/lib/apps/canvas-builder/components/{ui/SectionList/SectionSearch.vue.d.ts → container/Search/Search.vue.d.ts} +0 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
global: {
|
|
4
|
+
undo: string;
|
|
5
|
+
redo: string;
|
|
6
|
+
confirm: string;
|
|
7
|
+
clear: string;
|
|
8
|
+
};
|
|
9
|
+
Popconfirm: {
|
|
10
|
+
positiveText: string;
|
|
11
|
+
negativeText: string;
|
|
12
|
+
};
|
|
13
|
+
Cascader: {
|
|
14
|
+
placeholder: string;
|
|
15
|
+
loading: string;
|
|
16
|
+
loadingRequiredMessage: (label: string) => string;
|
|
17
|
+
};
|
|
18
|
+
Time: {
|
|
19
|
+
dateFormat: string;
|
|
20
|
+
dateTimeFormat: string;
|
|
21
|
+
};
|
|
22
|
+
DatePicker: {
|
|
23
|
+
yearFormat: string;
|
|
24
|
+
monthFormat: string;
|
|
25
|
+
dayFormat: string;
|
|
26
|
+
yearTypeFormat: string;
|
|
27
|
+
monthTypeFormat: string;
|
|
28
|
+
dateFormat: string;
|
|
29
|
+
dateTimeFormat: string;
|
|
30
|
+
quarterFormat: string;
|
|
31
|
+
weekFormat: string;
|
|
32
|
+
clear: string;
|
|
33
|
+
now: string;
|
|
34
|
+
confirm: string;
|
|
35
|
+
selectTime: string;
|
|
36
|
+
selectDate: string;
|
|
37
|
+
datePlaceholder: string;
|
|
38
|
+
datetimePlaceholder: string;
|
|
39
|
+
monthPlaceholder: string;
|
|
40
|
+
yearPlaceholder: string;
|
|
41
|
+
quarterPlaceholder: string;
|
|
42
|
+
weekPlaceholder: string;
|
|
43
|
+
startDatePlaceholder: string;
|
|
44
|
+
endDatePlaceholder: string;
|
|
45
|
+
startDatetimePlaceholder: string;
|
|
46
|
+
endDatetimePlaceholder: string;
|
|
47
|
+
startMonthPlaceholder: string;
|
|
48
|
+
endMonthPlaceholder: string;
|
|
49
|
+
monthBeforeYear: boolean;
|
|
50
|
+
firstDayOfWeek: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
51
|
+
today: string;
|
|
52
|
+
};
|
|
53
|
+
DataTable: {
|
|
54
|
+
checkTableAll: string;
|
|
55
|
+
uncheckTableAll: string;
|
|
56
|
+
confirm: string;
|
|
57
|
+
clear: string;
|
|
58
|
+
};
|
|
59
|
+
LegacyTransfer: {
|
|
60
|
+
sourceTitle: string;
|
|
61
|
+
targetTitle: string;
|
|
62
|
+
};
|
|
63
|
+
Transfer: {
|
|
64
|
+
selectAll: string;
|
|
65
|
+
unselectAll: string;
|
|
66
|
+
clearAll: string;
|
|
67
|
+
total: (num: number) => string;
|
|
68
|
+
selected: (num: number) => string;
|
|
69
|
+
};
|
|
70
|
+
Empty: {
|
|
71
|
+
description: string;
|
|
72
|
+
};
|
|
73
|
+
Select: {
|
|
74
|
+
placeholder: string;
|
|
75
|
+
};
|
|
76
|
+
TimePicker: {
|
|
77
|
+
placeholder: string;
|
|
78
|
+
positiveText: string;
|
|
79
|
+
negativeText: string;
|
|
80
|
+
now: string;
|
|
81
|
+
clear: string;
|
|
82
|
+
};
|
|
83
|
+
Pagination: {
|
|
84
|
+
goto: string;
|
|
85
|
+
selectionSuffix: string;
|
|
86
|
+
};
|
|
87
|
+
DynamicTags: {
|
|
88
|
+
add: string;
|
|
89
|
+
};
|
|
90
|
+
Log: {
|
|
91
|
+
loading: string;
|
|
92
|
+
};
|
|
93
|
+
Input: {
|
|
94
|
+
placeholder: string;
|
|
95
|
+
};
|
|
96
|
+
InputNumber: {
|
|
97
|
+
placeholder: string;
|
|
98
|
+
};
|
|
99
|
+
DynamicInput: {
|
|
100
|
+
create: string;
|
|
101
|
+
};
|
|
102
|
+
ThemeEditor: {
|
|
103
|
+
title: string;
|
|
104
|
+
clearAllVars: string;
|
|
105
|
+
clearSearch: string;
|
|
106
|
+
filterCompName: string;
|
|
107
|
+
filterVarName: string;
|
|
108
|
+
import: string;
|
|
109
|
+
export: string;
|
|
110
|
+
restore: string;
|
|
111
|
+
};
|
|
112
|
+
Image: {
|
|
113
|
+
tipPrevious: string;
|
|
114
|
+
tipNext: string;
|
|
115
|
+
tipCounterclockwise: string;
|
|
116
|
+
tipClockwise: string;
|
|
117
|
+
tipZoomOut: string;
|
|
118
|
+
tipZoomIn: string;
|
|
119
|
+
tipDownload: string;
|
|
120
|
+
tipClose: string;
|
|
121
|
+
tipOriginalSize: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
global: {
|
|
4
|
+
undo: string;
|
|
5
|
+
redo: string;
|
|
6
|
+
confirm: string;
|
|
7
|
+
clear: string;
|
|
8
|
+
};
|
|
9
|
+
Popconfirm: {
|
|
10
|
+
positiveText: string;
|
|
11
|
+
negativeText: string;
|
|
12
|
+
};
|
|
13
|
+
Cascader: {
|
|
14
|
+
placeholder: string;
|
|
15
|
+
loading: string;
|
|
16
|
+
loadingRequiredMessage: (label: string) => string;
|
|
17
|
+
};
|
|
18
|
+
Time: {
|
|
19
|
+
dateFormat: string;
|
|
20
|
+
dateTimeFormat: string;
|
|
21
|
+
};
|
|
22
|
+
DatePicker: {
|
|
23
|
+
yearFormat: string;
|
|
24
|
+
monthFormat: string;
|
|
25
|
+
dayFormat: string;
|
|
26
|
+
yearTypeFormat: string;
|
|
27
|
+
monthTypeFormat: string;
|
|
28
|
+
dateFormat: string;
|
|
29
|
+
dateTimeFormat: string;
|
|
30
|
+
quarterFormat: string;
|
|
31
|
+
weekFormat: string;
|
|
32
|
+
clear: string;
|
|
33
|
+
now: string;
|
|
34
|
+
confirm: string;
|
|
35
|
+
selectTime: string;
|
|
36
|
+
selectDate: string;
|
|
37
|
+
datePlaceholder: string;
|
|
38
|
+
datetimePlaceholder: string;
|
|
39
|
+
monthPlaceholder: string;
|
|
40
|
+
yearPlaceholder: string;
|
|
41
|
+
quarterPlaceholder: string;
|
|
42
|
+
weekPlaceholder: string;
|
|
43
|
+
startDatePlaceholder: string;
|
|
44
|
+
endDatePlaceholder: string;
|
|
45
|
+
startDatetimePlaceholder: string;
|
|
46
|
+
endDatetimePlaceholder: string;
|
|
47
|
+
startMonthPlaceholder: string;
|
|
48
|
+
endMonthPlaceholder: string;
|
|
49
|
+
monthBeforeYear: boolean;
|
|
50
|
+
firstDayOfWeek: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
51
|
+
today: string;
|
|
52
|
+
};
|
|
53
|
+
DataTable: {
|
|
54
|
+
checkTableAll: string;
|
|
55
|
+
uncheckTableAll: string;
|
|
56
|
+
confirm: string;
|
|
57
|
+
clear: string;
|
|
58
|
+
};
|
|
59
|
+
LegacyTransfer: {
|
|
60
|
+
sourceTitle: string;
|
|
61
|
+
targetTitle: string;
|
|
62
|
+
};
|
|
63
|
+
Transfer: {
|
|
64
|
+
selectAll: string;
|
|
65
|
+
unselectAll: string;
|
|
66
|
+
clearAll: string;
|
|
67
|
+
total: (num: number) => string;
|
|
68
|
+
selected: (num: number) => string;
|
|
69
|
+
};
|
|
70
|
+
Empty: {
|
|
71
|
+
description: string;
|
|
72
|
+
};
|
|
73
|
+
Select: {
|
|
74
|
+
placeholder: string;
|
|
75
|
+
};
|
|
76
|
+
TimePicker: {
|
|
77
|
+
placeholder: string;
|
|
78
|
+
positiveText: string;
|
|
79
|
+
negativeText: string;
|
|
80
|
+
now: string;
|
|
81
|
+
clear: string;
|
|
82
|
+
};
|
|
83
|
+
Pagination: {
|
|
84
|
+
goto: string;
|
|
85
|
+
selectionSuffix: string;
|
|
86
|
+
};
|
|
87
|
+
DynamicTags: {
|
|
88
|
+
add: string;
|
|
89
|
+
};
|
|
90
|
+
Log: {
|
|
91
|
+
loading: string;
|
|
92
|
+
};
|
|
93
|
+
Input: {
|
|
94
|
+
placeholder: string;
|
|
95
|
+
};
|
|
96
|
+
InputNumber: {
|
|
97
|
+
placeholder: string;
|
|
98
|
+
};
|
|
99
|
+
DynamicInput: {
|
|
100
|
+
create: string;
|
|
101
|
+
};
|
|
102
|
+
ThemeEditor: {
|
|
103
|
+
title: string;
|
|
104
|
+
clearAllVars: string;
|
|
105
|
+
clearSearch: string;
|
|
106
|
+
filterCompName: string;
|
|
107
|
+
filterVarName: string;
|
|
108
|
+
import: string;
|
|
109
|
+
export: string;
|
|
110
|
+
restore: string;
|
|
111
|
+
};
|
|
112
|
+
Image: {
|
|
113
|
+
tipPrevious: string;
|
|
114
|
+
tipNext: string;
|
|
115
|
+
tipCounterclockwise: string;
|
|
116
|
+
tipClockwise: string;
|
|
117
|
+
tipZoomOut: string;
|
|
118
|
+
tipZoomIn: string;
|
|
119
|
+
tipDownload: string;
|
|
120
|
+
tipClose: string;
|
|
121
|
+
tipOriginalSize: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
package/lib/main.lib.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { NColorPicker as CColorPicker, NConfigProvider as CConfigProvider, NDatePicker as CDatePicker, NGlobalStyle as CGlobalStyle, NGrid as CGrid, NGi as CGi, NGridItem as CGridItem, NForm as CForm, NFormItem as CFormItem, NFormItemCol as CFormItemCol, NFormItemGi as CFormItemGi, NFormItemGridItem as CFormItemGridItem, NFormItemRow as CFormItemRow, NH1 as CH1, NH2 as CH2, NH3 as CH3, NH4 as CH4, NH5 as CH5, NH6 as CH6, NText as CText, NLayout as CLayout, NLayoutContent as CLayoutContent, NLayoutFooter as CLayoutFooter, NLayoutHeader as CLayoutHeader, NLayoutSider as CLayoutSider, NPagination as CPagination, NSkeleton as CSkeleton, NSpace as CSpace, NDialogProvider as CDialogProvider, NMessageProvider as CMessageProvider, NProgress as CProgress, NInputNumber as CInputNumber, } from 'naive-ui';
|
|
1
|
+
export { NColorPicker as CColorPicker, NConfigProvider as CConfigProvider, NDatePicker as CDatePicker, NGlobalStyle as CGlobalStyle, NGrid as CGrid, NGi as CGi, NGridItem as CGridItem, NForm as CForm, NFormItem as CFormItem, NFormItemCol as CFormItemCol, NFormItemGi as CFormItemGi, NFormItemGridItem as CFormItemGridItem, NFormItemRow as CFormItemRow, NH1 as CH1, NH2 as CH2, NH3 as CH3, NH4 as CH4, NH5 as CH5, NH6 as CH6, NText as CText, NLayout as CLayout, NLayoutContent as CLayoutContent, NLayoutFooter as CLayoutFooter, NLayoutHeader as CLayoutHeader, NLayoutSider as CLayoutSider, NPagination as CPagination, NSkeleton as CSkeleton, NSpace as CSpace, NDialogProvider as CDialogProvider, NMessageProvider as CMessageProvider, NNotificationProvider as CNotificationProvider, NProgress as CProgress, NInputNumber as CInputNumber, useNotification, } from 'naive-ui';
|
|
2
2
|
export type { DataTableColumns, DataTableColumn, DataTableProps, PaginationInfo, PaginationProps, PaginationRenderLabel, PaginationSizeOption, } from 'naive-ui';
|
|
3
3
|
export type { DropdownMixedOption, DropdownOption } from 'naive-ui/es/dropdown/src/interface';
|
|
4
4
|
export type { SelectMixedOption, SelectBaseOption } from 'naive-ui/lib/select/src/interface';
|
|
@@ -24,6 +24,7 @@ export { default as CImage } from './components/CImage/CImage.vue';
|
|
|
24
24
|
export { default as CInput } from './components/CInput/CInput.vue';
|
|
25
25
|
export { default as CModal } from './components/CModal/CModal.vue';
|
|
26
26
|
export { default as CPopover } from './components/CPopover/CPopover.vue';
|
|
27
|
+
export { default as CProcessingOverlay } from './components/CProcessingOverlay/CProcessingOverlay.vue';
|
|
27
28
|
export { default as CSearch } from './components/CSearch/CSearch.vue';
|
|
28
29
|
export { default as CSearchOnClick } from './components/CSearch/CSearchOnClick.vue';
|
|
29
30
|
export { default as CSearchOnClickWithSuggestions } from './components/CSearch/CSearchOnClickWithSuggestions.vue';
|
|
@@ -38,12 +39,15 @@ export { default as CSpin } from './components/CSpin/CSpin.vue';
|
|
|
38
39
|
export { default as CEmpty } from './components/CEmpty/CEmpty.vue';
|
|
39
40
|
export { default as CSwitch } from './components/CSwitch/CSwitch.vue';
|
|
40
41
|
export { default as CFeedback } from './components/CFeedback/CFeedback.vue';
|
|
42
|
+
export { default as CHelpText } from './components/CHelpText/CHelpText.vue';
|
|
43
|
+
export { default as CPillSelect } from './components/CPillSelect/CPillSelect.vue';
|
|
41
44
|
export { default as CConfirmationModal } from './components/CConfirmationModal/CConfirmationModal.vue';
|
|
42
45
|
export { default as CConfirmationHeader } from './components/CConfirmation/CConfirmationHeader.vue';
|
|
43
46
|
export { default as CConfirmationContent } from './components/CConfirmation/CConfirmationContent.vue';
|
|
44
47
|
export { default as CConfirmationAction } from './components/CConfirmation/CConfirmationAction.vue';
|
|
45
48
|
export { default as CCanvasSelector } from './components/CCanvasSelector/CCanvasSelector.vue';
|
|
46
49
|
export { default as CContactSelector } from './components/CContactSelector/CContactSelector.vue';
|
|
50
|
+
export { default as CContentError } from './components/CContentError/CContentError.vue';
|
|
47
51
|
export { default as CContactSelectorSelected } from './components/CContactSelector/CContactSelectorSelected.vue';
|
|
48
52
|
export * from './components/CContactSelector/CContactSelector.types';
|
|
49
53
|
export { default as CCreateCanvasModal } from './components/CCreateCanvasModal/CCreateCanvasModal.vue';
|
|
@@ -55,7 +59,9 @@ export { default as CMetaDataBadge } from './components/CMetaDataBadge/CMetaData
|
|
|
55
59
|
export { default as CSecondaryNav } from './components/CSecondaryNav/CSecondaryNav.vue';
|
|
56
60
|
export { default as CShortcut } from './components/CShortcut/CShortcut.vue';
|
|
57
61
|
export { default as useGlobalSearch } from './components/CGlobalSearch/GlobalSearch.use';
|
|
62
|
+
export { default as CAlgoliaSearch } from './components/CAlgoliaSearch/CAlgoliaSearch.vue';
|
|
58
63
|
export { default as CRichTextEditor } from './components/CRichTextEditor/CRichTextEditor.vue';
|
|
64
|
+
export { default as CMonacoEditor } from './components/CMonacoEditor/CMonacoEditor.vue';
|
|
59
65
|
export { default as CSingleSelect } from './components/CSingleSelect/CSingleSelect.vue';
|
|
60
66
|
export { default as CUserAvatar } from './components/CUserAvatar/CUserAvatar.vue';
|
|
61
67
|
export { default as CMultiSelect } from './components/CMultiSelect/CMultiSelect.vue';
|
|
@@ -68,6 +74,8 @@ export { default as CBlockManagement } from './components/canvas-blocks/CBlockMa
|
|
|
68
74
|
export { default as CTemplateManagement } from './components/canvas-templates/CTemplateManagement.vue';
|
|
69
75
|
export { default as CThemeManagement } from './components/themes/CThemeManagement.vue';
|
|
70
76
|
export { default as CSavedCanvasesManagement } from './components/savedCanvases/CSavedCanvasesManagement.vue';
|
|
77
|
+
export { default as CAssignedCanvasesManagement } from './components/assignedCanvases/CAssignedCanvasesManagement.vue';
|
|
78
|
+
export { default as CAssignedCanvasesManagementToolbar } from './components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue';
|
|
71
79
|
export { default as useShareCanvas } from './components/savedCanvases/CSavedCanvasesManagementShareCanvas.use';
|
|
72
80
|
export { default as CConfigEditor } from './components/CConfigEditor/CConfigEditor.vue';
|
|
73
81
|
export { default as CTableInput } from './components/CTableInput/CTableInput.vue';
|
|
@@ -80,6 +88,8 @@ export { default as CTable } from './components/CTable/CTable.vue';
|
|
|
80
88
|
export { default as CEntitySelector } from './components/CEntitySelector/CEntitySelector.vue';
|
|
81
89
|
export { default as CUsersGroupsAccessManage } from './components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue';
|
|
82
90
|
export { default as CFilesAccessManage } from './components/CFilesAccessManage/CFilesAccessManage.vue';
|
|
91
|
+
export { default as CTemplateAccessManage } from './components/CTemplateAccessManage/CTemplateAccessManage.vue';
|
|
92
|
+
export { default as CTemplateAccessInfo } from './components/CTemplateAccessInfo/CTemplateAccessInfo.vue';
|
|
83
93
|
export { default as CGroupsAccessInfo } from './components/CGroupsAccessInfo/CGroupsAccessInfo.vue';
|
|
84
94
|
export { default as CUsersAccessInfo } from './components/CUsersAccessInfo/CUsersAccessInfo.vue';
|
|
85
95
|
export { default as CFilesAccessInfo } from './components/CFilesAccessInfo/CFilesAccessInfo.vue';
|
|
@@ -99,6 +109,7 @@ export { default as CKnockNotificationsAppWrapper } from './components/CKnockNot
|
|
|
99
109
|
export { default as CChip } from './components/CChip/CChip.vue';
|
|
100
110
|
export { default as CSettingsEditor } from './components/CSettingsEditor/CSettingsEditor.vue';
|
|
101
111
|
export { default as CFilePanel } from './components/CFilePanel/CFilePanel.vue';
|
|
112
|
+
export { default as CFileAccessManagement } from './components/CFileAccessManagement/CFileAccessManagement.vue';
|
|
102
113
|
export { default as CWarningAlert } from './components/CWarningAlert/CWarningAlert.vue';
|
|
103
114
|
export { default as CUpsertFolderModal } from './components/CUpsertFolderModal/CUpsertFolderModal.vue';
|
|
104
115
|
export { default as CInfoBadge } from './components/CInfoBadge/CInfoBadge.vue';
|
|
@@ -117,6 +128,8 @@ export { default as CanvasSelector } from './apps/canvas-selector/App.vue';
|
|
|
117
128
|
export type { CanvasSelection } from './apps/canvas-selector/appTypes';
|
|
118
129
|
export { default as NotesApp } from './apps/notes/NotesApp.vue';
|
|
119
130
|
export { default as useNotesApp } from './apps/notes/composables/useNotesApp';
|
|
131
|
+
export { default as AssetsManagerApp } from './apps/assets-manager/App.vue';
|
|
132
|
+
export type { AppProps as AssetsManagerProps } from './apps/assets-manager/App.vue';
|
|
120
133
|
export * as pptConversionSelector from './apps/ppt-conversion-selector/export';
|
|
121
134
|
export * as collectionSelector from './apps/collection-selector/export';
|
|
122
135
|
export * as collectionPlayer from './apps/collection-player/export';
|
|
@@ -125,7 +138,9 @@ export { default as useTheme } from './composables/useTheme';
|
|
|
125
138
|
export { default as useThemeVars } from './composables/useThemeVars';
|
|
126
139
|
export { default as useBindValidation } from './composables/useBindValidation';
|
|
127
140
|
export { default as useFileDisplayHelpers } from './composables/useFileDisplayHelpers';
|
|
141
|
+
export { default as useFolderNameDescription } from './composables/useFolderNameDescription';
|
|
128
142
|
export { default as useCanvasOverlay } from './composables/useCanvasOverlay';
|
|
143
|
+
export { default as useCollectionPlayerOverlay, type CollectionPlayerOverlay, } from './composables/useCollectionPlayerOverlay';
|
|
129
144
|
export { default as useInfiniteScroll } from './composables/useInfiniteScroll';
|
|
130
145
|
export { default as useWindowEvents } from './composables/useWindowEvents';
|
|
131
146
|
export { default as useConfirmation } from './composables/useConfirmation';
|
|
@@ -143,9 +158,12 @@ export * from './composables/appsDb.use';
|
|
|
143
158
|
export { default as useCanvasLocks } from './composables/useCanvasLocks';
|
|
144
159
|
export { useCommentTracking } from './composables/useCommentTracking';
|
|
145
160
|
export { useSharedCommentsStorage } from './composables/useSharedCommentsStorage';
|
|
161
|
+
export { usePolling } from './composables/usePolling';
|
|
162
|
+
export { default as useBroadcastRouteChange } from './composables/useBroadcastRouteChange';
|
|
146
163
|
export * from './plugins/vueQuery';
|
|
147
164
|
export * from './apps/canvas-builder/util/canvas.util';
|
|
148
165
|
export * from './apps/canvas-builder/util/tree';
|
|
166
|
+
export * from './apps/canvas-builder/util/print.util';
|
|
149
167
|
export * from './components/filters/filter.util';
|
|
150
168
|
export * from './util/anchor';
|
|
151
169
|
export * from './util/array';
|
|
@@ -172,11 +190,16 @@ export * from './util/file.util';
|
|
|
172
190
|
export * from './util/url';
|
|
173
191
|
export * from './util/user';
|
|
174
192
|
export * from './util/userAgents';
|
|
175
|
-
export * from './util/usage-tracking.util';
|
|
176
193
|
export * from './util/pitcher-settings.util';
|
|
177
194
|
export * from './util/eval';
|
|
195
|
+
export * from './util/storage.util';
|
|
196
|
+
export * from './util/handlebars';
|
|
178
197
|
export * from './apps/collection-selector/utils/content-selector-adapter.util';
|
|
198
|
+
export * from './util/soql.util.ts';
|
|
199
|
+
export * from './util/app.util';
|
|
200
|
+
export * from './utils/iframeInitialize';
|
|
179
201
|
export * from './sdk/main';
|
|
202
|
+
export * from './sdk/peer-connectivity';
|
|
180
203
|
export * from '../types/openapi';
|
|
181
204
|
export * from './types/core';
|
|
182
205
|
export * from './components/CGlobalSearch/CGlobalSearch.types';
|
|
@@ -214,6 +237,7 @@ export * from './apps/agenda-selector/types/agenda.type';
|
|
|
214
237
|
export * from './apps/collection-player/types/collection-player.type';
|
|
215
238
|
export * from './apps/collection-selector/types/collection-selector.type';
|
|
216
239
|
export * from './apps/ppt-conversion-selector/types/model.type';
|
|
240
|
+
export type { RouteChangedPitcherEvent } from './sdk/interfaces';
|
|
217
241
|
export * from './constants/cdp.const';
|
|
218
242
|
export * from './constants/color.const';
|
|
219
243
|
export * from './constants/uploads.const';
|
|
@@ -236,7 +260,6 @@ export { default as tapDirective } from './directives/tap';
|
|
|
236
260
|
export { default as clickOutsideDirective } from './directives/clickOutside';
|
|
237
261
|
export { default as autofocusDirective } from './directives/autofocus';
|
|
238
262
|
export { default as tooltipDirective } from './directives/tooltip';
|
|
239
|
-
export { default as usageTrackDirective } from './directives/usage-track.directive';
|
|
240
263
|
export { default as elementMountedDirective } from './directives/element-mounted';
|
|
241
264
|
export * from './constants/i18n.const';
|
|
242
265
|
export * from './types/i18n.types';
|
|
@@ -93,6 +93,24 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
93
93
|
* })
|
|
94
94
|
*/
|
|
95
95
|
broadcast: (event: PitcherEvent) => Promise<any>;
|
|
96
|
+
/**
|
|
97
|
+
* Broadcast an event to webviews only (iOS only).
|
|
98
|
+
* @param {PitcherEvent} event - The event to broadcast.
|
|
99
|
+
*
|
|
100
|
+
* @example
|
|
101
|
+
* usePitcherApi()
|
|
102
|
+
* .broadcastToWebviews({
|
|
103
|
+
* type: "canvas_updated",
|
|
104
|
+
* body: { context: { myContextProperty: 'test' } },
|
|
105
|
+
* })
|
|
106
|
+
* .then(function (result) {
|
|
107
|
+
* useUi().toast({
|
|
108
|
+
* message: "Canvas Populated.",
|
|
109
|
+
* type: "info",
|
|
110
|
+
* })
|
|
111
|
+
* })
|
|
112
|
+
*/
|
|
113
|
+
broadcastToWebviews: (event: PitcherEvent) => Promise<any>;
|
|
96
114
|
/**
|
|
97
115
|
* Subscribe to updates.
|
|
98
116
|
*
|
|
@@ -160,8 +178,8 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
160
178
|
downloadFile(payload: {
|
|
161
179
|
file_id: import('../../main.lib').File["id"];
|
|
162
180
|
}): Promise<null>;
|
|
163
|
-
getAppConfig(payload
|
|
164
|
-
app_name
|
|
181
|
+
getAppConfig(payload?: {
|
|
182
|
+
app_name?: string;
|
|
165
183
|
}): Promise<Record<string, any>>;
|
|
166
184
|
getFile(payload: {
|
|
167
185
|
id?: import('../../main.lib').FileRetrieve["id"];
|
|
@@ -179,6 +197,9 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
179
197
|
}): Promise<import('../../main.lib').File["id"]>;
|
|
180
198
|
createFile(payload: Omit<import('../../main.lib').AllFileCreateRequest, "instance_id">): Promise<import('../../main.lib').FileRetrieve>;
|
|
181
199
|
selectDeviceFile(): Promise<import('../../main.lib').DeviceFile>;
|
|
200
|
+
deleteLocalFile(payload: {
|
|
201
|
+
url: string;
|
|
202
|
+
}): Promise<void>;
|
|
182
203
|
getFileRevisions(payload: {
|
|
183
204
|
id?: import('../../main.lib').FileRetrieve["id"];
|
|
184
205
|
file_id?: import('../../main.lib').FileRetrieve["id"];
|
|
@@ -212,6 +233,13 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
212
233
|
}): Promise<void>;
|
|
213
234
|
query(payload: import('../payload.types').QueryPayload): Promise<any>;
|
|
214
235
|
crmQuery(payload: import('../payload.types').CRMQueryPayload): Promise<any>;
|
|
236
|
+
crmSmartQuery(payload: import('../payload.types').CRMQueryPayload): Promise<Array<any>>;
|
|
237
|
+
crmSmartObjectMetadata(payload: import('../payload.types').CRMSmartObjectMetadataPayload): Promise<any>;
|
|
238
|
+
crmSmartUpsertObjects(payload: import('../payload.types').UpsertCRMObjectsPayload): Promise<any>;
|
|
239
|
+
crmSmartObjectValidationRules(payload: import('../payload.types').CRMSmartObjectValidationRulesPayload): Promise<any>;
|
|
240
|
+
crmSmartDeleteObjects(payload: import('../payload.types').CRMSmartDeleteObjectsPayload): Promise<any>;
|
|
241
|
+
crmCreate(payload: import('../payload.types').CRMCreatePayload): Promise<any>;
|
|
242
|
+
crmUpsert(payload: import('../payload.types').CRMUpsertPayload): Promise<any>;
|
|
215
243
|
getFolders(payload: import('../payload.types').FolderListRequest): Promise<import('../../main.lib').PaginatedFolderList>;
|
|
216
244
|
getFolder(payload?: {
|
|
217
245
|
id: import('../../main.lib').FolderRetrieve["id"];
|
|
@@ -251,6 +279,7 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
251
279
|
submitUserFeedback(payload: import('../payload.types').SubmitUserFeedbackPayload): Promise<any>;
|
|
252
280
|
close(): Promise<any>;
|
|
253
281
|
openWebViewAlwaysOnTop(payload: import('../payload.types').OpenWebViewAlwaysOnTop): Promise<void>;
|
|
282
|
+
showSyncbox(payload: import('../payload.types').ShowSyncboxRequestPayload): Promise<void>;
|
|
254
283
|
share(payload: import('../payload.types').SharePayload): Promise<import('../payload.types').ShareResponse>;
|
|
255
284
|
showPeerSession(payload: import('../payload.types').ShowPeerSessionRequestPayload): Promise<void>;
|
|
256
285
|
getThemes(payload: Partial<import('../../main.lib').CanvasThemeRetrieve>): Promise<import('../../main.lib').CanvasThemeRetrieve[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CanvasRetrieve, PatchedCanvasUpdateRequest, Instance, CanvasCreateRequest } from '../../../../../types/openapi';
|
|
2
2
|
import { GetCanvasesParams } from '../../../../types/canvases';
|
|
3
3
|
import { PaginatedData } from '../../../../types/paginatedData';
|
|
4
|
-
import { AdminSelectCanvasesRequest, AdminSelectCanvasesResponse } from './types.admin';
|
|
4
|
+
import { AdminSelectCanvasesRequest, AdminSelectCanvasesResponse, AdminOpenCollectionPlayerOverlayRequest } from './types.admin';
|
|
5
5
|
/**
|
|
6
6
|
* Creates a new canvas.
|
|
7
7
|
*
|
|
@@ -103,6 +103,29 @@ export declare function openCanvasOverlay(payload: {
|
|
|
103
103
|
bottom?: number | string;
|
|
104
104
|
};
|
|
105
105
|
}): Promise<void>;
|
|
106
|
+
/**
|
|
107
|
+
* Opens a modal to display collection player content.
|
|
108
|
+
*
|
|
109
|
+
* @example
|
|
110
|
+
* adminApi.openCollectionPlayerOverlay({
|
|
111
|
+
* name: 'My Collection',
|
|
112
|
+
* groups: [
|
|
113
|
+
* {
|
|
114
|
+
* id: 'file-id-1',
|
|
115
|
+
* name: 'Group 1',
|
|
116
|
+
* },
|
|
117
|
+
* {
|
|
118
|
+
* id: 'group-2',
|
|
119
|
+
* name: 'Group 2',
|
|
120
|
+
* slides: [
|
|
121
|
+
* { file_id: 'file-id-2', slide_index: 0 },
|
|
122
|
+
* { file_id: 'file-id-3', slide_index: 1 },
|
|
123
|
+
* ],
|
|
124
|
+
* },
|
|
125
|
+
* ],
|
|
126
|
+
* })
|
|
127
|
+
*/
|
|
128
|
+
export declare function openCollectionPlayerOverlay(payload: AdminOpenCollectionPlayerOverlayRequest): Promise<void>;
|
|
106
129
|
/**
|
|
107
130
|
* Allows the user to select (and preselect) canvases from the instance.
|
|
108
131
|
*
|
|
@@ -55,6 +55,7 @@ declare const _default: {
|
|
|
55
55
|
bottom?: number | string;
|
|
56
56
|
};
|
|
57
57
|
}): Promise<void>;
|
|
58
|
+
openCollectionPlayerOverlay(payload: import('./types.admin').AdminOpenCollectionPlayerOverlayRequest): Promise<void>;
|
|
58
59
|
selectCanvases(payload?: import('./types.admin').AdminSelectCanvasesRequest): Promise<import('./types.admin').AdminSelectCanvasesResponse>;
|
|
59
60
|
getEnv(): Promise<import('./types.admin').AdminEnv>;
|
|
60
61
|
selectCollectionContent(payload?: import('./types.admin').AdminSelectCollectionPlayerRequest): Promise<import('./types.admin').AdminSelectCollectionPlayerResponse>;
|
|
@@ -23,6 +23,7 @@ export declare const ADMIN_API_METHOD_TYPES: {
|
|
|
23
23
|
readonly GET_CANVAS: "admin_get_canvas";
|
|
24
24
|
readonly GET_CANVASES: "admin_get_canvases";
|
|
25
25
|
readonly OPEN_CANVAS_OVERLAY: "admin_open_canvas_overlay";
|
|
26
|
+
readonly OPEN_COLLECTION_PLAYER_OVERLAY: "admin_open_collection_player_overlay";
|
|
26
27
|
readonly GET_ENV: "admin_get_env";
|
|
27
28
|
readonly GET_FILE: "admin_get_file";
|
|
28
29
|
readonly OPEN: "admin_open_file_overlay";
|
|
@@ -257,6 +258,18 @@ export type AdminEnv = {
|
|
|
257
258
|
crm_shape?: Record<string, any>;
|
|
258
259
|
state?: PitcherEnv['state'];
|
|
259
260
|
};
|
|
261
|
+
export type AdminOpenCollectionPlayerOverlayGroup = {
|
|
262
|
+
id: string;
|
|
263
|
+
name: string;
|
|
264
|
+
slides?: Array<{
|
|
265
|
+
file_id: string;
|
|
266
|
+
slide_index: number;
|
|
267
|
+
}>;
|
|
268
|
+
};
|
|
269
|
+
export type AdminOpenCollectionPlayerOverlayRequest = {
|
|
270
|
+
groups: AdminOpenCollectionPlayerOverlayGroup[];
|
|
271
|
+
name: string;
|
|
272
|
+
};
|
|
260
273
|
export type AdminSelectCollectionPlayerRequest = {
|
|
261
274
|
initial_data?: CollectionSelectorProps['initialData'];
|
|
262
275
|
attach_to?: CollectionSelectorProps['attachTo'];
|
|
@@ -15,3 +15,15 @@ export declare function close(): Promise<void>;
|
|
|
15
15
|
export declare function getFile(payload: {
|
|
16
16
|
id: File['id'];
|
|
17
17
|
}): Promise<File>;
|
|
18
|
+
/**
|
|
19
|
+
* Retrieves the configuration for the calling app.
|
|
20
|
+
* App name can be optionally provided, otherwise it will be derived from the caller's URL.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* dsrApi.getAppConfig() // for self config
|
|
24
|
+
* // or with explicit app name
|
|
25
|
+
* dsrApi.getAppConfig({ app_name: 'my-app' })
|
|
26
|
+
*/
|
|
27
|
+
export declare function getAppConfig(payload?: {
|
|
28
|
+
app_name?: string;
|
|
29
|
+
}): Promise<Record<string, any>>;
|
|
@@ -12,6 +12,9 @@ declare const _default: {
|
|
|
12
12
|
getFile(payload: {
|
|
13
13
|
id: import('../../../../main.lib').File["id"];
|
|
14
14
|
}): Promise<import('../../../../main.lib').File>;
|
|
15
|
+
getAppConfig(payload?: {
|
|
16
|
+
app_name?: string;
|
|
17
|
+
}): Promise<Record<string, any>>;
|
|
15
18
|
embeddableReady(): Promise<void>;
|
|
16
19
|
getEnv(): Promise<import('./types.dsr').DsrEnv>;
|
|
17
20
|
on: typeof on;
|
|
@@ -10,6 +10,7 @@ export declare const DSR_API_TYPES: {
|
|
|
10
10
|
export declare const DSR_API_METHOD_TYPES: {
|
|
11
11
|
readonly GET_ENV: "dsr_get_env";
|
|
12
12
|
readonly GET_FILE: "dsr_get_file";
|
|
13
|
+
readonly GET_APP_CONFIG: "dsr_get_app_config";
|
|
13
14
|
readonly CLOSE: "dsr_close";
|
|
14
15
|
readonly DSR_EMBEDDABLE_READY: "dsr_embeddable_ready";
|
|
15
16
|
};
|
|
@@ -37,4 +38,8 @@ export type DsrMessage<Payload = any> = {
|
|
|
37
38
|
data: Payload;
|
|
38
39
|
};
|
|
39
40
|
};
|
|
40
|
-
export type DsrEnv = Pick<PitcherEnv, 'mode' | 'launch_darkly' | 'client_type' | 'state'
|
|
41
|
+
export type DsrEnv = Pick<PitcherEnv, 'mode' | 'launch_darkly' | 'client_type' | 'state'> & {
|
|
42
|
+
pitcher?: {
|
|
43
|
+
access_token?: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -9,8 +9,8 @@ export declare function getRecentFiles(payload?: GetRecentFilesPayload): Promise
|
|
|
9
9
|
export declare function downloadFile(payload: {
|
|
10
10
|
file_id: File['id'];
|
|
11
11
|
}): Promise<null>;
|
|
12
|
-
export declare function getAppConfig(payload
|
|
13
|
-
app_name
|
|
12
|
+
export declare function getAppConfig(payload?: {
|
|
13
|
+
app_name?: string;
|
|
14
14
|
}): Promise<Record<string, any>>;
|
|
15
15
|
export declare function getFile(payload: {
|
|
16
16
|
id?: FileRetrieve['id'];
|
|
@@ -35,3 +35,13 @@ export declare function createFile(payload: Omit<AllFileCreateRequest, 'instance
|
|
|
35
35
|
* api.selectDeviceFile()
|
|
36
36
|
*/
|
|
37
37
|
export declare function selectDeviceFile(): Promise<DeviceFile>;
|
|
38
|
+
/**
|
|
39
|
+
* Deletes a local file on iOS devices from Pitcher Folders.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* // iOS only method to delete a local file.
|
|
43
|
+
* api.deleteLocalFile({ url: 'file:///var/mobile/Containers/Data/Application/x/Documents/Pitcher%20Folders/ARPhotocapture/x.png' })
|
|
44
|
+
*/
|
|
45
|
+
export declare function deleteLocalFile(payload: {
|
|
46
|
+
url: string;
|
|
47
|
+
}): Promise<void>;
|