@dimrev4/fitness-v3-backend 0.0.18 → 0.0.20
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 +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/esm/api.d.ts +2 -2
- package/docs/UserMetaDto.md +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1837,10 +1837,10 @@ export interface UserMealConsumptionDetailsDto {
|
|
|
1837
1837
|
export interface UserMetaDto {
|
|
1838
1838
|
/**
|
|
1839
1839
|
* User image URL
|
|
1840
|
-
* @type {
|
|
1840
|
+
* @type {string}
|
|
1841
1841
|
* @memberof UserMetaDto
|
|
1842
1842
|
*/
|
|
1843
|
-
'imageUrl'
|
|
1843
|
+
'imageUrl': string | null;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* User date of birth
|
|
1846
1846
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -1802,10 +1802,10 @@ export interface UserMealConsumptionDetailsDto {
|
|
|
1802
1802
|
export interface UserMetaDto {
|
|
1803
1803
|
/**
|
|
1804
1804
|
* User image URL
|
|
1805
|
-
* @type {
|
|
1805
|
+
* @type {string}
|
|
1806
1806
|
* @memberof UserMetaDto
|
|
1807
1807
|
*/
|
|
1808
|
-
'imageUrl'
|
|
1808
|
+
'imageUrl': string | null;
|
|
1809
1809
|
/**
|
|
1810
1810
|
* User date of birth
|
|
1811
1811
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1802,10 +1802,10 @@ export interface UserMealConsumptionDetailsDto {
|
|
|
1802
1802
|
export interface UserMetaDto {
|
|
1803
1803
|
/**
|
|
1804
1804
|
* User image URL
|
|
1805
|
-
* @type {
|
|
1805
|
+
* @type {string}
|
|
1806
1806
|
* @memberof UserMetaDto
|
|
1807
1807
|
*/
|
|
1808
|
-
'imageUrl'
|
|
1808
|
+
'imageUrl': string | null;
|
|
1809
1809
|
/**
|
|
1810
1810
|
* User date of birth
|
|
1811
1811
|
* @type {string}
|
package/docs/UserMetaDto.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**imageUrl** | **
|
|
8
|
+
**imageUrl** | **string** | User image URL | [default to undefined]
|
|
9
9
|
**dateOfBirth** | **string** | User date of birth | [default to undefined]
|
|
10
10
|
**heightCM** | **number** | User height in centimeters | [default to undefined]
|
|
11
11
|
**gender** | **string** | User gender | [default to undefined]
|