This commit is contained in:
Mateusz Gruszczyński
2026-04-06 14:37:42 +02:00
parent 237596bd52
commit 80e181ea3f
41 changed files with 14959 additions and 1023 deletions

View File

@@ -36,6 +36,16 @@ export class User {
categoryIds?: string[];
} | null;
@Column({ type: 'simple-json', nullable: true })
shoppingListIntegration!: {
enabled?: boolean;
baseUrl?: string;
apiToken?: string;
authMode?: 'bearer' | 'x-api-token' | 'both';
ownerId?: string | null;
defaultListId?: string | null;
} | null;
@CreateDateColumn({ type: 'datetime' })
createdAt!: Date;