regenerate API

This commit is contained in:
smilerz
2024-04-23 10:35:45 -05:00
parent dd3f38fe75
commit a67b084b52
61 changed files with 7120 additions and 5452 deletions

View File

@@ -140,10 +140,10 @@ export interface Food {
properties?: Array<Property>;
/**
*
* @type {string}
* @type {number}
* @memberof Food
*/
propertiesFoodAmount?: string;
propertiesFoodAmount?: number;
/**
*
* @type {Unit}
@@ -158,10 +158,10 @@ export interface Food {
fdcId?: number;
/**
*
* @type {string}
* @type {boolean}
* @memberof Food
*/
foodOnhand?: string;
foodOnhand?: boolean;
/**
*
* @type {SupermarketCategory}
@@ -170,10 +170,10 @@ export interface Food {
supermarketCategory?: SupermarketCategory;
/**
*
* @type {string}
* @type {number}
* @memberof Food
*/
readonly parent: string;
readonly parent: number;
/**
*
* @type {number}
@@ -187,7 +187,8 @@ export interface Food {
*/
inheritFields?: Array<FoodInheritField>;
/**
*
* Returns a string representation of a tree node and it's ancestors,
* e.g. 'Cuisine > Asian > Chinese > Catonese'.
* @type {string}
* @memberof Food
*/
@@ -218,10 +219,10 @@ export interface Food {
substituteChildren?: boolean;
/**
*
* @type {string}
* @type {boolean}
* @memberof Food
*/
readonly substituteOnhand: string;
readonly substituteOnhand: boolean;
/**
*
* @type {Array<FoodInheritField>}