@e-trias/woonplan 1.2.58 → 1.2.60

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +9 -9
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.2.58",
5
+ "version": "1.2.60",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
package/types.d.ts CHANGED
@@ -445,19 +445,19 @@ export interface IContent{
445
445
 
446
446
  export interface IContentimage {
447
447
  id: string
448
- name?: string
449
- deleted?: boolean
450
- sortorder?: number
451
- contentitem?: IContent[]
452
- image: IImage[]
448
+ name?: string | null
449
+ deleted?: boolean | null
450
+ sortorder?: number | null
451
+ contentitem?: IContent | null
452
+ image?: IImage | null
453
453
  }
454
454
 
455
455
  export interface IImage {
456
456
  id: string
457
- path?: string
458
- alt?: string
459
- originalName?: string
460
- contentimages?: IContentimage[]
457
+ path?: string | null
458
+ alt?: string | null
459
+ originalname?: string | null
460
+ contentimages?: IContentimage[] | null
461
461
  }
462
462
 
463
463
  export interface IMeasuretext{