@ethlete/cdk 4.47.0 → 4.48.1

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/esm2022/lib/components/bracket/components/new-bracket/bracket-new.mjs +170 -69
  3. package/esm2022/lib/components/bracket/components/new-bracket/draw-man.mjs +75 -32
  4. package/esm2022/lib/components/bracket/components/new-bracket/grid-placements.mjs +8 -3
  5. package/esm2022/lib/components/bracket/components/new-bracket/journey-highlight.mjs +18 -0
  6. package/esm2022/lib/components/bracket/components/new-bracket/new-bracket.component.mjs +47 -9
  7. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_DOUBLE_SYNC.mjs +1116 -0
  8. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SINGLE.mjs +2691 -0
  9. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SWISS.mjs +72479 -0
  10. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATE_DOUBLE_ASYNC.mjs +1275 -0
  11. package/esm2022/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_DOUBLE.mjs +2453 -0
  12. package/esm2022/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_SINGLE.mjs +2570 -0
  13. package/esm2022/lib/components/bracket/stories/dummy-data/index.mjs +7 -0
  14. package/fesm2022/ethlete-cdk.mjs +315 -109
  15. package/fesm2022/ethlete-cdk.mjs.map +1 -1
  16. package/lib/components/bracket/components/new-bracket/bracket-new.d.ts +1632 -18
  17. package/lib/components/bracket/components/new-bracket/draw-man.d.ts +5 -3
  18. package/lib/components/bracket/components/new-bracket/grid-placements.d.ts +4 -0
  19. package/lib/components/bracket/components/new-bracket/journey-highlight.d.ts +2 -0
  20. package/lib/components/bracket/components/new-bracket/new-bracket.component.d.ts +7 -2
  21. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_DOUBLE_SYNC.d.ts +149 -0
  22. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SINGLE.d.ts +184 -0
  23. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SWISS.d.ts +214 -0
  24. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATE_DOUBLE_ASYNC.d.ts +149 -0
  25. package/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_DOUBLE.d.ts +1640 -0
  26. package/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_SINGLE.d.ts +2388 -0
  27. package/lib/components/bracket/stories/dummy-data/index.d.ts +6 -0
  28. package/lib/components/query-error/directives/query-error/query-error.directive.d.ts +1 -1
  29. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import { MatchListViewUnion, OpponentSide, RoundStageStructureView, RoundStageStructureWithMatchesView, RoundType } from '@ethlete/types';
2
+ import { GgData } from '../../stories/dummy-data';
2
3
  export type BracketRoundId = string & {
3
4
  __brand: 'BracketRoundId';
4
5
  };
