@dimrev4/fitness-v3-backend 0.0.39 → 0.0.40
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/api.ts +0 -6
- package/dist/api.d.ts +0 -6
- package/dist/esm/api.d.ts +0 -6
- package/docs/CreateExerciseRequestDto.md +0 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -66,12 +66,6 @@ export interface CreateExerciseRequestDto {
|
|
|
66
66
|
* @memberof CreateExerciseRequestDto
|
|
67
67
|
*/
|
|
68
68
|
'description': string;
|
|
69
|
-
/**
|
|
70
|
-
* Exercise image URL
|
|
71
|
-
* @type {string}
|
|
72
|
-
* @memberof CreateExerciseRequestDto
|
|
73
|
-
*/
|
|
74
|
-
'imgUrl': string;
|
|
75
69
|
/**
|
|
76
70
|
* Exercise type
|
|
77
71
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -56,12 +56,6 @@ export interface CreateExerciseRequestDto {
|
|
|
56
56
|
* @memberof CreateExerciseRequestDto
|
|
57
57
|
*/
|
|
58
58
|
'description': string;
|
|
59
|
-
/**
|
|
60
|
-
* Exercise image URL
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof CreateExerciseRequestDto
|
|
63
|
-
*/
|
|
64
|
-
'imgUrl': string;
|
|
65
59
|
/**
|
|
66
60
|
* Exercise type
|
|
67
61
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -56,12 +56,6 @@ export interface CreateExerciseRequestDto {
|
|
|
56
56
|
* @memberof CreateExerciseRequestDto
|
|
57
57
|
*/
|
|
58
58
|
'description': string;
|
|
59
|
-
/**
|
|
60
|
-
* Exercise image URL
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof CreateExerciseRequestDto
|
|
63
|
-
*/
|
|
64
|
-
'imgUrl': string;
|
|
65
59
|
/**
|
|
66
60
|
* Exercise type
|
|
67
61
|
* @type {string}
|
|
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | Exercise name | [default to undefined]
|
|
9
9
|
**description** | **string** | Exercise description | [default to undefined]
|
|
10
|
-
**imgUrl** | **string** | Exercise image URL | [default to undefined]
|
|
11
10
|
**type** | **string** | Exercise type | [default to undefined]
|
|
12
11
|
**bodyParts** | **Array<string>** | Exercise body parts | [default to undefined]
|
|
13
12
|
**equipment** | **Array<string>** | Exercise equipment | [default to undefined]
|
|
@@ -22,7 +21,6 @@ import { CreateExerciseRequestDto } from '@dimrev4/fitness-v3-backend-sdk';
|
|
|
22
21
|
const instance: CreateExerciseRequestDto = {
|
|
23
22
|
name,
|
|
24
23
|
description,
|
|
25
|
-
imgUrl,
|
|
26
24
|
type,
|
|
27
25
|
bodyParts,
|
|
28
26
|
equipment,
|