mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 15:49:42 +02:00
chore: bump deps (#2513)
* bump dependencies * run code-generator * add direct dependency to text-unidecode * fix dev dependencies group
This commit is contained in:
parent
095edef95e
commit
c60c63852b
12 changed files with 223 additions and 206 deletions
|
@ -357,7 +357,7 @@ export interface RecipeTimelineEventCreate {
|
|||
subject: string;
|
||||
eventType: TimelineEventType;
|
||||
eventMessage?: string;
|
||||
image?: TimelineEventImage;
|
||||
image?: TimelineEventImage & string;
|
||||
timestamp?: string;
|
||||
}
|
||||
export interface RecipeTimelineEventIn {
|
||||
|
@ -366,7 +366,7 @@ export interface RecipeTimelineEventIn {
|
|||
subject: string;
|
||||
eventType: TimelineEventType;
|
||||
eventMessage?: string;
|
||||
image?: TimelineEventImage;
|
||||
image?: TimelineEventImage & string;
|
||||
timestamp?: string;
|
||||
}
|
||||
export interface RecipeTimelineEventOut {
|
||||
|
@ -375,7 +375,7 @@ export interface RecipeTimelineEventOut {
|
|||
subject: string;
|
||||
eventType: TimelineEventType;
|
||||
eventMessage?: string;
|
||||
image?: TimelineEventImage;
|
||||
image?: TimelineEventImage & string;
|
||||
timestamp?: string;
|
||||
id: string;
|
||||
createdAt: string;
|
||||
|
|
|
@ -21,6 +21,15 @@ export interface PaginationQuery {
|
|||
orderBy?: string;
|
||||
orderDirection?: OrderDirection & string;
|
||||
queryFilter?: string;
|
||||
paginationSeed?: string;
|
||||
}
|
||||
export interface RecipeSearchQuery {
|
||||
cookbook?: string;
|
||||
requireAllCategories?: boolean;
|
||||
requireAllTags?: boolean;
|
||||
requireAllTools?: boolean;
|
||||
requireAllFoods?: boolean;
|
||||
search?: string;
|
||||
}
|
||||
export interface SuccessResponse {
|
||||
message: string;
|
||||
|
|
|
@ -119,6 +119,9 @@ export interface PrivateUser {
|
|||
loginAttemps?: number;
|
||||
lockedAt?: string;
|
||||
}
|
||||
export interface PasswordResetToken {
|
||||
token: string;
|
||||
}
|
||||
export interface PrivatePasswordResetToken {
|
||||
userId: string;
|
||||
token: string;
|
||||
|
@ -148,6 +151,7 @@ export interface UnlockResults {
|
|||
export interface UpdateGroup {
|
||||
name: string;
|
||||
id: string;
|
||||
slug: string;
|
||||
categories?: CategoryBase[];
|
||||
webhooks?: unknown[];
|
||||
}
|
||||
|
@ -234,6 +238,3 @@ export interface UserIn {
|
|||
export interface ValidateResetToken {
|
||||
token: string;
|
||||
}
|
||||
export interface PasswordResetToken {
|
||||
token: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue