@dimrev4/fitness-v3-backend 0.0.22 → 0.0.24

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 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}
@@ -427,10 +427,10 @@ export interface GetAllMeasurementsResponseDto {
427
427
  export interface GetAllUserMealConsumptionResponseDto {
428
428
  /**
429
429
  *
430
- * @type {Array<SavedMealDto>}
430
+ * @type {Array<UserMealConsumptionDetailsDto>}
431
431
  * @memberof GetAllUserMealConsumptionResponseDto
432
432
  */
433
- 'items': Array<SavedMealDto>;
433
+ 'items': Array<UserMealConsumptionDetailsDto>;
434
434
  /**
435
435
  *
436
436
  * @type {Array<UserMealConsumptionDailySummeryDto>}
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}
@@ -408,10 +408,10 @@ export interface GetAllMeasurementsResponseDto {
408
408
  export interface GetAllUserMealConsumptionResponseDto {
409
409
  /**
410
410
  *
411
- * @type {Array<SavedMealDto>}
411
+ * @type {Array<UserMealConsumptionDetailsDto>}
412
412
  * @memberof GetAllUserMealConsumptionResponseDto
413
413
  */
414
- 'items': Array<SavedMealDto>;
414
+ 'items': Array<UserMealConsumptionDetailsDto>;
415
415
  /**
416
416
  *
417
417
  * @type {Array<UserMealConsumptionDailySummeryDto>}
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}
@@ -408,10 +408,10 @@ export interface GetAllMeasurementsResponseDto {
408
408
  export interface GetAllUserMealConsumptionResponseDto {
409
409
  /**
410
410
  *
411
- * @type {Array<SavedMealDto>}
411
+ * @type {Array<UserMealConsumptionDetailsDto>}
412
412
  * @memberof GetAllUserMealConsumptionResponseDto
413
413
  */
414
- 'items': Array<SavedMealDto>;
414
+ 'items': Array<UserMealConsumptionDetailsDto>;
415
415
  /**
416
416
  *
417
417
  * @type {Array<UserMealConsumptionDailySummeryDto>}
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **items** | [**MeasurementDto**](MeasurementDto.md) | | [default to undefined]
8
+ **items** | [**Array&lt;MeasurementDto&gt;**](MeasurementDto.md) | | [default to undefined]
9
9
  **totalItems** | **number** | | [default to undefined]
10
10
 
11
11
  ## Example
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **items** | [**Array&lt;SavedMealDto&gt;**](SavedMealDto.md) | | [default to undefined]
8
+ **items** | [**Array&lt;UserMealConsumptionDetailsDto&gt;**](UserMealConsumptionDetailsDto.md) | | [default to undefined]
9
9
  **dailySummery** | [**Array&lt;UserMealConsumptionDailySummeryDto&gt;**](UserMealConsumptionDailySummeryDto.md) | | [default to undefined]
10
10
  **totalItems** | **number** | | [default to undefined]
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dimrev4/fitness-v3-backend",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "OpenAPI client for @dimrev4/fitness-v3-backend",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {