tornapi-typescript 6.10.1 → 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 CHANGED
@@ -1342,7 +1342,7 @@ export interface UserRacesResponse {
1342
1342
  }
1343
1343
  export interface UserRaceCarDetails extends RaceCar {
1344
1344
  id: RaceCarId;
1345
- car_name?: string | null;
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?: string | null;
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.1"
6
+ "version": "6.10.2"
7
7
  },
8
8
  "servers": [
9
9
  {
@@ -23113,7 +23113,8 @@
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": {
@@ -36222,7 +36223,7 @@
36222
36223
  "ApiNanostamp": {
36223
36224
  "name": "nanostamp",
36224
36225
  "in": "query",
36225
- "description": "Timestamp in nanoseconds to bypass system limitation when using regular timestamps",
36226
+ "description": "Timestamp in nanoseconds to bypass system limitation when more than 100 logs were returned in the same second.",
36226
36227
  "required": false,
36227
36228
  "schema": {
36228
36229
  "type": "string"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tornapi-typescript",
3
3
  "type": "module",
4
- "version": "6.10.1",
4
+ "version": "6.10.2",
5
5
  "repository": {
6
6
  "url": "git+https://github.com/Torn-Playground/tornapi-typescript.git"
7
7
  },