@ndla/types-backend 0.2.96 → 0.2.98
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.
|
@@ -45,6 +45,7 @@ export interface ILearningPathSummaryV2 {
|
|
|
45
45
|
coverPhotoUrl?: string;
|
|
46
46
|
duration?: number;
|
|
47
47
|
status: string;
|
|
48
|
+
created: string;
|
|
48
49
|
lastUpdated: string;
|
|
49
50
|
tags: ILearningPathTags;
|
|
50
51
|
copyright: ICopyright;
|
|
@@ -74,6 +75,7 @@ export interface ILearningPathV2 {
|
|
|
74
75
|
duration?: number;
|
|
75
76
|
status: string;
|
|
76
77
|
verificationStatus: string;
|
|
78
|
+
created: string;
|
|
77
79
|
lastUpdated: string;
|
|
78
80
|
tags: ILearningPathTags;
|
|
79
81
|
copyright: ICopyright;
|
|
@@ -81,6 +83,7 @@ export interface ILearningPathV2 {
|
|
|
81
83
|
supportedLanguages: string[];
|
|
82
84
|
ownerId?: string;
|
|
83
85
|
message?: IMessage;
|
|
86
|
+
madeAvailable?: string;
|
|
84
87
|
}
|
|
85
88
|
export interface ILearningStepContainerSummary {
|
|
86
89
|
language: string;
|
package/package.json
CHANGED