@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.11
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/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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { CanvasBuilderMode, ComponentTypes, CanvasBuilderProps, ComponentNode, ContentGridProps, SectionComponentOverrides, SectionListProps, MultimediaProps } from '../types/canvas';
|
|
3
|
-
import { CanvasRetrieve } from '../../../../types/openapi';
|
|
2
|
+
import { CanvasBuilderMode, ComponentTypes, CanvasBuilderProps, ComponentNode, ContentGridProps, SectionComponentOverrides, SectionListProps, MultimediaProps, ContentListProps } from '../types/canvas';
|
|
3
|
+
import { CanvasRetrieve, FileRetrieve } from '../../../../types/openapi';
|
|
4
4
|
import { EmbedLocation } from '../../../types/app';
|
|
5
5
|
import { LaunchDarklyEnv } from '../../../types/launchDarkly.types';
|
|
6
6
|
import { CanvasMetadataRetrieve } from '../../../types/canvases';
|
|
@@ -60,7 +60,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
60
60
|
};
|
|
61
61
|
readonly slide: {
|
|
62
62
|
readonly index: number;
|
|
63
|
-
readonly url:
|
|
63
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
64
64
|
};
|
|
65
65
|
} | {
|
|
66
66
|
readonly id: string;
|
|
@@ -143,6 +143,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
143
143
|
readonly src: string | null;
|
|
144
144
|
readonly height?: string | undefined;
|
|
145
145
|
readonly width?: string | undefined;
|
|
146
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
146
147
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
147
148
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
148
149
|
readonly properties_by_embed_location?: {
|
|
@@ -169,21 +170,21 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
169
170
|
} | undefined;
|
|
170
171
|
} | undefined;
|
|
171
172
|
readonly file: {
|
|
172
|
-
readonly id:
|
|
173
|
-
readonly snapshot_id?:
|
|
174
|
-
readonly name:
|
|
173
|
+
readonly id: FileRetrieve["id"];
|
|
174
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
175
|
+
readonly name: FileRetrieve["name"];
|
|
175
176
|
readonly is_deleted?: boolean | undefined;
|
|
176
177
|
readonly expires_at?: string | null | undefined;
|
|
177
|
-
readonly content_url:
|
|
178
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
178
179
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
179
|
-
readonly content_extension:
|
|
180
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
180
181
|
readonly permissions?: {
|
|
181
182
|
readonly can_download?: boolean | undefined;
|
|
182
183
|
readonly can_share?: boolean | undefined;
|
|
183
184
|
} | undefined;
|
|
184
185
|
readonly tags?: readonly string[] | undefined;
|
|
185
|
-
readonly thumbnail_url?:
|
|
186
|
-
readonly content_length?:
|
|
186
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
187
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
187
188
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
188
189
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
189
190
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -196,14 +197,14 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
196
197
|
} | {
|
|
197
198
|
readonly items: readonly ({
|
|
198
199
|
readonly file: {
|
|
199
|
-
readonly id:
|
|
200
|
-
readonly snapshot_id?:
|
|
201
|
-
readonly name:
|
|
200
|
+
readonly id: FileRetrieve["id"];
|
|
201
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
202
|
+
readonly name: FileRetrieve["name"];
|
|
202
203
|
readonly is_deleted?: boolean | undefined;
|
|
203
204
|
readonly expires_at?: string | null | undefined;
|
|
204
|
-
readonly content_url?:
|
|
205
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
205
206
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
206
|
-
readonly content_extension?:
|
|
207
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
207
208
|
readonly permissions?: {
|
|
208
209
|
readonly can_download?: boolean | undefined;
|
|
209
210
|
readonly can_share?: boolean | undefined;
|
|
@@ -212,26 +213,26 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
212
213
|
};
|
|
213
214
|
readonly slide: {
|
|
214
215
|
readonly index: number;
|
|
215
|
-
readonly url?:
|
|
216
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
216
217
|
};
|
|
217
218
|
readonly type: "slide";
|
|
218
219
|
} | {
|
|
219
220
|
readonly file: {
|
|
220
|
-
readonly id:
|
|
221
|
-
readonly snapshot_id?:
|
|
222
|
-
readonly name:
|
|
221
|
+
readonly id: FileRetrieve["id"];
|
|
222
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
223
|
+
readonly name: FileRetrieve["name"];
|
|
223
224
|
readonly is_deleted?: boolean | undefined;
|
|
224
225
|
readonly expires_at?: string | null | undefined;
|
|
225
|
-
readonly content_url:
|
|
226
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
226
227
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
227
|
-
readonly content_extension:
|
|
228
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
228
229
|
readonly permissions?: {
|
|
229
230
|
readonly can_download?: boolean | undefined;
|
|
230
231
|
readonly can_share?: boolean | undefined;
|
|
231
232
|
} | undefined;
|
|
232
233
|
readonly tags?: readonly string[] | undefined;
|
|
233
|
-
readonly thumbnail_url?:
|
|
234
|
-
readonly content_length?:
|
|
234
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
235
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
235
236
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
236
237
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
237
238
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -242,6 +243,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
242
243
|
})[];
|
|
243
244
|
readonly size?: "medium" | undefined;
|
|
244
245
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
246
|
+
readonly data_accessor?: string | undefined;
|
|
245
247
|
} | {
|
|
246
248
|
readonly sections: readonly {
|
|
247
249
|
readonly id: string;
|
|
@@ -255,12 +257,26 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
255
257
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
256
258
|
readonly selection_app_name?: string | undefined;
|
|
257
259
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
260
|
+
} | {
|
|
261
|
+
readonly sections: readonly {
|
|
262
|
+
readonly id: string;
|
|
263
|
+
readonly file_id?: string | undefined;
|
|
264
|
+
readonly sequence?: number | undefined;
|
|
265
|
+
readonly component_id: string;
|
|
266
|
+
readonly page_index?: number | undefined;
|
|
267
|
+
readonly type: "section" | "file";
|
|
268
|
+
}[];
|
|
269
|
+
readonly animation_in?: string | undefined;
|
|
270
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
271
|
+
readonly selection_app_name?: string | undefined;
|
|
272
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
258
273
|
} | {
|
|
259
274
|
readonly html: string;
|
|
260
275
|
} | {
|
|
261
276
|
readonly src: string | null;
|
|
262
277
|
readonly height?: string | undefined;
|
|
263
278
|
readonly width?: string | undefined;
|
|
279
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
264
280
|
readonly add_session_context?: boolean | undefined;
|
|
265
281
|
} | {
|
|
266
282
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -298,8 +314,6 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
298
314
|
readonly [x: string]: any;
|
|
299
315
|
} | undefined;
|
|
300
316
|
readonly tags?: readonly string[] | undefined;
|
|
301
|
-
readonly transcript?: string | undefined;
|
|
302
|
-
readonly search?: string | null | undefined;
|
|
303
317
|
readonly published_at?: string | null | undefined;
|
|
304
318
|
readonly expires_at?: string | null | undefined;
|
|
305
319
|
readonly instance_id?: string | undefined;
|
|
@@ -368,6 +382,81 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
368
382
|
} | undefined;
|
|
369
383
|
}[];
|
|
370
384
|
readonly layout: "vertical" | "horizontal";
|
|
385
|
+
} | {
|
|
386
|
+
readonly filters?: readonly {
|
|
387
|
+
readonly property: string;
|
|
388
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
389
|
+
readonly value: string;
|
|
390
|
+
}[] | undefined;
|
|
391
|
+
readonly layout: "column" | "row";
|
|
392
|
+
readonly page_size?: number | undefined;
|
|
393
|
+
readonly path: string;
|
|
394
|
+
readonly properties: readonly {
|
|
395
|
+
readonly key: string;
|
|
396
|
+
readonly display_name?: string | undefined;
|
|
397
|
+
readonly sort: {
|
|
398
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
399
|
+
readonly default?: boolean | undefined;
|
|
400
|
+
readonly enabled: boolean;
|
|
401
|
+
};
|
|
402
|
+
readonly group?: boolean | undefined;
|
|
403
|
+
readonly printable?: boolean | undefined;
|
|
404
|
+
readonly format?: {
|
|
405
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
406
|
+
readonly currency?: string | undefined;
|
|
407
|
+
readonly decimals?: number | undefined;
|
|
408
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
409
|
+
readonly dateFormat?: string | undefined;
|
|
410
|
+
} | undefined;
|
|
411
|
+
}[];
|
|
412
|
+
readonly theme?: {
|
|
413
|
+
readonly background_color?: string | null | undefined;
|
|
414
|
+
readonly group_header_color?: string | null | undefined;
|
|
415
|
+
readonly font_family?: string | undefined;
|
|
416
|
+
} | undefined;
|
|
417
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
418
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
419
|
+
readonly striping_color?: string | null | undefined;
|
|
420
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
421
|
+
} | {
|
|
422
|
+
readonly hierarchy: readonly {
|
|
423
|
+
readonly type: "group" | "data";
|
|
424
|
+
readonly path: string;
|
|
425
|
+
readonly group_by_key?: string | undefined;
|
|
426
|
+
}[];
|
|
427
|
+
readonly columns: readonly {
|
|
428
|
+
readonly key: string;
|
|
429
|
+
readonly display_name?: string | undefined;
|
|
430
|
+
readonly sort: {
|
|
431
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
432
|
+
readonly default?: boolean | undefined;
|
|
433
|
+
readonly enabled: boolean;
|
|
434
|
+
};
|
|
435
|
+
readonly group?: boolean | undefined;
|
|
436
|
+
readonly printable?: boolean | undefined;
|
|
437
|
+
readonly format?: {
|
|
438
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
439
|
+
readonly currency?: string | undefined;
|
|
440
|
+
readonly decimals?: number | undefined;
|
|
441
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
442
|
+
readonly dateFormat?: string | undefined;
|
|
443
|
+
} | undefined;
|
|
444
|
+
}[];
|
|
445
|
+
readonly header_path?: string | undefined;
|
|
446
|
+
readonly footer_path?: string | undefined;
|
|
447
|
+
readonly filters?: readonly {
|
|
448
|
+
readonly property: string;
|
|
449
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
450
|
+
readonly value: string;
|
|
451
|
+
}[] | undefined;
|
|
452
|
+
readonly theme?: {
|
|
453
|
+
readonly background_color?: string | null | undefined;
|
|
454
|
+
readonly group_header_color?: string | null | undefined;
|
|
455
|
+
readonly font_family?: string | undefined;
|
|
456
|
+
} | undefined;
|
|
457
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
458
|
+
readonly striping_color?: string | null | undefined;
|
|
459
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
371
460
|
} | undefined;
|
|
372
461
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
373
462
|
readonly when_used_in_section?: {
|
|
@@ -390,6 +479,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
390
479
|
readonly bg_color_palette_index?: number | undefined;
|
|
391
480
|
} | undefined;
|
|
392
481
|
readonly height?: string | undefined;
|
|
482
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
393
483
|
};
|
|
394
484
|
}>;
|
|
395
485
|
export type SectionComponentNodesBySectionId = typeof sectionComponentNodesBySectionId;
|
|
@@ -444,7 +534,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
444
534
|
};
|
|
445
535
|
readonly slide: {
|
|
446
536
|
readonly index: number;
|
|
447
|
-
readonly url:
|
|
537
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
448
538
|
};
|
|
449
539
|
} | {
|
|
450
540
|
readonly id: string;
|
|
@@ -527,6 +617,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
527
617
|
readonly src: string | null;
|
|
528
618
|
readonly height?: string | undefined;
|
|
529
619
|
readonly width?: string | undefined;
|
|
620
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
530
621
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
531
622
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
532
623
|
readonly properties_by_embed_location?: {
|
|
@@ -553,21 +644,21 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
553
644
|
} | undefined;
|
|
554
645
|
} | undefined;
|
|
555
646
|
readonly file: {
|
|
556
|
-
readonly id:
|
|
557
|
-
readonly snapshot_id?:
|
|
558
|
-
readonly name:
|
|
647
|
+
readonly id: FileRetrieve["id"];
|
|
648
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
649
|
+
readonly name: FileRetrieve["name"];
|
|
559
650
|
readonly is_deleted?: boolean | undefined;
|
|
560
651
|
readonly expires_at?: string | null | undefined;
|
|
561
|
-
readonly content_url:
|
|
652
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
562
653
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
563
|
-
readonly content_extension:
|
|
654
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
564
655
|
readonly permissions?: {
|
|
565
656
|
readonly can_download?: boolean | undefined;
|
|
566
657
|
readonly can_share?: boolean | undefined;
|
|
567
658
|
} | undefined;
|
|
568
659
|
readonly tags?: readonly string[] | undefined;
|
|
569
|
-
readonly thumbnail_url?:
|
|
570
|
-
readonly content_length?:
|
|
660
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
661
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
571
662
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
572
663
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
573
664
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -580,14 +671,14 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
580
671
|
} | {
|
|
581
672
|
readonly items: readonly ({
|
|
582
673
|
readonly file: {
|
|
583
|
-
readonly id:
|
|
584
|
-
readonly snapshot_id?:
|
|
585
|
-
readonly name:
|
|
674
|
+
readonly id: FileRetrieve["id"];
|
|
675
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
676
|
+
readonly name: FileRetrieve["name"];
|
|
586
677
|
readonly is_deleted?: boolean | undefined;
|
|
587
678
|
readonly expires_at?: string | null | undefined;
|
|
588
|
-
readonly content_url?:
|
|
679
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
589
680
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
590
|
-
readonly content_extension?:
|
|
681
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
591
682
|
readonly permissions?: {
|
|
592
683
|
readonly can_download?: boolean | undefined;
|
|
593
684
|
readonly can_share?: boolean | undefined;
|
|
@@ -596,26 +687,26 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
596
687
|
};
|
|
597
688
|
readonly slide: {
|
|
598
689
|
readonly index: number;
|
|
599
|
-
readonly url?:
|
|
690
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
600
691
|
};
|
|
601
692
|
readonly type: "slide";
|
|
602
693
|
} | {
|
|
603
694
|
readonly file: {
|
|
604
|
-
readonly id:
|
|
605
|
-
readonly snapshot_id?:
|
|
606
|
-
readonly name:
|
|
695
|
+
readonly id: FileRetrieve["id"];
|
|
696
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
697
|
+
readonly name: FileRetrieve["name"];
|
|
607
698
|
readonly is_deleted?: boolean | undefined;
|
|
608
699
|
readonly expires_at?: string | null | undefined;
|
|
609
|
-
readonly content_url:
|
|
700
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
610
701
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
611
|
-
readonly content_extension:
|
|
702
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
612
703
|
readonly permissions?: {
|
|
613
704
|
readonly can_download?: boolean | undefined;
|
|
614
705
|
readonly can_share?: boolean | undefined;
|
|
615
706
|
} | undefined;
|
|
616
707
|
readonly tags?: readonly string[] | undefined;
|
|
617
|
-
readonly thumbnail_url?:
|
|
618
|
-
readonly content_length?:
|
|
708
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
709
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
619
710
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
620
711
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
621
712
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -626,6 +717,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
626
717
|
})[];
|
|
627
718
|
readonly size?: "medium" | undefined;
|
|
628
719
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
720
|
+
readonly data_accessor?: string | undefined;
|
|
629
721
|
} | {
|
|
630
722
|
readonly sections: readonly {
|
|
631
723
|
readonly id: string;
|
|
@@ -639,12 +731,26 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
639
731
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
640
732
|
readonly selection_app_name?: string | undefined;
|
|
641
733
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
734
|
+
} | {
|
|
735
|
+
readonly sections: readonly {
|
|
736
|
+
readonly id: string;
|
|
737
|
+
readonly file_id?: string | undefined;
|
|
738
|
+
readonly sequence?: number | undefined;
|
|
739
|
+
readonly component_id: string;
|
|
740
|
+
readonly page_index?: number | undefined;
|
|
741
|
+
readonly type: "section" | "file";
|
|
742
|
+
}[];
|
|
743
|
+
readonly animation_in?: string | undefined;
|
|
744
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
745
|
+
readonly selection_app_name?: string | undefined;
|
|
746
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
642
747
|
} | {
|
|
643
748
|
readonly html: string;
|
|
644
749
|
} | {
|
|
645
750
|
readonly src: string | null;
|
|
646
751
|
readonly height?: string | undefined;
|
|
647
752
|
readonly width?: string | undefined;
|
|
753
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
648
754
|
readonly add_session_context?: boolean | undefined;
|
|
649
755
|
} | {
|
|
650
756
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -682,8 +788,6 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
682
788
|
readonly [x: string]: any;
|
|
683
789
|
} | undefined;
|
|
684
790
|
readonly tags?: readonly string[] | undefined;
|
|
685
|
-
readonly transcript?: string | undefined;
|
|
686
|
-
readonly search?: string | null | undefined;
|
|
687
791
|
readonly published_at?: string | null | undefined;
|
|
688
792
|
readonly expires_at?: string | null | undefined;
|
|
689
793
|
readonly instance_id?: string | undefined;
|
|
@@ -752,6 +856,81 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
752
856
|
} | undefined;
|
|
753
857
|
}[];
|
|
754
858
|
readonly layout: "vertical" | "horizontal";
|
|
859
|
+
} | {
|
|
860
|
+
readonly filters?: readonly {
|
|
861
|
+
readonly property: string;
|
|
862
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
863
|
+
readonly value: string;
|
|
864
|
+
}[] | undefined;
|
|
865
|
+
readonly layout: "column" | "row";
|
|
866
|
+
readonly page_size?: number | undefined;
|
|
867
|
+
readonly path: string;
|
|
868
|
+
readonly properties: readonly {
|
|
869
|
+
readonly key: string;
|
|
870
|
+
readonly display_name?: string | undefined;
|
|
871
|
+
readonly sort: {
|
|
872
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
873
|
+
readonly default?: boolean | undefined;
|
|
874
|
+
readonly enabled: boolean;
|
|
875
|
+
};
|
|
876
|
+
readonly group?: boolean | undefined;
|
|
877
|
+
readonly printable?: boolean | undefined;
|
|
878
|
+
readonly format?: {
|
|
879
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
880
|
+
readonly currency?: string | undefined;
|
|
881
|
+
readonly decimals?: number | undefined;
|
|
882
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
883
|
+
readonly dateFormat?: string | undefined;
|
|
884
|
+
} | undefined;
|
|
885
|
+
}[];
|
|
886
|
+
readonly theme?: {
|
|
887
|
+
readonly background_color?: string | null | undefined;
|
|
888
|
+
readonly group_header_color?: string | null | undefined;
|
|
889
|
+
readonly font_family?: string | undefined;
|
|
890
|
+
} | undefined;
|
|
891
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
892
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
893
|
+
readonly striping_color?: string | null | undefined;
|
|
894
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
895
|
+
} | {
|
|
896
|
+
readonly hierarchy: readonly {
|
|
897
|
+
readonly type: "group" | "data";
|
|
898
|
+
readonly path: string;
|
|
899
|
+
readonly group_by_key?: string | undefined;
|
|
900
|
+
}[];
|
|
901
|
+
readonly columns: readonly {
|
|
902
|
+
readonly key: string;
|
|
903
|
+
readonly display_name?: string | undefined;
|
|
904
|
+
readonly sort: {
|
|
905
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
906
|
+
readonly default?: boolean | undefined;
|
|
907
|
+
readonly enabled: boolean;
|
|
908
|
+
};
|
|
909
|
+
readonly group?: boolean | undefined;
|
|
910
|
+
readonly printable?: boolean | undefined;
|
|
911
|
+
readonly format?: {
|
|
912
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
913
|
+
readonly currency?: string | undefined;
|
|
914
|
+
readonly decimals?: number | undefined;
|
|
915
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
916
|
+
readonly dateFormat?: string | undefined;
|
|
917
|
+
} | undefined;
|
|
918
|
+
}[];
|
|
919
|
+
readonly header_path?: string | undefined;
|
|
920
|
+
readonly footer_path?: string | undefined;
|
|
921
|
+
readonly filters?: readonly {
|
|
922
|
+
readonly property: string;
|
|
923
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
924
|
+
readonly value: string;
|
|
925
|
+
}[] | undefined;
|
|
926
|
+
readonly theme?: {
|
|
927
|
+
readonly background_color?: string | null | undefined;
|
|
928
|
+
readonly group_header_color?: string | null | undefined;
|
|
929
|
+
readonly font_family?: string | undefined;
|
|
930
|
+
} | undefined;
|
|
931
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
932
|
+
readonly striping_color?: string | null | undefined;
|
|
933
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
755
934
|
} | undefined;
|
|
756
935
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
757
936
|
readonly when_used_in_section?: {
|
|
@@ -774,27 +953,34 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
774
953
|
readonly bg_color_palette_index?: number | undefined;
|
|
775
954
|
} | undefined;
|
|
776
955
|
readonly height?: string | undefined;
|
|
956
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
777
957
|
};
|
|
778
958
|
};
|
|
779
959
|
}>;
|
|
780
|
-
declare
|
|
781
|
-
declare function
|
|
960
|
+
declare const onSave: Ref<CanvasBuilderProps['onSave'] | ((...data: any[]) => Promise<void>)>;
|
|
961
|
+
declare function exitFullscreen(options?: {
|
|
962
|
+
skipJsApiEvent?: boolean;
|
|
963
|
+
}): void;
|
|
964
|
+
declare function enterFullscreen(options?: {
|
|
965
|
+
skipJsApiEvent?: boolean;
|
|
966
|
+
}): void;
|
|
782
967
|
declare function saveCanvasContent({ showToast }?: {
|
|
783
968
|
showToast: boolean;
|
|
784
969
|
}): Promise<void>;
|
|
970
|
+
declare function save(canvasId: Parameters<NonNullable<typeof onSave.value>>[0], canvas: Parameters<NonNullable<typeof onSave.value>>[1], showToast?: Parameters<NonNullable<typeof onSave.value>>[2]): Promise<void | CanvasRetrieve>;
|
|
785
971
|
declare function saveCanvasContext(context: any, { showToast }?: {
|
|
786
972
|
showToast?: boolean;
|
|
787
973
|
}): Promise<undefined>;
|
|
788
974
|
declare function saveCanvasContentWithContext(context: any, { showToast }?: {
|
|
789
975
|
showToast?: boolean;
|
|
790
|
-
}): Promise<undefined>;
|
|
791
|
-
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings): string | undefined;
|
|
976
|
+
}, extraMetadata?: Record<string, any>): Promise<undefined>;
|
|
977
|
+
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings, enableScaleContent?: boolean, enableCanvasPdfDimensions?: boolean): string | undefined;
|
|
792
978
|
export default function useCanvas(): {
|
|
793
979
|
activeCanvas: Ref<{
|
|
794
980
|
readonly id: string;
|
|
795
981
|
name: string;
|
|
796
982
|
content?: Record<string, any> | undefined;
|
|
797
|
-
context?:
|
|
983
|
+
context?: any;
|
|
798
984
|
indicators?: (Record<string, any> | null) | undefined;
|
|
799
985
|
theme?: (Record<string, any> | null) | undefined;
|
|
800
986
|
is_draft?: boolean | undefined;
|
|
@@ -803,7 +989,7 @@ export default function useCanvas(): {
|
|
|
803
989
|
is_block?: boolean | undefined;
|
|
804
990
|
is_editable?: boolean | undefined;
|
|
805
991
|
is_default?: boolean | undefined;
|
|
806
|
-
metadata?:
|
|
992
|
+
metadata?: any;
|
|
807
993
|
tags?: Array<string> | undefined;
|
|
808
994
|
start_at?: string | null | undefined;
|
|
809
995
|
expires_at?: string | null | undefined;
|
|
@@ -820,13 +1006,14 @@ export default function useCanvas(): {
|
|
|
820
1006
|
content: Record<string, any>;
|
|
821
1007
|
theme?: (Record<string, any> | null) | undefined;
|
|
822
1008
|
metadata?: Record<string, any> | undefined;
|
|
1009
|
+
is_draft: boolean;
|
|
823
1010
|
}[];
|
|
824
1011
|
readonly shared_link: {
|
|
825
1012
|
readonly url: string;
|
|
826
1013
|
short_url?: string | null | undefined;
|
|
827
1014
|
};
|
|
828
1015
|
account?: {
|
|
829
|
-
id
|
|
1016
|
+
id?: string | undefined;
|
|
830
1017
|
name?: string | undefined;
|
|
831
1018
|
} | null | undefined;
|
|
832
1019
|
readonly events: {
|
|
@@ -856,7 +1043,7 @@ export default function useCanvas(): {
|
|
|
856
1043
|
readonly id: string;
|
|
857
1044
|
name: string;
|
|
858
1045
|
content?: Record<string, any> | undefined;
|
|
859
|
-
context?:
|
|
1046
|
+
context?: any;
|
|
860
1047
|
indicators?: (Record<string, any> | null) | undefined;
|
|
861
1048
|
theme?: (Record<string, any> | null) | undefined;
|
|
862
1049
|
is_draft?: boolean | undefined;
|
|
@@ -865,7 +1052,7 @@ export default function useCanvas(): {
|
|
|
865
1052
|
is_block?: boolean | undefined;
|
|
866
1053
|
is_editable?: boolean | undefined;
|
|
867
1054
|
is_default?: boolean | undefined;
|
|
868
|
-
metadata?:
|
|
1055
|
+
metadata?: any;
|
|
869
1056
|
tags?: Array<string> | undefined;
|
|
870
1057
|
start_at?: string | null | undefined;
|
|
871
1058
|
expires_at?: string | null | undefined;
|
|
@@ -882,13 +1069,14 @@ export default function useCanvas(): {
|
|
|
882
1069
|
content: Record<string, any>;
|
|
883
1070
|
theme?: (Record<string, any> | null) | undefined;
|
|
884
1071
|
metadata?: Record<string, any> | undefined;
|
|
1072
|
+
is_draft: boolean;
|
|
885
1073
|
}[];
|
|
886
1074
|
readonly shared_link: {
|
|
887
1075
|
readonly url: string;
|
|
888
1076
|
short_url?: string | null | undefined;
|
|
889
1077
|
};
|
|
890
1078
|
account?: {
|
|
891
|
-
id
|
|
1079
|
+
id?: string | undefined;
|
|
892
1080
|
name?: string | undefined;
|
|
893
1081
|
} | null | undefined;
|
|
894
1082
|
readonly events: {
|
|
@@ -921,6 +1109,7 @@ export default function useCanvas(): {
|
|
|
921
1109
|
content: Record<string, any>;
|
|
922
1110
|
theme?: (Record<string, any> | null) | undefined;
|
|
923
1111
|
metadata?: Record<string, any> | undefined;
|
|
1112
|
+
is_draft: boolean;
|
|
924
1113
|
}>>;
|
|
925
1114
|
activeEditNode: import('vue').ComputedRef<{
|
|
926
1115
|
readonly id: string;
|
|
@@ -971,7 +1160,7 @@ export default function useCanvas(): {
|
|
|
971
1160
|
};
|
|
972
1161
|
readonly slide: {
|
|
973
1162
|
readonly index: number;
|
|
974
|
-
readonly url:
|
|
1163
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
975
1164
|
};
|
|
976
1165
|
} | {
|
|
977
1166
|
readonly id: string;
|
|
@@ -1054,6 +1243,7 @@ export default function useCanvas(): {
|
|
|
1054
1243
|
readonly src: string | null;
|
|
1055
1244
|
readonly height?: string | undefined;
|
|
1056
1245
|
readonly width?: string | undefined;
|
|
1246
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1057
1247
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1058
1248
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1059
1249
|
readonly properties_by_embed_location?: {
|
|
@@ -1080,21 +1270,21 @@ export default function useCanvas(): {
|
|
|
1080
1270
|
} | undefined;
|
|
1081
1271
|
} | undefined;
|
|
1082
1272
|
readonly file: {
|
|
1083
|
-
readonly id:
|
|
1084
|
-
readonly snapshot_id?:
|
|
1085
|
-
readonly name:
|
|
1273
|
+
readonly id: FileRetrieve["id"];
|
|
1274
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1275
|
+
readonly name: FileRetrieve["name"];
|
|
1086
1276
|
readonly is_deleted?: boolean | undefined;
|
|
1087
1277
|
readonly expires_at?: string | null | undefined;
|
|
1088
|
-
readonly content_url:
|
|
1278
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1089
1279
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1090
|
-
readonly content_extension:
|
|
1280
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1091
1281
|
readonly permissions?: {
|
|
1092
1282
|
readonly can_download?: boolean | undefined;
|
|
1093
1283
|
readonly can_share?: boolean | undefined;
|
|
1094
1284
|
} | undefined;
|
|
1095
1285
|
readonly tags?: readonly string[] | undefined;
|
|
1096
|
-
readonly thumbnail_url?:
|
|
1097
|
-
readonly content_length?:
|
|
1286
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1287
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1098
1288
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1099
1289
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1100
1290
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1107,14 +1297,14 @@ export default function useCanvas(): {
|
|
|
1107
1297
|
} | {
|
|
1108
1298
|
readonly items: readonly ({
|
|
1109
1299
|
readonly file: {
|
|
1110
|
-
readonly id:
|
|
1111
|
-
readonly snapshot_id?:
|
|
1112
|
-
readonly name:
|
|
1300
|
+
readonly id: FileRetrieve["id"];
|
|
1301
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1302
|
+
readonly name: FileRetrieve["name"];
|
|
1113
1303
|
readonly is_deleted?: boolean | undefined;
|
|
1114
1304
|
readonly expires_at?: string | null | undefined;
|
|
1115
|
-
readonly content_url?:
|
|
1305
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
1116
1306
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
1117
|
-
readonly content_extension?:
|
|
1307
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
1118
1308
|
readonly permissions?: {
|
|
1119
1309
|
readonly can_download?: boolean | undefined;
|
|
1120
1310
|
readonly can_share?: boolean | undefined;
|
|
@@ -1123,26 +1313,26 @@ export default function useCanvas(): {
|
|
|
1123
1313
|
};
|
|
1124
1314
|
readonly slide: {
|
|
1125
1315
|
readonly index: number;
|
|
1126
|
-
readonly url?:
|
|
1316
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
1127
1317
|
};
|
|
1128
1318
|
readonly type: "slide";
|
|
1129
1319
|
} | {
|
|
1130
1320
|
readonly file: {
|
|
1131
|
-
readonly id:
|
|
1132
|
-
readonly snapshot_id?:
|
|
1133
|
-
readonly name:
|
|
1321
|
+
readonly id: FileRetrieve["id"];
|
|
1322
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1323
|
+
readonly name: FileRetrieve["name"];
|
|
1134
1324
|
readonly is_deleted?: boolean | undefined;
|
|
1135
1325
|
readonly expires_at?: string | null | undefined;
|
|
1136
|
-
readonly content_url:
|
|
1326
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1137
1327
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1138
|
-
readonly content_extension:
|
|
1328
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1139
1329
|
readonly permissions?: {
|
|
1140
1330
|
readonly can_download?: boolean | undefined;
|
|
1141
1331
|
readonly can_share?: boolean | undefined;
|
|
1142
1332
|
} | undefined;
|
|
1143
1333
|
readonly tags?: readonly string[] | undefined;
|
|
1144
|
-
readonly thumbnail_url?:
|
|
1145
|
-
readonly content_length?:
|
|
1334
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1335
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1146
1336
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1147
1337
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1148
1338
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1153,6 +1343,7 @@ export default function useCanvas(): {
|
|
|
1153
1343
|
})[];
|
|
1154
1344
|
readonly size?: "medium" | undefined;
|
|
1155
1345
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
1346
|
+
readonly data_accessor?: string | undefined;
|
|
1156
1347
|
} | {
|
|
1157
1348
|
readonly sections: readonly {
|
|
1158
1349
|
readonly id: string;
|
|
@@ -1166,12 +1357,26 @@ export default function useCanvas(): {
|
|
|
1166
1357
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1167
1358
|
readonly selection_app_name?: string | undefined;
|
|
1168
1359
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1360
|
+
} | {
|
|
1361
|
+
readonly sections: readonly {
|
|
1362
|
+
readonly id: string;
|
|
1363
|
+
readonly file_id?: string | undefined;
|
|
1364
|
+
readonly sequence?: number | undefined;
|
|
1365
|
+
readonly component_id: string;
|
|
1366
|
+
readonly page_index?: number | undefined;
|
|
1367
|
+
readonly type: "section" | "file";
|
|
1368
|
+
}[];
|
|
1369
|
+
readonly animation_in?: string | undefined;
|
|
1370
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1371
|
+
readonly selection_app_name?: string | undefined;
|
|
1372
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1169
1373
|
} | {
|
|
1170
1374
|
readonly html: string;
|
|
1171
1375
|
} | {
|
|
1172
1376
|
readonly src: string | null;
|
|
1173
1377
|
readonly height?: string | undefined;
|
|
1174
1378
|
readonly width?: string | undefined;
|
|
1379
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1175
1380
|
readonly add_session_context?: boolean | undefined;
|
|
1176
1381
|
} | {
|
|
1177
1382
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1209,8 +1414,6 @@ export default function useCanvas(): {
|
|
|
1209
1414
|
readonly [x: string]: any;
|
|
1210
1415
|
} | undefined;
|
|
1211
1416
|
readonly tags?: readonly string[] | undefined;
|
|
1212
|
-
readonly transcript?: string | undefined;
|
|
1213
|
-
readonly search?: string | null | undefined;
|
|
1214
1417
|
readonly published_at?: string | null | undefined;
|
|
1215
1418
|
readonly expires_at?: string | null | undefined;
|
|
1216
1419
|
readonly instance_id?: string | undefined;
|
|
@@ -1279,6 +1482,81 @@ export default function useCanvas(): {
|
|
|
1279
1482
|
} | undefined;
|
|
1280
1483
|
}[];
|
|
1281
1484
|
readonly layout: "vertical" | "horizontal";
|
|
1485
|
+
} | {
|
|
1486
|
+
readonly filters?: readonly {
|
|
1487
|
+
readonly property: string;
|
|
1488
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1489
|
+
readonly value: string;
|
|
1490
|
+
}[] | undefined;
|
|
1491
|
+
readonly layout: "column" | "row";
|
|
1492
|
+
readonly page_size?: number | undefined;
|
|
1493
|
+
readonly path: string;
|
|
1494
|
+
readonly properties: readonly {
|
|
1495
|
+
readonly key: string;
|
|
1496
|
+
readonly display_name?: string | undefined;
|
|
1497
|
+
readonly sort: {
|
|
1498
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1499
|
+
readonly default?: boolean | undefined;
|
|
1500
|
+
readonly enabled: boolean;
|
|
1501
|
+
};
|
|
1502
|
+
readonly group?: boolean | undefined;
|
|
1503
|
+
readonly printable?: boolean | undefined;
|
|
1504
|
+
readonly format?: {
|
|
1505
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1506
|
+
readonly currency?: string | undefined;
|
|
1507
|
+
readonly decimals?: number | undefined;
|
|
1508
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1509
|
+
readonly dateFormat?: string | undefined;
|
|
1510
|
+
} | undefined;
|
|
1511
|
+
}[];
|
|
1512
|
+
readonly theme?: {
|
|
1513
|
+
readonly background_color?: string | null | undefined;
|
|
1514
|
+
readonly group_header_color?: string | null | undefined;
|
|
1515
|
+
readonly font_family?: string | undefined;
|
|
1516
|
+
} | undefined;
|
|
1517
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
1518
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1519
|
+
readonly striping_color?: string | null | undefined;
|
|
1520
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1521
|
+
} | {
|
|
1522
|
+
readonly hierarchy: readonly {
|
|
1523
|
+
readonly type: "group" | "data";
|
|
1524
|
+
readonly path: string;
|
|
1525
|
+
readonly group_by_key?: string | undefined;
|
|
1526
|
+
}[];
|
|
1527
|
+
readonly columns: readonly {
|
|
1528
|
+
readonly key: string;
|
|
1529
|
+
readonly display_name?: string | undefined;
|
|
1530
|
+
readonly sort: {
|
|
1531
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1532
|
+
readonly default?: boolean | undefined;
|
|
1533
|
+
readonly enabled: boolean;
|
|
1534
|
+
};
|
|
1535
|
+
readonly group?: boolean | undefined;
|
|
1536
|
+
readonly printable?: boolean | undefined;
|
|
1537
|
+
readonly format?: {
|
|
1538
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1539
|
+
readonly currency?: string | undefined;
|
|
1540
|
+
readonly decimals?: number | undefined;
|
|
1541
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1542
|
+
readonly dateFormat?: string | undefined;
|
|
1543
|
+
} | undefined;
|
|
1544
|
+
}[];
|
|
1545
|
+
readonly header_path?: string | undefined;
|
|
1546
|
+
readonly footer_path?: string | undefined;
|
|
1547
|
+
readonly filters?: readonly {
|
|
1548
|
+
readonly property: string;
|
|
1549
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1550
|
+
readonly value: string;
|
|
1551
|
+
}[] | undefined;
|
|
1552
|
+
readonly theme?: {
|
|
1553
|
+
readonly background_color?: string | null | undefined;
|
|
1554
|
+
readonly group_header_color?: string | null | undefined;
|
|
1555
|
+
readonly font_family?: string | undefined;
|
|
1556
|
+
} | undefined;
|
|
1557
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1558
|
+
readonly striping_color?: string | null | undefined;
|
|
1559
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1282
1560
|
} | undefined;
|
|
1283
1561
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1284
1562
|
readonly when_used_in_section?: {
|
|
@@ -1301,6 +1579,7 @@ export default function useCanvas(): {
|
|
|
1301
1579
|
readonly bg_color_palette_index?: number | undefined;
|
|
1302
1580
|
} | undefined;
|
|
1303
1581
|
readonly height?: string | undefined;
|
|
1582
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
1304
1583
|
} | null>;
|
|
1305
1584
|
activeNavigationItems: Ref<{
|
|
1306
1585
|
id: string;
|
|
@@ -1367,7 +1646,7 @@ export default function useCanvas(): {
|
|
|
1367
1646
|
};
|
|
1368
1647
|
readonly slide: {
|
|
1369
1648
|
readonly index: number;
|
|
1370
|
-
readonly url:
|
|
1649
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
1371
1650
|
};
|
|
1372
1651
|
} | {
|
|
1373
1652
|
readonly id: string;
|
|
@@ -1450,6 +1729,7 @@ export default function useCanvas(): {
|
|
|
1450
1729
|
readonly src: string | null;
|
|
1451
1730
|
readonly height?: string | undefined;
|
|
1452
1731
|
readonly width?: string | undefined;
|
|
1732
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1453
1733
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1454
1734
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1455
1735
|
readonly properties_by_embed_location?: {
|
|
@@ -1476,21 +1756,21 @@ export default function useCanvas(): {
|
|
|
1476
1756
|
} | undefined;
|
|
1477
1757
|
} | undefined;
|
|
1478
1758
|
readonly file: {
|
|
1479
|
-
readonly id:
|
|
1480
|
-
readonly snapshot_id?:
|
|
1481
|
-
readonly name:
|
|
1759
|
+
readonly id: FileRetrieve["id"];
|
|
1760
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1761
|
+
readonly name: FileRetrieve["name"];
|
|
1482
1762
|
readonly is_deleted?: boolean | undefined;
|
|
1483
1763
|
readonly expires_at?: string | null | undefined;
|
|
1484
|
-
readonly content_url:
|
|
1764
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1485
1765
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1486
|
-
readonly content_extension:
|
|
1766
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1487
1767
|
readonly permissions?: {
|
|
1488
1768
|
readonly can_download?: boolean | undefined;
|
|
1489
1769
|
readonly can_share?: boolean | undefined;
|
|
1490
1770
|
} | undefined;
|
|
1491
1771
|
readonly tags?: readonly string[] | undefined;
|
|
1492
|
-
readonly thumbnail_url?:
|
|
1493
|
-
readonly content_length?:
|
|
1772
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1773
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1494
1774
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1495
1775
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1496
1776
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1503,14 +1783,14 @@ export default function useCanvas(): {
|
|
|
1503
1783
|
} | {
|
|
1504
1784
|
readonly items: readonly ({
|
|
1505
1785
|
readonly file: {
|
|
1506
|
-
readonly id:
|
|
1507
|
-
readonly snapshot_id?:
|
|
1508
|
-
readonly name:
|
|
1786
|
+
readonly id: FileRetrieve["id"];
|
|
1787
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1788
|
+
readonly name: FileRetrieve["name"];
|
|
1509
1789
|
readonly is_deleted?: boolean | undefined;
|
|
1510
1790
|
readonly expires_at?: string | null | undefined;
|
|
1511
|
-
readonly content_url?:
|
|
1791
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
1512
1792
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
1513
|
-
readonly content_extension?:
|
|
1793
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
1514
1794
|
readonly permissions?: {
|
|
1515
1795
|
readonly can_download?: boolean | undefined;
|
|
1516
1796
|
readonly can_share?: boolean | undefined;
|
|
@@ -1519,26 +1799,26 @@ export default function useCanvas(): {
|
|
|
1519
1799
|
};
|
|
1520
1800
|
readonly slide: {
|
|
1521
1801
|
readonly index: number;
|
|
1522
|
-
readonly url?:
|
|
1802
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
1523
1803
|
};
|
|
1524
1804
|
readonly type: "slide";
|
|
1525
1805
|
} | {
|
|
1526
1806
|
readonly file: {
|
|
1527
|
-
readonly id:
|
|
1528
|
-
readonly snapshot_id?:
|
|
1529
|
-
readonly name:
|
|
1807
|
+
readonly id: FileRetrieve["id"];
|
|
1808
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1809
|
+
readonly name: FileRetrieve["name"];
|
|
1530
1810
|
readonly is_deleted?: boolean | undefined;
|
|
1531
1811
|
readonly expires_at?: string | null | undefined;
|
|
1532
|
-
readonly content_url:
|
|
1812
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1533
1813
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1534
|
-
readonly content_extension:
|
|
1814
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1535
1815
|
readonly permissions?: {
|
|
1536
1816
|
readonly can_download?: boolean | undefined;
|
|
1537
1817
|
readonly can_share?: boolean | undefined;
|
|
1538
1818
|
} | undefined;
|
|
1539
1819
|
readonly tags?: readonly string[] | undefined;
|
|
1540
|
-
readonly thumbnail_url?:
|
|
1541
|
-
readonly content_length?:
|
|
1820
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1821
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1542
1822
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1543
1823
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1544
1824
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1549,6 +1829,7 @@ export default function useCanvas(): {
|
|
|
1549
1829
|
})[];
|
|
1550
1830
|
readonly size?: "medium" | undefined;
|
|
1551
1831
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
1832
|
+
readonly data_accessor?: string | undefined;
|
|
1552
1833
|
} | {
|
|
1553
1834
|
readonly sections: readonly {
|
|
1554
1835
|
readonly id: string;
|
|
@@ -1562,12 +1843,26 @@ export default function useCanvas(): {
|
|
|
1562
1843
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1563
1844
|
readonly selection_app_name?: string | undefined;
|
|
1564
1845
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1846
|
+
} | {
|
|
1847
|
+
readonly sections: readonly {
|
|
1848
|
+
readonly id: string;
|
|
1849
|
+
readonly file_id?: string | undefined;
|
|
1850
|
+
readonly sequence?: number | undefined;
|
|
1851
|
+
readonly component_id: string;
|
|
1852
|
+
readonly page_index?: number | undefined;
|
|
1853
|
+
readonly type: "section" | "file";
|
|
1854
|
+
}[];
|
|
1855
|
+
readonly animation_in?: string | undefined;
|
|
1856
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1857
|
+
readonly selection_app_name?: string | undefined;
|
|
1858
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1565
1859
|
} | {
|
|
1566
1860
|
readonly html: string;
|
|
1567
1861
|
} | {
|
|
1568
1862
|
readonly src: string | null;
|
|
1569
1863
|
readonly height?: string | undefined;
|
|
1570
1864
|
readonly width?: string | undefined;
|
|
1865
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1571
1866
|
readonly add_session_context?: boolean | undefined;
|
|
1572
1867
|
} | {
|
|
1573
1868
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1605,8 +1900,6 @@ export default function useCanvas(): {
|
|
|
1605
1900
|
readonly [x: string]: any;
|
|
1606
1901
|
} | undefined;
|
|
1607
1902
|
readonly tags?: readonly string[] | undefined;
|
|
1608
|
-
readonly transcript?: string | undefined;
|
|
1609
|
-
readonly search?: string | null | undefined;
|
|
1610
1903
|
readonly published_at?: string | null | undefined;
|
|
1611
1904
|
readonly expires_at?: string | null | undefined;
|
|
1612
1905
|
readonly instance_id?: string | undefined;
|
|
@@ -1675,6 +1968,81 @@ export default function useCanvas(): {
|
|
|
1675
1968
|
} | undefined;
|
|
1676
1969
|
}[];
|
|
1677
1970
|
readonly layout: "vertical" | "horizontal";
|
|
1971
|
+
} | {
|
|
1972
|
+
readonly filters?: readonly {
|
|
1973
|
+
readonly property: string;
|
|
1974
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1975
|
+
readonly value: string;
|
|
1976
|
+
}[] | undefined;
|
|
1977
|
+
readonly layout: "column" | "row";
|
|
1978
|
+
readonly page_size?: number | undefined;
|
|
1979
|
+
readonly path: string;
|
|
1980
|
+
readonly properties: readonly {
|
|
1981
|
+
readonly key: string;
|
|
1982
|
+
readonly display_name?: string | undefined;
|
|
1983
|
+
readonly sort: {
|
|
1984
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1985
|
+
readonly default?: boolean | undefined;
|
|
1986
|
+
readonly enabled: boolean;
|
|
1987
|
+
};
|
|
1988
|
+
readonly group?: boolean | undefined;
|
|
1989
|
+
readonly printable?: boolean | undefined;
|
|
1990
|
+
readonly format?: {
|
|
1991
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1992
|
+
readonly currency?: string | undefined;
|
|
1993
|
+
readonly decimals?: number | undefined;
|
|
1994
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1995
|
+
readonly dateFormat?: string | undefined;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
}[];
|
|
1998
|
+
readonly theme?: {
|
|
1999
|
+
readonly background_color?: string | null | undefined;
|
|
2000
|
+
readonly group_header_color?: string | null | undefined;
|
|
2001
|
+
readonly font_family?: string | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
2004
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
2005
|
+
readonly striping_color?: string | null | undefined;
|
|
2006
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
2007
|
+
} | {
|
|
2008
|
+
readonly hierarchy: readonly {
|
|
2009
|
+
readonly type: "group" | "data";
|
|
2010
|
+
readonly path: string;
|
|
2011
|
+
readonly group_by_key?: string | undefined;
|
|
2012
|
+
}[];
|
|
2013
|
+
readonly columns: readonly {
|
|
2014
|
+
readonly key: string;
|
|
2015
|
+
readonly display_name?: string | undefined;
|
|
2016
|
+
readonly sort: {
|
|
2017
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
2018
|
+
readonly default?: boolean | undefined;
|
|
2019
|
+
readonly enabled: boolean;
|
|
2020
|
+
};
|
|
2021
|
+
readonly group?: boolean | undefined;
|
|
2022
|
+
readonly printable?: boolean | undefined;
|
|
2023
|
+
readonly format?: {
|
|
2024
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2025
|
+
readonly currency?: string | undefined;
|
|
2026
|
+
readonly decimals?: number | undefined;
|
|
2027
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
2028
|
+
readonly dateFormat?: string | undefined;
|
|
2029
|
+
} | undefined;
|
|
2030
|
+
}[];
|
|
2031
|
+
readonly header_path?: string | undefined;
|
|
2032
|
+
readonly footer_path?: string | undefined;
|
|
2033
|
+
readonly filters?: readonly {
|
|
2034
|
+
readonly property: string;
|
|
2035
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2036
|
+
readonly value: string;
|
|
2037
|
+
}[] | undefined;
|
|
2038
|
+
readonly theme?: {
|
|
2039
|
+
readonly background_color?: string | null | undefined;
|
|
2040
|
+
readonly group_header_color?: string | null | undefined;
|
|
2041
|
+
readonly font_family?: string | undefined;
|
|
2042
|
+
} | undefined;
|
|
2043
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
2044
|
+
readonly striping_color?: string | null | undefined;
|
|
2045
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1678
2046
|
} | undefined;
|
|
1679
2047
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1680
2048
|
readonly when_used_in_section?: {
|
|
@@ -1697,6 +2065,7 @@ export default function useCanvas(): {
|
|
|
1697
2065
|
readonly bg_color_palette_index?: number | undefined;
|
|
1698
2066
|
} | undefined;
|
|
1699
2067
|
readonly height?: string | undefined;
|
|
2068
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
1700
2069
|
} | null>;
|
|
1701
2070
|
addMode: Ref<false | {
|
|
1702
2071
|
type: ComponentTypes;
|
|
@@ -1759,7 +2128,7 @@ export default function useCanvas(): {
|
|
|
1759
2128
|
};
|
|
1760
2129
|
slide: {
|
|
1761
2130
|
index: number;
|
|
1762
|
-
url:
|
|
2131
|
+
url: FileRetrieve["thumbnail_url"];
|
|
1763
2132
|
};
|
|
1764
2133
|
} | {
|
|
1765
2134
|
id: string;
|
|
@@ -1832,6 +2201,7 @@ export default function useCanvas(): {
|
|
|
1832
2201
|
src: string | null;
|
|
1833
2202
|
height?: string | undefined;
|
|
1834
2203
|
width?: string | undefined;
|
|
2204
|
+
full_screen_mode?: boolean | undefined;
|
|
1835
2205
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1836
2206
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1837
2207
|
properties_by_embed_location?: {
|
|
@@ -1858,22 +2228,22 @@ export default function useCanvas(): {
|
|
|
1858
2228
|
} | undefined;
|
|
1859
2229
|
} | undefined;
|
|
1860
2230
|
file: {
|
|
1861
|
-
id:
|
|
1862
|
-
snapshot_id?:
|
|
1863
|
-
name:
|
|
2231
|
+
id: FileRetrieve["id"];
|
|
2232
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2233
|
+
name: FileRetrieve["name"];
|
|
1864
2234
|
is_deleted?: boolean | undefined;
|
|
1865
2235
|
expires_at?: string | null | undefined;
|
|
1866
|
-
content_url:
|
|
2236
|
+
content_url: FileRetrieve["content_url"];
|
|
1867
2237
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1868
|
-
content_extension:
|
|
2238
|
+
content_extension: FileRetrieve["content_extension"];
|
|
1869
2239
|
permissions?: {
|
|
1870
2240
|
can_download?: boolean | undefined;
|
|
1871
2241
|
can_share?: boolean | undefined;
|
|
1872
2242
|
} | undefined;
|
|
1873
2243
|
tags?: string[] | undefined;
|
|
1874
|
-
thumbnail_url?:
|
|
1875
|
-
readonly content_length?:
|
|
1876
|
-
content_thumbnails?: (
|
|
2244
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2245
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2246
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
1877
2247
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1878
2248
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
1879
2249
|
} | null;
|
|
@@ -1881,14 +2251,14 @@ export default function useCanvas(): {
|
|
|
1881
2251
|
} | {
|
|
1882
2252
|
items: ({
|
|
1883
2253
|
file: {
|
|
1884
|
-
id:
|
|
1885
|
-
snapshot_id?:
|
|
1886
|
-
name:
|
|
2254
|
+
id: FileRetrieve["id"];
|
|
2255
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2256
|
+
name: FileRetrieve["name"];
|
|
1887
2257
|
is_deleted?: boolean | undefined;
|
|
1888
2258
|
expires_at?: string | null | undefined;
|
|
1889
|
-
content_url?:
|
|
2259
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
1890
2260
|
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
1891
|
-
content_extension?:
|
|
2261
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
1892
2262
|
permissions?: {
|
|
1893
2263
|
can_download?: boolean | undefined;
|
|
1894
2264
|
can_share?: boolean | undefined;
|
|
@@ -1897,27 +2267,27 @@ export default function useCanvas(): {
|
|
|
1897
2267
|
};
|
|
1898
2268
|
slide: {
|
|
1899
2269
|
index: number;
|
|
1900
|
-
url?:
|
|
2270
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
1901
2271
|
};
|
|
1902
2272
|
type: "slide";
|
|
1903
2273
|
} | {
|
|
1904
2274
|
file: {
|
|
1905
|
-
id:
|
|
1906
|
-
snapshot_id?:
|
|
1907
|
-
name:
|
|
2275
|
+
id: FileRetrieve["id"];
|
|
2276
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2277
|
+
name: FileRetrieve["name"];
|
|
1908
2278
|
is_deleted?: boolean | undefined;
|
|
1909
2279
|
expires_at?: string | null | undefined;
|
|
1910
|
-
content_url:
|
|
2280
|
+
content_url: FileRetrieve["content_url"];
|
|
1911
2281
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1912
|
-
content_extension:
|
|
2282
|
+
content_extension: FileRetrieve["content_extension"];
|
|
1913
2283
|
permissions?: {
|
|
1914
2284
|
can_download?: boolean | undefined;
|
|
1915
2285
|
can_share?: boolean | undefined;
|
|
1916
2286
|
} | undefined;
|
|
1917
2287
|
tags?: string[] | undefined;
|
|
1918
|
-
thumbnail_url?:
|
|
1919
|
-
readonly content_length?:
|
|
1920
|
-
content_thumbnails?: (
|
|
2288
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2289
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2290
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
1921
2291
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1922
2292
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
1923
2293
|
};
|
|
@@ -1925,6 +2295,7 @@ export default function useCanvas(): {
|
|
|
1925
2295
|
})[];
|
|
1926
2296
|
size?: "medium" | undefined;
|
|
1927
2297
|
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
2298
|
+
data_accessor?: string | undefined;
|
|
1928
2299
|
} | {
|
|
1929
2300
|
sections: {
|
|
1930
2301
|
id: string;
|
|
@@ -1936,12 +2307,26 @@ export default function useCanvas(): {
|
|
|
1936
2307
|
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1937
2308
|
selection_app_name?: string | undefined;
|
|
1938
2309
|
is_restricted_to_preselections?: boolean | undefined;
|
|
2310
|
+
} | {
|
|
2311
|
+
sections: {
|
|
2312
|
+
id: string;
|
|
2313
|
+
file_id?: string | undefined;
|
|
2314
|
+
sequence?: number | undefined;
|
|
2315
|
+
component_id: string;
|
|
2316
|
+
page_index?: number | undefined;
|
|
2317
|
+
type: "section" | "file";
|
|
2318
|
+
}[];
|
|
2319
|
+
animation_in?: string | undefined;
|
|
2320
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2321
|
+
selection_app_name?: string | undefined;
|
|
2322
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
1939
2323
|
} | {
|
|
1940
2324
|
html: string;
|
|
1941
2325
|
} | {
|
|
1942
2326
|
src: string | null;
|
|
1943
2327
|
height?: string | undefined;
|
|
1944
2328
|
width?: string | undefined;
|
|
2329
|
+
full_screen_mode?: boolean | undefined;
|
|
1945
2330
|
add_session_context?: boolean | undefined;
|
|
1946
2331
|
} | {
|
|
1947
2332
|
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1975,8 +2360,6 @@ export default function useCanvas(): {
|
|
|
1975
2360
|
metadata?: Record<string, any> | undefined;
|
|
1976
2361
|
app_metadata?: Record<string, any> | undefined;
|
|
1977
2362
|
tags?: Array<string> | undefined;
|
|
1978
|
-
transcript?: string | undefined;
|
|
1979
|
-
readonly search?: string | null | undefined;
|
|
1980
2363
|
readonly published_at?: string | null | undefined;
|
|
1981
2364
|
expires_at?: string | null | undefined;
|
|
1982
2365
|
readonly instance_id?: string | undefined;
|
|
@@ -2033,6 +2416,81 @@ export default function useCanvas(): {
|
|
|
2033
2416
|
card_style?: Record<string, any> | undefined;
|
|
2034
2417
|
}[];
|
|
2035
2418
|
layout: "vertical" | "horizontal";
|
|
2419
|
+
} | {
|
|
2420
|
+
filters?: {
|
|
2421
|
+
property: string;
|
|
2422
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2423
|
+
value: string;
|
|
2424
|
+
}[] | undefined;
|
|
2425
|
+
layout: "column" | "row";
|
|
2426
|
+
page_size?: number | undefined;
|
|
2427
|
+
path: string;
|
|
2428
|
+
properties: {
|
|
2429
|
+
key: string;
|
|
2430
|
+
display_name?: string | undefined;
|
|
2431
|
+
sort: {
|
|
2432
|
+
direction?: "asc" | "desc" | undefined;
|
|
2433
|
+
default?: boolean | undefined;
|
|
2434
|
+
enabled: boolean;
|
|
2435
|
+
};
|
|
2436
|
+
group?: boolean | undefined;
|
|
2437
|
+
printable?: boolean | undefined;
|
|
2438
|
+
format?: {
|
|
2439
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2440
|
+
currency?: string | undefined;
|
|
2441
|
+
decimals?: number | undefined;
|
|
2442
|
+
thousandsSeparator?: boolean | undefined;
|
|
2443
|
+
dateFormat?: string | undefined;
|
|
2444
|
+
} | undefined;
|
|
2445
|
+
}[];
|
|
2446
|
+
theme?: {
|
|
2447
|
+
background_color?: string | null | undefined;
|
|
2448
|
+
group_header_color?: string | null | undefined;
|
|
2449
|
+
font_family?: string | undefined;
|
|
2450
|
+
} | undefined;
|
|
2451
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
2452
|
+
enable_row_striping?: boolean | undefined;
|
|
2453
|
+
striping_color?: string | null | undefined;
|
|
2454
|
+
striping_start_from_first?: boolean | undefined;
|
|
2455
|
+
} | {
|
|
2456
|
+
hierarchy: {
|
|
2457
|
+
type: "group" | "data";
|
|
2458
|
+
path: string;
|
|
2459
|
+
group_by_key?: string | undefined;
|
|
2460
|
+
}[];
|
|
2461
|
+
columns: {
|
|
2462
|
+
key: string;
|
|
2463
|
+
display_name?: string | undefined;
|
|
2464
|
+
sort: {
|
|
2465
|
+
direction?: "asc" | "desc" | undefined;
|
|
2466
|
+
default?: boolean | undefined;
|
|
2467
|
+
enabled: boolean;
|
|
2468
|
+
};
|
|
2469
|
+
group?: boolean | undefined;
|
|
2470
|
+
printable?: boolean | undefined;
|
|
2471
|
+
format?: {
|
|
2472
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2473
|
+
currency?: string | undefined;
|
|
2474
|
+
decimals?: number | undefined;
|
|
2475
|
+
thousandsSeparator?: boolean | undefined;
|
|
2476
|
+
dateFormat?: string | undefined;
|
|
2477
|
+
} | undefined;
|
|
2478
|
+
}[];
|
|
2479
|
+
header_path?: string | undefined;
|
|
2480
|
+
footer_path?: string | undefined;
|
|
2481
|
+
filters?: {
|
|
2482
|
+
property: string;
|
|
2483
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2484
|
+
value: string;
|
|
2485
|
+
}[] | undefined;
|
|
2486
|
+
theme?: {
|
|
2487
|
+
background_color?: string | null | undefined;
|
|
2488
|
+
group_header_color?: string | null | undefined;
|
|
2489
|
+
font_family?: string | undefined;
|
|
2490
|
+
} | undefined;
|
|
2491
|
+
enable_row_striping?: boolean | undefined;
|
|
2492
|
+
striping_color?: string | null | undefined;
|
|
2493
|
+
striping_start_from_first?: boolean | undefined;
|
|
2036
2494
|
} | undefined;
|
|
2037
2495
|
children?: /*elided*/ any[] | undefined;
|
|
2038
2496
|
when_used_in_section?: {
|
|
@@ -2053,7 +2511,8 @@ export default function useCanvas(): {
|
|
|
2053
2511
|
bg_color_palette_index?: number | undefined;
|
|
2054
2512
|
} | undefined;
|
|
2055
2513
|
height?: string | undefined;
|
|
2056
|
-
|
|
2514
|
+
is_sharebox_target?: boolean | undefined;
|
|
2515
|
+
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | ContentListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps>[] | {
|
|
2057
2516
|
id: string;
|
|
2058
2517
|
type: ComponentTypes;
|
|
2059
2518
|
tracking_id: string;
|
|
@@ -2098,7 +2557,7 @@ export default function useCanvas(): {
|
|
|
2098
2557
|
};
|
|
2099
2558
|
slide: {
|
|
2100
2559
|
index: number;
|
|
2101
|
-
url:
|
|
2560
|
+
url: FileRetrieve["thumbnail_url"];
|
|
2102
2561
|
};
|
|
2103
2562
|
} | {
|
|
2104
2563
|
id: string;
|
|
@@ -2171,6 +2630,7 @@ export default function useCanvas(): {
|
|
|
2171
2630
|
src: string | null;
|
|
2172
2631
|
height?: string | undefined;
|
|
2173
2632
|
width?: string | undefined;
|
|
2633
|
+
full_screen_mode?: boolean | undefined;
|
|
2174
2634
|
embed_locations?: EmbedLocation[] | undefined;
|
|
2175
2635
|
headless_locations?: EmbedLocation[] | undefined;
|
|
2176
2636
|
properties_by_embed_location?: {
|
|
@@ -2197,22 +2657,22 @@ export default function useCanvas(): {
|
|
|
2197
2657
|
} | undefined;
|
|
2198
2658
|
} | undefined;
|
|
2199
2659
|
file: {
|
|
2200
|
-
id:
|
|
2201
|
-
snapshot_id?:
|
|
2202
|
-
name:
|
|
2660
|
+
id: FileRetrieve["id"];
|
|
2661
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2662
|
+
name: FileRetrieve["name"];
|
|
2203
2663
|
is_deleted?: boolean | undefined;
|
|
2204
2664
|
expires_at?: string | null | undefined;
|
|
2205
|
-
content_url:
|
|
2665
|
+
content_url: FileRetrieve["content_url"];
|
|
2206
2666
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2207
|
-
content_extension:
|
|
2667
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2208
2668
|
permissions?: {
|
|
2209
2669
|
can_download?: boolean | undefined;
|
|
2210
2670
|
can_share?: boolean | undefined;
|
|
2211
2671
|
} | undefined;
|
|
2212
2672
|
tags?: string[] | undefined;
|
|
2213
|
-
thumbnail_url?:
|
|
2214
|
-
readonly content_length?:
|
|
2215
|
-
content_thumbnails?: (
|
|
2673
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2674
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2675
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2216
2676
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2217
2677
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2218
2678
|
} | null;
|
|
@@ -2220,14 +2680,14 @@ export default function useCanvas(): {
|
|
|
2220
2680
|
} | {
|
|
2221
2681
|
items: ({
|
|
2222
2682
|
file: {
|
|
2223
|
-
id:
|
|
2224
|
-
snapshot_id?:
|
|
2225
|
-
name:
|
|
2683
|
+
id: FileRetrieve["id"];
|
|
2684
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2685
|
+
name: FileRetrieve["name"];
|
|
2226
2686
|
is_deleted?: boolean | undefined;
|
|
2227
2687
|
expires_at?: string | null | undefined;
|
|
2228
|
-
content_url?:
|
|
2688
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
2229
2689
|
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
2230
|
-
content_extension?:
|
|
2690
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
2231
2691
|
permissions?: {
|
|
2232
2692
|
can_download?: boolean | undefined;
|
|
2233
2693
|
can_share?: boolean | undefined;
|
|
@@ -2236,27 +2696,27 @@ export default function useCanvas(): {
|
|
|
2236
2696
|
};
|
|
2237
2697
|
slide: {
|
|
2238
2698
|
index: number;
|
|
2239
|
-
url?:
|
|
2699
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
2240
2700
|
};
|
|
2241
2701
|
type: "slide";
|
|
2242
2702
|
} | {
|
|
2243
2703
|
file: {
|
|
2244
|
-
id:
|
|
2245
|
-
snapshot_id?:
|
|
2246
|
-
name:
|
|
2704
|
+
id: FileRetrieve["id"];
|
|
2705
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2706
|
+
name: FileRetrieve["name"];
|
|
2247
2707
|
is_deleted?: boolean | undefined;
|
|
2248
2708
|
expires_at?: string | null | undefined;
|
|
2249
|
-
content_url:
|
|
2709
|
+
content_url: FileRetrieve["content_url"];
|
|
2250
2710
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2251
|
-
content_extension:
|
|
2711
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2252
2712
|
permissions?: {
|
|
2253
2713
|
can_download?: boolean | undefined;
|
|
2254
2714
|
can_share?: boolean | undefined;
|
|
2255
2715
|
} | undefined;
|
|
2256
2716
|
tags?: string[] | undefined;
|
|
2257
|
-
thumbnail_url?:
|
|
2258
|
-
readonly content_length?:
|
|
2259
|
-
content_thumbnails?: (
|
|
2717
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2718
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2719
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2260
2720
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2261
2721
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2262
2722
|
};
|
|
@@ -2264,6 +2724,7 @@ export default function useCanvas(): {
|
|
|
2264
2724
|
})[];
|
|
2265
2725
|
size?: "medium" | undefined;
|
|
2266
2726
|
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
2727
|
+
data_accessor?: string | undefined;
|
|
2267
2728
|
} | {
|
|
2268
2729
|
sections: {
|
|
2269
2730
|
id: string;
|
|
@@ -2275,12 +2736,26 @@ export default function useCanvas(): {
|
|
|
2275
2736
|
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2276
2737
|
selection_app_name?: string | undefined;
|
|
2277
2738
|
is_restricted_to_preselections?: boolean | undefined;
|
|
2739
|
+
} | {
|
|
2740
|
+
sections: {
|
|
2741
|
+
id: string;
|
|
2742
|
+
file_id?: string | undefined;
|
|
2743
|
+
sequence?: number | undefined;
|
|
2744
|
+
component_id: string;
|
|
2745
|
+
page_index?: number | undefined;
|
|
2746
|
+
type: "section" | "file";
|
|
2747
|
+
}[];
|
|
2748
|
+
animation_in?: string | undefined;
|
|
2749
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2750
|
+
selection_app_name?: string | undefined;
|
|
2751
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
2278
2752
|
} | {
|
|
2279
2753
|
html: string;
|
|
2280
2754
|
} | {
|
|
2281
2755
|
src: string | null;
|
|
2282
2756
|
height?: string | undefined;
|
|
2283
2757
|
width?: string | undefined;
|
|
2758
|
+
full_screen_mode?: boolean | undefined;
|
|
2284
2759
|
add_session_context?: boolean | undefined;
|
|
2285
2760
|
} | {
|
|
2286
2761
|
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -2314,8 +2789,6 @@ export default function useCanvas(): {
|
|
|
2314
2789
|
metadata?: Record<string, any> | undefined;
|
|
2315
2790
|
app_metadata?: Record<string, any> | undefined;
|
|
2316
2791
|
tags?: Array<string> | undefined;
|
|
2317
|
-
transcript?: string | undefined;
|
|
2318
|
-
readonly search?: string | null | undefined;
|
|
2319
2792
|
readonly published_at?: string | null | undefined;
|
|
2320
2793
|
expires_at?: string | null | undefined;
|
|
2321
2794
|
readonly instance_id?: string | undefined;
|
|
@@ -2372,6 +2845,81 @@ export default function useCanvas(): {
|
|
|
2372
2845
|
card_style?: Record<string, any> | undefined;
|
|
2373
2846
|
}[];
|
|
2374
2847
|
layout: "vertical" | "horizontal";
|
|
2848
|
+
} | {
|
|
2849
|
+
filters?: {
|
|
2850
|
+
property: string;
|
|
2851
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2852
|
+
value: string;
|
|
2853
|
+
}[] | undefined;
|
|
2854
|
+
layout: "column" | "row";
|
|
2855
|
+
page_size?: number | undefined;
|
|
2856
|
+
path: string;
|
|
2857
|
+
properties: {
|
|
2858
|
+
key: string;
|
|
2859
|
+
display_name?: string | undefined;
|
|
2860
|
+
sort: {
|
|
2861
|
+
direction?: "asc" | "desc" | undefined;
|
|
2862
|
+
default?: boolean | undefined;
|
|
2863
|
+
enabled: boolean;
|
|
2864
|
+
};
|
|
2865
|
+
group?: boolean | undefined;
|
|
2866
|
+
printable?: boolean | undefined;
|
|
2867
|
+
format?: {
|
|
2868
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2869
|
+
currency?: string | undefined;
|
|
2870
|
+
decimals?: number | undefined;
|
|
2871
|
+
thousandsSeparator?: boolean | undefined;
|
|
2872
|
+
dateFormat?: string | undefined;
|
|
2873
|
+
} | undefined;
|
|
2874
|
+
}[];
|
|
2875
|
+
theme?: {
|
|
2876
|
+
background_color?: string | null | undefined;
|
|
2877
|
+
group_header_color?: string | null | undefined;
|
|
2878
|
+
font_family?: string | undefined;
|
|
2879
|
+
} | undefined;
|
|
2880
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
2881
|
+
enable_row_striping?: boolean | undefined;
|
|
2882
|
+
striping_color?: string | null | undefined;
|
|
2883
|
+
striping_start_from_first?: boolean | undefined;
|
|
2884
|
+
} | {
|
|
2885
|
+
hierarchy: {
|
|
2886
|
+
type: "group" | "data";
|
|
2887
|
+
path: string;
|
|
2888
|
+
group_by_key?: string | undefined;
|
|
2889
|
+
}[];
|
|
2890
|
+
columns: {
|
|
2891
|
+
key: string;
|
|
2892
|
+
display_name?: string | undefined;
|
|
2893
|
+
sort: {
|
|
2894
|
+
direction?: "asc" | "desc" | undefined;
|
|
2895
|
+
default?: boolean | undefined;
|
|
2896
|
+
enabled: boolean;
|
|
2897
|
+
};
|
|
2898
|
+
group?: boolean | undefined;
|
|
2899
|
+
printable?: boolean | undefined;
|
|
2900
|
+
format?: {
|
|
2901
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2902
|
+
currency?: string | undefined;
|
|
2903
|
+
decimals?: number | undefined;
|
|
2904
|
+
thousandsSeparator?: boolean | undefined;
|
|
2905
|
+
dateFormat?: string | undefined;
|
|
2906
|
+
} | undefined;
|
|
2907
|
+
}[];
|
|
2908
|
+
header_path?: string | undefined;
|
|
2909
|
+
footer_path?: string | undefined;
|
|
2910
|
+
filters?: {
|
|
2911
|
+
property: string;
|
|
2912
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2913
|
+
value: string;
|
|
2914
|
+
}[] | undefined;
|
|
2915
|
+
theme?: {
|
|
2916
|
+
background_color?: string | null | undefined;
|
|
2917
|
+
group_header_color?: string | null | undefined;
|
|
2918
|
+
font_family?: string | undefined;
|
|
2919
|
+
} | undefined;
|
|
2920
|
+
enable_row_striping?: boolean | undefined;
|
|
2921
|
+
striping_color?: string | null | undefined;
|
|
2922
|
+
striping_start_from_first?: boolean | undefined;
|
|
2375
2923
|
} | undefined;
|
|
2376
2924
|
children?: /*elided*/ any[] | undefined;
|
|
2377
2925
|
when_used_in_section?: {
|
|
@@ -2392,6 +2940,7 @@ export default function useCanvas(): {
|
|
|
2392
2940
|
bg_color_palette_index?: number | undefined;
|
|
2393
2941
|
} | undefined;
|
|
2394
2942
|
height?: string | undefined;
|
|
2943
|
+
is_sharebox_target?: boolean | undefined;
|
|
2395
2944
|
}[]>;
|
|
2396
2945
|
canvasHomePage: Ref<{
|
|
2397
2946
|
component_id: ComponentNode["id"];
|
|
@@ -2479,7 +3028,7 @@ export default function useCanvas(): {
|
|
|
2479
3028
|
};
|
|
2480
3029
|
readonly slide: {
|
|
2481
3030
|
readonly index: number;
|
|
2482
|
-
readonly url:
|
|
3031
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
2483
3032
|
};
|
|
2484
3033
|
} | {
|
|
2485
3034
|
readonly id: string;
|
|
@@ -2562,6 +3111,7 @@ export default function useCanvas(): {
|
|
|
2562
3111
|
readonly src: string | null;
|
|
2563
3112
|
readonly height?: string | undefined;
|
|
2564
3113
|
readonly width?: string | undefined;
|
|
3114
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
2565
3115
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2566
3116
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2567
3117
|
readonly properties_by_embed_location?: {
|
|
@@ -2588,21 +3138,21 @@ export default function useCanvas(): {
|
|
|
2588
3138
|
} | undefined;
|
|
2589
3139
|
} | undefined;
|
|
2590
3140
|
readonly file: {
|
|
2591
|
-
readonly id:
|
|
2592
|
-
readonly snapshot_id?:
|
|
2593
|
-
readonly name:
|
|
3141
|
+
readonly id: FileRetrieve["id"];
|
|
3142
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3143
|
+
readonly name: FileRetrieve["name"];
|
|
2594
3144
|
readonly is_deleted?: boolean | undefined;
|
|
2595
3145
|
readonly expires_at?: string | null | undefined;
|
|
2596
|
-
readonly content_url:
|
|
3146
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
2597
3147
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2598
|
-
readonly content_extension:
|
|
3148
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
2599
3149
|
readonly permissions?: {
|
|
2600
3150
|
readonly can_download?: boolean | undefined;
|
|
2601
3151
|
readonly can_share?: boolean | undefined;
|
|
2602
3152
|
} | undefined;
|
|
2603
3153
|
readonly tags?: readonly string[] | undefined;
|
|
2604
|
-
readonly thumbnail_url?:
|
|
2605
|
-
readonly content_length?:
|
|
3154
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3155
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2606
3156
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
2607
3157
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2608
3158
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -2615,14 +3165,14 @@ export default function useCanvas(): {
|
|
|
2615
3165
|
} | {
|
|
2616
3166
|
readonly items: readonly ({
|
|
2617
3167
|
readonly file: {
|
|
2618
|
-
readonly id:
|
|
2619
|
-
readonly snapshot_id?:
|
|
2620
|
-
readonly name:
|
|
3168
|
+
readonly id: FileRetrieve["id"];
|
|
3169
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3170
|
+
readonly name: FileRetrieve["name"];
|
|
2621
3171
|
readonly is_deleted?: boolean | undefined;
|
|
2622
3172
|
readonly expires_at?: string | null | undefined;
|
|
2623
|
-
readonly content_url?:
|
|
3173
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
2624
3174
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
2625
|
-
readonly content_extension?:
|
|
3175
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
2626
3176
|
readonly permissions?: {
|
|
2627
3177
|
readonly can_download?: boolean | undefined;
|
|
2628
3178
|
readonly can_share?: boolean | undefined;
|
|
@@ -2631,26 +3181,26 @@ export default function useCanvas(): {
|
|
|
2631
3181
|
};
|
|
2632
3182
|
readonly slide: {
|
|
2633
3183
|
readonly index: number;
|
|
2634
|
-
readonly url?:
|
|
3184
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
2635
3185
|
};
|
|
2636
3186
|
readonly type: "slide";
|
|
2637
3187
|
} | {
|
|
2638
3188
|
readonly file: {
|
|
2639
|
-
readonly id:
|
|
2640
|
-
readonly snapshot_id?:
|
|
2641
|
-
readonly name:
|
|
3189
|
+
readonly id: FileRetrieve["id"];
|
|
3190
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3191
|
+
readonly name: FileRetrieve["name"];
|
|
2642
3192
|
readonly is_deleted?: boolean | undefined;
|
|
2643
3193
|
readonly expires_at?: string | null | undefined;
|
|
2644
|
-
readonly content_url:
|
|
3194
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
2645
3195
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2646
|
-
readonly content_extension:
|
|
3196
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
2647
3197
|
readonly permissions?: {
|
|
2648
3198
|
readonly can_download?: boolean | undefined;
|
|
2649
3199
|
readonly can_share?: boolean | undefined;
|
|
2650
3200
|
} | undefined;
|
|
2651
3201
|
readonly tags?: readonly string[] | undefined;
|
|
2652
|
-
readonly thumbnail_url?:
|
|
2653
|
-
readonly content_length?:
|
|
3202
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3203
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2654
3204
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
2655
3205
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2656
3206
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -2661,6 +3211,7 @@ export default function useCanvas(): {
|
|
|
2661
3211
|
})[];
|
|
2662
3212
|
readonly size?: "medium" | undefined;
|
|
2663
3213
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
3214
|
+
readonly data_accessor?: string | undefined;
|
|
2664
3215
|
} | {
|
|
2665
3216
|
readonly sections: readonly {
|
|
2666
3217
|
readonly id: string;
|
|
@@ -2674,12 +3225,26 @@ export default function useCanvas(): {
|
|
|
2674
3225
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2675
3226
|
readonly selection_app_name?: string | undefined;
|
|
2676
3227
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3228
|
+
} | {
|
|
3229
|
+
readonly sections: readonly {
|
|
3230
|
+
readonly id: string;
|
|
3231
|
+
readonly file_id?: string | undefined;
|
|
3232
|
+
readonly sequence?: number | undefined;
|
|
3233
|
+
readonly component_id: string;
|
|
3234
|
+
readonly page_index?: number | undefined;
|
|
3235
|
+
readonly type: "section" | "file";
|
|
3236
|
+
}[];
|
|
3237
|
+
readonly animation_in?: string | undefined;
|
|
3238
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3239
|
+
readonly selection_app_name?: string | undefined;
|
|
3240
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
2677
3241
|
} | {
|
|
2678
3242
|
readonly html: string;
|
|
2679
3243
|
} | {
|
|
2680
3244
|
readonly src: string | null;
|
|
2681
3245
|
readonly height?: string | undefined;
|
|
2682
3246
|
readonly width?: string | undefined;
|
|
3247
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
2683
3248
|
readonly add_session_context?: boolean | undefined;
|
|
2684
3249
|
} | {
|
|
2685
3250
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -2717,8 +3282,6 @@ export default function useCanvas(): {
|
|
|
2717
3282
|
readonly [x: string]: any;
|
|
2718
3283
|
} | undefined;
|
|
2719
3284
|
readonly tags?: readonly string[] | undefined;
|
|
2720
|
-
readonly transcript?: string | undefined;
|
|
2721
|
-
readonly search?: string | null | undefined;
|
|
2722
3285
|
readonly published_at?: string | null | undefined;
|
|
2723
3286
|
readonly expires_at?: string | null | undefined;
|
|
2724
3287
|
readonly instance_id?: string | undefined;
|
|
@@ -2787,6 +3350,81 @@ export default function useCanvas(): {
|
|
|
2787
3350
|
} | undefined;
|
|
2788
3351
|
}[];
|
|
2789
3352
|
readonly layout: "vertical" | "horizontal";
|
|
3353
|
+
} | {
|
|
3354
|
+
readonly filters?: readonly {
|
|
3355
|
+
readonly property: string;
|
|
3356
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3357
|
+
readonly value: string;
|
|
3358
|
+
}[] | undefined;
|
|
3359
|
+
readonly layout: "column" | "row";
|
|
3360
|
+
readonly page_size?: number | undefined;
|
|
3361
|
+
readonly path: string;
|
|
3362
|
+
readonly properties: readonly {
|
|
3363
|
+
readonly key: string;
|
|
3364
|
+
readonly display_name?: string | undefined;
|
|
3365
|
+
readonly sort: {
|
|
3366
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3367
|
+
readonly default?: boolean | undefined;
|
|
3368
|
+
readonly enabled: boolean;
|
|
3369
|
+
};
|
|
3370
|
+
readonly group?: boolean | undefined;
|
|
3371
|
+
readonly printable?: boolean | undefined;
|
|
3372
|
+
readonly format?: {
|
|
3373
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3374
|
+
readonly currency?: string | undefined;
|
|
3375
|
+
readonly decimals?: number | undefined;
|
|
3376
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3377
|
+
readonly dateFormat?: string | undefined;
|
|
3378
|
+
} | undefined;
|
|
3379
|
+
}[];
|
|
3380
|
+
readonly theme?: {
|
|
3381
|
+
readonly background_color?: string | null | undefined;
|
|
3382
|
+
readonly group_header_color?: string | null | undefined;
|
|
3383
|
+
readonly font_family?: string | undefined;
|
|
3384
|
+
} | undefined;
|
|
3385
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
3386
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3387
|
+
readonly striping_color?: string | null | undefined;
|
|
3388
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
3389
|
+
} | {
|
|
3390
|
+
readonly hierarchy: readonly {
|
|
3391
|
+
readonly type: "group" | "data";
|
|
3392
|
+
readonly path: string;
|
|
3393
|
+
readonly group_by_key?: string | undefined;
|
|
3394
|
+
}[];
|
|
3395
|
+
readonly columns: readonly {
|
|
3396
|
+
readonly key: string;
|
|
3397
|
+
readonly display_name?: string | undefined;
|
|
3398
|
+
readonly sort: {
|
|
3399
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3400
|
+
readonly default?: boolean | undefined;
|
|
3401
|
+
readonly enabled: boolean;
|
|
3402
|
+
};
|
|
3403
|
+
readonly group?: boolean | undefined;
|
|
3404
|
+
readonly printable?: boolean | undefined;
|
|
3405
|
+
readonly format?: {
|
|
3406
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3407
|
+
readonly currency?: string | undefined;
|
|
3408
|
+
readonly decimals?: number | undefined;
|
|
3409
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3410
|
+
readonly dateFormat?: string | undefined;
|
|
3411
|
+
} | undefined;
|
|
3412
|
+
}[];
|
|
3413
|
+
readonly header_path?: string | undefined;
|
|
3414
|
+
readonly footer_path?: string | undefined;
|
|
3415
|
+
readonly filters?: readonly {
|
|
3416
|
+
readonly property: string;
|
|
3417
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3418
|
+
readonly value: string;
|
|
3419
|
+
}[] | undefined;
|
|
3420
|
+
readonly theme?: {
|
|
3421
|
+
readonly background_color?: string | null | undefined;
|
|
3422
|
+
readonly group_header_color?: string | null | undefined;
|
|
3423
|
+
readonly font_family?: string | undefined;
|
|
3424
|
+
} | undefined;
|
|
3425
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3426
|
+
readonly striping_color?: string | null | undefined;
|
|
3427
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
2790
3428
|
} | undefined;
|
|
2791
3429
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2792
3430
|
readonly when_used_in_section?: {
|
|
@@ -2809,6 +3447,7 @@ export default function useCanvas(): {
|
|
|
2809
3447
|
readonly bg_color_palette_index?: number | undefined;
|
|
2810
3448
|
} | undefined;
|
|
2811
3449
|
readonly height?: string | undefined;
|
|
3450
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
2812
3451
|
};
|
|
2813
3452
|
}>;
|
|
2814
3453
|
componentSelectedMode: Ref<false | {
|
|
@@ -2832,7 +3471,7 @@ export default function useCanvas(): {
|
|
|
2832
3471
|
currentEmbedLocation: import('vue').ComputedRef<"dsr" | "canvas">;
|
|
2833
3472
|
displayMode: Ref<"print" | "default" | undefined, "print" | "default" | undefined>;
|
|
2834
3473
|
endPage: Ref<number | undefined, number | undefined>;
|
|
2835
|
-
fetchFile: Ref<((fileId:
|
|
3474
|
+
fetchFile: Ref<((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((...data: any[]) => void), ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((...data: any[]) => void)>;
|
|
2836
3475
|
getEnv: Ref<(() => Promise<import('../../../main.lib').PitcherEnv>) | (() => Promise<import('../../../main.lib').PitcherEnv>) | ((...data: any[]) => void) | undefined, (() => Promise<import('../../../main.lib').PitcherEnv>) | (() => Promise<import('../../../main.lib').PitcherEnv>) | ((...data: any[]) => void) | undefined>;
|
|
2837
3476
|
inCall: Ref<boolean | undefined, boolean | undefined>;
|
|
2838
3477
|
isAdmin: import('vue').ComputedRef<boolean>;
|
|
@@ -2845,6 +3484,7 @@ export default function useCanvas(): {
|
|
|
2845
3484
|
isFullscreen: Ref<boolean, boolean>;
|
|
2846
3485
|
isHomeMode: import('vue').ComputedRef<boolean>;
|
|
2847
3486
|
isImpact: import('vue').ComputedRef<boolean>;
|
|
3487
|
+
isCanvasPreviewMode: Ref<boolean, boolean>;
|
|
2848
3488
|
isPrintDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2849
3489
|
isRedirectEvent: Ref<boolean, boolean>;
|
|
2850
3490
|
isSameAsSaved: import('vue').ComputedRef<any>;
|
|
@@ -2857,6 +3497,7 @@ export default function useCanvas(): {
|
|
|
2857
3497
|
isViewOnlyMode: import('vue').ComputedRef<boolean>;
|
|
2858
3498
|
justAddedComponentId: Ref<string | null, string | null>;
|
|
2859
3499
|
listFiles: Ref<((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined, ((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined>;
|
|
3500
|
+
isSetListFilesApi: Ref<boolean, boolean>;
|
|
2860
3501
|
listRecommendedFiles: Ref<((params: {
|
|
2861
3502
|
sectionId: CanvasRetrieve["id"];
|
|
2862
3503
|
matchingStrategy: ("tags" | "metadata")[];
|
|
@@ -2881,6 +3522,7 @@ export default function useCanvas(): {
|
|
|
2881
3522
|
uniqueId: string;
|
|
2882
3523
|
metadata?: Record<string, any>;
|
|
2883
3524
|
sectionIndex?: number;
|
|
3525
|
+
pageIndex?: number;
|
|
2884
3526
|
}[]>;
|
|
2885
3527
|
onComponentEnter: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
2886
3528
|
onComponentExit: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
@@ -2931,13 +3573,10 @@ export default function useCanvas(): {
|
|
|
2931
3573
|
groupsCount: number;
|
|
2932
3574
|
slidesCount: number;
|
|
2933
3575
|
}) => void) | undefined>;
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
fields?: string;
|
|
2939
|
-
include_expired_files?: boolean;
|
|
2940
|
-
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined>;
|
|
3576
|
+
save: typeof save;
|
|
3577
|
+
onSave: (canvasId: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[0], canvasData: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[1], showToast?: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[2]) => Promise<void> | Promise<CanvasRetrieve> | undefined;
|
|
3578
|
+
temporaryContextKeys: import('vue').ComputedRef<string[]>;
|
|
3579
|
+
setTemporaryContextKeys: (source: "onUpdateFromEmbeddable" | "fetchedAccountData", context: CanvasRetrieve["context"]) => void;
|
|
2941
3580
|
onSfdcAccountSearch: Ref<((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2942
3581
|
accountsLoading: Ref<boolean>;
|
|
2943
3582
|
accounts: Ref<{
|
|
@@ -3040,7 +3679,7 @@ export default function useCanvas(): {
|
|
|
3040
3679
|
};
|
|
3041
3680
|
readonly slide: {
|
|
3042
3681
|
readonly index: number;
|
|
3043
|
-
readonly url:
|
|
3682
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
3044
3683
|
};
|
|
3045
3684
|
} | {
|
|
3046
3685
|
readonly id: string;
|
|
@@ -3123,6 +3762,7 @@ export default function useCanvas(): {
|
|
|
3123
3762
|
readonly src: string | null;
|
|
3124
3763
|
readonly height?: string | undefined;
|
|
3125
3764
|
readonly width?: string | undefined;
|
|
3765
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
3126
3766
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
3127
3767
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
3128
3768
|
readonly properties_by_embed_location?: {
|
|
@@ -3149,21 +3789,21 @@ export default function useCanvas(): {
|
|
|
3149
3789
|
} | undefined;
|
|
3150
3790
|
} | undefined;
|
|
3151
3791
|
readonly file: {
|
|
3152
|
-
readonly id:
|
|
3153
|
-
readonly snapshot_id?:
|
|
3154
|
-
readonly name:
|
|
3792
|
+
readonly id: FileRetrieve["id"];
|
|
3793
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3794
|
+
readonly name: FileRetrieve["name"];
|
|
3155
3795
|
readonly is_deleted?: boolean | undefined;
|
|
3156
3796
|
readonly expires_at?: string | null | undefined;
|
|
3157
|
-
readonly content_url:
|
|
3797
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3158
3798
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3159
|
-
readonly content_extension:
|
|
3799
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3160
3800
|
readonly permissions?: {
|
|
3161
3801
|
readonly can_download?: boolean | undefined;
|
|
3162
3802
|
readonly can_share?: boolean | undefined;
|
|
3163
3803
|
} | undefined;
|
|
3164
3804
|
readonly tags?: readonly string[] | undefined;
|
|
3165
|
-
readonly thumbnail_url?:
|
|
3166
|
-
readonly content_length?:
|
|
3805
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3806
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3167
3807
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3168
3808
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3169
3809
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3176,14 +3816,14 @@ export default function useCanvas(): {
|
|
|
3176
3816
|
} | {
|
|
3177
3817
|
readonly items: readonly ({
|
|
3178
3818
|
readonly file: {
|
|
3179
|
-
readonly id:
|
|
3180
|
-
readonly snapshot_id?:
|
|
3181
|
-
readonly name:
|
|
3819
|
+
readonly id: FileRetrieve["id"];
|
|
3820
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3821
|
+
readonly name: FileRetrieve["name"];
|
|
3182
3822
|
readonly is_deleted?: boolean | undefined;
|
|
3183
3823
|
readonly expires_at?: string | null | undefined;
|
|
3184
|
-
readonly content_url?:
|
|
3824
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
3185
3825
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
3186
|
-
readonly content_extension?:
|
|
3826
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
3187
3827
|
readonly permissions?: {
|
|
3188
3828
|
readonly can_download?: boolean | undefined;
|
|
3189
3829
|
readonly can_share?: boolean | undefined;
|
|
@@ -3192,26 +3832,26 @@ export default function useCanvas(): {
|
|
|
3192
3832
|
};
|
|
3193
3833
|
readonly slide: {
|
|
3194
3834
|
readonly index: number;
|
|
3195
|
-
readonly url?:
|
|
3835
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
3196
3836
|
};
|
|
3197
3837
|
readonly type: "slide";
|
|
3198
3838
|
} | {
|
|
3199
3839
|
readonly file: {
|
|
3200
|
-
readonly id:
|
|
3201
|
-
readonly snapshot_id?:
|
|
3202
|
-
readonly name:
|
|
3840
|
+
readonly id: FileRetrieve["id"];
|
|
3841
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3842
|
+
readonly name: FileRetrieve["name"];
|
|
3203
3843
|
readonly is_deleted?: boolean | undefined;
|
|
3204
3844
|
readonly expires_at?: string | null | undefined;
|
|
3205
|
-
readonly content_url:
|
|
3845
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3206
3846
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3207
|
-
readonly content_extension:
|
|
3847
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3208
3848
|
readonly permissions?: {
|
|
3209
3849
|
readonly can_download?: boolean | undefined;
|
|
3210
3850
|
readonly can_share?: boolean | undefined;
|
|
3211
3851
|
} | undefined;
|
|
3212
3852
|
readonly tags?: readonly string[] | undefined;
|
|
3213
|
-
readonly thumbnail_url?:
|
|
3214
|
-
readonly content_length?:
|
|
3853
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3854
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3215
3855
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3216
3856
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3217
3857
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3222,6 +3862,7 @@ export default function useCanvas(): {
|
|
|
3222
3862
|
})[];
|
|
3223
3863
|
readonly size?: "medium" | undefined;
|
|
3224
3864
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
3865
|
+
readonly data_accessor?: string | undefined;
|
|
3225
3866
|
} | {
|
|
3226
3867
|
readonly sections: readonly {
|
|
3227
3868
|
readonly id: string;
|
|
@@ -3235,12 +3876,26 @@ export default function useCanvas(): {
|
|
|
3235
3876
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3236
3877
|
readonly selection_app_name?: string | undefined;
|
|
3237
3878
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3879
|
+
} | {
|
|
3880
|
+
readonly sections: readonly {
|
|
3881
|
+
readonly id: string;
|
|
3882
|
+
readonly file_id?: string | undefined;
|
|
3883
|
+
readonly sequence?: number | undefined;
|
|
3884
|
+
readonly component_id: string;
|
|
3885
|
+
readonly page_index?: number | undefined;
|
|
3886
|
+
readonly type: "section" | "file";
|
|
3887
|
+
}[];
|
|
3888
|
+
readonly animation_in?: string | undefined;
|
|
3889
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3890
|
+
readonly selection_app_name?: string | undefined;
|
|
3891
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3238
3892
|
} | {
|
|
3239
3893
|
readonly html: string;
|
|
3240
3894
|
} | {
|
|
3241
3895
|
readonly src: string | null;
|
|
3242
3896
|
readonly height?: string | undefined;
|
|
3243
3897
|
readonly width?: string | undefined;
|
|
3898
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
3244
3899
|
readonly add_session_context?: boolean | undefined;
|
|
3245
3900
|
} | {
|
|
3246
3901
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -3278,8 +3933,6 @@ export default function useCanvas(): {
|
|
|
3278
3933
|
readonly [x: string]: any;
|
|
3279
3934
|
} | undefined;
|
|
3280
3935
|
readonly tags?: readonly string[] | undefined;
|
|
3281
|
-
readonly transcript?: string | undefined;
|
|
3282
|
-
readonly search?: string | null | undefined;
|
|
3283
3936
|
readonly published_at?: string | null | undefined;
|
|
3284
3937
|
readonly expires_at?: string | null | undefined;
|
|
3285
3938
|
readonly instance_id?: string | undefined;
|
|
@@ -3348,6 +4001,81 @@ export default function useCanvas(): {
|
|
|
3348
4001
|
} | undefined;
|
|
3349
4002
|
}[];
|
|
3350
4003
|
readonly layout: "vertical" | "horizontal";
|
|
4004
|
+
} | {
|
|
4005
|
+
readonly filters?: readonly {
|
|
4006
|
+
readonly property: string;
|
|
4007
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4008
|
+
readonly value: string;
|
|
4009
|
+
}[] | undefined;
|
|
4010
|
+
readonly layout: "column" | "row";
|
|
4011
|
+
readonly page_size?: number | undefined;
|
|
4012
|
+
readonly path: string;
|
|
4013
|
+
readonly properties: readonly {
|
|
4014
|
+
readonly key: string;
|
|
4015
|
+
readonly display_name?: string | undefined;
|
|
4016
|
+
readonly sort: {
|
|
4017
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
4018
|
+
readonly default?: boolean | undefined;
|
|
4019
|
+
readonly enabled: boolean;
|
|
4020
|
+
};
|
|
4021
|
+
readonly group?: boolean | undefined;
|
|
4022
|
+
readonly printable?: boolean | undefined;
|
|
4023
|
+
readonly format?: {
|
|
4024
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4025
|
+
readonly currency?: string | undefined;
|
|
4026
|
+
readonly decimals?: number | undefined;
|
|
4027
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
4028
|
+
readonly dateFormat?: string | undefined;
|
|
4029
|
+
} | undefined;
|
|
4030
|
+
}[];
|
|
4031
|
+
readonly theme?: {
|
|
4032
|
+
readonly background_color?: string | null | undefined;
|
|
4033
|
+
readonly group_header_color?: string | null | undefined;
|
|
4034
|
+
readonly font_family?: string | undefined;
|
|
4035
|
+
} | undefined;
|
|
4036
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
4037
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
4038
|
+
readonly striping_color?: string | null | undefined;
|
|
4039
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
4040
|
+
} | {
|
|
4041
|
+
readonly hierarchy: readonly {
|
|
4042
|
+
readonly type: "group" | "data";
|
|
4043
|
+
readonly path: string;
|
|
4044
|
+
readonly group_by_key?: string | undefined;
|
|
4045
|
+
}[];
|
|
4046
|
+
readonly columns: readonly {
|
|
4047
|
+
readonly key: string;
|
|
4048
|
+
readonly display_name?: string | undefined;
|
|
4049
|
+
readonly sort: {
|
|
4050
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
4051
|
+
readonly default?: boolean | undefined;
|
|
4052
|
+
readonly enabled: boolean;
|
|
4053
|
+
};
|
|
4054
|
+
readonly group?: boolean | undefined;
|
|
4055
|
+
readonly printable?: boolean | undefined;
|
|
4056
|
+
readonly format?: {
|
|
4057
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4058
|
+
readonly currency?: string | undefined;
|
|
4059
|
+
readonly decimals?: number | undefined;
|
|
4060
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
4061
|
+
readonly dateFormat?: string | undefined;
|
|
4062
|
+
} | undefined;
|
|
4063
|
+
}[];
|
|
4064
|
+
readonly header_path?: string | undefined;
|
|
4065
|
+
readonly footer_path?: string | undefined;
|
|
4066
|
+
readonly filters?: readonly {
|
|
4067
|
+
readonly property: string;
|
|
4068
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4069
|
+
readonly value: string;
|
|
4070
|
+
}[] | undefined;
|
|
4071
|
+
readonly theme?: {
|
|
4072
|
+
readonly background_color?: string | null | undefined;
|
|
4073
|
+
readonly group_header_color?: string | null | undefined;
|
|
4074
|
+
readonly font_family?: string | undefined;
|
|
4075
|
+
} | undefined;
|
|
4076
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
4077
|
+
readonly striping_color?: string | null | undefined;
|
|
4078
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
3351
4079
|
} | undefined;
|
|
3352
4080
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
3353
4081
|
readonly when_used_in_section?: {
|
|
@@ -3370,70 +4098,514 @@ export default function useCanvas(): {
|
|
|
3370
4098
|
readonly bg_color_palette_index?: number | undefined;
|
|
3371
4099
|
} | undefined;
|
|
3372
4100
|
readonly height?: string | undefined;
|
|
4101
|
+
readonly is_sharebox_target?: boolean | undefined;
|
|
3373
4102
|
};
|
|
3374
4103
|
};
|
|
3375
4104
|
}>;
|
|
3376
4105
|
sectionComponentOverrides: Ref<SectionComponentOverrides, SectionComponentOverrides>;
|
|
3377
4106
|
selectedComponentType: import('vue').ComputedRef<ComponentTypes | null>;
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
4107
|
+
selectedComponentParentType: import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
4108
|
+
activeEditNodeParentType: import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
4109
|
+
selectedComponentParent: import('vue').ComputedRef<{
|
|
4110
|
+
id: string;
|
|
4111
|
+
type: ComponentTypes;
|
|
4112
|
+
tracking_id: string;
|
|
4113
|
+
visible?: {
|
|
4114
|
+
edit_mode: boolean;
|
|
4115
|
+
presentation_mode: boolean;
|
|
4116
|
+
pdf: boolean;
|
|
4117
|
+
web: boolean;
|
|
4118
|
+
} | undefined;
|
|
4119
|
+
linkable?: {
|
|
4120
|
+
linkable_in_templates: boolean;
|
|
4121
|
+
} | undefined;
|
|
4122
|
+
print?: {
|
|
4123
|
+
scale_to_fit_page?: boolean | undefined;
|
|
4124
|
+
} | undefined;
|
|
4125
|
+
allow_admins_to_overwrite?: boolean | undefined;
|
|
4126
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
4127
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
4128
|
+
data?: import('../types/canvas').PageBreakProps | {
|
|
4129
|
+
groups: {
|
|
4130
|
+
id: string;
|
|
4131
|
+
name: string;
|
|
4132
|
+
slides: ({
|
|
4133
|
+
id: string;
|
|
4134
|
+
type: "slide";
|
|
4135
|
+
file: {
|
|
4136
|
+
metadata?: Record<string, any> | undefined;
|
|
4137
|
+
readonly id: string;
|
|
4138
|
+
name?: string | undefined;
|
|
4139
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
4140
|
+
tags?: Array<string> | undefined;
|
|
4141
|
+
readonly thumbnail_url: string | null;
|
|
4142
|
+
permissions?: {
|
|
4143
|
+
can_download?: boolean | undefined;
|
|
4144
|
+
can_share?: boolean | undefined;
|
|
4145
|
+
} | undefined;
|
|
4146
|
+
readonly content_url: string | null;
|
|
4147
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
4148
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
4149
|
+
readonly pspdfkit_document_id: string | null;
|
|
4150
|
+
readonly pspdfkit_server_url: string | null;
|
|
4151
|
+
};
|
|
4152
|
+
slide: {
|
|
4153
|
+
index: number;
|
|
4154
|
+
url: FileRetrieve["thumbnail_url"];
|
|
4155
|
+
};
|
|
4156
|
+
} | {
|
|
4157
|
+
id: string;
|
|
4158
|
+
type: "file";
|
|
4159
|
+
file: {
|
|
4160
|
+
metadata?: Record<string, any> | undefined;
|
|
4161
|
+
readonly id: string;
|
|
4162
|
+
name?: string | undefined;
|
|
4163
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
4164
|
+
tags?: Array<string> | undefined;
|
|
4165
|
+
readonly thumbnail_url: string | null;
|
|
4166
|
+
permissions?: {
|
|
4167
|
+
can_download?: boolean | undefined;
|
|
4168
|
+
can_share?: boolean | undefined;
|
|
4169
|
+
} | undefined;
|
|
4170
|
+
readonly content_url: string | null;
|
|
4171
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
4172
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
4173
|
+
readonly pspdfkit_document_id: string | null;
|
|
4174
|
+
readonly pspdfkit_server_url: string | null;
|
|
4175
|
+
};
|
|
4176
|
+
})[];
|
|
4177
|
+
}[];
|
|
4178
|
+
filters?: Record<string, any> | undefined;
|
|
4179
|
+
name: string;
|
|
4180
|
+
hide_footer?: boolean | undefined;
|
|
4181
|
+
data_accessor?: string | undefined;
|
|
4182
|
+
} | {
|
|
4183
|
+
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
4184
|
+
columns: number;
|
|
4185
|
+
} | {
|
|
4186
|
+
span: number;
|
|
4187
|
+
tooltips?: {
|
|
4188
|
+
content?: string | undefined;
|
|
4189
|
+
content_style?: Record<string, any> | undefined;
|
|
4190
|
+
trigger?: string | undefined;
|
|
4191
|
+
trigger_style?: Record<string, any> | undefined;
|
|
4192
|
+
}[] | undefined;
|
|
4193
|
+
} | {
|
|
4194
|
+
content?: string | undefined;
|
|
4195
|
+
} | {
|
|
4196
|
+
images?: {
|
|
4197
|
+
url: string;
|
|
4198
|
+
is_uploaded_asset?: boolean | undefined;
|
|
4199
|
+
}[] | undefined;
|
|
4200
|
+
placeholder_height?: string | undefined;
|
|
4201
|
+
include_all_images_in_pdf?: boolean | undefined;
|
|
4202
|
+
} | {
|
|
4203
|
+
asset_type: "external";
|
|
4204
|
+
external_url: string;
|
|
4205
|
+
type: "image" | "video";
|
|
4206
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4207
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
4208
|
+
poster_url?: string | undefined;
|
|
4209
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
4210
|
+
} | {
|
|
4211
|
+
asset_type: "pitcher_asset";
|
|
4212
|
+
file: {
|
|
4213
|
+
id: import('../../../../types/openapi').File["id"];
|
|
4214
|
+
name: import('../../../../types/openapi').File["name"];
|
|
4215
|
+
content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
4216
|
+
};
|
|
4217
|
+
type: "image" | "video";
|
|
4218
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4219
|
+
poster_url?: string | undefined;
|
|
4220
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
4221
|
+
} | {
|
|
4222
|
+
type: "app";
|
|
4223
|
+
app_name: string;
|
|
4224
|
+
src: string | null;
|
|
4225
|
+
height?: string | undefined;
|
|
4226
|
+
width?: string | undefined;
|
|
4227
|
+
full_screen_mode?: boolean | undefined;
|
|
4228
|
+
embed_locations?: EmbedLocation[] | undefined;
|
|
4229
|
+
headless_locations?: EmbedLocation[] | undefined;
|
|
4230
|
+
properties_by_embed_location?: {
|
|
4231
|
+
dsr?: {
|
|
4232
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4233
|
+
} | undefined;
|
|
4234
|
+
canvas?: {
|
|
4235
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4236
|
+
} | undefined;
|
|
4237
|
+
ui_app?: {
|
|
4238
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4239
|
+
} | undefined;
|
|
4240
|
+
admin_instance?: {
|
|
4241
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4242
|
+
} | undefined;
|
|
4243
|
+
overlay_app?: {
|
|
4244
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4245
|
+
} | undefined;
|
|
4246
|
+
canvas_section_execution?: {
|
|
4247
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4248
|
+
} | undefined;
|
|
4249
|
+
canvas_drawer?: {
|
|
4250
|
+
start_in_loading_mode?: boolean | undefined;
|
|
4251
|
+
} | undefined;
|
|
4252
|
+
} | undefined;
|
|
4253
|
+
file: {
|
|
4254
|
+
id: FileRetrieve["id"];
|
|
4255
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4256
|
+
name: FileRetrieve["name"];
|
|
4257
|
+
is_deleted?: boolean | undefined;
|
|
4258
|
+
expires_at?: string | null | undefined;
|
|
4259
|
+
content_url: FileRetrieve["content_url"];
|
|
4260
|
+
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
4261
|
+
content_extension: FileRetrieve["content_extension"];
|
|
4262
|
+
permissions?: {
|
|
4263
|
+
can_download?: boolean | undefined;
|
|
4264
|
+
can_share?: boolean | undefined;
|
|
4265
|
+
} | undefined;
|
|
4266
|
+
tags?: string[] | undefined;
|
|
4267
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
4268
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
4269
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
4270
|
+
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
4271
|
+
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
4272
|
+
} | null;
|
|
4273
|
+
settings?: Record<string, unknown> | undefined;
|
|
4274
|
+
} | {
|
|
4275
|
+
items: ({
|
|
4276
|
+
file: {
|
|
4277
|
+
id: FileRetrieve["id"];
|
|
4278
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4279
|
+
name: FileRetrieve["name"];
|
|
4280
|
+
is_deleted?: boolean | undefined;
|
|
4281
|
+
expires_at?: string | null | undefined;
|
|
4282
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
4283
|
+
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
4284
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
4285
|
+
permissions?: {
|
|
4286
|
+
can_download?: boolean | undefined;
|
|
4287
|
+
can_share?: boolean | undefined;
|
|
4288
|
+
} | undefined;
|
|
4289
|
+
tags?: string[] | undefined;
|
|
4290
|
+
};
|
|
4291
|
+
slide: {
|
|
4292
|
+
index: number;
|
|
4293
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
4294
|
+
};
|
|
4295
|
+
type: "slide";
|
|
4296
|
+
} | {
|
|
4297
|
+
file: {
|
|
4298
|
+
id: FileRetrieve["id"];
|
|
4299
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4300
|
+
name: FileRetrieve["name"];
|
|
4301
|
+
is_deleted?: boolean | undefined;
|
|
4302
|
+
expires_at?: string | null | undefined;
|
|
4303
|
+
content_url: FileRetrieve["content_url"];
|
|
4304
|
+
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
4305
|
+
content_extension: FileRetrieve["content_extension"];
|
|
4306
|
+
permissions?: {
|
|
4307
|
+
can_download?: boolean | undefined;
|
|
4308
|
+
can_share?: boolean | undefined;
|
|
4309
|
+
} | undefined;
|
|
4310
|
+
tags?: string[] | undefined;
|
|
4311
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
4312
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
4313
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
4314
|
+
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
4315
|
+
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
4316
|
+
};
|
|
4317
|
+
type: "file";
|
|
4318
|
+
})[];
|
|
4319
|
+
size?: "medium" | undefined;
|
|
4320
|
+
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
4321
|
+
data_accessor?: string | undefined;
|
|
4322
|
+
} | {
|
|
4323
|
+
sections: {
|
|
4324
|
+
id: string;
|
|
4325
|
+
style?: Record<string, any> | undefined;
|
|
4326
|
+
aspect_ratio?: ("contain" | "unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
4327
|
+
background_video_url?: string | undefined;
|
|
4328
|
+
}[];
|
|
4329
|
+
animation_in?: string | undefined;
|
|
4330
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
4331
|
+
selection_app_name?: string | undefined;
|
|
4332
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
4333
|
+
} | {
|
|
4334
|
+
sections: {
|
|
4335
|
+
id: string;
|
|
4336
|
+
file_id?: string | undefined;
|
|
4337
|
+
sequence?: number | undefined;
|
|
4338
|
+
component_id: string;
|
|
4339
|
+
page_index?: number | undefined;
|
|
4340
|
+
type: "section" | "file";
|
|
4341
|
+
}[];
|
|
4342
|
+
animation_in?: string | undefined;
|
|
4343
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
4344
|
+
selection_app_name?: string | undefined;
|
|
4345
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
4346
|
+
} | {
|
|
4347
|
+
html: string;
|
|
4348
|
+
} | {
|
|
4349
|
+
src: string | null;
|
|
4350
|
+
height?: string | undefined;
|
|
4351
|
+
width?: string | undefined;
|
|
4352
|
+
full_screen_mode?: boolean | undefined;
|
|
4353
|
+
add_session_context?: boolean | undefined;
|
|
4354
|
+
} | {
|
|
4355
|
+
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
4356
|
+
background_color?: string | undefined;
|
|
4357
|
+
canvas_anchor?: string | undefined;
|
|
4358
|
+
color?: string | undefined;
|
|
4359
|
+
display_text?: string | undefined;
|
|
4360
|
+
file?: {
|
|
4361
|
+
readonly id?: string | undefined;
|
|
4362
|
+
readonly global_id?: string | undefined;
|
|
4363
|
+
name?: string | undefined;
|
|
4364
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
4365
|
+
readonly size?: number | null | undefined;
|
|
4366
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
4367
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
4368
|
+
readonly content_extension?: string | null | undefined;
|
|
4369
|
+
readonly content_length?: number | null | undefined;
|
|
4370
|
+
readonly content_url?: string | null | undefined;
|
|
4371
|
+
readonly original_extension?: string | null | undefined;
|
|
4372
|
+
readonly original_url?: string | null | undefined;
|
|
4373
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
4374
|
+
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
4375
|
+
readonly zip_size?: number | null | undefined;
|
|
4376
|
+
readonly zip_url?: string | null | undefined;
|
|
4377
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
4378
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
4379
|
+
permissions?: {
|
|
4380
|
+
can_download?: boolean | undefined;
|
|
4381
|
+
can_share?: boolean | undefined;
|
|
4382
|
+
} | undefined;
|
|
4383
|
+
metadata?: Record<string, any> | undefined;
|
|
4384
|
+
app_metadata?: Record<string, any> | undefined;
|
|
4385
|
+
tags?: Array<string> | undefined;
|
|
4386
|
+
readonly published_at?: string | null | undefined;
|
|
4387
|
+
expires_at?: string | null | undefined;
|
|
4388
|
+
readonly instance_id?: string | undefined;
|
|
4389
|
+
folder_id?: string | undefined;
|
|
4390
|
+
readonly folder?: {
|
|
4391
|
+
readonly id: string;
|
|
4392
|
+
name: string;
|
|
4393
|
+
} | undefined;
|
|
4394
|
+
readonly shared_link?: {
|
|
4395
|
+
readonly url: string;
|
|
4396
|
+
short_url?: string | null | undefined;
|
|
4397
|
+
} | undefined;
|
|
4398
|
+
readonly owned_by?: {
|
|
4399
|
+
readonly id: number;
|
|
4400
|
+
readonly name: string;
|
|
4401
|
+
email?: string | undefined;
|
|
4402
|
+
} | undefined;
|
|
4403
|
+
readonly created_at?: string | undefined;
|
|
4404
|
+
readonly created_by?: {
|
|
4405
|
+
readonly id: number;
|
|
4406
|
+
readonly name: string;
|
|
4407
|
+
email?: string | undefined;
|
|
4408
|
+
} | undefined;
|
|
4409
|
+
readonly modified_at?: string | undefined;
|
|
4410
|
+
readonly modified_by?: {
|
|
4411
|
+
readonly id: number;
|
|
4412
|
+
readonly name: string;
|
|
4413
|
+
email?: string | undefined;
|
|
4414
|
+
} | undefined;
|
|
4415
|
+
page_index?: number | undefined;
|
|
4416
|
+
} | null | undefined;
|
|
4417
|
+
font_family?: string | undefined;
|
|
4418
|
+
font_size?: number | undefined;
|
|
4419
|
+
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
4420
|
+
page_index?: number | undefined;
|
|
4421
|
+
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
4422
|
+
target?: "_self" | "_blank" | undefined;
|
|
4423
|
+
url?: string | undefined;
|
|
4424
|
+
} | {
|
|
4425
|
+
aspect_ratio?: ("contain" | "unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
4426
|
+
background_video_url?: string | undefined;
|
|
4427
|
+
} | {
|
|
4428
|
+
events: {
|
|
4429
|
+
top_hint?: string | undefined;
|
|
4430
|
+
top_hint_style?: Record<string, any> | undefined;
|
|
4431
|
+
title?: string | undefined;
|
|
4432
|
+
title_style?: Record<string, any> | undefined;
|
|
4433
|
+
description?: string | undefined;
|
|
4434
|
+
description_style?: Record<string, any> | undefined;
|
|
4435
|
+
image_url?: string | undefined;
|
|
4436
|
+
image_style?: Record<string, any> | undefined;
|
|
4437
|
+
icon?: string | undefined;
|
|
4438
|
+
icon_style?: Record<string, any> | undefined;
|
|
4439
|
+
card_style?: Record<string, any> | undefined;
|
|
4440
|
+
}[];
|
|
4441
|
+
layout: "vertical" | "horizontal";
|
|
4442
|
+
} | {
|
|
4443
|
+
filters?: {
|
|
4444
|
+
property: string;
|
|
4445
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4446
|
+
value: string;
|
|
4447
|
+
}[] | undefined;
|
|
4448
|
+
layout: "column" | "row";
|
|
4449
|
+
page_size?: number | undefined;
|
|
4450
|
+
path: string;
|
|
4451
|
+
properties: {
|
|
4452
|
+
key: string;
|
|
4453
|
+
display_name?: string | undefined;
|
|
4454
|
+
sort: {
|
|
4455
|
+
direction?: "asc" | "desc" | undefined;
|
|
4456
|
+
default?: boolean | undefined;
|
|
4457
|
+
enabled: boolean;
|
|
4458
|
+
};
|
|
4459
|
+
group?: boolean | undefined;
|
|
4460
|
+
printable?: boolean | undefined;
|
|
4461
|
+
format?: {
|
|
4462
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4463
|
+
currency?: string | undefined;
|
|
4464
|
+
decimals?: number | undefined;
|
|
4465
|
+
thousandsSeparator?: boolean | undefined;
|
|
4466
|
+
dateFormat?: string | undefined;
|
|
4467
|
+
} | undefined;
|
|
4468
|
+
}[];
|
|
4469
|
+
theme?: {
|
|
4470
|
+
background_color?: string | null | undefined;
|
|
4471
|
+
group_header_color?: string | null | undefined;
|
|
4472
|
+
font_family?: string | undefined;
|
|
4473
|
+
} | undefined;
|
|
4474
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
4475
|
+
enable_row_striping?: boolean | undefined;
|
|
4476
|
+
striping_color?: string | null | undefined;
|
|
4477
|
+
striping_start_from_first?: boolean | undefined;
|
|
4478
|
+
} | {
|
|
4479
|
+
hierarchy: {
|
|
4480
|
+
type: "group" | "data";
|
|
4481
|
+
path: string;
|
|
4482
|
+
group_by_key?: string | undefined;
|
|
4483
|
+
}[];
|
|
4484
|
+
columns: {
|
|
4485
|
+
key: string;
|
|
4486
|
+
display_name?: string | undefined;
|
|
4487
|
+
sort: {
|
|
4488
|
+
direction?: "asc" | "desc" | undefined;
|
|
4489
|
+
default?: boolean | undefined;
|
|
4490
|
+
enabled: boolean;
|
|
4491
|
+
};
|
|
4492
|
+
group?: boolean | undefined;
|
|
4493
|
+
printable?: boolean | undefined;
|
|
4494
|
+
format?: {
|
|
4495
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4496
|
+
currency?: string | undefined;
|
|
4497
|
+
decimals?: number | undefined;
|
|
4498
|
+
thousandsSeparator?: boolean | undefined;
|
|
4499
|
+
dateFormat?: string | undefined;
|
|
4500
|
+
} | undefined;
|
|
4501
|
+
}[];
|
|
4502
|
+
header_path?: string | undefined;
|
|
4503
|
+
footer_path?: string | undefined;
|
|
4504
|
+
filters?: {
|
|
4505
|
+
property: string;
|
|
4506
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4507
|
+
value: string;
|
|
4508
|
+
}[] | undefined;
|
|
4509
|
+
theme?: {
|
|
4510
|
+
background_color?: string | null | undefined;
|
|
4511
|
+
group_header_color?: string | null | undefined;
|
|
4512
|
+
font_family?: string | undefined;
|
|
4513
|
+
} | undefined;
|
|
4514
|
+
enable_row_striping?: boolean | undefined;
|
|
4515
|
+
striping_color?: string | null | undefined;
|
|
4516
|
+
striping_start_from_first?: boolean | undefined;
|
|
4517
|
+
} | undefined;
|
|
4518
|
+
children?: /*elided*/ any[] | undefined;
|
|
4519
|
+
when_used_in_section?: {
|
|
4520
|
+
is_editable: boolean;
|
|
4521
|
+
is_removable: boolean;
|
|
4522
|
+
} | undefined;
|
|
4523
|
+
style?: Record<string, any> | undefined;
|
|
4524
|
+
tags?: string[] | undefined;
|
|
4525
|
+
theme_meta?: {
|
|
4526
|
+
bg_color_palette_index?: number | undefined;
|
|
4527
|
+
} | {
|
|
4528
|
+
dt_header_bg_palette_index?: number | undefined;
|
|
4529
|
+
dt_group_header_bg_palette_index?: number | undefined;
|
|
4530
|
+
bg_color_palette_index?: number | undefined;
|
|
4531
|
+
} | {
|
|
4532
|
+
is_theme_logo?: boolean | undefined;
|
|
4533
|
+
theme_asset_index?: number | undefined;
|
|
4534
|
+
bg_color_palette_index?: number | undefined;
|
|
4535
|
+
} | undefined;
|
|
4536
|
+
height?: string | undefined;
|
|
4537
|
+
is_sharebox_target?: boolean | undefined;
|
|
4538
|
+
} | null>;
|
|
4539
|
+
share: Ref<((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined, ((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined>;
|
|
4540
|
+
singletonsInCanvasMap: import('vue').ComputedRef<Record<ComponentTypes, boolean>>;
|
|
4541
|
+
startPage: Ref<number | undefined, number | undefined>;
|
|
4542
|
+
visibleCollectionPlayerRefs: Ref<Set<Ref<{
|
|
4543
|
+
isFullscreen: Ref<boolean>;
|
|
4544
|
+
handleKeyAction: ActionCallback;
|
|
4545
|
+
element: HTMLElement;
|
|
4546
|
+
} | null, {
|
|
4547
|
+
isFullscreen: Ref<boolean>;
|
|
4548
|
+
handleKeyAction: ActionCallback;
|
|
4549
|
+
element: HTMLElement;
|
|
4550
|
+
} | null>> & Omit<Set<Ref<{
|
|
4551
|
+
isFullscreen: Ref<boolean>;
|
|
4552
|
+
handleKeyAction: ActionCallback;
|
|
4553
|
+
element: HTMLElement;
|
|
4554
|
+
} | null, {
|
|
4555
|
+
isFullscreen: Ref<boolean>;
|
|
4556
|
+
handleKeyAction: ActionCallback;
|
|
4557
|
+
element: HTMLElement;
|
|
4558
|
+
} | null>>, keyof Set<any>>, Set<Ref<{
|
|
4559
|
+
isFullscreen: Ref<boolean>;
|
|
4560
|
+
handleKeyAction: ActionCallback;
|
|
4561
|
+
element: HTMLElement;
|
|
4562
|
+
} | null, {
|
|
4563
|
+
isFullscreen: Ref<boolean>;
|
|
4564
|
+
handleKeyAction: ActionCallback;
|
|
4565
|
+
element: HTMLElement;
|
|
4566
|
+
} | null>> | (Set<Ref<{
|
|
4567
|
+
isFullscreen: Ref<boolean>;
|
|
4568
|
+
handleKeyAction: ActionCallback;
|
|
4569
|
+
element: HTMLElement;
|
|
4570
|
+
} | null, {
|
|
4571
|
+
isFullscreen: Ref<boolean>;
|
|
4572
|
+
handleKeyAction: ActionCallback;
|
|
4573
|
+
element: HTMLElement;
|
|
4574
|
+
} | null>> & Omit<Set<Ref<{
|
|
4575
|
+
isFullscreen: Ref<boolean>;
|
|
4576
|
+
handleKeyAction: ActionCallback;
|
|
4577
|
+
element: HTMLElement;
|
|
4578
|
+
} | null, {
|
|
4579
|
+
isFullscreen: Ref<boolean>;
|
|
4580
|
+
handleKeyAction: ActionCallback;
|
|
4581
|
+
element: HTMLElement;
|
|
4582
|
+
} | null>>, keyof Set<any>>)>;
|
|
4583
|
+
builderCache: Ref<Record<string, any>, Record<string, any>>;
|
|
4584
|
+
writeablePitcherSettings: Ref<{
|
|
4585
|
+
auto_assignment_rules?: {
|
|
4586
|
+
connection_id: string;
|
|
4587
|
+
target_instance_id: string;
|
|
4588
|
+
groups?: string[] | undefined;
|
|
4589
|
+
}[] | undefined;
|
|
4590
|
+
canvas?: {
|
|
4591
|
+
use_linkable_in_catalogiq?: boolean | undefined;
|
|
4592
|
+
enable_v_trusted_js_in_html?: boolean | undefined;
|
|
4593
|
+
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4594
|
+
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4595
|
+
enable_wizard_preview_button?: boolean | undefined;
|
|
4596
|
+
locks_polling_interval?: number | undefined;
|
|
4597
|
+
shared_link?: {
|
|
4598
|
+
title?: string | undefined;
|
|
4599
|
+
email_disclaimer?: string | undefined;
|
|
4600
|
+
logo_url?: string | undefined;
|
|
4601
|
+
logo_style?: Record<string, any> | undefined;
|
|
4602
|
+
valid_until_options?: {
|
|
4603
|
+
label: string;
|
|
4604
|
+
value: number;
|
|
4605
|
+
}[] | undefined;
|
|
4606
|
+
disable_rep_changing_allow_download?: boolean | undefined;
|
|
4607
|
+
initial_allow_download?: boolean | undefined;
|
|
4608
|
+
} | undefined;
|
|
3437
4609
|
hide_page_break_in_toc?: boolean | undefined;
|
|
3438
4610
|
disable_display_index_in_toc?: boolean | undefined;
|
|
3439
4611
|
autohide_section_on_created?: {
|
|
@@ -3446,6 +4618,7 @@ export default function useCanvas(): {
|
|
|
3446
4618
|
Carousel: boolean;
|
|
3447
4619
|
CollectionPlayer: boolean;
|
|
3448
4620
|
ContentGrid: boolean;
|
|
4621
|
+
CustomDataTable: boolean;
|
|
3449
4622
|
DataCharts: boolean;
|
|
3450
4623
|
DynamicDataTable: boolean;
|
|
3451
4624
|
Embeddable: boolean;
|
|
@@ -3457,6 +4630,7 @@ export default function useCanvas(): {
|
|
|
3457
4630
|
PageBreak: boolean;
|
|
3458
4631
|
Scribble: boolean;
|
|
3459
4632
|
SectionList: boolean;
|
|
4633
|
+
ContentList: boolean;
|
|
3460
4634
|
Text: boolean;
|
|
3461
4635
|
Timeline: boolean;
|
|
3462
4636
|
apps?: Record<string, boolean> | undefined;
|
|
@@ -3482,6 +4656,10 @@ export default function useCanvas(): {
|
|
|
3482
4656
|
admin?: boolean | undefined;
|
|
3483
4657
|
rep?: boolean | undefined;
|
|
3484
4658
|
};
|
|
4659
|
+
CustomDataTable: {
|
|
4660
|
+
admin?: boolean | undefined;
|
|
4661
|
+
rep?: boolean | undefined;
|
|
4662
|
+
};
|
|
3485
4663
|
DataCharts: {
|
|
3486
4664
|
admin?: boolean | undefined;
|
|
3487
4665
|
rep?: boolean | undefined;
|
|
@@ -3526,6 +4704,10 @@ export default function useCanvas(): {
|
|
|
3526
4704
|
admin?: boolean | undefined;
|
|
3527
4705
|
rep?: boolean | undefined;
|
|
3528
4706
|
};
|
|
4707
|
+
ContentList: {
|
|
4708
|
+
admin?: boolean | undefined;
|
|
4709
|
+
rep?: boolean | undefined;
|
|
4710
|
+
};
|
|
3529
4711
|
Text: {
|
|
3530
4712
|
admin?: boolean | undefined;
|
|
3531
4713
|
rep?: boolean | undefined;
|
|
@@ -3547,20 +4729,29 @@ export default function useCanvas(): {
|
|
|
3547
4729
|
enable_collection_player_component?: boolean | undefined;
|
|
3548
4730
|
autoselect_selected_canvas_account?: boolean | undefined;
|
|
3549
4731
|
require_account_on_canvas_creation?: boolean | undefined;
|
|
4732
|
+
enable_canvases_account_filtering?: boolean | undefined;
|
|
3550
4733
|
pptx_slide_image_width?: number | undefined;
|
|
3551
|
-
enable_download_in_presentation_mode?: boolean | undefined;
|
|
3552
4734
|
correlation_id_cleanup_delay?: number | undefined;
|
|
3553
4735
|
async_download_expiration_hours?: number | undefined;
|
|
3554
4736
|
async_download_api_url?: string | undefined;
|
|
3555
4737
|
async_download_callback_url?: string | undefined;
|
|
4738
|
+
section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
4739
|
+
disable_rep_canvas_creation?: boolean | undefined;
|
|
4740
|
+
disable_shared_link_creation?: boolean | undefined;
|
|
4741
|
+
hide_meeting_bar?: boolean | undefined;
|
|
3556
4742
|
} | undefined;
|
|
4743
|
+
allow_revoke_shared_link?: boolean | undefined;
|
|
4744
|
+
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
4745
|
+
enable_admin_asset_manager?: boolean | undefined;
|
|
3557
4746
|
api_client_timeout?: number | undefined;
|
|
3558
4747
|
enable_monaco_html_editor?: boolean | undefined;
|
|
3559
4748
|
skip_metadata_keys_in_list_item?: string[] | undefined;
|
|
3560
4749
|
enable_multi_language?: boolean | undefined;
|
|
3561
4750
|
enable_multipeer_connectivity?: boolean | undefined;
|
|
4751
|
+
enable_syncbox?: boolean | undefined;
|
|
3562
4752
|
canvases_route_order?: number | undefined;
|
|
3563
4753
|
content_browser_route_order?: number | undefined;
|
|
4754
|
+
assets_route_order?: number | undefined;
|
|
3564
4755
|
impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
3565
4756
|
translation_overrides?: {
|
|
3566
4757
|
en?: Record<string, string> | undefined;
|
|
@@ -3570,10 +4761,18 @@ export default function useCanvas(): {
|
|
|
3570
4761
|
el?: Record<string, string> | undefined;
|
|
3571
4762
|
fr?: Record<string, string> | undefined;
|
|
3572
4763
|
es?: Record<string, string> | undefined;
|
|
4764
|
+
th?: Record<string, string> | undefined;
|
|
4765
|
+
ja?: Record<string, string> | undefined;
|
|
4766
|
+
zh?: Record<string, string> | undefined;
|
|
4767
|
+
it?: Record<string, string> | undefined;
|
|
4768
|
+
pt?: Record<string, string> | undefined;
|
|
4769
|
+
"pt-br"?: Record<string, string> | undefined;
|
|
4770
|
+
nl?: Record<string, string> | undefined;
|
|
3573
4771
|
} | undefined;
|
|
3574
4772
|
file_annotations_mode?: "admin" | "personal" | undefined;
|
|
3575
4773
|
minimum_event_duration_in_call?: number | undefined;
|
|
3576
4774
|
enable_content_rating_in_call?: boolean | undefined;
|
|
4775
|
+
enable_speaker_notes?: boolean | undefined;
|
|
3577
4776
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
3578
4777
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
3579
4778
|
metadata_highlight_properties?: {
|
|
@@ -3630,22 +4829,45 @@ export default function useCanvas(): {
|
|
|
3630
4829
|
use_collection_player_as_default_file_viewer_for_original_extensions?: string[] | undefined;
|
|
3631
4830
|
enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
3632
4831
|
generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
4832
|
+
convert_pptx_to_html?: boolean | undefined;
|
|
4833
|
+
convert_pptx_to_html_default_value?: boolean | undefined;
|
|
3633
4834
|
enable_search_with_suggestions?: boolean | undefined;
|
|
3634
4835
|
enable_search_filter_with_suggestions?: boolean | undefined;
|
|
3635
4836
|
enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
3636
4837
|
enable_thumbnails_for_templates_and_blocks?: boolean | undefined;
|
|
3637
4838
|
default_pdf_page_dimensions?: {
|
|
3638
|
-
width?: number | undefined;
|
|
3639
|
-
height?: number | undefined;
|
|
3640
|
-
|
|
4839
|
+
width?: number | string | undefined;
|
|
4840
|
+
height?: number | string | undefined;
|
|
4841
|
+
print_scale?: number | undefined;
|
|
3641
4842
|
} | undefined;
|
|
3642
4843
|
disable_browser_search_context?: boolean | undefined;
|
|
3643
4844
|
location_prompt_type?: "warning" | "block" | undefined;
|
|
3644
4845
|
location_prompt_message?: string | undefined;
|
|
3645
4846
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
3646
4847
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
4848
|
+
enable_folder_description_via_name?: boolean | undefined;
|
|
4849
|
+
enable_download_original_file_in_impact?: boolean | undefined;
|
|
4850
|
+
alternative_canvas_fullscreen?: boolean | undefined;
|
|
4851
|
+
enable_presentation_annotations?: boolean | undefined;
|
|
4852
|
+
max_files_limit?: number | undefined;
|
|
4853
|
+
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4854
|
+
disable_postcall?: boolean | undefined;
|
|
4855
|
+
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
4856
|
+
slotty_ui_route_config?: {
|
|
4857
|
+
name: string;
|
|
4858
|
+
enabled: boolean;
|
|
4859
|
+
type: "base" | "app";
|
|
4860
|
+
}[] | undefined;
|
|
4861
|
+
sfdc?: {
|
|
4862
|
+
use_static_ip_proxy?: boolean | undefined;
|
|
4863
|
+
} | undefined;
|
|
4864
|
+
custom_event?: string | undefined;
|
|
3647
4865
|
enable_recents?: boolean | undefined;
|
|
3648
4866
|
enable_favorites?: boolean | undefined;
|
|
4867
|
+
enable_sync_file_filtering?: boolean | undefined;
|
|
4868
|
+
time_format?: string | undefined;
|
|
4869
|
+
date_format?: string | undefined;
|
|
4870
|
+
is_file_expiration_mandatory?: boolean | undefined;
|
|
3649
4871
|
}, (OrganizationSettings & {
|
|
3650
4872
|
canvas?: {
|
|
3651
4873
|
hide_page_break_in_toc?: boolean;
|
|
@@ -3668,16 +4890,26 @@ export default function useCanvas(): {
|
|
|
3668
4890
|
enable_collection_player_component?: boolean;
|
|
3669
4891
|
autoselect_selected_canvas_account?: boolean;
|
|
3670
4892
|
require_account_on_canvas_creation?: boolean;
|
|
4893
|
+
enable_canvases_account_filtering?: boolean;
|
|
3671
4894
|
pptx_slide_image_width?: number;
|
|
3672
|
-
enable_download_in_presentation_mode?: boolean;
|
|
3673
4895
|
correlation_id_cleanup_delay?: number;
|
|
3674
4896
|
async_download_expiration_hours?: number;
|
|
3675
4897
|
async_download_api_url?: string;
|
|
3676
4898
|
async_download_callback_url?: string;
|
|
4899
|
+
section_list_mode?: "pagination" | "collapsibles";
|
|
4900
|
+
disable_rep_canvas_creation?: boolean;
|
|
4901
|
+
disable_shared_link_creation?: boolean;
|
|
4902
|
+
hide_meeting_bar?: boolean;
|
|
3677
4903
|
};
|
|
4904
|
+
custom_event?: string;
|
|
3678
4905
|
enable_recents?: boolean;
|
|
3679
4906
|
enable_favorites?: boolean;
|
|
3680
4907
|
enable_multipeer_connectivity?: boolean;
|
|
4908
|
+
enable_syncbox?: boolean;
|
|
4909
|
+
enable_sync_file_filtering?: boolean;
|
|
4910
|
+
time_format?: string;
|
|
4911
|
+
date_format?: string;
|
|
4912
|
+
is_file_expiration_mandatory?: boolean;
|
|
3681
4913
|
ios?: InstanceSettings;
|
|
3682
4914
|
}) | {
|
|
3683
4915
|
auto_assignment_rules?: {
|
|
@@ -3686,12 +4918,23 @@ export default function useCanvas(): {
|
|
|
3686
4918
|
groups?: string[] | undefined;
|
|
3687
4919
|
}[] | undefined;
|
|
3688
4920
|
canvas?: {
|
|
4921
|
+
use_linkable_in_catalogiq?: boolean | undefined;
|
|
4922
|
+
enable_v_trusted_js_in_html?: boolean | undefined;
|
|
4923
|
+
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4924
|
+
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4925
|
+
enable_wizard_preview_button?: boolean | undefined;
|
|
3689
4926
|
locks_polling_interval?: number | undefined;
|
|
3690
4927
|
shared_link?: {
|
|
3691
4928
|
title?: string | undefined;
|
|
3692
4929
|
email_disclaimer?: string | undefined;
|
|
3693
4930
|
logo_url?: string | undefined;
|
|
3694
4931
|
logo_style?: Record<string, any> | undefined;
|
|
4932
|
+
valid_until_options?: {
|
|
4933
|
+
label: string;
|
|
4934
|
+
value: number;
|
|
4935
|
+
}[] | undefined;
|
|
4936
|
+
disable_rep_changing_allow_download?: boolean | undefined;
|
|
4937
|
+
initial_allow_download?: boolean | undefined;
|
|
3695
4938
|
} | undefined;
|
|
3696
4939
|
hide_page_break_in_toc?: boolean | undefined;
|
|
3697
4940
|
disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -3705,6 +4948,7 @@ export default function useCanvas(): {
|
|
|
3705
4948
|
Carousel: boolean;
|
|
3706
4949
|
CollectionPlayer: boolean;
|
|
3707
4950
|
ContentGrid: boolean;
|
|
4951
|
+
CustomDataTable: boolean;
|
|
3708
4952
|
DataCharts: boolean;
|
|
3709
4953
|
DynamicDataTable: boolean;
|
|
3710
4954
|
Embeddable: boolean;
|
|
@@ -3716,6 +4960,7 @@ export default function useCanvas(): {
|
|
|
3716
4960
|
PageBreak: boolean;
|
|
3717
4961
|
Scribble: boolean;
|
|
3718
4962
|
SectionList: boolean;
|
|
4963
|
+
ContentList: boolean;
|
|
3719
4964
|
Text: boolean;
|
|
3720
4965
|
Timeline: boolean;
|
|
3721
4966
|
apps?: Record<string, boolean> | undefined;
|
|
@@ -3741,6 +4986,10 @@ export default function useCanvas(): {
|
|
|
3741
4986
|
admin?: boolean | undefined;
|
|
3742
4987
|
rep?: boolean | undefined;
|
|
3743
4988
|
};
|
|
4989
|
+
CustomDataTable: {
|
|
4990
|
+
admin?: boolean | undefined;
|
|
4991
|
+
rep?: boolean | undefined;
|
|
4992
|
+
};
|
|
3744
4993
|
DataCharts: {
|
|
3745
4994
|
admin?: boolean | undefined;
|
|
3746
4995
|
rep?: boolean | undefined;
|
|
@@ -3785,6 +5034,10 @@ export default function useCanvas(): {
|
|
|
3785
5034
|
admin?: boolean | undefined;
|
|
3786
5035
|
rep?: boolean | undefined;
|
|
3787
5036
|
};
|
|
5037
|
+
ContentList: {
|
|
5038
|
+
admin?: boolean | undefined;
|
|
5039
|
+
rep?: boolean | undefined;
|
|
5040
|
+
};
|
|
3788
5041
|
Text: {
|
|
3789
5042
|
admin?: boolean | undefined;
|
|
3790
5043
|
rep?: boolean | undefined;
|
|
@@ -3806,20 +5059,29 @@ export default function useCanvas(): {
|
|
|
3806
5059
|
enable_collection_player_component?: boolean | undefined;
|
|
3807
5060
|
autoselect_selected_canvas_account?: boolean | undefined;
|
|
3808
5061
|
require_account_on_canvas_creation?: boolean | undefined;
|
|
5062
|
+
enable_canvases_account_filtering?: boolean | undefined;
|
|
3809
5063
|
pptx_slide_image_width?: number | undefined;
|
|
3810
|
-
enable_download_in_presentation_mode?: boolean | undefined;
|
|
3811
5064
|
correlation_id_cleanup_delay?: number | undefined;
|
|
3812
5065
|
async_download_expiration_hours?: number | undefined;
|
|
3813
5066
|
async_download_api_url?: string | undefined;
|
|
3814
5067
|
async_download_callback_url?: string | undefined;
|
|
5068
|
+
section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
5069
|
+
disable_rep_canvas_creation?: boolean | undefined;
|
|
5070
|
+
disable_shared_link_creation?: boolean | undefined;
|
|
5071
|
+
hide_meeting_bar?: boolean | undefined;
|
|
3815
5072
|
} | undefined;
|
|
5073
|
+
allow_revoke_shared_link?: boolean | undefined;
|
|
5074
|
+
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
5075
|
+
enable_admin_asset_manager?: boolean | undefined;
|
|
3816
5076
|
api_client_timeout?: number | undefined;
|
|
3817
5077
|
enable_monaco_html_editor?: boolean | undefined;
|
|
3818
5078
|
skip_metadata_keys_in_list_item?: string[] | undefined;
|
|
3819
5079
|
enable_multi_language?: boolean | undefined;
|
|
3820
5080
|
enable_multipeer_connectivity?: boolean | undefined;
|
|
5081
|
+
enable_syncbox?: boolean | undefined;
|
|
3821
5082
|
canvases_route_order?: number | undefined;
|
|
3822
5083
|
content_browser_route_order?: number | undefined;
|
|
5084
|
+
assets_route_order?: number | undefined;
|
|
3823
5085
|
impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
3824
5086
|
translation_overrides?: {
|
|
3825
5087
|
en?: Record<string, string> | undefined;
|
|
@@ -3829,10 +5091,18 @@ export default function useCanvas(): {
|
|
|
3829
5091
|
el?: Record<string, string> | undefined;
|
|
3830
5092
|
fr?: Record<string, string> | undefined;
|
|
3831
5093
|
es?: Record<string, string> | undefined;
|
|
5094
|
+
th?: Record<string, string> | undefined;
|
|
5095
|
+
ja?: Record<string, string> | undefined;
|
|
5096
|
+
zh?: Record<string, string> | undefined;
|
|
5097
|
+
it?: Record<string, string> | undefined;
|
|
5098
|
+
pt?: Record<string, string> | undefined;
|
|
5099
|
+
"pt-br"?: Record<string, string> | undefined;
|
|
5100
|
+
nl?: Record<string, string> | undefined;
|
|
3832
5101
|
} | undefined;
|
|
3833
5102
|
file_annotations_mode?: "admin" | "personal" | undefined;
|
|
3834
5103
|
minimum_event_duration_in_call?: number | undefined;
|
|
3835
5104
|
enable_content_rating_in_call?: boolean | undefined;
|
|
5105
|
+
enable_speaker_notes?: boolean | undefined;
|
|
3836
5106
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
3837
5107
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
3838
5108
|
metadata_highlight_properties?: {
|
|
@@ -3889,22 +5159,45 @@ export default function useCanvas(): {
|
|
|
3889
5159
|
use_collection_player_as_default_file_viewer_for_original_extensions?: string[] | undefined;
|
|
3890
5160
|
enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
3891
5161
|
generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5162
|
+
convert_pptx_to_html?: boolean | undefined;
|
|
5163
|
+
convert_pptx_to_html_default_value?: boolean | undefined;
|
|
3892
5164
|
enable_search_with_suggestions?: boolean | undefined;
|
|
3893
5165
|
enable_search_filter_with_suggestions?: boolean | undefined;
|
|
3894
5166
|
enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
3895
5167
|
enable_thumbnails_for_templates_and_blocks?: boolean | undefined;
|
|
3896
5168
|
default_pdf_page_dimensions?: {
|
|
3897
|
-
width?: number | undefined;
|
|
3898
|
-
height?: number | undefined;
|
|
3899
|
-
|
|
5169
|
+
width?: number | string | undefined;
|
|
5170
|
+
height?: number | string | undefined;
|
|
5171
|
+
print_scale?: number | undefined;
|
|
3900
5172
|
} | undefined;
|
|
3901
5173
|
disable_browser_search_context?: boolean | undefined;
|
|
3902
5174
|
location_prompt_type?: "warning" | "block" | undefined;
|
|
3903
5175
|
location_prompt_message?: string | undefined;
|
|
3904
5176
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
3905
5177
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
5178
|
+
enable_folder_description_via_name?: boolean | undefined;
|
|
5179
|
+
enable_download_original_file_in_impact?: boolean | undefined;
|
|
5180
|
+
alternative_canvas_fullscreen?: boolean | undefined;
|
|
5181
|
+
enable_presentation_annotations?: boolean | undefined;
|
|
5182
|
+
max_files_limit?: number | undefined;
|
|
5183
|
+
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5184
|
+
disable_postcall?: boolean | undefined;
|
|
5185
|
+
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5186
|
+
slotty_ui_route_config?: {
|
|
5187
|
+
name: string;
|
|
5188
|
+
enabled: boolean;
|
|
5189
|
+
type: "base" | "app";
|
|
5190
|
+
}[] | undefined;
|
|
5191
|
+
sfdc?: {
|
|
5192
|
+
use_static_ip_proxy?: boolean | undefined;
|
|
5193
|
+
} | undefined;
|
|
5194
|
+
custom_event?: string | undefined;
|
|
3906
5195
|
enable_recents?: boolean | undefined;
|
|
3907
5196
|
enable_favorites?: boolean | undefined;
|
|
5197
|
+
enable_sync_file_filtering?: boolean | undefined;
|
|
5198
|
+
time_format?: string | undefined;
|
|
5199
|
+
date_format?: string | undefined;
|
|
5200
|
+
is_file_expiration_mandatory?: boolean | undefined;
|
|
3908
5201
|
}>;
|
|
3909
5202
|
pitcherSettings: Readonly<Ref<{
|
|
3910
5203
|
readonly auto_assignment_rules?: readonly {
|
|
@@ -3913,6 +5206,11 @@ export default function useCanvas(): {
|
|
|
3913
5206
|
readonly groups?: readonly string[] | undefined;
|
|
3914
5207
|
}[] | undefined;
|
|
3915
5208
|
readonly canvas?: {
|
|
5209
|
+
readonly use_linkable_in_catalogiq?: boolean | undefined;
|
|
5210
|
+
readonly enable_v_trusted_js_in_html?: boolean | undefined;
|
|
5211
|
+
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
5212
|
+
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
5213
|
+
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
3916
5214
|
readonly locks_polling_interval?: number | undefined;
|
|
3917
5215
|
readonly shared_link?: {
|
|
3918
5216
|
readonly title?: string | undefined;
|
|
@@ -3921,6 +5219,12 @@ export default function useCanvas(): {
|
|
|
3921
5219
|
readonly logo_style?: {
|
|
3922
5220
|
readonly [x: string]: any;
|
|
3923
5221
|
} | undefined;
|
|
5222
|
+
readonly valid_until_options?: readonly {
|
|
5223
|
+
readonly label: string;
|
|
5224
|
+
readonly value: number;
|
|
5225
|
+
}[] | undefined;
|
|
5226
|
+
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
5227
|
+
readonly initial_allow_download?: boolean | undefined;
|
|
3924
5228
|
} | undefined;
|
|
3925
5229
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
3926
5230
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -3934,6 +5238,7 @@ export default function useCanvas(): {
|
|
|
3934
5238
|
readonly Carousel: boolean;
|
|
3935
5239
|
readonly CollectionPlayer: boolean;
|
|
3936
5240
|
readonly ContentGrid: boolean;
|
|
5241
|
+
readonly CustomDataTable: boolean;
|
|
3937
5242
|
readonly DataCharts: boolean;
|
|
3938
5243
|
readonly DynamicDataTable: boolean;
|
|
3939
5244
|
readonly Embeddable: boolean;
|
|
@@ -3945,6 +5250,7 @@ export default function useCanvas(): {
|
|
|
3945
5250
|
readonly PageBreak: boolean;
|
|
3946
5251
|
readonly Scribble: boolean;
|
|
3947
5252
|
readonly SectionList: boolean;
|
|
5253
|
+
readonly ContentList: boolean;
|
|
3948
5254
|
readonly Text: boolean;
|
|
3949
5255
|
readonly Timeline: boolean;
|
|
3950
5256
|
readonly apps?: {
|
|
@@ -3972,6 +5278,10 @@ export default function useCanvas(): {
|
|
|
3972
5278
|
readonly admin?: boolean | undefined;
|
|
3973
5279
|
readonly rep?: boolean | undefined;
|
|
3974
5280
|
};
|
|
5281
|
+
readonly CustomDataTable: {
|
|
5282
|
+
readonly admin?: boolean | undefined;
|
|
5283
|
+
readonly rep?: boolean | undefined;
|
|
5284
|
+
};
|
|
3975
5285
|
readonly DataCharts: {
|
|
3976
5286
|
readonly admin?: boolean | undefined;
|
|
3977
5287
|
readonly rep?: boolean | undefined;
|
|
@@ -4016,6 +5326,10 @@ export default function useCanvas(): {
|
|
|
4016
5326
|
readonly admin?: boolean | undefined;
|
|
4017
5327
|
readonly rep?: boolean | undefined;
|
|
4018
5328
|
};
|
|
5329
|
+
readonly ContentList: {
|
|
5330
|
+
readonly admin?: boolean | undefined;
|
|
5331
|
+
readonly rep?: boolean | undefined;
|
|
5332
|
+
};
|
|
4019
5333
|
readonly Text: {
|
|
4020
5334
|
readonly admin?: boolean | undefined;
|
|
4021
5335
|
readonly rep?: boolean | undefined;
|
|
@@ -4039,20 +5353,29 @@ export default function useCanvas(): {
|
|
|
4039
5353
|
readonly enable_collection_player_component?: boolean | undefined;
|
|
4040
5354
|
readonly autoselect_selected_canvas_account?: boolean | undefined;
|
|
4041
5355
|
readonly require_account_on_canvas_creation?: boolean | undefined;
|
|
5356
|
+
readonly enable_canvases_account_filtering?: boolean | undefined;
|
|
4042
5357
|
readonly pptx_slide_image_width?: number | undefined;
|
|
4043
|
-
readonly enable_download_in_presentation_mode?: boolean | undefined;
|
|
4044
5358
|
readonly correlation_id_cleanup_delay?: number | undefined;
|
|
4045
5359
|
readonly async_download_expiration_hours?: number | undefined;
|
|
4046
5360
|
readonly async_download_api_url?: string | undefined;
|
|
4047
5361
|
readonly async_download_callback_url?: string | undefined;
|
|
5362
|
+
readonly section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
5363
|
+
readonly disable_rep_canvas_creation?: boolean | undefined;
|
|
5364
|
+
readonly disable_shared_link_creation?: boolean | undefined;
|
|
5365
|
+
readonly hide_meeting_bar?: boolean | undefined;
|
|
4048
5366
|
} | undefined;
|
|
5367
|
+
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
5368
|
+
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
5369
|
+
readonly enable_admin_asset_manager?: boolean | undefined;
|
|
4049
5370
|
readonly api_client_timeout?: number | undefined;
|
|
4050
5371
|
readonly enable_monaco_html_editor?: boolean | undefined;
|
|
4051
5372
|
readonly skip_metadata_keys_in_list_item?: readonly string[] | undefined;
|
|
4052
5373
|
readonly enable_multi_language?: boolean | undefined;
|
|
4053
5374
|
readonly enable_multipeer_connectivity?: boolean | undefined;
|
|
5375
|
+
readonly enable_syncbox?: boolean | undefined;
|
|
4054
5376
|
readonly canvases_route_order?: number | undefined;
|
|
4055
5377
|
readonly content_browser_route_order?: number | undefined;
|
|
5378
|
+
readonly assets_route_order?: number | undefined;
|
|
4056
5379
|
readonly impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
4057
5380
|
readonly translation_overrides?: {
|
|
4058
5381
|
readonly en?: {
|
|
@@ -4076,10 +5399,32 @@ export default function useCanvas(): {
|
|
|
4076
5399
|
readonly es?: {
|
|
4077
5400
|
readonly [x: string]: string;
|
|
4078
5401
|
} | undefined;
|
|
5402
|
+
readonly th?: {
|
|
5403
|
+
readonly [x: string]: string;
|
|
5404
|
+
} | undefined;
|
|
5405
|
+
readonly ja?: {
|
|
5406
|
+
readonly [x: string]: string;
|
|
5407
|
+
} | undefined;
|
|
5408
|
+
readonly zh?: {
|
|
5409
|
+
readonly [x: string]: string;
|
|
5410
|
+
} | undefined;
|
|
5411
|
+
readonly it?: {
|
|
5412
|
+
readonly [x: string]: string;
|
|
5413
|
+
} | undefined;
|
|
5414
|
+
readonly pt?: {
|
|
5415
|
+
readonly [x: string]: string;
|
|
5416
|
+
} | undefined;
|
|
5417
|
+
readonly "pt-br"?: {
|
|
5418
|
+
readonly [x: string]: string;
|
|
5419
|
+
} | undefined;
|
|
5420
|
+
readonly nl?: {
|
|
5421
|
+
readonly [x: string]: string;
|
|
5422
|
+
} | undefined;
|
|
4079
5423
|
} | undefined;
|
|
4080
5424
|
readonly file_annotations_mode?: "admin" | "personal" | undefined;
|
|
4081
5425
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
4082
5426
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
5427
|
+
readonly enable_speaker_notes?: boolean | undefined;
|
|
4083
5428
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
4084
5429
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
4085
5430
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -4136,22 +5481,45 @@ export default function useCanvas(): {
|
|
|
4136
5481
|
readonly use_collection_player_as_default_file_viewer_for_original_extensions?: readonly string[] | undefined;
|
|
4137
5482
|
readonly enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
4138
5483
|
readonly generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5484
|
+
readonly convert_pptx_to_html?: boolean | undefined;
|
|
5485
|
+
readonly convert_pptx_to_html_default_value?: boolean | undefined;
|
|
4139
5486
|
readonly enable_search_with_suggestions?: boolean | undefined;
|
|
4140
5487
|
readonly enable_search_filter_with_suggestions?: boolean | undefined;
|
|
4141
5488
|
readonly enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
4142
5489
|
readonly enable_thumbnails_for_templates_and_blocks?: boolean | undefined;
|
|
4143
5490
|
readonly default_pdf_page_dimensions?: {
|
|
4144
|
-
readonly width?: number | undefined;
|
|
4145
|
-
readonly height?: number | undefined;
|
|
4146
|
-
readonly
|
|
5491
|
+
readonly width?: number | string | undefined;
|
|
5492
|
+
readonly height?: number | string | undefined;
|
|
5493
|
+
readonly print_scale?: number | undefined;
|
|
4147
5494
|
} | undefined;
|
|
4148
5495
|
readonly disable_browser_search_context?: boolean | undefined;
|
|
4149
5496
|
readonly location_prompt_type?: "warning" | "block" | undefined;
|
|
4150
5497
|
readonly location_prompt_message?: string | undefined;
|
|
4151
5498
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
4152
5499
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
5500
|
+
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
5501
|
+
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
5502
|
+
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
5503
|
+
readonly enable_presentation_annotations?: boolean | undefined;
|
|
5504
|
+
readonly max_files_limit?: number | undefined;
|
|
5505
|
+
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5506
|
+
readonly disable_postcall?: boolean | undefined;
|
|
5507
|
+
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5508
|
+
readonly slotty_ui_route_config?: readonly {
|
|
5509
|
+
readonly name: string;
|
|
5510
|
+
readonly enabled: boolean;
|
|
5511
|
+
readonly type: "base" | "app";
|
|
5512
|
+
}[] | undefined;
|
|
5513
|
+
readonly sfdc?: {
|
|
5514
|
+
readonly use_static_ip_proxy?: boolean | undefined;
|
|
5515
|
+
} | undefined;
|
|
5516
|
+
readonly custom_event?: string | undefined;
|
|
4153
5517
|
readonly enable_recents?: boolean | undefined;
|
|
4154
5518
|
readonly enable_favorites?: boolean | undefined;
|
|
5519
|
+
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5520
|
+
readonly time_format?: string | undefined;
|
|
5521
|
+
readonly date_format?: string | undefined;
|
|
5522
|
+
readonly is_file_expiration_mandatory?: boolean | undefined;
|
|
4155
5523
|
}, {
|
|
4156
5524
|
readonly auto_assignment_rules?: readonly {
|
|
4157
5525
|
readonly connection_id: string;
|
|
@@ -4159,6 +5527,11 @@ export default function useCanvas(): {
|
|
|
4159
5527
|
readonly groups?: readonly string[] | undefined;
|
|
4160
5528
|
}[] | undefined;
|
|
4161
5529
|
readonly canvas?: {
|
|
5530
|
+
readonly use_linkable_in_catalogiq?: boolean | undefined;
|
|
5531
|
+
readonly enable_v_trusted_js_in_html?: boolean | undefined;
|
|
5532
|
+
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
5533
|
+
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
5534
|
+
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
4162
5535
|
readonly locks_polling_interval?: number | undefined;
|
|
4163
5536
|
readonly shared_link?: {
|
|
4164
5537
|
readonly title?: string | undefined;
|
|
@@ -4167,6 +5540,12 @@ export default function useCanvas(): {
|
|
|
4167
5540
|
readonly logo_style?: {
|
|
4168
5541
|
readonly [x: string]: any;
|
|
4169
5542
|
} | undefined;
|
|
5543
|
+
readonly valid_until_options?: readonly {
|
|
5544
|
+
readonly label: string;
|
|
5545
|
+
readonly value: number;
|
|
5546
|
+
}[] | undefined;
|
|
5547
|
+
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
5548
|
+
readonly initial_allow_download?: boolean | undefined;
|
|
4170
5549
|
} | undefined;
|
|
4171
5550
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
4172
5551
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -4180,6 +5559,7 @@ export default function useCanvas(): {
|
|
|
4180
5559
|
readonly Carousel: boolean;
|
|
4181
5560
|
readonly CollectionPlayer: boolean;
|
|
4182
5561
|
readonly ContentGrid: boolean;
|
|
5562
|
+
readonly CustomDataTable: boolean;
|
|
4183
5563
|
readonly DataCharts: boolean;
|
|
4184
5564
|
readonly DynamicDataTable: boolean;
|
|
4185
5565
|
readonly Embeddable: boolean;
|
|
@@ -4191,6 +5571,7 @@ export default function useCanvas(): {
|
|
|
4191
5571
|
readonly PageBreak: boolean;
|
|
4192
5572
|
readonly Scribble: boolean;
|
|
4193
5573
|
readonly SectionList: boolean;
|
|
5574
|
+
readonly ContentList: boolean;
|
|
4194
5575
|
readonly Text: boolean;
|
|
4195
5576
|
readonly Timeline: boolean;
|
|
4196
5577
|
readonly apps?: {
|
|
@@ -4218,6 +5599,10 @@ export default function useCanvas(): {
|
|
|
4218
5599
|
readonly admin?: boolean | undefined;
|
|
4219
5600
|
readonly rep?: boolean | undefined;
|
|
4220
5601
|
};
|
|
5602
|
+
readonly CustomDataTable: {
|
|
5603
|
+
readonly admin?: boolean | undefined;
|
|
5604
|
+
readonly rep?: boolean | undefined;
|
|
5605
|
+
};
|
|
4221
5606
|
readonly DataCharts: {
|
|
4222
5607
|
readonly admin?: boolean | undefined;
|
|
4223
5608
|
readonly rep?: boolean | undefined;
|
|
@@ -4262,6 +5647,10 @@ export default function useCanvas(): {
|
|
|
4262
5647
|
readonly admin?: boolean | undefined;
|
|
4263
5648
|
readonly rep?: boolean | undefined;
|
|
4264
5649
|
};
|
|
5650
|
+
readonly ContentList: {
|
|
5651
|
+
readonly admin?: boolean | undefined;
|
|
5652
|
+
readonly rep?: boolean | undefined;
|
|
5653
|
+
};
|
|
4265
5654
|
readonly Text: {
|
|
4266
5655
|
readonly admin?: boolean | undefined;
|
|
4267
5656
|
readonly rep?: boolean | undefined;
|
|
@@ -4285,20 +5674,29 @@ export default function useCanvas(): {
|
|
|
4285
5674
|
readonly enable_collection_player_component?: boolean | undefined;
|
|
4286
5675
|
readonly autoselect_selected_canvas_account?: boolean | undefined;
|
|
4287
5676
|
readonly require_account_on_canvas_creation?: boolean | undefined;
|
|
5677
|
+
readonly enable_canvases_account_filtering?: boolean | undefined;
|
|
4288
5678
|
readonly pptx_slide_image_width?: number | undefined;
|
|
4289
|
-
readonly enable_download_in_presentation_mode?: boolean | undefined;
|
|
4290
5679
|
readonly correlation_id_cleanup_delay?: number | undefined;
|
|
4291
5680
|
readonly async_download_expiration_hours?: number | undefined;
|
|
4292
5681
|
readonly async_download_api_url?: string | undefined;
|
|
4293
5682
|
readonly async_download_callback_url?: string | undefined;
|
|
5683
|
+
readonly section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
5684
|
+
readonly disable_rep_canvas_creation?: boolean | undefined;
|
|
5685
|
+
readonly disable_shared_link_creation?: boolean | undefined;
|
|
5686
|
+
readonly hide_meeting_bar?: boolean | undefined;
|
|
4294
5687
|
} | undefined;
|
|
5688
|
+
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
5689
|
+
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
5690
|
+
readonly enable_admin_asset_manager?: boolean | undefined;
|
|
4295
5691
|
readonly api_client_timeout?: number | undefined;
|
|
4296
5692
|
readonly enable_monaco_html_editor?: boolean | undefined;
|
|
4297
5693
|
readonly skip_metadata_keys_in_list_item?: readonly string[] | undefined;
|
|
4298
5694
|
readonly enable_multi_language?: boolean | undefined;
|
|
4299
5695
|
readonly enable_multipeer_connectivity?: boolean | undefined;
|
|
5696
|
+
readonly enable_syncbox?: boolean | undefined;
|
|
4300
5697
|
readonly canvases_route_order?: number | undefined;
|
|
4301
5698
|
readonly content_browser_route_order?: number | undefined;
|
|
5699
|
+
readonly assets_route_order?: number | undefined;
|
|
4302
5700
|
readonly impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
4303
5701
|
readonly translation_overrides?: {
|
|
4304
5702
|
readonly en?: {
|
|
@@ -4322,10 +5720,32 @@ export default function useCanvas(): {
|
|
|
4322
5720
|
readonly es?: {
|
|
4323
5721
|
readonly [x: string]: string;
|
|
4324
5722
|
} | undefined;
|
|
5723
|
+
readonly th?: {
|
|
5724
|
+
readonly [x: string]: string;
|
|
5725
|
+
} | undefined;
|
|
5726
|
+
readonly ja?: {
|
|
5727
|
+
readonly [x: string]: string;
|
|
5728
|
+
} | undefined;
|
|
5729
|
+
readonly zh?: {
|
|
5730
|
+
readonly [x: string]: string;
|
|
5731
|
+
} | undefined;
|
|
5732
|
+
readonly it?: {
|
|
5733
|
+
readonly [x: string]: string;
|
|
5734
|
+
} | undefined;
|
|
5735
|
+
readonly pt?: {
|
|
5736
|
+
readonly [x: string]: string;
|
|
5737
|
+
} | undefined;
|
|
5738
|
+
readonly "pt-br"?: {
|
|
5739
|
+
readonly [x: string]: string;
|
|
5740
|
+
} | undefined;
|
|
5741
|
+
readonly nl?: {
|
|
5742
|
+
readonly [x: string]: string;
|
|
5743
|
+
} | undefined;
|
|
4325
5744
|
} | undefined;
|
|
4326
5745
|
readonly file_annotations_mode?: "admin" | "personal" | undefined;
|
|
4327
5746
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
4328
5747
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
5748
|
+
readonly enable_speaker_notes?: boolean | undefined;
|
|
4329
5749
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
4330
5750
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
4331
5751
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -4382,22 +5802,45 @@ export default function useCanvas(): {
|
|
|
4382
5802
|
readonly use_collection_player_as_default_file_viewer_for_original_extensions?: readonly string[] | undefined;
|
|
4383
5803
|
readonly enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
4384
5804
|
readonly generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5805
|
+
readonly convert_pptx_to_html?: boolean | undefined;
|
|
5806
|
+
readonly convert_pptx_to_html_default_value?: boolean | undefined;
|
|
4385
5807
|
readonly enable_search_with_suggestions?: boolean | undefined;
|
|
4386
5808
|
readonly enable_search_filter_with_suggestions?: boolean | undefined;
|
|
4387
5809
|
readonly enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
4388
5810
|
readonly enable_thumbnails_for_templates_and_blocks?: boolean | undefined;
|
|
4389
5811
|
readonly default_pdf_page_dimensions?: {
|
|
4390
|
-
readonly width?: number | undefined;
|
|
4391
|
-
readonly height?: number | undefined;
|
|
4392
|
-
readonly
|
|
5812
|
+
readonly width?: number | string | undefined;
|
|
5813
|
+
readonly height?: number | string | undefined;
|
|
5814
|
+
readonly print_scale?: number | undefined;
|
|
4393
5815
|
} | undefined;
|
|
4394
5816
|
readonly disable_browser_search_context?: boolean | undefined;
|
|
4395
5817
|
readonly location_prompt_type?: "warning" | "block" | undefined;
|
|
4396
5818
|
readonly location_prompt_message?: string | undefined;
|
|
4397
5819
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
4398
5820
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
5821
|
+
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
5822
|
+
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
5823
|
+
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
5824
|
+
readonly enable_presentation_annotations?: boolean | undefined;
|
|
5825
|
+
readonly max_files_limit?: number | undefined;
|
|
5826
|
+
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5827
|
+
readonly disable_postcall?: boolean | undefined;
|
|
5828
|
+
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5829
|
+
readonly slotty_ui_route_config?: readonly {
|
|
5830
|
+
readonly name: string;
|
|
5831
|
+
readonly enabled: boolean;
|
|
5832
|
+
readonly type: "base" | "app";
|
|
5833
|
+
}[] | undefined;
|
|
5834
|
+
readonly sfdc?: {
|
|
5835
|
+
readonly use_static_ip_proxy?: boolean | undefined;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
readonly custom_event?: string | undefined;
|
|
4399
5838
|
readonly enable_recents?: boolean | undefined;
|
|
4400
5839
|
readonly enable_favorites?: boolean | undefined;
|
|
5840
|
+
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5841
|
+
readonly time_format?: string | undefined;
|
|
5842
|
+
readonly date_format?: string | undefined;
|
|
5843
|
+
readonly is_file_expiration_mandatory?: boolean | undefined;
|
|
4401
5844
|
}>>;
|
|
4402
5845
|
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
4403
5846
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean, index?: number) => void;
|
|
@@ -4431,6 +5874,7 @@ export default function useCanvas(): {
|
|
|
4431
5874
|
setInCall: (value?: boolean | undefined) => void;
|
|
4432
5875
|
setIsEditMode: (value: boolean) => void;
|
|
4433
5876
|
updateActiveCanvasProperties: (newProperties: Partial<CanvasRetrieve>) => void;
|
|
5877
|
+
mergeIntoActiveContext: (contextUpdate: Record<string, any>) => void;
|
|
4434
5878
|
updateHomePageSettings: (homePage: {
|
|
4435
5879
|
component_id: string;
|
|
4436
5880
|
section_id?: string | null;
|
|
@@ -4448,8 +5892,93 @@ export default function useCanvas(): {
|
|
|
4448
5892
|
node: ComponentNode;
|
|
4449
5893
|
section: CanvasRetrieve["sections"][number];
|
|
4450
5894
|
}) => boolean;
|
|
4451
|
-
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps> | null;
|
|
5895
|
+
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | ContentListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps> | null;
|
|
4452
5896
|
updateNodeInSection: (sectionId: string, nodeId: string, newData: ComponentNode["data"]) => boolean;
|
|
4453
5897
|
getMaxWidth: typeof getMaxWidth;
|
|
5898
|
+
getParentType: (nodeId: Ref<ComponentNode["id"] | null | undefined>) => import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
5899
|
+
onWizardEnter: Ref<(() => void) | undefined, (() => void) | undefined>;
|
|
5900
|
+
onWizardExit: Ref<(() => void) | undefined, (() => void) | undefined>;
|
|
5901
|
+
contentAnnotation: Ref<{
|
|
5902
|
+
isVisibleMenu: boolean;
|
|
5903
|
+
markerTools: {
|
|
5904
|
+
[key: string]: {
|
|
5905
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
5906
|
+
icon: string;
|
|
5907
|
+
translationKey: string;
|
|
5908
|
+
action?: () => void;
|
|
5909
|
+
dividerBefore?: boolean;
|
|
5910
|
+
};
|
|
5911
|
+
};
|
|
5912
|
+
activeToolIcon: string;
|
|
5913
|
+
activeTool: string | typeof import('@markerjs/markerjs3').MarkerBase | null;
|
|
5914
|
+
isReady: boolean;
|
|
5915
|
+
handleAnnotationSelect: (action: string) => void;
|
|
5916
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
5917
|
+
activeMarker: import('@markerjs/markerjs3').MarkerArea | null;
|
|
5918
|
+
showMenu: (value: boolean) => boolean;
|
|
5919
|
+
toggleMenu: () => boolean;
|
|
5920
|
+
storage: Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>;
|
|
5921
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
5922
|
+
triggerToolUpdate: () => void;
|
|
5923
|
+
clearStorage: () => void;
|
|
5924
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5925
|
+
createNewImage: (width: number, height: number) => string;
|
|
5926
|
+
isDrawingActive: boolean;
|
|
5927
|
+
} | null, {
|
|
5928
|
+
isVisibleMenu: Ref<boolean, boolean>;
|
|
5929
|
+
markerTools: import('vue').ComputedRef<{
|
|
5930
|
+
[key: string]: {
|
|
5931
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
5932
|
+
icon: string;
|
|
5933
|
+
translationKey: string;
|
|
5934
|
+
action?: () => void;
|
|
5935
|
+
dividerBefore?: boolean;
|
|
5936
|
+
};
|
|
5937
|
+
}>;
|
|
5938
|
+
activeToolIcon: import('vue').ComputedRef<string>;
|
|
5939
|
+
activeTool: Ref<string | typeof import('@markerjs/markerjs3').MarkerBase | null, string | typeof import('@markerjs/markerjs3').MarkerBase | null>;
|
|
5940
|
+
isReady: Ref<boolean, boolean>;
|
|
5941
|
+
handleAnnotationSelect: (action: string) => void;
|
|
5942
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
5943
|
+
activeMarker: Ref<import('@markerjs/markerjs3').MarkerArea | null, import('@markerjs/markerjs3').MarkerArea | null>;
|
|
5944
|
+
showMenu: (value: boolean) => boolean;
|
|
5945
|
+
toggleMenu: () => boolean;
|
|
5946
|
+
storage: Map<string, any>;
|
|
5947
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
5948
|
+
triggerToolUpdate: () => void;
|
|
5949
|
+
clearStorage: () => void;
|
|
5950
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5951
|
+
createNewImage: (width: number, height: number) => string;
|
|
5952
|
+
isDrawingActive: import('vue').ComputedRef<boolean>;
|
|
5953
|
+
} | {
|
|
5954
|
+
isVisibleMenu: boolean;
|
|
5955
|
+
markerTools: {
|
|
5956
|
+
[key: string]: {
|
|
5957
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
5958
|
+
icon: string;
|
|
5959
|
+
translationKey: string;
|
|
5960
|
+
action?: () => void;
|
|
5961
|
+
dividerBefore?: boolean;
|
|
5962
|
+
};
|
|
5963
|
+
};
|
|
5964
|
+
activeToolIcon: string;
|
|
5965
|
+
activeTool: string | typeof import('@markerjs/markerjs3').MarkerBase | null;
|
|
5966
|
+
isReady: boolean;
|
|
5967
|
+
handleAnnotationSelect: (action: string) => void;
|
|
5968
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
5969
|
+
activeMarker: import('@markerjs/markerjs3').MarkerArea | null;
|
|
5970
|
+
showMenu: (value: boolean) => boolean;
|
|
5971
|
+
toggleMenu: () => boolean;
|
|
5972
|
+
storage: Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>;
|
|
5973
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
5974
|
+
triggerToolUpdate: () => void;
|
|
5975
|
+
clearStorage: () => void;
|
|
5976
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5977
|
+
createNewImage: (width: number, height: number) => string;
|
|
5978
|
+
isDrawingActive: boolean;
|
|
5979
|
+
} | null>;
|
|
5980
|
+
getSafeContext: (context?: any, _temporaryContextKeys?: string[]) => any;
|
|
5981
|
+
watchCanvas: () => import('vue').WatchHandle;
|
|
5982
|
+
mergeWithArrayReplacement: (...sources: any[]) => any;
|
|
4454
5983
|
};
|
|
4455
5984
|
export {};
|