@parra/parra-js-sdk 0.3.566 → 0.3.567
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 +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -55,6 +55,7 @@ export interface ImageAssetStub {
|
|
55
55
|
size: Size;
|
56
56
|
url: string;
|
57
57
|
blur_hash?: string | null;
|
58
|
+
alt_text?: string | null;
|
58
59
|
thumbnails?: ImageAssetThumbnails | null;
|
59
60
|
}
|
60
61
|
export interface TicketFeatured {
|
@@ -124,6 +125,7 @@ export interface ReleaseHeader {
|
|
124
125
|
size: Size;
|
125
126
|
url: string;
|
126
127
|
blur_hash?: string | null;
|
128
|
+
alt_text?: string | null;
|
127
129
|
thumbnails?: ImageAssetThumbnails | null;
|
128
130
|
}
|
129
131
|
export declare enum ReleaseType {
|
@@ -610,6 +612,7 @@ export interface ImageAsset {
|
|
610
612
|
group: string;
|
611
613
|
file_type: string;
|
612
614
|
mime_type: string;
|
615
|
+
alt_text?: string | null;
|
613
616
|
blur_hash?: string | null;
|
614
617
|
thumbnails?: ImageAssetThumbnails | null;
|
615
618
|
}
|