@parra/parra-js-sdk 0.3.359 → 0.3.361
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 +17 -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",
|
@@ -542,6 +556,7 @@ export interface ImageAsset {
|
|
542
556
|
file_type: string;
|
543
557
|
mime_type: string;
|
544
558
|
blur_hash?: string | null;
|
559
|
+
thumbnails?: ImageAssetThumbnails | null;
|
545
560
|
}
|
546
561
|
export interface CreateCheckoutSessionRequestBody {
|
547
562
|
plan_id: string;
|
@@ -998,6 +1013,7 @@ export interface CreateCreatorAttachmentAttachmentRequestBody {
|
|
998
1013
|
size: Size;
|
999
1014
|
url: string;
|
1000
1015
|
blur_hash?: string | null;
|
1016
|
+
thumbnails?: ImageAssetThumbnails | null;
|
1001
1017
|
}
|
1002
1018
|
export interface CreateCreatorUpdateRequestBody {
|
1003
1019
|
publish?: boolean | null;
|
@@ -1808,6 +1824,7 @@ export interface CreateTicketAttachmentRequestBody {
|
|
1808
1824
|
size: Size;
|
1809
1825
|
url: string;
|
1810
1826
|
blur_hash?: string | null;
|
1827
|
+
thumbnails?: ImageAssetThumbnails | null;
|
1811
1828
|
}
|
1812
1829
|
export interface UpdateTicketChecklistItemRequestBody {
|
1813
1830
|
title?: string;
|