1
0
Fork 0
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:
Hayden 2023-08-20 16:09:13 -08:00 committed by GitHub
parent 095edef95e
commit c60c63852b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 223 additions and 206 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;
}