@tridion-sites/extensions 2.0.1 → 2.0.2
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/CHANGELOG.md +7 -0
- package/dist/dts/api/activitiesExplorer/hooks/index.d.ts +2 -0
- package/dist/dts/api/activitiesExplorer/hooks/useActivitiesExplorer.d.ts +63 -0
- package/dist/dts/api/activitiesExplorer/hooks/useActivitiesExplorerTable.d.ts +41 -0
- package/dist/dts/api/activitiesExplorer/index.d.ts +1 -0
- package/dist/dts/api/contentExplorer/components/index.d.ts +2 -0
- package/dist/dts/api/contentExplorer/components/propertiesGrid.d.ts +29 -0
- package/dist/dts/api/contentExplorer/components/propertiesList.d.ts +21 -0
- package/dist/dts/api/contentExplorer/hierarchy.d.ts +102 -0
- package/dist/dts/api/contentExplorer/hooks/index.d.ts +3 -0
- package/dist/dts/api/contentExplorer/hooks/useContentExplorer.d.ts +123 -0
- package/dist/dts/api/contentExplorer/hooks/useContentExplorerTable.d.ts +39 -0
- package/dist/dts/api/contentExplorer/hooks/useContentExplorerTree.d.ts +27 -0
- package/dist/dts/api/contentExplorer/index.d.ts +4 -0
- package/dist/dts/api/contentExplorer/utils/hierarchyUtils.d.ts +80 -0
- package/dist/dts/api/contentExplorer/utils/index.d.ts +1 -0
- package/dist/dts/api/editors/bundle/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/bundle/hooks/useBundleEditor.d.ts +32 -0
- package/dist/dts/api/editors/category/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/category/hooks/useCategoryEditor.d.ts +28 -0
- package/dist/dts/api/editors/component/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/component/hooks/useComponentEditor.d.ts +32 -0
- package/dist/dts/api/editors/folder/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/folder/hooks/useFolderEditor.d.ts +32 -0
- package/dist/dts/api/editors/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/hooks/useEditor.d.ts +40 -0
- package/dist/dts/api/editors/index.d.ts +8 -0
- package/dist/dts/api/editors/keyword/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/keyword/hooks/useKeywordEditor.d.ts +32 -0
- package/dist/dts/api/editors/page/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/page/hooks/usePageEditor.d.ts +40 -0
- package/dist/dts/api/editors/structureGroup/hooks/index.d.ts +1 -0
- package/dist/dts/api/editors/structureGroup/hooks/useStructureGroupEditor.d.ts +32 -0
- package/dist/dts/api/general/components/button.d.ts +33 -0
- package/dist/dts/api/general/components/icon.d.ts +19 -0
- package/dist/dts/api/general/components/index.d.ts +7 -0
- package/dist/dts/api/general/components/layout/block.d.ts +55 -0
- package/dist/dts/api/general/components/layout/center.d.ts +12 -0
- package/dist/dts/api/general/components/layout/flex.d.ts +50 -0
- package/dist/dts/api/general/components/layout/index.d.ts +4 -0
- package/dist/dts/api/general/components/layout/stack.d.ts +39 -0
- package/dist/dts/api/general/components/link.d.ts +29 -0
- package/dist/dts/api/general/components/modal.d.ts +61 -0
- package/dist/dts/api/general/components/text.d.ts +82 -0
- package/dist/dts/api/general/components/textLink.d.ts +16 -0
- package/dist/dts/api/general/globals/borderRadius.d.ts +15 -0
- package/dist/dts/api/general/globals/color.d.ts +41 -0
- package/dist/dts/api/general/globals/index.d.ts +6 -0
- package/dist/dts/api/general/globals/opacity.d.ts +16 -0
- package/dist/dts/api/general/globals/spacing.d.ts +19 -0
- package/dist/dts/api/general/globals/transitionDuration.d.ts +14 -0
- package/dist/dts/api/general/globals/zIndex.d.ts +18 -0
- package/dist/dts/api/general/hooks/index.d.ts +4 -0
- package/dist/dts/api/general/hooks/useConfirmation.d.ts +40 -0
- package/dist/dts/api/general/hooks/useModal.d.ts +68 -0
- package/dist/dts/api/general/hooks/useNotifications.d.ts +46 -0
- package/dist/dts/api/general/hooks/useUserProfile.d.ts +14 -0
- package/dist/dts/api/general/index.d.ts +6 -0
- package/dist/dts/api/general/mixins/accessibility.d.ts +50 -0
- package/dist/dts/api/general/mixins/backgroundColor.d.ts +10 -0
- package/dist/dts/api/general/mixins/clickable.d.ts +7 -0
- package/dist/dts/api/general/mixins/color.d.ts +10 -0
- package/dist/dts/api/general/mixins/customIcon.d.ts +10 -0
- package/dist/dts/api/general/mixins/focusBehavior.d.ts +13 -0
- package/dist/dts/api/general/mixins/index.d.ts +10 -0
- package/dist/dts/api/general/mixins/opacity.d.ts +11 -0
- package/dist/dts/api/general/mixins/sizing.d.ts +35 -0
- package/dist/dts/api/general/mixins/spacing.d.ts +16 -0
- package/dist/dts/api/general/mixins/tooltip.d.ts +9 -0
- package/dist/dts/api/general/mutations/batchMutationOptions.d.ts +6 -0
- package/dist/dts/api/general/mutations/index.d.ts +10 -0
- package/dist/dts/api/general/mutations/item/index.d.ts +24 -0
- package/dist/dts/api/general/mutations/item/useAutoClassifyItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useAutoClassifyItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useCopyItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useCopyItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useDeleteItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useDeleteItemsMutation.d.ts +22 -0
- package/dist/dts/api/general/mutations/item/useDemoteItemMutation.d.ts +15 -0
- package/dist/dts/api/general/mutations/item/useDemoteItemsMutation.d.ts +15 -0
- package/dist/dts/api/general/mutations/item/useFinishEditingItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useFinishEditingItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useLocalizeItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useLocalizeItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useMoveItemMutation.d.ts +24 -0
- package/dist/dts/api/general/mutations/item/useMoveItemsMutation.d.ts +24 -0
- package/dist/dts/api/general/mutations/item/usePromoteItemMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/item/usePromoteItemsMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/item/usePublishItemsMutation.d.ts +62 -0
- package/dist/dts/api/general/mutations/item/useRevertItemMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useRevertItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useRollbackItemMutation.d.ts +29 -0
- package/dist/dts/api/general/mutations/item/useUnlocalizeItemMutation.d.ts +21 -0
- package/dist/dts/api/general/mutations/item/useUnlocalizeItemsMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/item/useUnpublishItemsMutation.d.ts +46 -0
- package/dist/dts/api/general/mutations/item/useUpdateItemMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/mutationOptions.d.ts +38 -0
- package/dist/dts/api/general/mutations/mutationResult.d.ts +73 -0
- package/dist/dts/api/general/mutations/translation/index.d.ts +1 -0
- package/dist/dts/api/general/mutations/translation/useCreateTranslationJobMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/useAddToBundleMutation.d.ts +31 -0
- package/dist/dts/api/general/mutations/useChangeUserLanguageMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/useChangeUserLocaleMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/useRemoveFromBundleMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/useUploadMultimediaMutation.d.ts +52 -0
- package/dist/dts/api/general/mutations/workflow/index.d.ts +9 -0
- package/dist/dts/api/general/mutations/workflow/useAssignActivitiesMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/workflow/useAssignActivityMutation.d.ts +20 -0
- package/dist/dts/api/general/mutations/workflow/useFinishActivitiesMutation.d.ts +39 -0
- package/dist/dts/api/general/mutations/workflow/useFinishActivityMutation.d.ts +24 -0
- package/dist/dts/api/general/mutations/workflow/useRestartActivitiesMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/workflow/useRestartActivityMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/workflow/useStartActivitiesMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/workflow/useStartActivityMutation.d.ts +16 -0
- package/dist/dts/api/general/mutations/workflow/useStartWorkflowMutation.d.ts +16 -0
- package/dist/dts/api/general/queries/index.d.ts +10 -0
- package/dist/dts/api/general/queries/item/index.d.ts +14 -0
- package/dist/dts/api/general/queries/item/useItemBlueprintHierarchyQuery.d.ts +20 -0
- package/dist/dts/api/general/queries/item/useItemChildrenQuery.d.ts +20 -0
- package/dist/dts/api/general/queries/item/useItemClassifiedItemsQuery.d.ts +33 -0
- package/dist/dts/api/general/queries/item/useItemDefaultDataQuery.d.ts +26 -0
- package/dist/dts/api/general/queries/item/useItemHistoryQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/item/useItemPublishUrlsQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/item/useItemPublishedPagesQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/item/useItemPublishedToQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/item/useItemQuery.d.ts +20 -0
- package/dist/dts/api/general/queries/item/useItemTranslationInfoQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/item/useItemUsedByQuery.d.ts +25 -0
- package/dist/dts/api/general/queries/item/useItemUsesQuery.d.ts +21 -0
- package/dist/dts/api/general/queries/item/useItemsQuery.d.ts +28 -0
- package/dist/dts/api/general/queries/item/usePublicationBlueprintHierarchyQuery.d.ts +20 -0
- package/dist/dts/api/general/queries/lists/index.d.ts +6 -0
- package/dist/dts/api/general/queries/lists/useContainerItems.d.ts +32 -0
- package/dist/dts/api/general/queries/lists/useFavoritesQuery.d.ts +7 -0
- package/dist/dts/api/general/queries/lists/useItemsInProgressQuery.d.ts +25 -0
- package/dist/dts/api/general/queries/lists/usePublicationsQuery.d.ts +7 -0
- package/dist/dts/api/general/queries/lists/useUserGroupsQuery.d.ts +33 -0
- package/dist/dts/api/general/queries/lists/useUsersQuery.d.ts +38 -0
- package/dist/dts/api/general/queries/loadingState.d.ts +10 -0
- package/dist/dts/api/general/queries/publishing/index.d.ts +5 -0
- package/dist/dts/api/general/queries/publishing/useItemsToPublishQuery.d.ts +8 -0
- package/dist/dts/api/general/queries/publishing/useItemsToUnpublishQuery.d.ts +8 -0
- package/dist/dts/api/general/queries/publishing/usePublishTransactionsQuery.d.ts +40 -0
- package/dist/dts/api/general/queries/publishing/usePublishableTargetTypesQuery.d.ts +16 -0
- package/dist/dts/api/general/queries/publishing/useTargetTypesQuery.d.ts +7 -0
- package/dist/dts/api/general/queries/queryOptions.d.ts +67 -0
- package/dist/dts/api/general/queries/queryResult.d.ts +93 -0
- package/dist/dts/api/general/queries/search/index.d.ts +2 -0
- package/dist/dts/api/general/queries/search/useSearchInContainerQuery.d.ts +27 -0
- package/dist/dts/api/general/queries/search/useSystemSearchQuery.d.ts +26 -0
- package/dist/dts/api/general/queries/translation/index.d.ts +1 -0
- package/dist/dts/api/general/queries/translation/useDefaultTranslationJobQuery.d.ts +17 -0
- package/dist/dts/api/general/queries/useUserProfileQuery.d.ts +7 -0
- package/dist/dts/api/general/queries/workflow/index.d.ts +1 -0
- package/dist/dts/api/general/queries/workflow/useActivityInstancesQuery.d.ts +37 -0
- package/dist/dts/api/index.d.ts +5 -0
- package/dist/dts/api/publishingQueueExplorer/hooks/index.d.ts +2 -0
- package/dist/dts/api/publishingQueueExplorer/hooks/usePublishingQueueExplorer.d.ts +62 -0
- package/dist/dts/api/publishingQueueExplorer/hooks/usePublishingQueueExplorerTable.d.ts +41 -0
- package/dist/dts/api/publishingQueueExplorer/index.d.ts +1 -0
- package/dist/dts/apiBridge/activitiesExplorerApiStorage.d.ts +16 -0
- package/dist/dts/apiBridge/contentExplorerApiStorage.d.ts +32 -0
- package/dist/dts/apiBridge/editors/bundleEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/categoryEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/componentEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/editorsApiStorage.d.ts +28 -0
- package/dist/dts/apiBridge/editors/folderEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/index.d.ts +8 -0
- package/dist/dts/apiBridge/editors/keywordEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/pageEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/editors/structureGroupEditorApiStorage.d.ts +13 -0
- package/dist/dts/apiBridge/extensionApiBridge.d.ts +22 -0
- package/dist/dts/apiBridge/generalApiStorage.d.ts +144 -0
- package/dist/dts/apiBridge/index.d.ts +6 -0
- package/dist/dts/apiBridge/publishingQueueExplorerApiStorage.d.ts +16 -0
- package/dist/dts/apiWrappers/activitiesExplorer/hooks.d.ts +39 -0
- package/dist/dts/apiWrappers/activitiesExplorer/index.d.ts +1 -0
- package/dist/dts/apiWrappers/contentExplorer/components.d.ts +5 -0
- package/dist/dts/apiWrappers/contentExplorer/hooks.d.ts +58 -0
- package/dist/dts/apiWrappers/contentExplorer/index.d.ts +3 -0
- package/dist/dts/apiWrappers/contentExplorer/utils.d.ts +73 -0
- package/dist/dts/apiWrappers/editors/hooks.d.ts +63 -0
- package/dist/dts/apiWrappers/editors/index.d.ts +1 -0
- package/dist/dts/apiWrappers/general/components.d.ts +88 -0
- package/dist/dts/apiWrappers/general/globals.d.ts +37 -0
- package/dist/dts/apiWrappers/general/hooks.d.ts +25 -0
- package/dist/dts/apiWrappers/general/index.d.ts +5 -0
- package/dist/dts/apiWrappers/general/mutations/generalMutations.d.ts +30 -0
- package/dist/dts/apiWrappers/general/mutations/index.d.ts +4 -0
- package/dist/dts/apiWrappers/general/mutations/itemMutations.d.ts +137 -0
- package/dist/dts/apiWrappers/general/mutations/translationMutations.d.ts +5 -0
- package/dist/dts/apiWrappers/general/mutations/workflowMutations.d.ts +47 -0
- package/dist/dts/apiWrappers/general/queries/generalQueries.d.ts +7 -0
- package/dist/dts/apiWrappers/general/queries/index.d.ts +7 -0
- package/dist/dts/apiWrappers/general/queries/itemQueries.d.ts +85 -0
- package/dist/dts/apiWrappers/general/queries/listsQueries.d.ts +25 -0
- package/dist/dts/apiWrappers/general/queries/publishingQueries.d.ts +19 -0
- package/dist/dts/apiWrappers/general/queries/searchQueries.d.ts +13 -0
- package/dist/dts/apiWrappers/general/queries/translationQueries.d.ts +5 -0
- package/dist/dts/apiWrappers/general/queries/workflowQueries.d.ts +5 -0
- package/dist/dts/apiWrappers/index.d.ts +5 -0
- package/dist/dts/apiWrappers/publishingQueueExplorer/hooks.d.ts +39 -0
- package/dist/dts/apiWrappers/publishingQueueExplorer/index.d.ts +1 -0
- package/dist/dts/extensionPoints/actionsConfiguration/actionExtension.d.ts +43 -0
- package/dist/dts/extensionPoints/actionsConfiguration/actionGroup.d.ts +20 -0
- package/dist/dts/extensionPoints/actionsConfiguration/actionsConfigurationExtension.d.ts +10 -0
- package/dist/dts/extensionPoints/actionsConfiguration/actionsConfigurationExtensionsBuilder.d.ts +70 -0
- package/dist/dts/extensionPoints/actionsConfiguration/index.d.ts +4 -0
- package/dist/dts/extensionPoints/activitiesExplorer/activitiesExplorerActions.d.ts +40 -0
- package/dist/dts/extensionPoints/activitiesExplorer/activitiesExplorerExtensions.d.ts +11 -0
- package/dist/dts/extensionPoints/activitiesExplorer/activitiesExplorerExtensionsBuilder.d.ts +25 -0
- package/dist/dts/extensionPoints/activitiesExplorer/index.d.ts +5 -0
- package/dist/dts/extensionPoints/activitiesExplorer/insightsPanels/activitiesExplorerInsightsPanelsExtension.d.ts +18 -0
- package/dist/dts/extensionPoints/activitiesExplorer/insightsPanels/activitiesExplorerInsightsPanelsExtensions.d.ts +9 -0
- package/dist/dts/extensionPoints/activitiesExplorer/insightsPanels/activitiesExplorerInsightsPanelsExtensionsBuilder.d.ts +24 -0
- package/dist/dts/extensionPoints/activitiesExplorer/insightsPanels/index.d.ts +3 -0
- package/dist/dts/extensionPoints/activitiesExplorer/table/activitiesExplorerTableActions.d.ts +41 -0
- package/dist/dts/extensionPoints/activitiesExplorer/table/activitiesExplorerTableColumnExtension.d.ts +20 -0
- package/dist/dts/extensionPoints/activitiesExplorer/table/activitiesExplorerTableExtensions.d.ts +10 -0
- package/dist/dts/extensionPoints/activitiesExplorer/table/activitiesExplorerTableExtensionsBuilder.d.ts +26 -0
- package/dist/dts/extensionPoints/activitiesExplorer/table/index.d.ts +3 -0
- package/dist/dts/extensionPoints/contentEditor/contentEditorExtensions.d.ts +11 -0
- package/dist/dts/extensionPoints/contentEditor/contentEditorExtensionsBuilder.d.ts +15 -0
- package/dist/dts/extensionPoints/contentEditor/contentEditorFormFieldExtension.d.ts +85 -0
- package/dist/dts/extensionPoints/contentEditor/contentEditorViewExtension.d.ts +69 -0
- package/dist/dts/extensionPoints/contentEditor/index.d.ts +5 -0
- package/dist/dts/extensionPoints/contentEditor/richTextField/index.d.ts +2 -0
- package/dist/dts/extensionPoints/contentEditor/richTextField/richTextFieldExtensions.d.ts +64 -0
- package/dist/dts/extensionPoints/contentEditor/richTextField/richTextFieldExtensionsBuilder.d.ts +11 -0
- package/dist/dts/extensionPoints/contentExplorer/contentExplorerActions.d.ts +86 -0
- package/dist/dts/extensionPoints/contentExplorer/contentExplorerExtensions.d.ts +13 -0
- package/dist/dts/extensionPoints/contentExplorer/contentExplorerExtensionsBuilder.d.ts +30 -0
- package/dist/dts/extensionPoints/contentExplorer/index.d.ts +6 -0
- package/dist/dts/extensionPoints/contentExplorer/insightsPanels/contentExplorerInsightsPanelsExtension.d.ts +18 -0
- package/dist/dts/extensionPoints/contentExplorer/insightsPanels/contentExplorerInsightsPanelsExtensions.d.ts +9 -0
- package/dist/dts/extensionPoints/contentExplorer/insightsPanels/contentExplorerInsightsPanelsExtensionsBuilder.d.ts +24 -0
- package/dist/dts/extensionPoints/contentExplorer/insightsPanels/index.d.ts +3 -0
- package/dist/dts/extensionPoints/contentExplorer/table/contentExplorerTableColumnExtension.d.ts +20 -0
- package/dist/dts/extensionPoints/contentExplorer/table/contentExplorerTableExtensions.d.ts +10 -0
- package/dist/dts/extensionPoints/contentExplorer/table/contentExplorerTableExtensionsBuilder.d.ts +26 -0
- package/dist/dts/extensionPoints/contentExplorer/table/index.d.ts +3 -0
- package/dist/dts/extensionPoints/contentExplorer/tree/contentExplorerTreeExtensions.d.ts +7 -0
- package/dist/dts/extensionPoints/contentExplorer/tree/contentExplorerTreeExtensionsBuilder.d.ts +13 -0
- package/dist/dts/extensionPoints/contentExplorer/tree/index.d.ts +2 -0
- package/dist/dts/extensionPoints/extensionBuilder.d.ts +37 -0
- package/dist/dts/extensionPoints/extensionPoints.d.ts +17 -0
- package/dist/dts/extensionPoints/header/headerExtensions.d.ts +7 -0
- package/dist/dts/extensionPoints/header/headerExtensionsBuilder.d.ts +12 -0
- package/dist/dts/extensionPoints/header/index.d.ts +3 -0
- package/dist/dts/extensionPoints/header/navigation/index.d.ts +4 -0
- package/dist/dts/extensionPoints/header/navigation/navigationExtensions.d.ts +9 -0
- package/dist/dts/extensionPoints/header/navigation/navigationExtensionsBuilder.d.ts +24 -0
- package/dist/dts/extensionPoints/header/navigation/navigationItem.d.ts +65 -0
- package/dist/dts/extensionPoints/header/navigation/navigationItems.d.ts +20 -0
- package/dist/dts/extensionPoints/index.d.ts +12 -0
- package/dist/dts/extensionPoints/insightsPanels/index.d.ts +1 -0
- package/dist/dts/extensionPoints/insightsPanels/insightsPanelsExtension.d.ts +39 -0
- package/dist/dts/extensionPoints/listBuilder/index.d.ts +3 -0
- package/dist/dts/extensionPoints/listBuilder/listBuilder.d.ts +12 -0
- package/dist/dts/extensionPoints/listBuilder/listBuilderExtension.d.ts +12 -0
- package/dist/dts/extensionPoints/listBuilder/utils/addItem.d.ts +14 -0
- package/dist/dts/extensionPoints/listBuilder/utils/findItemIndex.d.ts +13 -0
- package/dist/dts/extensionPoints/listBuilder/utils/index.d.ts +5 -0
- package/dist/dts/extensionPoints/listBuilder/utils/moveItem.d.ts +14 -0
- package/dist/dts/extensionPoints/listBuilder/utils/removeItem.d.ts +13 -0
- package/dist/dts/extensionPoints/listBuilder/utils/replaceItem.d.ts +14 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/index.d.ts +5 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/insightsPanels/index.d.ts +3 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/insightsPanels/publishingQueueExplorerInsightsPanelsExtension.d.ts +18 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/insightsPanels/publishingQueueExplorerInsightsPanelsExtensions.d.ts +9 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/insightsPanels/publishingQueueExplorerInsightsPanelsExtensionsBuilder.d.ts +24 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/publishingQueueExplorerActions.d.ts +39 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/publishingQueueExplorerExtensions.d.ts +11 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/publishingQueueExplorerExtensionsBuilder.d.ts +25 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/table/index.d.ts +3 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/table/publishingQueueExplorerTableActions.d.ts +39 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/table/publishingQueueExplorerTableColumnExtension.d.ts +20 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/table/publishingQueueExplorerTableExtensions.d.ts +10 -0
- package/dist/dts/extensionPoints/publishingQueueExplorer/table/publishingQueueExplorerTableExtensionsBuilder.d.ts +26 -0
- package/dist/dts/extensionPoints/tableColumnConfiguration/index.d.ts +1 -0
- package/dist/dts/extensionPoints/tableColumnConfiguration/tableColumnExtension.d.ts +70 -0
- package/dist/dts/extensionPoints/translations/index.d.ts +3 -0
- package/dist/dts/extensionPoints/translations/translationExtensions.d.ts +7 -0
- package/dist/dts/extensionPoints/translations/translationExtensionsBuilder.d.ts +17 -0
- package/dist/dts/extensionPoints/translations/translationItem.d.ts +23 -0
- package/dist/dts/frameworkInfo.d.ts +7 -0
- package/dist/dts/index.d.ts +6 -0
- package/dist/dts/module/createExtensionGlobals.d.ts +11 -0
- package/dist/dts/module/extensionGlobals.d.ts +7 -0
- package/dist/dts/module/extensionModule.d.ts +11 -0
- package/dist/dts/module/index.d.ts +4 -0
- package/dist/dts/module/runtimeInformation.d.ts +7 -0
- package/dist/index.d.ts +529 -97
- package/dist/index.js +151 -27
- package/package.json +5 -5
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { ContentExplorerHierarchyUtilsExtensionApi, ContentExplorerHook, ContentExplorerTableHook, ContentExplorerTreeHook, OptionalContentExplorerHook, OptionalContentExplorerTableHook, OptionalContentExplorerTreeHook, PropertiesListComponent } from "../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface ContentExplorerUtilsApiStorage {
|
|
6
|
+
hierarchy: ContentExplorerHierarchyUtilsExtensionApi;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface ContentExplorerHooksApiStorage {
|
|
12
|
+
useContentExplorer: ContentExplorerHook;
|
|
13
|
+
useContentExplorerTable: ContentExplorerTableHook;
|
|
14
|
+
useContentExplorerTree: ContentExplorerTreeHook;
|
|
15
|
+
useOptionalContentExplorer: OptionalContentExplorerHook;
|
|
16
|
+
useOptionalContentExplorerTable: OptionalContentExplorerTableHook;
|
|
17
|
+
useOptionalContentExplorerTree: OptionalContentExplorerTreeHook;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
export interface ContentExplorerComponentsApiStorage {
|
|
23
|
+
PropertiesList: PropertiesListComponent;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
export interface ContentExplorerApiStorage {
|
|
29
|
+
hooks: ContentExplorerHooksApiStorage;
|
|
30
|
+
utils: ContentExplorerUtilsApiStorage;
|
|
31
|
+
components: ContentExplorerComponentsApiStorage;
|
|
32
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalBundleEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface BundleEditorHooksApiStorage {
|
|
6
|
+
useOptionalBundleEditor: OptionalBundleEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface BundleEditorApiStorage {
|
|
12
|
+
hooks: BundleEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalCategoryEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface CategoryEditorHooksApiStorage {
|
|
6
|
+
useOptionalCategoryEditor: OptionalCategoryEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface CategoryEditorApiStorage {
|
|
12
|
+
hooks: CategoryEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalComponentEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface ComponentEditorHooksApiStorage {
|
|
6
|
+
useOptionalComponentEditor: OptionalComponentEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface ComponentEditorApiStorage {
|
|
12
|
+
hooks: ComponentEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { EditorHook, OptionalEditorHook } from "../../api";
|
|
2
|
+
import type { BundleEditorApiStorage } from './bundleEditorApiStorage';
|
|
3
|
+
import type { CategoryEditorApiStorage } from './categoryEditorApiStorage';
|
|
4
|
+
import type { ComponentEditorApiStorage } from './componentEditorApiStorage';
|
|
5
|
+
import type { FolderEditorApiStorage } from './folderEditorApiStorage';
|
|
6
|
+
import type { KeywordEditorApiStorage } from './keywordEditorApiStorage';
|
|
7
|
+
import type { PageEditorApiStorage } from './pageEditorApiStorage';
|
|
8
|
+
import type { StructureGroupEditorApiStorage } from './structureGroupEditorApiStorage';
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
export interface EditorHooksApiStorage {
|
|
13
|
+
useEditor: EditorHook;
|
|
14
|
+
useOptionalEditor: OptionalEditorHook;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
export interface EditorsApiStorage {
|
|
20
|
+
hooks: EditorHooksApiStorage;
|
|
21
|
+
componentEditor: ComponentEditorApiStorage;
|
|
22
|
+
bundleEditor: BundleEditorApiStorage;
|
|
23
|
+
categoryEditor: CategoryEditorApiStorage;
|
|
24
|
+
folderEditor: FolderEditorApiStorage;
|
|
25
|
+
keywordEditor: KeywordEditorApiStorage;
|
|
26
|
+
pageEditor: PageEditorApiStorage;
|
|
27
|
+
structureGroupEditor: StructureGroupEditorApiStorage;
|
|
28
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalFolderEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface FolderEditorHooksApiStorage {
|
|
6
|
+
useOptionalFolderEditor: OptionalFolderEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface FolderEditorApiStorage {
|
|
12
|
+
hooks: FolderEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './bundleEditorApiStorage';
|
|
2
|
+
export * from './categoryEditorApiStorage';
|
|
3
|
+
export * from './componentEditorApiStorage';
|
|
4
|
+
export * from './folderEditorApiStorage';
|
|
5
|
+
export * from './keywordEditorApiStorage';
|
|
6
|
+
export * from './pageEditorApiStorage';
|
|
7
|
+
export * from './structureGroupEditorApiStorage';
|
|
8
|
+
export * from './editorsApiStorage';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalKeywordEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface KeywordEditorHooksApiStorage {
|
|
6
|
+
useOptionalKeywordEditor: OptionalKeywordEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface KeywordEditorApiStorage {
|
|
12
|
+
hooks: KeywordEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalPageEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface PageEditorHooksApiStorage {
|
|
6
|
+
useOptionalPageEditor: OptionalPageEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface PageEditorApiStorage {
|
|
12
|
+
hooks: PageEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { OptionalStructureGroupEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface StructureGroupEditorHooksApiStorage {
|
|
6
|
+
useOptionalStructureGroupEditor: OptionalStructureGroupEditorHook;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface StructureGroupEditorApiStorage {
|
|
12
|
+
hooks: StructureGroupEditorHooksApiStorage;
|
|
13
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { ActivitiesExplorerApiStorage } from './activitiesExplorerApiStorage';
|
|
2
|
+
import type { ContentExplorerApiStorage } from './contentExplorerApiStorage';
|
|
3
|
+
import type { EditorsApiStorage } from './editors';
|
|
4
|
+
import type { GeneralApiStorage } from './generalApiStorage';
|
|
5
|
+
import type { PublishingQueueExplorerApiStorage } from './publishingQueueExplorerApiStorage';
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
export interface ExtensionApiImplementationStorage {
|
|
10
|
+
activitiesExplorer: ActivitiesExplorerApiStorage;
|
|
11
|
+
contentExplorer: ContentExplorerApiStorage;
|
|
12
|
+
publishingQueueExplorer: PublishingQueueExplorerApiStorage;
|
|
13
|
+
editors: EditorsApiStorage;
|
|
14
|
+
general: GeneralApiStorage;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
export declare const extensionApiBridge: {
|
|
20
|
+
initialize: (implementation: ExtensionApiImplementationStorage) => void;
|
|
21
|
+
get: () => ExtensionApiImplementationStorage;
|
|
22
|
+
};
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import type { ActivityInstancesQueryHook, AddToBundleMutationHook, AssignActivitiesMutationHook, AssignActivityMutationHook, AutoClassifyItemMutationHook, AutoClassifyItemsMutationHook, BlockComponent, BorderRadiusGetter, ButtonComponent, CenterComponent, ChangeUserLanguageMutationHook, ChangeUserLocaleMutationHook, ColorPaletteGetter, ConfirmationHook, ContainerItemsQueryHook, CopyItemMutationHook, CopyItemsMutationHook, CreateTranslationJobMutationHook, DefaultTranslationJobQueryHook, DeleteItemMutationHook, DeleteItemsMutationHook, DemoteItemMutationHook, DemoteItemsMutationHook, FavoritesQueryHook, FinishActivitiesMutationHook, FinishActivityMutationHook, FinishEditingItemMutationHook, FinishEditingItemsMutationHook, FlexComponent, IconComponent, ItemBlueprintHierarchyQueryHook, ItemChildrenQueryHook, ItemClassifiedItemsQueryHook, ItemDefaultDataQueryHook, ItemHistoryQueryHook, ItemPublishedPagesQueryHook, ItemPublishedToQueryHook, ItemPublishUrlsQueryHook, ItemQueryHook, ItemsInProgressQueryHook, ItemsQueryHook, ItemsToPublishQueryHook, ItemsToUnpublishQueryHook, ItemTranslationInfoQueryHook, ItemUsedByQueryHook, ItemUsesQueryHook, LinkComponent, LocalizeItemMutationHook, LocalizeItemsMutationHook, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalHook, MoveItemMutationHook, MoveItemsMutationHook, NotificationsHook, OpacityLevelGetter, PromoteItemMutationHook, PromoteItemsMutationHook, PublicationBlueprintHierarchyQueryHook, PublicationsQueryHook, PublishableTargetTypesQueryHook, PublishItemsMutationHook, PublishTransactionsQueryHook, RemoveFromBundleMutationHook, RestartActivitiesMutationHook, RestartActivityMutationHook, RevertItemMutationHook, RevertItemsMutationHook, RollbackItemMutationHook, SearchInContainerQueryHook, SpacingGetter, StackComponent, StartActivitiesMutationHook, StartActivityMutationHook, StartWorkflowMutationHook, SystemSearchQueryHook, TextComponent, TextLinkComponent, TransitionDurationGetter, UnlocalizeItemMutationHook, UnlocalizeItemsMutationHook, UnpublishItemsMutationHook, UpdateItemMutationHook, UploadMultimediaMutationHook, UserGroupsQueryHook, UserProfileHook, UserProfileQueryHook, UsersQueryHook, ZIndexGetter } from "../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface GeneralHooksApiStorage {
|
|
6
|
+
useNotifications: NotificationsHook;
|
|
7
|
+
useUserProfile: UserProfileHook;
|
|
8
|
+
useConfirmation: ConfirmationHook;
|
|
9
|
+
useModal: ModalHook;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export interface GeneralComponentsApiStorage {
|
|
15
|
+
Block: BlockComponent;
|
|
16
|
+
Button: ButtonComponent;
|
|
17
|
+
Center: CenterComponent;
|
|
18
|
+
Flex: FlexComponent;
|
|
19
|
+
Icon: IconComponent;
|
|
20
|
+
Link: LinkComponent;
|
|
21
|
+
Stack: StackComponent;
|
|
22
|
+
Text: TextComponent;
|
|
23
|
+
TextLink: TextLinkComponent;
|
|
24
|
+
ModalContent: ModalContentComponent;
|
|
25
|
+
ModalHeader: ModalHeaderComponent;
|
|
26
|
+
ModalFooter: ModalFooterComponent;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
export interface GeneralGlobalsApiStorage {
|
|
32
|
+
getBorderRadius: BorderRadiusGetter;
|
|
33
|
+
getColorPalette: ColorPaletteGetter;
|
|
34
|
+
getOpacityLevel: OpacityLevelGetter;
|
|
35
|
+
getSpacing: SpacingGetter;
|
|
36
|
+
getTransitionDuration: TransitionDurationGetter;
|
|
37
|
+
getZIndex: ZIndexGetter;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
export interface GeneralQueriesApiStorage {
|
|
43
|
+
useUserProfileQuery: UserProfileQueryHook;
|
|
44
|
+
item: {
|
|
45
|
+
useItemBlueprintHierarchyQuery: ItemBlueprintHierarchyQueryHook;
|
|
46
|
+
useItemChildrenQuery: ItemChildrenQueryHook;
|
|
47
|
+
useItemClassifiedItemsQuery: ItemClassifiedItemsQueryHook;
|
|
48
|
+
useItemDefaultDataQuery: ItemDefaultDataQueryHook;
|
|
49
|
+
useItemHistoryQuery: ItemHistoryQueryHook;
|
|
50
|
+
useItemPublishedPagesQuery: ItemPublishedPagesQueryHook;
|
|
51
|
+
useItemPublishedToQuery: ItemPublishedToQueryHook;
|
|
52
|
+
useItemPublishUrlsQuery: ItemPublishUrlsQueryHook;
|
|
53
|
+
useItemQuery: ItemQueryHook;
|
|
54
|
+
useItemsQuery: ItemsQueryHook;
|
|
55
|
+
useItemTranslationInfoQuery: ItemTranslationInfoQueryHook;
|
|
56
|
+
useItemUsedByQuery: ItemUsedByQueryHook;
|
|
57
|
+
useItemUsesQuery: ItemUsesQueryHook;
|
|
58
|
+
usePublicationBlueprintHierarchyQuery: PublicationBlueprintHierarchyQueryHook;
|
|
59
|
+
};
|
|
60
|
+
lists: {
|
|
61
|
+
useContainerItems: ContainerItemsQueryHook;
|
|
62
|
+
useFavoritesQuery: FavoritesQueryHook;
|
|
63
|
+
useItemsInProgressQuery: ItemsInProgressQueryHook;
|
|
64
|
+
usePublicationsQuery: PublicationsQueryHook;
|
|
65
|
+
useUserGroupsQuery: UserGroupsQueryHook;
|
|
66
|
+
useUsersQuery: UsersQueryHook;
|
|
67
|
+
};
|
|
68
|
+
publishing: {
|
|
69
|
+
useItemsToPublishQuery: ItemsToPublishQueryHook;
|
|
70
|
+
useItemsToUnpublishQuery: ItemsToUnpublishQueryHook;
|
|
71
|
+
usePublishableTargetTypesQuery: PublishableTargetTypesQueryHook;
|
|
72
|
+
usePublishTransactionsQuery: PublishTransactionsQueryHook;
|
|
73
|
+
};
|
|
74
|
+
search: {
|
|
75
|
+
useSearchInContainerQuery: SearchInContainerQueryHook;
|
|
76
|
+
useSystemSearchQuery: SystemSearchQueryHook;
|
|
77
|
+
};
|
|
78
|
+
translation: {
|
|
79
|
+
useDefaultTranslationJobQuery: DefaultTranslationJobQueryHook;
|
|
80
|
+
};
|
|
81
|
+
workflow: {
|
|
82
|
+
useActivityInstancesQuery: ActivityInstancesQueryHook;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
export interface GeneralMutationsApiStorage {
|
|
89
|
+
item: {
|
|
90
|
+
useAutoClassifyItemMutation: AutoClassifyItemMutationHook;
|
|
91
|
+
useAutoClassifyItemsMutation: AutoClassifyItemsMutationHook;
|
|
92
|
+
useCopyItemMutation: CopyItemMutationHook;
|
|
93
|
+
useCopyItemsMutation: CopyItemsMutationHook;
|
|
94
|
+
useDeleteItemMutation: DeleteItemMutationHook;
|
|
95
|
+
useDeleteItemsMutation: DeleteItemsMutationHook;
|
|
96
|
+
useDemoteItemMutation: DemoteItemMutationHook;
|
|
97
|
+
useDemoteItemsMutation: DemoteItemsMutationHook;
|
|
98
|
+
useFinishEditingItemMutation: FinishEditingItemMutationHook;
|
|
99
|
+
useFinishEditingItemsMutation: FinishEditingItemsMutationHook;
|
|
100
|
+
useLocalizeItemMutation: LocalizeItemMutationHook;
|
|
101
|
+
useLocalizeItemsMutation: LocalizeItemsMutationHook;
|
|
102
|
+
useMoveItemMutation: MoveItemMutationHook;
|
|
103
|
+
useMoveItemsMutation: MoveItemsMutationHook;
|
|
104
|
+
usePublishItemsMutation: PublishItemsMutationHook;
|
|
105
|
+
usePromoteItemMutation: PromoteItemMutationHook;
|
|
106
|
+
usePromoteItemsMutation: PromoteItemsMutationHook;
|
|
107
|
+
useRevertItemMutation: RevertItemMutationHook;
|
|
108
|
+
useRevertItemsMutation: RevertItemsMutationHook;
|
|
109
|
+
useRollbackItemMutation: RollbackItemMutationHook;
|
|
110
|
+
useUnlocalizeItemMutation: UnlocalizeItemMutationHook;
|
|
111
|
+
useUnlocalizeItemsMutation: UnlocalizeItemsMutationHook;
|
|
112
|
+
useUnpublishItemsMutation: UnpublishItemsMutationHook;
|
|
113
|
+
useUpdateItemMutation: UpdateItemMutationHook;
|
|
114
|
+
};
|
|
115
|
+
translations: {
|
|
116
|
+
useCreateTranslationJobMutation: CreateTranslationJobMutationHook;
|
|
117
|
+
};
|
|
118
|
+
workflow: {
|
|
119
|
+
useAssignActivitiesMutation: AssignActivitiesMutationHook;
|
|
120
|
+
useAssignActivityMutation: AssignActivityMutationHook;
|
|
121
|
+
useFinishActivityMutation: FinishActivityMutationHook;
|
|
122
|
+
useFinishActivitiesMutation: FinishActivitiesMutationHook;
|
|
123
|
+
useRestartActivitiesMutation: RestartActivitiesMutationHook;
|
|
124
|
+
useRestartActivityMutation: RestartActivityMutationHook;
|
|
125
|
+
useStartActivitiesMutation: StartActivitiesMutationHook;
|
|
126
|
+
useStartActivityMutation: StartActivityMutationHook;
|
|
127
|
+
useStartWorkflowMutation: StartWorkflowMutationHook;
|
|
128
|
+
};
|
|
129
|
+
useAddToBundleMutation: AddToBundleMutationHook;
|
|
130
|
+
useChangeUserLanguageMutation: ChangeUserLanguageMutationHook;
|
|
131
|
+
useChangeUserLocaleMutation: ChangeUserLocaleMutationHook;
|
|
132
|
+
useRemoveFromBundleMutation: RemoveFromBundleMutationHook;
|
|
133
|
+
useUploadMultimediaMutation: UploadMultimediaMutationHook;
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
138
|
+
export interface GeneralApiStorage {
|
|
139
|
+
components: GeneralComponentsApiStorage;
|
|
140
|
+
globals: GeneralGlobalsApiStorage;
|
|
141
|
+
hooks: GeneralHooksApiStorage;
|
|
142
|
+
mutations: GeneralMutationsApiStorage;
|
|
143
|
+
queries: GeneralQueriesApiStorage;
|
|
144
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { OptionalPublishingQueueExplorerHook, OptionalPublishingQueueExplorerTableHook, PublishingQueueExplorerHook, PublishingQueueExplorerTableHook } from "../api";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export interface PublishingQueueExplorerHooksApiStorage {
|
|
6
|
+
usePublishingQueueExplorer: PublishingQueueExplorerHook;
|
|
7
|
+
usePublishingQueueExplorerTable: PublishingQueueExplorerTableHook;
|
|
8
|
+
useOptionalPublishingQueueExplorer: OptionalPublishingQueueExplorerHook;
|
|
9
|
+
useOptionalPublishingQueueExplorerTable: OptionalPublishingQueueExplorerTableHook;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export interface PublishingQueueExplorerApiStorage {
|
|
15
|
+
hooks: PublishingQueueExplorerHooksApiStorage;
|
|
16
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { ActivitiesExplorerHook, ActivitiesExplorerTableHook, OptionalActivitiesExplorerHook, OptionalActivitiesExplorerTableHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* Provides access to Activities Explorer data and methods.
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* Should be used only inside Activities Explorer, otherwise throws an error.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare const useActivitiesExplorer: ActivitiesExplorerHook;
|
|
11
|
+
/**
|
|
12
|
+
* Provides access to Activities Explorer data and methods, if available.
|
|
13
|
+
*
|
|
14
|
+
* @remarks
|
|
15
|
+
* Safe to be used within or outside of the Activities Explorer.
|
|
16
|
+
* `undefined` is returned when used outside of Activities Explorer.
|
|
17
|
+
*
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare const useOptionalActivitiesExplorer: OptionalActivitiesExplorerHook;
|
|
21
|
+
/**
|
|
22
|
+
* Provides access to Activities Explorer Table data and methods.
|
|
23
|
+
*
|
|
24
|
+
* @remarks
|
|
25
|
+
* Should be used only inside Activities Explorer Table, otherwise throws an error.
|
|
26
|
+
*
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export declare const useActivitiesExplorerTable: ActivitiesExplorerTableHook;
|
|
30
|
+
/**
|
|
31
|
+
* Provides access to Activities Explorer Table data and methods, if available.
|
|
32
|
+
*
|
|
33
|
+
* @remarks
|
|
34
|
+
* Safe to be used within or outside of the Activities Explorer Table.
|
|
35
|
+
* `undefined` is returned when used outside of Activities Explorer Table.
|
|
36
|
+
*
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export declare const useOptionalActivitiesExplorerTable: OptionalActivitiesExplorerTableHook;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './hooks';
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import type { ContentExplorerHook, ContentExplorerTableHook, ContentExplorerTreeHook, OptionalContentExplorerHook, OptionalContentExplorerTableHook, OptionalContentExplorerTreeHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* Hook for accessing Content Explorer data and methods.
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* Should be used only inside Content Explorer, otherwise throws an error.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare const useContentExplorer: ContentExplorerHook;
|
|
11
|
+
/**
|
|
12
|
+
* Hook for accessing Content Explorer data and methods, if available.
|
|
13
|
+
*
|
|
14
|
+
* @remarks
|
|
15
|
+
* Safe to be used within or outside of the Content Explorer.
|
|
16
|
+
* `undefined` is returned when used outside of Content Explorer.
|
|
17
|
+
*
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare const useOptionalContentExplorer: OptionalContentExplorerHook;
|
|
21
|
+
/**
|
|
22
|
+
* Hook for accessing Content Explorer Table data and methods.
|
|
23
|
+
*
|
|
24
|
+
* @remarks
|
|
25
|
+
* Should be used only inside Content Explorer Table, otherwise throws an error.
|
|
26
|
+
*
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export declare const useContentExplorerTable: ContentExplorerTableHook;
|
|
30
|
+
/**
|
|
31
|
+
* Hook for accessing Content Explorer Table data and methods, if available.
|
|
32
|
+
*
|
|
33
|
+
* @remarks
|
|
34
|
+
* Safe to be used within or outside of the Content Explorer Table.
|
|
35
|
+
* `undefined` is returned when used outside of Content Explorer Table.
|
|
36
|
+
*
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export declare const useOptionalContentExplorerTable: OptionalContentExplorerTableHook;
|
|
40
|
+
/**
|
|
41
|
+
* Hook for accessing Content Explorer Tree data and methods.
|
|
42
|
+
*
|
|
43
|
+
* @remarks
|
|
44
|
+
* Should be used only inside Content Explorer Tree, otherwise throws an error.
|
|
45
|
+
*
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export declare const useContentExplorerTree: ContentExplorerTreeHook;
|
|
49
|
+
/**
|
|
50
|
+
* Hook for accessing Content Explorer Tree data and methods, if available.
|
|
51
|
+
*
|
|
52
|
+
* @remarks
|
|
53
|
+
* Safe to be used within or outside of the Content Explorer Tree.
|
|
54
|
+
* `undefined` is returned when used outside of Content Explorer Tree.
|
|
55
|
+
*
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export declare const useOptionalContentExplorerTree: OptionalContentExplorerTreeHook;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { ContentExplorerItemNode, ContentExplorerNode } from "../../api";
|
|
2
|
+
import type { Constructor } from '@tridion/graphene';
|
|
3
|
+
import type { IdentifiableObject } from '@tridion-sites/models';
|
|
4
|
+
/**
|
|
5
|
+
* Checks whether the provided node is an item in the system.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* Folder node returns `true`
|
|
9
|
+
* Publication node returns `false`
|
|
10
|
+
* Taxonomies node returns `false`
|
|
11
|
+
*
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export declare const isItemNode: (node: ContentExplorerNode | undefined) => node is ContentExplorerItemNode;
|
|
15
|
+
/**
|
|
16
|
+
* Checks whether the provided nodeId is the 'Favorites' node ID.
|
|
17
|
+
*
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare const isFavoritesNodeId: (nodeId: string) => boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Checks whether the provided nodeId is the 'Items in Progress' node ID.
|
|
23
|
+
*
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export declare const isItemsInProgressNodeId: (nodeId: string) => boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Checks whether the provided nodeId is the 'Publications' node ID
|
|
29
|
+
*
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare const isPublicationsNodeId: (nodeId: string) => boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Checks whether the provided nodeId is the 'Root' node ID.
|
|
35
|
+
*
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export declare const isRootNodeId: (nodeId: string) => boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Checks if an item in a node, given as the first parameter,
|
|
41
|
+
* is an instance of a constructor, provided as the second parameter.
|
|
42
|
+
*
|
|
43
|
+
* @param node - The node to check.
|
|
44
|
+
* @param ctor - The constructor to compare against.
|
|
45
|
+
* @returns Boolean value indicating whether the item node is an instance of the constructor.
|
|
46
|
+
*
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare const isItemNodeOfType: <TItem extends IdentifiableObject>(node: ContentExplorerNode | undefined, ctor: Constructor<TItem>) => node is ContentExplorerItemNode<TItem>;
|
|
50
|
+
/**
|
|
51
|
+
* Checks whether the provided node is the 'Items in Progress' node.
|
|
52
|
+
*
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare const isItemsInProgressNode: (node: ContentExplorerNode) => boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Checks whether the provided node is the 'Publications' node.
|
|
58
|
+
*
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare const isPublicationsNode: (node: ContentExplorerNode) => boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Checks whether the provided node is the 'Root' node.
|
|
64
|
+
*
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare const isRootNode: (node: ContentExplorerNode) => boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Checks whether the provided node is the 'System' node.
|
|
70
|
+
*
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare const isSystemNode: (node: ContentExplorerNode) => boolean;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { EditorHook, OptionalBundleEditorHook, OptionalCategoryEditorHook, OptionalComponentEditorHook, OptionalEditorHook, OptionalFolderEditorHook, OptionalKeywordEditorHook, OptionalPageEditorHook, OptionalStructureGroupEditorHook } from "../../api";
|
|
2
|
+
/**
|
|
3
|
+
* Provides access to Item Editor data and methods.
|
|
4
|
+
*
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const useEditor: EditorHook;
|
|
8
|
+
/**
|
|
9
|
+
* Provides access to Item Editor data and methods, if available.
|
|
10
|
+
* `undefined` is returned when used outside of Item Editor.
|
|
11
|
+
*
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export declare const useOptionalEditor: OptionalEditorHook;
|
|
15
|
+
/**
|
|
16
|
+
* Provides access to Bundle Editor data and methods, if available.
|
|
17
|
+
* `undefined` is returned when used outside of Bundle Editor.
|
|
18
|
+
*
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare const useOptionalBundleEditor: OptionalBundleEditorHook;
|
|
22
|
+
/**
|
|
23
|
+
* Provides access to Component Editor data and methods, if available.
|
|
24
|
+
* `undefined` is returned when used outside of Component Editor.
|
|
25
|
+
*
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export declare const useOptionalComponentEditor: OptionalComponentEditorHook;
|
|
29
|
+
/**
|
|
30
|
+
* Provides access to Category Editor data and methods, if available.
|
|
31
|
+
* `undefined` is returned when used outside of Category Editor.
|
|
32
|
+
*
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export declare const useOptionalCategoryEditor: OptionalCategoryEditorHook;
|
|
36
|
+
/**
|
|
37
|
+
* Provides access to Folder Editor data and methods, if available.
|
|
38
|
+
* `undefined` is returned when used outside of Folder Editor.
|
|
39
|
+
*
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export declare const useOptionalFolderEditor: OptionalFolderEditorHook;
|
|
43
|
+
/**
|
|
44
|
+
* Provides access to Keyword Editor data and methods, if available.
|
|
45
|
+
* `undefined` is returned when used outside of Keyword Editor.
|
|
46
|
+
*
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare const useOptionalKeywordEditor: OptionalKeywordEditorHook;
|
|
50
|
+
/**
|
|
51
|
+
* Provides access to Page Editor data and methods, if available.
|
|
52
|
+
* `undefined` is returned when used outside of Page Editor.
|
|
53
|
+
*
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare const useOptionalPageEditor: OptionalPageEditorHook;
|
|
57
|
+
/**
|
|
58
|
+
* Provides access to Structure Group Editor data and methods, if available.
|
|
59
|
+
* `undefined` is returned when used outside of Structure Group Editor.
|
|
60
|
+
*
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export declare const useOptionalStructureGroupEditor: OptionalStructureGroupEditorHook;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './hooks';
|