|
3 | 3 | * SPDX-License-Identifier: AGPL-3.0-or-later |
4 | 4 | */ |
5 | 5 |
|
| 6 | +export type * from './types.ts' |
| 7 | + |
6 | 8 | export * from './actions/index.ts' |
7 | 9 | export * from './fileListFilters.ts' |
8 | 10 | export * from './fileListHeaders.ts' |
9 | 11 | export * from './navigation/index.ts' |
10 | 12 | export * from './newMenu/index.ts' |
11 | 13 | export * from './node/index.ts' |
12 | 14 | export * from './permissions.ts' |
13 | | -export * from './types.ts' |
14 | 15 | export * from './utils/index.ts' |
15 | | - |
16 | | -// Legacy export of dav utils |
17 | | -// TODO: Remove with version 4 (breaking change) |
18 | | -export { |
19 | | - type DavProperty, |
20 | | - |
21 | | - /** |
22 | | - * @inheritdoc |
23 | | - * @deprecated use `defaultRemoteURL` from `@nextcloud/files/dav` |
24 | | - */ |
25 | | - defaultRemoteURL as davRemoteURL, |
26 | | - /** |
27 | | - * @inheritdoc |
28 | | - * @deprecated use `defaultRootPath` from `@nextcloud/files/dav` |
29 | | - */ |
30 | | - defaultRootPath as davRootPath, |
31 | | - /** |
32 | | - * @inheritdoc |
33 | | - * @deprecated use `defaultDavNamespaces` from `@nextcloud/files/dav` |
34 | | - */ |
35 | | - defaultDavNamespaces, |
36 | | - /** |
37 | | - * @inheritdoc |
38 | | - * @deprecated use `defaultDavProperties` from `@nextcloud/files/dav` |
39 | | - */ |
40 | | - defaultDavProperties, |
41 | | - |
42 | | - /** |
43 | | - * @inheritdoc |
44 | | - * @deprecated use `getFavoriteNodes` from `@nextcloud/files/dav` |
45 | | - */ |
46 | | - getFavoriteNodes, |
47 | | - /** |
48 | | - * @inheritdoc |
49 | | - * @deprecated use `getClient` from `@nextcloud/files/dav` |
50 | | - */ |
51 | | - getClient as davGetClient, |
52 | | - /** |
53 | | - * @inheritdoc |
54 | | - * @deprecated use `getRemoteURL` from `@nextcloud/files/dav` |
55 | | - */ |
56 | | - getRemoteURL as davGetRemoteURL, |
57 | | - /** |
58 | | - * @inheritdoc |
59 | | - * @deprecated use `getRootPath` from `@nextcloud/files/dav` |
60 | | - */ |
61 | | - getRootPath as davGetRootPath, |
62 | | - /** |
63 | | - * @inheritdoc |
64 | | - * @deprecated use `resultToNode` from `@nextcloud/files/dav` |
65 | | - */ |
66 | | - resultToNode as davResultToNode, |
67 | | - /** |
68 | | - * @inheritdoc |
69 | | - * @deprecated use `getDefaultPropfind` from `@nextcloud/files/dav` |
70 | | - */ |
71 | | - getDefaultPropfind as davGetDefaultPropfind, |
72 | | - /** |
73 | | - * @inheritdoc |
74 | | - * @deprecated use `getFavoritesReport` from `@nextcloud/files/dav` |
75 | | - */ |
76 | | - getFavoritesReport as davGetFavoritesReport, |
77 | | - /** |
78 | | - * @inheritdoc |
79 | | - * @deprecated use `getRecentSearch` from `@nextcloud/files/dav` |
80 | | - */ |
81 | | - getRecentSearch as davGetRecentSearch, |
82 | | - /** |
83 | | - * @inheritdoc |
84 | | - * @deprecated use `parsePermissions` from `@nextcloud/files/dav` |
85 | | - */ |
86 | | - parsePermissions as davParsePermissions, |
87 | | - /** |
88 | | - * @inheritdoc |
89 | | - * @deprecated use `getDavNameSpaces` from `@nextcloud/files/dav` |
90 | | - */ |
91 | | - getDavNameSpaces, |
92 | | - /** |
93 | | - * @inheritdoc |
94 | | - * @deprecated use `getDavProperties` from `@nextcloud/files/dav` |
95 | | - */ |
96 | | - getDavProperties, |
97 | | - /** |
98 | | - * @inheritdoc |
99 | | - * @deprecated use `registerDavProperty` from `@nextcloud/files/dav` |
100 | | - */ |
101 | | - registerDavProperty, |
102 | | -} from './dav/index.ts' |
0 commit comments