mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04: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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user