document exports

This commit is contained in:
Niels Lyngsø
2024-10-24 19:56:47 +02:00
parent c5fd1885cf
commit ce8574d20d
7 changed files with 12 additions and 2 deletions

View File

@@ -1 +1,2 @@
export { UmbDocumentAuditLogRepository } from './repository/index.js';
export type * from './types.js';

View File

@@ -3,4 +3,4 @@ export { UmbDocumentItemRepository, UMB_DOCUMENT_ITEM_REPOSITORY_ALIAS } from '.
export { UmbDocumentPublishingRepository, UMB_DOCUMENT_PUBLISHING_REPOSITORY_ALIAS } from './publishing/index.js';
export { UmbDocumentPreviewRepository } from './preview/index.js';
export type { UmbDocumentItemModel } from './item/types.js';
export type * from './types.js';

View File

@@ -0,0 +1 @@
export type { UmbDocumentItemModel } from './item/types.js';

View File

@@ -6,4 +6,4 @@ export {
} from './manifests.js';
export { UMB_DOCUMENT_TREE_STORE_CONTEXT } from './document-tree.store.context-token.js';
export type { UmbDocumentTreeStore } from './document-tree.store.js';
export * from './types.js';
export type * from './types.js';

View File

@@ -9,6 +9,13 @@ import { DocumentVariantStateModel as UmbDocumentVariantState } from '@umbraco-c
import type { UmbContentDetailModel, UmbContentValueModel } from '@umbraco-cms/backoffice/content';
export { UmbDocumentVariantState };
export type * from './audit-log/types.js';
export type * from './collection/types.js';
export type * from './modals/types.js';
export type * from './repository/types.js';
export type * from './tree/types.js';
export type * from './user-permissions/types.js';
export interface UmbDocumentDetailModel extends UmbContentDetailModel {
documentType: {
unique: string;

View File

@@ -1,2 +1,3 @@
export * from './repository/index.js';
export * from './constants.js';
export type * from './types.js';