@dimrev4/fitness-v3-backend 0.0.22 → 0.0.23
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/GetAllMeasurementsResponseDto.md +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -408,10 +408,10 @@ export interface GetAllMealsResponseDto {
|
|
|
408
408
|
export interface GetAllMeasurementsResponseDto {
|
|
409
409
|
/**
|
|
410
410
|
*
|
|
411
|
-
* @type {MeasurementDto}
|
|
411
|
+
* @type {Array<MeasurementDto>}
|
|
412
412
|
* @memberof GetAllMeasurementsResponseDto
|
|
413
413
|
*/
|
|
414
|
-
'items': MeasurementDto
|
|
414
|
+
'items': Array<MeasurementDto>;
|
|
415
415
|
/**
|
|
416
416
|
*
|
|
417
417
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -389,10 +389,10 @@ export interface GetAllMealsResponseDto {
|
|
|
389
389
|
export interface GetAllMeasurementsResponseDto {
|
|
390
390
|
/**
|
|
391
391
|
*
|
|
392
|
-
* @type {MeasurementDto}
|
|
392
|
+
* @type {Array<MeasurementDto>}
|
|
393
393
|
* @memberof GetAllMeasurementsResponseDto
|
|
394
394
|
*/
|
|
395
|
-
'items': MeasurementDto
|
|
395
|
+
'items': Array<MeasurementDto>;
|
|
396
396
|
/**
|
|
397
397
|
*
|
|
398
398
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -389,10 +389,10 @@ export interface GetAllMealsResponseDto {
|
|
|
389
389
|
export interface GetAllMeasurementsResponseDto {
|
|
390
390
|
/**
|
|
391
391
|
*
|
|
392
|
-
* @type {MeasurementDto}
|
|
392
|
+
* @type {Array<MeasurementDto>}
|
|
393
393
|
* @memberof GetAllMeasurementsResponseDto
|
|
394
394
|
*/
|
|
395
|
-
'items': MeasurementDto
|
|
395
|
+
'items': Array<MeasurementDto>;
|
|
396
396
|
/**
|
|
397
397
|
*
|
|
398
398
|
* @type {number}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**items** | [**MeasurementDto
|
|
8
|
+
**items** | [**Array<MeasurementDto>**](MeasurementDto.md) | | [default to undefined]
|
|
9
9
|
**totalItems** | **number** | | [default to undefined]
|
|
10
10
|
|
|
11
11
|
## Example
|