@ndla/types-backend 0.2.28 → 0.2.29

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.
@@ -50,6 +50,7 @@ export interface IFolder {
50
50
  updated: string;
51
51
  shared?: string;
52
52
  description?: string;
53
+ owner?: IOwner;
53
54
  }
54
55
  export type IFolderData = IFolder;
55
56
  export interface IIntroduction {
@@ -154,6 +155,7 @@ export interface IMyNDLAUser {
154
155
  role: string;
155
156
  organization: string;
156
157
  arenaEnabled: boolean;
158
+ shareName: boolean;
157
159
  }
158
160
  export interface INewFolder {
159
161
  name: string;
@@ -167,6 +169,9 @@ export interface INewResource {
167
169
  tags?: string[];
168
170
  resourceId: string;
169
171
  }
172
+ export interface IOwner {
173
+ name: string;
174
+ }
170
175
  export interface IResource {
171
176
  id: string;
172
177
  resourceType: string;
package/package.json CHANGED
@@ -26,5 +26,5 @@
26
26
  "devDependencies": {
27
27
  "typescript": "^5.0.2"
28
28
  },
29
- "version": "0.2.28"
29
+ "version": "0.2.29"
30
30
  }