|
@@ -6,7 +6,7 @@ export interface ScraperJob {
|
|
|
error?: string;
|
|
error?: string;
|
|
|
createdAt: Date;
|
|
createdAt: Date;
|
|
|
updatedAt: Date;
|
|
updatedAt: Date;
|
|
|
- shopId?: string; // UUID of the shop this job belongs to
|
|
|
|
|
|
|
+ siteId?: string; // UUID of the site this job belongs to
|
|
|
scrapeHistoryId?: string; // ID of the scrape history record
|
|
scrapeHistoryId?: string; // ID of the scrape history record
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -24,7 +24,7 @@ export interface PageContent {
|
|
|
title?: string;
|
|
title?: string;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-export type WebshopType = 'shoprenter' | 'woocommerce' | 'shopify';
|
|
|
|
|
|
|
+export type SitePlatform = 'shoprenter' | 'woocommerce' | 'shopify' | 'generic';
|
|
|
|
|
|
|
|
export interface SitemapUrl {
|
|
export interface SitemapUrl {
|
|
|
loc: string;
|
|
loc: string;
|