tornapi-typescript 5.1.2 → 5.1.3
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 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2797,7 +2797,7 @@ export interface RacingRaceDetails extends Race {
|
|
|
2797
2797
|
is_official: boolean;
|
|
2798
2798
|
}
|
|
2799
2799
|
export type UserRaceDetails = RacingRaceDetails & {
|
|
2800
|
-
skill_gain:
|
|
2800
|
+
skill_gain: number;
|
|
2801
2801
|
};
|
|
2802
2802
|
export interface RacingRaceDetailsResponse {
|
|
2803
2803
|
race: RacingRaceDetails;
|
package/dist/index.ts
CHANGED
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.1.
|
|
6
|
+
"version": "5.1.3"
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -28046,7 +28046,10 @@
|
|
|
28046
28046
|
"skill_gain"
|
|
28047
28047
|
],
|
|
28048
28048
|
"properties": {
|
|
28049
|
-
"skill_gain": {
|
|
28049
|
+
"skill_gain": {
|
|
28050
|
+
"type": "number",
|
|
28051
|
+
"format": "float"
|
|
28052
|
+
}
|
|
28050
28053
|
},
|
|
28051
28054
|
"type": "object"
|
|
28052
28055
|
}
|