@rotesblatt/hex-tractor-data-api 2.2.0 → 2.4.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.
@@ -6,12 +6,12 @@ type LeagueDetails = {
6
6
  division: string;
7
7
  name?: string | undefined;
8
8
  lastUpdated: string;
9
- entries: Array<league_v4_LeagueItemDTO>;
9
+ entries: Array<LeagueItem>;
10
10
  };
11
- type league_v4_LeagueItemDTO = {
11
+ type LeagueItem = {
12
12
  freshBlood: boolean;
13
13
  wins: number;
14
- miniSeries?: league_v4_MiniSeriesDTO | undefined;
14
+ miniSeries?: LeagueMiniseries | undefined;
15
15
  inactive: boolean;
16
16
  veteran: boolean;
17
17
  hotStreak: boolean;
@@ -21,7 +21,7 @@ type league_v4_LeagueItemDTO = {
21
21
  puuid: string;
22
22
  summonerId?: string | undefined;
23
23
  };
24
- type league_v4_MiniSeriesDTO = {
24
+ type LeagueMiniseries = {
25
25
  losses: number;
26
26
  progress: string;
27
27
  target: number;
@@ -37,10 +37,10 @@ type AccountInfo = {
37
37
  summonerLevel: number;
38
38
  lastUpdated: string;
39
39
  };
40
- leagueEntries: Array<league_v4_LeagueEntryDTO>;
41
- currentGame?: spectator_v5_CurrentGameInfo | undefined;
40
+ leagueEntries: Array<LeagueEntry>;
41
+ currentGame?: SpectatorCurrentGameInfo | undefined;
42
42
  };
43
- type league_v4_LeagueEntryDTO = {
43
+ type LeagueEntry = {
44
44
  leagueId?: string | undefined;
45
45
  puuid: string;
46
46
  queueType: string;
@@ -53,10 +53,10 @@ type league_v4_LeagueEntryDTO = {
53
53
  veteran: boolean;
54
54
  freshBlood: boolean;
55
55
  inactive: boolean;
56
- miniSeries?: league_v4_MiniSeriesDTO | undefined;
56
+ miniSeries?: LeagueMiniseries | undefined;
57
57
  summonerId?: string | undefined;
58
58
  };
59
- type spectator_v5_CurrentGameInfo = {
59
+ type SpectatorCurrentGameInfo = {
60
60
  gameId: number;
61
61
  gameType: string;
62
62
  gameStartTime: number;
@@ -64,57 +64,50 @@ type spectator_v5_CurrentGameInfo = {
64
64
  gameLength: number;
65
65
  platformId: string;
66
66
  gameMode: string;
67
- bannedChampions: Array<spectator_v5_BannedChampion>;
67
+ bannedChampions: Array<SpectatorBannedChampions>;
68
68
  gameQueueConfigId?: number | undefined;
69
- observers: spectator_v5_Observer;
70
- participants: Array<spectator_v5_CurrentGameParticipant>;
69
+ observers: SpectatorObserver;
70
+ participants: Array<SpectatorCurrentGameParticipant>;
71
71
  };
72
- type spectator_v5_BannedChampion = {
72
+ type SpectatorBannedChampions = {
73
73
  pickTurn: number;
74
74
  championId: number;
75
75
  teamId: number;
76
76
  };
77
- type spectator_v5_Observer = {
77
+ type SpectatorObserver = {
78
78
  encryptionKey: string;
79
79
  };
80
- type spectator_v5_CurrentGameParticipant = {
80
+ type SpectatorCurrentGameParticipant = {
81
81
  championId: number;
82
- perks?: spectator_v5_Perks | undefined;
82
+ perks?: SpectatorPerks | undefined;
83
83
  profileIconId: number;
84
84
  bot: boolean;
85
85
  teamId: number;
86
86
  puuid?: (string | null) | undefined;
87
87
  spell1Id: number;
88
88
  spell2Id: number;
89
- gameCustomizationObjects: Array<spectator_v5_GameCustomizationObject>;
89
+ gameCustomizationObjects: Array<SpectatorGameCustomizationObject>;
90
90
  riotId?: string | undefined;
91
91
  };
92
- type spectator_v5_Perks = {
92
+ type SpectatorPerks = {
93
93
  perkIds: Array<number>;
94
94
  perkStyle: number;
95
95
  perkSubStyle: number;
96
96
  };
97
- type spectator_v5_GameCustomizationObject = {
97
+ type SpectatorGameCustomizationObject = {
98
98
  category: string;
99
99
  content: string;
100
100
  };
101
- type league_v4_LeagueListDTO = {
102
- leagueId?: string | undefined;
103
- entries: Array<league_v4_LeagueItemDTO>;
104
- tier: string;
105
- name?: string | undefined;
106
- queue: string;
101
+ type Match = {
102
+ metadata: MatchMetadata;
103
+ info: MatchInfo;
107
104
  };
108
- type match_v5_MatchDto = {
109
- metadata: match_v5_MetadataDto;
110
- info: match_v5_InfoDto;
111
- };
112
- type match_v5_MetadataDto = {
105
+ type MatchMetadata = {
113
106
  dataVersion: string;
114
107
  matchId: string;
115
108
  participants: Array<string>;
116
109
  };
117
- type match_v5_InfoDto = {
110
+ type MatchInfo = {
118
111
  endOfGameResult?: string | undefined;
119
112
  gameCreation: number;
120
113
  gameDuration: number;
@@ -126,14 +119,14 @@ type match_v5_InfoDto = {
126
119
  gameType: string;
127
120
  gameVersion: string;
128
121
  mapId: number;
129
- participants: Array<match_v5_ParticipantDto>;
122
+ participants: Array<MatchParticipant>;
130
123
  platformId: string;
131
- queueId: number;
132
- teams: Array<match_v5_TeamDto>;
124
+ queueId: QueueId;
125
+ teams: Array<MatchTeam>;
133
126
  tournamentCode?: string | undefined;
134
127
  gameModeMutators?: Array<string> | undefined;
135
128
  };
136
- type match_v5_ParticipantDto = {
129
+ type MatchParticipant = {
137
130
  allInPings?: number | undefined;
138
131
  assistMePings?: number | undefined;
139
132
  assists: number;
@@ -146,7 +139,7 @@ type match_v5_ParticipantDto = {
146
139
  commandPings?: number | undefined;
147
140
  championTransform: number;
148
141
  consumablesPurchased: number;
149
- challenges?: match_v5_ChallengesDto | undefined;
142
+ challenges?: MatchChallenges | undefined;
150
143
  damageDealtToBuildings?: number | undefined;
151
144
  damageDealtToObjectives: number;
152
145
  damageDealtToTurrets: number;
@@ -190,7 +183,7 @@ type match_v5_ParticipantDto = {
190
183
  magicDamageDealt: number;
191
184
  magicDamageDealtToChampions: number;
192
185
  magicDamageTaken: number;
193
- missions?: match_v5_MissionsDto | undefined;
186
+ missions?: MatchMissions | undefined;
194
187
  neutralMinionsKilled: number;
195
188
  needVisionPings?: number | undefined;
196
189
  nexusKills: number;
@@ -213,7 +206,7 @@ type match_v5_ParticipantDto = {
213
206
  playerScore10?: number | undefined;
214
207
  playerScore11?: number | undefined;
215
208
  pentaKills: number;
216
- perks: match_v5_PerksDto;
209
+ perks: MatchPerks;
217
210
  physicalDamageDealt: number;
218
211
  physicalDamageDealtToChampions: number;
219
212
  physicalDamageTaken: number;
@@ -283,7 +276,7 @@ type match_v5_ParticipantDto = {
283
276
  retreatPings?: number | undefined;
284
277
  championSkinId?: number | undefined;
285
278
  };
286
- type match_v5_ChallengesDto = Partial<{
279
+ type MatchChallenges = Partial<{
287
280
  "12AssistStreakCount": number;
288
281
  baronBuffGoldAdvantageOverThreshold: number;
289
282
  controlWardTimeCoverageInRiverOrEnemyHalf: number;
@@ -432,7 +425,7 @@ type match_v5_ChallengesDto = Partial<{
432
425
  wardTakedownsBefore20M: number;
433
426
  HealFromMapSources: number;
434
427
  }>;
435
- type match_v5_MissionsDto = Partial<{
428
+ type MatchMissions = Partial<{
436
429
  playerScore0: number;
437
430
  playerScore1: number;
438
431
  playerScore2: number;
@@ -446,96 +439,97 @@ type match_v5_MissionsDto = Partial<{
446
439
  playerScore10: number;
447
440
  playerScore11: number;
448
441
  }>;
449
- type match_v5_PerksDto = {
450
- statPerks: match_v5_PerkStatsDto;
451
- styles: Array<match_v5_PerkStyleDto>;
442
+ type MatchPerks = {
443
+ statPerks: MatchPerkStats;
444
+ styles: Array<MatchPerkStyle>;
452
445
  };
453
- type match_v5_PerkStatsDto = {
446
+ type MatchPerkStats = {
454
447
  defense: number;
455
448
  flex: number;
456
449
  offense: number;
457
450
  };
458
- type match_v5_PerkStyleDto = {
451
+ type MatchPerkStyle = {
459
452
  description: string;
460
- selections: Array<match_v5_PerkStyleSelectionDto>;
453
+ selections: Array<MatchPerkStyleSelection>;
461
454
  style: number;
462
455
  };
463
- type match_v5_PerkStyleSelectionDto = {
456
+ type MatchPerkStyleSelection = {
464
457
  perk: number;
465
458
  var1: number;
466
459
  var2: number;
467
460
  var3: number;
468
461
  };
469
- type match_v5_TeamDto = {
470
- bans: Array<match_v5_BanDto>;
471
- objectives: match_v5_ObjectivesDto;
462
+ type QueueId = 0 | 2 | 4 | 6 | 7 | 8 | 9 | 14 | 16 | 17 | 25 | 31 | 32 | 33 | 41 | 42 | 52 | 61 | 65 | 67 | 70 | 72 | 73 | 75 | 76 | 78 | 83 | 91 | 92 | 93 | 96 | 98 | 100 | 300 | 310 | 313 | 315 | 317 | 318 | 325 | 400 | 410 | 420 | 430 | 440 | 450 | 460 | 470 | 480 | 490 | 600 | 610 | 700 | 720 | 800 | 810 | 820 | 830 | 840 | 850 | 870 | 880 | 890 | 900 | 910 | 920 | 940 | 950 | 960 | 980 | 990 | 1000 | 1010 | 1020 | 1030 | 1040 | 1050 | 1060 | 1070 | 1090 | 1100 | 1110 | 1111 | 1200 | 1210 | 1300 | 1400 | 1700 | 1710 | 1810 | 1820 | 1830 | 1840 | 1900 | 2000 | 2010 | 2020 | 2300 | 2400;
463
+ type MatchTeam = {
464
+ bans: Array<MatchBan>;
465
+ objectives: MatchObjectives;
472
466
  teamId: number;
473
467
  win: boolean;
474
- feats?: match_v5_FeatsDto | undefined;
468
+ feats?: MatchFeats | undefined;
475
469
  };
476
- type match_v5_BanDto = {
470
+ type MatchBan = {
477
471
  championId: number;
478
472
  pickTurn: number;
479
473
  };
480
- type match_v5_ObjectivesDto = {
481
- baron: match_v5_ObjectiveDto;
482
- champion: match_v5_ObjectiveDto;
483
- dragon: match_v5_ObjectiveDto;
484
- horde?: match_v5_ObjectiveDto | undefined;
485
- inhibitor: match_v5_ObjectiveDto;
486
- riftHerald: match_v5_ObjectiveDto;
487
- tower: match_v5_ObjectiveDto;
488
- atakhan?: match_v5_ObjectiveDto | undefined;
474
+ type MatchObjectives = {
475
+ baron: MatchObjective;
476
+ champion: MatchObjective;
477
+ dragon: MatchObjective;
478
+ horde?: MatchObjective | undefined;
479
+ inhibitor: MatchObjective;
480
+ riftHerald: MatchObjective;
481
+ tower: MatchObjective;
482
+ atakhan?: MatchObjective | undefined;
489
483
  };
490
- type match_v5_ObjectiveDto = {
484
+ type MatchObjective = {
491
485
  first: boolean;
492
486
  kills: number;
493
487
  };
494
- type match_v5_FeatsDto = Partial<{
495
- EPIC_MONSTER_KILL: match_v5_FeatDto;
496
- FIRST_BLOOD: match_v5_FeatDto;
497
- FIRST_TURRET: match_v5_FeatDto;
488
+ type MatchFeats = Partial<{
489
+ EPIC_MONSTER_KILL: MatchFeat;
490
+ FIRST_BLOOD: MatchFeat;
491
+ FIRST_TURRET: MatchFeat;
498
492
  }>;
499
- type match_v5_FeatDto = Partial<{
493
+ type MatchFeat = Partial<{
500
494
  featState: number;
501
495
  }>;
502
- declare const league_v4_MiniSeriesDTO: z.ZodType<league_v4_MiniSeriesDTO>;
503
- declare const league_v4_LeagueEntryDTO: z.ZodType<league_v4_LeagueEntryDTO>;
504
- declare const spectator_v5_BannedChampion: z.ZodType<spectator_v5_BannedChampion>;
505
- declare const spectator_v5_Observer: z.ZodType<spectator_v5_Observer>;
506
- declare const spectator_v5_Perks: z.ZodType<spectator_v5_Perks>;
507
- declare const spectator_v5_GameCustomizationObject: z.ZodType<spectator_v5_GameCustomizationObject>;
508
- declare const spectator_v5_CurrentGameParticipant: z.ZodType<spectator_v5_CurrentGameParticipant>;
509
- declare const spectator_v5_CurrentGameInfo: z.ZodType<spectator_v5_CurrentGameInfo>;
496
+ declare const LeagueMiniseries: z.ZodType<LeagueMiniseries>;
497
+ declare const LeagueEntry: z.ZodType<LeagueEntry>;
498
+ declare const SpectatorBannedChampions: z.ZodType<SpectatorBannedChampions>;
499
+ declare const SpectatorObserver: z.ZodType<SpectatorObserver>;
500
+ declare const SpectatorPerks: z.ZodType<SpectatorPerks>;
501
+ declare const SpectatorGameCustomizationObject: z.ZodType<SpectatorGameCustomizationObject>;
502
+ declare const SpectatorCurrentGameParticipant: z.ZodType<SpectatorCurrentGameParticipant>;
503
+ declare const SpectatorCurrentGameInfo: z.ZodType<SpectatorCurrentGameInfo>;
510
504
  declare const AccountInfo: z.ZodType<AccountInfo>;
511
- declare const league_v4_LeagueItemDTO: z.ZodType<league_v4_LeagueItemDTO>;
505
+ declare const LeagueItem: z.ZodType<LeagueItem>;
512
506
  declare const LeagueDetails: z.ZodType<LeagueDetails>;
513
- declare const match_v5_MetadataDto: z.ZodType<match_v5_MetadataDto>;
514
- declare const match_v5_ChallengesDto: z.ZodType<match_v5_ChallengesDto>;
515
- declare const match_v5_MissionsDto: z.ZodType<match_v5_MissionsDto>;
516
- declare const match_v5_PerkStatsDto: z.ZodType<match_v5_PerkStatsDto>;
517
- declare const match_v5_PerkStyleSelectionDto: z.ZodType<match_v5_PerkStyleSelectionDto>;
518
- declare const match_v5_PerkStyleDto: z.ZodType<match_v5_PerkStyleDto>;
519
- declare const match_v5_PerksDto: z.ZodType<match_v5_PerksDto>;
520
- declare const match_v5_ParticipantDto: z.ZodType<match_v5_ParticipantDto>;
521
- declare const match_v5_BanDto: z.ZodType<match_v5_BanDto>;
522
- declare const match_v5_ObjectiveDto: z.ZodType<match_v5_ObjectiveDto>;
523
- declare const match_v5_ObjectivesDto: z.ZodType<match_v5_ObjectivesDto>;
524
- declare const match_v5_FeatDto: z.ZodType<match_v5_FeatDto>;
525
- declare const match_v5_FeatsDto: z.ZodType<match_v5_FeatsDto>;
526
- declare const match_v5_TeamDto: z.ZodType<match_v5_TeamDto>;
527
- declare const match_v5_InfoDto: z.ZodType<match_v5_InfoDto>;
528
- declare const match_v5_MatchDto: z.ZodType<match_v5_MatchDto>;
529
- declare const league_v4_LeagueListDTO: z.ZodType<league_v4_LeagueListDTO>;
507
+ declare const MatchMetadata: z.ZodType<MatchMetadata>;
508
+ declare const MatchChallenges: z.ZodType<MatchChallenges>;
509
+ declare const MatchMissions: z.ZodType<MatchMissions>;
510
+ declare const MatchPerkStats: z.ZodType<MatchPerkStats>;
511
+ declare const MatchPerkStyleSelection: z.ZodType<MatchPerkStyleSelection>;
512
+ declare const MatchPerkStyle: z.ZodType<MatchPerkStyle>;
513
+ declare const MatchPerks: z.ZodType<MatchPerks>;
514
+ declare const MatchParticipant: z.ZodType<MatchParticipant>;
515
+ declare const QueueId: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<14>, z.ZodLiteral<16>, z.ZodLiteral<17>, z.ZodLiteral<25>, z.ZodLiteral<31>, z.ZodLiteral<32>, z.ZodLiteral<33>, z.ZodLiteral<41>, z.ZodLiteral<42>, z.ZodLiteral<52>, z.ZodLiteral<61>, z.ZodLiteral<65>, z.ZodLiteral<67>, z.ZodLiteral<70>, z.ZodLiteral<72>, z.ZodLiteral<73>, z.ZodLiteral<75>, z.ZodLiteral<76>, z.ZodLiteral<78>, z.ZodLiteral<83>, z.ZodLiteral<91>, z.ZodLiteral<92>, z.ZodLiteral<93>, z.ZodLiteral<96>, z.ZodLiteral<98>, z.ZodLiteral<100>, z.ZodLiteral<300>, z.ZodLiteral<310>, z.ZodLiteral<313>, z.ZodLiteral<315>, z.ZodLiteral<317>, z.ZodLiteral<318>, z.ZodLiteral<325>, z.ZodLiteral<400>, z.ZodLiteral<410>, z.ZodLiteral<420>, z.ZodLiteral<430>, z.ZodLiteral<440>, z.ZodLiteral<450>, z.ZodLiteral<460>, z.ZodLiteral<470>, z.ZodLiteral<480>, z.ZodLiteral<490>, z.ZodLiteral<600>, z.ZodLiteral<610>, z.ZodLiteral<700>, z.ZodLiteral<720>, z.ZodLiteral<800>, z.ZodLiteral<810>, z.ZodLiteral<820>, z.ZodLiteral<830>, z.ZodLiteral<840>, z.ZodLiteral<850>, z.ZodLiteral<870>, z.ZodLiteral<880>, z.ZodLiteral<890>, z.ZodLiteral<900>, z.ZodLiteral<910>, z.ZodLiteral<920>, z.ZodLiteral<940>, z.ZodLiteral<950>, z.ZodLiteral<960>, z.ZodLiteral<980>, z.ZodLiteral<990>, z.ZodLiteral<1000>, z.ZodLiteral<1010>, z.ZodLiteral<1020>, z.ZodLiteral<1030>, z.ZodLiteral<1040>, z.ZodLiteral<1050>, z.ZodLiteral<1060>, z.ZodLiteral<1070>, z.ZodLiteral<1090>, z.ZodLiteral<1100>, z.ZodLiteral<1110>, z.ZodLiteral<1111>, z.ZodLiteral<1200>, z.ZodLiteral<1210>, z.ZodLiteral<1300>, z.ZodLiteral<1400>, z.ZodLiteral<1700>, z.ZodLiteral<1710>, z.ZodLiteral<1810>, z.ZodLiteral<1820>, z.ZodLiteral<1830>, z.ZodLiteral<1840>, z.ZodLiteral<1900>, z.ZodLiteral<2000>, z.ZodLiteral<2010>, z.ZodLiteral<2020>, z.ZodLiteral<2300>, z.ZodLiteral<2400>]>;
516
+ declare const MatchBan: z.ZodType<MatchBan>;
517
+ declare const MatchObjective: z.ZodType<MatchObjective>;
518
+ declare const MatchObjectives: z.ZodType<MatchObjectives>;
519
+ declare const MatchFeat: z.ZodType<MatchFeat>;
520
+ declare const MatchFeats: z.ZodType<MatchFeats>;
521
+ declare const MatchTeam: z.ZodType<MatchTeam>;
522
+ declare const MatchInfo: z.ZodType<MatchInfo>;
523
+ declare const Match: z.ZodType<Match>;
530
524
  export declare const schemas: {
531
- league_v4_MiniSeriesDTO: z.ZodType<league_v4_MiniSeriesDTO, z.ZodTypeDef, league_v4_MiniSeriesDTO>;
532
- league_v4_LeagueEntryDTO: z.ZodType<league_v4_LeagueEntryDTO, z.ZodTypeDef, league_v4_LeagueEntryDTO>;
533
- spectator_v5_BannedChampion: z.ZodType<spectator_v5_BannedChampion, z.ZodTypeDef, spectator_v5_BannedChampion>;
534
- spectator_v5_Observer: z.ZodType<spectator_v5_Observer, z.ZodTypeDef, spectator_v5_Observer>;
535
- spectator_v5_Perks: z.ZodType<spectator_v5_Perks, z.ZodTypeDef, spectator_v5_Perks>;
536
- spectator_v5_GameCustomizationObject: z.ZodType<spectator_v5_GameCustomizationObject, z.ZodTypeDef, spectator_v5_GameCustomizationObject>;
537
- spectator_v5_CurrentGameParticipant: z.ZodType<spectator_v5_CurrentGameParticipant, z.ZodTypeDef, spectator_v5_CurrentGameParticipant>;
538
- spectator_v5_CurrentGameInfo: z.ZodType<spectator_v5_CurrentGameInfo, z.ZodTypeDef, spectator_v5_CurrentGameInfo>;
525
+ LeagueMiniseries: z.ZodType<LeagueMiniseries, z.ZodTypeDef, LeagueMiniseries>;
526
+ LeagueEntry: z.ZodType<LeagueEntry, z.ZodTypeDef, LeagueEntry>;
527
+ SpectatorBannedChampions: z.ZodType<SpectatorBannedChampions, z.ZodTypeDef, SpectatorBannedChampions>;
528
+ SpectatorObserver: z.ZodType<SpectatorObserver, z.ZodTypeDef, SpectatorObserver>;
529
+ SpectatorPerks: z.ZodType<SpectatorPerks, z.ZodTypeDef, SpectatorPerks>;
530
+ SpectatorGameCustomizationObject: z.ZodType<SpectatorGameCustomizationObject, z.ZodTypeDef, SpectatorGameCustomizationObject>;
531
+ SpectatorCurrentGameParticipant: z.ZodType<SpectatorCurrentGameParticipant, z.ZodTypeDef, SpectatorCurrentGameParticipant>;
532
+ SpectatorCurrentGameInfo: z.ZodType<SpectatorCurrentGameInfo, z.ZodTypeDef, SpectatorCurrentGameInfo>;
539
533
  AccountInfo: z.ZodType<AccountInfo, z.ZodTypeDef, AccountInfo>;
540
534
  validationError: z.ZodObject<{
541
535
  message: z.ZodString;
@@ -618,10 +612,10 @@ export declare const schemas: {
618
612
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
619
613
  message: z.ZodString;
620
614
  }, z.ZodTypeAny, "passthrough">>;
621
- league_v4_LeagueItemDTO: z.ZodType<league_v4_LeagueItemDTO, z.ZodTypeDef, league_v4_LeagueItemDTO>;
615
+ LeagueItem: z.ZodType<LeagueItem, z.ZodTypeDef, LeagueItem>;
622
616
  LeagueDetails: z.ZodType<LeagueDetails, z.ZodTypeDef, LeagueDetails>;
623
- match_v5_MetadataDto: z.ZodType<match_v5_MetadataDto, z.ZodTypeDef, match_v5_MetadataDto>;
624
- match_v5_ChallengesDto: z.ZodType<Partial<{
617
+ MatchMetadata: z.ZodType<MatchMetadata, z.ZodTypeDef, MatchMetadata>;
618
+ MatchChallenges: z.ZodType<Partial<{
625
619
  "12AssistStreakCount": number;
626
620
  baronBuffGoldAdvantageOverThreshold: number;
627
621
  controlWardTimeCoverageInRiverOrEnemyHalf: number;
@@ -918,7 +912,7 @@ export declare const schemas: {
918
912
  wardTakedownsBefore20M: number;
919
913
  HealFromMapSources: number;
920
914
  }>>;
921
- match_v5_MissionsDto: z.ZodType<Partial<{
915
+ MatchMissions: z.ZodType<Partial<{
922
916
  playerScore0: number;
923
917
  playerScore1: number;
924
918
  playerScore2: number;
@@ -945,32 +939,37 @@ export declare const schemas: {
945
939
  playerScore10: number;
946
940
  playerScore11: number;
947
941
  }>>;
948
- match_v5_PerkStatsDto: z.ZodType<match_v5_PerkStatsDto, z.ZodTypeDef, match_v5_PerkStatsDto>;
949
- match_v5_PerkStyleSelectionDto: z.ZodType<match_v5_PerkStyleSelectionDto, z.ZodTypeDef, match_v5_PerkStyleSelectionDto>;
950
- match_v5_PerkStyleDto: z.ZodType<match_v5_PerkStyleDto, z.ZodTypeDef, match_v5_PerkStyleDto>;
951
- match_v5_PerksDto: z.ZodType<match_v5_PerksDto, z.ZodTypeDef, match_v5_PerksDto>;
952
- match_v5_ParticipantDto: z.ZodType<match_v5_ParticipantDto, z.ZodTypeDef, match_v5_ParticipantDto>;
953
- match_v5_BanDto: z.ZodType<match_v5_BanDto, z.ZodTypeDef, match_v5_BanDto>;
954
- match_v5_ObjectiveDto: z.ZodType<match_v5_ObjectiveDto, z.ZodTypeDef, match_v5_ObjectiveDto>;
955
- match_v5_ObjectivesDto: z.ZodType<match_v5_ObjectivesDto, z.ZodTypeDef, match_v5_ObjectivesDto>;
956
- match_v5_FeatDto: z.ZodType<Partial<{
942
+ MatchPerkStats: z.ZodType<MatchPerkStats, z.ZodTypeDef, MatchPerkStats>;
943
+ MatchPerkStyleSelection: z.ZodType<MatchPerkStyleSelection, z.ZodTypeDef, MatchPerkStyleSelection>;
944
+ MatchPerkStyle: z.ZodType<MatchPerkStyle, z.ZodTypeDef, MatchPerkStyle>;
945
+ MatchPerks: z.ZodType<MatchPerks, z.ZodTypeDef, MatchPerks>;
946
+ MatchParticipant: z.ZodType<MatchParticipant, z.ZodTypeDef, MatchParticipant>;
947
+ QueueId: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<14>, z.ZodLiteral<16>, z.ZodLiteral<17>, z.ZodLiteral<25>, z.ZodLiteral<31>, z.ZodLiteral<32>, z.ZodLiteral<33>, z.ZodLiteral<41>, z.ZodLiteral<42>, z.ZodLiteral<52>, z.ZodLiteral<61>, z.ZodLiteral<65>, z.ZodLiteral<67>, z.ZodLiteral<70>, z.ZodLiteral<72>, z.ZodLiteral<73>, z.ZodLiteral<75>, z.ZodLiteral<76>, z.ZodLiteral<78>, z.ZodLiteral<83>, z.ZodLiteral<91>, z.ZodLiteral<92>, z.ZodLiteral<93>, z.ZodLiteral<96>, z.ZodLiteral<98>, z.ZodLiteral<100>, z.ZodLiteral<300>, z.ZodLiteral<310>, z.ZodLiteral<313>, z.ZodLiteral<315>, z.ZodLiteral<317>, z.ZodLiteral<318>, z.ZodLiteral<325>, z.ZodLiteral<400>, z.ZodLiteral<410>, z.ZodLiteral<420>, z.ZodLiteral<430>, z.ZodLiteral<440>, z.ZodLiteral<450>, z.ZodLiteral<460>, z.ZodLiteral<470>, z.ZodLiteral<480>, z.ZodLiteral<490>, z.ZodLiteral<600>, z.ZodLiteral<610>, z.ZodLiteral<700>, z.ZodLiteral<720>, z.ZodLiteral<800>, z.ZodLiteral<810>, z.ZodLiteral<820>, z.ZodLiteral<830>, z.ZodLiteral<840>, z.ZodLiteral<850>, z.ZodLiteral<870>, z.ZodLiteral<880>, z.ZodLiteral<890>, z.ZodLiteral<900>, z.ZodLiteral<910>, z.ZodLiteral<920>, z.ZodLiteral<940>, z.ZodLiteral<950>, z.ZodLiteral<960>, z.ZodLiteral<980>, z.ZodLiteral<990>, z.ZodLiteral<1000>, z.ZodLiteral<1010>, z.ZodLiteral<1020>, z.ZodLiteral<1030>, z.ZodLiteral<1040>, z.ZodLiteral<1050>, z.ZodLiteral<1060>, z.ZodLiteral<1070>, z.ZodLiteral<1090>, z.ZodLiteral<1100>, z.ZodLiteral<1110>, z.ZodLiteral<1111>, z.ZodLiteral<1200>, z.ZodLiteral<1210>, z.ZodLiteral<1300>, z.ZodLiteral<1400>, z.ZodLiteral<1700>, z.ZodLiteral<1710>, z.ZodLiteral<1810>, z.ZodLiteral<1820>, z.ZodLiteral<1830>, z.ZodLiteral<1840>, z.ZodLiteral<1900>, z.ZodLiteral<2000>, z.ZodLiteral<2010>, z.ZodLiteral<2020>, z.ZodLiteral<2300>, z.ZodLiteral<2400>]>;
948
+ MatchBan: z.ZodType<MatchBan, z.ZodTypeDef, MatchBan>;
949
+ MatchObjective: z.ZodType<MatchObjective, z.ZodTypeDef, MatchObjective>;
950
+ MatchObjectives: z.ZodType<MatchObjectives, z.ZodTypeDef, MatchObjectives>;
951
+ MatchFeat: z.ZodType<Partial<{
957
952
  featState: number;
958
953
  }>, z.ZodTypeDef, Partial<{
959
954
  featState: number;
960
955
  }>>;
961
- match_v5_FeatsDto: z.ZodType<Partial<{
962
- EPIC_MONSTER_KILL: match_v5_FeatDto;
963
- FIRST_BLOOD: match_v5_FeatDto;
964
- FIRST_TURRET: match_v5_FeatDto;
956
+ MatchFeats: z.ZodType<Partial<{
957
+ EPIC_MONSTER_KILL: MatchFeat;
958
+ FIRST_BLOOD: MatchFeat;
959
+ FIRST_TURRET: MatchFeat;
965
960
  }>, z.ZodTypeDef, Partial<{
966
- EPIC_MONSTER_KILL: match_v5_FeatDto;
967
- FIRST_BLOOD: match_v5_FeatDto;
968
- FIRST_TURRET: match_v5_FeatDto;
961
+ EPIC_MONSTER_KILL: MatchFeat;
962
+ FIRST_BLOOD: MatchFeat;
963
+ FIRST_TURRET: MatchFeat;
969
964
  }>>;
970
- match_v5_TeamDto: z.ZodType<match_v5_TeamDto, z.ZodTypeDef, match_v5_TeamDto>;
971
- match_v5_InfoDto: z.ZodType<match_v5_InfoDto, z.ZodTypeDef, match_v5_InfoDto>;
972
- match_v5_MatchDto: z.ZodType<match_v5_MatchDto, z.ZodTypeDef, match_v5_MatchDto>;
973
- league_v4_LeagueListDTO: z.ZodType<league_v4_LeagueListDTO, z.ZodTypeDef, league_v4_LeagueListDTO>;
965
+ MatchTeam: z.ZodType<MatchTeam, z.ZodTypeDef, MatchTeam>;
966
+ MatchInfo: z.ZodType<MatchInfo, z.ZodTypeDef, MatchInfo>;
967
+ Match: z.ZodType<Match, z.ZodTypeDef, Match>;
968
+ Region: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
969
+ Platform: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
970
+ RankedQueue: z.ZodEnum<["RANKED_SOLO_5x5", "RANKED_FLEX_SR", "RANKED_FLEX_TT"]>;
971
+ RankedTier: z.ZodEnum<["IRON", "BRONZE", "SILVER", "GOLD", "PLATINUM", "EMERALD", "DIAMOND", "MASTER", "GRANDMASTER", "CHALLENGER"]>;
972
+ RankedDivision: z.ZodEnum<["I", "II", "III", "IV"]>;
974
973
  };
975
974
  export declare const api: import("@zodios/core").ZodiosInstance<[{
976
975
  method: "get";
@@ -981,7 +980,7 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
981
980
  parameters: [{
982
981
  name: "region";
983
982
  type: "Path";
984
- schema: z.ZodString;
983
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
985
984
  }, {
986
985
  name: "puuid";
987
986
  type: "Path";
@@ -1088,7 +1087,7 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1088
1087
  parameters: [{
1089
1088
  name: "region";
1090
1089
  type: "Path";
1091
- schema: z.ZodString;
1090
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
1092
1091
  }, {
1093
1092
  name: "summonerName";
1094
1093
  type: "Path";
@@ -1199,19 +1198,19 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1199
1198
  parameters: [{
1200
1199
  name: "region";
1201
1200
  type: "Path";
1202
- schema: z.ZodString;
1201
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
1203
1202
  }, {
1204
1203
  name: "queue";
1205
1204
  type: "Path";
1206
- schema: z.ZodString;
1205
+ schema: z.ZodEnum<["RANKED_SOLO_5x5", "RANKED_FLEX_SR", "RANKED_FLEX_TT"]>;
1207
1206
  }, {
1208
1207
  name: "tier";
1209
1208
  type: "Path";
1210
- schema: z.ZodString;
1209
+ schema: z.ZodEnum<["IRON", "BRONZE", "SILVER", "GOLD", "PLATINUM", "EMERALD", "DIAMOND", "MASTER", "GRANDMASTER", "CHALLENGER"]>;
1211
1210
  }, {
1212
1211
  name: "division";
1213
1212
  type: "Path";
1214
- schema: z.ZodString;
1213
+ schema: z.ZodEnum<["I", "II", "III", "IV"]>;
1215
1214
  }, {
1216
1215
  name: "count";
1217
1216
  type: "Query";
@@ -1308,7 +1307,7 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1308
1307
  parameters: [{
1309
1308
  name: "region";
1310
1309
  type: "Path";
1311
- schema: z.ZodString;
1310
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
1312
1311
  }, {
1313
1312
  name: "puuid";
1314
1313
  type: "Path";
@@ -1324,9 +1323,9 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1324
1323
  }, {
1325
1324
  name: "queueId";
1326
1325
  type: "Query";
1327
- schema: z.ZodOptional<z.ZodNumber>;
1326
+ schema: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<14>, z.ZodLiteral<16>, z.ZodLiteral<17>, z.ZodLiteral<25>, z.ZodLiteral<31>, z.ZodLiteral<32>, z.ZodLiteral<33>, z.ZodLiteral<41>, z.ZodLiteral<42>, z.ZodLiteral<52>, z.ZodLiteral<61>, z.ZodLiteral<65>, z.ZodLiteral<67>, z.ZodLiteral<70>, z.ZodLiteral<72>, z.ZodLiteral<73>, z.ZodLiteral<75>, z.ZodLiteral<76>, z.ZodLiteral<78>, z.ZodLiteral<83>, z.ZodLiteral<91>, z.ZodLiteral<92>, z.ZodLiteral<93>, z.ZodLiteral<96>, z.ZodLiteral<98>, z.ZodLiteral<100>, z.ZodLiteral<300>, z.ZodLiteral<310>, z.ZodLiteral<313>, z.ZodLiteral<315>, z.ZodLiteral<317>, z.ZodLiteral<318>, z.ZodLiteral<325>, z.ZodLiteral<400>, z.ZodLiteral<410>, z.ZodLiteral<420>, z.ZodLiteral<430>, z.ZodLiteral<440>, z.ZodLiteral<450>, z.ZodLiteral<460>, z.ZodLiteral<470>, z.ZodLiteral<480>, z.ZodLiteral<490>, z.ZodLiteral<600>, z.ZodLiteral<610>, z.ZodLiteral<700>, z.ZodLiteral<720>, z.ZodLiteral<800>, z.ZodLiteral<810>, z.ZodLiteral<820>, z.ZodLiteral<830>, z.ZodLiteral<840>, z.ZodLiteral<850>, z.ZodLiteral<870>, z.ZodLiteral<880>, z.ZodLiteral<890>, z.ZodLiteral<900>, z.ZodLiteral<910>, z.ZodLiteral<920>, z.ZodLiteral<940>, z.ZodLiteral<950>, z.ZodLiteral<960>, z.ZodLiteral<980>, z.ZodLiteral<990>, z.ZodLiteral<1000>, z.ZodLiteral<1010>, z.ZodLiteral<1020>, z.ZodLiteral<1030>, z.ZodLiteral<1040>, z.ZodLiteral<1050>, z.ZodLiteral<1060>, z.ZodLiteral<1070>, z.ZodLiteral<1090>, z.ZodLiteral<1100>, z.ZodLiteral<1110>, z.ZodLiteral<1111>, z.ZodLiteral<1200>, z.ZodLiteral<1210>, z.ZodLiteral<1300>, z.ZodLiteral<1400>, z.ZodLiteral<1700>, z.ZodLiteral<1710>, z.ZodLiteral<1810>, z.ZodLiteral<1820>, z.ZodLiteral<1830>, z.ZodLiteral<1840>, z.ZodLiteral<1900>, z.ZodLiteral<2000>, z.ZodLiteral<2010>, z.ZodLiteral<2020>, z.ZodLiteral<2300>, z.ZodLiteral<2400>]>>;
1328
1327
  }];
1329
- response: z.ZodArray<z.ZodType<match_v5_MatchDto, z.ZodTypeDef, match_v5_MatchDto>, "many">;
1328
+ response: z.ZodArray<z.ZodType<Match, z.ZodTypeDef, Match>, "many">;
1330
1329
  errors: [{
1331
1330
  status: 400;
1332
1331
  description: string;
@@ -1427,7 +1426,7 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1427
1426
  parameters: [{
1428
1427
  name: "region";
1429
1428
  type: "Path";
1430
- schema: z.ZodString;
1429
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
1431
1430
  }, {
1432
1431
  name: "puuid";
1433
1432
  type: "Path";
@@ -1542,13 +1541,13 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
1542
1541
  parameters: [{
1543
1542
  name: "region";
1544
1543
  type: "Path";
1545
- schema: z.ZodString;
1544
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
1546
1545
  }, {
1547
1546
  name: "matchId";
1548
1547
  type: "Path";
1549
1548
  schema: z.ZodString;
1550
1549
  }];
1551
- response: z.ZodType<match_v5_MatchDto, z.ZodTypeDef, match_v5_MatchDto>;
1550
+ response: z.ZodType<Match, z.ZodTypeDef, Match>;
1552
1551
  errors: [{
1553
1552
  status: 400;
1554
1553
  description: string;
@@ -1650,7 +1649,7 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
1650
1649
  parameters: [{
1651
1650
  name: "region";
1652
1651
  type: "Path";
1653
- schema: z.ZodString;
1652
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
1654
1653
  }, {
1655
1654
  name: "puuid";
1656
1655
  type: "Path";
@@ -1757,7 +1756,7 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
1757
1756
  parameters: [{
1758
1757
  name: "region";
1759
1758
  type: "Path";
1760
- schema: z.ZodString;
1759
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
1761
1760
  }, {
1762
1761
  name: "summonerName";
1763
1762
  type: "Path";
@@ -1868,19 +1867,19 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
1868
1867
  parameters: [{
1869
1868
  name: "region";
1870
1869
  type: "Path";
1871
- schema: z.ZodString;
1870
+ schema: z.ZodEnum<["br1", "euw1", "na1", "eun1", "kr", "jp1", "la1", "la2", "oc1", "tr1", "ru", "ph2", "sg2", "th2", "tw2", "vn2"]>;
1872
1871
  }, {
1873
1872
  name: "queue";
1874
1873
  type: "Path";
1875
- schema: z.ZodString;
1874
+ schema: z.ZodEnum<["RANKED_SOLO_5x5", "RANKED_FLEX_SR", "RANKED_FLEX_TT"]>;
1876
1875
  }, {
1877
1876
  name: "tier";
1878
1877
  type: "Path";
1879
- schema: z.ZodString;
1878
+ schema: z.ZodEnum<["IRON", "BRONZE", "SILVER", "GOLD", "PLATINUM", "EMERALD", "DIAMOND", "MASTER", "GRANDMASTER", "CHALLENGER"]>;
1880
1879
  }, {
1881
1880
  name: "division";
1882
1881
  type: "Path";
1883
- schema: z.ZodString;
1882
+ schema: z.ZodEnum<["I", "II", "III", "IV"]>;
1884
1883
  }, {
1885
1884
  name: "count";
1886
1885
  type: "Query";
@@ -1977,7 +1976,7 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
1977
1976
  parameters: [{
1978
1977
  name: "region";
1979
1978
  type: "Path";
1980
- schema: z.ZodString;
1979
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
1981
1980
  }, {
1982
1981
  name: "puuid";
1983
1982
  type: "Path";
@@ -1993,9 +1992,9 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
1993
1992
  }, {
1994
1993
  name: "queueId";
1995
1994
  type: "Query";
1996
- schema: z.ZodOptional<z.ZodNumber>;
1995
+ schema: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<14>, z.ZodLiteral<16>, z.ZodLiteral<17>, z.ZodLiteral<25>, z.ZodLiteral<31>, z.ZodLiteral<32>, z.ZodLiteral<33>, z.ZodLiteral<41>, z.ZodLiteral<42>, z.ZodLiteral<52>, z.ZodLiteral<61>, z.ZodLiteral<65>, z.ZodLiteral<67>, z.ZodLiteral<70>, z.ZodLiteral<72>, z.ZodLiteral<73>, z.ZodLiteral<75>, z.ZodLiteral<76>, z.ZodLiteral<78>, z.ZodLiteral<83>, z.ZodLiteral<91>, z.ZodLiteral<92>, z.ZodLiteral<93>, z.ZodLiteral<96>, z.ZodLiteral<98>, z.ZodLiteral<100>, z.ZodLiteral<300>, z.ZodLiteral<310>, z.ZodLiteral<313>, z.ZodLiteral<315>, z.ZodLiteral<317>, z.ZodLiteral<318>, z.ZodLiteral<325>, z.ZodLiteral<400>, z.ZodLiteral<410>, z.ZodLiteral<420>, z.ZodLiteral<430>, z.ZodLiteral<440>, z.ZodLiteral<450>, z.ZodLiteral<460>, z.ZodLiteral<470>, z.ZodLiteral<480>, z.ZodLiteral<490>, z.ZodLiteral<600>, z.ZodLiteral<610>, z.ZodLiteral<700>, z.ZodLiteral<720>, z.ZodLiteral<800>, z.ZodLiteral<810>, z.ZodLiteral<820>, z.ZodLiteral<830>, z.ZodLiteral<840>, z.ZodLiteral<850>, z.ZodLiteral<870>, z.ZodLiteral<880>, z.ZodLiteral<890>, z.ZodLiteral<900>, z.ZodLiteral<910>, z.ZodLiteral<920>, z.ZodLiteral<940>, z.ZodLiteral<950>, z.ZodLiteral<960>, z.ZodLiteral<980>, z.ZodLiteral<990>, z.ZodLiteral<1000>, z.ZodLiteral<1010>, z.ZodLiteral<1020>, z.ZodLiteral<1030>, z.ZodLiteral<1040>, z.ZodLiteral<1050>, z.ZodLiteral<1060>, z.ZodLiteral<1070>, z.ZodLiteral<1090>, z.ZodLiteral<1100>, z.ZodLiteral<1110>, z.ZodLiteral<1111>, z.ZodLiteral<1200>, z.ZodLiteral<1210>, z.ZodLiteral<1300>, z.ZodLiteral<1400>, z.ZodLiteral<1700>, z.ZodLiteral<1710>, z.ZodLiteral<1810>, z.ZodLiteral<1820>, z.ZodLiteral<1830>, z.ZodLiteral<1840>, z.ZodLiteral<1900>, z.ZodLiteral<2000>, z.ZodLiteral<2010>, z.ZodLiteral<2020>, z.ZodLiteral<2300>, z.ZodLiteral<2400>]>>;
1997
1996
  }];
1998
- response: z.ZodArray<z.ZodType<match_v5_MatchDto, z.ZodTypeDef, match_v5_MatchDto>, "many">;
1997
+ response: z.ZodArray<z.ZodType<Match, z.ZodTypeDef, Match>, "many">;
1999
1998
  errors: [{
2000
1999
  status: 400;
2001
2000
  description: string;
@@ -2096,7 +2095,7 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
2096
2095
  parameters: [{
2097
2096
  name: "region";
2098
2097
  type: "Path";
2099
- schema: z.ZodString;
2098
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
2100
2099
  }, {
2101
2100
  name: "puuid";
2102
2101
  type: "Path";
@@ -2211,13 +2210,13 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
2211
2210
  parameters: [{
2212
2211
  name: "region";
2213
2212
  type: "Path";
2214
- schema: z.ZodString;
2213
+ schema: z.ZodEnum<["europe", "americas", "asia", "sea"]>;
2215
2214
  }, {
2216
2215
  name: "matchId";
2217
2216
  type: "Path";
2218
2217
  schema: z.ZodString;
2219
2218
  }];
2220
- response: z.ZodType<match_v5_MatchDto, z.ZodTypeDef, match_v5_MatchDto>;
2219
+ response: z.ZodType<Match, z.ZodTypeDef, Match>;
2221
2220
  errors: [{
2222
2221
  status: 400;
2223
2222
  description: string;