@dimrev4/fitness-v3-backend 0.0.31 → 0.0.32
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 +2 -0
- package/api.ts +476 -0
- package/dist/api.d.ts +317 -0
- package/dist/api.js +281 -2
- package/dist/esm/api.d.ts +317 -0
- package/dist/esm/api.js +279 -0
- package/docs/CreateExerciseRequestDto.md +34 -0
- package/docs/ExercisesV1Api.md +172 -0
- package/docs/GetAllExercisesResponseDto.md +22 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -38,6 +38,115 @@ export interface ConfirmOtpRequestDto {
|
|
|
38
38
|
*/
|
|
39
39
|
'metaHash': string;
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @export
|
|
44
|
+
* @interface CreateExerciseRequestDto
|
|
45
|
+
*/
|
|
46
|
+
export interface CreateExerciseRequestDto {
|
|
47
|
+
/**
|
|
48
|
+
* Exercise name
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateExerciseRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'name': string;
|
|
53
|
+
/**
|
|
54
|
+
* Exercise description
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateExerciseRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'description': string;
|
|
59
|
+
/**
|
|
60
|
+
* Exercise image URL
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateExerciseRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'imgUrl': string;
|
|
65
|
+
/**
|
|
66
|
+
* Exercise type
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateExerciseRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'type': CreateExerciseRequestDtoTypeEnum;
|
|
71
|
+
/**
|
|
72
|
+
* Exercise body parts
|
|
73
|
+
* @type {Array<string>}
|
|
74
|
+
* @memberof CreateExerciseRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'bodyParts': Array<CreateExerciseRequestDtoBodyPartsEnum>;
|
|
77
|
+
/**
|
|
78
|
+
* Exercise equipment
|
|
79
|
+
* @type {Array<string>}
|
|
80
|
+
* @memberof CreateExerciseRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'equipment': Array<CreateExerciseRequestDtoEquipmentEnum>;
|
|
83
|
+
/**
|
|
84
|
+
* Exercise difficulty
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreateExerciseRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'difficulty': CreateExerciseRequestDtoDifficultyEnum;
|
|
89
|
+
/**
|
|
90
|
+
* Exercise instructions
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof CreateExerciseRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'instructions': string;
|
|
95
|
+
}
|
|
96
|
+
export declare const CreateExerciseRequestDtoTypeEnum: {
|
|
97
|
+
readonly Cardio: "CARDIO";
|
|
98
|
+
readonly Strength: "STRENGTH";
|
|
99
|
+
readonly Flexibility: "FLEXIBILITY";
|
|
100
|
+
readonly BodyWeight: "BODY_WEIGHT";
|
|
101
|
+
};
|
|
102
|
+
export type CreateExerciseRequestDtoTypeEnum = typeof CreateExerciseRequestDtoTypeEnum[keyof typeof CreateExerciseRequestDtoTypeEnum];
|
|
103
|
+
export declare const CreateExerciseRequestDtoBodyPartsEnum: {
|
|
104
|
+
readonly Chest: "CHEST";
|
|
105
|
+
readonly Back: "BACK";
|
|
106
|
+
readonly Shoulders: "SHOULDERS";
|
|
107
|
+
readonly Biceps: "BICEPS";
|
|
108
|
+
readonly Triceps: "TRICEPS";
|
|
109
|
+
readonly Forearms: "FOREARMS";
|
|
110
|
+
readonly Abdomen: "ABDOMEN";
|
|
111
|
+
readonly Obliques: "OBLIQUES";
|
|
112
|
+
readonly Quads: "QUADS";
|
|
113
|
+
readonly Hamstrings: "HAMSTRINGS";
|
|
114
|
+
readonly Glutes: "GLUTES";
|
|
115
|
+
readonly Calves: "CALVES";
|
|
116
|
+
};
|
|
117
|
+
export type CreateExerciseRequestDtoBodyPartsEnum = typeof CreateExerciseRequestDtoBodyPartsEnum[keyof typeof CreateExerciseRequestDtoBodyPartsEnum];
|
|
118
|
+
export declare const CreateExerciseRequestDtoEquipmentEnum: {
|
|
119
|
+
readonly Bodyweight: "BODYWEIGHT";
|
|
120
|
+
readonly Dumbbells: "DUMBBELLS";
|
|
121
|
+
readonly Barbell: "BARBELL";
|
|
122
|
+
readonly Plates: "PLATES";
|
|
123
|
+
readonly Bench: "BENCH";
|
|
124
|
+
readonly SquatRack: "SQUAT_RACK";
|
|
125
|
+
readonly SmithMachine: "SMITH_MACHINE";
|
|
126
|
+
readonly Machine: "MACHINE";
|
|
127
|
+
readonly CableMachine: "CABLE_MACHINE";
|
|
128
|
+
readonly PullUpBar: "PULL_UP_BAR";
|
|
129
|
+
readonly DipStation: "DIP_STATION";
|
|
130
|
+
readonly ResistanceBands: "RESISTANCE_BANDS";
|
|
131
|
+
readonly MedicineBall: "MEDICINE_BALL";
|
|
132
|
+
readonly Kettlebell: "KETTLEBELL";
|
|
133
|
+
readonly BattleRope: "BATTLE_ROPE";
|
|
134
|
+
readonly JumpRope: "JUMP_ROPE";
|
|
135
|
+
readonly Treadmill: "TREADMILL";
|
|
136
|
+
readonly StationaryBike: "STATIONARY_BIKE";
|
|
137
|
+
readonly RowingMachine: "ROWING_MACHINE";
|
|
138
|
+
readonly Elliptical: "ELLIPTICAL";
|
|
139
|
+
readonly StairClimber: "STAIR_CLIMBER";
|
|
140
|
+
readonly SwimmingPool: "SWIMMING_POOL";
|
|
141
|
+
readonly None: "NONE";
|
|
142
|
+
};
|
|
143
|
+
export type CreateExerciseRequestDtoEquipmentEnum = typeof CreateExerciseRequestDtoEquipmentEnum[keyof typeof CreateExerciseRequestDtoEquipmentEnum];
|
|
144
|
+
export declare const CreateExerciseRequestDtoDifficultyEnum: {
|
|
145
|
+
readonly Easy: "EASY";
|
|
146
|
+
readonly Medium: "MEDIUM";
|
|
147
|
+
readonly Hard: "HARD";
|
|
148
|
+
};
|
|
149
|
+
export type CreateExerciseRequestDtoDifficultyEnum = typeof CreateExerciseRequestDtoDifficultyEnum[keyof typeof CreateExerciseRequestDtoDifficultyEnum];
|
|
41
150
|
/**
|
|
42
151
|
*
|
|
43
152
|
* @export
|
|
@@ -777,6 +886,25 @@ export declare const ExerciseWithSetsDtoDifficultyEnum: {
|
|
|
777
886
|
readonly Hard: "HARD";
|
|
778
887
|
};
|
|
779
888
|
export type ExerciseWithSetsDtoDifficultyEnum = typeof ExerciseWithSetsDtoDifficultyEnum[keyof typeof ExerciseWithSetsDtoDifficultyEnum];
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @export
|
|
892
|
+
* @interface GetAllExercisesResponseDto
|
|
893
|
+
*/
|
|
894
|
+
export interface GetAllExercisesResponseDto {
|
|
895
|
+
/**
|
|
896
|
+
*
|
|
897
|
+
* @type {Array<ExerciseDto>}
|
|
898
|
+
* @memberof GetAllExercisesResponseDto
|
|
899
|
+
*/
|
|
900
|
+
'items': Array<ExerciseDto>;
|
|
901
|
+
/**
|
|
902
|
+
*
|
|
903
|
+
* @type {number}
|
|
904
|
+
* @memberof GetAllExercisesResponseDto
|
|
905
|
+
*/
|
|
906
|
+
'totalItems': number;
|
|
907
|
+
}
|
|
780
908
|
/**
|
|
781
909
|
*
|
|
782
910
|
* @export
|
|
@@ -3291,6 +3419,33 @@ export declare class AuthV1Api extends BaseAPI implements AuthV1ApiInterface {
|
|
|
3291
3419
|
* @export
|
|
3292
3420
|
*/
|
|
3293
3421
|
export declare const ExercisesV1ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3422
|
+
/**
|
|
3423
|
+
*
|
|
3424
|
+
* @summary Create exercise
|
|
3425
|
+
* @param {CreateExerciseRequestDto} createExerciseRequestDto
|
|
3426
|
+
* @param {*} [options] Override http request option.
|
|
3427
|
+
* @throws {RequiredError}
|
|
3428
|
+
*/
|
|
3429
|
+
exercisesV1ControllerCreateExercise: (createExerciseRequestDto: CreateExerciseRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3430
|
+
/**
|
|
3431
|
+
*
|
|
3432
|
+
* @summary Get all exercises
|
|
3433
|
+
* @param {string} [name] Exercise name
|
|
3434
|
+
* @param {string} [query] Exercise query
|
|
3435
|
+
* @param {string} [orderBy] Order by
|
|
3436
|
+
* @param {boolean} [isAsc] Sort order direction (true for ascending, false for descending)
|
|
3437
|
+
* @param {*} [options] Override http request option.
|
|
3438
|
+
* @throws {RequiredError}
|
|
3439
|
+
*/
|
|
3440
|
+
exercisesV1ControllerGetAllExercises: (name?: string, query?: string, orderBy?: string, isAsc?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3441
|
+
/**
|
|
3442
|
+
*
|
|
3443
|
+
* @summary Get exercise by id
|
|
3444
|
+
* @param {string} id
|
|
3445
|
+
* @param {*} [options] Override http request option.
|
|
3446
|
+
* @throws {RequiredError}
|
|
3447
|
+
*/
|
|
3448
|
+
exercisesV1ControllerGetExerciseById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3294
3449
|
/**
|
|
3295
3450
|
*
|
|
3296
3451
|
* @summary Get exercises
|
|
@@ -3310,6 +3465,33 @@ export declare const ExercisesV1ApiAxiosParamCreator: (configuration?: Configura
|
|
|
3310
3465
|
* @export
|
|
3311
3466
|
*/
|
|
3312
3467
|
export declare const ExercisesV1ApiFp: (configuration?: Configuration) => {
|
|
3468
|
+
/**
|
|
3469
|
+
*
|
|
3470
|
+
* @summary Create exercise
|
|
3471
|
+
* @param {CreateExerciseRequestDto} createExerciseRequestDto
|
|
3472
|
+
* @param {*} [options] Override http request option.
|
|
3473
|
+
* @throws {RequiredError}
|
|
3474
|
+
*/
|
|
3475
|
+
exercisesV1ControllerCreateExercise(createExerciseRequestDto: CreateExerciseRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExerciseDto>>;
|
|
3476
|
+
/**
|
|
3477
|
+
*
|
|
3478
|
+
* @summary Get all exercises
|
|
3479
|
+
* @param {string} [name] Exercise name
|
|
3480
|
+
* @param {string} [query] Exercise query
|
|
3481
|
+
* @param {string} [orderBy] Order by
|
|
3482
|
+
* @param {boolean} [isAsc] Sort order direction (true for ascending, false for descending)
|
|
3483
|
+
* @param {*} [options] Override http request option.
|
|
3484
|
+
* @throws {RequiredError}
|
|
3485
|
+
*/
|
|
3486
|
+
exercisesV1ControllerGetAllExercises(name?: string, query?: string, orderBy?: string, isAsc?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllExercisesResponseDto>>;
|
|
3487
|
+
/**
|
|
3488
|
+
*
|
|
3489
|
+
* @summary Get exercise by id
|
|
3490
|
+
* @param {string} id
|
|
3491
|
+
* @param {*} [options] Override http request option.
|
|
3492
|
+
* @throws {RequiredError}
|
|
3493
|
+
*/
|
|
3494
|
+
exercisesV1ControllerGetExerciseById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExerciseDto>>;
|
|
3313
3495
|
/**
|
|
3314
3496
|
*
|
|
3315
3497
|
* @summary Get exercises
|
|
@@ -3329,6 +3511,30 @@ export declare const ExercisesV1ApiFp: (configuration?: Configuration) => {
|
|
|
3329
3511
|
* @export
|
|
3330
3512
|
*/
|
|
3331
3513
|
export declare const ExercisesV1ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3514
|
+
/**
|
|
3515
|
+
*
|
|
3516
|
+
* @summary Create exercise
|
|
3517
|
+
* @param {ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest} requestParameters Request parameters.
|
|
3518
|
+
* @param {*} [options] Override http request option.
|
|
3519
|
+
* @throws {RequiredError}
|
|
3520
|
+
*/
|
|
3521
|
+
exercisesV1ControllerCreateExercise(requestParameters: ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExerciseDto>;
|
|
3522
|
+
/**
|
|
3523
|
+
*
|
|
3524
|
+
* @summary Get all exercises
|
|
3525
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest} requestParameters Request parameters.
|
|
3526
|
+
* @param {*} [options] Override http request option.
|
|
3527
|
+
* @throws {RequiredError}
|
|
3528
|
+
*/
|
|
3529
|
+
exercisesV1ControllerGetAllExercises(requestParameters?: ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAllExercisesResponseDto>;
|
|
3530
|
+
/**
|
|
3531
|
+
*
|
|
3532
|
+
* @summary Get exercise by id
|
|
3533
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest} requestParameters Request parameters.
|
|
3534
|
+
* @param {*} [options] Override http request option.
|
|
3535
|
+
* @throws {RequiredError}
|
|
3536
|
+
*/
|
|
3537
|
+
exercisesV1ControllerGetExerciseById(requestParameters: ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExerciseDto>;
|
|
3332
3538
|
/**
|
|
3333
3539
|
*
|
|
3334
3540
|
* @summary Get exercises
|
|
@@ -3344,6 +3550,33 @@ export declare const ExercisesV1ApiFactory: (configuration?: Configuration, base
|
|
|
3344
3550
|
* @interface ExercisesV1Api
|
|
3345
3551
|
*/
|
|
3346
3552
|
export interface ExercisesV1ApiInterface {
|
|
3553
|
+
/**
|
|
3554
|
+
*
|
|
3555
|
+
* @summary Create exercise
|
|
3556
|
+
* @param {ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest} requestParameters Request parameters.
|
|
3557
|
+
* @param {*} [options] Override http request option.
|
|
3558
|
+
* @throws {RequiredError}
|
|
3559
|
+
* @memberof ExercisesV1ApiInterface
|
|
3560
|
+
*/
|
|
3561
|
+
exercisesV1ControllerCreateExercise(requestParameters: ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExerciseDto>;
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @summary Get all exercises
|
|
3565
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest} requestParameters Request parameters.
|
|
3566
|
+
* @param {*} [options] Override http request option.
|
|
3567
|
+
* @throws {RequiredError}
|
|
3568
|
+
* @memberof ExercisesV1ApiInterface
|
|
3569
|
+
*/
|
|
3570
|
+
exercisesV1ControllerGetAllExercises(requestParameters?: ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAllExercisesResponseDto>;
|
|
3571
|
+
/**
|
|
3572
|
+
*
|
|
3573
|
+
* @summary Get exercise by id
|
|
3574
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest} requestParameters Request parameters.
|
|
3575
|
+
* @param {*} [options] Override http request option.
|
|
3576
|
+
* @throws {RequiredError}
|
|
3577
|
+
* @memberof ExercisesV1ApiInterface
|
|
3578
|
+
*/
|
|
3579
|
+
exercisesV1ControllerGetExerciseById(requestParameters: ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExerciseDto>;
|
|
3347
3580
|
/**
|
|
3348
3581
|
*
|
|
3349
3582
|
* @summary Get exercises
|
|
@@ -3354,6 +3587,63 @@ export interface ExercisesV1ApiInterface {
|
|
|
3354
3587
|
*/
|
|
3355
3588
|
exercisesV1ControllerGetExercises(requestParameters?: ExercisesV1ApiExercisesV1ControllerGetExercisesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetExercisesResponseDto>;
|
|
3356
3589
|
}
|
|
3590
|
+
/**
|
|
3591
|
+
* Request parameters for exercisesV1ControllerCreateExercise operation in ExercisesV1Api.
|
|
3592
|
+
* @export
|
|
3593
|
+
* @interface ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest
|
|
3594
|
+
*/
|
|
3595
|
+
export interface ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest {
|
|
3596
|
+
/**
|
|
3597
|
+
*
|
|
3598
|
+
* @type {CreateExerciseRequestDto}
|
|
3599
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerCreateExercise
|
|
3600
|
+
*/
|
|
3601
|
+
readonly createExerciseRequestDto: CreateExerciseRequestDto;
|
|
3602
|
+
}
|
|
3603
|
+
/**
|
|
3604
|
+
* Request parameters for exercisesV1ControllerGetAllExercises operation in ExercisesV1Api.
|
|
3605
|
+
* @export
|
|
3606
|
+
* @interface ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest
|
|
3607
|
+
*/
|
|
3608
|
+
export interface ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest {
|
|
3609
|
+
/**
|
|
3610
|
+
* Exercise name
|
|
3611
|
+
* @type {string}
|
|
3612
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerGetAllExercises
|
|
3613
|
+
*/
|
|
3614
|
+
readonly name?: string;
|
|
3615
|
+
/**
|
|
3616
|
+
* Exercise query
|
|
3617
|
+
* @type {string}
|
|
3618
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerGetAllExercises
|
|
3619
|
+
*/
|
|
3620
|
+
readonly query?: string;
|
|
3621
|
+
/**
|
|
3622
|
+
* Order by
|
|
3623
|
+
* @type {string}
|
|
3624
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerGetAllExercises
|
|
3625
|
+
*/
|
|
3626
|
+
readonly orderBy?: string;
|
|
3627
|
+
/**
|
|
3628
|
+
* Sort order direction (true for ascending, false for descending)
|
|
3629
|
+
* @type {boolean}
|
|
3630
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerGetAllExercises
|
|
3631
|
+
*/
|
|
3632
|
+
readonly isAsc?: boolean;
|
|
3633
|
+
}
|
|
3634
|
+
/**
|
|
3635
|
+
* Request parameters for exercisesV1ControllerGetExerciseById operation in ExercisesV1Api.
|
|
3636
|
+
* @export
|
|
3637
|
+
* @interface ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest
|
|
3638
|
+
*/
|
|
3639
|
+
export interface ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest {
|
|
3640
|
+
/**
|
|
3641
|
+
*
|
|
3642
|
+
* @type {string}
|
|
3643
|
+
* @memberof ExercisesV1ApiExercisesV1ControllerGetExerciseById
|
|
3644
|
+
*/
|
|
3645
|
+
readonly id: string;
|
|
3646
|
+
}
|
|
3357
3647
|
/**
|
|
3358
3648
|
* Request parameters for exercisesV1ControllerGetExercises operation in ExercisesV1Api.
|
|
3359
3649
|
* @export
|
|
@@ -3404,6 +3694,33 @@ export interface ExercisesV1ApiExercisesV1ControllerGetExercisesRequest {
|
|
|
3404
3694
|
* @extends {BaseAPI}
|
|
3405
3695
|
*/
|
|
3406
3696
|
export declare class ExercisesV1Api extends BaseAPI implements ExercisesV1ApiInterface {
|
|
3697
|
+
/**
|
|
3698
|
+
*
|
|
3699
|
+
* @summary Create exercise
|
|
3700
|
+
* @param {ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest} requestParameters Request parameters.
|
|
3701
|
+
* @param {*} [options] Override http request option.
|
|
3702
|
+
* @throws {RequiredError}
|
|
3703
|
+
* @memberof ExercisesV1Api
|
|
3704
|
+
*/
|
|
3705
|
+
exercisesV1ControllerCreateExercise(requestParameters: ExercisesV1ApiExercisesV1ControllerCreateExerciseRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExerciseDto, any, {}>>;
|
|
3706
|
+
/**
|
|
3707
|
+
*
|
|
3708
|
+
* @summary Get all exercises
|
|
3709
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest} requestParameters Request parameters.
|
|
3710
|
+
* @param {*} [options] Override http request option.
|
|
3711
|
+
* @throws {RequiredError}
|
|
3712
|
+
* @memberof ExercisesV1Api
|
|
3713
|
+
*/
|
|
3714
|
+
exercisesV1ControllerGetAllExercises(requestParameters?: ExercisesV1ApiExercisesV1ControllerGetAllExercisesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllExercisesResponseDto, any, {}>>;
|
|
3715
|
+
/**
|
|
3716
|
+
*
|
|
3717
|
+
* @summary Get exercise by id
|
|
3718
|
+
* @param {ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest} requestParameters Request parameters.
|
|
3719
|
+
* @param {*} [options] Override http request option.
|
|
3720
|
+
* @throws {RequiredError}
|
|
3721
|
+
* @memberof ExercisesV1Api
|
|
3722
|
+
*/
|
|
3723
|
+
exercisesV1ControllerGetExerciseById(requestParameters: ExercisesV1ApiExercisesV1ControllerGetExerciseByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExerciseDto, any, {}>>;
|
|
3407
3724
|
/**
|
|
3408
3725
|
*
|
|
3409
3726
|
* @summary Get exercises
|