mealie-typescript 1.0.65 → 1.0.67
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/dist/api.d.ts +7 -7
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -695,6 +695,12 @@ export interface MaintenanceSummary {
|
|
|
695
695
|
'cleanableImages': number;
|
|
696
696
|
'cleanableDirs': number;
|
|
697
697
|
}
|
|
698
|
+
export interface MealieSchemaRecipeRecipeCommentsUserBase {
|
|
699
|
+
'id': string;
|
|
700
|
+
'username'?: string | null;
|
|
701
|
+
'admin': boolean;
|
|
702
|
+
'fullName'?: string | null;
|
|
703
|
+
}
|
|
698
704
|
export interface MealieSchemaUserUserUserBase {
|
|
699
705
|
'id'?: string | null;
|
|
700
706
|
'username'?: string | null;
|
|
@@ -1024,7 +1030,7 @@ export interface RecipeCommentOutInput {
|
|
|
1024
1030
|
'createdAt': string;
|
|
1025
1031
|
'update_at': string;
|
|
1026
1032
|
'userId': string;
|
|
1027
|
-
'user':
|
|
1033
|
+
'user': MealieSchemaRecipeRecipeCommentsUserBase;
|
|
1028
1034
|
}
|
|
1029
1035
|
export interface RecipeCommentOutOutput {
|
|
1030
1036
|
'recipeId': string;
|
|
@@ -1786,12 +1792,6 @@ export interface UpdatePlanEntry {
|
|
|
1786
1792
|
'groupId': string;
|
|
1787
1793
|
'userId': string;
|
|
1788
1794
|
}
|
|
1789
|
-
export interface UserBase {
|
|
1790
|
-
'id': string;
|
|
1791
|
-
'username'?: string | null;
|
|
1792
|
-
'admin': boolean;
|
|
1793
|
-
'fullName'?: string | null;
|
|
1794
|
-
}
|
|
1795
1795
|
export interface UserBaseOutput {
|
|
1796
1796
|
'id': string;
|
|
1797
1797
|
'username'?: string | null;
|