@goodhood-web/nebenan-base 4.12.0-development.5 → 4.12.0-development.6

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.
@@ -48,7 +48,7 @@ export type EmbeddableType = CoreV3Embed;
48
48
  export type ContentEmbeddable = CoreV3Embed;
49
49
  export type RichTextAreaValueType = {
50
50
  attachments?: {
51
- images?: ImageFile[];
51
+ images?: ImageFile[] | string[];
52
52
  };
53
53
  body: string;
54
54
  embeddables: EmbeddableType[] | [];
@@ -0,0 +1,3 @@
1
+ import { ImageFile } from './RichTextArea.types';
2
+ export declare const isStringArray: (arr: unknown) => arr is string[];
3
+ export declare const isImageFileArray: (arr: unknown) => arr is ImageFile[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/nebenan-base",
3
- "version": "4.12.0-development.5",
3
+ "version": "4.12.0-development.6",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",