@modrinth/api-client 0.27.0 → 0.28.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.
@@ -1537,6 +1537,15 @@ export declare namespace Labrinth {
1537
1537
  type: 'status_change';
1538
1538
  new_status: Projects.v2.ProjectStatus;
1539
1539
  old_status: Projects.v2.ProjectStatus;
1540
+ } | {
1541
+ type: 'tech_review';
1542
+ verdict: 'safe' | 'unsafe';
1543
+ } | {
1544
+ type: 'tech_review_entered';
1545
+ } | {
1546
+ type: 'tech_review_exited';
1547
+ } | {
1548
+ type: 'tech_review_exit_file_deleted';
1540
1549
  } | {
1541
1550
  type: 'thread_closure';
1542
1551
  } | {
@@ -1867,7 +1876,7 @@ export declare namespace Labrinth {
1867
1876
  };
1868
1877
  type UpdateGlobalIssueRequest = {
1869
1878
  detail_key: string;
1870
- verdict: 'safe' | 'unsafe';
1879
+ verdict: DelphiReportIssueStatus;
1871
1880
  };
1872
1881
  type SearchGlobalIssueDetailsRequest = {
1873
1882
  limit?: number;
@@ -1962,6 +1971,8 @@ export declare namespace Labrinth {
1962
1971
  decompiled_source: string | null;
1963
1972
  data: Record<string, unknown>;
1964
1973
  severity: DelphiSeverity;
1974
+ local_status: DelphiReportIssueStatus | null;
1975
+ global_status: DelphiReportIssueStatus | null;
1965
1976
  status: DelphiReportIssueStatus;
1966
1977
  };
1967
1978
  type Ownership = {
@@ -2001,6 +2012,15 @@ export declare namespace Labrinth {
2001
2012
  type: 'status_change';
2002
2013
  new_status: Projects.v2.ProjectStatus;
2003
2014
  old_status: Projects.v2.ProjectStatus;
2015
+ } | {
2016
+ type: 'tech_review';
2017
+ verdict: 'safe' | 'unsafe';
2018
+ } | {
2019
+ type: 'tech_review_entered';
2020
+ } | {
2021
+ type: 'tech_review_exited';
2022
+ } | {
2023
+ type: 'tech_review_exit_file_deleted';
2004
2024
  } | {
2005
2025
  type: 'thread_closure';
2006
2026
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modrinth/api-client",
3
- "version": "0.27.0",
3
+ "version": "0.28.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",