@ndla/types-backend 1.0.19 → 1.0.21

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.
@@ -84,6 +84,7 @@ export interface ILearningPathV2DTO {
84
84
  ownerId?: string;
85
85
  message?: IMessageDTO;
86
86
  madeAvailable?: string;
87
+ isMyNDLAOwner: boolean;
87
88
  }
88
89
  export interface ILearningStepContainerSummaryDTO {
89
90
  language: string;
@@ -98,6 +98,7 @@ export interface IMyNDLAUserDTO {
98
98
  arenaEnabled: boolean;
99
99
  arenaAccepted: boolean;
100
100
  arenaGroups: ArenaGroup[];
101
+ shareNameAccepted: boolean;
101
102
  }
102
103
  export interface INewCategoryDTO {
103
104
  title: string;
@@ -242,6 +243,7 @@ export interface IUpdatedMyNDLAUserDTO {
242
243
  arenaEnabled?: boolean;
243
244
  arenaGroups?: ArenaGroup[];
244
245
  arenaAccepted?: boolean;
246
+ shareNameAccepted?: boolean;
245
247
  }
246
248
  export interface IUpdatedResourceDTO {
247
249
  tags?: string[];
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.3"
29
29
  },
30
- "version": "1.0.19"
30
+ "version": "1.0.21"
31
31
  }