iracing-data-client 0.1.1 → 0.2.0
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/lib/index.d.mts +1148 -228
- package/lib/index.d.ts +1148 -228
- package/lib/index.js +1580 -516
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1565 -517
- package/lib/index.mjs.map +1 -1
- package/package.json +7 -3
package/lib/index.d.mts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as z from 'zod/mini';
|
|
2
|
+
import { HttpClientStores } from '@http-client-toolkit/core';
|
|
3
|
+
export { HttpClientStores } from '@http-client-toolkit/core';
|
|
2
4
|
|
|
3
5
|
/**
|
|
4
6
|
* Fetch-like function type for HTTP requests.
|
|
@@ -205,16 +207,39 @@ interface IRacingClientOptions {
|
|
|
205
207
|
* @default true
|
|
206
208
|
*/
|
|
207
209
|
validateParams?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Enable semantic validation for known endpoint parameter combinations.
|
|
212
|
+
* @default true
|
|
213
|
+
*/
|
|
214
|
+
validateSemanticParams?: boolean;
|
|
215
|
+
/**
|
|
216
|
+
* Optional stores for caching, deduplication, and rate limiting.
|
|
217
|
+
* When omitted, HttpClient operates without stores (same as current behaviour).
|
|
218
|
+
*/
|
|
219
|
+
stores?: HttpClientStores;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Options for constructing an IRacingError.
|
|
223
|
+
*/
|
|
224
|
+
interface IRacingErrorOptions {
|
|
225
|
+
status?: number;
|
|
226
|
+
statusText?: string;
|
|
227
|
+
url?: string;
|
|
228
|
+
responseData?: unknown;
|
|
229
|
+
headers?: Headers;
|
|
208
230
|
}
|
|
209
231
|
/**
|
|
210
232
|
* Error thrown for iRacing API-level errors.
|
|
211
233
|
*/
|
|
212
234
|
declare class IRacingError extends Error {
|
|
213
|
-
readonly status?: number
|
|
214
|
-
readonly statusText?: string
|
|
215
|
-
readonly
|
|
216
|
-
|
|
235
|
+
readonly status?: number;
|
|
236
|
+
readonly statusText?: string;
|
|
237
|
+
readonly url?: string;
|
|
238
|
+
readonly responseData?: unknown;
|
|
239
|
+
readonly headers?: Headers;
|
|
240
|
+
constructor(message: string, options?: IRacingErrorOptions);
|
|
217
241
|
get isMaintenanceMode(): boolean;
|
|
242
|
+
get isServiceUnavailable(): boolean;
|
|
218
243
|
get isRateLimited(): boolean;
|
|
219
244
|
get isUnauthorized(): boolean;
|
|
220
245
|
}
|
|
@@ -222,12 +247,35 @@ declare class IRacingError extends Error {
|
|
|
222
247
|
* iRacing Data API Client with OAuth2 authentication.
|
|
223
248
|
*/
|
|
224
249
|
declare class IRacingClient {
|
|
225
|
-
private readonly
|
|
250
|
+
private readonly userFetchFn;
|
|
226
251
|
private readonly authConfig;
|
|
227
252
|
private readonly tokenManager;
|
|
228
253
|
private readonly validateParams;
|
|
254
|
+
private readonly validateSemanticParams;
|
|
255
|
+
private readonly httpClient;
|
|
256
|
+
private validSeasonCarClassPairs;
|
|
257
|
+
private validTeamSeasonCarClassPairs;
|
|
229
258
|
private authenticationPromise;
|
|
230
259
|
constructor(options: IRacingClientOptions);
|
|
260
|
+
/**
|
|
261
|
+
* Normalizes a fetch-like response into a proper Response object.
|
|
262
|
+
* This ensures compatibility with mocked fetch implementations that return
|
|
263
|
+
* plain objects instead of real Response instances.
|
|
264
|
+
*/
|
|
265
|
+
private normalizeResponse;
|
|
266
|
+
/**
|
|
267
|
+
* Creates the fetchFn that handles S3 link resolution and CSV responses.
|
|
268
|
+
*/
|
|
269
|
+
private createFetchFn;
|
|
270
|
+
/**
|
|
271
|
+
* Creates the requestInterceptor that injects auth headers.
|
|
272
|
+
*/
|
|
273
|
+
private createRequestInterceptor;
|
|
274
|
+
/**
|
|
275
|
+
* Classifies an HTTP error response into a specific IRacingError.
|
|
276
|
+
* Called by the toolkit's errorHandler — only receives HTTP errors, never network failures.
|
|
277
|
+
*/
|
|
278
|
+
private classifyHttpError;
|
|
231
279
|
/**
|
|
232
280
|
* Ensures the client is authenticated before making API requests.
|
|
233
281
|
*/
|
|
@@ -240,6 +288,10 @@ declare class IRacingClient {
|
|
|
240
288
|
private buildUrl;
|
|
241
289
|
private mapParamsToApi;
|
|
242
290
|
private mapResponseFromApi;
|
|
291
|
+
private pairKey;
|
|
292
|
+
private collectSeasonCarClassPairsFromData;
|
|
293
|
+
private loadSeasonCarClassPairs;
|
|
294
|
+
ensureSeasonCarClassPair(endpointId: string, seasonId: number, carClassId: number): Promise<void>;
|
|
243
295
|
/**
|
|
244
296
|
* Makes a GET request to the iRacing Data API.
|
|
245
297
|
*/
|
|
@@ -257,23 +309,7 @@ declare class IRacingClient {
|
|
|
257
309
|
clearTokens(): void;
|
|
258
310
|
}
|
|
259
311
|
|
|
260
|
-
declare const CarAssets: z.ZodMiniRecord<z.ZodMiniString<string>, z.
|
|
261
|
-
carId: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniNumber<number>>>;
|
|
262
|
-
carRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniArray<z.ZodMiniUnknown>>>;
|
|
263
|
-
detailCopy: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
264
|
-
detailScreenShotImages: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
265
|
-
detailTechspecsCopy: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
266
|
-
folder: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
267
|
-
galleryImages: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
268
|
-
galleryPrefix: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
269
|
-
groupImage: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
270
|
-
groupName: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
271
|
-
largeImage: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
272
|
-
logo: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
273
|
-
smallImage: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
274
|
-
sponsorLogo: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
275
|
-
templatePath: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
276
|
-
}, z.core.$strip>>;
|
|
312
|
+
declare const CarAssets: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>;
|
|
277
313
|
declare const CarGet: z.ZodMiniArray<z.ZodMiniObject<{
|
|
278
314
|
aiEnabled: z.ZodMiniBoolean<boolean>;
|
|
279
315
|
allowNumberColors: z.ZodMiniBoolean<boolean>;
|
|
@@ -520,6 +556,7 @@ declare class DriverStatsByCategoryService {
|
|
|
520
556
|
}
|
|
521
557
|
|
|
522
558
|
declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
559
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
523
560
|
subscribed: z.ZodMiniBoolean<boolean>;
|
|
524
561
|
sequence: z.ZodMiniNumber<number>;
|
|
525
562
|
sessions: z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -553,7 +590,6 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
553
590
|
subsessionId: z.ZodMiniNumber<number>;
|
|
554
591
|
passwordProtected: z.ZodMiniBoolean<boolean>;
|
|
555
592
|
sessionName: z.ZodMiniString<string>;
|
|
556
|
-
sessionDesc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
557
593
|
openRegExpires: z.ZodMiniString<string>;
|
|
558
594
|
launchAt: z.ZodMiniString<string>;
|
|
559
595
|
fullCourseCautions: z.ZodMiniBoolean<boolean>;
|
|
@@ -634,22 +670,13 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
634
670
|
}, z.core.$strip>;
|
|
635
671
|
track: z.ZodMiniObject<{
|
|
636
672
|
categoryId: z.ZodMiniNumber<number>;
|
|
637
|
-
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
638
673
|
trackId: z.ZodMiniNumber<number>;
|
|
639
674
|
trackName: z.ZodMiniString<string>;
|
|
675
|
+
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
640
676
|
}, z.core.$strip>;
|
|
641
677
|
weather: z.ZodMiniObject<{
|
|
642
678
|
allowFog: z.ZodMiniBoolean<boolean>;
|
|
643
|
-
|
|
644
|
-
forecastType: z.ZodMiniNumber<number>;
|
|
645
|
-
precipitation: z.ZodMiniNumber<number>;
|
|
646
|
-
skies: z.ZodMiniNumber<number>;
|
|
647
|
-
stopPrecip: z.ZodMiniNumber<number>;
|
|
648
|
-
temperature: z.ZodMiniNumber<number>;
|
|
649
|
-
weatherSeed: z.ZodMiniNumber<number>;
|
|
650
|
-
windDir: z.ZodMiniNumber<number>;
|
|
651
|
-
windSpeed: z.ZodMiniNumber<number>;
|
|
652
|
-
}, z.core.$strip>>;
|
|
679
|
+
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
653
680
|
precipOption: z.ZodMiniNumber<number>;
|
|
654
681
|
relHumidity: z.ZodMiniNumber<number>;
|
|
655
682
|
simulatedStartTime: z.ZodMiniString<string>;
|
|
@@ -660,27 +687,36 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
660
687
|
tempValue: z.ZodMiniNumber<number>;
|
|
661
688
|
timeOfDay: z.ZodMiniNumber<number>;
|
|
662
689
|
trackWater: z.ZodMiniNumber<number>;
|
|
690
|
+
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
663
691
|
version: z.ZodMiniNumber<number>;
|
|
692
|
+
windDir: z.ZodMiniNumber<number>;
|
|
693
|
+
windUnits: z.ZodMiniNumber<number>;
|
|
694
|
+
windValue: z.ZodMiniNumber<number>;
|
|
695
|
+
forecastOptions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
696
|
+
forecastType: z.ZodMiniNumber<number>;
|
|
697
|
+
precipitation: z.ZodMiniNumber<number>;
|
|
698
|
+
skies: z.ZodMiniNumber<number>;
|
|
699
|
+
stopPrecip: z.ZodMiniNumber<number>;
|
|
700
|
+
temperature: z.ZodMiniNumber<number>;
|
|
701
|
+
weatherSeed: z.ZodMiniNumber<number>;
|
|
702
|
+
windDir: z.ZodMiniNumber<number>;
|
|
703
|
+
windSpeed: z.ZodMiniNumber<number>;
|
|
704
|
+
}, z.core.$strip>>;
|
|
664
705
|
weatherSummary: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
665
|
-
maxPrecipRate: z.ZodMiniNumber<number
|
|
706
|
+
maxPrecipRate: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
666
707
|
maxPrecipRateDesc: z.ZodMiniString<string>;
|
|
667
708
|
precipChance: z.ZodMiniNumber<number>;
|
|
668
|
-
skiesHigh: z.ZodMiniNumber<number
|
|
669
|
-
skiesLow: z.ZodMiniNumber<number
|
|
670
|
-
tempHigh: z.ZodMiniNumber<number
|
|
671
|
-
tempLow: z.ZodMiniNumber<number
|
|
672
|
-
tempUnits: z.ZodMiniNumber<number
|
|
673
|
-
windDir: z.ZodMiniNumber<number
|
|
674
|
-
windHigh: z.ZodMiniNumber<number
|
|
675
|
-
windLow: z.ZodMiniNumber<number
|
|
676
|
-
windUnits: z.ZodMiniNumber<number
|
|
709
|
+
skiesHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
710
|
+
skiesLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
711
|
+
tempHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
712
|
+
tempLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
713
|
+
tempUnits: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
714
|
+
windDir: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
715
|
+
windHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
716
|
+
windLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
717
|
+
windUnits: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
677
718
|
}, z.core.$strip>>;
|
|
678
719
|
weatherUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
679
|
-
windDir: z.ZodMiniNumber<number>;
|
|
680
|
-
windUnits: z.ZodMiniNumber<number>;
|
|
681
|
-
windValue: z.ZodMiniNumber<number>;
|
|
682
|
-
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
683
|
-
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
684
720
|
}, z.core.$strip>;
|
|
685
721
|
trackState: z.ZodMiniObject<{
|
|
686
722
|
leaveMarbles: z.ZodMiniBoolean<boolean>;
|
|
@@ -719,24 +755,41 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
719
755
|
powerAdjustPct: z.ZodMiniNumber<number>;
|
|
720
756
|
maxDryTireSets: z.ZodMiniNumber<number>;
|
|
721
757
|
packageId: z.ZodMiniNumber<number>;
|
|
758
|
+
qualSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
759
|
+
qualSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
760
|
+
raceSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
761
|
+
raceSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
722
762
|
}, z.core.$strip>>;
|
|
723
763
|
countByCarId: z.ZodMiniObject<{
|
|
764
|
+
73: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
724
765
|
112: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
725
|
-
117: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
726
|
-
118: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
727
766
|
119: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
767
|
+
127: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
728
768
|
128: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
729
769
|
132: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
730
770
|
133: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
771
|
+
139: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
772
|
+
140: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
773
|
+
141: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
731
774
|
143: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
775
|
+
144: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
732
776
|
146: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
733
777
|
147: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
734
778
|
150: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
779
|
+
153: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
735
780
|
156: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
736
781
|
157: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
782
|
+
159: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
783
|
+
160: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
784
|
+
168: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
737
785
|
169: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
786
|
+
170: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
787
|
+
171: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
788
|
+
172: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
738
789
|
173: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
790
|
+
174: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
739
791
|
176: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
792
|
+
178: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
740
793
|
184: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
741
794
|
185: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
742
795
|
188: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -744,17 +797,21 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
744
797
|
190: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
745
798
|
192: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
746
799
|
194: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
747
|
-
|
|
800
|
+
196: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
801
|
+
203: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
802
|
+
204: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
803
|
+
205: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
804
|
+
206: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
805
|
+
207: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
748
806
|
}, z.core.$strip>;
|
|
749
807
|
countByCarClassId: z.ZodMiniObject<{
|
|
750
808
|
0: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
809
|
+
2523: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
751
810
|
2708: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
4084: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
757
|
-
4085: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
811
|
+
4011: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
812
|
+
4029: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
813
|
+
4033: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
814
|
+
4091: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
758
815
|
}, z.core.$strip>;
|
|
759
816
|
carTypes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
760
817
|
carType: z.ZodMiniString<string>;
|
|
@@ -782,11 +839,57 @@ declare const HostedCombinedSessions: z.ZodMiniObject<{
|
|
|
782
839
|
broadcaster: z.ZodMiniBoolean<boolean>;
|
|
783
840
|
minIr: z.ZodMiniNumber<number>;
|
|
784
841
|
maxIr: z.ZodMiniNumber<number>;
|
|
842
|
+
sessionDesc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
785
843
|
aiMinSkill: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
786
844
|
aiMaxSkill: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
787
845
|
aiRosterName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
846
|
+
heatSesInfo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
847
|
+
consolationDeltaMaxFieldSize: z.ZodMiniNumber<number>;
|
|
848
|
+
consolationDeltaSessionLaps: z.ZodMiniNumber<number>;
|
|
849
|
+
consolationDeltaSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
850
|
+
consolationFirstMaxFieldSize: z.ZodMiniNumber<number>;
|
|
851
|
+
consolationFirstSessionLaps: z.ZodMiniNumber<number>;
|
|
852
|
+
consolationFirstSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
853
|
+
consolationNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
854
|
+
consolationNumToConsolation: z.ZodMiniNumber<number>;
|
|
855
|
+
consolationNumToMain: z.ZodMiniNumber<number>;
|
|
856
|
+
consolationRunAlways: z.ZodMiniBoolean<boolean>;
|
|
857
|
+
consolationScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
858
|
+
created: z.ZodMiniString<string>;
|
|
859
|
+
custId: z.ZodMiniNumber<number>;
|
|
860
|
+
heatCautionType: z.ZodMiniNumber<number>;
|
|
861
|
+
heatInfoId: z.ZodMiniNumber<number>;
|
|
862
|
+
heatInfoName: z.ZodMiniString<string>;
|
|
863
|
+
heatLaps: z.ZodMiniNumber<number>;
|
|
864
|
+
heatLengthMinutes: z.ZodMiniNumber<number>;
|
|
865
|
+
heatMaxFieldSize: z.ZodMiniNumber<number>;
|
|
866
|
+
heatNumFromEachToMain: z.ZodMiniNumber<number>;
|
|
867
|
+
heatNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
868
|
+
heatScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
869
|
+
heatSessionMinutesEstimate: z.ZodMiniNumber<number>;
|
|
870
|
+
hidden: z.ZodMiniBoolean<boolean>;
|
|
871
|
+
mainLaps: z.ZodMiniNumber<number>;
|
|
872
|
+
mainLengthMinutes: z.ZodMiniNumber<number>;
|
|
873
|
+
mainMaxFieldSize: z.ZodMiniNumber<number>;
|
|
874
|
+
mainNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
875
|
+
maxEntrants: z.ZodMiniNumber<number>;
|
|
876
|
+
openPractice: z.ZodMiniBoolean<boolean>;
|
|
877
|
+
preMainPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
878
|
+
preQualNumToMain: z.ZodMiniNumber<number>;
|
|
879
|
+
preQualPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
880
|
+
qualCautionType: z.ZodMiniNumber<number>;
|
|
881
|
+
qualLaps: z.ZodMiniNumber<number>;
|
|
882
|
+
qualLengthMinutes: z.ZodMiniNumber<number>;
|
|
883
|
+
qualNumToMain: z.ZodMiniNumber<number>;
|
|
884
|
+
qualOpenDelaySeconds: z.ZodMiniNumber<number>;
|
|
885
|
+
qualScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
886
|
+
qualScoring: z.ZodMiniNumber<number>;
|
|
887
|
+
qualStyle: z.ZodMiniNumber<number>;
|
|
888
|
+
raceStyle: z.ZodMiniNumber<number>;
|
|
889
|
+
}, z.core.$strip>>;
|
|
890
|
+
altAssetId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
891
|
+
registeredTeams: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniNumber<number>>>;
|
|
788
892
|
}, z.core.$strip>>;
|
|
789
|
-
success: z.ZodMiniBoolean<boolean>;
|
|
790
893
|
packageId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
791
894
|
}, z.core.$strip>;
|
|
792
895
|
declare const HostedSessions: z.ZodMiniObject<{
|
|
@@ -823,6 +926,10 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
823
926
|
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
824
927
|
powerAdjustPct: z.ZodMiniNumber<number>;
|
|
825
928
|
maxDryTireSets: z.ZodMiniNumber<number>;
|
|
929
|
+
qualSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
930
|
+
qualSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
931
|
+
raceSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
932
|
+
raceSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
826
933
|
packageId: z.ZodMiniNumber<number>;
|
|
827
934
|
}, z.core.$strip>>;
|
|
828
935
|
carsLeft: z.ZodMiniNumber<number>;
|
|
@@ -833,31 +940,43 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
833
940
|
consecCautionsSingleFile: z.ZodMiniBoolean<boolean>;
|
|
834
941
|
countByCarClassId: z.ZodMiniObject<{
|
|
835
942
|
0: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
943
|
+
2523: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
836
944
|
2708: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
4084: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
842
|
-
4085: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
945
|
+
4011: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
946
|
+
4029: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
947
|
+
4033: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
948
|
+
4091: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
843
949
|
}, z.core.$strip>;
|
|
844
950
|
countByCarId: z.ZodMiniObject<{
|
|
951
|
+
73: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
845
952
|
112: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
846
|
-
117: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
847
|
-
118: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
848
953
|
119: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
954
|
+
127: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
849
955
|
128: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
850
956
|
132: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
851
957
|
133: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
958
|
+
139: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
959
|
+
140: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
960
|
+
141: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
852
961
|
143: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
962
|
+
144: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
853
963
|
146: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
854
964
|
147: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
855
965
|
150: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
966
|
+
153: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
856
967
|
156: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
857
968
|
157: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
969
|
+
159: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
970
|
+
160: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
971
|
+
168: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
858
972
|
169: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
973
|
+
170: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
974
|
+
171: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
975
|
+
172: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
859
976
|
173: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
977
|
+
174: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
860
978
|
176: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
979
|
+
178: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
861
980
|
184: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
862
981
|
185: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
863
982
|
188: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -865,7 +984,12 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
865
984
|
190: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
866
985
|
192: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
867
986
|
194: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
868
|
-
|
|
987
|
+
196: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
988
|
+
203: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
989
|
+
204: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
990
|
+
205: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
991
|
+
206: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
992
|
+
207: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
869
993
|
}, z.core.$strip>;
|
|
870
994
|
damageModel: z.ZodMiniNumber<number>;
|
|
871
995
|
disallowVirtualMirror: z.ZodMiniBoolean<boolean>;
|
|
@@ -955,6 +1079,7 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
955
1079
|
restrictResults: z.ZodMiniBoolean<boolean>;
|
|
956
1080
|
restrictViewing: z.ZodMiniBoolean<boolean>;
|
|
957
1081
|
rollingStarts: z.ZodMiniBoolean<boolean>;
|
|
1082
|
+
sessionDesc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
958
1083
|
sessionFull: z.ZodMiniBoolean<boolean>;
|
|
959
1084
|
sessionId: z.ZodMiniNumber<number>;
|
|
960
1085
|
sessionName: z.ZodMiniString<string>;
|
|
@@ -991,16 +1116,7 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
991
1116
|
warmupLength: z.ZodMiniNumber<number>;
|
|
992
1117
|
weather: z.ZodMiniObject<{
|
|
993
1118
|
allowFog: z.ZodMiniBoolean<boolean>;
|
|
994
|
-
|
|
995
|
-
forecastType: z.ZodMiniNumber<number>;
|
|
996
|
-
precipitation: z.ZodMiniNumber<number>;
|
|
997
|
-
skies: z.ZodMiniNumber<number>;
|
|
998
|
-
stopPrecip: z.ZodMiniNumber<number>;
|
|
999
|
-
temperature: z.ZodMiniNumber<number>;
|
|
1000
|
-
weatherSeed: z.ZodMiniNumber<number>;
|
|
1001
|
-
windDir: z.ZodMiniNumber<number>;
|
|
1002
|
-
windSpeed: z.ZodMiniNumber<number>;
|
|
1003
|
-
}, z.core.$strip>>;
|
|
1119
|
+
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1004
1120
|
precipOption: z.ZodMiniNumber<number>;
|
|
1005
1121
|
relHumidity: z.ZodMiniNumber<number>;
|
|
1006
1122
|
simulatedStartTime: z.ZodMiniString<string>;
|
|
@@ -1011,30 +1127,84 @@ declare const HostedSessions: z.ZodMiniObject<{
|
|
|
1011
1127
|
tempValue: z.ZodMiniNumber<number>;
|
|
1012
1128
|
timeOfDay: z.ZodMiniNumber<number>;
|
|
1013
1129
|
trackWater: z.ZodMiniNumber<number>;
|
|
1130
|
+
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1014
1131
|
version: z.ZodMiniNumber<number>;
|
|
1132
|
+
windDir: z.ZodMiniNumber<number>;
|
|
1133
|
+
windUnits: z.ZodMiniNumber<number>;
|
|
1134
|
+
windValue: z.ZodMiniNumber<number>;
|
|
1015
1135
|
weatherSummary: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1016
|
-
maxPrecipRate: z.ZodMiniNumber<number>;
|
|
1017
1136
|
maxPrecipRateDesc: z.ZodMiniString<string>;
|
|
1018
1137
|
precipChance: z.ZodMiniNumber<number>;
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1138
|
+
maxPrecipRate: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1139
|
+
skiesHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1140
|
+
skiesLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1141
|
+
tempHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1142
|
+
tempLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1143
|
+
tempUnits: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1144
|
+
windDir: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1145
|
+
windHigh: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1146
|
+
windLow: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1147
|
+
windUnits: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1028
1148
|
}, z.core.$strip>>;
|
|
1029
1149
|
weatherUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1150
|
+
forecastOptions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1151
|
+
forecastType: z.ZodMiniNumber<number>;
|
|
1152
|
+
precipitation: z.ZodMiniNumber<number>;
|
|
1153
|
+
skies: z.ZodMiniNumber<number>;
|
|
1154
|
+
stopPrecip: z.ZodMiniNumber<number>;
|
|
1155
|
+
temperature: z.ZodMiniNumber<number>;
|
|
1156
|
+
weatherSeed: z.ZodMiniNumber<number>;
|
|
1157
|
+
windDir: z.ZodMiniNumber<number>;
|
|
1158
|
+
windSpeed: z.ZodMiniNumber<number>;
|
|
1159
|
+
}, z.core.$strip>>;
|
|
1035
1160
|
}, z.core.$strip>;
|
|
1161
|
+
heatSesInfo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1162
|
+
consolationDeltaMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1163
|
+
consolationDeltaSessionLaps: z.ZodMiniNumber<number>;
|
|
1164
|
+
consolationDeltaSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
1165
|
+
consolationFirstMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1166
|
+
consolationFirstSessionLaps: z.ZodMiniNumber<number>;
|
|
1167
|
+
consolationFirstSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
1168
|
+
consolationNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1169
|
+
consolationNumToConsolation: z.ZodMiniNumber<number>;
|
|
1170
|
+
consolationNumToMain: z.ZodMiniNumber<number>;
|
|
1171
|
+
consolationRunAlways: z.ZodMiniBoolean<boolean>;
|
|
1172
|
+
consolationScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1173
|
+
created: z.ZodMiniString<string>;
|
|
1174
|
+
custId: z.ZodMiniNumber<number>;
|
|
1175
|
+
heatCautionType: z.ZodMiniNumber<number>;
|
|
1176
|
+
heatInfoId: z.ZodMiniNumber<number>;
|
|
1177
|
+
heatInfoName: z.ZodMiniString<string>;
|
|
1178
|
+
heatLaps: z.ZodMiniNumber<number>;
|
|
1179
|
+
heatLengthMinutes: z.ZodMiniNumber<number>;
|
|
1180
|
+
heatMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1181
|
+
heatNumFromEachToMain: z.ZodMiniNumber<number>;
|
|
1182
|
+
heatNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1183
|
+
heatScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1184
|
+
heatSessionMinutesEstimate: z.ZodMiniNumber<number>;
|
|
1185
|
+
hidden: z.ZodMiniBoolean<boolean>;
|
|
1186
|
+
mainLaps: z.ZodMiniNumber<number>;
|
|
1187
|
+
mainLengthMinutes: z.ZodMiniNumber<number>;
|
|
1188
|
+
mainMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1189
|
+
mainNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1190
|
+
maxEntrants: z.ZodMiniNumber<number>;
|
|
1191
|
+
openPractice: z.ZodMiniBoolean<boolean>;
|
|
1192
|
+
preMainPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
1193
|
+
preQualNumToMain: z.ZodMiniNumber<number>;
|
|
1194
|
+
preQualPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
1195
|
+
qualCautionType: z.ZodMiniNumber<number>;
|
|
1196
|
+
qualLaps: z.ZodMiniNumber<number>;
|
|
1197
|
+
qualLengthMinutes: z.ZodMiniNumber<number>;
|
|
1198
|
+
qualNumToMain: z.ZodMiniNumber<number>;
|
|
1199
|
+
qualOpenDelaySeconds: z.ZodMiniNumber<number>;
|
|
1200
|
+
qualScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1201
|
+
qualScoring: z.ZodMiniNumber<number>;
|
|
1202
|
+
qualStyle: z.ZodMiniNumber<number>;
|
|
1203
|
+
raceStyle: z.ZodMiniNumber<number>;
|
|
1204
|
+
}, z.core.$strip>>;
|
|
1036
1205
|
adaptiveAiDifficulty: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1037
|
-
|
|
1206
|
+
altAssetId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1207
|
+
registeredTeams: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniNumber<number>>>;
|
|
1038
1208
|
}, z.core.$strip>>;
|
|
1039
1209
|
success: z.ZodMiniBoolean<boolean>;
|
|
1040
1210
|
}, z.core.$strip>;
|
|
@@ -1088,26 +1258,27 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1088
1258
|
needsPurchase: z.ZodMiniBoolean<boolean>;
|
|
1089
1259
|
ownCar: z.ZodMiniBoolean<boolean>;
|
|
1090
1260
|
ownTrack: z.ZodMiniBoolean<boolean>;
|
|
1091
|
-
purchaseSkus: z.ZodMiniArray<z.
|
|
1261
|
+
purchaseSkus: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
1092
1262
|
registered: z.ZodMiniBoolean<boolean>;
|
|
1093
1263
|
}, z.core.$strip>;
|
|
1094
1264
|
driverChanges: z.ZodMiniBoolean<boolean>;
|
|
1095
1265
|
restrictViewing: z.ZodMiniBoolean<boolean>;
|
|
1096
1266
|
maxUsers: z.ZodMiniNumber<number>;
|
|
1097
1267
|
privateSessionId: z.ZodMiniNumber<number>;
|
|
1098
|
-
sessionId: z.
|
|
1099
|
-
subsessionId: z.
|
|
1268
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
1269
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
1100
1270
|
passwordProtected: z.ZodMiniBoolean<boolean>;
|
|
1101
1271
|
sessionName: z.ZodMiniString<string>;
|
|
1102
|
-
|
|
1272
|
+
sessionDesc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1273
|
+
openRegExpires: z.ZodMiniString<string>;
|
|
1103
1274
|
launchAt: z.ZodMiniString<string>;
|
|
1104
1275
|
fullCourseCautions: z.ZodMiniBoolean<boolean>;
|
|
1105
1276
|
numFastTows: z.ZodMiniNumber<number>;
|
|
1106
1277
|
rollingStarts: z.ZodMiniBoolean<boolean>;
|
|
1107
1278
|
restarts: z.ZodMiniNumber<number>;
|
|
1108
1279
|
multiclassType: z.ZodMiniNumber<number>;
|
|
1109
|
-
pitsInUse: z.
|
|
1110
|
-
carsLeft: z.
|
|
1280
|
+
pitsInUse: z.ZodMiniNumber<number>;
|
|
1281
|
+
carsLeft: z.ZodMiniNumber<number>;
|
|
1111
1282
|
maxDrivers: z.ZodMiniNumber<number>;
|
|
1112
1283
|
hardcoreLevel: z.ZodMiniNumber<number>;
|
|
1113
1284
|
practiceLength: z.ZodMiniNumber<number>;
|
|
@@ -1135,7 +1306,7 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1135
1306
|
leagueId: z.ZodMiniNumber<number>;
|
|
1136
1307
|
leagueName: z.ZodMiniString<string>;
|
|
1137
1308
|
leagueSeasonId: z.ZodMiniNumber<number>;
|
|
1138
|
-
leagueSeasonName: z.ZodMiniString<string
|
|
1309
|
+
leagueSeasonName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1139
1310
|
sessionType: z.ZodMiniNumber<number>;
|
|
1140
1311
|
orderId: z.ZodMiniNumber<number>;
|
|
1141
1312
|
minLicenseLevel: z.ZodMiniNumber<number>;
|
|
@@ -1166,7 +1337,7 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1166
1337
|
maxVisorTearoffs: z.ZodMiniNumber<number>;
|
|
1167
1338
|
categoryId: z.ZodMiniNumber<number>;
|
|
1168
1339
|
category: z.ZodMiniString<string>;
|
|
1169
|
-
sessionFull: z.
|
|
1340
|
+
sessionFull: z.ZodMiniBoolean<boolean>;
|
|
1170
1341
|
host: z.ZodMiniObject<{
|
|
1171
1342
|
custId: z.ZodMiniNumber<number>;
|
|
1172
1343
|
displayName: z.ZodMiniString<string>;
|
|
@@ -1181,22 +1352,13 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1181
1352
|
}, z.core.$strip>;
|
|
1182
1353
|
track: z.ZodMiniObject<{
|
|
1183
1354
|
categoryId: z.ZodMiniNumber<number>;
|
|
1184
|
-
configName: z.
|
|
1355
|
+
configName: z.ZodMiniString<string>;
|
|
1185
1356
|
trackId: z.ZodMiniNumber<number>;
|
|
1186
1357
|
trackName: z.ZodMiniString<string>;
|
|
1187
1358
|
}, z.core.$strip>;
|
|
1188
1359
|
weather: z.ZodMiniObject<{
|
|
1189
1360
|
allowFog: z.ZodMiniBoolean<boolean>;
|
|
1190
|
-
|
|
1191
|
-
forecastType: z.ZodMiniNumber<number>;
|
|
1192
|
-
precipitation: z.ZodMiniNumber<number>;
|
|
1193
|
-
skies: z.ZodMiniNumber<number>;
|
|
1194
|
-
stopPrecip: z.ZodMiniNumber<number>;
|
|
1195
|
-
temperature: z.ZodMiniNumber<number>;
|
|
1196
|
-
weatherSeed: z.ZodMiniNumber<number>;
|
|
1197
|
-
windDir: z.ZodMiniNumber<number>;
|
|
1198
|
-
windSpeed: z.ZodMiniNumber<number>;
|
|
1199
|
-
}, z.core.$strip>>;
|
|
1361
|
+
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1200
1362
|
precipOption: z.ZodMiniNumber<number>;
|
|
1201
1363
|
relHumidity: z.ZodMiniNumber<number>;
|
|
1202
1364
|
simulatedStartTime: z.ZodMiniString<string>;
|
|
@@ -1207,7 +1369,21 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1207
1369
|
tempValue: z.ZodMiniNumber<number>;
|
|
1208
1370
|
timeOfDay: z.ZodMiniNumber<number>;
|
|
1209
1371
|
trackWater: z.ZodMiniNumber<number>;
|
|
1372
|
+
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1210
1373
|
version: z.ZodMiniNumber<number>;
|
|
1374
|
+
windDir: z.ZodMiniNumber<number>;
|
|
1375
|
+
windUnits: z.ZodMiniNumber<number>;
|
|
1376
|
+
windValue: z.ZodMiniNumber<number>;
|
|
1377
|
+
forecastOptions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1378
|
+
forecastType: z.ZodMiniNumber<number>;
|
|
1379
|
+
precipitation: z.ZodMiniNumber<number>;
|
|
1380
|
+
skies: z.ZodMiniNumber<number>;
|
|
1381
|
+
stopPrecip: z.ZodMiniNumber<number>;
|
|
1382
|
+
temperature: z.ZodMiniNumber<number>;
|
|
1383
|
+
weatherSeed: z.ZodMiniNumber<number>;
|
|
1384
|
+
windDir: z.ZodMiniNumber<number>;
|
|
1385
|
+
windSpeed: z.ZodMiniNumber<number>;
|
|
1386
|
+
}, z.core.$strip>>;
|
|
1211
1387
|
weatherSummary: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1212
1388
|
maxPrecipRate: z.ZodMiniNumber<number>;
|
|
1213
1389
|
maxPrecipRateDesc: z.ZodMiniString<string>;
|
|
@@ -1223,11 +1399,6 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1223
1399
|
windUnits: z.ZodMiniNumber<number>;
|
|
1224
1400
|
}, z.core.$strip>>;
|
|
1225
1401
|
weatherUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1226
|
-
windDir: z.ZodMiniNumber<number>;
|
|
1227
|
-
windUnits: z.ZodMiniNumber<number>;
|
|
1228
|
-
windValue: z.ZodMiniNumber<number>;
|
|
1229
|
-
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1230
|
-
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1231
1402
|
}, z.core.$strip>;
|
|
1232
1403
|
trackState: z.ZodMiniObject<{
|
|
1233
1404
|
leaveMarbles: z.ZodMiniBoolean<boolean>;
|
|
@@ -1265,67 +1436,20 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1265
1436
|
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
1266
1437
|
powerAdjustPct: z.ZodMiniNumber<number>;
|
|
1267
1438
|
maxDryTireSets: z.ZodMiniNumber<number>;
|
|
1268
|
-
|
|
1269
|
-
qualSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1439
|
+
packageId: z.ZodMiniNumber<number>;
|
|
1270
1440
|
raceSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1271
1441
|
raceSetupFilename: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1272
|
-
packageId: z.ZodMiniNumber<number>;
|
|
1273
1442
|
}, z.core.$strip>>;
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
consolationDeltaSessionLaps: z.ZodMiniNumber<number>;
|
|
1277
|
-
consolationDeltaSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
1278
|
-
consolationFirstMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1279
|
-
consolationFirstSessionLaps: z.ZodMiniNumber<number>;
|
|
1280
|
-
consolationFirstSessionLengthMinutes: z.ZodMiniNumber<number>;
|
|
1281
|
-
consolationNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1282
|
-
consolationNumToConsolation: z.ZodMiniNumber<number>;
|
|
1283
|
-
consolationNumToMain: z.ZodMiniNumber<number>;
|
|
1284
|
-
consolationRunAlways: z.ZodMiniBoolean<boolean>;
|
|
1285
|
-
consolationScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1286
|
-
created: z.ZodMiniString<string>;
|
|
1287
|
-
custId: z.ZodMiniNumber<number>;
|
|
1288
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1289
|
-
heatCautionType: z.ZodMiniNumber<number>;
|
|
1290
|
-
heatInfoId: z.ZodMiniNumber<number>;
|
|
1291
|
-
heatInfoName: z.ZodMiniString<string>;
|
|
1292
|
-
heatLaps: z.ZodMiniNumber<number>;
|
|
1293
|
-
heatLengthMinutes: z.ZodMiniNumber<number>;
|
|
1294
|
-
heatMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1295
|
-
heatNumFromEachToMain: z.ZodMiniNumber<number>;
|
|
1296
|
-
heatNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1297
|
-
heatScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1298
|
-
heatSessionMinutesEstimate: z.ZodMiniNumber<number>;
|
|
1299
|
-
hidden: z.ZodMiniBoolean<boolean>;
|
|
1300
|
-
mainLaps: z.ZodMiniNumber<number>;
|
|
1301
|
-
mainLengthMinutes: z.ZodMiniNumber<number>;
|
|
1302
|
-
mainMaxFieldSize: z.ZodMiniNumber<number>;
|
|
1303
|
-
mainNumPositionToInvert: z.ZodMiniNumber<number>;
|
|
1304
|
-
maxEntrants: z.ZodMiniNumber<number>;
|
|
1305
|
-
openPractice: z.ZodMiniBoolean<boolean>;
|
|
1306
|
-
preMainPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
1307
|
-
preQualNumToMain: z.ZodMiniNumber<number>;
|
|
1308
|
-
preQualPracticeLengthMinutes: z.ZodMiniNumber<number>;
|
|
1309
|
-
qualCautionType: z.ZodMiniNumber<number>;
|
|
1310
|
-
qualLaps: z.ZodMiniNumber<number>;
|
|
1311
|
-
qualLengthMinutes: z.ZodMiniNumber<number>;
|
|
1312
|
-
qualNumToMain: z.ZodMiniNumber<number>;
|
|
1313
|
-
qualOpenDelaySeconds: z.ZodMiniNumber<number>;
|
|
1314
|
-
qualScoresChampPoints: z.ZodMiniBoolean<boolean>;
|
|
1315
|
-
qualScoring: z.ZodMiniNumber<number>;
|
|
1316
|
-
qualStyle: z.ZodMiniNumber<number>;
|
|
1317
|
-
raceStyle: z.ZodMiniNumber<number>;
|
|
1318
|
-
}, z.core.$strip>>;
|
|
1319
|
-
countByCarId: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1320
|
-
67: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1321
|
-
106: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1443
|
+
countByCarId: z.ZodMiniObject<{
|
|
1444
|
+
148: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1322
1445
|
190: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1323
1446
|
192: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1324
|
-
|
|
1325
|
-
}, z.core.$strip
|
|
1326
|
-
countByCarClassId: z.
|
|
1327
|
-
0: z.ZodMiniNumber<number
|
|
1328
|
-
|
|
1447
|
+
208: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1448
|
+
}, z.core.$strip>;
|
|
1449
|
+
countByCarClassId: z.ZodMiniObject<{
|
|
1450
|
+
0: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1451
|
+
3188: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1452
|
+
}, z.core.$strip>;
|
|
1329
1453
|
carTypes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1330
1454
|
carType: z.ZodMiniString<string>;
|
|
1331
1455
|
}, z.core.$strip>>;
|
|
@@ -1342,23 +1466,21 @@ declare const LeagueCustLeagueSessions: z.ZodMiniObject<{
|
|
|
1342
1466
|
sessionType: z.ZodMiniNumber<number>;
|
|
1343
1467
|
}, z.core.$strip>>;
|
|
1344
1468
|
canJoin: z.ZodMiniBoolean<boolean>;
|
|
1345
|
-
image: z.
|
|
1469
|
+
image: z.ZodMiniObject<{
|
|
1346
1470
|
smallLogo: z.ZodMiniString<string>;
|
|
1347
|
-
largeLogo: z.
|
|
1348
|
-
}, z.core.$strip
|
|
1471
|
+
largeLogo: z.ZodMiniString<string>;
|
|
1472
|
+
}, z.core.$strip>;
|
|
1349
1473
|
owner: z.ZodMiniBoolean<boolean>;
|
|
1350
1474
|
admin: z.ZodMiniBoolean<boolean>;
|
|
1351
|
-
friends: z.
|
|
1352
|
-
watched: z.
|
|
1475
|
+
friends: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
1476
|
+
watched: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
1353
1477
|
endTime: z.ZodMiniString<string>;
|
|
1354
|
-
populated: z.ZodMiniBoolean<boolean>;
|
|
1355
1478
|
teamEntryCount: z.ZodMiniNumber<number>;
|
|
1356
1479
|
isHeatRacing: z.ZodMiniBoolean<boolean>;
|
|
1480
|
+
populated: z.ZodMiniBoolean<boolean>;
|
|
1357
1481
|
broadcaster: z.ZodMiniBoolean<boolean>;
|
|
1358
1482
|
minIr: z.ZodMiniNumber<number>;
|
|
1359
1483
|
maxIr: z.ZodMiniNumber<number>;
|
|
1360
|
-
sessionDesc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1361
|
-
raceLengthType: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1362
1484
|
}, z.core.$strip>>;
|
|
1363
1485
|
success: z.ZodMiniBoolean<boolean>;
|
|
1364
1486
|
packageId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -1370,7 +1492,6 @@ declare const LeagueDirectory: z.ZodMiniObject<{
|
|
|
1370
1492
|
leagueName: z.ZodMiniString<string>;
|
|
1371
1493
|
created: z.ZodMiniString<string>;
|
|
1372
1494
|
about: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1373
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1374
1495
|
rosterCount: z.ZodMiniNumber<number>;
|
|
1375
1496
|
recruiting: z.ZodMiniBoolean<boolean>;
|
|
1376
1497
|
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
@@ -1391,6 +1512,7 @@ declare const LeagueDirectory: z.ZodMiniObject<{
|
|
|
1391
1512
|
carNumber: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1392
1513
|
nickName: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1393
1514
|
}, z.core.$strip>;
|
|
1515
|
+
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1394
1516
|
}, z.core.$strip>>;
|
|
1395
1517
|
success: z.ZodMiniBoolean<boolean>;
|
|
1396
1518
|
lowerbound: z.ZodMiniNumber<number>;
|
|
@@ -1466,7 +1588,7 @@ declare const LeagueGet: z.ZodMiniObject<{
|
|
|
1466
1588
|
leaguePmOptOut: z.ZodMiniBoolean<boolean>;
|
|
1467
1589
|
leagueMemberSince: z.ZodMiniString<string>;
|
|
1468
1590
|
carNumber: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1469
|
-
nickName: z.ZodMiniString<string
|
|
1591
|
+
nickName: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1470
1592
|
}, z.core.$strip>>;
|
|
1471
1593
|
}, z.core.$strip>;
|
|
1472
1594
|
declare const LeagueGetPointsSystems: z.ZodMiniObject<{
|
|
@@ -1480,8 +1602,8 @@ declare const LeagueGetPointsSystems: z.ZodMiniObject<{
|
|
|
1480
1602
|
retired: z.ZodMiniBoolean<boolean>;
|
|
1481
1603
|
iracingSystem: z.ZodMiniBoolean<boolean>;
|
|
1482
1604
|
}, z.core.$strip>>;
|
|
1605
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
1483
1606
|
leagueId: z.ZodMiniNumber<number>;
|
|
1484
|
-
seasonId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
1485
1607
|
}, z.core.$strip>;
|
|
1486
1608
|
declare const LeagueMembership: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1487
1609
|
leagueId: z.ZodMiniNumber<number>;
|
|
@@ -1547,7 +1669,32 @@ declare const LeagueSeasonStandings: z.ZodMiniObject<{
|
|
|
1547
1669
|
seasonId: z.ZodMiniNumber<number>;
|
|
1548
1670
|
carId: z.ZodMiniNumber<number>;
|
|
1549
1671
|
standings: z.ZodMiniObject<{
|
|
1550
|
-
driverStandings: z.ZodMiniArray<z.
|
|
1672
|
+
driverStandings: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1673
|
+
rownum: z.ZodMiniNumber<number>;
|
|
1674
|
+
position: z.ZodMiniNumber<number>;
|
|
1675
|
+
driver: z.ZodMiniObject<{
|
|
1676
|
+
custId: z.ZodMiniNumber<number>;
|
|
1677
|
+
displayName: z.ZodMiniString<string>;
|
|
1678
|
+
helmet: z.ZodMiniObject<{
|
|
1679
|
+
pattern: z.ZodMiniNumber<number>;
|
|
1680
|
+
color1: z.ZodMiniString<string>;
|
|
1681
|
+
color2: z.ZodMiniString<string>;
|
|
1682
|
+
color3: z.ZodMiniString<string>;
|
|
1683
|
+
faceType: z.ZodMiniNumber<number>;
|
|
1684
|
+
helmetType: z.ZodMiniNumber<number>;
|
|
1685
|
+
}, z.core.$strip>;
|
|
1686
|
+
}, z.core.$strip>;
|
|
1687
|
+
carNumber: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1688
|
+
driverNickname: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
1689
|
+
wins: z.ZodMiniNumber<number>;
|
|
1690
|
+
averageStart: z.ZodMiniNumber<number>;
|
|
1691
|
+
averageFinish: z.ZodMiniNumber<number>;
|
|
1692
|
+
basePoints: z.ZodMiniNumber<number>;
|
|
1693
|
+
negativeAdjustments: z.ZodMiniNumber<number>;
|
|
1694
|
+
positiveAdjustments: z.ZodMiniNumber<number>;
|
|
1695
|
+
totalAdjustments: z.ZodMiniNumber<number>;
|
|
1696
|
+
totalPoints: z.ZodMiniNumber<number>;
|
|
1697
|
+
}, z.core.$strip>>;
|
|
1551
1698
|
teamStandings: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
1552
1699
|
driverStandingsCsvUrl: z.ZodMiniString<string>;
|
|
1553
1700
|
teamStandingsCsvUrl: z.ZodMiniString<string>;
|
|
@@ -1706,6 +1853,7 @@ declare const LookupDrivers: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
1706
1853
|
profileDisabled: z.ZodMiniBoolean<boolean>;
|
|
1707
1854
|
}, z.core.$strip>>;
|
|
1708
1855
|
declare const LookupFlairs: z.ZodMiniObject<{
|
|
1856
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
1709
1857
|
flairs: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1710
1858
|
flairId: z.ZodMiniNumber<number>;
|
|
1711
1859
|
flairName: z.ZodMiniString<string>;
|
|
@@ -1713,9 +1861,11 @@ declare const LookupFlairs: z.ZodMiniObject<{
|
|
|
1713
1861
|
flairShortname: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1714
1862
|
countryCode: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1715
1863
|
}, z.core.$strip>>;
|
|
1716
|
-
success: z.ZodMiniBoolean<boolean>;
|
|
1717
1864
|
}, z.core.$strip>;
|
|
1718
|
-
declare const LookupGet: z.ZodMiniArray<z.
|
|
1865
|
+
declare const LookupGet: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1866
|
+
lookups: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
1867
|
+
tag: z.ZodMiniString<string>;
|
|
1868
|
+
}, z.core.$strip>>;
|
|
1719
1869
|
declare const LookupLicenses: z.ZodMiniArray<z.ZodMiniObject<{
|
|
1720
1870
|
licenseGroup: z.ZodMiniNumber<number>;
|
|
1721
1871
|
groupName: z.ZodMiniString<string>;
|
|
@@ -2010,6 +2160,7 @@ declare const MemberProfile: z.ZodMiniObject<{
|
|
|
2010
2160
|
awardDate: z.ZodMiniString<string>;
|
|
2011
2161
|
awardOrder: z.ZodMiniNumber<number>;
|
|
2012
2162
|
awardedDescription: z.ZodMiniString<string>;
|
|
2163
|
+
custId: z.ZodMiniNumber<number>;
|
|
2013
2164
|
description: z.ZodMiniString<string>;
|
|
2014
2165
|
groupName: z.ZodMiniString<string>;
|
|
2015
2166
|
hasPdf: z.ZodMiniBoolean<boolean>;
|
|
@@ -2023,7 +2174,6 @@ declare const MemberProfile: z.ZodMiniObject<{
|
|
|
2023
2174
|
viewed: z.ZodMiniBoolean<boolean>;
|
|
2024
2175
|
weight: z.ZodMiniNumber<number>;
|
|
2025
2176
|
subsessionId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2026
|
-
custId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2027
2177
|
}, z.core.$strip>>;
|
|
2028
2178
|
activity: z.ZodMiniObject<{
|
|
2029
2179
|
recent30daysCount: z.ZodMiniNumber<number>;
|
|
@@ -2195,6 +2345,457 @@ declare class MemberService {
|
|
|
2195
2345
|
profile(params: MemberProfileParams): Promise<MemberProfileResponse>;
|
|
2196
2346
|
}
|
|
2197
2347
|
|
|
2348
|
+
declare const ResultsGet: z.ZodMiniObject<{
|
|
2349
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2350
|
+
allowedLicenses: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2351
|
+
groupName: z.ZodMiniString<string>;
|
|
2352
|
+
licenseGroup: z.ZodMiniNumber<number>;
|
|
2353
|
+
maxLicenseLevel: z.ZodMiniNumber<number>;
|
|
2354
|
+
minLicenseLevel: z.ZodMiniNumber<number>;
|
|
2355
|
+
parentId: z.ZodMiniNumber<number>;
|
|
2356
|
+
}, z.core.$strip>>;
|
|
2357
|
+
associatedSubsessionIds: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
2358
|
+
canProtest: z.ZodMiniBoolean<boolean>;
|
|
2359
|
+
carClasses: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2360
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
2361
|
+
shortName: z.ZodMiniString<string>;
|
|
2362
|
+
name: z.ZodMiniString<string>;
|
|
2363
|
+
strengthOfField: z.ZodMiniNumber<number>;
|
|
2364
|
+
numEntries: z.ZodMiniNumber<number>;
|
|
2365
|
+
carsInClass: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2366
|
+
carId: z.ZodMiniNumber<number>;
|
|
2367
|
+
}, z.core.$strip>>;
|
|
2368
|
+
}, z.core.$strip>>;
|
|
2369
|
+
cautionType: z.ZodMiniNumber<number>;
|
|
2370
|
+
cooldownMinutes: z.ZodMiniNumber<number>;
|
|
2371
|
+
cornersPerLap: z.ZodMiniNumber<number>;
|
|
2372
|
+
damageModel: z.ZodMiniNumber<number>;
|
|
2373
|
+
driverChangeParam1: z.ZodMiniNumber<number>;
|
|
2374
|
+
driverChangeParam2: z.ZodMiniNumber<number>;
|
|
2375
|
+
driverChangeRule: z.ZodMiniNumber<number>;
|
|
2376
|
+
driverChanges: z.ZodMiniBoolean<boolean>;
|
|
2377
|
+
endTime: z.ZodMiniString<string>;
|
|
2378
|
+
eventAverageLap: z.ZodMiniNumber<number>;
|
|
2379
|
+
eventBestLapTime: z.ZodMiniNumber<number>;
|
|
2380
|
+
eventLapsComplete: z.ZodMiniNumber<number>;
|
|
2381
|
+
eventStrengthOfField: z.ZodMiniNumber<number>;
|
|
2382
|
+
eventType: z.ZodMiniNumber<number>;
|
|
2383
|
+
eventTypeName: z.ZodMiniString<string>;
|
|
2384
|
+
heatInfoId: z.ZodMiniNumber<number>;
|
|
2385
|
+
licenseCategory: z.ZodMiniString<string>;
|
|
2386
|
+
licenseCategoryId: z.ZodMiniNumber<number>;
|
|
2387
|
+
limitMinutes: z.ZodMiniNumber<number>;
|
|
2388
|
+
maxTeamDrivers: z.ZodMiniNumber<number>;
|
|
2389
|
+
maxWeeks: z.ZodMiniNumber<number>;
|
|
2390
|
+
minTeamDrivers: z.ZodMiniNumber<number>;
|
|
2391
|
+
numCautionLaps: z.ZodMiniNumber<number>;
|
|
2392
|
+
numCautions: z.ZodMiniNumber<number>;
|
|
2393
|
+
numDrivers: z.ZodMiniNumber<number>;
|
|
2394
|
+
numLapsForQualAverage: z.ZodMiniNumber<number>;
|
|
2395
|
+
numLapsForSoloAverage: z.ZodMiniNumber<number>;
|
|
2396
|
+
numLeadChanges: z.ZodMiniNumber<number>;
|
|
2397
|
+
officialSession: z.ZodMiniBoolean<boolean>;
|
|
2398
|
+
pointsType: z.ZodMiniString<string>;
|
|
2399
|
+
privateSessionId: z.ZodMiniNumber<number>;
|
|
2400
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
2401
|
+
resultsRestricted: z.ZodMiniBoolean<boolean>;
|
|
2402
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
2403
|
+
seasonName: z.ZodMiniString<string>;
|
|
2404
|
+
seasonQuarter: z.ZodMiniNumber<number>;
|
|
2405
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
2406
|
+
seasonYear: z.ZodMiniNumber<number>;
|
|
2407
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
2408
|
+
seriesLogo: z.ZodMiniString<string>;
|
|
2409
|
+
seriesName: z.ZodMiniString<string>;
|
|
2410
|
+
seriesShortName: z.ZodMiniString<string>;
|
|
2411
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
2412
|
+
sessionResults: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2413
|
+
simsessionNumber: z.ZodMiniNumber<number>;
|
|
2414
|
+
simsessionName: z.ZodMiniString<string>;
|
|
2415
|
+
simsessionType: z.ZodMiniNumber<number>;
|
|
2416
|
+
simsessionTypeName: z.ZodMiniString<string>;
|
|
2417
|
+
simsessionSubtype: z.ZodMiniNumber<number>;
|
|
2418
|
+
results: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2419
|
+
custId: z.ZodMiniNumber<number>;
|
|
2420
|
+
displayName: z.ZodMiniString<string>;
|
|
2421
|
+
aggregateChampPoints: z.ZodMiniNumber<number>;
|
|
2422
|
+
ai: z.ZodMiniBoolean<boolean>;
|
|
2423
|
+
averageLap: z.ZodMiniNumber<number>;
|
|
2424
|
+
bestLapNum: z.ZodMiniNumber<number>;
|
|
2425
|
+
bestLapTime: z.ZodMiniNumber<number>;
|
|
2426
|
+
bestNlapsNum: z.ZodMiniNumber<number>;
|
|
2427
|
+
bestNlapsTime: z.ZodMiniNumber<number>;
|
|
2428
|
+
bestQualLapAt: z.ZodMiniString<string>;
|
|
2429
|
+
bestQualLapNum: z.ZodMiniNumber<number>;
|
|
2430
|
+
bestQualLapTime: z.ZodMiniNumber<number>;
|
|
2431
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
2432
|
+
carClassName: z.ZodMiniString<string>;
|
|
2433
|
+
carClassShortName: z.ZodMiniString<string>;
|
|
2434
|
+
carId: z.ZodMiniNumber<number>;
|
|
2435
|
+
carName: z.ZodMiniString<string>;
|
|
2436
|
+
carcfg: z.ZodMiniNumber<number>;
|
|
2437
|
+
champPoints: z.ZodMiniNumber<number>;
|
|
2438
|
+
classInterval: z.ZodMiniNumber<number>;
|
|
2439
|
+
countryCode: z.ZodMiniString<string>;
|
|
2440
|
+
division: z.ZodMiniNumber<number>;
|
|
2441
|
+
divisionName: z.ZodMiniString<string>;
|
|
2442
|
+
dropRace: z.ZodMiniBoolean<boolean>;
|
|
2443
|
+
finishPosition: z.ZodMiniNumber<number>;
|
|
2444
|
+
finishPositionInClass: z.ZodMiniNumber<number>;
|
|
2445
|
+
flairId: z.ZodMiniNumber<number>;
|
|
2446
|
+
flairName: z.ZodMiniString<string>;
|
|
2447
|
+
flairShortname: z.ZodMiniString<string>;
|
|
2448
|
+
friend: z.ZodMiniBoolean<boolean>;
|
|
2449
|
+
helmet: z.ZodMiniObject<{
|
|
2450
|
+
pattern: z.ZodMiniNumber<number>;
|
|
2451
|
+
color1: z.ZodMiniString<string>;
|
|
2452
|
+
color2: z.ZodMiniString<string>;
|
|
2453
|
+
color3: z.ZodMiniString<string>;
|
|
2454
|
+
faceType: z.ZodMiniNumber<number>;
|
|
2455
|
+
helmetType: z.ZodMiniNumber<number>;
|
|
2456
|
+
}, z.core.$strip>;
|
|
2457
|
+
incidents: z.ZodMiniNumber<number>;
|
|
2458
|
+
interval: z.ZodMiniNumber<number>;
|
|
2459
|
+
lapsComplete: z.ZodMiniNumber<number>;
|
|
2460
|
+
lapsLead: z.ZodMiniNumber<number>;
|
|
2461
|
+
leagueAggPoints: z.ZodMiniNumber<number>;
|
|
2462
|
+
leaguePoints: z.ZodMiniNumber<number>;
|
|
2463
|
+
licenseChangeOval: z.ZodMiniNumber<number>;
|
|
2464
|
+
licenseChangeRoad: z.ZodMiniNumber<number>;
|
|
2465
|
+
livery: z.ZodMiniObject<{
|
|
2466
|
+
carId: z.ZodMiniNumber<number>;
|
|
2467
|
+
pattern: z.ZodMiniNumber<number>;
|
|
2468
|
+
color1: z.ZodMiniString<string>;
|
|
2469
|
+
color2: z.ZodMiniString<string>;
|
|
2470
|
+
color3: z.ZodMiniString<string>;
|
|
2471
|
+
numberFont: z.ZodMiniNumber<number>;
|
|
2472
|
+
numberColor1: z.ZodMiniString<string>;
|
|
2473
|
+
numberColor2: z.ZodMiniString<string>;
|
|
2474
|
+
numberColor3: z.ZodMiniString<string>;
|
|
2475
|
+
numberSlant: z.ZodMiniNumber<number>;
|
|
2476
|
+
sponsor1: z.ZodMiniNumber<number>;
|
|
2477
|
+
sponsor2: z.ZodMiniNumber<number>;
|
|
2478
|
+
carNumber: z.ZodMiniString<string>;
|
|
2479
|
+
wheelColor: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
2480
|
+
rimType: z.ZodMiniNumber<number>;
|
|
2481
|
+
}, z.core.$strip>;
|
|
2482
|
+
maxPctFuelFill: z.ZodMiniNumber<number>;
|
|
2483
|
+
newCpi: z.ZodMiniNumber<number>;
|
|
2484
|
+
newLicenseLevel: z.ZodMiniNumber<number>;
|
|
2485
|
+
newSubLevel: z.ZodMiniNumber<number>;
|
|
2486
|
+
newTtrating: z.ZodMiniNumber<number>;
|
|
2487
|
+
newiRating: z.ZodMiniNumber<number>;
|
|
2488
|
+
oldCpi: z.ZodMiniNumber<number>;
|
|
2489
|
+
oldLicenseLevel: z.ZodMiniNumber<number>;
|
|
2490
|
+
oldSubLevel: z.ZodMiniNumber<number>;
|
|
2491
|
+
oldTtrating: z.ZodMiniNumber<number>;
|
|
2492
|
+
oldiRating: z.ZodMiniNumber<number>;
|
|
2493
|
+
optLapsComplete: z.ZodMiniNumber<number>;
|
|
2494
|
+
position: z.ZodMiniNumber<number>;
|
|
2495
|
+
qualLapTime: z.ZodMiniNumber<number>;
|
|
2496
|
+
reasonOut: z.ZodMiniString<string>;
|
|
2497
|
+
reasonOutId: z.ZodMiniNumber<number>;
|
|
2498
|
+
startingPosition: z.ZodMiniNumber<number>;
|
|
2499
|
+
startingPositionInClass: z.ZodMiniNumber<number>;
|
|
2500
|
+
suit: z.ZodMiniObject<{
|
|
2501
|
+
pattern: z.ZodMiniNumber<number>;
|
|
2502
|
+
color1: z.ZodMiniString<string>;
|
|
2503
|
+
color2: z.ZodMiniString<string>;
|
|
2504
|
+
color3: z.ZodMiniString<string>;
|
|
2505
|
+
}, z.core.$strip>;
|
|
2506
|
+
watched: z.ZodMiniBoolean<boolean>;
|
|
2507
|
+
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
2508
|
+
}, z.core.$strip>>;
|
|
2509
|
+
}, z.core.$strip>>;
|
|
2510
|
+
sessionSplits: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2511
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2512
|
+
eventStrengthOfField: z.ZodMiniNumber<number>;
|
|
2513
|
+
}, z.core.$strip>>;
|
|
2514
|
+
specialEventType: z.ZodMiniNumber<number>;
|
|
2515
|
+
startTime: z.ZodMiniString<string>;
|
|
2516
|
+
track: z.ZodMiniObject<{
|
|
2517
|
+
category: z.ZodMiniString<string>;
|
|
2518
|
+
categoryId: z.ZodMiniNumber<number>;
|
|
2519
|
+
configName: z.ZodMiniString<string>;
|
|
2520
|
+
trackId: z.ZodMiniNumber<number>;
|
|
2521
|
+
trackName: z.ZodMiniString<string>;
|
|
2522
|
+
}, z.core.$strip>;
|
|
2523
|
+
trackState: z.ZodMiniObject<{
|
|
2524
|
+
leaveMarbles: z.ZodMiniBoolean<boolean>;
|
|
2525
|
+
practiceRubber: z.ZodMiniNumber<number>;
|
|
2526
|
+
qualifyRubber: z.ZodMiniNumber<number>;
|
|
2527
|
+
raceRubber: z.ZodMiniNumber<number>;
|
|
2528
|
+
warmupRubber: z.ZodMiniNumber<number>;
|
|
2529
|
+
}, z.core.$strip>;
|
|
2530
|
+
weather: z.ZodMiniObject<{
|
|
2531
|
+
allowFog: z.ZodMiniBoolean<boolean>;
|
|
2532
|
+
fog: z.ZodMiniNumber<number>;
|
|
2533
|
+
precipMm2hrBeforeFinalSession: z.ZodMiniNumber<number>;
|
|
2534
|
+
precipMmFinalSession: z.ZodMiniNumber<number>;
|
|
2535
|
+
precipOption: z.ZodMiniNumber<number>;
|
|
2536
|
+
precipTimePct: z.ZodMiniNumber<number>;
|
|
2537
|
+
relHumidity: z.ZodMiniNumber<number>;
|
|
2538
|
+
simulatedStartTime: z.ZodMiniString<string>;
|
|
2539
|
+
skies: z.ZodMiniNumber<number>;
|
|
2540
|
+
tempUnits: z.ZodMiniNumber<number>;
|
|
2541
|
+
tempValue: z.ZodMiniNumber<number>;
|
|
2542
|
+
timeOfDay: z.ZodMiniNumber<number>;
|
|
2543
|
+
trackWater: z.ZodMiniNumber<number>;
|
|
2544
|
+
type: z.ZodMiniNumber<number>;
|
|
2545
|
+
version: z.ZodMiniNumber<number>;
|
|
2546
|
+
weatherVarInitial: z.ZodMiniNumber<number>;
|
|
2547
|
+
weatherVarOngoing: z.ZodMiniNumber<number>;
|
|
2548
|
+
windDir: z.ZodMiniNumber<number>;
|
|
2549
|
+
windUnits: z.ZodMiniNumber<number>;
|
|
2550
|
+
windValue: z.ZodMiniNumber<number>;
|
|
2551
|
+
}, z.core.$strip>;
|
|
2552
|
+
}, z.core.$strip>;
|
|
2553
|
+
declare const ResultsEventLog: z.ZodMiniObject<{
|
|
2554
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2555
|
+
sessionInfo: z.ZodMiniObject<{
|
|
2556
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2557
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
2558
|
+
simsessionNumber: z.ZodMiniNumber<number>;
|
|
2559
|
+
simsessionType: z.ZodMiniNumber<number>;
|
|
2560
|
+
simsessionName: z.ZodMiniString<string>;
|
|
2561
|
+
eventType: z.ZodMiniNumber<number>;
|
|
2562
|
+
eventTypeName: z.ZodMiniString<string>;
|
|
2563
|
+
privateSessionId: z.ZodMiniNumber<number>;
|
|
2564
|
+
seasonName: z.ZodMiniString<string>;
|
|
2565
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
2566
|
+
seriesName: z.ZodMiniString<string>;
|
|
2567
|
+
seriesShortName: z.ZodMiniString<string>;
|
|
2568
|
+
startTime: z.ZodMiniString<string>;
|
|
2569
|
+
track: z.ZodMiniObject<{
|
|
2570
|
+
configName: z.ZodMiniString<string>;
|
|
2571
|
+
trackId: z.ZodMiniNumber<number>;
|
|
2572
|
+
trackName: z.ZodMiniString<string>;
|
|
2573
|
+
}, z.core.$strip>;
|
|
2574
|
+
}, z.core.$strip>;
|
|
2575
|
+
chunkInfo: z.ZodMiniObject<{
|
|
2576
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
2577
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
2578
|
+
rows: z.ZodMiniNumber<number>;
|
|
2579
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
2580
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
2581
|
+
}, z.core.$strip>;
|
|
2582
|
+
}, z.core.$strip>;
|
|
2583
|
+
declare const ResultsLapChartData: z.ZodMiniObject<{
|
|
2584
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2585
|
+
sessionInfo: z.ZodMiniObject<{
|
|
2586
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2587
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
2588
|
+
simsessionNumber: z.ZodMiniNumber<number>;
|
|
2589
|
+
simsessionType: z.ZodMiniNumber<number>;
|
|
2590
|
+
simsessionName: z.ZodMiniString<string>;
|
|
2591
|
+
numLapsForQualAverage: z.ZodMiniNumber<number>;
|
|
2592
|
+
numLapsForSoloAverage: z.ZodMiniNumber<number>;
|
|
2593
|
+
eventType: z.ZodMiniNumber<number>;
|
|
2594
|
+
eventTypeName: z.ZodMiniString<string>;
|
|
2595
|
+
privateSessionId: z.ZodMiniNumber<number>;
|
|
2596
|
+
seasonName: z.ZodMiniString<string>;
|
|
2597
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
2598
|
+
seriesName: z.ZodMiniString<string>;
|
|
2599
|
+
seriesShortName: z.ZodMiniString<string>;
|
|
2600
|
+
startTime: z.ZodMiniString<string>;
|
|
2601
|
+
track: z.ZodMiniObject<{
|
|
2602
|
+
configName: z.ZodMiniString<string>;
|
|
2603
|
+
trackId: z.ZodMiniNumber<number>;
|
|
2604
|
+
trackName: z.ZodMiniString<string>;
|
|
2605
|
+
}, z.core.$strip>;
|
|
2606
|
+
}, z.core.$strip>;
|
|
2607
|
+
bestLapNum: z.ZodMiniNumber<number>;
|
|
2608
|
+
bestLapTime: z.ZodMiniNumber<number>;
|
|
2609
|
+
bestNlapsNum: z.ZodMiniNumber<number>;
|
|
2610
|
+
bestNlapsTime: z.ZodMiniNumber<number>;
|
|
2611
|
+
bestQualLapNum: z.ZodMiniNumber<number>;
|
|
2612
|
+
bestQualLapTime: z.ZodMiniNumber<number>;
|
|
2613
|
+
bestQualLapAt: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
2614
|
+
chunkInfo: z.ZodMiniObject<{
|
|
2615
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
2616
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
2617
|
+
rows: z.ZodMiniNumber<number>;
|
|
2618
|
+
baseDownloadUrl: z.ZodMiniString<string>;
|
|
2619
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
2620
|
+
}, z.core.$strip>;
|
|
2621
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
2622
|
+
}, z.core.$strip>;
|
|
2623
|
+
declare const ResultsLapData: z.ZodMiniObject<{
|
|
2624
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2625
|
+
sessionInfo: z.ZodMiniObject<{
|
|
2626
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2627
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
2628
|
+
simsessionNumber: z.ZodMiniNumber<number>;
|
|
2629
|
+
simsessionType: z.ZodMiniNumber<number>;
|
|
2630
|
+
simsessionName: z.ZodMiniString<string>;
|
|
2631
|
+
numLapsForQualAverage: z.ZodMiniNumber<number>;
|
|
2632
|
+
numLapsForSoloAverage: z.ZodMiniNumber<number>;
|
|
2633
|
+
eventType: z.ZodMiniNumber<number>;
|
|
2634
|
+
eventTypeName: z.ZodMiniString<string>;
|
|
2635
|
+
privateSessionId: z.ZodMiniNumber<number>;
|
|
2636
|
+
seasonName: z.ZodMiniString<string>;
|
|
2637
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
2638
|
+
seriesName: z.ZodMiniString<string>;
|
|
2639
|
+
seriesShortName: z.ZodMiniString<string>;
|
|
2640
|
+
startTime: z.ZodMiniString<string>;
|
|
2641
|
+
track: z.ZodMiniObject<{
|
|
2642
|
+
configName: z.ZodMiniString<string>;
|
|
2643
|
+
trackId: z.ZodMiniNumber<number>;
|
|
2644
|
+
trackName: z.ZodMiniString<string>;
|
|
2645
|
+
}, z.core.$strip>;
|
|
2646
|
+
}, z.core.$strip>;
|
|
2647
|
+
bestLapNum: z.ZodMiniNumber<number>;
|
|
2648
|
+
bestLapTime: z.ZodMiniNumber<number>;
|
|
2649
|
+
bestNlapsNum: z.ZodMiniNumber<number>;
|
|
2650
|
+
bestNlapsTime: z.ZodMiniNumber<number>;
|
|
2651
|
+
bestQualLapNum: z.ZodMiniNumber<number>;
|
|
2652
|
+
bestQualLapTime: z.ZodMiniNumber<number>;
|
|
2653
|
+
bestQualLapAt: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
2654
|
+
chunkInfo: z.ZodMiniObject<{
|
|
2655
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
2656
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
2657
|
+
rows: z.ZodMiniNumber<number>;
|
|
2658
|
+
baseDownloadUrl: z.ZodMiniString<string>;
|
|
2659
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
2660
|
+
}, z.core.$strip>;
|
|
2661
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
2662
|
+
groupId: z.ZodMiniNumber<number>;
|
|
2663
|
+
custId: z.ZodMiniNumber<number>;
|
|
2664
|
+
name: z.ZodMiniString<string>;
|
|
2665
|
+
carId: z.ZodMiniNumber<number>;
|
|
2666
|
+
licenseLevel: z.ZodMiniNumber<number>;
|
|
2667
|
+
livery: z.ZodMiniObject<{
|
|
2668
|
+
carId: z.ZodMiniNumber<number>;
|
|
2669
|
+
pattern: z.ZodMiniNumber<number>;
|
|
2670
|
+
color1: z.ZodMiniString<string>;
|
|
2671
|
+
color2: z.ZodMiniString<string>;
|
|
2672
|
+
color3: z.ZodMiniString<string>;
|
|
2673
|
+
numberFont: z.ZodMiniNumber<number>;
|
|
2674
|
+
numberColor1: z.ZodMiniString<string>;
|
|
2675
|
+
numberColor2: z.ZodMiniString<string>;
|
|
2676
|
+
numberColor3: z.ZodMiniString<string>;
|
|
2677
|
+
numberSlant: z.ZodMiniNumber<number>;
|
|
2678
|
+
sponsor1: z.ZodMiniNumber<number>;
|
|
2679
|
+
sponsor2: z.ZodMiniNumber<number>;
|
|
2680
|
+
carNumber: z.ZodMiniString<string>;
|
|
2681
|
+
wheelColor: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
2682
|
+
rimType: z.ZodMiniNumber<number>;
|
|
2683
|
+
}, z.core.$strip>;
|
|
2684
|
+
}, z.core.$strip>;
|
|
2685
|
+
declare const ResultsSearchHosted: z.ZodMiniObject<{
|
|
2686
|
+
type: z.ZodMiniString<string>;
|
|
2687
|
+
data: z.ZodMiniObject<{
|
|
2688
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2689
|
+
chunkInfo: z.ZodMiniObject<{
|
|
2690
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
2691
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
2692
|
+
rows: z.ZodMiniNumber<number>;
|
|
2693
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
2694
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
2695
|
+
}, z.core.$strip>;
|
|
2696
|
+
params: z.ZodMiniObject<{
|
|
2697
|
+
custId: z.ZodMiniNumber<number>;
|
|
2698
|
+
teamId: z.ZodMiniNumber<number>;
|
|
2699
|
+
finishRangeBegin: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2700
|
+
finishRangeEnd: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2701
|
+
startRangeBegin: z.ZodMiniString<string>;
|
|
2702
|
+
startRangeEnd: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2703
|
+
categoryIds: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
2704
|
+
hostCustId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2705
|
+
sessionName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2706
|
+
carId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2707
|
+
trackId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2708
|
+
leagueId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2709
|
+
leagueSeasonId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2710
|
+
}, z.core.$strip>;
|
|
2711
|
+
}, z.core.$strip>;
|
|
2712
|
+
}, z.core.$strip>;
|
|
2713
|
+
declare const ResultsSearchSeries: z.ZodMiniObject<{
|
|
2714
|
+
type: z.ZodMiniString<string>;
|
|
2715
|
+
data: z.ZodMiniObject<{
|
|
2716
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2717
|
+
chunkInfo: z.ZodMiniObject<{
|
|
2718
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
2719
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
2720
|
+
rows: z.ZodMiniNumber<number>;
|
|
2721
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
2722
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
2723
|
+
}, z.core.$strip>;
|
|
2724
|
+
params: z.ZodMiniObject<{
|
|
2725
|
+
custId: z.ZodMiniNumber<number>;
|
|
2726
|
+
teamId: z.ZodMiniNumber<number>;
|
|
2727
|
+
finishRangeBegin: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2728
|
+
finishRangeEnd: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2729
|
+
startRangeBegin: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2730
|
+
startRangeEnd: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2731
|
+
categoryIds: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
2732
|
+
seriesId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2733
|
+
seasonYear: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2734
|
+
seasonQuarter: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2735
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
2736
|
+
officialOnly: z.ZodMiniBoolean<boolean>;
|
|
2737
|
+
eventTypes: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
2738
|
+
seasonLicenseGroups: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
2739
|
+
}, z.core.$strip>;
|
|
2740
|
+
}, z.core.$strip>;
|
|
2741
|
+
}, z.core.$strip>;
|
|
2742
|
+
declare const ResultsSeasonResults: z.ZodMiniObject<{
|
|
2743
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
2744
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
2745
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
2746
|
+
eventType: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
2747
|
+
resultsList: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2748
|
+
sessionId: z.ZodMiniNumber<number>;
|
|
2749
|
+
subsessionId: z.ZodMiniNumber<number>;
|
|
2750
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
2751
|
+
carClasses: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2752
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
2753
|
+
shortName: z.ZodMiniString<string>;
|
|
2754
|
+
name: z.ZodMiniString<string>;
|
|
2755
|
+
numEntries: z.ZodMiniNumber<number>;
|
|
2756
|
+
strengthOfField: z.ZodMiniNumber<number>;
|
|
2757
|
+
}, z.core.$strip>>;
|
|
2758
|
+
driverChanges: z.ZodMiniBoolean<boolean>;
|
|
2759
|
+
eventBestLapTime: z.ZodMiniNumber<number>;
|
|
2760
|
+
eventStrengthOfField: z.ZodMiniNumber<number>;
|
|
2761
|
+
eventType: z.ZodMiniNumber<number>;
|
|
2762
|
+
eventTypeName: z.ZodMiniString<string>;
|
|
2763
|
+
farm: z.ZodMiniObject<{
|
|
2764
|
+
farmId: z.ZodMiniNumber<number>;
|
|
2765
|
+
displayName: z.ZodMiniString<string>;
|
|
2766
|
+
imagePath: z.ZodMiniString<string>;
|
|
2767
|
+
displayed: z.ZodMiniBoolean<boolean>;
|
|
2768
|
+
}, z.core.$strip>;
|
|
2769
|
+
numCautionLaps: z.ZodMiniNumber<number>;
|
|
2770
|
+
numCautions: z.ZodMiniNumber<number>;
|
|
2771
|
+
numDrivers: z.ZodMiniNumber<number>;
|
|
2772
|
+
numLeadChanges: z.ZodMiniNumber<number>;
|
|
2773
|
+
officialSession: z.ZodMiniBoolean<boolean>;
|
|
2774
|
+
startTime: z.ZodMiniString<string>;
|
|
2775
|
+
track: z.ZodMiniObject<{
|
|
2776
|
+
trackId: z.ZodMiniNumber<number>;
|
|
2777
|
+
trackName: z.ZodMiniString<string>;
|
|
2778
|
+
}, z.core.$strip>;
|
|
2779
|
+
winnerHelmet: z.ZodMiniObject<{
|
|
2780
|
+
pattern: z.ZodMiniNumber<number>;
|
|
2781
|
+
color1: z.ZodMiniString<string>;
|
|
2782
|
+
color2: z.ZodMiniString<string>;
|
|
2783
|
+
color3: z.ZodMiniString<string>;
|
|
2784
|
+
faceType: z.ZodMiniNumber<number>;
|
|
2785
|
+
helmetType: z.ZodMiniNumber<number>;
|
|
2786
|
+
}, z.core.$strip>;
|
|
2787
|
+
winnerId: z.ZodMiniNumber<number>;
|
|
2788
|
+
winnerLicenseLevel: z.ZodMiniNumber<number>;
|
|
2789
|
+
winnerName: z.ZodMiniString<string>;
|
|
2790
|
+
}, z.core.$strip>>;
|
|
2791
|
+
}, z.core.$strip>;
|
|
2792
|
+
type ResultsGetResponse = z.infer<typeof ResultsGet>;
|
|
2793
|
+
type ResultsEventLogResponse = z.infer<typeof ResultsEventLog>;
|
|
2794
|
+
type ResultsLapChartDataResponse = z.infer<typeof ResultsLapChartData>;
|
|
2795
|
+
type ResultsLapDataResponse = z.infer<typeof ResultsLapData>;
|
|
2796
|
+
type ResultsSearchHostedResponse = z.infer<typeof ResultsSearchHosted>;
|
|
2797
|
+
type ResultsSearchSeriesResponse = z.infer<typeof ResultsSearchSeries>;
|
|
2798
|
+
type ResultsSeasonResultsResponse = z.infer<typeof ResultsSeasonResults>;
|
|
2198
2799
|
declare const ResultsGetParamsSchema: z.ZodMiniObject<{
|
|
2199
2800
|
subsessionId: z.ZodMiniNumber<number>;
|
|
2200
2801
|
includeLicenses: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
@@ -2262,38 +2863,45 @@ declare class ResultsService {
|
|
|
2262
2863
|
/**
|
|
2263
2864
|
* get
|
|
2264
2865
|
* @see https://members-ng.iracing.com/data/results/get
|
|
2866
|
+
* @sample results.get.json
|
|
2265
2867
|
*/
|
|
2266
|
-
get(params: ResultsGetParams): Promise<
|
|
2868
|
+
get(params: ResultsGetParams): Promise<ResultsGetResponse>;
|
|
2267
2869
|
/**
|
|
2268
2870
|
* event_log
|
|
2269
2871
|
* @see https://members-ng.iracing.com/data/results/event_log
|
|
2872
|
+
* @sample results.event_log.json
|
|
2270
2873
|
*/
|
|
2271
|
-
eventLog(params: ResultsEventLogParams): Promise<
|
|
2874
|
+
eventLog(params: ResultsEventLogParams): Promise<ResultsEventLogResponse>;
|
|
2272
2875
|
/**
|
|
2273
2876
|
* lap_chart_data
|
|
2274
2877
|
* @see https://members-ng.iracing.com/data/results/lap_chart_data
|
|
2878
|
+
* @sample results.lap_chart_data.json
|
|
2275
2879
|
*/
|
|
2276
|
-
lapChartData(params: ResultsLapChartDataParams): Promise<
|
|
2880
|
+
lapChartData(params: ResultsLapChartDataParams): Promise<ResultsLapChartDataResponse>;
|
|
2277
2881
|
/**
|
|
2278
2882
|
* lap_data
|
|
2279
2883
|
* @see https://members-ng.iracing.com/data/results/lap_data
|
|
2884
|
+
* @sample results.lap_data_var3.json
|
|
2280
2885
|
*/
|
|
2281
|
-
lapData(params: ResultsLapDataParams): Promise<
|
|
2886
|
+
lapData(params: ResultsLapDataParams): Promise<ResultsLapDataResponse>;
|
|
2282
2887
|
/**
|
|
2283
2888
|
* search_hosted
|
|
2284
2889
|
* @see https://members-ng.iracing.com/data/results/search_hosted
|
|
2890
|
+
* @sample results.search_hosted.json
|
|
2285
2891
|
*/
|
|
2286
|
-
searchHosted(params: ResultsSearchHostedParams): Promise<
|
|
2892
|
+
searchHosted(params: ResultsSearchHostedParams): Promise<ResultsSearchHostedResponse>;
|
|
2287
2893
|
/**
|
|
2288
2894
|
* search_series
|
|
2289
2895
|
* @see https://members-ng.iracing.com/data/results/search_series
|
|
2896
|
+
* @sample results.search_series.json
|
|
2290
2897
|
*/
|
|
2291
|
-
searchSeries(params: ResultsSearchSeriesParams): Promise<
|
|
2898
|
+
searchSeries(params: ResultsSearchSeriesParams): Promise<ResultsSearchSeriesResponse>;
|
|
2292
2899
|
/**
|
|
2293
2900
|
* season_results
|
|
2294
2901
|
* @see https://members-ng.iracing.com/data/results/season_results
|
|
2902
|
+
* @sample results.season_results.json
|
|
2295
2903
|
*/
|
|
2296
|
-
seasonResults(params: ResultsSeasonResultsParams): Promise<
|
|
2904
|
+
seasonResults(params: ResultsSeasonResultsParams): Promise<ResultsSeasonResultsResponse>;
|
|
2297
2905
|
}
|
|
2298
2906
|
|
|
2299
2907
|
declare const SeasonList: z.ZodMiniObject<{
|
|
@@ -2556,8 +3164,8 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2556
3164
|
maxDryTireSets: z.ZodMiniNumber<number>;
|
|
2557
3165
|
maxPctFuelFill: z.ZodMiniNumber<number>;
|
|
2558
3166
|
powerAdjustPct: z.ZodMiniNumber<number>;
|
|
2559
|
-
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
2560
3167
|
raceSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
3168
|
+
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
2561
3169
|
qualSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2562
3170
|
}, z.core.$strip>>;
|
|
2563
3171
|
category: z.ZodMiniString<string>;
|
|
@@ -2570,18 +3178,22 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2570
3178
|
qualifyLength: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2571
3179
|
raceLapLimit: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
2572
3180
|
raceTimeDescriptors: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3181
|
+
repeating: z.ZodMiniBoolean<boolean>;
|
|
3182
|
+
sessionMinutes: z.ZodMiniNumber<number>;
|
|
3183
|
+
sessionTimes: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
3184
|
+
superSession: z.ZodMiniBoolean<boolean>;
|
|
2573
3185
|
dayOffset: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniNumber<number>>>;
|
|
2574
3186
|
firstSessionTime: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2575
3187
|
repeatMinutes: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2576
|
-
repeating: z.ZodMiniBoolean<boolean>;
|
|
2577
|
-
sessionMinutes: z.ZodMiniNumber<number>;
|
|
2578
3188
|
startDate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2579
|
-
superSession: z.ZodMiniBoolean<boolean>;
|
|
2580
|
-
sessionTimes: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2581
3189
|
}, z.core.$strip>>;
|
|
2582
3190
|
raceTimeLimit: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
2583
|
-
raceWeekCarClassIds: z.ZodMiniArray<z.
|
|
2584
|
-
raceWeekCars: z.ZodMiniArray<z.
|
|
3191
|
+
raceWeekCarClassIds: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
3192
|
+
raceWeekCars: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3193
|
+
carId: z.ZodMiniNumber<number>;
|
|
3194
|
+
carName: z.ZodMiniString<string>;
|
|
3195
|
+
carNameAbbreviated: z.ZodMiniString<string>;
|
|
3196
|
+
}, z.core.$strip>>;
|
|
2585
3197
|
restartType: z.ZodMiniString<string>;
|
|
2586
3198
|
scheduleName: z.ZodMiniString<string>;
|
|
2587
3199
|
seasonName: z.ZodMiniString<string>;
|
|
@@ -2595,9 +3207,9 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2595
3207
|
track: z.ZodMiniObject<{
|
|
2596
3208
|
category: z.ZodMiniString<string>;
|
|
2597
3209
|
categoryId: z.ZodMiniNumber<number>;
|
|
2598
|
-
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2599
3210
|
trackId: z.ZodMiniNumber<number>;
|
|
2600
3211
|
trackName: z.ZodMiniString<string>;
|
|
3212
|
+
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2601
3213
|
}, z.core.$strip>;
|
|
2602
3214
|
trackState: z.ZodMiniObject<{
|
|
2603
3215
|
leaveMarbles: z.ZodMiniBoolean<boolean>;
|
|
@@ -2606,19 +3218,19 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2606
3218
|
}, z.core.$strip>;
|
|
2607
3219
|
warmupLength: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2608
3220
|
weather: z.ZodMiniObject<{
|
|
2609
|
-
allowFog: z.ZodMiniBoolean<boolean
|
|
2610
|
-
forecastOptions: z.ZodMiniObject<{
|
|
3221
|
+
allowFog: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
3222
|
+
forecastOptions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2611
3223
|
allowFog: z.ZodMiniBoolean<boolean>;
|
|
2612
3224
|
forecastType: z.ZodMiniNumber<number>;
|
|
2613
3225
|
precipitation: z.ZodMiniNumber<number>;
|
|
2614
3226
|
skies: z.ZodMiniNumber<number>;
|
|
2615
3227
|
stopPrecip: z.ZodMiniNumber<number>;
|
|
2616
3228
|
temperature: z.ZodMiniNumber<number>;
|
|
2617
|
-
weatherSeed: z.
|
|
3229
|
+
weatherSeed: z.ZodMiniNumber<number>;
|
|
2618
3230
|
windDir: z.ZodMiniNumber<number>;
|
|
2619
3231
|
windSpeed: z.ZodMiniNumber<number>;
|
|
2620
|
-
}, z.core.$strip
|
|
2621
|
-
precipOption: z.ZodMiniNumber<number
|
|
3232
|
+
}, z.core.$strip>>;
|
|
3233
|
+
precipOption: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2622
3234
|
relHumidity: z.ZodMiniNumber<number>;
|
|
2623
3235
|
simulatedStartTime: z.ZodMiniString<string>;
|
|
2624
3236
|
simulatedTimeMultiplier: z.ZodMiniNumber<number>;
|
|
@@ -2627,9 +3239,9 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2627
3239
|
tempUnits: z.ZodMiniNumber<number>;
|
|
2628
3240
|
tempValue: z.ZodMiniNumber<number>;
|
|
2629
3241
|
timeOfDay: z.ZodMiniNumber<number>;
|
|
2630
|
-
trackWater: z.ZodMiniNumber<number
|
|
3242
|
+
trackWater: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2631
3243
|
version: z.ZodMiniNumber<number>;
|
|
2632
|
-
weatherSummary: z.ZodMiniObject<{
|
|
3244
|
+
weatherSummary: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2633
3245
|
maxPrecipRate: z.ZodMiniNumber<number>;
|
|
2634
3246
|
maxPrecipRateDesc: z.ZodMiniString<string>;
|
|
2635
3247
|
precipChance: z.ZodMiniNumber<number>;
|
|
@@ -2642,14 +3254,19 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2642
3254
|
windHigh: z.ZodMiniNumber<number>;
|
|
2643
3255
|
windLow: z.ZodMiniNumber<number>;
|
|
2644
3256
|
windUnits: z.ZodMiniNumber<number>;
|
|
2645
|
-
}, z.core.$strip
|
|
2646
|
-
weatherUrl: z.ZodMiniString<string
|
|
3257
|
+
}, z.core.$strip>>;
|
|
3258
|
+
weatherUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2647
3259
|
windDir: z.ZodMiniNumber<number>;
|
|
2648
3260
|
windUnits: z.ZodMiniNumber<number>;
|
|
2649
3261
|
windValue: z.ZodMiniNumber<number>;
|
|
3262
|
+
fog: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
3263
|
+
type: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
3264
|
+
weatherVarInitial: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
3265
|
+
weatherVarOngoing: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2650
3266
|
}, z.core.$strip>;
|
|
2651
3267
|
weekEndTime: z.ZodMiniString<string>;
|
|
2652
3268
|
}, z.core.$strip>>;
|
|
3269
|
+
scoreAsCarclassid: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2653
3270
|
seasonQuarter: z.ZodMiniNumber<number>;
|
|
2654
3271
|
seasonShortName: z.ZodMiniString<string>;
|
|
2655
3272
|
seasonYear: z.ZodMiniNumber<number>;
|
|
@@ -2663,6 +3280,8 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2663
3280
|
trackType: z.ZodMiniString<string>;
|
|
2664
3281
|
}, z.core.$strip>>;
|
|
2665
3282
|
unsportConductRuleMode: z.ZodMiniNumber<number>;
|
|
3283
|
+
rookieSeason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
3284
|
+
regOpenMinutes: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2666
3285
|
heatSesInfo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2667
3286
|
consolationDeltaMaxFieldSize: z.ZodMiniNumber<number>;
|
|
2668
3287
|
consolationDeltaSessionLaps: z.ZodMiniNumber<number>;
|
|
@@ -2708,7 +3327,6 @@ declare const SeriesSeasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
2708
3327
|
qualStyle: z.ZodMiniNumber<number>;
|
|
2709
3328
|
raceStyle: z.ZodMiniNumber<number>;
|
|
2710
3329
|
}, z.core.$strip>>;
|
|
2711
|
-
regOpenMinutes: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2712
3330
|
}, z.core.$strip>>;
|
|
2713
3331
|
declare const SeriesSeasonList: z.ZodMiniObject<{
|
|
2714
3332
|
seasons: z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -2732,22 +3350,22 @@ declare const SeriesSeasonList: z.ZodMiniObject<{
|
|
|
2732
3350
|
track: z.ZodMiniObject<{
|
|
2733
3351
|
category: z.ZodMiniString<string>;
|
|
2734
3352
|
categoryId: z.ZodMiniNumber<number>;
|
|
2735
|
-
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2736
3353
|
trackId: z.ZodMiniNumber<number>;
|
|
2737
3354
|
trackName: z.ZodMiniString<string>;
|
|
3355
|
+
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2738
3356
|
}, z.core.$strip>;
|
|
2739
3357
|
carRestrictions: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2740
3358
|
carId: z.ZodMiniNumber<number>;
|
|
2741
3359
|
maxDryTireSets: z.ZodMiniNumber<number>;
|
|
2742
3360
|
maxPctFuelFill: z.ZodMiniNumber<number>;
|
|
2743
3361
|
powerAdjustPct: z.ZodMiniNumber<number>;
|
|
2744
|
-
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
2745
3362
|
raceSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
3363
|
+
weightPenaltyKg: z.ZodMiniNumber<number>;
|
|
2746
3364
|
qualSetupId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2747
3365
|
}, z.core.$strip>>;
|
|
2748
3366
|
raceLapLimit: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
2749
3367
|
raceTimeLimit: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
2750
|
-
precipChance: z.ZodMiniNumber<number
|
|
3368
|
+
precipChance: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2751
3369
|
startType: z.ZodMiniString<string>;
|
|
2752
3370
|
categoryId: z.ZodMiniNumber<number>;
|
|
2753
3371
|
}, z.core.$strip>;
|
|
@@ -2789,6 +3407,10 @@ declare const SeriesSeasonList: z.ZodMiniObject<{
|
|
|
2789
3407
|
openPracticeSessionTypeId: z.ZodMiniNumber<number>;
|
|
2790
3408
|
qualifierMustStartRace: z.ZodMiniBoolean<boolean>;
|
|
2791
3409
|
raceWeek: z.ZodMiniNumber<number>;
|
|
3410
|
+
raceWeekCarClassIds: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
3411
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3412
|
+
carClassIds: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
3413
|
+
}, z.core.$strip>>>;
|
|
2792
3414
|
raceWeekToMakeDivisions: z.ZodMiniNumber<number>;
|
|
2793
3415
|
regUserCount: z.ZodMiniNumber<number>;
|
|
2794
3416
|
regionCompetition: z.ZodMiniBoolean<boolean>;
|
|
@@ -2809,6 +3431,8 @@ declare const SeriesSeasonList: z.ZodMiniObject<{
|
|
|
2809
3431
|
trackType: z.ZodMiniString<string>;
|
|
2810
3432
|
}, z.core.$strip>>;
|
|
2811
3433
|
unsportConductRuleMode: z.ZodMiniNumber<number>;
|
|
3434
|
+
rookieSeason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
3435
|
+
regOpenMinutes: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
2812
3436
|
heatSesInfo: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2813
3437
|
consolationDeltaMaxFieldSize: z.ZodMiniNumber<number>;
|
|
2814
3438
|
consolationDeltaSessionLaps: z.ZodMiniNumber<number>;
|
|
@@ -2854,7 +3478,92 @@ declare const SeriesSeasonList: z.ZodMiniObject<{
|
|
|
2854
3478
|
qualStyle: z.ZodMiniNumber<number>;
|
|
2855
3479
|
raceStyle: z.ZodMiniNumber<number>;
|
|
2856
3480
|
}, z.core.$strip>>;
|
|
2857
|
-
|
|
3481
|
+
}, z.core.$strip>>;
|
|
3482
|
+
}, z.core.$strip>;
|
|
3483
|
+
declare const SeriesSeasonSchedule: z.ZodMiniObject<{
|
|
3484
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3485
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3486
|
+
schedules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3487
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3488
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3489
|
+
carRestrictions: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
3490
|
+
category: z.ZodMiniString<string>;
|
|
3491
|
+
categoryId: z.ZodMiniNumber<number>;
|
|
3492
|
+
enablePitlaneCollisions: z.ZodMiniBoolean<boolean>;
|
|
3493
|
+
eventOptions: z.ZodMiniObject<{
|
|
3494
|
+
allowWaveArounds: z.ZodMiniBoolean<boolean>;
|
|
3495
|
+
cautionsEnabled: z.ZodMiniBoolean<boolean>;
|
|
3496
|
+
qualifyScoringType: z.ZodMiniNumber<number>;
|
|
3497
|
+
restartType: z.ZodMiniNumber<number>;
|
|
3498
|
+
shortParadeLap: z.ZodMiniBoolean<boolean>;
|
|
3499
|
+
singleFileConsecCautions: z.ZodMiniBoolean<boolean>;
|
|
3500
|
+
standingStart: z.ZodMiniBoolean<boolean>;
|
|
3501
|
+
startingGridType: z.ZodMiniNumber<number>;
|
|
3502
|
+
}, z.core.$strip>;
|
|
3503
|
+
eventSessions: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3504
|
+
laps: z.ZodMiniNumber<number>;
|
|
3505
|
+
minutes: z.ZodMiniNumber<number>;
|
|
3506
|
+
startTimeOffset: z.ZodMiniNumber<number>;
|
|
3507
|
+
type: z.ZodMiniNumber<number>;
|
|
3508
|
+
typeName: z.ZodMiniString<string>;
|
|
3509
|
+
unlimitedLaps: z.ZodMiniBoolean<boolean>;
|
|
3510
|
+
unlimitedTime: z.ZodMiniBoolean<boolean>;
|
|
3511
|
+
}, z.core.$strip>>;
|
|
3512
|
+
fullCourseCautions: z.ZodMiniBoolean<boolean>;
|
|
3513
|
+
practiceLength: z.ZodMiniNumber<number>;
|
|
3514
|
+
qualAttached: z.ZodMiniBoolean<boolean>;
|
|
3515
|
+
qualTimeDescriptors: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
3516
|
+
qualifyLaps: z.ZodMiniNumber<number>;
|
|
3517
|
+
qualifyLength: z.ZodMiniNumber<number>;
|
|
3518
|
+
raceLapLimit: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
3519
|
+
raceTimeDescriptors: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3520
|
+
repeating: z.ZodMiniBoolean<boolean>;
|
|
3521
|
+
sessionMinutes: z.ZodMiniNumber<number>;
|
|
3522
|
+
sessionTimes: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
3523
|
+
superSession: z.ZodMiniBoolean<boolean>;
|
|
3524
|
+
}, z.core.$strip>>;
|
|
3525
|
+
raceTimeLimit: z.ZodMiniNumber<number>;
|
|
3526
|
+
raceWeekCarClasses: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
3527
|
+
restartType: z.ZodMiniString<string>;
|
|
3528
|
+
scheduleName: z.ZodMiniString<string>;
|
|
3529
|
+
seasonName: z.ZodMiniString<string>;
|
|
3530
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3531
|
+
seriesName: z.ZodMiniString<string>;
|
|
3532
|
+
shortParadeLap: z.ZodMiniBoolean<boolean>;
|
|
3533
|
+
specialEventType: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
3534
|
+
startDate: z.ZodMiniString<string>;
|
|
3535
|
+
startType: z.ZodMiniString<string>;
|
|
3536
|
+
startZone: z.ZodMiniBoolean<boolean>;
|
|
3537
|
+
track: z.ZodMiniObject<{
|
|
3538
|
+
category: z.ZodMiniString<string>;
|
|
3539
|
+
categoryId: z.ZodMiniNumber<number>;
|
|
3540
|
+
configName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
3541
|
+
trackId: z.ZodMiniNumber<number>;
|
|
3542
|
+
trackName: z.ZodMiniString<string>;
|
|
3543
|
+
}, z.core.$strip>;
|
|
3544
|
+
trackState: z.ZodMiniObject<{
|
|
3545
|
+
leaveMarbles: z.ZodMiniBoolean<boolean>;
|
|
3546
|
+
}, z.core.$strip>;
|
|
3547
|
+
warmupLength: z.ZodMiniNumber<number>;
|
|
3548
|
+
weather: z.ZodMiniObject<{
|
|
3549
|
+
fog: z.ZodMiniNumber<number>;
|
|
3550
|
+
relHumidity: z.ZodMiniNumber<number>;
|
|
3551
|
+
simulatedStartTime: z.ZodMiniString<string>;
|
|
3552
|
+
simulatedTimeMultiplier: z.ZodMiniNumber<number>;
|
|
3553
|
+
simulatedTimeOffsets: z.ZodMiniArray<z.ZodMiniNumber<number>>;
|
|
3554
|
+
skies: z.ZodMiniNumber<number>;
|
|
3555
|
+
tempUnits: z.ZodMiniNumber<number>;
|
|
3556
|
+
tempValue: z.ZodMiniNumber<number>;
|
|
3557
|
+
timeOfDay: z.ZodMiniNumber<number>;
|
|
3558
|
+
type: z.ZodMiniNumber<number>;
|
|
3559
|
+
version: z.ZodMiniNumber<number>;
|
|
3560
|
+
weatherVarInitial: z.ZodMiniNumber<number>;
|
|
3561
|
+
weatherVarOngoing: z.ZodMiniNumber<number>;
|
|
3562
|
+
windDir: z.ZodMiniNumber<number>;
|
|
3563
|
+
windUnits: z.ZodMiniNumber<number>;
|
|
3564
|
+
windValue: z.ZodMiniNumber<number>;
|
|
3565
|
+
}, z.core.$strip>;
|
|
3566
|
+
weekEndTime: z.ZodMiniString<string>;
|
|
2858
3567
|
}, z.core.$strip>>;
|
|
2859
3568
|
}, z.core.$strip>;
|
|
2860
3569
|
declare const SeriesStatsSeries: z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -2918,6 +3627,7 @@ type SeriesGetResponse = z.infer<typeof SeriesGet>;
|
|
|
2918
3627
|
type SeriesPastSeasonsResponse = z.infer<typeof SeriesPastSeasons>;
|
|
2919
3628
|
type SeriesSeasonsResponse = z.infer<typeof SeriesSeasons>;
|
|
2920
3629
|
type SeriesSeasonListResponse = z.infer<typeof SeriesSeasonList>;
|
|
3630
|
+
type SeriesSeasonScheduleResponse = z.infer<typeof SeriesSeasonSchedule>;
|
|
2921
3631
|
type SeriesStatsSeriesResponse = z.infer<typeof SeriesStatsSeries>;
|
|
2922
3632
|
declare const SeriesAssetsParamsSchema: z.ZodMiniObject<{}, z.core.$strip>;
|
|
2923
3633
|
declare const SeriesGetParamsSchema: z.ZodMiniObject<{}, z.core.$strip>;
|
|
@@ -2982,8 +3692,9 @@ declare class SeriesService {
|
|
|
2982
3692
|
/**
|
|
2983
3693
|
* season_schedule
|
|
2984
3694
|
* @see https://members-ng.iracing.com/data/series/season_schedule
|
|
3695
|
+
* @sample series.season_schedule.json
|
|
2985
3696
|
*/
|
|
2986
|
-
seasonSchedule(params: SeriesSeasonScheduleParams): Promise<
|
|
3697
|
+
seasonSchedule(params: SeriesSeasonScheduleParams): Promise<SeriesSeasonScheduleResponse>;
|
|
2987
3698
|
/**
|
|
2988
3699
|
* stats_series
|
|
2989
3700
|
* @see https://members-ng.iracing.com/data/series/stats_series
|
|
@@ -3034,6 +3745,13 @@ declare const StatsMemberCareer: z.ZodMiniObject<{
|
|
|
3034
3745
|
}, z.core.$strip>>;
|
|
3035
3746
|
custId: z.ZodMiniNumber<number>;
|
|
3036
3747
|
}, z.core.$strip>;
|
|
3748
|
+
declare const StatsMemberDivision: z.ZodMiniObject<{
|
|
3749
|
+
division: z.ZodMiniNumber<number>;
|
|
3750
|
+
projected: z.ZodMiniBoolean<boolean>;
|
|
3751
|
+
eventType: z.ZodMiniNumber<number>;
|
|
3752
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3753
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3754
|
+
}, z.core.$strip>;
|
|
3037
3755
|
declare const StatsMemberRecap: z.ZodMiniObject<{
|
|
3038
3756
|
year: z.ZodMiniNumber<number>;
|
|
3039
3757
|
stats: z.ZodMiniObject<{
|
|
@@ -3142,6 +3860,132 @@ declare const StatsMemberYearly: z.ZodMiniObject<{
|
|
|
3142
3860
|
}, z.core.$strip>>;
|
|
3143
3861
|
custId: z.ZodMiniNumber<number>;
|
|
3144
3862
|
}, z.core.$strip>;
|
|
3863
|
+
declare const StatsSeasonDriverStandings: z.ZodMiniObject<{
|
|
3864
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3865
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3866
|
+
seasonName: z.ZodMiniString<string>;
|
|
3867
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3868
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3869
|
+
seriesName: z.ZodMiniString<string>;
|
|
3870
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3871
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3872
|
+
division: z.ZodMiniNumber<number>;
|
|
3873
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3874
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3875
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3876
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3877
|
+
rows: z.ZodMiniNumber<number>;
|
|
3878
|
+
baseDownloadUrl: z.ZodMiniString<string>;
|
|
3879
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
3880
|
+
}, z.core.$strip>;
|
|
3881
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3882
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3883
|
+
}, z.core.$strip>;
|
|
3884
|
+
declare const StatsSeasonSupersessionStandings: z.ZodMiniObject<{
|
|
3885
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3886
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3887
|
+
seasonName: z.ZodMiniString<string>;
|
|
3888
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3889
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3890
|
+
seriesName: z.ZodMiniString<string>;
|
|
3891
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3892
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3893
|
+
division: z.ZodMiniNumber<number>;
|
|
3894
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3895
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3896
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3897
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3898
|
+
rows: z.ZodMiniNumber<number>;
|
|
3899
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
3900
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
3901
|
+
}, z.core.$strip>;
|
|
3902
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3903
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3904
|
+
}, z.core.$strip>;
|
|
3905
|
+
declare const StatsSeasonTeamStandings: z.ZodMiniObject<{
|
|
3906
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3907
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3908
|
+
seasonName: z.ZodMiniString<string>;
|
|
3909
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3910
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3911
|
+
seriesName: z.ZodMiniString<string>;
|
|
3912
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3913
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3914
|
+
division: z.ZodMiniNumber<number>;
|
|
3915
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3916
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3917
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3918
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3919
|
+
rows: z.ZodMiniNumber<number>;
|
|
3920
|
+
baseDownloadUrl: z.ZodMiniString<string>;
|
|
3921
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
3922
|
+
}, z.core.$strip>;
|
|
3923
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3924
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3925
|
+
}, z.core.$strip>;
|
|
3926
|
+
declare const StatsSeasonTtStandings: z.ZodMiniObject<{
|
|
3927
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3928
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3929
|
+
seasonName: z.ZodMiniString<string>;
|
|
3930
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3931
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3932
|
+
seriesName: z.ZodMiniString<string>;
|
|
3933
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3934
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3935
|
+
division: z.ZodMiniNumber<number>;
|
|
3936
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3937
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3938
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3939
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3940
|
+
rows: z.ZodMiniNumber<number>;
|
|
3941
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
3942
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
3943
|
+
}, z.core.$strip>;
|
|
3944
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3945
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3946
|
+
}, z.core.$strip>;
|
|
3947
|
+
declare const StatsSeasonTtResults: z.ZodMiniObject<{
|
|
3948
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3949
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3950
|
+
seasonName: z.ZodMiniString<string>;
|
|
3951
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3952
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3953
|
+
seriesName: z.ZodMiniString<string>;
|
|
3954
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3955
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3956
|
+
division: z.ZodMiniNumber<number>;
|
|
3957
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3958
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3959
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3960
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3961
|
+
rows: z.ZodMiniNumber<number>;
|
|
3962
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
3963
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
3964
|
+
}, z.core.$strip>;
|
|
3965
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3966
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3967
|
+
}, z.core.$strip>;
|
|
3968
|
+
declare const StatsSeasonQualifyResults: z.ZodMiniObject<{
|
|
3969
|
+
success: z.ZodMiniBoolean<boolean>;
|
|
3970
|
+
seasonId: z.ZodMiniNumber<number>;
|
|
3971
|
+
seasonName: z.ZodMiniString<string>;
|
|
3972
|
+
seasonShortName: z.ZodMiniString<string>;
|
|
3973
|
+
seriesId: z.ZodMiniNumber<number>;
|
|
3974
|
+
seriesName: z.ZodMiniString<string>;
|
|
3975
|
+
carClassId: z.ZodMiniNumber<number>;
|
|
3976
|
+
raceWeekNum: z.ZodMiniNumber<number>;
|
|
3977
|
+
division: z.ZodMiniNumber<number>;
|
|
3978
|
+
customerRank: z.ZodMiniNumber<number>;
|
|
3979
|
+
chunkInfo: z.ZodMiniObject<{
|
|
3980
|
+
chunkSize: z.ZodMiniNumber<number>;
|
|
3981
|
+
numChunks: z.ZodMiniNumber<number>;
|
|
3982
|
+
rows: z.ZodMiniNumber<number>;
|
|
3983
|
+
baseDownloadUrl: z.ZodMiniNullable<z.ZodMiniUnknown>;
|
|
3984
|
+
chunkFileNames: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
3985
|
+
}, z.core.$strip>;
|
|
3986
|
+
lastUpdated: z.ZodMiniString<string>;
|
|
3987
|
+
csvUrl: z.ZodMiniString<string>;
|
|
3988
|
+
}, z.core.$strip>;
|
|
3145
3989
|
declare const StatsWorldRecords: z.ZodMiniObject<{
|
|
3146
3990
|
type: z.ZodMiniString<string>;
|
|
3147
3991
|
data: z.ZodMiniObject<{
|
|
@@ -3162,10 +4006,17 @@ declare const StatsWorldRecords: z.ZodMiniObject<{
|
|
|
3162
4006
|
}, z.core.$strip>;
|
|
3163
4007
|
type StatsMemberBestsResponse = z.infer<typeof StatsMemberBests>;
|
|
3164
4008
|
type StatsMemberCareerResponse = z.infer<typeof StatsMemberCareer>;
|
|
4009
|
+
type StatsMemberDivisionResponse = z.infer<typeof StatsMemberDivision>;
|
|
3165
4010
|
type StatsMemberRecapResponse = z.infer<typeof StatsMemberRecap>;
|
|
3166
4011
|
type StatsMemberRecentRacesResponse = z.infer<typeof StatsMemberRecentRaces>;
|
|
3167
4012
|
type StatsMemberSummaryResponse = z.infer<typeof StatsMemberSummary>;
|
|
3168
4013
|
type StatsMemberYearlyResponse = z.infer<typeof StatsMemberYearly>;
|
|
4014
|
+
type StatsSeasonDriverStandingsResponse = z.infer<typeof StatsSeasonDriverStandings>;
|
|
4015
|
+
type StatsSeasonSupersessionStandingsResponse = z.infer<typeof StatsSeasonSupersessionStandings>;
|
|
4016
|
+
type StatsSeasonTeamStandingsResponse = z.infer<typeof StatsSeasonTeamStandings>;
|
|
4017
|
+
type StatsSeasonTtStandingsResponse = z.infer<typeof StatsSeasonTtStandings>;
|
|
4018
|
+
type StatsSeasonTtResultsResponse = z.infer<typeof StatsSeasonTtResults>;
|
|
4019
|
+
type StatsSeasonQualifyResultsResponse = z.infer<typeof StatsSeasonQualifyResults>;
|
|
3169
4020
|
type StatsWorldRecordsResponse = z.infer<typeof StatsWorldRecords>;
|
|
3170
4021
|
declare const StatsMemberBestsParamsSchema: z.ZodMiniObject<{
|
|
3171
4022
|
custId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
@@ -3266,8 +4117,9 @@ declare class StatsService {
|
|
|
3266
4117
|
/**
|
|
3267
4118
|
* member_division
|
|
3268
4119
|
* @see https://members-ng.iracing.com/data/stats/member_division
|
|
4120
|
+
* @sample stats.member_division.json
|
|
3269
4121
|
*/
|
|
3270
|
-
memberDivision(params: StatsMemberDivisionParams): Promise<
|
|
4122
|
+
memberDivision(params: StatsMemberDivisionParams): Promise<StatsMemberDivisionResponse>;
|
|
3271
4123
|
/**
|
|
3272
4124
|
* member_recap
|
|
3273
4125
|
* @see https://members-ng.iracing.com/data/stats/member_recap
|
|
@@ -3295,33 +4147,39 @@ declare class StatsService {
|
|
|
3295
4147
|
/**
|
|
3296
4148
|
* season_driver_standings
|
|
3297
4149
|
* @see https://members-ng.iracing.com/data/stats/season_driver_standings
|
|
4150
|
+
* @sample stats.season_driver_standings.json
|
|
3298
4151
|
*/
|
|
3299
|
-
seasonDriverStandings(params: StatsSeasonDriverStandingsParams): Promise<
|
|
4152
|
+
seasonDriverStandings(params: StatsSeasonDriverStandingsParams): Promise<StatsSeasonDriverStandingsResponse>;
|
|
3300
4153
|
/**
|
|
3301
4154
|
* season_supersession_standings
|
|
3302
4155
|
* @see https://members-ng.iracing.com/data/stats/season_supersession_standings
|
|
4156
|
+
* @sample stats.season_supersession_standings.json
|
|
3303
4157
|
*/
|
|
3304
|
-
seasonSupersessionStandings(params: StatsSeasonSupersessionStandingsParams): Promise<
|
|
4158
|
+
seasonSupersessionStandings(params: StatsSeasonSupersessionStandingsParams): Promise<StatsSeasonSupersessionStandingsResponse>;
|
|
3305
4159
|
/**
|
|
3306
4160
|
* season_team_standings
|
|
3307
4161
|
* @see https://members-ng.iracing.com/data/stats/season_team_standings
|
|
4162
|
+
* @sample stats.season_team_standings.json
|
|
3308
4163
|
*/
|
|
3309
|
-
seasonTeamStandings(params: StatsSeasonTeamStandingsParams): Promise<
|
|
4164
|
+
seasonTeamStandings(params: StatsSeasonTeamStandingsParams): Promise<StatsSeasonTeamStandingsResponse>;
|
|
3310
4165
|
/**
|
|
3311
4166
|
* season_tt_standings
|
|
3312
4167
|
* @see https://members-ng.iracing.com/data/stats/season_tt_standings
|
|
4168
|
+
* @sample stats.season_tt_standings.json
|
|
3313
4169
|
*/
|
|
3314
|
-
seasonTtStandings(params: StatsSeasonTtStandingsParams): Promise<
|
|
4170
|
+
seasonTtStandings(params: StatsSeasonTtStandingsParams): Promise<StatsSeasonTtStandingsResponse>;
|
|
3315
4171
|
/**
|
|
3316
4172
|
* season_tt_results
|
|
3317
4173
|
* @see https://members-ng.iracing.com/data/stats/season_tt_results
|
|
4174
|
+
* @sample stats.season_tt_results.json
|
|
3318
4175
|
*/
|
|
3319
|
-
seasonTtResults(params: StatsSeasonTtResultsParams): Promise<
|
|
4176
|
+
seasonTtResults(params: StatsSeasonTtResultsParams): Promise<StatsSeasonTtResultsResponse>;
|
|
3320
4177
|
/**
|
|
3321
4178
|
* season_qualify_results
|
|
3322
4179
|
* @see https://members-ng.iracing.com/data/stats/season_qualify_results
|
|
4180
|
+
* @sample stats.season_qualify_results.json
|
|
3323
4181
|
*/
|
|
3324
|
-
seasonQualifyResults(params: StatsSeasonQualifyResultsParams): Promise<
|
|
4182
|
+
seasonQualifyResults(params: StatsSeasonQualifyResultsParams): Promise<StatsSeasonQualifyResultsResponse>;
|
|
3325
4183
|
/**
|
|
3326
4184
|
* world_records
|
|
3327
4185
|
* @see https://members-ng.iracing.com/data/stats/world_records
|
|
@@ -3330,6 +4188,66 @@ declare class StatsService {
|
|
|
3330
4188
|
worldRecords(params: StatsWorldRecordsParams): Promise<StatsWorldRecordsResponse>;
|
|
3331
4189
|
}
|
|
3332
4190
|
|
|
4191
|
+
declare const TeamGet: z.ZodMiniObject<{
|
|
4192
|
+
teamId: z.ZodMiniNumber<number>;
|
|
4193
|
+
ownerId: z.ZodMiniNumber<number>;
|
|
4194
|
+
teamName: z.ZodMiniString<string>;
|
|
4195
|
+
created: z.ZodMiniString<string>;
|
|
4196
|
+
hidden: z.ZodMiniBoolean<boolean>;
|
|
4197
|
+
message: z.ZodMiniString<string>;
|
|
4198
|
+
about: z.ZodMiniString<string>;
|
|
4199
|
+
url: z.ZodMiniString<string>;
|
|
4200
|
+
rosterCount: z.ZodMiniNumber<number>;
|
|
4201
|
+
recruiting: z.ZodMiniBoolean<boolean>;
|
|
4202
|
+
privateWall: z.ZodMiniBoolean<boolean>;
|
|
4203
|
+
isDefault: z.ZodMiniBoolean<boolean>;
|
|
4204
|
+
isOwner: z.ZodMiniBoolean<boolean>;
|
|
4205
|
+
isAdmin: z.ZodMiniBoolean<boolean>;
|
|
4206
|
+
suit: z.ZodMiniObject<{
|
|
4207
|
+
pattern: z.ZodMiniNumber<number>;
|
|
4208
|
+
color1: z.ZodMiniString<string>;
|
|
4209
|
+
color2: z.ZodMiniString<string>;
|
|
4210
|
+
color3: z.ZodMiniString<string>;
|
|
4211
|
+
}, z.core.$strip>;
|
|
4212
|
+
owner: z.ZodMiniObject<{
|
|
4213
|
+
custId: z.ZodMiniNumber<number>;
|
|
4214
|
+
displayName: z.ZodMiniString<string>;
|
|
4215
|
+
helmet: z.ZodMiniObject<{
|
|
4216
|
+
pattern: z.ZodMiniNumber<number>;
|
|
4217
|
+
color1: z.ZodMiniString<string>;
|
|
4218
|
+
color2: z.ZodMiniString<string>;
|
|
4219
|
+
color3: z.ZodMiniString<string>;
|
|
4220
|
+
faceType: z.ZodMiniNumber<number>;
|
|
4221
|
+
helmetType: z.ZodMiniNumber<number>;
|
|
4222
|
+
}, z.core.$strip>;
|
|
4223
|
+
owner: z.ZodMiniBoolean<boolean>;
|
|
4224
|
+
admin: z.ZodMiniBoolean<boolean>;
|
|
4225
|
+
}, z.core.$strip>;
|
|
4226
|
+
tags: z.ZodMiniObject<{
|
|
4227
|
+
categorized: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
4228
|
+
notCategorized: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
4229
|
+
}, z.core.$strip>;
|
|
4230
|
+
teamApplications: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
4231
|
+
pendingRequests: z.ZodMiniArray<z.ZodMiniUnknown>;
|
|
4232
|
+
isMember: z.ZodMiniBoolean<boolean>;
|
|
4233
|
+
isApplicant: z.ZodMiniBoolean<boolean>;
|
|
4234
|
+
isInvite: z.ZodMiniBoolean<boolean>;
|
|
4235
|
+
isIgnored: z.ZodMiniBoolean<boolean>;
|
|
4236
|
+
roster: z.ZodMiniArray<z.ZodMiniObject<{
|
|
4237
|
+
custId: z.ZodMiniNumber<number>;
|
|
4238
|
+
displayName: z.ZodMiniString<string>;
|
|
4239
|
+
helmet: z.ZodMiniObject<{
|
|
4240
|
+
pattern: z.ZodMiniNumber<number>;
|
|
4241
|
+
color1: z.ZodMiniString<string>;
|
|
4242
|
+
color2: z.ZodMiniString<string>;
|
|
4243
|
+
color3: z.ZodMiniString<string>;
|
|
4244
|
+
faceType: z.ZodMiniNumber<number>;
|
|
4245
|
+
helmetType: z.ZodMiniNumber<number>;
|
|
4246
|
+
}, z.core.$strip>;
|
|
4247
|
+
owner: z.ZodMiniBoolean<boolean>;
|
|
4248
|
+
admin: z.ZodMiniBoolean<boolean>;
|
|
4249
|
+
}, z.core.$strip>>;
|
|
4250
|
+
}, z.core.$strip>;
|
|
3333
4251
|
declare const TeamMembership: z.ZodMiniArray<z.ZodMiniObject<{
|
|
3334
4252
|
teamId: z.ZodMiniNumber<number>;
|
|
3335
4253
|
teamName: z.ZodMiniString<string>;
|
|
@@ -3337,6 +4255,7 @@ declare const TeamMembership: z.ZodMiniArray<z.ZodMiniObject<{
|
|
|
3337
4255
|
admin: z.ZodMiniBoolean<boolean>;
|
|
3338
4256
|
defaultTeam: z.ZodMiniBoolean<boolean>;
|
|
3339
4257
|
}, z.core.$strip>>;
|
|
4258
|
+
type TeamGetResponse = z.infer<typeof TeamGet>;
|
|
3340
4259
|
type TeamMembershipResponse = z.infer<typeof TeamMembership>;
|
|
3341
4260
|
declare const TeamGetParamsSchema: z.ZodMiniObject<{
|
|
3342
4261
|
teamId: z.ZodMiniNumber<number>;
|
|
@@ -3352,8 +4271,9 @@ declare class TeamService {
|
|
|
3352
4271
|
/**
|
|
3353
4272
|
* get
|
|
3354
4273
|
* @see https://members-ng.iracing.com/data/team/get
|
|
4274
|
+
* @sample team.get.json
|
|
3355
4275
|
*/
|
|
3356
|
-
get(params: TeamGetParams): Promise<
|
|
4276
|
+
get(params: TeamGetParams): Promise<TeamGetResponse>;
|
|
3357
4277
|
/**
|
|
3358
4278
|
* membership
|
|
3359
4279
|
* @see https://members-ng.iracing.com/data/team/membership
|
|
@@ -3512,4 +4432,4 @@ declare class IRacingDataClient {
|
|
|
3512
4432
|
constructor(opts: IRacingClientOptions);
|
|
3513
4433
|
}
|
|
3514
4434
|
|
|
3515
|
-
export { type AuthConfig, type AuthorizationCodeAuth, CarAssets, type CarAssetsParams, CarAssetsParamsSchema, type CarAssetsResponse, CarGet, type CarGetParams, CarGetParamsSchema, type CarGetResponse, CarclassGet, type CarclassGetParams, CarclassGetParamsSchema, type CarclassGetResponse, ConstantsCategories, type ConstantsCategoriesParams, ConstantsCategoriesParamsSchema, type ConstantsCategoriesResponse, ConstantsDivisions, type ConstantsDivisionsParams, ConstantsDivisionsParamsSchema, type ConstantsDivisionsResponse, ConstantsEventTypes, type ConstantsEventTypesParams, ConstantsEventTypesParamsSchema, type ConstantsEventTypesResponse, DriverStatsByCategoryDirtOval, type DriverStatsByCategoryDirtOvalParams, DriverStatsByCategoryDirtOvalParamsSchema, type DriverStatsByCategoryDirtOvalResponse, DriverStatsByCategoryDirtRoad, type DriverStatsByCategoryDirtRoadParams, DriverStatsByCategoryDirtRoadParamsSchema, type DriverStatsByCategoryDirtRoadResponse, DriverStatsByCategoryFormulaCar, type DriverStatsByCategoryFormulaCarParams, DriverStatsByCategoryFormulaCarParamsSchema, type DriverStatsByCategoryFormulaCarResponse, DriverStatsByCategoryOval, type DriverStatsByCategoryOvalParams, DriverStatsByCategoryOvalParamsSchema, type DriverStatsByCategoryOvalResponse, DriverStatsByCategoryRoad, type DriverStatsByCategoryRoadParams, DriverStatsByCategoryRoadParamsSchema, type DriverStatsByCategoryRoadResponse, DriverStatsByCategorySportsCar, type DriverStatsByCategorySportsCarParams, DriverStatsByCategorySportsCarParamsSchema, type DriverStatsByCategorySportsCarResponse, type FetchLike, HostedCombinedSessions, type HostedCombinedSessionsParams, HostedCombinedSessionsParamsSchema, type HostedCombinedSessionsResponse, HostedSessions, type HostedSessionsParams, HostedSessionsParamsSchema, type HostedSessionsResponse, IRacingClient, type IRacingClientOptions, IRacingDataClient, IRacingError, LeagueCustLeagueSessions, type LeagueCustLeagueSessionsParams, LeagueCustLeagueSessionsParamsSchema, type LeagueCustLeagueSessionsResponse, LeagueDirectory, type LeagueDirectoryParams, LeagueDirectoryParamsSchema, type LeagueDirectoryResponse, LeagueGet, type LeagueGetParams, LeagueGetParamsSchema, LeagueGetPointsSystems, type LeagueGetPointsSystemsParams, LeagueGetPointsSystemsParamsSchema, type LeagueGetPointsSystemsResponse, type LeagueGetResponse, LeagueMembership, type LeagueMembershipParams, LeagueMembershipParamsSchema, type LeagueMembershipResponse, LeagueRoster, type LeagueRosterParams, LeagueRosterParamsSchema, type LeagueRosterResponse, LeagueSeasonSessions, type LeagueSeasonSessionsParams, LeagueSeasonSessionsParamsSchema, type LeagueSeasonSessionsResponse, LeagueSeasonStandings, type LeagueSeasonStandingsParams, LeagueSeasonStandingsParamsSchema, type LeagueSeasonStandingsResponse, LeagueSeasons, type LeagueSeasonsParams, LeagueSeasonsParamsSchema, type LeagueSeasonsResponse, LookupCountries, type LookupCountriesParams, LookupCountriesParamsSchema, type LookupCountriesResponse, LookupDrivers, type LookupDriversParams, LookupDriversParamsSchema, type LookupDriversResponse, LookupFlairs, type LookupFlairsParams, LookupFlairsParamsSchema, type LookupFlairsResponse, LookupGet, type LookupGetParams, LookupGetParamsSchema, type LookupGetResponse, LookupLicenses, type LookupLicensesParams, LookupLicensesParamsSchema, type LookupLicensesResponse, MemberAwardInstances, type MemberAwardInstancesParams, MemberAwardInstancesParamsSchema, type MemberAwardInstancesResponse, MemberAwards, type MemberAwardsParams, MemberAwardsParamsSchema, type MemberAwardsResponse, MemberChartData, type MemberChartDataParams, MemberChartDataParamsSchema, type MemberChartDataResponse, MemberGet, type MemberGetParams, MemberGetParamsSchema, type MemberGetResponse, MemberInfo, type MemberInfoParams, MemberInfoParamsSchema, type MemberInfoResponse, MemberParticipationCredits, type MemberParticipationCreditsParams, MemberParticipationCreditsParamsSchema, type MemberParticipationCreditsResponse, MemberProfile, type MemberProfileParams, MemberProfileParamsSchema, type MemberProfileResponse, OAuthError, type OnTokenRefresh, type PasswordLimitedAuth, type ResultsEventLogParams, ResultsEventLogParamsSchema, type ResultsGetParams, ResultsGetParamsSchema, type ResultsLapChartDataParams, ResultsLapChartDataParamsSchema, type ResultsLapDataParams, ResultsLapDataParamsSchema, type ResultsSearchHostedParams, ResultsSearchHostedParamsSchema, type ResultsSearchSeriesParams, ResultsSearchSeriesParamsSchema, type ResultsSeasonResultsParams, ResultsSeasonResultsParamsSchema, SeasonList, type SeasonListParams, SeasonListParamsSchema, type SeasonListResponse, SeasonRaceGuide, type SeasonRaceGuideParams, SeasonRaceGuideParamsSchema, type SeasonRaceGuideResponse, SeasonSpectatorSubsessionids, SeasonSpectatorSubsessionidsDetail, type SeasonSpectatorSubsessionidsDetailParams, SeasonSpectatorSubsessionidsDetailParamsSchema, type SeasonSpectatorSubsessionidsDetailResponse, type SeasonSpectatorSubsessionidsParams, SeasonSpectatorSubsessionidsParamsSchema, type SeasonSpectatorSubsessionidsResponse, SeriesAssets, type SeriesAssetsParams, SeriesAssetsParamsSchema, type SeriesAssetsResponse, SeriesGet, type SeriesGetParams, SeriesGetParamsSchema, type SeriesGetResponse, SeriesPastSeasons, type SeriesPastSeasonsParams, SeriesPastSeasonsParamsSchema, type SeriesPastSeasonsResponse, SeriesSeasonList, type SeriesSeasonListParams, SeriesSeasonListParamsSchema, type SeriesSeasonListResponse, type SeriesSeasonScheduleParams, SeriesSeasonScheduleParamsSchema, SeriesSeasons, type SeriesSeasonsParams, SeriesSeasonsParamsSchema, type SeriesSeasonsResponse, SeriesStatsSeries, type SeriesStatsSeriesParams, SeriesStatsSeriesParamsSchema, type SeriesStatsSeriesResponse, StatsMemberBests, type StatsMemberBestsParams, StatsMemberBestsParamsSchema, type StatsMemberBestsResponse, StatsMemberCareer, type StatsMemberCareerParams, StatsMemberCareerParamsSchema, type StatsMemberCareerResponse, type StatsMemberDivisionParams, StatsMemberDivisionParamsSchema, StatsMemberRecap, type StatsMemberRecapParams, StatsMemberRecapParamsSchema, type StatsMemberRecapResponse, StatsMemberRecentRaces, type StatsMemberRecentRacesParams, StatsMemberRecentRacesParamsSchema, type StatsMemberRecentRacesResponse, StatsMemberSummary, type StatsMemberSummaryParams, StatsMemberSummaryParamsSchema, type StatsMemberSummaryResponse, StatsMemberYearly, type StatsMemberYearlyParams, StatsMemberYearlyParamsSchema, type StatsMemberYearlyResponse, type StatsSeasonDriverStandingsParams, StatsSeasonDriverStandingsParamsSchema, type StatsSeasonQualifyResultsParams, StatsSeasonQualifyResultsParamsSchema, type StatsSeasonSupersessionStandingsParams, StatsSeasonSupersessionStandingsParamsSchema, type StatsSeasonTeamStandingsParams, StatsSeasonTeamStandingsParamsSchema, type StatsSeasonTtResultsParams, StatsSeasonTtResultsParamsSchema, type StatsSeasonTtStandingsParams, StatsSeasonTtStandingsParamsSchema, StatsWorldRecords, type StatsWorldRecordsParams, StatsWorldRecordsParamsSchema, type StatsWorldRecordsResponse, type TeamGetParams, TeamGetParamsSchema, TeamMembership, type TeamMembershipParams, TeamMembershipParamsSchema, type TeamMembershipResponse, TimeAttackMemberSeasonResults, type TimeAttackMemberSeasonResultsParams, TimeAttackMemberSeasonResultsParamsSchema, type TimeAttackMemberSeasonResultsResponse, TokenRefreshError, type TokenResponse, TrackAssets, type TrackAssetsParams, TrackAssetsParamsSchema, type TrackAssetsResponse, TrackGet, type TrackGetParams, TrackGetParamsSchema, type TrackGetResponse, buildAuthorizationUrl, exchangeAuthorizationCode };
|
|
4435
|
+
export { type AuthConfig, type AuthorizationCodeAuth, CarAssets, type CarAssetsParams, CarAssetsParamsSchema, type CarAssetsResponse, CarGet, type CarGetParams, CarGetParamsSchema, type CarGetResponse, CarclassGet, type CarclassGetParams, CarclassGetParamsSchema, type CarclassGetResponse, ConstantsCategories, type ConstantsCategoriesParams, ConstantsCategoriesParamsSchema, type ConstantsCategoriesResponse, ConstantsDivisions, type ConstantsDivisionsParams, ConstantsDivisionsParamsSchema, type ConstantsDivisionsResponse, ConstantsEventTypes, type ConstantsEventTypesParams, ConstantsEventTypesParamsSchema, type ConstantsEventTypesResponse, DriverStatsByCategoryDirtOval, type DriverStatsByCategoryDirtOvalParams, DriverStatsByCategoryDirtOvalParamsSchema, type DriverStatsByCategoryDirtOvalResponse, DriverStatsByCategoryDirtRoad, type DriverStatsByCategoryDirtRoadParams, DriverStatsByCategoryDirtRoadParamsSchema, type DriverStatsByCategoryDirtRoadResponse, DriverStatsByCategoryFormulaCar, type DriverStatsByCategoryFormulaCarParams, DriverStatsByCategoryFormulaCarParamsSchema, type DriverStatsByCategoryFormulaCarResponse, DriverStatsByCategoryOval, type DriverStatsByCategoryOvalParams, DriverStatsByCategoryOvalParamsSchema, type DriverStatsByCategoryOvalResponse, DriverStatsByCategoryRoad, type DriverStatsByCategoryRoadParams, DriverStatsByCategoryRoadParamsSchema, type DriverStatsByCategoryRoadResponse, DriverStatsByCategorySportsCar, type DriverStatsByCategorySportsCarParams, DriverStatsByCategorySportsCarParamsSchema, type DriverStatsByCategorySportsCarResponse, type FetchLike, HostedCombinedSessions, type HostedCombinedSessionsParams, HostedCombinedSessionsParamsSchema, type HostedCombinedSessionsResponse, HostedSessions, type HostedSessionsParams, HostedSessionsParamsSchema, type HostedSessionsResponse, IRacingClient, type IRacingClientOptions, IRacingDataClient, IRacingError, type IRacingErrorOptions, LeagueCustLeagueSessions, type LeagueCustLeagueSessionsParams, LeagueCustLeagueSessionsParamsSchema, type LeagueCustLeagueSessionsResponse, LeagueDirectory, type LeagueDirectoryParams, LeagueDirectoryParamsSchema, type LeagueDirectoryResponse, LeagueGet, type LeagueGetParams, LeagueGetParamsSchema, LeagueGetPointsSystems, type LeagueGetPointsSystemsParams, LeagueGetPointsSystemsParamsSchema, type LeagueGetPointsSystemsResponse, type LeagueGetResponse, LeagueMembership, type LeagueMembershipParams, LeagueMembershipParamsSchema, type LeagueMembershipResponse, LeagueRoster, type LeagueRosterParams, LeagueRosterParamsSchema, type LeagueRosterResponse, LeagueSeasonSessions, type LeagueSeasonSessionsParams, LeagueSeasonSessionsParamsSchema, type LeagueSeasonSessionsResponse, LeagueSeasonStandings, type LeagueSeasonStandingsParams, LeagueSeasonStandingsParamsSchema, type LeagueSeasonStandingsResponse, LeagueSeasons, type LeagueSeasonsParams, LeagueSeasonsParamsSchema, type LeagueSeasonsResponse, LookupCountries, type LookupCountriesParams, LookupCountriesParamsSchema, type LookupCountriesResponse, LookupDrivers, type LookupDriversParams, LookupDriversParamsSchema, type LookupDriversResponse, LookupFlairs, type LookupFlairsParams, LookupFlairsParamsSchema, type LookupFlairsResponse, LookupGet, type LookupGetParams, LookupGetParamsSchema, type LookupGetResponse, LookupLicenses, type LookupLicensesParams, LookupLicensesParamsSchema, type LookupLicensesResponse, MemberAwardInstances, type MemberAwardInstancesParams, MemberAwardInstancesParamsSchema, type MemberAwardInstancesResponse, MemberAwards, type MemberAwardsParams, MemberAwardsParamsSchema, type MemberAwardsResponse, MemberChartData, type MemberChartDataParams, MemberChartDataParamsSchema, type MemberChartDataResponse, MemberGet, type MemberGetParams, MemberGetParamsSchema, type MemberGetResponse, MemberInfo, type MemberInfoParams, MemberInfoParamsSchema, type MemberInfoResponse, MemberParticipationCredits, type MemberParticipationCreditsParams, MemberParticipationCreditsParamsSchema, type MemberParticipationCreditsResponse, MemberProfile, type MemberProfileParams, MemberProfileParamsSchema, type MemberProfileResponse, OAuthError, type OnTokenRefresh, type PasswordLimitedAuth, ResultsEventLog, type ResultsEventLogParams, ResultsEventLogParamsSchema, type ResultsEventLogResponse, ResultsGet, type ResultsGetParams, ResultsGetParamsSchema, type ResultsGetResponse, ResultsLapChartData, type ResultsLapChartDataParams, ResultsLapChartDataParamsSchema, type ResultsLapChartDataResponse, ResultsLapData, type ResultsLapDataParams, ResultsLapDataParamsSchema, type ResultsLapDataResponse, ResultsSearchHosted, type ResultsSearchHostedParams, ResultsSearchHostedParamsSchema, type ResultsSearchHostedResponse, ResultsSearchSeries, type ResultsSearchSeriesParams, ResultsSearchSeriesParamsSchema, type ResultsSearchSeriesResponse, ResultsSeasonResults, type ResultsSeasonResultsParams, ResultsSeasonResultsParamsSchema, type ResultsSeasonResultsResponse, SeasonList, type SeasonListParams, SeasonListParamsSchema, type SeasonListResponse, SeasonRaceGuide, type SeasonRaceGuideParams, SeasonRaceGuideParamsSchema, type SeasonRaceGuideResponse, SeasonSpectatorSubsessionids, SeasonSpectatorSubsessionidsDetail, type SeasonSpectatorSubsessionidsDetailParams, SeasonSpectatorSubsessionidsDetailParamsSchema, type SeasonSpectatorSubsessionidsDetailResponse, type SeasonSpectatorSubsessionidsParams, SeasonSpectatorSubsessionidsParamsSchema, type SeasonSpectatorSubsessionidsResponse, SeriesAssets, type SeriesAssetsParams, SeriesAssetsParamsSchema, type SeriesAssetsResponse, SeriesGet, type SeriesGetParams, SeriesGetParamsSchema, type SeriesGetResponse, SeriesPastSeasons, type SeriesPastSeasonsParams, SeriesPastSeasonsParamsSchema, type SeriesPastSeasonsResponse, SeriesSeasonList, type SeriesSeasonListParams, SeriesSeasonListParamsSchema, type SeriesSeasonListResponse, SeriesSeasonSchedule, type SeriesSeasonScheduleParams, SeriesSeasonScheduleParamsSchema, type SeriesSeasonScheduleResponse, SeriesSeasons, type SeriesSeasonsParams, SeriesSeasonsParamsSchema, type SeriesSeasonsResponse, SeriesStatsSeries, type SeriesStatsSeriesParams, SeriesStatsSeriesParamsSchema, type SeriesStatsSeriesResponse, StatsMemberBests, type StatsMemberBestsParams, StatsMemberBestsParamsSchema, type StatsMemberBestsResponse, StatsMemberCareer, type StatsMemberCareerParams, StatsMemberCareerParamsSchema, type StatsMemberCareerResponse, StatsMemberDivision, type StatsMemberDivisionParams, StatsMemberDivisionParamsSchema, type StatsMemberDivisionResponse, StatsMemberRecap, type StatsMemberRecapParams, StatsMemberRecapParamsSchema, type StatsMemberRecapResponse, StatsMemberRecentRaces, type StatsMemberRecentRacesParams, StatsMemberRecentRacesParamsSchema, type StatsMemberRecentRacesResponse, StatsMemberSummary, type StatsMemberSummaryParams, StatsMemberSummaryParamsSchema, type StatsMemberSummaryResponse, StatsMemberYearly, type StatsMemberYearlyParams, StatsMemberYearlyParamsSchema, type StatsMemberYearlyResponse, StatsSeasonDriverStandings, type StatsSeasonDriverStandingsParams, StatsSeasonDriverStandingsParamsSchema, type StatsSeasonDriverStandingsResponse, StatsSeasonQualifyResults, type StatsSeasonQualifyResultsParams, StatsSeasonQualifyResultsParamsSchema, type StatsSeasonQualifyResultsResponse, StatsSeasonSupersessionStandings, type StatsSeasonSupersessionStandingsParams, StatsSeasonSupersessionStandingsParamsSchema, type StatsSeasonSupersessionStandingsResponse, StatsSeasonTeamStandings, type StatsSeasonTeamStandingsParams, StatsSeasonTeamStandingsParamsSchema, type StatsSeasonTeamStandingsResponse, StatsSeasonTtResults, type StatsSeasonTtResultsParams, StatsSeasonTtResultsParamsSchema, type StatsSeasonTtResultsResponse, StatsSeasonTtStandings, type StatsSeasonTtStandingsParams, StatsSeasonTtStandingsParamsSchema, type StatsSeasonTtStandingsResponse, StatsWorldRecords, type StatsWorldRecordsParams, StatsWorldRecordsParamsSchema, type StatsWorldRecordsResponse, TeamGet, type TeamGetParams, TeamGetParamsSchema, type TeamGetResponse, TeamMembership, type TeamMembershipParams, TeamMembershipParamsSchema, type TeamMembershipResponse, TimeAttackMemberSeasonResults, type TimeAttackMemberSeasonResultsParams, TimeAttackMemberSeasonResultsParamsSchema, type TimeAttackMemberSeasonResultsResponse, TokenRefreshError, type TokenResponse, TrackAssets, type TrackAssetsParams, TrackAssetsParamsSchema, type TrackAssetsResponse, TrackGet, type TrackGetParams, TrackGetParamsSchema, type TrackGetResponse, buildAuthorizationUrl, exchangeAuthorizationCode };
|