@dimrev4/fitness-v3-backend 0.0.41 → 0.0.42
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/CreateWorkoutRequestDto.md +0 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -543,12 +543,6 @@ export interface CreateWorkoutRequestDto {
|
|
|
543
543
|
* @memberof CreateWorkoutRequestDto
|
|
544
544
|
*/
|
|
545
545
|
'description': string;
|
|
546
|
-
/**
|
|
547
|
-
* The image url of the workout
|
|
548
|
-
* @type {string}
|
|
549
|
-
* @memberof CreateWorkoutRequestDto
|
|
550
|
-
*/
|
|
551
|
-
'imageUrl': string;
|
|
552
546
|
/**
|
|
553
547
|
* The resource type of the workout
|
|
554
548
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -518,12 +518,6 @@ export interface CreateWorkoutRequestDto {
|
|
|
518
518
|
* @memberof CreateWorkoutRequestDto
|
|
519
519
|
*/
|
|
520
520
|
'description': string;
|
|
521
|
-
/**
|
|
522
|
-
* The image url of the workout
|
|
523
|
-
* @type {string}
|
|
524
|
-
* @memberof CreateWorkoutRequestDto
|
|
525
|
-
*/
|
|
526
|
-
'imageUrl': string;
|
|
527
521
|
/**
|
|
528
522
|
* The resource type of the workout
|
|
529
523
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -518,12 +518,6 @@ export interface CreateWorkoutRequestDto {
|
|
|
518
518
|
* @memberof CreateWorkoutRequestDto
|
|
519
519
|
*/
|
|
520
520
|
'description': string;
|
|
521
|
-
/**
|
|
522
|
-
* The image url of the workout
|
|
523
|
-
* @type {string}
|
|
524
|
-
* @memberof CreateWorkoutRequestDto
|
|
525
|
-
*/
|
|
526
|
-
'imageUrl': string;
|
|
527
521
|
/**
|
|
528
522
|
* The resource type of the workout
|
|
529
523
|
* @type {string}
|
|
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | The name of the workout | [default to undefined]
|
|
9
9
|
**description** | **string** | The description of the workout | [default to undefined]
|
|
10
|
-
**imageUrl** | **string** | The image url of the workout | [default to undefined]
|
|
11
10
|
**ResourceType** | **string** | The resource type of the workout | [default to undefined]
|
|
12
11
|
**userId** | **string** | The user id of the workout | [optional] [default to undefined]
|
|
13
12
|
**groupId** | **string** | The group id of the workout | [optional] [default to undefined]
|
|
@@ -21,7 +20,6 @@ import { CreateWorkoutRequestDto } from '@dimrev4/fitness-v3-backend-sdk';
|
|
|
21
20
|
const instance: CreateWorkoutRequestDto = {
|
|
22
21
|
name,
|
|
23
22
|
description,
|
|
24
|
-
imageUrl,
|
|
25
23
|
ResourceType,
|
|
26
24
|
userId,
|
|
27
25
|
groupId,
|