tornapi-typescript 6.1.0 → 6.1.1

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 CHANGED
@@ -66,7 +66,7 @@ export type FactionTerritoryWarsCategoryEnum = "finsihed" | "ongoing";
66
66
  export type TradeCategoryEnum = "finished" | "ongoing";
67
67
  export type FactionCrimeUserOutcome = "Successful" | "Failed" | "Jailed" | "Injured" | "Hospitalized";
68
68
  export type FactionCrimeUserItemOutcomeEnum = "user" | "faction";
69
- export type FactionCrimeItemOutcomeEnum = "lost" | "used";
69
+ export type FactionCrimeItemOutcomeEnum = "lost" | "used" | "unused";
70
70
  export type RaceId = number;
71
71
  export type HonorId = number;
72
72
  export type MedalId = number;
package/dist/index.ts CHANGED
@@ -4701,7 +4701,7 @@ export type FactionCrimeUserOutcome =
4701
4701
 
4702
4702
  export type FactionCrimeUserItemOutcomeEnum = "user" | "faction";
4703
4703
 
4704
- export type FactionCrimeItemOutcomeEnum = "lost" | "used";
4704
+ export type FactionCrimeItemOutcomeEnum = "lost" | "used" | "unused";
4705
4705
 
4706
4706
  export type RaceId = number;
4707
4707
 
package/dist/openapi.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Torn API",
5
5
  "description": "\n * The development of Torn's API v2 is still ongoing.\n * If selections remain unaltered, they will default to the API v1 version.\n * Unlike API v1, API v2 accepts both selections and IDs as path and query parameters.\n * If any discrepancies or errors are found, please submit a [bug report](https://www.torn.com/forums.php#/p=forums&f=19&b=0&a=0) on the Torn Forums.\n * In case you're using bots to check for changes on openapi.json file, make sure to specificy a custom user-agent header - CloudFlare sometimes prevents requests from default user-agents.",
6
- "version": "6.1.0"
6
+ "version": "6.1.1"
7
7
  },
8
8
  "servers": [
9
9
  {
@@ -15713,7 +15713,8 @@
15713
15713
  "type": "string",
15714
15714
  "enum": [
15715
15715
  "lost",
15716
- "used"
15716
+ "used",
15717
+ "unused"
15717
15718
  ]
15718
15719
  },
15719
15720
  "RaceId": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tornapi-typescript",
3
3
  "type": "module",
4
- "version": "6.1.0",
4
+ "version": "6.1.1",
5
5
  "repository": {
6
6
  "url": "git+https://github.com/Torn-Playground/tornapi-typescript.git"
7
7
  },
@@ -9,7 +9,7 @@
9
9
  "generate-types": "tsc && node build/index.js"
10
10
  },
11
11
  "devDependencies": {
12
- "@scalar/openapi-types": "^0.9.2",
12
+ "@scalar/openapi-types": "^0.9.3",
13
13
  "@types/node": "^25.9.5",
14
14
  "prettier": "^3.9.5",
15
15
  "typeconv": "^2.3.1",