@modrinth/api-client 0.57.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -2
  2. 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
  };
@@ -3558,8 +3562,8 @@ export declare namespace Labrinth {
3558
3562
  note?: string | null;
3559
3563
  };
3560
3564
  export type ProjectDisclosureData = ProjectDisclosure & {
3561
- set_by_moderator: boolean;
3562
- lock_status: DisclosureLockStatus;
3565
+ set_by_moderator?: boolean | null;
3566
+ lock_status?: DisclosureLockStatus | null;
3563
3567
  updated_at: string;
3564
3568
  updated_by?: string | null;
3565
3569
  deleted_at?: string | null;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modrinth/api-client",
3
- "version": "0.57.0",
3
+ "version": "0.59.0",
4
4
  "description": "An API client for Modrinth's API for use in nuxt, tauri and plain node/browser environments.",
5
5
  "license": "LGPL-3.0-only",
6
6
  "type": "module",