storyblok 4.6.9 → 4.6.11
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/index.d.mts +47 -25
- package/dist/index.d.ts +47 -25
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,51 @@ interface StoryblokAsset {
|
|
|
23
23
|
}
|
|
24
24
|
interface StoryblokMultiasset extends Array<StoryblokAsset> {
|
|
25
25
|
}
|
|
26
|
+
interface StoryblokMultilinkStory {
|
|
27
|
+
name: string;
|
|
28
|
+
created_at: string;
|
|
29
|
+
published_at: string;
|
|
30
|
+
id: number;
|
|
31
|
+
uuid: string;
|
|
32
|
+
content: Record<string, any>;
|
|
33
|
+
slug: string;
|
|
34
|
+
full_slug: string;
|
|
35
|
+
sort_by_date?: string;
|
|
36
|
+
position?: number;
|
|
37
|
+
tag_list?: string[];
|
|
38
|
+
is_startpage?: boolean;
|
|
39
|
+
parent_id?: number | null;
|
|
40
|
+
meta_data?: Record<string, any> | null;
|
|
41
|
+
group_id?: string;
|
|
42
|
+
first_published_at?: string;
|
|
43
|
+
release_id?: number | null;
|
|
44
|
+
lang?: string;
|
|
45
|
+
path?: string | null;
|
|
46
|
+
alternates?: any[];
|
|
47
|
+
default_full_slug?: string | null;
|
|
48
|
+
translated_slugs?: any[] | null;
|
|
49
|
+
}
|
|
50
|
+
interface StoryblokMultilinkLink {
|
|
51
|
+
id: number;
|
|
52
|
+
uuid: string;
|
|
53
|
+
slug: string;
|
|
54
|
+
path: string | null;
|
|
55
|
+
parent_id: number;
|
|
56
|
+
name: string;
|
|
57
|
+
is_folder: boolean;
|
|
58
|
+
published: boolean;
|
|
59
|
+
is_startpage: boolean;
|
|
60
|
+
position: number;
|
|
61
|
+
real_path: string;
|
|
62
|
+
}
|
|
63
|
+
interface StoryblokMultilinkUrl {
|
|
64
|
+
name: string;
|
|
65
|
+
id: number;
|
|
66
|
+
uuid: string;
|
|
67
|
+
slug: string;
|
|
68
|
+
url: string;
|
|
69
|
+
full_slug: string;
|
|
70
|
+
}
|
|
26
71
|
interface StoryblokMultilink {
|
|
27
72
|
fieldtype: 'multilink';
|
|
28
73
|
id: string;
|
|
@@ -34,30 +79,7 @@ interface StoryblokMultilink {
|
|
|
34
79
|
title?: string;
|
|
35
80
|
prep?: string;
|
|
36
81
|
linktype: 'story' | 'url' | 'email' | 'asset';
|
|
37
|
-
story?:
|
|
38
|
-
name: string;
|
|
39
|
-
created_at: string;
|
|
40
|
-
published_at: string;
|
|
41
|
-
id: number;
|
|
42
|
-
uuid: string;
|
|
43
|
-
content: Record<string, any>;
|
|
44
|
-
slug: string;
|
|
45
|
-
full_slug: string;
|
|
46
|
-
sort_by_date?: string;
|
|
47
|
-
position?: number;
|
|
48
|
-
tag_list?: string[];
|
|
49
|
-
is_startpage?: boolean;
|
|
50
|
-
parent_id?: number | null;
|
|
51
|
-
meta_data?: Record<string, any> | null;
|
|
52
|
-
group_id?: string;
|
|
53
|
-
first_published_at?: string;
|
|
54
|
-
release_id?: number | null;
|
|
55
|
-
lang?: string;
|
|
56
|
-
path?: string | null;
|
|
57
|
-
alternates?: any[];
|
|
58
|
-
default_full_slug?: string | null;
|
|
59
|
-
translated_slugs?: any[] | null;
|
|
60
|
-
};
|
|
82
|
+
story?: StoryblokMultilinkStory | StoryblokMultilinkLink | StoryblokMultilinkUrl;
|
|
61
83
|
email?: string;
|
|
62
84
|
}
|
|
63
85
|
interface StoryblokTable {
|
|
@@ -88,4 +110,4 @@ interface StoryblokRichtext {
|
|
|
88
110
|
text?: string;
|
|
89
111
|
}
|
|
90
112
|
|
|
91
|
-
export type { StoryblokAsset, StoryblokMultiasset, StoryblokMultilink, StoryblokPropertyType, StoryblokRichtext, StoryblokTable };
|
|
113
|
+
export type { StoryblokAsset, StoryblokMultiasset, StoryblokMultilink, StoryblokMultilinkLink, StoryblokMultilinkStory, StoryblokMultilinkUrl, StoryblokPropertyType, StoryblokRichtext, StoryblokTable };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,51 @@ interface StoryblokAsset {
|
|
|
23
23
|
}
|
|
24
24
|
interface StoryblokMultiasset extends Array<StoryblokAsset> {
|
|
25
25
|
}
|
|
26
|
+
interface StoryblokMultilinkStory {
|
|
27
|
+
name: string;
|
|
28
|
+
created_at: string;
|
|
29
|
+
published_at: string;
|
|
30
|
+
id: number;
|
|
31
|
+
uuid: string;
|
|
32
|
+
content: Record<string, any>;
|
|
33
|
+
slug: string;
|
|
34
|
+
full_slug: string;
|
|
35
|
+
sort_by_date?: string;
|
|
36
|
+
position?: number;
|
|
37
|
+
tag_list?: string[];
|
|
38
|
+
is_startpage?: boolean;
|
|
39
|
+
parent_id?: number | null;
|
|
40
|
+
meta_data?: Record<string, any> | null;
|
|
41
|
+
group_id?: string;
|
|
42
|
+
first_published_at?: string;
|
|
43
|
+
release_id?: number | null;
|
|
44
|
+
lang?: string;
|
|
45
|
+
path?: string | null;
|
|
46
|
+
alternates?: any[];
|
|
47
|
+
default_full_slug?: string | null;
|
|
48
|
+
translated_slugs?: any[] | null;
|
|
49
|
+
}
|
|
50
|
+
interface StoryblokMultilinkLink {
|
|
51
|
+
id: number;
|
|
52
|
+
uuid: string;
|
|
53
|
+
slug: string;
|
|
54
|
+
path: string | null;
|
|
55
|
+
parent_id: number;
|
|
56
|
+
name: string;
|
|
57
|
+
is_folder: boolean;
|
|
58
|
+
published: boolean;
|
|
59
|
+
is_startpage: boolean;
|
|
60
|
+
position: number;
|
|
61
|
+
real_path: string;
|
|
62
|
+
}
|
|
63
|
+
interface StoryblokMultilinkUrl {
|
|
64
|
+
name: string;
|
|
65
|
+
id: number;
|
|
66
|
+
uuid: string;
|
|
67
|
+
slug: string;
|
|
68
|
+
url: string;
|
|
69
|
+
full_slug: string;
|
|
70
|
+
}
|
|
26
71
|
interface StoryblokMultilink {
|
|
27
72
|
fieldtype: 'multilink';
|
|
28
73
|
id: string;
|
|
@@ -34,30 +79,7 @@ interface StoryblokMultilink {
|
|
|
34
79
|
title?: string;
|
|
35
80
|
prep?: string;
|
|
36
81
|
linktype: 'story' | 'url' | 'email' | 'asset';
|
|
37
|
-
story?:
|
|
38
|
-
name: string;
|
|
39
|
-
created_at: string;
|
|
40
|
-
published_at: string;
|
|
41
|
-
id: number;
|
|
42
|
-
uuid: string;
|
|
43
|
-
content: Record<string, any>;
|
|
44
|
-
slug: string;
|
|
45
|
-
full_slug: string;
|
|
46
|
-
sort_by_date?: string;
|
|
47
|
-
position?: number;
|
|
48
|
-
tag_list?: string[];
|
|
49
|
-
is_startpage?: boolean;
|
|
50
|
-
parent_id?: number | null;
|
|
51
|
-
meta_data?: Record<string, any> | null;
|
|
52
|
-
group_id?: string;
|
|
53
|
-
first_published_at?: string;
|
|
54
|
-
release_id?: number | null;
|
|
55
|
-
lang?: string;
|
|
56
|
-
path?: string | null;
|
|
57
|
-
alternates?: any[];
|
|
58
|
-
default_full_slug?: string | null;
|
|
59
|
-
translated_slugs?: any[] | null;
|
|
60
|
-
};
|
|
82
|
+
story?: StoryblokMultilinkStory | StoryblokMultilinkLink | StoryblokMultilinkUrl;
|
|
61
83
|
email?: string;
|
|
62
84
|
}
|
|
63
85
|
interface StoryblokTable {
|
|
@@ -88,4 +110,4 @@ interface StoryblokRichtext {
|
|
|
88
110
|
text?: string;
|
|
89
111
|
}
|
|
90
112
|
|
|
91
|
-
export type { StoryblokAsset, StoryblokMultiasset, StoryblokMultilink, StoryblokPropertyType, StoryblokRichtext, StoryblokTable };
|
|
113
|
+
export type { StoryblokAsset, StoryblokMultiasset, StoryblokMultilink, StoryblokMultilinkLink, StoryblokMultilinkStory, StoryblokMultilinkUrl, StoryblokPropertyType, StoryblokRichtext, StoryblokTable };
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storyblok",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.6.
|
|
4
|
+
"version": "4.6.11",
|
|
5
5
|
"description": "Storyblok CLI",
|
|
6
6
|
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"open": "^10.1.2",
|
|
41
41
|
"pathe": "^2.0.3",
|
|
42
42
|
"read-package-up": "^11.0.0",
|
|
43
|
+
"@storyblok/js": "4.4.0",
|
|
43
44
|
"@storyblok/management-api-client": "0.1.5",
|
|
44
|
-
"@storyblok/js": "4.3.2",
|
|
45
45
|
"@storyblok/region-helper": "1.3.1",
|
|
46
46
|
"storyblok-js-client": "7.1.5"
|
|
47
47
|
},
|