@drxsuperapp/sdk 1.1.9 → 1.1.11
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 +12 -4
- package/api.ts +346 -56
- package/deploy.log +34 -29
- package/dist/api.d.ts +309 -57
- package/dist/api.js +86 -0
- package/docs/ApiHealthCheckGet200Response.md +26 -0
- package/docs/ApiNewsIdGet200ResponseResponseObject.md +2 -0
- package/docs/ApiPadelMatchesGet200Response.md +48 -0
- package/docs/ApiPadelMatchesGet200ResponsePlayers.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponsePlayersTeam1Inner.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseScoreInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseSets.md +26 -0
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInner.md +22 -0
- package/docs/ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner.md +24 -0
- package/docs/ApiPadelMatchesGet200ResponseStats.md +32 -0
- package/docs/ApiPadelMatchesGet200ResponseStatsConnections.md +20 -0
- package/docs/ApiPadelMatchesGet200ResponseStatsMatchValue.md +22 -0
- package/docs/HealthCheckApi.md +51 -0
- package/docs/PadelApi.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -7,6 +7,7 @@ configuration.ts
|
|
|
7
7
|
docs/ApiExamplesGet200ResponseInner.md
|
|
8
8
|
docs/ApiExamplesIdPutRequest.md
|
|
9
9
|
docs/ApiExamplesPostRequest.md
|
|
10
|
+
docs/ApiHealthCheckGet200Response.md
|
|
10
11
|
docs/ApiNewsGet200Response.md
|
|
11
12
|
docs/ApiNewsGet200ResponseResponseObject.md
|
|
12
13
|
docs/ApiNewsGet200ResponseResponseObjectItemsInner.md
|
|
@@ -14,11 +15,18 @@ docs/ApiNewsIdGet200Response.md
|
|
|
14
15
|
docs/ApiNewsIdGet200ResponseResponseObject.md
|
|
15
16
|
docs/ApiNewsIdGet200ResponseResponseObjectLeaguesInner.md
|
|
16
17
|
docs/ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague.md
|
|
17
|
-
docs/
|
|
18
|
-
docs/
|
|
19
|
-
docs/
|
|
20
|
-
docs/
|
|
18
|
+
docs/ApiPadelMatchesGet200Response.md
|
|
19
|
+
docs/ApiPadelMatchesGet200ResponsePlayers.md
|
|
20
|
+
docs/ApiPadelMatchesGet200ResponsePlayersTeam1Inner.md
|
|
21
|
+
docs/ApiPadelMatchesGet200ResponseScoreInner.md
|
|
22
|
+
docs/ApiPadelMatchesGet200ResponseSets.md
|
|
23
|
+
docs/ApiPadelMatchesGet200ResponseSetsSetsInner.md
|
|
24
|
+
docs/ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner.md
|
|
25
|
+
docs/ApiPadelMatchesGet200ResponseStats.md
|
|
26
|
+
docs/ApiPadelMatchesGet200ResponseStatsConnections.md
|
|
27
|
+
docs/ApiPadelMatchesGet200ResponseStatsMatchValue.md
|
|
21
28
|
docs/ExampleApi.md
|
|
29
|
+
docs/HealthCheckApi.md
|
|
22
30
|
docs/NewsApi.md
|
|
23
31
|
docs/PadelApi.md
|
|
24
32
|
git_push.sh
|
package/api.ts
CHANGED
|
@@ -98,6 +98,37 @@ export interface ApiExamplesPostRequest {
|
|
|
98
98
|
*/
|
|
99
99
|
'email': string;
|
|
100
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @export
|
|
104
|
+
* @interface ApiHealthCheckGet200Response
|
|
105
|
+
*/
|
|
106
|
+
export interface ApiHealthCheckGet200Response {
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {boolean}
|
|
110
|
+
* @memberof ApiHealthCheckGet200Response
|
|
111
|
+
*/
|
|
112
|
+
'success': boolean;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof ApiHealthCheckGet200Response
|
|
117
|
+
*/
|
|
118
|
+
'message': string;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {any}
|
|
122
|
+
* @memberof ApiHealthCheckGet200Response
|
|
123
|
+
*/
|
|
124
|
+
'responseObject'?: any | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof ApiHealthCheckGet200Response
|
|
129
|
+
*/
|
|
130
|
+
'statusCode': number;
|
|
131
|
+
}
|
|
101
132
|
/**
|
|
102
133
|
*
|
|
103
134
|
* @export
|
|
@@ -318,6 +349,12 @@ export interface ApiNewsIdGet200ResponseResponseObject {
|
|
|
318
349
|
* @memberof ApiNewsIdGet200ResponseResponseObject
|
|
319
350
|
*/
|
|
320
351
|
'leagues': Array<ApiNewsIdGet200ResponseResponseObjectLeaguesInner>;
|
|
352
|
+
/**
|
|
353
|
+
*
|
|
354
|
+
* @type {Array<ApiNewsGet200ResponseResponseObjectItemsInner>}
|
|
355
|
+
* @memberof ApiNewsIdGet200ResponseResponseObject
|
|
356
|
+
*/
|
|
357
|
+
'relatedNews': Array<ApiNewsGet200ResponseResponseObjectItemsInner>;
|
|
321
358
|
}
|
|
322
359
|
/**
|
|
323
360
|
*
|
|
@@ -360,169 +397,325 @@ export interface ApiNewsIdGet200ResponseResponseObjectLeaguesInnerLeague {
|
|
|
360
397
|
/**
|
|
361
398
|
*
|
|
362
399
|
* @export
|
|
363
|
-
* @interface
|
|
400
|
+
* @interface ApiPadelMatchesGet200Response
|
|
364
401
|
*/
|
|
365
|
-
export interface
|
|
402
|
+
export interface ApiPadelMatchesGet200Response {
|
|
366
403
|
/**
|
|
367
404
|
*
|
|
368
405
|
* @type {number}
|
|
369
|
-
* @memberof
|
|
406
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
370
407
|
*/
|
|
371
408
|
'id': number;
|
|
372
409
|
/**
|
|
373
410
|
*
|
|
374
411
|
* @type {number}
|
|
375
|
-
* @memberof
|
|
412
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
376
413
|
*/
|
|
377
414
|
'tournamentId': number;
|
|
378
415
|
/**
|
|
379
416
|
*
|
|
380
417
|
* @type {string}
|
|
381
|
-
* @memberof
|
|
418
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
382
419
|
*/
|
|
383
|
-
'
|
|
420
|
+
'name': string;
|
|
384
421
|
/**
|
|
385
422
|
*
|
|
386
|
-
* @type {
|
|
387
|
-
* @memberof
|
|
423
|
+
* @type {number}
|
|
424
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
388
425
|
*/
|
|
389
|
-
'
|
|
426
|
+
'round': number;
|
|
390
427
|
/**
|
|
391
428
|
*
|
|
392
|
-
* @type {
|
|
393
|
-
* @memberof
|
|
429
|
+
* @type {Array<ApiPadelMatchesGet200ResponseScoreInner>}
|
|
430
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
394
431
|
*/
|
|
395
|
-
'
|
|
432
|
+
'score': Array<ApiPadelMatchesGet200ResponseScoreInner>;
|
|
396
433
|
/**
|
|
397
434
|
*
|
|
398
|
-
* @type {
|
|
399
|
-
* @memberof
|
|
435
|
+
* @type {ApiPadelMatchesGet200ResponsePlayers}
|
|
436
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
400
437
|
*/
|
|
401
|
-
'
|
|
438
|
+
'players': ApiPadelMatchesGet200ResponsePlayers;
|
|
402
439
|
/**
|
|
403
440
|
*
|
|
404
441
|
* @type {string}
|
|
405
|
-
* @memberof
|
|
442
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
406
443
|
*/
|
|
407
|
-
'
|
|
444
|
+
'playedAt': string;
|
|
408
445
|
/**
|
|
409
446
|
*
|
|
410
|
-
* @type {
|
|
411
|
-
* @memberof
|
|
447
|
+
* @type {string}
|
|
448
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
412
449
|
*/
|
|
413
|
-
'
|
|
450
|
+
'status': string;
|
|
414
451
|
/**
|
|
415
452
|
*
|
|
416
|
-
* @type {
|
|
417
|
-
* @memberof
|
|
453
|
+
* @type {string}
|
|
454
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
418
455
|
*/
|
|
419
|
-
'
|
|
456
|
+
'category': string;
|
|
420
457
|
/**
|
|
421
458
|
*
|
|
422
|
-
* @type {
|
|
423
|
-
* @memberof
|
|
459
|
+
* @type {string}
|
|
460
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
424
461
|
*/
|
|
425
|
-
'
|
|
462
|
+
'duration': string | null;
|
|
426
463
|
/**
|
|
427
464
|
*
|
|
428
465
|
* @type {string}
|
|
429
|
-
* @memberof
|
|
466
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
430
467
|
*/
|
|
431
|
-
'
|
|
468
|
+
'court': string | null;
|
|
432
469
|
/**
|
|
433
470
|
*
|
|
434
|
-
* @type {
|
|
435
|
-
* @memberof
|
|
471
|
+
* @type {ApiPadelMatchesGet200ResponseStats}
|
|
472
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
436
473
|
*/
|
|
437
|
-
'
|
|
474
|
+
'stats': ApiPadelMatchesGet200ResponseStats;
|
|
438
475
|
/**
|
|
439
476
|
*
|
|
440
|
-
* @type {
|
|
441
|
-
* @memberof
|
|
477
|
+
* @type {ApiPadelMatchesGet200ResponseSets}
|
|
478
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
442
479
|
*/
|
|
443
|
-
'
|
|
480
|
+
'sets': ApiPadelMatchesGet200ResponseSets;
|
|
444
481
|
/**
|
|
445
482
|
*
|
|
446
483
|
* @type {string}
|
|
447
|
-
* @memberof
|
|
484
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
448
485
|
*/
|
|
449
486
|
'createdAt': string;
|
|
450
487
|
/**
|
|
451
488
|
*
|
|
452
489
|
* @type {string}
|
|
453
|
-
* @memberof
|
|
490
|
+
* @memberof ApiPadelMatchesGet200Response
|
|
454
491
|
*/
|
|
455
492
|
'updatedAt': string;
|
|
456
493
|
}
|
|
457
494
|
/**
|
|
458
495
|
*
|
|
459
496
|
* @export
|
|
460
|
-
* @interface
|
|
497
|
+
* @interface ApiPadelMatchesGet200ResponsePlayers
|
|
461
498
|
*/
|
|
462
|
-
export interface
|
|
499
|
+
export interface ApiPadelMatchesGet200ResponsePlayers {
|
|
463
500
|
/**
|
|
464
501
|
*
|
|
465
|
-
* @type {Array<
|
|
466
|
-
* @memberof
|
|
502
|
+
* @type {Array<ApiPadelMatchesGet200ResponsePlayersTeam1Inner>}
|
|
503
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayers
|
|
467
504
|
*/
|
|
468
|
-
'team_1': Array<
|
|
505
|
+
'team_1': Array<ApiPadelMatchesGet200ResponsePlayersTeam1Inner>;
|
|
469
506
|
/**
|
|
470
507
|
*
|
|
471
|
-
* @type {Array<
|
|
472
|
-
* @memberof
|
|
508
|
+
* @type {Array<ApiPadelMatchesGet200ResponsePlayersTeam1Inner>}
|
|
509
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayers
|
|
473
510
|
*/
|
|
474
|
-
'team_2': Array<
|
|
511
|
+
'team_2': Array<ApiPadelMatchesGet200ResponsePlayersTeam1Inner>;
|
|
475
512
|
}
|
|
476
513
|
/**
|
|
477
514
|
*
|
|
478
515
|
* @export
|
|
479
|
-
* @interface
|
|
516
|
+
* @interface ApiPadelMatchesGet200ResponsePlayersTeam1Inner
|
|
480
517
|
*/
|
|
481
|
-
export interface
|
|
518
|
+
export interface ApiPadelMatchesGet200ResponsePlayersTeam1Inner {
|
|
482
519
|
/**
|
|
483
520
|
*
|
|
484
521
|
* @type {number}
|
|
485
|
-
* @memberof
|
|
522
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayersTeam1Inner
|
|
486
523
|
*/
|
|
487
524
|
'id': number;
|
|
488
525
|
/**
|
|
489
526
|
*
|
|
490
527
|
* @type {string}
|
|
491
|
-
* @memberof
|
|
528
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayersTeam1Inner
|
|
492
529
|
*/
|
|
493
530
|
'name': string;
|
|
494
531
|
/**
|
|
495
532
|
*
|
|
496
533
|
* @type {string}
|
|
497
|
-
* @memberof
|
|
534
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayersTeam1Inner
|
|
498
535
|
*/
|
|
499
536
|
'self': string;
|
|
500
537
|
/**
|
|
501
538
|
*
|
|
502
539
|
* @type {string}
|
|
503
|
-
* @memberof
|
|
540
|
+
* @memberof ApiPadelMatchesGet200ResponsePlayersTeam1Inner
|
|
504
541
|
*/
|
|
505
542
|
'side': string;
|
|
506
543
|
}
|
|
507
544
|
/**
|
|
508
545
|
*
|
|
509
546
|
* @export
|
|
510
|
-
* @interface
|
|
547
|
+
* @interface ApiPadelMatchesGet200ResponseScoreInner
|
|
511
548
|
*/
|
|
512
|
-
export interface
|
|
549
|
+
export interface ApiPadelMatchesGet200ResponseScoreInner {
|
|
513
550
|
/**
|
|
514
551
|
*
|
|
515
552
|
* @type {number}
|
|
516
|
-
* @memberof
|
|
553
|
+
* @memberof ApiPadelMatchesGet200ResponseScoreInner
|
|
517
554
|
*/
|
|
518
555
|
'team_1': number;
|
|
519
556
|
/**
|
|
520
557
|
*
|
|
521
558
|
* @type {number}
|
|
522
|
-
* @memberof
|
|
559
|
+
* @memberof ApiPadelMatchesGet200ResponseScoreInner
|
|
523
560
|
*/
|
|
524
561
|
'team_2': number;
|
|
525
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @export
|
|
566
|
+
* @interface ApiPadelMatchesGet200ResponseSets
|
|
567
|
+
*/
|
|
568
|
+
export interface ApiPadelMatchesGet200ResponseSets {
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @type {number}
|
|
572
|
+
* @memberof ApiPadelMatchesGet200ResponseSets
|
|
573
|
+
*/
|
|
574
|
+
'id': number;
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof ApiPadelMatchesGet200ResponseSets
|
|
579
|
+
*/
|
|
580
|
+
'self': string;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {Array<ApiPadelMatchesGet200ResponseSetsSetsInner>}
|
|
584
|
+
* @memberof ApiPadelMatchesGet200ResponseSets
|
|
585
|
+
*/
|
|
586
|
+
'sets': Array<ApiPadelMatchesGet200ResponseSetsSetsInner>;
|
|
587
|
+
/**
|
|
588
|
+
*
|
|
589
|
+
* @type {ApiPadelMatchesGet200ResponseStatsConnections}
|
|
590
|
+
* @memberof ApiPadelMatchesGet200ResponseSets
|
|
591
|
+
*/
|
|
592
|
+
'connections': ApiPadelMatchesGet200ResponseStatsConnections;
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
*
|
|
596
|
+
* @export
|
|
597
|
+
* @interface ApiPadelMatchesGet200ResponseSetsSetsInner
|
|
598
|
+
*/
|
|
599
|
+
export interface ApiPadelMatchesGet200ResponseSetsSetsInner {
|
|
600
|
+
/**
|
|
601
|
+
*
|
|
602
|
+
* @type {Array<ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner>}
|
|
603
|
+
* @memberof ApiPadelMatchesGet200ResponseSetsSetsInner
|
|
604
|
+
*/
|
|
605
|
+
'games': Array<ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner>;
|
|
606
|
+
/**
|
|
607
|
+
*
|
|
608
|
+
* @type {number}
|
|
609
|
+
* @memberof ApiPadelMatchesGet200ResponseSetsSetsInner
|
|
610
|
+
*/
|
|
611
|
+
'set_number': number;
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
*
|
|
615
|
+
* @export
|
|
616
|
+
* @interface ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner
|
|
617
|
+
*/
|
|
618
|
+
export interface ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner {
|
|
619
|
+
/**
|
|
620
|
+
*
|
|
621
|
+
* @type {Array<string>}
|
|
622
|
+
* @memberof ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner
|
|
623
|
+
*/
|
|
624
|
+
'points': Array<string>;
|
|
625
|
+
/**
|
|
626
|
+
*
|
|
627
|
+
* @type {string}
|
|
628
|
+
* @memberof ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner
|
|
629
|
+
*/
|
|
630
|
+
'game_score': string;
|
|
631
|
+
/**
|
|
632
|
+
*
|
|
633
|
+
* @type {number}
|
|
634
|
+
* @memberof ApiPadelMatchesGet200ResponseSetsSetsInnerGamesInner
|
|
635
|
+
*/
|
|
636
|
+
'game_number': number;
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @export
|
|
641
|
+
* @interface ApiPadelMatchesGet200ResponseStats
|
|
642
|
+
*/
|
|
643
|
+
export interface ApiPadelMatchesGet200ResponseStats {
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {number}
|
|
647
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
648
|
+
*/
|
|
649
|
+
'id': number;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @type {string}
|
|
653
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
654
|
+
*/
|
|
655
|
+
'self': string;
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; }}
|
|
659
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
660
|
+
*/
|
|
661
|
+
'match': { [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; };
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; }}
|
|
665
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
666
|
+
*/
|
|
667
|
+
'set_1': { [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; };
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; }}
|
|
671
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
672
|
+
*/
|
|
673
|
+
'set_2': { [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; };
|
|
674
|
+
/**
|
|
675
|
+
*
|
|
676
|
+
* @type {{ [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; }}
|
|
677
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
678
|
+
*/
|
|
679
|
+
'set_3'?: { [key: string]: ApiPadelMatchesGet200ResponseStatsMatchValue; };
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {ApiPadelMatchesGet200ResponseStatsConnections}
|
|
683
|
+
* @memberof ApiPadelMatchesGet200ResponseStats
|
|
684
|
+
*/
|
|
685
|
+
'connections': ApiPadelMatchesGet200ResponseStatsConnections;
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @export
|
|
690
|
+
* @interface ApiPadelMatchesGet200ResponseStatsConnections
|
|
691
|
+
*/
|
|
692
|
+
export interface ApiPadelMatchesGet200ResponseStatsConnections {
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof ApiPadelMatchesGet200ResponseStatsConnections
|
|
697
|
+
*/
|
|
698
|
+
'match': string;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
*
|
|
702
|
+
* @export
|
|
703
|
+
* @interface ApiPadelMatchesGet200ResponseStatsMatchValue
|
|
704
|
+
*/
|
|
705
|
+
export interface ApiPadelMatchesGet200ResponseStatsMatchValue {
|
|
706
|
+
/**
|
|
707
|
+
*
|
|
708
|
+
* @type {string}
|
|
709
|
+
* @memberof ApiPadelMatchesGet200ResponseStatsMatchValue
|
|
710
|
+
*/
|
|
711
|
+
'team_1': string;
|
|
712
|
+
/**
|
|
713
|
+
*
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof ApiPadelMatchesGet200ResponseStatsMatchValue
|
|
716
|
+
*/
|
|
717
|
+
'team_2': string;
|
|
718
|
+
}
|
|
526
719
|
|
|
527
720
|
/**
|
|
528
721
|
* ExampleApi - axios parameter creator
|
|
@@ -904,6 +1097,103 @@ export class ExampleApi extends BaseAPI {
|
|
|
904
1097
|
|
|
905
1098
|
|
|
906
1099
|
|
|
1100
|
+
/**
|
|
1101
|
+
* HealthCheckApi - axios parameter creator
|
|
1102
|
+
* @export
|
|
1103
|
+
*/
|
|
1104
|
+
export const HealthCheckApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
1105
|
+
return {
|
|
1106
|
+
/**
|
|
1107
|
+
*
|
|
1108
|
+
* @param {*} [options] Override http request option.
|
|
1109
|
+
* @throws {RequiredError}
|
|
1110
|
+
*/
|
|
1111
|
+
apiHealthCheckGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1112
|
+
const localVarPath = `/api/healthCheck`;
|
|
1113
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1114
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1115
|
+
let baseOptions;
|
|
1116
|
+
if (configuration) {
|
|
1117
|
+
baseOptions = configuration.baseOptions;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
1121
|
+
const localVarHeaderParameter = {} as any;
|
|
1122
|
+
const localVarQueryParameter = {} as any;
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1128
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1129
|
+
|
|
1130
|
+
return {
|
|
1131
|
+
url: toPathString(localVarUrlObj),
|
|
1132
|
+
options: localVarRequestOptions,
|
|
1133
|
+
};
|
|
1134
|
+
},
|
|
1135
|
+
}
|
|
1136
|
+
};
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* HealthCheckApi - functional programming interface
|
|
1140
|
+
* @export
|
|
1141
|
+
*/
|
|
1142
|
+
export const HealthCheckApiFp = function(configuration?: Configuration) {
|
|
1143
|
+
const localVarAxiosParamCreator = HealthCheckApiAxiosParamCreator(configuration)
|
|
1144
|
+
return {
|
|
1145
|
+
/**
|
|
1146
|
+
*
|
|
1147
|
+
* @param {*} [options] Override http request option.
|
|
1148
|
+
* @throws {RequiredError}
|
|
1149
|
+
*/
|
|
1150
|
+
async apiHealthCheckGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiHealthCheckGet200Response>> {
|
|
1151
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiHealthCheckGet(options);
|
|
1152
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1153
|
+
const localVarOperationServerBasePath = operationServerMap['HealthCheckApi.apiHealthCheckGet']?.[localVarOperationServerIndex]?.url;
|
|
1154
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1155
|
+
},
|
|
1156
|
+
}
|
|
1157
|
+
};
|
|
1158
|
+
|
|
1159
|
+
/**
|
|
1160
|
+
* HealthCheckApi - factory interface
|
|
1161
|
+
* @export
|
|
1162
|
+
*/
|
|
1163
|
+
export const HealthCheckApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
1164
|
+
const localVarFp = HealthCheckApiFp(configuration)
|
|
1165
|
+
return {
|
|
1166
|
+
/**
|
|
1167
|
+
*
|
|
1168
|
+
* @param {*} [options] Override http request option.
|
|
1169
|
+
* @throws {RequiredError}
|
|
1170
|
+
*/
|
|
1171
|
+
apiHealthCheckGet(options?: RawAxiosRequestConfig): AxiosPromise<ApiHealthCheckGet200Response> {
|
|
1172
|
+
return localVarFp.apiHealthCheckGet(options).then((request) => request(axios, basePath));
|
|
1173
|
+
},
|
|
1174
|
+
};
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
/**
|
|
1178
|
+
* HealthCheckApi - object-oriented interface
|
|
1179
|
+
* @export
|
|
1180
|
+
* @class HealthCheckApi
|
|
1181
|
+
* @extends {BaseAPI}
|
|
1182
|
+
*/
|
|
1183
|
+
export class HealthCheckApi extends BaseAPI {
|
|
1184
|
+
/**
|
|
1185
|
+
*
|
|
1186
|
+
* @param {*} [options] Override http request option.
|
|
1187
|
+
* @throws {RequiredError}
|
|
1188
|
+
* @memberof HealthCheckApi
|
|
1189
|
+
*/
|
|
1190
|
+
public apiHealthCheckGet(options?: RawAxiosRequestConfig) {
|
|
1191
|
+
return HealthCheckApiFp(this.configuration).apiHealthCheckGet(options).then((request) => request(this.axios, this.basePath));
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
|
|
907
1197
|
/**
|
|
908
1198
|
* NewsApi - axios parameter creator
|
|
909
1199
|
* @export
|
|
@@ -1148,7 +1438,7 @@ export const PadelApiFp = function(configuration?: Configuration) {
|
|
|
1148
1438
|
* @param {*} [options] Override http request option.
|
|
1149
1439
|
* @throws {RequiredError}
|
|
1150
1440
|
*/
|
|
1151
|
-
async apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1441
|
+
async apiPadelMatchesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiPadelMatchesGet200Response>> {
|
|
1152
1442
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiPadelMatchesGet(options);
|
|
1153
1443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1154
1444
|
const localVarOperationServerBasePath = operationServerMap['PadelApi.apiPadelMatchesGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -1169,7 +1459,7 @@ export const PadelApiFactory = function (configuration?: Configuration, basePath
|
|
|
1169
1459
|
* @param {*} [options] Override http request option.
|
|
1170
1460
|
* @throws {RequiredError}
|
|
1171
1461
|
*/
|
|
1172
|
-
apiPadelMatchesGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1462
|
+
apiPadelMatchesGet(options?: RawAxiosRequestConfig): AxiosPromise<ApiPadelMatchesGet200Response> {
|
|
1173
1463
|
return localVarFp.apiPadelMatchesGet(options).then((request) => request(axios, basePath));
|
|
1174
1464
|
},
|
|
1175
1465
|
};
|