tornapi-typescript 4.3.3 → 4.3.4

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
@@ -126,7 +126,7 @@ export type UserGenderEnum = "Male" | "Female" | "Enby";
126
126
  export type HonorRarityEnum = "Extremely Rare" | "Very Rare" | "Rare" | "Limited" | "Uncommon" | "Common" | "Very Common" | "Unknown" | "Unknown Rarity";
127
127
  export type Parameters = string;
128
128
  export type ReviveSetting = "Everyone" | "Friends & faction" | "No one" | "Unknown";
129
- export type FactionWarfareTypeEnum = "ranked" | "territory" | "raid" | "chain" | "db";
129
+ export type FactionWarfareTypeEnum = "ranked" | "territory" | "raid" | "chain" | "chainOngoing" | "db";
130
130
  export type PropertyModificationEnum = "Hot Tub" | "Sauna" | "Open Bar" | "Small Pool" | "Medium Pool" | "Large Pool" | "Small Vault" | "Medium Vault" | "Large Vault" | "Extra Large Vault" | "Medical Facility" | "Advanced Shooting Range" | "Airstrip" | "Private Yacht" | "Sufficient Interior Modification" | "Superior Interior Modification";
131
131
  export type PropertyStaffEnum = "Maid" | "Guard" | "Doctor" | "Pilot" | "Butler";
132
132
  export type FactionCrimeStatusEnum = "Recruiting" | "Planning" | "Successful" | "Failure" | "Expired";
package/dist/index.ts CHANGED
@@ -4865,6 +4865,7 @@ export type FactionWarfareTypeEnum =
4865
4865
  | "territory"
4866
4866
  | "raid"
4867
4867
  | "chain"
4868
+ | "chainOngoing"
4868
4869
  | "db";
4869
4870
 
4870
4871
  export type PropertyModificationEnum =
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": "4.3.3"
6
+ "version": "4.3.4"
7
7
  },
8
8
  "servers": [
9
9
  {
@@ -14276,6 +14276,7 @@
14276
14276
  "territory",
14277
14277
  "raid",
14278
14278
  "chain",
14279
+ "chainOngoing",
14279
14280
  "db"
14280
14281
  ]
14281
14282
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tornapi-typescript",
3
3
  "type": "module",
4
- "version": "4.3.3",
4
+ "version": "4.3.4",
5
5
  "scripts": {
6
6
  "generate-types": "tsc && node build/index.js"
7
7
  },