@pitcher/js-api 1.19.0 → 1.20.0-beta.14
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/js-api.esm.d.ts +1 -0
- package/js-api.esm.js +3643 -0
- package/js-api.esm.js.map +1 -0
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/api/apps/apps.queries.d.ts +3 -0
- package/lib/api/canvases/canvases.queries.d.ts +15 -0
- package/lib/api/events/events.helpers.d.ts +29 -0
- package/lib/api/events/events.queries.d.ts +10 -0
- package/lib/api/users/users.queries.d.ts +5 -0
- package/lib/apps/browser/composables/useAppEmit.d.ts +3 -0
- package/lib/apps/browser/stores/api.d.ts +646 -0
- package/lib/apps/browser/stores/api.test.d.ts +1 -0
- package/lib/apps/browser/stores/app.d.ts +94 -0
- package/lib/apps/browser/stores/app.test.d.ts +1 -0
- package/lib/apps/browser/stores/upload.d.ts +111 -0
- package/lib/apps/browser/stores/upload.types.d.ts +18 -0
- package/lib/apps/browser/util/file.d.ts +3 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/Link/Link.util.d.ts +13 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +12724 -0
- package/lib/apps/canvas-builder/composables/useCanvasDnd.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasExit.d.ts +3 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +1782 -0
- package/lib/apps/canvas-builder/composables/useCanvasHooks.d.ts +25 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +35 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +30 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +85 -0
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +9 -0
- package/lib/apps/canvas-builder/composables/useCollapsibles.d.ts +14 -0
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +14 -0
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +51 -0
- package/lib/apps/canvas-builder/composables/useFetchSectionAnalytics.d.ts +3 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +6 -0
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useRecommendations.d.ts +53 -0
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useSectionNavigation.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +34 -0
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +15 -0
- package/lib/apps/canvas-builder/constants/defaults.const.d.ts +1 -0
- package/lib/apps/canvas-builder/constants/index.d.ts +3 -0
- package/lib/apps/canvas-builder/constants/sizes.d.ts +2 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +467 -0
- package/lib/apps/canvas-builder/types/font-awesome.types.d.ts +2 -0
- package/lib/apps/canvas-builder/types/recommendations.types.d.ts +28 -0
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +44 -0
- package/lib/apps/canvas-builder/util/canvas.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/clone.d.ts +1 -0
- package/lib/apps/canvas-builder/util/file.util.d.ts +6 -0
- package/lib/apps/canvas-builder/util/tree.d.ts +25 -0
- package/lib/apps/canvas-builder/util/tree.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/url.d.ts +5 -0
- package/lib/apps/canvas-builder/util/url.test.d.ts +1 -0
- package/lib/apps/content-selector/appTypes.d.ts +44 -0
- package/lib/apps/content-selector/stores/app.d.ts +83 -0
- package/lib/apps/content-selector/util/file.d.ts +3 -0
- package/lib/apps/content-selector/util/media-type.util.d.ts +1 -0
- package/lib/apps/notes/composables/useFullscreenNotesHeartbeat.d.ts +3 -0
- package/lib/apps/notes/composables/useNotesApp.d.ts +3 -0
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcher.types.d.ts +7 -0
- package/lib/components/CConfigEditor/CConfigEditor.types.d.ts +7 -0
- package/lib/components/CConfigEditor/CConfigEditor.validators.d.ts +4 -0
- package/lib/components/CContactSelector/CContactSelector.types.d.ts +4 -0
- package/lib/components/CDataTable/CDataTableEdit.use.d.ts +22 -0
- package/lib/components/CFileViewer/CFileViewer.types.d.ts +7 -0
- package/lib/components/CFileViewer/CFileViewer.use.d.ts +47 -0
- package/lib/components/CFileViewer/CFileViewerFullScreen.use.d.ts +16 -0
- package/lib/components/CFileViewer/pageThumbnailFavorite.use.d.ts +10 -0
- package/lib/components/CFileViewer/pdfEvents.use.d.ts +4 -0
- package/lib/components/CGlobalSearch/CGlobalSearch.types.d.ts +23 -0
- package/lib/components/CGlobalSearch/GlobalSearch.use.d.ts +24 -0
- package/lib/components/CGlobalSearch/Shortcuts.use.d.ts +11 -0
- package/lib/components/CMultiSelect/CMultiSelect.test.d.ts +1 -0
- package/lib/components/CQuickFilters/CQuickFilters.types.d.ts +4 -0
- package/lib/components/CRichTextEditor/constants.d.ts +1 -0
- package/lib/components/CRichTextEditor/extensions/bulletListExtended.d.ts +16 -0
- package/lib/components/CRichTextEditor/extensions/headingExtended.d.ts +10 -0
- package/lib/components/CRichTextEditor/extensions/mentionSuggestions.d.ts +11 -0
- package/lib/components/CRichTextEditor/extensions/paragraphExtended.d.ts +26 -0
- package/lib/components/CRichTextEditor/extensions/textStyleExtended.d.ts +10 -0
- package/lib/components/CSingleSelect/CSingleSelect.test.d.ts +1 -0
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.types.d.ts +56 -0
- package/lib/components/CVirtualTable/CVirtualTable.test.d.ts +1 -0
- package/lib/components/CVirtualTable/CVirtualTableRow.test.d.ts +1 -0
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +40 -0
- package/lib/components/canvases/CanvasesManagementFilters.use.d.ts +7 -0
- package/lib/components/canvases/CanvasesManagementToolbarFilters.use.d.ts +20 -0
- package/lib/components/filters/CDateRangeFilter.test.d.ts +1 -0
- package/lib/components/filters/CSelectFilter.test.d.ts +1 -0
- package/lib/components/filters/filter.const.d.ts +1 -0
- package/lib/components/filters/filter.util.d.ts +2 -0
- package/lib/components/filters/filter.util.spec.d.ts +1 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +11 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +9 -0
- package/lib/composables/appEmit.use.d.ts +3 -0
- package/lib/composables/bulkActions.use.d.ts +12 -0
- package/lib/composables/fileViewerSettings.use.d.ts +8 -0
- package/lib/composables/recentFiles.use.d.ts +12 -0
- package/lib/composables/useAssetUpload.d.ts +6 -0
- package/lib/composables/useBindValidation.d.ts +206 -0
- package/lib/composables/useCanvasOverlay.d.ts +20 -0
- package/lib/composables/useCanvasTablesPagination.d.ts +13 -0
- package/lib/composables/useConfirmation.d.ts +23 -0
- package/lib/composables/useConnectUpload.d.ts +5 -0
- package/lib/composables/useDetailsView.d.ts +19 -0
- package/lib/composables/useFetchUsers.d.ts +18 -0
- package/lib/composables/useInfiniteScroll.d.ts +13 -0
- package/lib/composables/useInstalledApps.d.ts +3 -0
- package/lib/composables/useLocation.d.ts +26 -0
- package/lib/composables/useLocationAPI.d.ts +39 -0
- package/lib/composables/useLocationListeners.d.ts +8 -0
- package/lib/composables/useLocationManipulation.d.ts +37 -0
- package/lib/composables/usePdfInterpolation.d.ts +9 -0
- package/lib/composables/useTheme.d.ts +9 -0
- package/lib/composables/useThemeVars.d.ts +30 -0
- package/lib/composables/useToast.d.ts +14 -0
- package/lib/composables/useWindowEvents.d.ts +20 -0
- package/lib/constants/cdp.const.d.ts +41 -0
- package/lib/constants/config.const.d.ts +1 -0
- package/lib/constants/conventions.const.d.ts +3 -0
- package/lib/constants/i18n.const.d.ts +13 -0
- package/lib/constants/modal.const.d.ts +9 -0
- package/lib/constants/more.const.d.ts +1 -0
- package/lib/constants/recentFiles.const.d.ts +4 -0
- package/lib/constants/tables.const.d.ts +4 -0
- package/lib/constants/timers.const.d.ts +1 -0
- package/lib/constants/uploads.const.d.ts +8 -0
- package/lib/constants/url.const.d.ts +2 -0
- package/lib/custom-naive-locales/el.d.ts +124 -0
- package/lib/directives/autofocus.d.ts +4 -0
- package/lib/directives/clickOutside.d.ts +8 -0
- package/lib/directives/draggable.d.ts +4 -0
- package/lib/directives/tooltip.d.ts +4 -0
- package/lib/main.lib.d.ts +182 -0
- package/lib/plugins/vueQuery.d.ts +3 -0
- package/lib/sdk/api/HighLevelApi.d.ts +130 -0
- package/lib/sdk/api/HighLevelApi.spec.d.ts +1 -0
- package/lib/sdk/api/LowLevelApi.d.ts +18 -0
- package/lib/sdk/api/LowLevelApi.spec.d.ts +1 -0
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +89 -0
- package/lib/sdk/api/modules/admin/env.admin.d.ts +10 -0
- package/lib/sdk/api/modules/admin/files.admin.d.ts +49 -0
- package/lib/sdk/api/modules/admin/index.d.ts +40 -0
- package/lib/sdk/api/modules/admin/metadataTemplates.admin.d.ts +11 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +67 -0
- package/lib/sdk/api/modules/canvas.d.ts +56 -0
- package/lib/sdk/api/modules/dsr/env.dsr.d.ts +10 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +9 -0
- package/lib/sdk/api/modules/dsr/loading.dsr.d.ts +1 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +39 -0
- package/lib/sdk/api/modules/env.d.ts +7 -0
- package/lib/sdk/api/modules/events.d.ts +7 -0
- package/lib/sdk/api/modules/favorites.d.ts +8 -0
- package/lib/sdk/api/modules/feedback.d.ts +3 -0
- package/lib/sdk/api/modules/files.d.ts +35 -0
- package/lib/sdk/api/modules/folders.d.ts +21 -0
- package/lib/sdk/api/modules/index.d.ts +19 -0
- package/lib/sdk/api/modules/languages.d.ts +8 -0
- package/lib/sdk/api/modules/metadataTemplates.d.ts +4 -0
- package/lib/sdk/api/modules/notifications.d.ts +3 -0
- package/lib/sdk/api/modules/open.d.ts +4 -0
- package/lib/sdk/api/modules/pspdfkit.d.ts +23 -0
- package/lib/sdk/api/modules/query.d.ts +3 -0
- package/lib/sdk/api/modules/search.d.ts +4 -0
- package/lib/sdk/api/modules/sync.d.ts +9 -0
- package/lib/sdk/api/modules/toast.d.ts +4 -0
- package/lib/sdk/api/modules/track.d.ts +4 -0
- package/lib/sdk/api/modules/ui/app-errors.ui.d.ts +3 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +29 -0
- package/lib/sdk/api/modules/ui/content.ui.d.ts +24 -0
- package/lib/sdk/api/modules/ui/index.d.ts +44 -0
- package/lib/sdk/api/modules/ui/loading.ui.d.ts +1 -0
- package/lib/sdk/api/modules/ui/location.ui.d.ts +3 -0
- package/lib/sdk/api/modules/ui/post-call.ui.d.ts +6 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +115 -0
- package/lib/sdk/api/modules/users.d.ts +7 -0
- package/lib/sdk/api/modules/webView.d.ts +4 -0
- package/lib/sdk/api/onlineRestApiHandlers.d.ts +4 -0
- package/lib/sdk/interfaces.d.ts +232 -0
- package/lib/sdk/main.d.ts +564 -0
- package/lib/sdk/main.spec.d.ts +1 -0
- package/lib/sdk/main.umd-esm.d.ts +1 -0
- package/lib/sdk/payload.types.d.ts +56 -0
- package/lib/sdk/utils/assert.d.ts +3 -0
- package/lib/sdk/utils/assert.spec.d.ts +1 -0
- package/lib/sdk/utils/cleanUrl.d.ts +1 -0
- package/lib/sdk/utils/eventEmitter.d.ts +17 -0
- package/lib/sdk/utils/eventEmitter.spec.d.ts +1 -0
- package/lib/sdk/utils/httpFetch.d.ts +15 -0
- package/lib/sdk/utils/isodate.d.ts +1 -0
- package/lib/sdk/utils/isodate.spec.d.ts +1 -0
- package/lib/sdk/utils/object.d.ts +1 -0
- package/lib/sdk/utils/object.spec.d.ts +1 -0
- package/lib/sdk/utils/postrobot.d.ts +1 -0
- package/lib/theme/canvasUiUnoPreset.d.ts +4 -0
- package/lib/theme/daisyUi.d.ts +1 -0
- package/lib/theme/light.const.d.ts +4 -0
- package/lib/theme/light.d.ts +2185 -0
- package/lib/theme/main.d.ts +3 -0
- package/lib/theme/theme-overrides.d.ts +1 -0
- package/lib/theme/theme.types.d.ts +29 -0
- package/lib/theme/theme.utils.d.ts +3 -0
- package/lib/types/app.d.ts +59 -0
- package/lib/types/call.d.ts +43 -0
- package/lib/types/canvasActions.d.ts +12 -0
- package/lib/types/canvases.d.ts +23 -0
- package/lib/types/dataTable.d.ts +6 -0
- package/lib/types/favorites.d.ts +5 -0
- package/lib/types/fileViewerSettings.types.d.ts +3 -0
- package/lib/types/files.d.ts +38 -0
- package/lib/types/i18n.types.d.ts +1 -0
- package/lib/types/iframes.d.ts +24 -0
- package/lib/types/instance.types.d.ts +18 -0
- package/lib/types/instanceSettings.types.d.ts +23 -0
- package/lib/types/launchDarkly.types.d.ts +40 -0
- package/lib/types/organization.types.d.ts +14 -0
- package/lib/types/organizationMetadata.types.d.ts +4 -0
- package/lib/types/organizationSettings.types.d.ts +3 -0
- package/lib/types/paginatedData.d.ts +6 -0
- package/lib/types/recentFiles.types.d.ts +4 -0
- package/lib/types/sectionPopularity.d.ts +30 -0
- package/lib/types/sfdc.d.ts +125 -0
- package/lib/types/toast.d.ts +4 -0
- package/lib/types/translations.d.ts +5 -0
- package/lib/types/ts.d.ts +10 -0
- package/lib/types/users.d.ts +12 -0
- package/lib/types/vueVirtualScroller.d.ts +4 -0
- package/lib/util/anchor.d.ts +2 -0
- package/lib/util/array.d.ts +5 -0
- package/lib/util/array.spec.d.ts +1 -0
- package/lib/util/canvas-manager.util.d.ts +4 -0
- package/lib/util/casing.d.ts +4 -0
- package/lib/util/casing.spec.d.ts +1 -0
- package/lib/util/color.d.ts +4 -0
- package/lib/util/date.d.ts +12 -0
- package/lib/util/date.spec.d.ts +1 -0
- package/lib/util/dev.util.d.ts +2 -0
- package/lib/util/dom.d.ts +15 -0
- package/lib/util/font.spec.d.ts +1 -0
- package/lib/util/font.util.d.ts +7 -0
- package/lib/util/fullscreen.util.d.ts +16 -0
- package/lib/util/handlebars.d.ts +1 -0
- package/lib/util/image.d.ts +1 -0
- package/lib/util/location.spec.d.ts +1 -0
- package/lib/util/location.util.d.ts +1 -0
- package/lib/util/message-event.d.ts +1 -0
- package/lib/util/message-event.spec.d.ts +1 -0
- package/lib/util/navigation.util.d.ts +7 -0
- package/lib/util/network.d.ts +16 -0
- package/lib/util/network.spec.d.ts +1 -0
- package/lib/util/number.d.ts +4 -0
- package/lib/util/number.spec.d.ts +1 -0
- package/lib/util/object.d.ts +1 -0
- package/lib/util/object.spec.d.ts +1 -0
- package/lib/util/query.d.ts +6 -0
- package/lib/util/reactive.d.ts +4 -0
- package/lib/util/reactive.spec.d.ts +1 -0
- package/lib/util/string.d.ts +4 -0
- package/lib/util/timer.d.ts +2 -0
- package/lib/util/timer.spec.d.ts +1 -0
- package/lib/util/translations.d.ts +8 -0
- package/lib/util/translations.spec.d.ts +1 -0
- package/lib/util/tsHelpers.d.ts +14 -0
- package/lib/util/user.d.ts +4 -0
- package/lib/util/userAgents.d.ts +8 -0
- package/package.json +7 -2
- package/types/openapi/index.d.ts +255 -0
- package/types/openapi/models/AccessTypeEnum.d.ts +8 -0
- package/types/openapi/models/Account.d.ts +4 -0
- package/types/openapi/models/AccountRequest.d.ts +4 -0
- package/types/openapi/models/App.d.ts +21 -0
- package/types/openapi/models/AppInstallationRequest.d.ts +4 -0
- package/types/openapi/models/AppOrganization.d.ts +4 -0
- package/types/openapi/models/AppOrganizationRequest.d.ts +4 -0
- package/types/openapi/models/AppPublish.d.ts +8 -0
- package/types/openapi/models/AppRelease.d.ts +10 -0
- package/types/openapi/models/AppRequest.d.ts +9 -0
- package/types/openapi/models/AppTypeEnum.d.ts +8 -0
- package/types/openapi/models/AppsDBEntry.d.ts +4 -0
- package/types/openapi/models/AppsDBEntryRequest.d.ts +3 -0
- package/types/openapi/models/AuthToken.d.ts +7 -0
- package/types/openapi/models/AuthTokenRequest.d.ts +7 -0
- package/types/openapi/models/BulkDeleteErrorDetail.d.ts +5 -0
- package/types/openapi/models/BulkDeleteRequest.d.ts +6 -0
- package/types/openapi/models/BulkDeleteResponse.d.ts +6 -0
- package/types/openapi/models/BulkUpdateMetadata.d.ts +6 -0
- package/types/openapi/models/BulkUpdateMetadataOperationEnum.d.ts +8 -0
- package/types/openapi/models/BulkUpdateMetadataRequest.d.ts +9 -0
- package/types/openapi/models/BulkUpdateMetadataResult.d.ts +4 -0
- package/types/openapi/models/BulkUpdateTags.d.ts +6 -0
- package/types/openapi/models/BulkUpdateTagsOperationEnum.d.ts +8 -0
- package/types/openapi/models/BulkUpdateTagsRequest.d.ts +9 -0
- package/types/openapi/models/BulkUpdateTagsResult.d.ts +4 -0
- package/types/openapi/models/Canvas.d.ts +29 -0
- package/types/openapi/models/CanvasCreate.d.ts +36 -0
- package/types/openapi/models/CanvasCreateRequest.d.ts +25 -0
- package/types/openapi/models/CanvasRecommendedFile.d.ts +46 -0
- package/types/openapi/models/CanvasRecommendedFiles.d.ts +5 -0
- package/types/openapi/models/CanvasRetrieve.d.ts +36 -0
- package/types/openapi/models/CanvasSection.d.ts +10 -0
- package/types/openapi/models/CanvasUpdate.d.ts +36 -0
- package/types/openapi/models/CanvasUpdateRequest.d.ts +22 -0
- package/types/openapi/models/Collaboration.d.ts +16 -0
- package/types/openapi/models/CollaborationCreate.d.ts +16 -0
- package/types/openapi/models/CollaborationCreateRequest.d.ts +10 -0
- package/types/openapi/models/CollaborationRequest.d.ts +5 -0
- package/types/openapi/models/CollaborationRoleEnum.d.ts +4 -0
- package/types/openapi/models/ConnectedService.d.ts +9 -0
- package/types/openapi/models/ContentDistributionGroup.d.ts +12 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +13 -0
- package/types/openapi/models/ContentDistributionGroupCreateRequest.d.ts +5 -0
- package/types/openapi/models/ContentDistributionGroupMembership.d.ts +8 -0
- package/types/openapi/models/ContentDistributionGroupMembershipCreate.d.ts +8 -0
- package/types/openapi/models/ContentDistributionGroupMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/ContentDistributionGroupRequest.d.ts +4 -0
- package/types/openapi/models/DefaultExpiresAtEnum.d.ts +16 -0
- package/types/openapi/models/DeletedApp.d.ts +23 -0
- package/types/openapi/models/DeletedCanvas.d.ts +31 -0
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +15 -0
- package/types/openapi/models/DeletedEnvironment.d.ts +15 -0
- package/types/openapi/models/DeletedFavorite.d.ts +20 -0
- package/types/openapi/models/DeletedFile.d.ts +48 -0
- package/types/openapi/models/DeletedFolder.d.ts +18 -0
- package/types/openapi/models/DeletedInstance.d.ts +25 -0
- package/types/openapi/models/DeletedInstanceAssignmentGroup.d.ts +15 -0
- package/types/openapi/models/DeletedMetadataTemplate.d.ts +18 -0
- package/types/openapi/models/DeletedRegion.d.ts +13 -0
- package/types/openapi/models/DownloadTypeEnum.d.ts +10 -0
- package/types/openapi/models/Environment.d.ts +13 -0
- package/types/openapi/models/EnvironmentRequest.d.ts +5 -0
- package/types/openapi/models/Event.d.ts +18 -0
- package/types/openapi/models/EventAttendee.d.ts +5 -0
- package/types/openapi/models/EventAttendeeRequest.d.ts +5 -0
- package/types/openapi/models/EventExternalObject.d.ts +10 -0
- package/types/openapi/models/EventExternalObjectContentTypeEnum.d.ts +12 -0
- package/types/openapi/models/EventExternalObjectRequest.d.ts +10 -0
- package/types/openapi/models/EventRequest.d.ts +17 -0
- package/types/openapi/models/EventStatusEnum.d.ts +10 -0
- package/types/openapi/models/Favorite.d.ts +18 -0
- package/types/openapi/models/FavoriteCreate.d.ts +12 -0
- package/types/openapi/models/FavoriteCreateRequest.d.ts +7 -0
- package/types/openapi/models/FavoriteFile.d.ts +6 -0
- package/types/openapi/models/FavoriteFileRequest.d.ts +3 -0
- package/types/openapi/models/FavoriteUpdate.d.ts +12 -0
- package/types/openapi/models/FavoriteUpdateRequest.d.ts +6 -0
- package/types/openapi/models/File.d.ts +46 -0
- package/types/openapi/models/FileAnalytics.d.ts +16 -0
- package/types/openapi/models/FileAnalyticsResult.d.ts +9 -0
- package/types/openapi/models/FileContentTypeEnum.d.ts +16 -0
- package/types/openapi/models/FileCreate.d.ts +51 -0
- package/types/openapi/models/FileCreateRequest.d.ts +27 -0
- package/types/openapi/models/FilePermission.d.ts +4 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +4 -0
- package/types/openapi/models/FileRequest.d.ts +16 -0
- package/types/openapi/models/FileRetrieve.d.ts +51 -0
- package/types/openapi/models/FileRevision.d.ts +8 -0
- package/types/openapi/models/FileRevisionRequest.d.ts +3 -0
- package/types/openapi/models/FileStatusEnum.d.ts +8 -0
- package/types/openapi/models/FileTypeEnum.d.ts +10 -0
- package/types/openapi/models/FileUpdate.d.ts +51 -0
- package/types/openapi/models/FileUpdateRequest.d.ts +20 -0
- package/types/openapi/models/FileVersion.d.ts +5 -0
- package/types/openapi/models/Folder.d.ts +16 -0
- package/types/openapi/models/FolderCreate.d.ts +32 -0
- package/types/openapi/models/FolderCreateRequest.d.ts +19 -0
- package/types/openapi/models/FolderFile.d.ts +15 -0
- package/types/openapi/models/FolderFolder.d.ts +8 -0
- package/types/openapi/models/FolderRetrieve.d.ts +25 -0
- package/types/openapi/models/FolderUpdate.d.ts +32 -0
- package/types/openapi/models/FolderUpdateRequest.d.ts +16 -0
- package/types/openapi/models/Instance.d.ts +23 -0
- package/types/openapi/models/InstanceAnalytics.d.ts +18 -0
- package/types/openapi/models/InstanceAnalyticsChangePercentages.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsCurrentPeriod.d.ts +13 -0
- package/types/openapi/models/InstanceAnalyticsFile.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsFileActivity.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsFileRequest.d.ts +3 -0
- package/types/openapi/models/InstanceAnalyticsInactiveUsers.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsInactiveUsersRequest.d.ts +4 -0
- package/types/openapi/models/InstanceAnalyticsLoginResult.d.ts +5 -0
- package/types/openapi/models/InstanceAssignmentGroup.d.ts +12 -0
- package/types/openapi/models/InstanceAssignmentGroupMembership.d.ts +8 -0
- package/types/openapi/models/InstanceAssignmentGroupMembershipCreate.d.ts +8 -0
- package/types/openapi/models/InstanceAssignmentGroupMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceAssignmentGroupRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembership.d.ts +12 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +12 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +8 -0
- package/types/openapi/models/InstanceMembershipGroup.d.ts +11 -0
- package/types/openapi/models/InstanceMembershipGroupRequest.d.ts +3 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +5 -0
- package/types/openapi/models/InstanceMembershipRoleEnum.d.ts +8 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +10 -0
- package/types/openapi/models/InstanceMembershipUserRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUserStatusEnum.d.ts +6 -0
- package/types/openapi/models/InstanceRequest.d.ts +11 -0
- package/types/openapi/models/InstanceUpdate.d.ts +19 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +8 -0
- package/types/openapi/models/Invitation.d.ts +11 -0
- package/types/openapi/models/InvitationRequest.d.ts +3 -0
- package/types/openapi/models/InvitationStatusEnum.d.ts +4 -0
- package/types/openapi/models/LanguageEnum.d.ts +12 -0
- package/types/openapi/models/MetadataTemplate.d.ts +16 -0
- package/types/openapi/models/MetadataTemplateField.d.ts +14 -0
- package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +14 -0
- package/types/openapi/models/MetadataTemplateFieldTypeEnum.d.ts +16 -0
- package/types/openapi/models/MetadataTemplateOption.d.ts +4 -0
- package/types/openapi/models/MetadataTemplateOptionRequest.d.ts +4 -0
- package/types/openapi/models/MetadataTemplateRequest.d.ts +7 -0
- package/types/openapi/models/MetadataTemplateSection.d.ts +6 -0
- package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +6 -0
- package/types/openapi/models/MiniCanvas.d.ts +4 -0
- package/types/openapi/models/MiniCanvasRequest.d.ts +3 -0
- package/types/openapi/models/MiniContentDistributionGroup.d.ts +5 -0
- package/types/openapi/models/MiniContentDistributionGroupRequest.d.ts +3 -0
- package/types/openapi/models/MiniEnvironment.d.ts +5 -0
- package/types/openapi/models/MiniEnvironmentRequest.d.ts +4 -0
- package/types/openapi/models/MiniEvent.d.ts +5 -0
- package/types/openapi/models/MiniEventRequest.d.ts +4 -0
- package/types/openapi/models/MiniFile.d.ts +4 -0
- package/types/openapi/models/MiniFileRequest.d.ts +3 -0
- package/types/openapi/models/MiniFolder.d.ts +4 -0
- package/types/openapi/models/MiniFolderRequest.d.ts +3 -0
- package/types/openapi/models/MiniInstance.d.ts +4 -0
- package/types/openapi/models/MiniInstanceRequest.d.ts +3 -0
- package/types/openapi/models/MiniPage.d.ts +4 -0
- package/types/openapi/models/MiniPageRequest.d.ts +3 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/MiniSharedLink.d.ts +4 -0
- package/types/openapi/models/MiniSharedLinkRequest.d.ts +3 -0
- package/types/openapi/models/MiniUser.d.ts +5 -0
- package/types/openapi/models/MiniUserRequest.d.ts +3 -0
- package/types/openapi/models/MostActiveUser.d.ts +7 -0
- package/types/openapi/models/OfflineSyncFolder.d.ts +17 -0
- package/types/openapi/models/Organization.d.ts +10 -0
- package/types/openapi/models/OrganizationAnalytics.d.ts +16 -0
- package/types/openapi/models/OrganizationAnalyticsCurrentPeriod.d.ts +13 -0
- package/types/openapi/models/OrganizationAnalyticsInactiveUsers.d.ts +5 -0
- package/types/openapi/models/OrganizationAnalyticsInactiveUsersRequest.d.ts +4 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +10 -0
- package/types/openapi/models/OrganizationAnalyticsLoginResult.d.ts +5 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +13 -0
- package/types/openapi/models/OrganizationBranding.d.ts +6 -0
- package/types/openapi/models/OrganizationBrandingColors.d.ts +4 -0
- package/types/openapi/models/OrganizationChangePercentages.d.ts +6 -0
- package/types/openapi/models/OrganizationUpdate.d.ts +8 -0
- package/types/openapi/models/OrganizationUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PSPDFKitAuthPayload.d.ts +3 -0
- package/types/openapi/models/PSPDFKitAuthPayloadRequest.d.ts +3 -0
- package/types/openapi/models/PSPDFKitToken.d.ts +7 -0
- package/types/openapi/models/PSPDFKitTokenRequest.d.ts +3 -0
- package/types/openapi/models/PaginatedAppList.d.ts +8 -0
- package/types/openapi/models/PaginatedAppReleaseList.d.ts +8 -0
- package/types/openapi/models/PaginatedAuthTokenList.d.ts +8 -0
- package/types/openapi/models/PaginatedCanvasList.d.ts +8 -0
- package/types/openapi/models/PaginatedCollaborationList.d.ts +8 -0
- package/types/openapi/models/PaginatedContentDistributionGroupList.d.ts +8 -0
- package/types/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedEnvironmentList.d.ts +8 -0
- package/types/openapi/models/PaginatedEventList.d.ts +8 -0
- package/types/openapi/models/PaginatedFavoriteList.d.ts +8 -0
- package/types/openapi/models/PaginatedFileList.d.ts +8 -0
- package/types/openapi/models/PaginatedFileRevisionList.d.ts +8 -0
- package/types/openapi/models/PaginatedFolderList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedInvitationList.d.ts +8 -0
- package/types/openapi/models/PaginatedMetadataTemplateList.d.ts +8 -0
- package/types/openapi/models/PaginatedOfflineSyncFolderList.d.ts +8 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +8 -0
- package/types/openapi/models/PaginatedRevisionList.d.ts +8 -0
- package/types/openapi/models/PaginatedSearchResultList.d.ts +9 -0
- package/types/openapi/models/PaginatedStorageRegionList.d.ts +8 -0
- package/types/openapi/models/PaginatedUserList.d.ts +8 -0
- package/types/openapi/models/PatchedAppRequest.d.ts +9 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +22 -0
- package/types/openapi/models/PatchedCollaborationRequest.d.ts +5 -0
- package/types/openapi/models/PatchedContentDistributionGroupRequest.d.ts +4 -0
- package/types/openapi/models/PatchedEnvironmentRequest.d.ts +5 -0
- package/types/openapi/models/PatchedEventRequest.d.ts +17 -0
- package/types/openapi/models/PatchedFavoriteUpdateRequest.d.ts +6 -0
- package/types/openapi/models/PatchedFileRequest.d.ts +16 -0
- package/types/openapi/models/PatchedFileRevisionRequest.d.ts +3 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +20 -0
- package/types/openapi/models/PatchedFolderUpdateRequest.d.ts +16 -0
- package/types/openapi/models/PatchedInstanceAssignmentGroupRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +5 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PatchedMetadataTemplateRequest.d.ts +7 -0
- package/types/openapi/models/PatchedOrganizationUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/PatchedUserRequest.d.ts +12 -0
- package/types/openapi/models/Region.d.ts +11 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/Revision.d.ts +8 -0
- package/types/openapi/models/RevisionRequest.d.ts +3 -0
- package/types/openapi/models/SearchApp.d.ts +6 -0
- package/types/openapi/models/SearchCanvas.d.ts +5 -0
- package/types/openapi/models/SearchContentDistributionGroup.d.ts +11 -0
- package/types/openapi/models/SearchFile.d.ts +9 -0
- package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +11 -0
- package/types/openapi/models/SearchResult.d.ts +8 -0
- package/types/openapi/models/SearchUser.d.ts +5 -0
- package/types/openapi/models/SharedLink.d.ts +16 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +11 -0
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +8 -0
- package/types/openapi/models/SharedLinkCreate.d.ts +16 -0
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +6 -0
- package/types/openapi/models/SharedLinkInstance.d.ts +6 -0
- package/types/openapi/models/SharedLinkInstanceRequest.d.ts +5 -0
- package/types/openapi/models/SharedLinkOrganization.d.ts +6 -0
- package/types/openapi/models/SharedLinkOrganizationRequest.d.ts +6 -0
- package/types/openapi/models/StorageRegion.d.ts +5 -0
- package/types/openapi/models/StorageRegionEnum.d.ts +10 -0
- package/types/openapi/models/Tag.d.ts +3 -0
- package/types/openapi/models/UploadCreate.d.ts +8 -0
- package/types/openapi/models/UploadCreateRequest.d.ts +5 -0
- package/types/openapi/models/User.d.ts +23 -0
- package/types/openapi/models/UserRequest.d.ts +12 -0
|
@@ -0,0 +1,646 @@
|
|
|
1
|
+
import { Folder, FileRetrieve, FolderRetrieve, MiniFile, MiniPage, FolderFolder, File, FavoriteCreateRequest, Favorite, FolderCreateRequest, FolderUpdateRequest, FileUpdateRequest, MetadataTemplate, BulkDeleteRequest, BulkDeleteResponse, FileStatusEnum } from '../../../../types/openapi';
|
|
2
|
+
import { GetFavoritesParams } from '../../../types/favorites';
|
|
3
|
+
import { PaginatedData } from '../../../types/paginatedData';
|
|
4
|
+
import { AllFileCreateRequest, DeviceFile } from '../../../types/files';
|
|
5
|
+
import { RecentFile } from '../../../types/recentFiles.types';
|
|
6
|
+
import { Mutable } from '../../../types/ts';
|
|
7
|
+
|
|
8
|
+
type CompactFolder = Mutable<FolderFolder>;
|
|
9
|
+
type FolderItemsFetcher = (folderId: Folder['id'] | undefined, options?: {
|
|
10
|
+
justFetch: boolean;
|
|
11
|
+
setSelectedFolder: boolean;
|
|
12
|
+
}) => Promise<FolderRetrieve>;
|
|
13
|
+
type FolderCreator = (payload: Omit<FolderCreateRequest, 'instance_id'>) => Promise<FolderRetrieve>;
|
|
14
|
+
type FolderUpdater = (payload: FolderUpdateRequest & {
|
|
15
|
+
id: Folder['id'];
|
|
16
|
+
}) => Promise<FolderRetrieve>;
|
|
17
|
+
type FolderDeleter = (payload: Folder['id']) => Promise<void>;
|
|
18
|
+
type FoldersDeleter = (payload: BulkDeleteRequest) => Promise<BulkDeleteResponse>;
|
|
19
|
+
type FileCreator = (payload: Omit<AllFileCreateRequest, 'instance_id'>) => Promise<FileRetrieve>;
|
|
20
|
+
type FileUpdater = (payload: FileUpdateRequest & {
|
|
21
|
+
id: File['id'];
|
|
22
|
+
}) => Promise<FileRetrieve>;
|
|
23
|
+
type FileOpener = (payload: {
|
|
24
|
+
fileId: MiniFile['id'];
|
|
25
|
+
pageIndex?: MiniPage['page_index'];
|
|
26
|
+
newTab?: boolean;
|
|
27
|
+
}) => void;
|
|
28
|
+
type FileDeleter = (payload: MiniFile['id']) => Promise<MiniFile['id']>;
|
|
29
|
+
type FilesDeleter = (payload: BulkDeleteRequest) => Promise<BulkDeleteResponse>;
|
|
30
|
+
type FileFetcher = (payload: File['id']) => Promise<FileRetrieve>;
|
|
31
|
+
type FilesFoldersDeleter = (payload: BulkDeleteRequest) => Promise<BulkDeleteResponse>;
|
|
32
|
+
type FavoriteCreator = (payload: FavoriteCreateRequest) => Promise<Favorite>;
|
|
33
|
+
type FavoriteDeleter = (payload: Favorite['id']) => Promise<void>;
|
|
34
|
+
type FavoritesDeleter = (payload: BulkDeleteRequest) => Promise<BulkDeleteResponse>;
|
|
35
|
+
type FavoritesFetcher = (payload?: GetFavoritesParams) => Promise<PaginatedData<Favorite>>;
|
|
36
|
+
type FavoritesSetter = (favorites: Favorite[]) => void;
|
|
37
|
+
type RecentFilesFetcher = () => Promise<RecentFile[]>;
|
|
38
|
+
type SelectDeviceFile = () => Promise<DeviceFile>;
|
|
39
|
+
type CompactFile = Pick<File, 'id' | 'name' | 'thumbnail_url' | 'tags' | 'created_by' | 'modified_at' | 'status' | 'content_type'>;
|
|
40
|
+
type ItemsMoverItem = {
|
|
41
|
+
id: File['id'] | Folder['id'];
|
|
42
|
+
type: 'file' | 'folder';
|
|
43
|
+
};
|
|
44
|
+
type ItemsMover = (folderId: Folder['id'], items: ItemsMoverItem[]) => Promise<FolderRetrieve>;
|
|
45
|
+
type MetadataTemplateFetcher = () => Promise<PaginatedData<MetadataTemplate> | null>;
|
|
46
|
+
declare function setFavorites(favorites: Favorite[]): void;
|
|
47
|
+
declare function setCurrentFolder(folderId?: FolderRetrieve['id'], folderName?: FolderRetrieve['name'], folderPath?: FolderRetrieve['path']): void;
|
|
48
|
+
declare function setSearchQuery(searchQuery: string): void;
|
|
49
|
+
declare function clearTimeouts(): void;
|
|
50
|
+
declare function init({ onFolderFetch, onFolderCreate, onFolderUpdate, onFolderDelete, onFoldersDelete, onFileCreate, onFileUpdate, onFileOpen, onFileDelete, onFilesDelete, onFileFetch, onItemsMove, onFavoriteCreate, onFavoriteDelete, onFavoritesDelete, onFavoritesFetch, onRecentFilesFetch, onSelectDeviceFile, onMetadataTemplateFetch, }: {
|
|
51
|
+
onFolderFetch: FolderItemsFetcher;
|
|
52
|
+
onFolderCreate: FolderCreator;
|
|
53
|
+
onFolderUpdate: FolderUpdater;
|
|
54
|
+
onFolderDelete: FolderDeleter;
|
|
55
|
+
onFoldersDelete: FoldersDeleter;
|
|
56
|
+
onFileCreate: FileCreator;
|
|
57
|
+
onFileUpdate: FileUpdater;
|
|
58
|
+
onFileOpen: FileOpener;
|
|
59
|
+
onFileDelete: FileDeleter;
|
|
60
|
+
onFilesDelete: FilesDeleter;
|
|
61
|
+
onFileFetch: FileFetcher;
|
|
62
|
+
onItemsMove: ItemsMover;
|
|
63
|
+
onFavoriteCreate: FavoriteCreator;
|
|
64
|
+
onFavoriteDelete: FavoriteDeleter;
|
|
65
|
+
onFavoritesDelete: FavoritesDeleter;
|
|
66
|
+
onFavoritesFetch: FavoritesFetcher;
|
|
67
|
+
onRecentFilesFetch: RecentFilesFetcher;
|
|
68
|
+
onSelectDeviceFile?: SelectDeviceFile;
|
|
69
|
+
onMetadataTemplateFetch?: MetadataTemplateFetcher;
|
|
70
|
+
}): void;
|
|
71
|
+
export type { FolderItemsFetcher, FolderCreator, FolderUpdater, FolderDeleter, FoldersDeleter, FileCreator, FileUpdater, FileOpener, FileDeleter, FilesDeleter, FileFetcher, ItemsMoverItem, ItemsMover, FavoritesFetcher, FavoriteCreator, FavoriteDeleter, FavoritesDeleter, FavoritesSetter, CompactFile, CompactFolder, RecentFilesFetcher, SelectDeviceFile, MetadataTemplateFetcher, };
|
|
72
|
+
declare const _default: () => {
|
|
73
|
+
state: {
|
|
74
|
+
readonly fileOpener: FileOpener | null;
|
|
75
|
+
readonly fileDeleter: FileDeleter | null;
|
|
76
|
+
readonly filesDeleter: FilesDeleter | null;
|
|
77
|
+
readonly folderItemsFetcher: FolderItemsFetcher | null;
|
|
78
|
+
readonly folderCreator: FolderCreator | null;
|
|
79
|
+
readonly folderUpdater: FolderUpdater | null;
|
|
80
|
+
readonly folderDeleter: FolderDeleter | null;
|
|
81
|
+
readonly foldersDeleter: FoldersDeleter | null;
|
|
82
|
+
readonly fileCreator: FileCreator | null;
|
|
83
|
+
readonly fileUpdater: FileUpdater | null;
|
|
84
|
+
readonly fileFetcher: FileFetcher | null;
|
|
85
|
+
readonly filesFoldersDeleter: FilesFoldersDeleter | null;
|
|
86
|
+
readonly favoritesFetcher: FavoritesFetcher | null;
|
|
87
|
+
readonly favoriteCreator: FavoriteCreator | null;
|
|
88
|
+
readonly favoriteDeleter: FavoriteDeleter | null;
|
|
89
|
+
readonly favoritesDeleter: FavoritesDeleter | null;
|
|
90
|
+
readonly favoritesSetter: FavoritesSetter | null;
|
|
91
|
+
readonly recentFilesFetcher: RecentFilesFetcher | null;
|
|
92
|
+
readonly selectDeviceFile?: SelectDeviceFile | null;
|
|
93
|
+
readonly metadataTemplateFetcher?: MetadataTemplateFetcher | null;
|
|
94
|
+
readonly itemsMover: ItemsMover | null;
|
|
95
|
+
readonly convertingFileIdsTimeout: {
|
|
96
|
+
readonly ref: () => NodeJS.Timeout;
|
|
97
|
+
readonly unref: () => NodeJS.Timeout;
|
|
98
|
+
readonly hasRef: () => boolean;
|
|
99
|
+
readonly refresh: () => NodeJS.Timeout;
|
|
100
|
+
readonly [Symbol.toPrimitive]: () => number;
|
|
101
|
+
readonly [Symbol.dispose]: () => void;
|
|
102
|
+
} | null;
|
|
103
|
+
readonly isUpdatingFolderItems: boolean;
|
|
104
|
+
readonly isFetchingFolderItems: boolean;
|
|
105
|
+
readonly fetchingFolderId: Folder["id"];
|
|
106
|
+
readonly isFetchingSelectedFile: boolean;
|
|
107
|
+
readonly isFetchingSelectedFolder: boolean;
|
|
108
|
+
readonly isFetchingRecentFiles: boolean;
|
|
109
|
+
readonly isFetchingFavorites: boolean;
|
|
110
|
+
readonly isCreatingFavorite: boolean;
|
|
111
|
+
readonly isDeletingFavorite: boolean;
|
|
112
|
+
readonly isMetadataTemplateLoaded: boolean;
|
|
113
|
+
readonly folders: readonly {
|
|
114
|
+
readonly id: string;
|
|
115
|
+
readonly name: string;
|
|
116
|
+
readonly files_count: number;
|
|
117
|
+
readonly folders_count: number;
|
|
118
|
+
readonly thumbnail_url: string | null;
|
|
119
|
+
readonly file_thumbnail_urls: readonly string[];
|
|
120
|
+
}[];
|
|
121
|
+
readonly files: readonly {
|
|
122
|
+
readonly status: FileStatusEnum;
|
|
123
|
+
readonly name?: string;
|
|
124
|
+
readonly id: string;
|
|
125
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
126
|
+
readonly thumbnail_url: string | null;
|
|
127
|
+
readonly tags?: readonly string[] | undefined;
|
|
128
|
+
readonly created_by: {
|
|
129
|
+
readonly id: number;
|
|
130
|
+
readonly name: string;
|
|
131
|
+
readonly email?: string;
|
|
132
|
+
};
|
|
133
|
+
readonly modified_at: string;
|
|
134
|
+
}[];
|
|
135
|
+
readonly recent: readonly {
|
|
136
|
+
readonly name?: string;
|
|
137
|
+
readonly id: string;
|
|
138
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
139
|
+
readonly thumbnail_url: string | null;
|
|
140
|
+
readonly instance_id: string;
|
|
141
|
+
}[];
|
|
142
|
+
readonly selectedFile: {
|
|
143
|
+
readonly id: string;
|
|
144
|
+
readonly global_id: string;
|
|
145
|
+
readonly name?: string;
|
|
146
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
147
|
+
readonly size: number | null;
|
|
148
|
+
readonly status: FileStatusEnum;
|
|
149
|
+
readonly version: {
|
|
150
|
+
readonly id: string;
|
|
151
|
+
readonly comment: string;
|
|
152
|
+
readonly created_at: string;
|
|
153
|
+
};
|
|
154
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
155
|
+
readonly content_extension: string | null;
|
|
156
|
+
readonly content_length: number | null;
|
|
157
|
+
readonly content_url: string | null;
|
|
158
|
+
readonly content_thumbnails: readonly string[];
|
|
159
|
+
readonly original_extension: string | null;
|
|
160
|
+
readonly thumbnail_url: string | null;
|
|
161
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum;
|
|
162
|
+
readonly zip_size: number | null;
|
|
163
|
+
readonly zip_url: string | null;
|
|
164
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum;
|
|
165
|
+
readonly role: import('../../../../types/openapi').CollaborationRoleEnum;
|
|
166
|
+
readonly permissions?: {
|
|
167
|
+
readonly can_download?: boolean;
|
|
168
|
+
readonly can_share?: boolean;
|
|
169
|
+
} | undefined;
|
|
170
|
+
readonly pspdfkit_server_url: string | null;
|
|
171
|
+
readonly pspdfkit_auth_payload: {
|
|
172
|
+
readonly [x: string]: any;
|
|
173
|
+
} | null;
|
|
174
|
+
readonly metadata?: {
|
|
175
|
+
readonly [x: string]: any;
|
|
176
|
+
} | undefined;
|
|
177
|
+
readonly app_metadata?: {
|
|
178
|
+
readonly [x: string]: any;
|
|
179
|
+
} | undefined;
|
|
180
|
+
readonly tags?: readonly string[] | undefined;
|
|
181
|
+
readonly published_at: string | null;
|
|
182
|
+
readonly expires_at?: string | null;
|
|
183
|
+
readonly instance_id: string;
|
|
184
|
+
readonly folder_id?: string;
|
|
185
|
+
readonly shared_link: {
|
|
186
|
+
readonly url: string;
|
|
187
|
+
readonly short_url?: string | null;
|
|
188
|
+
};
|
|
189
|
+
readonly owned_by: {
|
|
190
|
+
readonly id: number;
|
|
191
|
+
readonly name: string;
|
|
192
|
+
readonly email?: string;
|
|
193
|
+
};
|
|
194
|
+
readonly created_at: string;
|
|
195
|
+
readonly created_by: {
|
|
196
|
+
readonly id: number;
|
|
197
|
+
readonly name: string;
|
|
198
|
+
readonly email?: string;
|
|
199
|
+
};
|
|
200
|
+
readonly modified_at: string;
|
|
201
|
+
readonly modified_by: {
|
|
202
|
+
readonly id: number;
|
|
203
|
+
readonly name: string;
|
|
204
|
+
readonly email?: string;
|
|
205
|
+
};
|
|
206
|
+
} | null;
|
|
207
|
+
readonly selectedFolder: {
|
|
208
|
+
readonly id: string;
|
|
209
|
+
readonly name: string;
|
|
210
|
+
readonly instance_id: string;
|
|
211
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum;
|
|
212
|
+
readonly materialized_path: string;
|
|
213
|
+
readonly depth: number;
|
|
214
|
+
readonly owned_by: {
|
|
215
|
+
readonly id: number;
|
|
216
|
+
readonly name: string;
|
|
217
|
+
readonly email?: string;
|
|
218
|
+
};
|
|
219
|
+
readonly files: readonly {
|
|
220
|
+
readonly id: string;
|
|
221
|
+
readonly name: string;
|
|
222
|
+
readonly status: FileStatusEnum;
|
|
223
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
224
|
+
readonly thumbnail_url: string;
|
|
225
|
+
readonly tags: readonly string[];
|
|
226
|
+
readonly created_by: {
|
|
227
|
+
readonly id: number;
|
|
228
|
+
readonly name: string;
|
|
229
|
+
readonly email?: string;
|
|
230
|
+
};
|
|
231
|
+
readonly owned_by: {
|
|
232
|
+
readonly id: number;
|
|
233
|
+
readonly name: string;
|
|
234
|
+
readonly email?: string;
|
|
235
|
+
};
|
|
236
|
+
readonly modified_at: string;
|
|
237
|
+
}[];
|
|
238
|
+
readonly files_count: number;
|
|
239
|
+
readonly file_thumbnail_urls: readonly string[];
|
|
240
|
+
readonly thumbnail_url: string | null;
|
|
241
|
+
readonly folders: readonly {
|
|
242
|
+
readonly id: string;
|
|
243
|
+
readonly name: string;
|
|
244
|
+
readonly files_count: number;
|
|
245
|
+
readonly folders_count: number;
|
|
246
|
+
readonly thumbnail_url: string | null;
|
|
247
|
+
readonly file_thumbnail_urls: readonly string[];
|
|
248
|
+
}[];
|
|
249
|
+
readonly folders_count: number;
|
|
250
|
+
readonly path: readonly {
|
|
251
|
+
readonly id: string;
|
|
252
|
+
readonly name: string;
|
|
253
|
+
readonly files_count: number;
|
|
254
|
+
readonly folders_count: number;
|
|
255
|
+
readonly thumbnail_url: string | null;
|
|
256
|
+
readonly file_thumbnail_urls: readonly string[];
|
|
257
|
+
}[];
|
|
258
|
+
readonly created_at: string;
|
|
259
|
+
readonly created_by: {
|
|
260
|
+
readonly id: number;
|
|
261
|
+
readonly name: string;
|
|
262
|
+
readonly email?: string;
|
|
263
|
+
};
|
|
264
|
+
readonly modified_at: string;
|
|
265
|
+
readonly modified_by: {
|
|
266
|
+
readonly id: number;
|
|
267
|
+
readonly name: string;
|
|
268
|
+
readonly email?: string;
|
|
269
|
+
};
|
|
270
|
+
} | null;
|
|
271
|
+
readonly favorites: {
|
|
272
|
+
readonly [x: string]: {
|
|
273
|
+
readonly id: string;
|
|
274
|
+
readonly name: string;
|
|
275
|
+
readonly thumbnail_url: string;
|
|
276
|
+
readonly file: {
|
|
277
|
+
readonly id: string;
|
|
278
|
+
readonly name: string;
|
|
279
|
+
readonly content_type: string | null;
|
|
280
|
+
readonly tags: readonly string[];
|
|
281
|
+
} | null;
|
|
282
|
+
readonly page: {
|
|
283
|
+
readonly id: string;
|
|
284
|
+
readonly page_index?: number;
|
|
285
|
+
} | null;
|
|
286
|
+
readonly folder: {
|
|
287
|
+
readonly id: string;
|
|
288
|
+
readonly name: string;
|
|
289
|
+
} | null;
|
|
290
|
+
readonly created_at: string;
|
|
291
|
+
readonly created_by: {
|
|
292
|
+
readonly id: number;
|
|
293
|
+
readonly name: string;
|
|
294
|
+
readonly email?: string;
|
|
295
|
+
};
|
|
296
|
+
readonly modified_at: string;
|
|
297
|
+
readonly modified_by: {
|
|
298
|
+
readonly id: number;
|
|
299
|
+
readonly name: string;
|
|
300
|
+
readonly email?: string;
|
|
301
|
+
};
|
|
302
|
+
readonly owned_by: {
|
|
303
|
+
readonly id: number;
|
|
304
|
+
readonly name: string;
|
|
305
|
+
readonly email?: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
readonly currentFolderPath: readonly {
|
|
310
|
+
readonly id: string;
|
|
311
|
+
readonly name: string;
|
|
312
|
+
readonly files_count: number;
|
|
313
|
+
readonly folders_count: number;
|
|
314
|
+
readonly thumbnail_url: string | null;
|
|
315
|
+
readonly file_thumbnail_urls: readonly string[];
|
|
316
|
+
}[];
|
|
317
|
+
readonly currentFolderName: Awaited<ReturnType<FolderItemsFetcher>>["name"];
|
|
318
|
+
readonly currentFolderId: Awaited<ReturnType<FolderItemsFetcher>>["id"];
|
|
319
|
+
readonly sectionFieldsDict: {
|
|
320
|
+
readonly [x: string]: any;
|
|
321
|
+
};
|
|
322
|
+
readonly searchQuery: string;
|
|
323
|
+
};
|
|
324
|
+
getters: {
|
|
325
|
+
readonly sortedFiles: readonly {
|
|
326
|
+
readonly status: FileStatusEnum;
|
|
327
|
+
readonly name?: string;
|
|
328
|
+
readonly id: string;
|
|
329
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
330
|
+
readonly thumbnail_url: string | null;
|
|
331
|
+
readonly tags?: readonly string[] | undefined;
|
|
332
|
+
readonly created_by: {
|
|
333
|
+
readonly id: number;
|
|
334
|
+
readonly name: string;
|
|
335
|
+
readonly email?: string;
|
|
336
|
+
};
|
|
337
|
+
readonly modified_at: string;
|
|
338
|
+
}[];
|
|
339
|
+
readonly selectedFileMetadata: readonly {
|
|
340
|
+
readonly label: any;
|
|
341
|
+
readonly value: any;
|
|
342
|
+
}[];
|
|
343
|
+
};
|
|
344
|
+
actions: {
|
|
345
|
+
init: typeof init;
|
|
346
|
+
getInitialState: () => {
|
|
347
|
+
fileOpener: null;
|
|
348
|
+
fileDeleter: null;
|
|
349
|
+
filesDeleter: null;
|
|
350
|
+
folderItemsFetcher: null;
|
|
351
|
+
folderCreator: null;
|
|
352
|
+
folderUpdater: null;
|
|
353
|
+
folderDeleter: null;
|
|
354
|
+
foldersDeleter: null;
|
|
355
|
+
fileCreator: null;
|
|
356
|
+
fileUpdater: null;
|
|
357
|
+
fileFetcher: null;
|
|
358
|
+
filesFoldersDeleter: null;
|
|
359
|
+
favoritesFetcher: null;
|
|
360
|
+
favoriteCreator: null;
|
|
361
|
+
favoriteDeleter: null;
|
|
362
|
+
favoritesDeleter: null;
|
|
363
|
+
favoritesSetter: null;
|
|
364
|
+
recentFilesFetcher: null;
|
|
365
|
+
itemsMover: null;
|
|
366
|
+
convertingFileIdsTimeout: null;
|
|
367
|
+
isFetchingFolderItems: boolean;
|
|
368
|
+
fetchingFolderId: string;
|
|
369
|
+
isUpdatingFolderItems: boolean;
|
|
370
|
+
isFetchingSelectedFile: boolean;
|
|
371
|
+
isFetchingSelectedFolder: boolean;
|
|
372
|
+
isFetchingFavorites: boolean;
|
|
373
|
+
isCreatingFavorite: boolean;
|
|
374
|
+
isDeletingFavorite: boolean;
|
|
375
|
+
isFetchingRecentFiles: boolean;
|
|
376
|
+
isMetadataTemplateLoaded: boolean;
|
|
377
|
+
metadataTemplateFetcher: null;
|
|
378
|
+
folders: never[];
|
|
379
|
+
files: never[];
|
|
380
|
+
recent: never[];
|
|
381
|
+
selectedFile: null;
|
|
382
|
+
selectedFolder: null;
|
|
383
|
+
favorites: {};
|
|
384
|
+
currentFolderPath: never[];
|
|
385
|
+
currentFolderName: string;
|
|
386
|
+
currentFolderId: string;
|
|
387
|
+
sectionFieldsDict: {};
|
|
388
|
+
searchQuery: string;
|
|
389
|
+
};
|
|
390
|
+
setFavorites: typeof setFavorites;
|
|
391
|
+
setCurrentFolder: typeof setCurrentFolder;
|
|
392
|
+
setSearchQuery: typeof setSearchQuery;
|
|
393
|
+
onUploadFilesRefetchFolder: import('lodash').DebouncedFunc<() => Promise<void>>;
|
|
394
|
+
clearTimeouts: typeof clearTimeouts;
|
|
395
|
+
reset: () => {
|
|
396
|
+
fileOpener: FileOpener | null;
|
|
397
|
+
fileDeleter: FileDeleter | null;
|
|
398
|
+
filesDeleter: FilesDeleter | null;
|
|
399
|
+
folderItemsFetcher: FolderItemsFetcher | null;
|
|
400
|
+
folderCreator: FolderCreator | null;
|
|
401
|
+
folderUpdater: FolderUpdater | null;
|
|
402
|
+
folderDeleter: FolderDeleter | null;
|
|
403
|
+
foldersDeleter: FoldersDeleter | null;
|
|
404
|
+
fileCreator: FileCreator | null;
|
|
405
|
+
fileUpdater: FileUpdater | null;
|
|
406
|
+
fileFetcher: FileFetcher | null;
|
|
407
|
+
filesFoldersDeleter: FilesFoldersDeleter | null;
|
|
408
|
+
favoritesFetcher: FavoritesFetcher | null;
|
|
409
|
+
favoriteCreator: FavoriteCreator | null;
|
|
410
|
+
favoriteDeleter: FavoriteDeleter | null;
|
|
411
|
+
favoritesDeleter: FavoritesDeleter | null;
|
|
412
|
+
favoritesSetter: FavoritesSetter | null;
|
|
413
|
+
recentFilesFetcher: RecentFilesFetcher | null;
|
|
414
|
+
selectDeviceFile?: SelectDeviceFile | null;
|
|
415
|
+
metadataTemplateFetcher?: MetadataTemplateFetcher | null;
|
|
416
|
+
itemsMover: ItemsMover | null;
|
|
417
|
+
convertingFileIdsTimeout: {
|
|
418
|
+
ref: () => NodeJS.Timeout;
|
|
419
|
+
unref: () => NodeJS.Timeout;
|
|
420
|
+
hasRef: () => boolean;
|
|
421
|
+
refresh: () => NodeJS.Timeout;
|
|
422
|
+
[Symbol.toPrimitive]: () => number;
|
|
423
|
+
[Symbol.dispose]: () => void;
|
|
424
|
+
} | null;
|
|
425
|
+
isUpdatingFolderItems: boolean;
|
|
426
|
+
isFetchingFolderItems: boolean;
|
|
427
|
+
fetchingFolderId: Folder["id"];
|
|
428
|
+
isFetchingSelectedFile: boolean;
|
|
429
|
+
isFetchingSelectedFolder: boolean;
|
|
430
|
+
isFetchingRecentFiles: boolean;
|
|
431
|
+
isFetchingFavorites: boolean;
|
|
432
|
+
isCreatingFavorite: boolean;
|
|
433
|
+
isDeletingFavorite: boolean;
|
|
434
|
+
isMetadataTemplateLoaded: boolean;
|
|
435
|
+
folders: {
|
|
436
|
+
id: string;
|
|
437
|
+
name: string;
|
|
438
|
+
files_count: number;
|
|
439
|
+
folders_count: number;
|
|
440
|
+
thumbnail_url: string | null;
|
|
441
|
+
file_thumbnail_urls: Array<string>;
|
|
442
|
+
}[];
|
|
443
|
+
files: {
|
|
444
|
+
readonly status: FileStatusEnum;
|
|
445
|
+
name?: string;
|
|
446
|
+
readonly id: string;
|
|
447
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
448
|
+
readonly thumbnail_url: string | null;
|
|
449
|
+
tags?: Array<string>;
|
|
450
|
+
readonly created_by: {
|
|
451
|
+
readonly id: number;
|
|
452
|
+
readonly name: string;
|
|
453
|
+
email?: string;
|
|
454
|
+
};
|
|
455
|
+
readonly modified_at: string;
|
|
456
|
+
}[];
|
|
457
|
+
recent: {
|
|
458
|
+
name?: string;
|
|
459
|
+
readonly id: string;
|
|
460
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
461
|
+
readonly thumbnail_url: string | null;
|
|
462
|
+
readonly instance_id: string;
|
|
463
|
+
}[];
|
|
464
|
+
selectedFile: {
|
|
465
|
+
readonly id: string;
|
|
466
|
+
readonly global_id: string;
|
|
467
|
+
name?: string;
|
|
468
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
469
|
+
readonly size: number | null;
|
|
470
|
+
readonly status: FileStatusEnum;
|
|
471
|
+
readonly version: {
|
|
472
|
+
readonly id: string;
|
|
473
|
+
readonly comment: string;
|
|
474
|
+
readonly created_at: string;
|
|
475
|
+
};
|
|
476
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
477
|
+
readonly content_extension: string | null;
|
|
478
|
+
readonly content_length: number | null;
|
|
479
|
+
readonly content_url: string | null;
|
|
480
|
+
readonly content_thumbnails: Array<string>;
|
|
481
|
+
readonly original_extension: string | null;
|
|
482
|
+
readonly thumbnail_url: string | null;
|
|
483
|
+
download_type?: import('../../../../types/openapi').DownloadTypeEnum;
|
|
484
|
+
readonly zip_size: number | null;
|
|
485
|
+
readonly zip_url: string | null;
|
|
486
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum;
|
|
487
|
+
readonly role: import('../../../../types/openapi').CollaborationRoleEnum;
|
|
488
|
+
permissions?: {
|
|
489
|
+
can_download?: boolean;
|
|
490
|
+
can_share?: boolean;
|
|
491
|
+
} | undefined;
|
|
492
|
+
readonly pspdfkit_server_url: string | null;
|
|
493
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
494
|
+
metadata?: Record<string, any>;
|
|
495
|
+
app_metadata?: Record<string, any>;
|
|
496
|
+
tags?: Array<string>;
|
|
497
|
+
readonly published_at: string | null;
|
|
498
|
+
expires_at?: string | null;
|
|
499
|
+
readonly instance_id: string;
|
|
500
|
+
folder_id?: string;
|
|
501
|
+
readonly shared_link: {
|
|
502
|
+
readonly url: string;
|
|
503
|
+
short_url?: string | null;
|
|
504
|
+
};
|
|
505
|
+
readonly owned_by: {
|
|
506
|
+
readonly id: number;
|
|
507
|
+
readonly name: string;
|
|
508
|
+
email?: string;
|
|
509
|
+
};
|
|
510
|
+
readonly created_at: string;
|
|
511
|
+
readonly created_by: {
|
|
512
|
+
readonly id: number;
|
|
513
|
+
readonly name: string;
|
|
514
|
+
email?: string;
|
|
515
|
+
};
|
|
516
|
+
readonly modified_at: string;
|
|
517
|
+
readonly modified_by: {
|
|
518
|
+
readonly id: number;
|
|
519
|
+
readonly name: string;
|
|
520
|
+
email?: string;
|
|
521
|
+
};
|
|
522
|
+
} | null;
|
|
523
|
+
selectedFolder: {
|
|
524
|
+
readonly id: string;
|
|
525
|
+
name: string;
|
|
526
|
+
readonly instance_id: string;
|
|
527
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum;
|
|
528
|
+
readonly materialized_path: string;
|
|
529
|
+
readonly depth: number;
|
|
530
|
+
readonly owned_by: {
|
|
531
|
+
readonly id: number;
|
|
532
|
+
readonly name: string;
|
|
533
|
+
email?: string;
|
|
534
|
+
};
|
|
535
|
+
readonly files: {
|
|
536
|
+
readonly id: string;
|
|
537
|
+
readonly name: string;
|
|
538
|
+
readonly status: FileStatusEnum;
|
|
539
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
540
|
+
readonly thumbnail_url: string;
|
|
541
|
+
readonly tags: Array<string>;
|
|
542
|
+
readonly created_by: {
|
|
543
|
+
readonly id: number;
|
|
544
|
+
readonly name: string;
|
|
545
|
+
email?: string;
|
|
546
|
+
};
|
|
547
|
+
readonly owned_by: {
|
|
548
|
+
readonly id: number;
|
|
549
|
+
readonly name: string;
|
|
550
|
+
email?: string;
|
|
551
|
+
};
|
|
552
|
+
readonly modified_at: string;
|
|
553
|
+
}[];
|
|
554
|
+
readonly files_count: number;
|
|
555
|
+
readonly file_thumbnail_urls: Array<string>;
|
|
556
|
+
readonly thumbnail_url: string | null;
|
|
557
|
+
readonly folders: {
|
|
558
|
+
readonly id: string;
|
|
559
|
+
name: string;
|
|
560
|
+
readonly files_count: number;
|
|
561
|
+
readonly folders_count: number;
|
|
562
|
+
readonly thumbnail_url: string | null;
|
|
563
|
+
readonly file_thumbnail_urls: Array<string>;
|
|
564
|
+
}[];
|
|
565
|
+
readonly folders_count: number;
|
|
566
|
+
readonly path: {
|
|
567
|
+
readonly id: string;
|
|
568
|
+
name: string;
|
|
569
|
+
readonly files_count: number;
|
|
570
|
+
readonly folders_count: number;
|
|
571
|
+
readonly thumbnail_url: string | null;
|
|
572
|
+
readonly file_thumbnail_urls: Array<string>;
|
|
573
|
+
}[];
|
|
574
|
+
readonly created_at: string;
|
|
575
|
+
readonly created_by: {
|
|
576
|
+
readonly id: number;
|
|
577
|
+
readonly name: string;
|
|
578
|
+
email?: string;
|
|
579
|
+
};
|
|
580
|
+
readonly modified_at: string;
|
|
581
|
+
readonly modified_by: {
|
|
582
|
+
readonly id: number;
|
|
583
|
+
readonly name: string;
|
|
584
|
+
email?: string;
|
|
585
|
+
};
|
|
586
|
+
} | null;
|
|
587
|
+
favorites: Record<MiniPage["id"] | File["id"] | Folder["id"], Favorite>;
|
|
588
|
+
currentFolderPath: {
|
|
589
|
+
readonly id: string;
|
|
590
|
+
name: string;
|
|
591
|
+
readonly files_count: number;
|
|
592
|
+
readonly folders_count: number;
|
|
593
|
+
readonly thumbnail_url: string | null;
|
|
594
|
+
readonly file_thumbnail_urls: Array<string>;
|
|
595
|
+
}[];
|
|
596
|
+
currentFolderName: Awaited<ReturnType<FolderItemsFetcher>>["name"];
|
|
597
|
+
currentFolderId: Awaited<ReturnType<FolderItemsFetcher>>["id"];
|
|
598
|
+
sectionFieldsDict: Record<string, any>;
|
|
599
|
+
searchQuery: string;
|
|
600
|
+
} & {
|
|
601
|
+
fileOpener: null;
|
|
602
|
+
fileDeleter: null;
|
|
603
|
+
filesDeleter: null;
|
|
604
|
+
folderItemsFetcher: null;
|
|
605
|
+
folderCreator: null;
|
|
606
|
+
folderUpdater: null;
|
|
607
|
+
folderDeleter: null;
|
|
608
|
+
foldersDeleter: null;
|
|
609
|
+
fileCreator: null;
|
|
610
|
+
fileUpdater: null;
|
|
611
|
+
fileFetcher: null;
|
|
612
|
+
filesFoldersDeleter: null;
|
|
613
|
+
favoritesFetcher: null;
|
|
614
|
+
favoriteCreator: null;
|
|
615
|
+
favoriteDeleter: null;
|
|
616
|
+
favoritesDeleter: null;
|
|
617
|
+
favoritesSetter: null;
|
|
618
|
+
recentFilesFetcher: null;
|
|
619
|
+
itemsMover: null;
|
|
620
|
+
convertingFileIdsTimeout: null;
|
|
621
|
+
isFetchingFolderItems: boolean;
|
|
622
|
+
fetchingFolderId: string;
|
|
623
|
+
isUpdatingFolderItems: boolean;
|
|
624
|
+
isFetchingSelectedFile: boolean;
|
|
625
|
+
isFetchingSelectedFolder: boolean;
|
|
626
|
+
isFetchingFavorites: boolean;
|
|
627
|
+
isCreatingFavorite: boolean;
|
|
628
|
+
isDeletingFavorite: boolean;
|
|
629
|
+
isFetchingRecentFiles: boolean;
|
|
630
|
+
isMetadataTemplateLoaded: boolean;
|
|
631
|
+
metadataTemplateFetcher: null;
|
|
632
|
+
folders: never[];
|
|
633
|
+
files: never[];
|
|
634
|
+
recent: never[];
|
|
635
|
+
selectedFile: null;
|
|
636
|
+
selectedFolder: null;
|
|
637
|
+
favorites: {};
|
|
638
|
+
currentFolderPath: never[];
|
|
639
|
+
currentFolderName: string;
|
|
640
|
+
currentFolderId: string;
|
|
641
|
+
sectionFieldsDict: {};
|
|
642
|
+
searchQuery: string;
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|