tornapi-typescript 5.5.1 → 5.5.2
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 +1 -0
- package/dist/index.ts +1 -0
- package/dist/openapi.json +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1962,6 +1962,7 @@ export interface FactionRaidReport {
|
|
|
1962
1962
|
export interface FactionSlotPositionInfo {
|
|
1963
1963
|
id: TornOrganizedCrimePositionId;
|
|
1964
1964
|
label: string;
|
|
1965
|
+
/** This field is no longer needed as there's 'label' field now.<br>This field will be removed on 1st of June 2026. */
|
|
1965
1966
|
number: number;
|
|
1966
1967
|
}
|
|
1967
1968
|
export interface FactionRaidReportFaction {
|
package/dist/index.ts
CHANGED
|
@@ -7509,6 +7509,7 @@ export interface FactionRaidReport {
|
|
|
7509
7509
|
export interface FactionSlotPositionInfo {
|
|
7510
7510
|
id: TornOrganizedCrimePositionId;
|
|
7511
7511
|
label: string;
|
|
7512
|
+
/** This field is no longer needed as there's 'label' field now.<br>This field will be removed on 1st of June 2026. */
|
|
7512
7513
|
number: number;
|
|
7513
7514
|
}
|
|
7514
7515
|
|
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": "5.5.
|
|
6
|
+
"version": "5.5.2"
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -24551,8 +24551,10 @@
|
|
|
24551
24551
|
"type": "string"
|
|
24552
24552
|
},
|
|
24553
24553
|
"number": {
|
|
24554
|
+
"description": "This field is no longer needed as there's 'label' field now.<br>This field will be removed on 1st of June 2026.",
|
|
24554
24555
|
"type": "integer",
|
|
24555
|
-
"format": "int32"
|
|
24556
|
+
"format": "int32",
|
|
24557
|
+
"deprecated": true
|
|
24556
24558
|
}
|
|
24557
24559
|
},
|
|
24558
24560
|
"type": "object"
|