@drxsuperapp/sdk 1.1.14 → 1.1.16
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/.openapi-generator/FILES +10 -10
- package/api.ts +96 -92
- package/deploy.log +105 -356
- package/dist/api.d.ts +97 -93
- package/dist/api.js +4 -0
- package/docs/ApiPadelMatchesGet200ResponseInner.md +8 -8
- package/docs/ApiPadelMatchesGet200ResponseInnerSets.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.md +24 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStats.md +32 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsConnections.md +20 -0
- package/docs/ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md +22 -0
- package/docs/PadelApi.md +4 -4
- package/package.json +1 -1
- package/workflow.sh +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -387,330 +387,330 @@ export interface ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague {
|
|
|
387
387
|
/**
|
|
388
388
|
*
|
|
389
389
|
* @export
|
|
390
|
-
* @interface
|
|
390
|
+
* @interface ApiPadelMatchesGet200ResponseInner
|
|
391
391
|
*/
|
|
392
|
-
export interface
|
|
392
|
+
export interface ApiPadelMatchesGet200ResponseInner {
|
|
393
393
|
/**
|
|
394
394
|
*
|
|
395
395
|
* @type {number}
|
|
396
|
-
* @memberof
|
|
396
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
397
397
|
*/
|
|
398
398
|
'id': number;
|
|
399
399
|
/**
|
|
400
400
|
*
|
|
401
401
|
* @type {number}
|
|
402
|
-
* @memberof
|
|
402
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
403
403
|
*/
|
|
404
404
|
'tournamentId': number;
|
|
405
405
|
/**
|
|
406
406
|
*
|
|
407
407
|
* @type {string}
|
|
408
|
-
* @memberof
|
|
408
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
409
409
|
*/
|
|
410
410
|
'name': string;
|
|
411
411
|
/**
|
|
412
412
|
*
|
|
413
413
|
* @type {number}
|
|
414
|
-
* @memberof
|
|
414
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
415
415
|
*/
|
|
416
416
|
'round': number;
|
|
417
417
|
/**
|
|
418
418
|
*
|
|
419
|
-
* @type {Array<
|
|
420
|
-
* @memberof
|
|
419
|
+
* @type {Array<ApiPadelMatchesGet200ResponseInnerScoreInner>}
|
|
420
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
421
421
|
*/
|
|
422
|
-
'score': Array<
|
|
422
|
+
'score': Array<ApiPadelMatchesGet200ResponseInnerScoreInner>;
|
|
423
423
|
/**
|
|
424
424
|
*
|
|
425
|
-
* @type {
|
|
426
|
-
* @memberof
|
|
425
|
+
* @type {ApiPadelMatchesGet200ResponseInnerPlayers}
|
|
426
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
427
427
|
*/
|
|
428
|
-
'players':
|
|
428
|
+
'players': ApiPadelMatchesGet200ResponseInnerPlayers;
|
|
429
429
|
/**
|
|
430
430
|
*
|
|
431
431
|
* @type {string}
|
|
432
|
-
* @memberof
|
|
432
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
433
433
|
*/
|
|
434
434
|
'playedAt': string;
|
|
435
435
|
/**
|
|
436
436
|
*
|
|
437
437
|
* @type {string}
|
|
438
|
-
* @memberof
|
|
438
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
439
439
|
*/
|
|
440
440
|
'status': string;
|
|
441
441
|
/**
|
|
442
442
|
*
|
|
443
443
|
* @type {string}
|
|
444
|
-
* @memberof
|
|
444
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
445
445
|
*/
|
|
446
446
|
'category': string;
|
|
447
447
|
/**
|
|
448
448
|
*
|
|
449
449
|
* @type {string}
|
|
450
|
-
* @memberof
|
|
450
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
451
451
|
*/
|
|
452
452
|
'duration': string | null;
|
|
453
453
|
/**
|
|
454
454
|
*
|
|
455
455
|
* @type {string}
|
|
456
|
-
* @memberof
|
|
456
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
457
457
|
*/
|
|
458
458
|
'court': string | null;
|
|
459
459
|
/**
|
|
460
460
|
*
|
|
461
|
-
* @type {
|
|
462
|
-
* @memberof
|
|
461
|
+
* @type {ApiPadelMatchesGet200ResponseInnerStats}
|
|
462
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
463
463
|
*/
|
|
464
|
-
'stats':
|
|
464
|
+
'stats': ApiPadelMatchesGet200ResponseInnerStats;
|
|
465
465
|
/**
|
|
466
466
|
*
|
|
467
|
-
* @type {
|
|
468
|
-
* @memberof
|
|
467
|
+
* @type {ApiPadelMatchesGet200ResponseInnerSets}
|
|
468
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
469
469
|
*/
|
|
470
|
-
'sets':
|
|
470
|
+
'sets': ApiPadelMatchesGet200ResponseInnerSets;
|
|
471
471
|
/**
|
|
472
472
|
*
|
|
473
473
|
* @type {string}
|
|
474
|
-
* @memberof
|
|
474
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
475
475
|
*/
|
|
476
476
|
'createdAt': string;
|
|
477
477
|
/**
|
|
478
478
|
*
|
|
479
479
|
* @type {string}
|
|
480
|
-
* @memberof
|
|
480
|
+
* @memberof ApiPadelMatchesGet200ResponseInner
|
|
481
481
|
*/
|
|
482
482
|
'updatedAt': string;
|
|
483
483
|
}
|
|
484
484
|
/**
|
|
485
485
|
*
|
|
486
486
|
* @export
|
|
487
|
-
* @interface
|
|
487
|
+
* @interface ApiPadelMatchesGet200ResponseInnerPlayers
|
|
488
488
|
*/
|
|
489
|
-
export interface
|
|
489
|
+
export interface ApiPadelMatchesGet200ResponseInnerPlayers {
|
|
490
490
|
/**
|
|
491
491
|
*
|
|
492
|
-
* @type {Array<
|
|
493
|
-
* @memberof
|
|
492
|
+
* @type {Array<ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner>}
|
|
493
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayers
|
|
494
494
|
*/
|
|
495
|
-
'team_1': Array<
|
|
495
|
+
'team_1': Array<ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner>;
|
|
496
496
|
/**
|
|
497
497
|
*
|
|
498
|
-
* @type {Array<
|
|
499
|
-
* @memberof
|
|
498
|
+
* @type {Array<ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner>}
|
|
499
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayers
|
|
500
500
|
*/
|
|
501
|
-
'team_2': Array<
|
|
501
|
+
'team_2': Array<ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner>;
|
|
502
502
|
}
|
|
503
503
|
/**
|
|
504
504
|
*
|
|
505
505
|
* @export
|
|
506
|
-
* @interface
|
|
506
|
+
* @interface ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
|
|
507
507
|
*/
|
|
508
|
-
export interface
|
|
508
|
+
export interface ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner {
|
|
509
509
|
/**
|
|
510
510
|
*
|
|
511
511
|
* @type {number}
|
|
512
|
-
* @memberof
|
|
512
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
|
|
513
513
|
*/
|
|
514
514
|
'id': number;
|
|
515
515
|
/**
|
|
516
516
|
*
|
|
517
517
|
* @type {string}
|
|
518
|
-
* @memberof
|
|
518
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
|
|
519
519
|
*/
|
|
520
520
|
'name': string;
|
|
521
521
|
/**
|
|
522
522
|
*
|
|
523
523
|
* @type {string}
|
|
524
|
-
* @memberof
|
|
524
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
|
|
525
525
|
*/
|
|
526
526
|
'self': string;
|
|
527
527
|
/**
|
|
528
528
|
*
|
|
529
529
|
* @type {string}
|
|
530
|
-
* @memberof
|
|
530
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerPlayersTeam1Inner
|
|
531
531
|
*/
|
|
532
532
|
'side': string;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
536
|
* @export
|
|
537
|
-
* @interface
|
|
537
|
+
* @interface ApiPadelMatchesGet200ResponseInnerScoreInner
|
|
538
538
|
*/
|
|
539
|
-
export interface
|
|
539
|
+
export interface ApiPadelMatchesGet200ResponseInnerScoreInner {
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
542
|
* @type {number}
|
|
543
|
-
* @memberof
|
|
543
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerScoreInner
|
|
544
544
|
*/
|
|
545
545
|
'team_1': number;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
548
|
* @type {number}
|
|
549
|
-
* @memberof
|
|
549
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerScoreInner
|
|
550
550
|
*/
|
|
551
551
|
'team_2': number;
|
|
552
552
|
}
|
|
553
553
|
/**
|
|
554
554
|
*
|
|
555
555
|
* @export
|
|
556
|
-
* @interface
|
|
556
|
+
* @interface ApiPadelMatchesGet200ResponseInnerSets
|
|
557
557
|
*/
|
|
558
|
-
export interface
|
|
558
|
+
export interface ApiPadelMatchesGet200ResponseInnerSets {
|
|
559
559
|
/**
|
|
560
560
|
*
|
|
561
561
|
* @type {number}
|
|
562
|
-
* @memberof
|
|
562
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSets
|
|
563
563
|
*/
|
|
564
564
|
'id': number;
|
|
565
565
|
/**
|
|
566
566
|
*
|
|
567
567
|
* @type {string}
|
|
568
|
-
* @memberof
|
|
568
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSets
|
|
569
569
|
*/
|
|
570
570
|
'self': string;
|
|
571
571
|
/**
|
|
572
572
|
*
|
|
573
|
-
* @type {Array<
|
|
574
|
-
* @memberof
|
|
573
|
+
* @type {Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInner>}
|
|
574
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSets
|
|
575
575
|
*/
|
|
576
|
-
'sets': Array<
|
|
576
|
+
'sets': Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInner>;
|
|
577
577
|
/**
|
|
578
578
|
*
|
|
579
|
-
* @type {
|
|
580
|
-
* @memberof
|
|
579
|
+
* @type {ApiPadelMatchesGet200ResponseInnerStatsConnections}
|
|
580
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSets
|
|
581
581
|
*/
|
|
582
|
-
'connections':
|
|
582
|
+
'connections': ApiPadelMatchesGet200ResponseInnerStatsConnections;
|
|
583
583
|
}
|
|
584
584
|
/**
|
|
585
585
|
*
|
|
586
586
|
* @export
|
|
587
|
-
* @interface
|
|
587
|
+
* @interface ApiPadelMatchesGet200ResponseInnerSetsSetsInner
|
|
588
588
|
*/
|
|
589
|
-
export interface
|
|
589
|
+
export interface ApiPadelMatchesGet200ResponseInnerSetsSetsInner {
|
|
590
590
|
/**
|
|
591
591
|
*
|
|
592
|
-
* @type {Array<
|
|
593
|
-
* @memberof
|
|
592
|
+
* @type {Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner>}
|
|
593
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSetsSetsInner
|
|
594
594
|
*/
|
|
595
|
-
'games': Array<
|
|
595
|
+
'games': Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner>;
|
|
596
596
|
/**
|
|
597
597
|
*
|
|
598
598
|
* @type {number}
|
|
599
|
-
* @memberof
|
|
599
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSetsSetsInner
|
|
600
600
|
*/
|
|
601
601
|
'set_number': number;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
604
604
|
*
|
|
605
605
|
* @export
|
|
606
|
-
* @interface
|
|
606
|
+
* @interface ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner
|
|
607
607
|
*/
|
|
608
|
-
export interface
|
|
608
|
+
export interface ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner {
|
|
609
609
|
/**
|
|
610
610
|
*
|
|
611
611
|
* @type {Array<string>}
|
|
612
|
-
* @memberof
|
|
612
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner
|
|
613
613
|
*/
|
|
614
614
|
'points': Array<string>;
|
|
615
615
|
/**
|
|
616
616
|
*
|
|
617
617
|
* @type {string}
|
|
618
|
-
* @memberof
|
|
618
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner
|
|
619
619
|
*/
|
|
620
620
|
'game_score': string;
|
|
621
621
|
/**
|
|
622
622
|
*
|
|
623
623
|
* @type {number}
|
|
624
|
-
* @memberof
|
|
624
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner
|
|
625
625
|
*/
|
|
626
626
|
'game_number': number;
|
|
627
627
|
}
|
|
628
628
|
/**
|
|
629
629
|
*
|
|
630
630
|
* @export
|
|
631
|
-
* @interface
|
|
631
|
+
* @interface ApiPadelMatchesGet200ResponseInnerStats
|
|
632
632
|
*/
|
|
633
|
-
export interface
|
|
633
|
+
export interface ApiPadelMatchesGet200ResponseInnerStats {
|
|
634
634
|
/**
|
|
635
635
|
*
|
|
636
636
|
* @type {number}
|
|
637
|
-
* @memberof
|
|
637
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
638
638
|
*/
|
|
639
639
|
'id': number;
|
|
640
640
|
/**
|
|
641
641
|
*
|
|
642
642
|
* @type {string}
|
|
643
|
-
* @memberof
|
|
643
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
644
644
|
*/
|
|
645
645
|
'self': string;
|
|
646
646
|
/**
|
|
647
647
|
*
|
|
648
|
-
* @type {{ [key: string]:
|
|
649
|
-
* @memberof
|
|
648
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }}
|
|
649
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
650
650
|
*/
|
|
651
651
|
'match': {
|
|
652
|
-
[key: string]:
|
|
652
|
+
[key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue;
|
|
653
653
|
};
|
|
654
654
|
/**
|
|
655
655
|
*
|
|
656
|
-
* @type {{ [key: string]:
|
|
657
|
-
* @memberof
|
|
656
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }}
|
|
657
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
658
658
|
*/
|
|
659
659
|
'set_1': {
|
|
660
|
-
[key: string]:
|
|
660
|
+
[key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue;
|
|
661
661
|
};
|
|
662
662
|
/**
|
|
663
663
|
*
|
|
664
|
-
* @type {{ [key: string]:
|
|
665
|
-
* @memberof
|
|
664
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }}
|
|
665
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
666
666
|
*/
|
|
667
667
|
'set_2': {
|
|
668
|
-
[key: string]:
|
|
668
|
+
[key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue;
|
|
669
669
|
};
|
|
670
670
|
/**
|
|
671
671
|
*
|
|
672
|
-
* @type {{ [key: string]:
|
|
673
|
-
* @memberof
|
|
672
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }}
|
|
673
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
674
674
|
*/
|
|
675
675
|
'set_3'?: {
|
|
676
|
-
[key: string]:
|
|
676
|
+
[key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue;
|
|
677
677
|
};
|
|
678
678
|
/**
|
|
679
679
|
*
|
|
680
|
-
* @type {
|
|
681
|
-
* @memberof
|
|
680
|
+
* @type {ApiPadelMatchesGet200ResponseInnerStatsConnections}
|
|
681
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStats
|
|
682
682
|
*/
|
|
683
|
-
'connections':
|
|
683
|
+
'connections': ApiPadelMatchesGet200ResponseInnerStatsConnections;
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
*
|
|
687
687
|
* @export
|
|
688
|
-
* @interface
|
|
688
|
+
* @interface ApiPadelMatchesGet200ResponseInnerStatsConnections
|
|
689
689
|
*/
|
|
690
|
-
export interface
|
|
690
|
+
export interface ApiPadelMatchesGet200ResponseInnerStatsConnections {
|
|
691
691
|
/**
|
|
692
692
|
*
|
|
693
693
|
* @type {string}
|
|
694
|
-
* @memberof
|
|
694
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStatsConnections
|
|
695
695
|
*/
|
|
696
696
|
'match': string;
|
|
697
697
|
}
|
|
698
698
|
/**
|
|
699
699
|
*
|
|
700
700
|
* @export
|
|
701
|
-
* @interface
|
|
701
|
+
* @interface ApiPadelMatchesGet200ResponseInnerStatsMatchValue
|
|
702
702
|
*/
|
|
703
|
-
export interface
|
|
703
|
+
export interface ApiPadelMatchesGet200ResponseInnerStatsMatchValue {
|
|
704
704
|
/**
|
|
705
705
|
*
|
|
706
706
|
* @type {string}
|
|
707
|
-
* @memberof
|
|
707
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStatsMatchValue
|
|
708
708
|
*/
|
|
709
709
|
'team_1': string;
|
|
710
710
|
/**
|
|
711
711
|
*
|
|
712
712
|
* @type {string}
|
|
713
|
-
* @memberof
|
|
713
|
+
* @memberof ApiPadelMatchesGet200ResponseInnerStatsMatchValue
|
|
714
714
|
*/
|
|
715
715
|
'team_2': string;
|
|
716
716
|
}
|
|
@@ -1047,6 +1047,7 @@ export declare class NewsApi extends BaseAPI {
|
|
|
1047
1047
|
export declare const PadelApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1048
1048
|
/**
|
|
1049
1049
|
*
|
|
1050
|
+
* @summary List padel matches
|
|
1050
1051
|
* @param {*} [options] Override http request option.
|
|
1051
1052
|
* @throws {RequiredError}
|
|
1052
1053
|
*/
|
|
@@ -1059,10 +1060,11 @@ export declare const PadelApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1059
1060
|
export declare const PadelApiFp: (configuration?: Configuration) => {
|
|
1060
1061
|
/**
|
|
1061
1062
|
*
|
|
1063
|
+
* @summary List padel matches
|
|
1062
1064
|
* @param {*} [options] Override http request option.
|
|
1063
1065
|
* @throws {RequiredError}
|
|
1064
1066
|
*/
|
|
1065
|
-
apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1067
|
+
apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ApiPadelMatchesGet200ResponseInner>>>;
|
|
1066
1068
|
};
|
|
1067
1069
|
/**
|
|
1068
1070
|
* PadelApi - factory interface
|
|
@@ -1071,10 +1073,11 @@ export declare const PadelApiFp: (configuration?: Configuration) => {
|
|
|
1071
1073
|
export declare const PadelApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1072
1074
|
/**
|
|
1073
1075
|
*
|
|
1076
|
+
* @summary List padel matches
|
|
1074
1077
|
* @param {*} [options] Override http request option.
|
|
1075
1078
|
* @throws {RequiredError}
|
|
1076
1079
|
*/
|
|
1077
|
-
apiPadelMatchesGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1080
|
+
apiPadelMatchesGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<ApiPadelMatchesGet200ResponseInner>>;
|
|
1078
1081
|
};
|
|
1079
1082
|
/**
|
|
1080
1083
|
* PadelApi - object-oriented interface
|
|
@@ -1085,9 +1088,10 @@ export declare const PadelApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1085
1088
|
export declare class PadelApi extends BaseAPI {
|
|
1086
1089
|
/**
|
|
1087
1090
|
*
|
|
1091
|
+
* @summary List padel matches
|
|
1088
1092
|
* @param {*} [options] Override http request option.
|
|
1089
1093
|
* @throws {RequiredError}
|
|
1090
1094
|
* @memberof PadelApi
|
|
1091
1095
|
*/
|
|
1092
|
-
apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1096
|
+
apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiPadelMatchesGet200ResponseInner[], any>>;
|
|
1093
1097
|
}
|
package/dist/api.js
CHANGED
|
@@ -625,6 +625,7 @@ export const PadelApiAxiosParamCreator = function (configuration) {
|
|
|
625
625
|
return {
|
|
626
626
|
/**
|
|
627
627
|
*
|
|
628
|
+
* @summary List padel matches
|
|
628
629
|
* @param {*} [options] Override http request option.
|
|
629
630
|
* @throws {RequiredError}
|
|
630
631
|
*/
|
|
@@ -658,6 +659,7 @@ export const PadelApiFp = function (configuration) {
|
|
|
658
659
|
return {
|
|
659
660
|
/**
|
|
660
661
|
*
|
|
662
|
+
* @summary List padel matches
|
|
661
663
|
* @param {*} [options] Override http request option.
|
|
662
664
|
* @throws {RequiredError}
|
|
663
665
|
*/
|
|
@@ -678,6 +680,7 @@ export const PadelApiFactory = function (configuration, basePath, axios) {
|
|
|
678
680
|
return {
|
|
679
681
|
/**
|
|
680
682
|
*
|
|
683
|
+
* @summary List padel matches
|
|
681
684
|
* @param {*} [options] Override http request option.
|
|
682
685
|
* @throws {RequiredError}
|
|
683
686
|
*/
|
|
@@ -695,6 +698,7 @@ export const PadelApiFactory = function (configuration, basePath, axios) {
|
|
|
695
698
|
export class PadelApi extends BaseAPI {
|
|
696
699
|
/**
|
|
697
700
|
*
|
|
701
|
+
* @summary List padel matches
|
|
698
702
|
* @param {*} [options] Override http request option.
|
|
699
703
|
* @throws {RequiredError}
|
|
700
704
|
* @memberof PadelApi
|
|
@@ -7,10 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **number** | | [default to undefined]
|
|
9
9
|
**tournamentId** | **number** | | [default to undefined]
|
|
10
|
-
**tournamentName** | **string** | | [default to undefined]
|
|
11
|
-
**tournamentLocation** | **string** | | [default to undefined]
|
|
12
|
-
**tournamentCountry** | **string** | | [default to undefined]
|
|
13
|
-
**tournamentUrl** | **string** | | [default to undefined]
|
|
14
10
|
**name** | **string** | | [default to undefined]
|
|
15
11
|
**round** | **number** | | [default to undefined]
|
|
16
12
|
**score** | [**Array<ApiPadelMatchesGet200ResponseInnerScoreInner>**](ApiPadelMatchesGet200ResponseInnerScoreInner.md) | | [default to undefined]
|
|
@@ -18,6 +14,10 @@ Name | Type | Description | Notes
|
|
|
18
14
|
**playedAt** | **string** | | [default to undefined]
|
|
19
15
|
**status** | **string** | | [default to undefined]
|
|
20
16
|
**category** | **string** | | [default to undefined]
|
|
17
|
+
**duration** | **string** | | [default to undefined]
|
|
18
|
+
**court** | **string** | | [default to undefined]
|
|
19
|
+
**stats** | [**ApiPadelMatchesGet200ResponseInnerStats**](ApiPadelMatchesGet200ResponseInnerStats.md) | | [default to undefined]
|
|
20
|
+
**sets** | [**ApiPadelMatchesGet200ResponseInnerSets**](ApiPadelMatchesGet200ResponseInnerSets.md) | | [default to undefined]
|
|
21
21
|
**createdAt** | **string** | | [default to undefined]
|
|
22
22
|
**updatedAt** | **string** | | [default to undefined]
|
|
23
23
|
|
|
@@ -29,10 +29,6 @@ import { ApiPadelMatchesGet200ResponseInner } from './api';
|
|
|
29
29
|
const instance: ApiPadelMatchesGet200ResponseInner = {
|
|
30
30
|
id,
|
|
31
31
|
tournamentId,
|
|
32
|
-
tournamentName,
|
|
33
|
-
tournamentLocation,
|
|
34
|
-
tournamentCountry,
|
|
35
|
-
tournamentUrl,
|
|
36
32
|
name,
|
|
37
33
|
round,
|
|
38
34
|
score,
|
|
@@ -40,6 +36,10 @@ const instance: ApiPadelMatchesGet200ResponseInner = {
|
|
|
40
36
|
playedAt,
|
|
41
37
|
status,
|
|
42
38
|
category,
|
|
39
|
+
duration,
|
|
40
|
+
court,
|
|
41
|
+
stats,
|
|
42
|
+
sets,
|
|
43
43
|
createdAt,
|
|
44
44
|
updatedAt,
|
|
45
45
|
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerSets
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [default to undefined]
|
|
9
|
+
**self** | **string** | | [default to undefined]
|
|
10
|
+
**sets** | [**Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInner>**](ApiPadelMatchesGet200ResponseInnerSetsSetsInner.md) | | [default to undefined]
|
|
11
|
+
**connections** | [**ApiPadelMatchesGet200ResponseInnerStatsConnections**](ApiPadelMatchesGet200ResponseInnerStatsConnections.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ApiPadelMatchesGet200ResponseInnerSets } from './api';
|
|
17
|
+
|
|
18
|
+
const instance: ApiPadelMatchesGet200ResponseInnerSets = {
|
|
19
|
+
id,
|
|
20
|
+
self,
|
|
21
|
+
sets,
|
|
22
|
+
connections,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerSetsSetsInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**games** | [**Array<ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner>**](ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner.md) | | [default to undefined]
|
|
9
|
+
**set_number** | **number** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ApiPadelMatchesGet200ResponseInnerSetsSetsInner } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: ApiPadelMatchesGet200ResponseInnerSetsSetsInner = {
|
|
17
|
+
games,
|
|
18
|
+
set_number,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**points** | **Array<string>** | | [default to undefined]
|
|
9
|
+
**game_score** | **string** | | [default to undefined]
|
|
10
|
+
**game_number** | **number** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner } from './api';
|
|
16
|
+
|
|
17
|
+
const instance: ApiPadelMatchesGet200ResponseInnerSetsSetsInnerGamesInner = {
|
|
18
|
+
points,
|
|
19
|
+
game_score,
|
|
20
|
+
game_number,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerStats
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [default to undefined]
|
|
9
|
+
**self** | **string** | | [default to undefined]
|
|
10
|
+
**match** | [**{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }**](ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md) | | [default to undefined]
|
|
11
|
+
**set_1** | [**{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }**](ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md) | | [default to undefined]
|
|
12
|
+
**set_2** | [**{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }**](ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md) | | [default to undefined]
|
|
13
|
+
**set_3** | [**{ [key: string]: ApiPadelMatchesGet200ResponseInnerStatsMatchValue; }**](ApiPadelMatchesGet200ResponseInnerStatsMatchValue.md) | | [optional] [default to undefined]
|
|
14
|
+
**connections** | [**ApiPadelMatchesGet200ResponseInnerStatsConnections**](ApiPadelMatchesGet200ResponseInnerStatsConnections.md) | | [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { ApiPadelMatchesGet200ResponseInnerStats } from './api';
|
|
20
|
+
|
|
21
|
+
const instance: ApiPadelMatchesGet200ResponseInnerStats = {
|
|
22
|
+
id,
|
|
23
|
+
self,
|
|
24
|
+
match,
|
|
25
|
+
set_1,
|
|
26
|
+
set_2,
|
|
27
|
+
set_3,
|
|
28
|
+
connections,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ApiPadelMatchesGet200ResponseInnerStatsConnections
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**match** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ApiPadelMatchesGet200ResponseInnerStatsConnections } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: ApiPadelMatchesGet200ResponseInnerStatsConnections = {
|
|
16
|
+
match,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|