add embeddings, remove userId from business & commercialProperty replaced by email

This commit is contained in:
2024-07-13 19:44:07 +02:00
parent bf4bd69337
commit b7b34dacab
17 changed files with 123 additions and 763 deletions

View File

@@ -44,7 +44,7 @@ export interface UserData {
}
export interface BusinessListing {
id: string;
userId?: string;
email?: string;
type?: number;
title?: string;
description?: string;
@@ -76,7 +76,7 @@ export interface BusinessListing {
export interface CommercialPropertyListing {
id: string;
serialId?: number;
userId?: string;
email?: string;
type?: number;
title?: string;
description?: string;
@@ -88,9 +88,6 @@ export interface CommercialPropertyListing {
draft?: boolean;
zipCode?: number;
county?: string;
email?: string;
website?: string;
phoneNumber?: string;
imageOrder?: string[];
imagePath?: string;
created?: Date;