@codingfactory/mediables-vue 2.17.0 → 2.18.0
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.
- package/dist/{PixiFrameExporter-B1jinD_-.js → PixiFrameExporter-D4eUjOce.js} +2 -2
- package/dist/{PixiFrameExporter-B1jinD_-.js.map → PixiFrameExporter-D4eUjOce.js.map} +1 -1
- package/dist/{PixiFrameExporter-vNJtMooF.cjs → PixiFrameExporter-Dcbwik8a.cjs} +2 -2
- package/dist/{PixiFrameExporter-vNJtMooF.cjs.map → PixiFrameExporter-Dcbwik8a.cjs.map} +1 -1
- package/dist/components/MediaAlbumPickerModal.vue.d.ts +2 -0
- package/dist/components/MediaInspectorPanel.vue.d.ts +1 -0
- package/dist/components/MediaLibraryShell.vue.d.ts +6 -0
- package/dist/{index-IIKslTrU.js → index-CpKp0R25.js} +13191 -12970
- package/dist/{index-IIKslTrU.js.map → index-CpKp0R25.js.map} +1 -1
- package/dist/index-DRMt6jsC.cjs +357 -0
- package/dist/{index-DCTHBp0p.cjs.map → index-DRMt6jsC.cjs.map} +1 -1
- package/dist/mediables-vue.cjs +1 -1
- package/dist/mediables-vue.mjs +1 -1
- package/dist/stores/albumStore.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/types/album.d.ts +11 -0
- package/package.json +1 -1
- package/dist/index-DCTHBp0p.cjs +0 -357
package/dist/types/album.d.ts
CHANGED
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
* Note: This is intentionally scoped to the fields needed by the AlbumTree
|
|
5
5
|
* components and their tests.
|
|
6
6
|
*/
|
|
7
|
+
export interface AlbumCoverMedia {
|
|
8
|
+
uuid: string;
|
|
9
|
+
urls?: {
|
|
10
|
+
thumb?: string;
|
|
11
|
+
preview?: string;
|
|
12
|
+
original?: string;
|
|
13
|
+
};
|
|
14
|
+
alt_text?: string | null;
|
|
15
|
+
}
|
|
7
16
|
export interface Album {
|
|
8
17
|
id: string;
|
|
9
18
|
name: string;
|
|
@@ -15,6 +24,7 @@ export interface Album {
|
|
|
15
24
|
created_at: string;
|
|
16
25
|
updated_at: string;
|
|
17
26
|
children?: Album[];
|
|
27
|
+
cover_media?: AlbumCoverMedia | null;
|
|
18
28
|
}
|
|
19
29
|
export interface CreateAlbumPayload {
|
|
20
30
|
name: string;
|
|
@@ -25,4 +35,5 @@ export interface UpdateAlbumPayload {
|
|
|
25
35
|
name?: string;
|
|
26
36
|
description?: string;
|
|
27
37
|
parent_id?: string | null;
|
|
38
|
+
meta?: Record<string, string>;
|
|
28
39
|
}
|