@parra/parra-js-sdk 0.3.358 → 0.3.360
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/ParraAPI.d.ts +16 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -35,6 +35,18 @@ export interface Size {
|
|
35
35
|
width: number;
|
36
36
|
height: number;
|
37
37
|
}
|
38
|
+
export interface ImageAssetThumbnail {
|
39
|
+
q: string;
|
40
|
+
size: Size;
|
41
|
+
}
|
42
|
+
export interface ImageAssetThumbnails {
|
43
|
+
xs: ImageAssetThumbnail;
|
44
|
+
sm: ImageAssetThumbnail;
|
45
|
+
md: ImageAssetThumbnail;
|
46
|
+
lg: ImageAssetThumbnail;
|
47
|
+
xl: ImageAssetThumbnail;
|
48
|
+
xxl: ImageAssetThumbnail;
|
49
|
+
}
|
38
50
|
export interface EntityIdStub {
|
39
51
|
id: string;
|
40
52
|
}
|
@@ -43,6 +55,7 @@ export interface ImageAssetStub {
|
|
43
55
|
size: Size;
|
44
56
|
url: string;
|
45
57
|
blur_hash?: string | null;
|
58
|
+
thumbnails?: ImageAssetThumbnails | null;
|
46
59
|
}
|
47
60
|
export interface TicketFeatured {
|
48
61
|
title: string;
|
@@ -111,6 +124,7 @@ export interface ReleaseHeader {
|
|
111
124
|
size: Size;
|
112
125
|
url: string;
|
113
126
|
blur_hash?: string | null;
|
127
|
+
thumbnails?: ImageAssetThumbnails | null;
|
114
128
|
}
|
115
129
|
export declare enum ReleaseType {
|
116
130
|
major = "major",
|
@@ -998,6 +1012,7 @@ export interface CreateCreatorAttachmentAttachmentRequestBody {
|
|
998
1012
|
size: Size;
|
999
1013
|
url: string;
|
1000
1014
|
blur_hash?: string | null;
|
1015
|
+
thumbnails?: ImageAssetThumbnails | null;
|
1001
1016
|
}
|
1002
1017
|
export interface CreateCreatorUpdateRequestBody {
|
1003
1018
|
publish?: boolean | null;
|
@@ -1808,6 +1823,7 @@ export interface CreateTicketAttachmentRequestBody {
|
|
1808
1823
|
size: Size;
|
1809
1824
|
url: string;
|
1810
1825
|
blur_hash?: string | null;
|
1826
|
+
thumbnails?: ImageAssetThumbnails | null;
|
1811
1827
|
}
|
1812
1828
|
export interface UpdateTicketChecklistItemRequestBody {
|
1813
1829
|
title?: string;
|