@@ -14,6 +15,9 @@ export type BracketMatchPosition = number & {
14
15
  export type MatchParticipantId = string & {
15
16
  __brand: 'MatchParticipantId';
16
17
  };
18
+ export type MatchParticipantShortId = string & {
19
+ __brand: 'MatchParticipantShortId';
20
+ };
17
21
  export type BracketRoundSwissGroupId = string & {
18
22
  __brand: 'BracketRoundSwissGroupId';
19
23
  };
@@ -72,6 +76,7 @@ export type BracketRound<TRoundData, TMatchData> = {
72
76
  matchCount: number;
73
77
  matches: BracketMatchMap<TRoundData, TMatchData>;
74
78
  mirrorRoundType: BracketRoundMirrorType | null;
79
+ isFirstRound: boolean;
75
80
  };
76
81
  export type BracketMatchStatus = 'completed' | 'pending';
77
82
  export type BracketMatch<TRoundData, TMatchData> = {
@@ -80,9 +85,10 @@ export type BracketMatch<TRoundData, TMatchData> = {
80
85
  id: BracketMatchId;
81
86
  round: BracketRound<TRoundData, TMatchData>;
82
87
  position: BracketMatchPosition;
83
- home: MatchParticipantId | null;
84
- away: MatchParticipantId | null;
85
- winner: OpponentSide | null;
88
+ home: BracketParticipant<TRoundData, TMatchData> | null;
89
+ away: BracketParticipant<TRoundData, TMatchData> | null;
90
+ winnerSide: OpponentSide | null;
91
+ winner: BracketParticipant<TRoundData, TMatchData> | null;
86
92
  status: BracketMatchStatus;
87
93
  };
88
94
  export type BracketMatchSource<TMatchData> = {
@@ -144,17 +150,6 @@ export type BracketMatchRelationTwoToOne<TRoundData, TMatchData> = {
144
150
  nextMatch: BracketMatch<TRoundData, TMatchData>;
145
151
  nextRound: BracketRound<TRoundData, TMatchData>;
146
152
  };
147
- export type BracketMatchRelationOneToTwo<TRoundData, TMatchData> = {
148
- type: 'one-to-two';
149
- currentMatch: BracketMatch<TRoundData, TMatchData>;
150
- currentRound: BracketRound<TRoundData, TMatchData>;
151
- previousMatch: BracketMatch<TRoundData, TMatchData>;
152
- previousRound: BracketRound<TRoundData, TMatchData>;
153
- nextUpperMatch: BracketMatch<TRoundData, TMatchData>;
154
- nextUpperRound: BracketRound<TRoundData, TMatchData>;
155
- nextLowerMatch: BracketMatch<TRoundData, TMatchData>;
156
- nextLowerRound: BracketRound<TRoundData, TMatchData>;
157
- };
158
153
  export type BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = {
159
154
  type: 'two-to-nothing';
160
155
  currentMatch: BracketMatch<TRoundData, TMatchData>;
@@ -164,7 +159,7 @@ export type BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = {
164
159
  previousLowerMatch: BracketMatch<TRoundData, TMatchData>;
165
160
  previousLowerRound: BracketRound<TRoundData, TMatchData>;
166
161
  };
167
- export type BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData> | BracketMatchRelationTwoToOne<TRoundData, TMatchData> | BracketMatchRelationOneToTwo<TRoundData, TMatchData> | BracketMatchRelationNothingToOne<TRoundData, TMatchData> | BracketMatchRelationOneToNothing<TRoundData, TMatchData> | BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
162
+ export type BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData> | BracketMatchRelationTwoToOne<TRoundData, TMatchData> | BracketMatchRelationNothingToOne<TRoundData, TMatchData> | BracketMatchRelationOneToNothing<TRoundData, TMatchData> | BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
168
163
  export type BracketMatchRelationsMap<TRoundData, TMatchData> = Map<BracketMatchId, BracketMatchRelation<TRoundData, TMatchData>>;
169
164
  export type BracketRoundRelationNothingToOne<TRoundData, TMatchData> = {
170
165
  type: 'nothing-to-one';
@@ -237,6 +232,7 @@ export type BracketParticipantMatch<TRoundData, TMatchData> = {
237
232
  };
238
233
  export type BracketParticipant<TRoundData, TMatchData> = {
239
234
  id: MatchParticipantId;
235
+ shortId: MatchParticipantShortId;
240
236
  name: string;
241
237
  matches: Map<BracketMatchId, BracketParticipantMatch<TRoundData, TMatchData>>;
242
238
  };
@@ -254,7 +250,7 @@ export type BracketRoundSwissData<TRoundData, TMatchData> = {
254
250
  };
255
251
  export type BracketRoundMapWithSwissData<TRoundData, TMatchData> = Map<BracketRoundId, BracketRoundSwissData<TRoundData, TMatchData>>;
256
252
  export type BracketRoundTypeMap<TRoundData, TMatchData> = Map<BracketRoundType, BracketRoundMap<TRoundData, TMatchData>>;
257
- export declare const generateRoundTypeFromEthleteRoundType: (type: RoundType, tournamentMode: TournamentMode) => BracketRoundType;
253
+ export declare const generateRoundTypeFromEthleteRoundType: (type: RoundType, tournamentMode: TournamentMode, roundMatchCount: number) => BracketRoundType;
258
254
  export declare const generateTournamentModeFormEthleteRounds: (source: RoundStageStructureWithMatchesView[]) => TournamentMode;
259
255
  export declare const canRenderLayoutInTournamentMode: (layout: BracketDataLayout, mode: TournamentMode) => boolean;
260
256
  export declare const BRACKET_DATA_LAYOUT: {
@@ -283,8 +279,7 @@ export declare const generateBracketRoundTypeMap: <TRoundData, TMatchData>(brack
283
279
  export declare const generateRoundRelations: <TRoundData, TMatchData>(bracketData: BracketData<TRoundData, TMatchData>) => BracketRoundRelations<TRoundData, TMatchData>;
284
280
  export declare const generateMatchRelations: <TRoundData, TMatchData>(bracketData: BracketData<TRoundData, TMatchData>, roundRelations: BracketRoundRelations<TRoundData, TMatchData>, matchPositionMaps: MatchPositionMaps<TRoundData, TMatchData>) => BracketMatchRelationsMap<TRoundData, TMatchData>;
285
281
  export declare const generateMatchRelationPositions: <TRoundData, TMatchData>(currentRelation: BracketRoundRelation<TRoundData, TMatchData>, match: BracketMatch<TRoundData, TMatchData>) => {
286
- nextUpperRoundMatchPosition: BracketMatchPosition;
287
- nextLowerRoundMatchPosition: BracketMatchPosition;
282
+ nextRoundMatchPosition: BracketMatchPosition;
288
283
  previousUpperRoundMatchPosition: BracketMatchPosition;
289
284
  previousLowerRoundMatchPosition: BracketMatchPosition;
290
285
  };
@@ -302,3 +297,1622 @@ export type GenerateBracketDataOptions = {
302
297
  layout: BracketDataLayout;
303
298
  };
304
299
  export declare const generateBracketData: <TRoundData, TMatchData>(source: BracketDataSource<TRoundData, TMatchData>, options: GenerateBracketDataOptions) => BracketData<TRoundData, TMatchData>;
300
+ export declare const generateTournamentModeFormGgData: (source: GgData) => TournamentMode;
301
+ export declare const generateRoundTypeFromGgMatch: (tournamentMode: TournamentMode, bracketType: string | null, stageNumber: number, matchCount: number) => BracketRoundType;
302
+ export declare const generateBracketDataForGg: (source: GgData) => BracketDataSource<null, {
303
+ id: string;
304
+ position: number;
305
+ roundNumber: number;
306
+ stageNumber: number;
307
+ bracketType: string;
308
+ roundTitle: string;
309
+ status: string;
310
+ winningSide: string;
311
+ homeScore: number;
312
+ awayScore: number;
313
+ scheduledAt: string;
314
+ videoGameType: string;
315
+ homeMatchSide: {
316
+ participant: {
317
+ id: string;
318
+ position: number;
319
+ participation: {
320
+ id: string;
321
+ type: string;
322
+ status: string;
323
+ image: {
324
+ id: string;
325
+ title: string;
326
+ mimeType: string;
327
+ dimensions: string[];
328
+ filterUrl: string;
329
+ filterParameterPlaceholder: string;
330
+ };
331
+ team: {
332
+ id: string;
333
+ name: string;
334
+ tag: null;
335
+ slug: string;
336
+ isProTeam: boolean;
337
+ isNationalTeam: boolean;
338
+ isClaimable: boolean;
339
+ isPubliclyVisible: boolean;
340
+ facebookId: null;
341
+ twitchId: string;
342
+ instagramId: null;
343
+ twitterId: null;
344
+ members: number;
345
+ videoGameSeriesType: string;
346
+ currentRank: {
347
+ position: number;
348
+ pointsGained: string;
349
+ points: string;
350
+ };
351
+ relatedCountry: {
352
+ code: string;
353
+ codeAlpha3: string;
354
+ name: string;
355
+ flag: {
356
+ id: string;
357
+ title: string;
358
+ mimeType: string;
359
+ dimensions: string[];
360
+ filterUrl: string;
361
+ filterParameterPlaceholder: string;
362
+ };
363
+ };
364
+ memberAssociation: null;
365
+ emblem: {
366
+ id: string;
367
+ title: string;
368
+ mimeType: string;
369
+ dimensions: string[];
370
+ filterUrl: string;
371
+ filterParameterPlaceholder: string;
372
+ };
373
+ titleImage: null;
374
+ youtubeProfile: null;
375
+ };
376
+ };
377
+ };
378
+ placeholder: null;
379
+ sourceMatchId: null;
380
+ };
381
+ awayMatchSide: {
382
+ participant: {
383
+ id: string;
384
+ position: number;
385
+ participation: {
386
+ id: string;
387
+ type: string;
388
+ status: string;
389
+ image: {
390
+ id: string;
391
+ title: string;
392
+ mimeType: string;
393
+ dimensions: string[];
394
+ filterUrl: string;
395
+ filterParameterPlaceholder: string;
396
+ };
397
+ team: {
398
+ id: string;
399
+ name: string;
400
+ tag: null;
401
+ slug: string;
402
+ isProTeam: boolean;
403
+ isNationalTeam: boolean;
404
+ isClaimable: boolean;
405
+ isPubliclyVisible: boolean;
406
+ facebookId: null;
407
+ twitchId: string;
408
+ instagramId: string;
409
+ twitterId: string;
410
+ members: number;
411
+ videoGameSeriesType: string;
412
+ currentRank: {
413
+ position: number;
414
+ pointsGained: string;
415
+ points: string;
416
+ };
417
+ relatedCountry: {
418
+ code: string;
419
+ codeAlpha3: string;
420
+ name: string;
421
+ flag: {
422
+ id: string;
423
+ title: string;
424
+ mimeType: string;
425
+ dimensions: string[];
426
+ filterUrl: string;
427
+ filterParameterPlaceholder: string;
428
+ };
429
+ };
430
+ memberAssociation: null;
431
+ emblem: {
432
+ id: string;
433
+ title: string;
434
+ mimeType: string;
435
+ dimensions: string[];
436
+ filterUrl: string;
437
+ filterParameterPlaceholder: string;
438
+ };
439
+ titleImage: null;
440
+ youtubeProfile: null;
441
+ };
442
+ };
443
+ };
444
+ placeholder: null;
445
+ sourceMatchId: null;
446
+ };
447
+ games: {
448
+ id: string;
449
+ position: number;
450
+ status: string;
451
+ resultType: string;
452
+ platform: string;
453
+ homeScore: number;
454
+ awayScore: number;
455
+ }[];
456
+ mode: string;
457
+ isHighlighted: boolean;
458
+ hasVod: boolean;
459
+ hasStream: boolean;
460
+ } | {
461
+ id: string;
462
+ position: number;
463
+ roundNumber: number;
464
+ stageNumber: number;
465
+ bracketType: string;
466
+ roundTitle: string;
467
+ status: string;
468
+ winningSide: string;
469
+ homeScore: number;
470
+ awayScore: number;
471
+ scheduledAt: string;
472
+ videoGameType: string;
473
+ homeMatchSide: {
474
+ participant: {
475
+ id: string;
476
+ position: number;
477
+ participation: {
478
+ id: string;
479
+ type: string;
480
+ status: string;
481
+ image: {
482
+ id: string;
483
+ title: string;
484
+ mimeType: string;
485
+ dimensions: string[];
486
+ filterUrl: string;
487
+ filterParameterPlaceholder: string;
488
+ };
489
+ team: {
490
+ id: string;
491
+ name: string;
492
+ tag: null;
493
+ slug: string;
494
+ isProTeam: boolean;
495
+ isNationalTeam: boolean;
496
+ isClaimable: boolean;
497
+ isPubliclyVisible: boolean;
498
+ facebookId: null;
499
+ twitchId: null;
500
+ instagramId: null;
501
+ twitterId: null;
502
+ members: number;
503
+ videoGameSeriesType: string;
504
+ currentRank: {
505
+ position: number;
506
+ pointsGained: string;
507
+ points: string;
508
+ };
509
+ relatedCountry: {
510
+ code: string;
511
+ codeAlpha3: string;
512
+ name: string;
513
+ flag: {
514
+ id: string;
515
+ title: string;
516
+ mimeType: string;
517
+ dimensions: string[];
518
+ filterUrl: string;
519
+ filterParameterPlaceholder: string;
520
+ };
521
+ };
522
+ memberAssociation: null;
523
+ emblem: {
524
+ id: string;
525
+ title: string;
526
+ mimeType: string;
527
+ dimensions: string[];
528
+ filterUrl: string;
529
+ filterParameterPlaceholder: string;
530
+ };
531
+ titleImage: null;
532
+ youtubeProfile: null;
533
+ };
534
+ };
535
+ };
536
+ placeholder: null;
537
+ sourceMatchId: null;
538
+ };
539
+ awayMatchSide: {
540
+ participant: {
541
+ id: string;
542
+ position: number;
543
+ participation: {
544
+ id: string;
545
+ type: string;
546
+ status: string;
547
+ image: {
548
+ id: string;
549
+ title: string;
550
+ mimeType: string;
551
+ dimensions: string[];
552
+ filterUrl: string;
553
+ filterParameterPlaceholder: string;
554
+ };
555
+ team: {
556
+ id: string;
557
+ name: string;
558
+ tag: null;
559
+ slug: string;
560
+ isProTeam: boolean;
561
+ isNationalTeam: boolean;
562
+ isClaimable: boolean;
563
+ isPubliclyVisible: boolean;
564
+ facebookId: null;
565
+ twitchId: string;
566
+ instagramId: string;
567
+ twitterId: string;
568
+ members: number;
569
+ videoGameSeriesType: string;
570
+ currentRank: {
571
+ position: number;
572
+ pointsGained: string;
573
+ points: string;
574
+ };
575
+ relatedCountry: {
576
+ code: string;
577
+ codeAlpha3: string;
578
+ name: string;
579
+ flag: {
580
+ id: string;
581
+ title: string;
582
+ mimeType: string;
583
+ dimensions: string[];
584
+ filterUrl: string;
585
+ filterParameterPlaceholder: string;
586
+ };
587
+ };
588
+ memberAssociation: null;
589
+ emblem: {
590
+ id: string;
591
+ title: string;
592
+ mimeType: string;
593
+ dimensions: string[];
594
+ filterUrl: string;
595
+ filterParameterPlaceholder: string;
596
+ };
597
+ titleImage: null;
598
+ youtubeProfile: null;
599
+ };
600
+ };
601
+ };
602
+ placeholder: null;
603
+ sourceMatchId: null;
604
+ };
605
+ games: {
606
+ id: string;
607
+ position: number;
608
+ status: string;
609
+ resultType: string;
610
+ platform: string;
611
+ homeScore: number;
612
+ awayScore: number;
613
+ }[];
614
+ mode: string;
615
+ isHighlighted: boolean;
616
+ hasVod: boolean;
617
+ hasStream: boolean;
618
+ } | {
619
+ id: string;
620
+ position: number;
621
+ roundNumber: number;
622
+ stageNumber: number;
623
+ bracketType: string;
624
+ roundTitle: string;
625
+ status: string;
626
+ winningSide: string;
627
+ homeScore: number;
628
+ awayScore: number;
629
+ scheduledAt: string;
630
+ videoGameType: string;
631
+ homeMatchSide: {
632
+ participant: {
633
+ id: string;
634
+ position: number;
635
+ participation: {
636
+ id: string;
637
+ type: string;
638
+ status: string;
639
+ image: {
640
+ id: string;
641
+ title: string;
642
+ mimeType: string;
643
+ dimensions: string[];
644
+ filterUrl: string;
645
+ filterParameterPlaceholder: string;
646
+ };
647
+ team: {
648
+ id: string;
649
+ name: string;
650
+ tag: null;
651
+ slug: string;
652
+ isProTeam: boolean;
653
+ isNationalTeam: boolean;
654
+ isClaimable: boolean;
655
+ isPubliclyVisible: boolean;
656
+ facebookId: string;
657
+ twitchId: string;
658
+ instagramId: string;
659
+ twitterId: string;
660
+ members: number;
661
+ videoGameSeriesType: string;
662
+ currentRank: {
663
+ position: number;
664
+ pointsGained: string;
665
+ points: string;
666
+ };
667
+ relatedCountry: {
668
+ code: string;
669
+ codeAlpha3: string;
670
+ name: string;
671
+ flag: {
672
+ id: string;
673
+ title: string;
674
+ mimeType: string;
675
+ dimensions: string[];
676
+ filterUrl: string;
677
+ filterParameterPlaceholder: string;
678
+ };
679
+ };
680
+ memberAssociation: null;
681
+ emblem: {
682
+ id: string;
683
+ title: string;
684
+ mimeType: string;
685
+ dimensions: string[];
686
+ filterUrl: string;
687
+ filterParameterPlaceholder: string;
688
+ };
689
+ titleImage: null;
690
+ youtubeProfile: null;
691
+ };
692
+ };
693
+ };
694
+ placeholder: null;
695
+ sourceMatchId: null;
696
+ };
697
+ awayMatchSide: {
698
+ participant: {
699
+ id: string;
700
+ position: number;
701
+ participation: {
702
+ id: string;
703
+ type: string;
704
+ status: string;
705
+ image: {
706
+ id: string;
707
+ title: string;
708
+ mimeType: string;
709
+ dimensions: string[];
710
+ filterUrl: string;
711
+ filterParameterPlaceholder: string;
712
+ };
713
+ team: {
714
+ id: string;
715
+ name: string;
716
+ tag: null;
717
+ slug: string;
718
+ isProTeam: boolean;
719
+ isNationalTeam: boolean;
720
+ isClaimable: boolean;
721
+ isPubliclyVisible: boolean;
722
+ facebookId: null;
723
+ twitchId: null;
724
+ instagramId: null;
725
+ twitterId: null;
726
+ members: number;
727
+ videoGameSeriesType: string;
728
+ currentRank: {
729
+ position: number;
730
+ pointsGained: string;
731
+ points: string;
732
+ };
733
+ relatedCountry: {
734
+ code: string;
735
+ codeAlpha3: string;
736
+ name: string;
737
+ flag: {
738
+ id: string;
739
+ title: string;
740
+ mimeType: string;
741
+ dimensions: string[];
742
+ filterUrl: string;
743
+ filterParameterPlaceholder: string;
744
+ };
745
+ };
746
+ memberAssociation: null;
747
+ emblem: {
748
+ id: string;
749
+ title: string;
750
+ mimeType: string;
751
+ dimensions: string[];
752
+ filterUrl: string;
753
+ filterParameterPlaceholder: string;
754
+ };
755
+ titleImage: null;
756
+ youtubeProfile: null;
757
+ };
758
+ };
759
+ };
760
+ placeholder: null;
761
+ sourceMatchId: null;
762
+ };
763
+ games: {
764
+ id: string;
765
+ position: number;
766
+ status: string;
767
+ resultType: string;
768
+ platform: string;
769
+ homeScore: number;
770
+ awayScore: number;
771
+ }[];
772
+ mode: string;
773
+ isHighlighted: boolean;
774
+ hasVod: boolean;
775
+ hasStream: boolean;
776
+ } | {
777
+ id: string;
778
+ position: number;
779
+ roundNumber: number;
780
+ stageNumber: number;
781
+ bracketType: string;
782
+ roundTitle: string;
783
+ status: string;
784
+ winningSide: string;
785
+ homeScore: number;
786
+ awayScore: number;
787
+ scheduledAt: string;
788
+ videoGameType: string;
789
+ homeMatchSide: {
790
+ participant: {
791
+ id: string;
792
+ position: number;
793
+ participation: {
794
+ id: string;
795
+ type: string;
796
+ status: string;
797
+ image: {
798
+ id: string;
799
+ title: string;
800
+ mimeType: string;
801
+ dimensions: string[];
802
+ filterUrl: string;
803
+ filterParameterPlaceholder: string;
804
+ };
805
+ team: {
806
+ id: string;
807
+ name: string;
808
+ tag: null;
809
+ slug: string;
810
+ isProTeam: boolean;
811
+ isNationalTeam: boolean;
812
+ isClaimable: boolean;
813
+ isPubliclyVisible: boolean;
814
+ facebookId: null;
815
+ twitchId: string;
816
+ instagramId: string;
817
+ twitterId: string;
818
+ members: number;
819
+ videoGameSeriesType: string;
820
+ currentRank: {
821
+ position: number;
822
+ pointsGained: string;
823
+ points: string;
824
+ };
825
+ relatedCountry: {
826
+ code: string;
827
+ codeAlpha3: string;
828
+ name: string;
829
+ flag: {
830
+ id: string;
831
+ title: string;
832
+ mimeType: string;
833
+ dimensions: string[];
834
+ filterUrl: string;
835
+ filterParameterPlaceholder: string;
836
+ };
837
+ };
838
+ memberAssociation: null;
839
+ emblem: {
840
+ id: string;
841
+ title: string;
842
+ mimeType: string;
843
+ dimensions: string[];
844
+ filterUrl: string;
845
+ filterParameterPlaceholder: string;
846
+ };
847
+ titleImage: null;
848
+ youtubeProfile: null;
849
+ };
850
+ };
851
+ };
852
+ placeholder: null;
853
+ sourceMatchId: null;
854
+ };
855
+ awayMatchSide: {
856
+ participant: {
857
+ id: string;
858
+ position: number;
859
+ participation: {
860
+ id: string;
861
+ type: string;
862
+ status: string;
863
+ image: {
864
+ id: string;
865
+ title: string;
866
+ mimeType: string;
867
+ dimensions: string[];
868
+ filterUrl: string;
869
+ filterParameterPlaceholder: string;
870
+ };
871
+ team: {
872
+ id: string;
873
+ name: string;
874
+ tag: null;
875
+ slug: string;
876
+ isProTeam: boolean;
877
+ isNationalTeam: boolean;
878
+ isClaimable: boolean;
879
+ isPubliclyVisible: boolean;
880
+ facebookId: string;
881
+ twitchId: string;
882
+ instagramId: string;
883
+ twitterId: string;
884
+ members: number;
885
+ videoGameSeriesType: string;
886
+ currentRank: {
887
+ position: number;
888
+ pointsGained: string;
889
+ points: string;
890
+ };
891
+ relatedCountry: {
892
+ code: string;
893
+ codeAlpha3: string;
894
+ name: string;
895
+ flag: {
896
+ id: string;
897
+ title: string;
898
+ mimeType: string;
899
+ dimensions: string[];
900
+ filterUrl: string;
901
+ filterParameterPlaceholder: string;
902
+ };
903
+ };
904
+ memberAssociation: null;
905
+ emblem: {
906
+ id: string;
907
+ title: string;
908
+ mimeType: string;
909
+ dimensions: string[];
910
+ filterUrl: string;
911
+ filterParameterPlaceholder: string;
912
+ };
913
+ titleImage: null;
914
+ youtubeProfile: null;
915
+ };
916
+ };
917
+ };
918
+ placeholder: null;
919
+ sourceMatchId: null;
920
+ };
921
+ games: {
922
+ id: string;
923
+ position: number;
924
+ status: string;
925
+ resultType: string;
926
+ platform: string;
927
+ homeScore: number;
928
+ awayScore: number;
929
+ }[];
930
+ mode: string;
931
+ isHighlighted: boolean;
932
+ hasVod: boolean;
933
+ hasStream: boolean;
934
+ } | {
935
+ id: string;
936
+ position: number;
937
+ roundNumber: number;
938
+ stageNumber: number;
939
+ bracketType: string;
940
+ roundTitle: string;
941
+ status: string;
942
+ winningSide: string;
943
+ homeScore: number;
944
+ awayScore: number;
945
+ scheduledAt: string;
946
+ videoGameType: string;
947
+ homeMatchSide: {
948
+ participant: {
949
+ id: string;
950
+ position: number;
951
+ participation: {
952
+ id: string;
953
+ type: string;
954
+ status: string;
955
+ image: {
956
+ id: string;
957
+ title: string;
958
+ mimeType: string;
959
+ dimensions: string[];
960
+ filterUrl: string;
961
+ filterParameterPlaceholder: string;
962
+ };
963
+ team: {
964
+ id: string;
965
+ name: string;
966
+ tag: null;
967
+ slug: string;
968
+ isProTeam: boolean;
969
+ isNationalTeam: boolean;
970
+ isClaimable: boolean;
971
+ isPubliclyVisible: boolean;
972
+ facebookId: null;
973
+ twitchId: string;
974
+ instagramId: null;
975
+ twitterId: null;
976
+ members: number;
977
+ videoGameSeriesType: string;
978
+ currentRank: {
979
+ position: number;
980
+ pointsGained: string;
981
+ points: string;
982
+ };
983
+ relatedCountry: {
984
+ code: string;
985
+ codeAlpha3: string;
986
+ name: string;
987
+ flag: {
988
+ id: string;
989
+ title: string;
990
+ mimeType: string;
991
+ dimensions: string[];
992
+ filterUrl: string;
993
+ filterParameterPlaceholder: string;
994
+ };
995
+ };
996
+ memberAssociation: null;
997
+ emblem: {
998
+ id: string;
999
+ title: string;
1000
+ mimeType: string;
1001
+ dimensions: string[];
1002
+ filterUrl: string;
1003
+ filterParameterPlaceholder: string;
1004
+ };
1005
+ titleImage: null;
1006
+ youtubeProfile: null;
1007
+ };
1008
+ };
1009
+ };
1010
+ placeholder: null;
1011
+ sourceMatchId: null;
1012
+ };
1013
+ awayMatchSide: {
1014
+ participant: {
1015
+ id: string;
1016
+ position: number;
1017
+ participation: {
1018
+ id: string;
1019
+ type: string;
1020
+ status: string;
1021
+ image: {
1022
+ id: string;
1023
+ title: string;
1024
+ mimeType: string;
1025
+ dimensions: string[];
1026
+ filterUrl: string;
1027
+ filterParameterPlaceholder: string;
1028
+ };
1029
+ team: {
1030
+ id: string;
1031
+ name: string;
1032
+ tag: null;
1033
+ slug: string;
1034
+ isProTeam: boolean;
1035
+ isNationalTeam: boolean;
1036
+ isClaimable: boolean;
1037
+ isPubliclyVisible: boolean;
1038
+ facebookId: string;
1039
+ twitchId: string;
1040
+ instagramId: string;
1041
+ twitterId: string;
1042
+ members: number;
1043
+ videoGameSeriesType: string;
1044
+ currentRank: {
1045
+ position: number;
1046
+ pointsGained: string;
1047
+ points: string;
1048
+ };
1049
+ relatedCountry: {
1050
+ code: string;
1051
+ codeAlpha3: string;
1052
+ name: string;
1053
+ flag: {
1054
+ id: string;
1055
+ title: string;
1056
+ mimeType: string;
1057
+ dimensions: string[];
1058
+ filterUrl: string;
1059
+ filterParameterPlaceholder: string;
1060
+ };
1061
+ };
1062
+ memberAssociation: null;
1063
+ emblem: {
1064
+ id: string;
1065
+ title: string;
1066
+ mimeType: string;
1067
+ dimensions: string[];
1068
+ filterUrl: string;
1069
+ filterParameterPlaceholder: string;
1070
+ };
1071
+ titleImage: null;
1072
+ youtubeProfile: null;
1073
+ };
1074
+ };
1075
+ };
1076
+ placeholder: null;
1077
+ sourceMatchId: null;
1078
+ };
1079
+ games: {
1080
+ id: string;
1081
+ position: number;
1082
+ status: string;
1083
+ resultType: string;
1084
+ platform: string;
1085
+ homeScore: number;
1086
+ awayScore: number;
1087
+ }[];
1088
+ mode: string;
1089
+ isHighlighted: boolean;
1090
+ hasVod: boolean;
1091
+ hasStream: boolean;
1092
+ } | {
1093
+ id: string;
1094
+ position: number;
1095
+ roundNumber: number;
1096
+ stageNumber: number;
1097
+ bracketType: string;
1098
+ roundTitle: string;
1099
+ status: string;
1100
+ winningSide: string;
1101
+ homeScore: number;
1102
+ awayScore: number;
1103
+ scheduledAt: string;
1104
+ videoGameType: string;
1105
+ homeMatchSide: {
1106
+ participant: {
1107
+ id: string;
1108
+ position: number;
1109
+ participation: {
1110
+ id: string;
1111
+ type: string;
1112
+ status: string;
1113
+ image: {
1114
+ id: string;
1115
+ title: string;
1116
+ mimeType: string;
1117
+ dimensions: string[];
1118
+ filterUrl: string;
1119
+ filterParameterPlaceholder: string;
1120
+ };
1121
+ team: {
1122
+ id: string;
1123
+ name: string;
1124
+ tag: null;
1125
+ slug: string;
1126
+ isProTeam: boolean;
1127
+ isNationalTeam: boolean;
1128
+ isClaimable: boolean;
1129
+ isPubliclyVisible: boolean;
1130
+ facebookId: null;
1131
+ twitchId: string;
1132
+ instagramId: string;
1133
+ twitterId: string;
1134
+ members: number;
1135
+ videoGameSeriesType: string;
1136
+ currentRank: {
1137
+ position: number;
1138
+ pointsGained: string;
1139
+ points: string;
1140
+ };
1141
+ relatedCountry: {
1142
+ code: string;
1143
+ codeAlpha3: string;
1144
+ name: string;
1145
+ flag: {
1146
+ id: string;
1147
+ title: string;
1148
+ mimeType: string;
1149
+ dimensions: string[];
1150
+ filterUrl: string;
1151
+ filterParameterPlaceholder: string;
1152
+ };
1153
+ };
1154
+ memberAssociation: null;
1155
+ emblem: {
1156
+ id: string;
1157
+ title: string;
1158
+ mimeType: string;
1159
+ dimensions: string[];
1160
+ filterUrl: string;
1161
+ filterParameterPlaceholder: string;
1162
+ };
1163
+ titleImage: null;
1164
+ youtubeProfile: null;
1165
+ };
1166
+ };
1167
+ };
1168
+ placeholder: null;
1169
+ sourceMatchId: null;
1170
+ };
1171
+ awayMatchSide: {
1172
+ participant: {
1173
+ id: string;
1174
+ position: number;
1175
+ participation: {
1176
+ id: string;
1177
+ type: string;
1178
+ status: string;
1179
+ image: {
1180
+ id: string;
1181
+ title: string;
1182
+ mimeType: string;
1183
+ dimensions: string[];
1184
+ filterUrl: string;
1185
+ filterParameterPlaceholder: string;
1186
+ };
1187
+ team: {
1188
+ id: string;
1189
+ name: string;
1190
+ tag: null;
1191
+ slug: string;
1192
+ isProTeam: boolean;
1193
+ isNationalTeam: boolean;
1194
+ isClaimable: boolean;
1195
+ isPubliclyVisible: boolean;
1196
+ facebookId: null;
1197
+ twitchId: null;
1198
+ instagramId: null;
1199
+ twitterId: null;
1200
+ members: number;
1201
+ videoGameSeriesType: string;
1202
+ currentRank: {
1203
+ position: number;
1204
+ pointsGained: string;
1205
+ points: string;
1206
+ };
1207
+ relatedCountry: {
1208
+ code: string;
1209
+ codeAlpha3: string;
1210
+ name: string;
1211
+ flag: {
1212
+ id: string;
1213
+ title: string;
1214
+ mimeType: string;
1215
+ dimensions: string[];
1216
+ filterUrl: string;
1217
+ filterParameterPlaceholder: string;
1218
+ };
1219
+ };
1220
+ memberAssociation: null;
1221
+ emblem: {
1222
+ id: string;
1223
+ title: string;
1224
+ mimeType: string;
1225
+ dimensions: string[];
1226
+ filterUrl: string;
1227
+ filterParameterPlaceholder: string;
1228
+ };
1229
+ titleImage: null;
1230
+ youtubeProfile: null;
1231
+ };
1232
+ };
1233
+ };
1234
+ placeholder: null;
1235
+ sourceMatchId: null;
1236
+ };
1237
+ games: {
1238
+ id: string;
1239
+ position: number;
1240
+ status: string;
1241
+ resultType: string;
1242
+ platform: string;
1243
+ homeScore: number;
1244
+ awayScore: number;
1245
+ }[];
1246
+ mode: string;
1247
+ isHighlighted: boolean;
1248
+ hasVod: boolean;
1249
+ hasStream: boolean;
1250
+ } | {
1251
+ id: string;
1252
+ position: number;
1253
+ roundNumber: number;
1254
+ stageNumber: number;
1255
+ bracketType: string;
1256
+ roundTitle: string;
1257
+ status: string;
1258
+ winningSide: string;
1259
+ homeScore: number;
1260
+ awayScore: number;
1261
+ scheduledAt: string;
1262
+ videoGameType: string;
1263
+ homeMatchSide: {
1264
+ participant: {
1265
+ id: string;
1266
+ position: number;
1267
+ participation: {
1268
+ id: string;
1269
+ type: string;
1270
+ status: string;
1271
+ image: {
1272
+ id: string;
1273
+ title: string;
1274
+ mimeType: string;
1275
+ dimensions: string[];
1276
+ filterUrl: string;
1277
+ filterParameterPlaceholder: string;
1278
+ };
1279
+ team: {
1280
+ id: string;
1281
+ name: string;
1282
+ tag: null;
1283
+ slug: string;
1284
+ isProTeam: boolean;
1285
+ isNationalTeam: boolean;
1286
+ isClaimable: boolean;
1287
+ isPubliclyVisible: boolean;
1288
+ facebookId: null;
1289
+ twitchId: null;
1290
+ instagramId: null;
1291
+ twitterId: null;
1292
+ members: number;
1293
+ videoGameSeriesType: string;
1294
+ currentRank: {
1295
+ position: number;
1296
+ pointsGained: string;
1297
+ points: string;
1298
+ };
1299
+ relatedCountry: {
1300
+ code: string;
1301
+ codeAlpha3: string;
1302
+ name: string;
1303
+ flag: {
1304
+ id: string;
1305
+ title: string;
1306
+ mimeType: string;
1307
+ dimensions: string[];
1308
+ filterUrl: string;
1309
+ filterParameterPlaceholder: string;
1310
+ };
1311
+ };
1312
+ memberAssociation: null;
1313
+ emblem: {
1314
+ id: string;
1315
+ title: string;
1316
+ mimeType: string;
1317
+ dimensions: string[];
1318
+ filterUrl: string;
1319
+ filterParameterPlaceholder: string;
1320
+ };
1321
+ titleImage: null;
1322
+ youtubeProfile: null;
1323
+ };
1324
+ };
1325
+ };
1326
+ placeholder: null;
1327
+ sourceMatchId: null;
1328
+ };
1329
+ awayMatchSide: {
1330
+ participant: {
1331
+ id: string;
1332
+ position: number;
1333
+ participation: {
1334
+ id: string;
1335
+ type: string;
1336
+ status: string;
1337
+ image: {
1338
+ id: string;
1339
+ title: string;
1340
+ mimeType: string;
1341
+ dimensions: string[];
1342
+ filterUrl: string;
1343
+ filterParameterPlaceholder: string;
1344
+ };
1345
+ team: {
1346
+ id: string;
1347
+ name: string;
1348
+ tag: null;
1349
+ slug: string;
1350
+ isProTeam: boolean;
1351
+ isNationalTeam: boolean;
1352
+ isClaimable: boolean;
1353
+ isPubliclyVisible: boolean;
1354
+ facebookId: null;
1355
+ twitchId: null;
1356
+ instagramId: null;
1357
+ twitterId: null;
1358
+ members: number;
1359
+ videoGameSeriesType: string;
1360
+ currentRank: {
1361
+ position: number;
1362
+ pointsGained: string;
1363
+ points: string;
1364
+ };
1365
+ relatedCountry: {
1366
+ code: string;
1367
+ codeAlpha3: string;
1368
+ name: string;
1369
+ flag: {
1370
+ id: string;
1371
+ title: string;
1372
+ mimeType: string;
1373
+ dimensions: string[];
1374
+ filterUrl: string;
1375
+ filterParameterPlaceholder: string;
1376
+ };
1377
+ };
1378
+ memberAssociation: null;
1379
+ emblem: {
1380
+ id: string;
1381
+ title: string;
1382
+ mimeType: string;
1383
+ dimensions: string[];
1384
+ filterUrl: string;
1385
+ filterParameterPlaceholder: string;
1386
+ };
1387
+ titleImage: null;
1388
+ youtubeProfile: null;
1389
+ };
1390
+ };
1391
+ };
1392
+ placeholder: null;
1393
+ sourceMatchId: null;
1394
+ };
1395
+ games: {
1396
+ id: string;
1397
+ position: number;
1398
+ status: string;
1399
+ resultType: string;
1400
+ platform: string;
1401
+ homeScore: number;
1402
+ awayScore: number;
1403
+ }[];
1404
+ mode: string;
1405
+ isHighlighted: boolean;
1406
+ hasVod: boolean;
1407
+ hasStream: boolean;
1408
+ } | {
1409
+ id: string;
1410
+ position: number;
1411
+ roundNumber: number;
1412
+ stageNumber: number;
1413
+ bracketType: string;
1414
+ roundTitle: string;
1415
+ status: string;
1416
+ winningSide: string;
1417
+ homeScore: number;
1418
+ awayScore: number;
1419
+ scheduledAt: string;
1420
+ videoGameType: string;
1421
+ homeMatchSide: {
1422
+ participant: {
1423
+ id: string;
1424
+ position: number;
1425
+ participation: {
1426
+ id: string;
1427
+ type: string;
1428
+ status: string;
1429
+ image: {
1430
+ id: string;
1431
+ title: string;
1432
+ mimeType: string;
1433
+ dimensions: string[];
1434
+ filterUrl: string;
1435
+ filterParameterPlaceholder: string;
1436
+ };
1437
+ team: {
1438
+ id: string;
1439
+ name: string;
1440
+ tag: null;
1441
+ slug: string;
1442
+ isProTeam: boolean;
1443
+ isNationalTeam: boolean;
1444
+ isClaimable: boolean;
1445
+ isPubliclyVisible: boolean;
1446
+ facebookId: null;
1447
+ twitchId: string;
1448
+ instagramId: string;
1449
+ twitterId: string;
1450
+ members: number;
1451
+ videoGameSeriesType: string;
1452
+ currentRank: {
1453
+ position: number;
1454
+ pointsGained: string;
1455
+ points: string;
1456
+ };
1457
+ relatedCountry: {
1458
+ code: string;
1459
+ codeAlpha3: string;
1460
+ name: string;
1461
+ flag: {
1462
+ id: string;
1463
+ title: string;
1464
+ mimeType: string;
1465
+ dimensions: string[];
1466
+ filterUrl: string;
1467
+ filterParameterPlaceholder: string;
1468
+ };
1469
+ };
1470
+ memberAssociation: null;
1471
+ emblem: {
1472
+ id: string;
1473
+ title: string;
1474
+ mimeType: string;
1475
+ dimensions: string[];
1476
+ filterUrl: string;
1477
+ filterParameterPlaceholder: string;
1478
+ };
1479
+ titleImage: null;
1480
+ youtubeProfile: null;
1481
+ };
1482
+ };
1483
+ };
1484
+ placeholder: null;
1485
+ sourceMatchId: null;
1486
+ };
1487
+ awayMatchSide: {
1488
+ participant: {
1489
+ id: string;
1490
+ position: number;
1491
+ participation: {
1492
+ id: string;
1493
+ type: string;
1494
+ status: string;
1495
+ image: {
1496
+ id: string;
1497
+ title: string;
1498
+ mimeType: string;
1499
+ dimensions: string[];
1500
+ filterUrl: string;
1501
+ filterParameterPlaceholder: string;
1502
+ };
1503
+ team: {
1504
+ id: string;
1505
+ name: string;
1506
+ tag: null;
1507
+ slug: string;
1508
+ isProTeam: boolean;
1509
+ isNationalTeam: boolean;
1510
+ isClaimable: boolean;
1511
+ isPubliclyVisible: boolean;
1512
+ facebookId: null;
1513
+ twitchId: string;
1514
+ instagramId: string;
1515
+ twitterId: string;
1516
+ members: number;
1517
+ videoGameSeriesType: string;
1518
+ currentRank: {
1519
+ position: number;
1520
+ pointsGained: string;
1521
+ points: string;
1522
+ };
1523
+ relatedCountry: {
1524
+ code: string;
1525
+ codeAlpha3: string;
1526
+ name: string;
1527
+ flag: {
1528
+ id: string;
1529
+ title: string;
1530
+ mimeType: string;
1531
+ dimensions: string[];
1532
+ filterUrl: string;
1533
+ filterParameterPlaceholder: string;
1534
+ };
1535
+ };
1536
+ memberAssociation: null;
1537
+ emblem: {
1538
+ id: string;
1539
+ title: string;
1540
+ mimeType: string;
1541
+ dimensions: string[];
1542
+ filterUrl: string;
1543
+ filterParameterPlaceholder: string;
1544
+ };
1545
+ titleImage: null;
1546
+ youtubeProfile: null;
1547
+ };
1548
+ };
1549
+ };
1550
+ placeholder: null;
1551
+ sourceMatchId: null;
1552
+ };
1553
+ games: {
1554
+ id: string;
1555
+ position: number;
1556
+ status: string;
1557
+ resultType: string;
1558
+ platform: string;
1559
+ homeScore: number;
1560
+ awayScore: number;
1561
+ }[];
1562
+ mode: string;
1563
+ isHighlighted: boolean;
1564
+ hasVod: boolean;
1565
+ hasStream: boolean;
1566
+ } | {
1567
+ id: string;
1568
+ position: number;
1569
+ roundNumber: number;
1570
+ stageNumber: number;
1571
+ bracketType: string;
1572
+ roundTitle: string;
1573
+ status: string;
1574
+ winningSide: string;
1575
+ homeScore: number;
1576
+ awayScore: number;
1577
+ scheduledAt: string;
1578
+ videoGameType: string;
1579
+ homeMatchSide: {
1580
+ participant: {
1581
+ id: string;
1582
+ position: number;
1583
+ participation: {
1584
+ id: string;
1585
+ type: string;
1586
+ status: string;
1587
+ image: {
1588
+ id: string;
1589
+ title: string;
1590
+ mimeType: string;
1591
+ dimensions: string[];
1592
+ filterUrl: string;
1593
+ filterParameterPlaceholder: string;
1594
+ };
1595
+ team: {
1596
+ id: string;
1597
+ name: string;
1598
+ tag: null;
1599
+ slug: string;
1600
+ isProTeam: boolean;
1601
+ isNationalTeam: boolean;
1602
+ isClaimable: boolean;
1603
+ isPubliclyVisible: boolean;
1604
+ facebookId: string;
1605
+ twitchId: string;
1606
+ instagramId: string;
1607
+ twitterId: string;
1608
+ members: number;
1609
+ videoGameSeriesType: string;
1610
+ currentRank: {
1611
+ position: number;
1612
+ pointsGained: string;
1613
+ points: string;
1614
+ };
1615
+ relatedCountry: {
1616
+ code: string;
1617
+ codeAlpha3: string;
1618
+ name: string;
1619
+ flag: {
1620
+ id: string;
1621
+ title: string;
1622
+ mimeType: string;
1623
+ dimensions: string[];
1624
+ filterUrl: string;
1625
+ filterParameterPlaceholder: string;
1626
+ };
1627
+ };
1628
+ memberAssociation: null;
1629
+ emblem: {
1630
+ id: string;
1631
+ title: string;
1632
+ mimeType: string;
1633
+ dimensions: string[];
1634
+ filterUrl: string;
1635
+ filterParameterPlaceholder: string;
1636
+ };
1637
+ titleImage: null;
1638
+ youtubeProfile: null;
1639
+ };
1640
+ };
1641
+ };
1642
+ placeholder: null;
1643
+ sourceMatchId: null;
1644
+ };
1645
+ awayMatchSide: {
1646
+ participant: {
1647
+ id: string;
1648
+ position: number;
1649
+ participation: {
1650
+ id: string;
1651
+ type: string;
1652
+ status: string;
1653
+ image: {
1654
+ id: string;
1655
+ title: string;
1656
+ mimeType: string;
1657
+ dimensions: string[];
1658
+ filterUrl: string;
1659
+ filterParameterPlaceholder: string;
1660
+ };
1661
+ team: {
1662
+ id: string;
1663
+ name: string;
1664
+ tag: null;
1665
+ slug: string;
1666
+ isProTeam: boolean;
1667
+ isNationalTeam: boolean;
1668
+ isClaimable: boolean;
1669
+ isPubliclyVisible: boolean;
1670
+ facebookId: null;
1671
+ twitchId: string;
1672
+ instagramId: string;
1673
+ twitterId: string;
1674
+ members: number;
1675
+ videoGameSeriesType: string;
1676
+ currentRank: {
1677
+ position: number;
1678
+ pointsGained: string;
1679
+ points: string;
1680
+ };
1681
+ relatedCountry: {
1682
+ code: string;
1683
+ codeAlpha3: string;
1684
+ name: string;
1685
+ flag: {
1686
+ id: string;
1687
+ title: string;
1688
+ mimeType: string;
1689
+ dimensions: string[];
1690
+ filterUrl: string;
1691
+ filterParameterPlaceholder: string;
1692
+ };
1693
+ };
1694
+ memberAssociation: null;
1695
+ emblem: {
1696
+ id: string;
1697
+ title: string;
1698
+ mimeType: string;
1699
+ dimensions: string[];
1700
+ filterUrl: string;
1701
+ filterParameterPlaceholder: string;
1702
+ };
1703
+ titleImage: null;
1704
+ youtubeProfile: null;
1705
+ };
1706
+ };
1707
+ };
1708
+ placeholder: null;
1709
+ sourceMatchId: null;
1710
+ };
1711
+ games: {
1712
+ id: string;
1713
+ position: number;
1714
+ status: string;
1715
+ resultType: string;
1716
+ platform: string;
1717
+ homeScore: number;
1718
+ awayScore: number;
1719
+ }[];
1720
+ mode: string;
1721
+ isHighlighted: boolean;
1722
+ hasVod: boolean;
1723
+ hasStream: boolean;
1724
+ } | {
1725
+ id: string;
1726
+ position: number;
1727
+ roundNumber: number;
1728
+ stageNumber: number;
1729
+ bracketType: null;
1730
+ roundTitle: string;
1731
+ status: string;
1732
+ winningSide: string;
1733
+ homeScore: number;
1734
+ awayScore: number;
1735
+ scheduledAt: string;
1736
+ videoGameType: string;
1737
+ homeMatchSide: {
1738
+ participant: {
1739
+ id: string;
1740
+ position: number;
1741
+ participation: {
1742
+ id: string;
1743
+ type: string;
1744
+ status: string;
1745
+ image: {
1746
+ id: string;
1747
+ title: string;
1748
+ mimeType: string;
1749
+ dimensions: string[];
1750
+ filterUrl: string;
1751
+ filterParameterPlaceholder: string;
1752
+ };
1753
+ team: {
1754
+ id: string;
1755
+ name: string;
1756
+ tag: null;
1757
+ slug: string;
1758
+ isProTeam: boolean;
1759
+ isNationalTeam: boolean;
1760
+ isClaimable: boolean;
1761
+ isPubliclyVisible: boolean;
1762
+ facebookId: null;
1763
+ twitchId: string;
1764
+ instagramId: null;
1765
+ twitterId: null;
1766
+ members: number;
1767
+ videoGameSeriesType: string;
1768
+ currentRank: {
1769
+ position: number;
1770
+ pointsGained: string;
1771
+ points: string;
1772
+ };
1773
+ relatedCountry: {
1774
+ code: string;
1775
+ codeAlpha3: string;
1776
+ name: string;
1777
+ flag: {
1778
+ id: string;
1779
+ title: string;
1780
+ mimeType: string;
1781
+ dimensions: string[];
1782
+ filterUrl: string;
1783
+ filterParameterPlaceholder: string;
1784
+ };
1785
+ };
1786
+ memberAssociation: null;
1787
+ emblem: {
1788
+ id: string;
1789
+ title: string;
1790
+ mimeType: string;
1791
+ dimensions: string[];
1792
+ filterUrl: string;
1793
+ filterParameterPlaceholder: string;
1794
+ };
1795
+ titleImage: null;
1796
+ youtubeProfile: null;
1797
+ };
1798
+ };
1799
+ };
1800
+ placeholder: null;
1801
+ sourceMatchId: null;
1802
+ };
1803
+ awayMatchSide: {
1804
+ participant: {
1805
+ id: string;
1806
+ position: number;
1807
+ participation: {
1808
+ id: string;
1809
+ type: string;
1810
+ status: string;
1811
+ image: {
1812
+ id: string;
1813
+ title: string;
1814
+ mimeType: string;
1815
+ dimensions: string[];
1816
+ filterUrl: string;
1817
+ filterParameterPlaceholder: string;
1818
+ };
1819
+ team: {
1820
+ id: string;
1821
+ name: string;
1822
+ tag: null;
1823
+ slug: string;
1824
+ isProTeam: boolean;
1825
+ isNationalTeam: boolean;
1826
+ isClaimable: boolean;
1827
+ isPubliclyVisible: boolean;
1828
+ facebookId: string;
1829
+ twitchId: string;
1830
+ instagramId: string;
1831
+ twitterId: string;
1832
+ members: number;
1833
+ videoGameSeriesType: string;
1834
+ currentRank: {
1835
+ position: number;
1836
+ pointsGained: string;
1837
+ points: string;
1838
+ };
1839
+ relatedCountry: {
1840
+ code: string;
1841
+ codeAlpha3: string;
1842
+ name: string;
1843
+ flag: {
1844
+ id: string;
1845
+ title: string;
1846
+ mimeType: string;
1847
+ dimensions: string[];
1848
+ filterUrl: string;
1849
+ filterParameterPlaceholder: string;
1850
+ };
1851
+ };
1852
+ memberAssociation: null;
1853
+ emblem: {
1854
+ id: string;
1855
+ title: string;
1856
+ mimeType: string;
1857
+ dimensions: string[];
1858
+ filterUrl: string;
1859
+ filterParameterPlaceholder: string;
1860
+ };
1861
+ titleImage: null;
1862
+ youtubeProfile: null;
1863
+ };
1864
+ };
1865
+ };
1866
+ placeholder: null;
1867
+ sourceMatchId: null;
1868
+ };
1869
+ games: {
1870
+ id: string;
1871
+ position: number;
1872
+ status: string;
1873
+ resultType: string;
1874
+ platform: string;
1875
+ homeScore: number;
1876
+ awayScore: number;
1877
+ }[];
1878
+ mode: string;
1879
+ isHighlighted: boolean;
1880
+ hasVod: boolean;
1881
+ hasStream: boolean;
1882
+ } | {
1883
+ id: string;
1884
+ position: number;
1885
+ roundNumber: number;
1886
+ stageNumber: number;
1887
+ bracketType: null;
1888
+ roundTitle: string;
1889
+ status: string;
1890
+ winningSide: null;
1891
+ homeScore: null;
1892
+ awayScore: null;
1893
+ scheduledAt: string;
1894
+ videoGameType: string;
1895
+ homeMatchSide: {
1896
+ participant: null;
1897
+ placeholder: null;
1898
+ sourceMatchId: null;
1899
+ };
1900
+ awayMatchSide: {
1901
+ participant: null;
1902
+ placeholder: null;
1903
+ sourceMatchId: null;
1904
+ };
1905
+ games: {
1906
+ id: string;
1907
+ position: number;
1908
+ status: string;
1909
+ resultType: string;
1910
+ platform: string;
1911
+ homeScore: number;
1912
+ awayScore: number;
1913
+ }[];
1914
+ mode: string;
1915
+ isHighlighted: boolean;
1916
+ hasVod: boolean;
1917
+ hasStream: boolean;
1918
+ }>;