@modrinth/api-client 0.58.0 → 0.59.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/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3161,6 +3161,7 @@ export declare namespace Labrinth {
|
|
|
3161
3161
|
id: string;
|
|
3162
3162
|
name: string;
|
|
3163
3163
|
icon_url: string | null;
|
|
3164
|
+
raw_icon_url: string | null;
|
|
3164
3165
|
max_scopes: number;
|
|
3165
3166
|
redirect_uris: OAuthRedirectUri[];
|
|
3166
3167
|
created_by: string;
|
|
@@ -3265,6 +3266,7 @@ export declare namespace Labrinth {
|
|
|
3265
3266
|
loaders: string[];
|
|
3266
3267
|
versions: string[];
|
|
3267
3268
|
icon_url?: string;
|
|
3269
|
+
raw_icon_url?: string;
|
|
3268
3270
|
issues_url?: string;
|
|
3269
3271
|
source_url?: string;
|
|
3270
3272
|
wiki_url?: string;
|
|
@@ -3381,6 +3383,7 @@ export declare namespace Labrinth {
|
|
|
3381
3383
|
mrpack_loaders: string[];
|
|
3382
3384
|
versions: string[];
|
|
3383
3385
|
icon_url?: string;
|
|
3386
|
+
raw_icon_url?: string;
|
|
3384
3387
|
link_urls: Record<string, Link>;
|
|
3385
3388
|
gallery: GalleryItem[];
|
|
3386
3389
|
color?: number;
|
|
@@ -3488,6 +3491,7 @@ export declare namespace Labrinth {
|
|
|
3488
3491
|
team_id: string;
|
|
3489
3492
|
description: string;
|
|
3490
3493
|
icon_url: string | null;
|
|
3494
|
+
raw_icon_url: string | null;
|
|
3491
3495
|
color: number | null;
|
|
3492
3496
|
members: TeamMember[];
|
|
3493
3497
|
};
|
|
@@ -3588,6 +3592,7 @@ export declare namespace Labrinth {
|
|
|
3588
3592
|
team_id: string;
|
|
3589
3593
|
description: string;
|
|
3590
3594
|
icon_url: string | null;
|
|
3595
|
+
raw_icon_url: string | null;
|
|
3591
3596
|
color: number | null;
|
|
3592
3597
|
members: Projects.v3.TeamMember[];
|
|
3593
3598
|
moderation_notes?: Users.Common.ModerationNote | null;
|
|
@@ -4353,6 +4358,7 @@ export declare namespace Labrinth {
|
|
|
4353
4358
|
name: string;
|
|
4354
4359
|
description: string | null;
|
|
4355
4360
|
icon_url: string | null;
|
|
4361
|
+
raw_icon_url: string | null;
|
|
4356
4362
|
color: number | null;
|
|
4357
4363
|
status: CollectionStatus;
|
|
4358
4364
|
created: string;
|
package/package.json
CHANGED