V16-RC: Not all types are exported from 'documents' (#19421)

fix: exports new types from documents/documents/url
This commit is contained in:
Jacob Overgaard
2025-05-26 14:47:09 +02:00
committed by GitHub
parent 5c7a25fdc7
commit 25e7f1927c
3 changed files with 3 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ export type * from './modals/types.js';
export type * from './publishing/types.js';
export type * from './recycle-bin/types.js';
export type * from './tree/types.js';
export type * from './url/types.js';
export type * from './user-permissions/types.js';
export type * from './workspace/types.js';

View File

@@ -1,4 +1,5 @@
export { UmbDocumentUrlRepository, UMB_DOCUMENT_URL_REPOSITORY_ALIAS } from './repository/index.js';
export * from './repository/index.js';
export * from './constants.js';
export * from './document-urls-data-resolver.js';

View File

@@ -0,0 +1 @@
export type * from './repository/types.js';