@edifice.io/wiki 3.4.0-develop-pedago.2 → 3.5.0-develop-pedago.1

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.
@@ -29,6 +29,7 @@ export interface Page {
29
29
  _id: string;
30
30
  title: string;
31
31
  content: string;
32
+ jsonContent?: any;
32
33
  contentPlain: string;
33
34
  contentVersion: number;
34
35
  author: string;
@@ -6,6 +6,7 @@ export declare const loader: (queryClient: QueryClient) => ({ params }: LoaderFu
6
6
  _id: string;
7
7
  title: string;
8
8
  content: string;
9
+ jsonContent?: any;
9
10
  contentPlain: string;
10
11
  contentVersion: number;
11
12
  author: string;
@@ -6,6 +6,7 @@ export declare const loader: (queryClient: QueryClient) => ({ params }: LoaderFu
6
6
  _id: string;
7
7
  title: string;
8
8
  content: string;
9
+ jsonContent?: any;
9
10
  contentPlain: string;
10
11
  contentVersion: number;
11
12
  author: string;
@@ -23,6 +23,7 @@ export declare const wikiService: {
23
23
  _id: string;
24
24
  title: string;
25
25
  content: string;
26
+ jsonContent?: any;
26
27
  contentPlain: string;
27
28
  contentVersion: number;
28
29
  author: string;
@@ -24,6 +24,7 @@ export declare const wikiQueryOptions: {
24
24
  _id: string;
25
25
  title: string;
26
26
  content: string;
27
+ jsonContent?: any;
27
28
  contentPlain: string;
28
29
  contentVersion: number;
29
30
  author: string;
@@ -65,6 +66,7 @@ export declare const wikiQueryOptions: {
65
66
  _id: string;
66
67
  title: string;
67
68
  content: string;
69
+ jsonContent?: any;
68
70
  contentPlain: string;
69
71
  contentVersion: number;
70
72
  author: string;
@@ -107,6 +109,7 @@ export declare const wikiQueryOptions: {
107
109
  _id: string;
108
110
  title: string;
109
111
  content: string;
112
+ jsonContent?: any;
110
113
  contentPlain: string;
111
114
  contentVersion: number;
112
115
  author: string;
@@ -150,6 +153,7 @@ export declare const wikiQueryOptions: {
150
153
  _id: string;
151
154
  title: string;
152
155
  content: string;
156
+ jsonContent?: any;
153
157
  contentPlain: string;
154
158
  contentVersion: number;
155
159
  author: string;
@@ -197,6 +201,7 @@ export declare const useGetWiki: (wikiId: string) => import('@tanstack/react-que
197
201
  _id: string;
198
202
  title: string;
199
203
  content: string;
204
+ jsonContent?: any;
200
205
  contentPlain: string;
201
206
  contentVersion: number;
202
207
  author: string;
@@ -5,6 +5,7 @@ export declare const dtoToWiki: (dto: WikiDto) => {
5
5
  _id: string;
6
6
  title: string;
7
7
  content: string;
8
+ jsonContent?: any;
8
9
  contentPlain: string;
9
10
  contentVersion: number;
10
11
  author: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/wiki",
3
- "version": "3.4.0-develop-pedago.2",
3
+ "version": "3.5.0-develop-pedago.1",
4
4
  "description": "Wiki application",
5
5
  "license": "AGPL-3.0",
6
6
  "author": "Edifice",
@@ -67,6 +67,9 @@
67
67
  "vite-tsconfig-paths": "5.1.4",
68
68
  "vitest": "2.1.9"
69
69
  },
70
+ "resolutions": {
71
+ "katex": "0.16.33"
72
+ },
70
73
  "exports": {
71
74
  "./lib": {
72
75
  "import": "./lib/index.js",