File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
core/extension-registry/models Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import type { ManifestExternalLoginProvider } from './external-login-provider.mo
6
6
import type { ManifestTinyMcePlugin } from './tinymce-plugin.model.js' ;
7
7
import type { ManifestUfmComponent } from './ufm-component.model.js' ;
8
8
import type { ManifestUfmFilter } from './ufm-filter.model.js' ;
9
- import type { ManifestUserProfileApp } from './user-profile-app.model.js' ;
10
9
import type { ManifestGranularUserPermission } from './user-granular-permission.model.js' ;
11
10
import type { ManifestMfaLoginProvider } from './mfa-login-provider.model.js' ;
12
11
import type { ManifestMonacoMarkdownEditorAction } from './monaco-markdown-editor-action.model.js' ;
@@ -27,7 +26,6 @@ export type * from './tinymce-plugin.model.js';
27
26
export type * from './ufm-component.model.js' ;
28
27
export type * from './ufm-filter.model.js' ;
29
28
export type * from './user-granular-permission.model.js' ;
30
- export type * from './user-profile-app.model.js' ;
31
29
32
30
export type ManifestTypes =
33
31
| ManifestAuthProvider
@@ -45,7 +43,6 @@ export type ManifestTypes =
45
43
| ManifestTinyMcePlugin
46
44
| ManifestUfmComponent
47
45
| ManifestUfmFilter
48
- | ManifestUserProfileApp
49
46
| ManifestBase ;
50
47
51
48
type UnionOfProperties < T > = T extends object ? T [ keyof T ] : never ;
Original file line number Diff line number Diff line change @@ -6,5 +6,6 @@ export * from './current-user.context.token.js';
6
6
export * from './history/current-user-history.store.js' ;
7
7
export * from './repository/index.js' ;
8
8
export * from './utils/index.js' ;
9
+ export * from './user-profile-app.extension.js' ;
9
10
10
11
export type * from './types.js' ;
Original file line number Diff line number Diff line change @@ -9,3 +9,9 @@ export interface MetaUserProfileApp {
9
9
label : string ;
10
10
pathname : string ;
11
11
}
12
+
13
+ declare global {
14
+ interface UmbExtensionManifestMap {
15
+ umbUserProfileApp : ManifestUserProfileApp ;
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments