tornapi-typescript 6.10.0 → 6.10.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 -1
- package/dist/index.ts +1 -1
- package/dist/openapi.json +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1342,7 +1342,7 @@ export interface UserRacesResponse {
|
|
|
1342
1342
|
}
|
|
1343
1343
|
export interface UserRaceCarDetails extends RaceCar {
|
|
1344
1344
|
id: RaceCarId;
|
|
1345
|
-
car_name
|
|
1345
|
+
car_name: string | null;
|
|
1346
1346
|
worth: number;
|
|
1347
1347
|
points_spent: number;
|
|
1348
1348
|
races_entered: number;
|
package/dist/index.ts
CHANGED
|
@@ -6522,7 +6522,7 @@ export interface UserRacesResponse {
|
|
|
6522
6522
|
|
|
6523
6523
|
export interface UserRaceCarDetails extends RaceCar {
|
|
6524
6524
|
id: RaceCarId;
|
|
6525
|
-
car_name
|
|
6525
|
+
car_name: string | null;
|
|
6526
6526
|
worth: number;
|
|
6527
6527
|
points_spent: number;
|
|
6528
6528
|
races_entered: number;
|
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.10.
|
|
6
|
+
"version": "6.10.2"
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -23113,15 +23113,15 @@
|
|
|
23113
23113
|
"races_entered",
|
|
23114
23114
|
"races_won",
|
|
23115
23115
|
"is_removed",
|
|
23116
|
-
"parts"
|
|
23116
|
+
"parts",
|
|
23117
|
+
"car_name"
|
|
23117
23118
|
],
|
|
23118
23119
|
"properties": {
|
|
23119
23120
|
"id": {
|
|
23120
23121
|
"$ref": "#/components/schemas/RaceCarId"
|
|
23121
23122
|
},
|
|
23122
23123
|
"car_name": {
|
|
23123
|
-
"description": "
|
|
23124
|
-
"deprecated": true,
|
|
23124
|
+
"description": "Car nickanme.",
|
|
23125
23125
|
"oneOf": [
|
|
23126
23126
|
{
|
|
23127
23127
|
"type": "string"
|
|
@@ -36223,7 +36223,7 @@
|
|
|
36223
36223
|
"ApiNanostamp": {
|
|
36224
36224
|
"name": "nanostamp",
|
|
36225
36225
|
"in": "query",
|
|
36226
|
-
"description": "Timestamp in nanoseconds to bypass system limitation when
|
|
36226
|
+
"description": "Timestamp in nanoseconds to bypass system limitation when more than 100 logs were returned in the same second.",
|
|
36227
36227
|
"required": false,
|
|
36228
36228
|
"schema": {
|
|
36229
36229
|
"type": "string"
|