@monorise/core 1.0.1 → 1.0.3
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.
- package/dist/mock/monorise/chapter.d.ts +1 -1
- package/dist/mock/monorise/course.d.ts +1 -1
- package/dist/mock/monorise/learning-journey-config.d.ts +1 -1
- package/dist/mock/monorise/module.d.ts +1 -1
- package/dist/mock/monorise/organization.d.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +3 -2
|
@@ -447,7 +447,7 @@ declare const config: {
|
|
|
447
447
|
}>) | undefined;
|
|
448
448
|
tags?: {
|
|
449
449
|
name: string;
|
|
450
|
-
processor: (entity: import("@monorise/
|
|
450
|
+
processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
|
|
451
451
|
group?: string;
|
|
452
452
|
sortValue?: string;
|
|
453
453
|
}[];
|
|
@@ -301,7 +301,7 @@ declare const config: {
|
|
|
301
301
|
}>) | undefined;
|
|
302
302
|
tags?: {
|
|
303
303
|
name: string;
|
|
304
|
-
processor: (entity: import("@monorise/
|
|
304
|
+
processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
|
|
305
305
|
group?: string;
|
|
306
306
|
sortValue?: string;
|
|
307
307
|
}[];
|
|
@@ -74,7 +74,7 @@ declare const config: {
|
|
|
74
74
|
}>) | undefined;
|
|
75
75
|
tags?: {
|
|
76
76
|
name: string;
|
|
77
|
-
processor: (entity: import("@monorise/
|
|
77
|
+
processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
|
|
78
78
|
group?: string;
|
|
79
79
|
sortValue?: string;
|
|
80
80
|
}[];
|
|
@@ -201,7 +201,7 @@ declare const config: {
|
|
|
201
201
|
}>) | undefined;
|
|
202
202
|
tags?: {
|
|
203
203
|
name: string;
|
|
204
|
-
processor: (entity: import("@monorise/
|
|
204
|
+
processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
|
|
205
205
|
group?: string;
|
|
206
206
|
sortValue?: string;
|
|
207
207
|
}[];
|
|
@@ -336,7 +336,7 @@ declare const config: {
|
|
|
336
336
|
}>) | undefined;
|
|
337
337
|
tags?: {
|
|
338
338
|
name: string;
|
|
339
|
-
processor: (entity: import("@monorise/
|
|
339
|
+
processor: (entity: import("@monorise/base").CreatedEntity<import("@monorise/base").Entity>) => {
|
|
340
340
|
group?: string;
|
|
341
341
|
sortValue?: string;
|
|
342
342
|
}[];
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
/* Modules */
|
|
30
30
|
"module": "esnext" /* Specify what module code is generated. */,
|
|
31
31
|
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
32
|
-
"moduleResolution": "
|
|
33
|
-
"baseUrl": "./"
|
|
32
|
+
"moduleResolution": "bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
|
33
|
+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
34
34
|
"paths": {
|
|
35
|
+
"#/shared/*": ["../../shared/*"],
|
|
35
36
|
"#/*": ["./*"],
|
|
36
37
|
"#/lambda-layer/monorise": ["/opt/nodejs/monorise", "./mock/monorise"]
|
|
37
38
|
},
|