- Debian-based api image (bookworm-slim), docker/debian mirrors, prisma binaryTargets for openssl 3.0 - nginx: admin SPA under /admin, TLS via acme.sh (ZeroSSL) + auto-renewal cron, http->https redirect - prisma: add origin_goods.delisted migration, sync missing schema (good_image/tag_font_color/good_tags), fix users.createdAt Timestamptz - api: CORS wildcard reflection, helmet CORP cross-origin, price backfill in persistProductDetail, categoryIcon ancestor fallback, mediaByColor per-color gallery in public goods detail - admin: /admin base path (vite + router) - import-data.mjs: udt_name casting, serial sequence advance fix
34 lines
783 B
TypeScript
34 lines
783 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import type { SyncLog } from '@prisma/client';
|
|
|
|
export class SyncLogDto {
|
|
@ApiProperty()
|
|
id!: string;
|
|
|
|
@ApiProperty()
|
|
type!: 'CATEGORIES' | 'PRODUCTS' | 'PRODUCT_DETAILS';
|
|
|
|
@ApiProperty()
|
|
status!: 'RUNNING' | 'SUCCESS' | 'FAILED';
|
|
|
|
@ApiProperty({ nullable: true })
|
|
message!: string | null;
|
|
|
|
@ApiProperty()
|
|
startedAt!: string;
|
|
|
|
@ApiProperty({ nullable: true })
|
|
finishedAt!: string | null;
|
|
|
|
static from(log: SyncLog): SyncLogDto {
|
|
return {
|
|
id: log.id.toString(),
|
|
type: log.type,
|
|
status: log.status,
|
|
message: log.message,
|
|
startedAt: log.startedAt.toISOString(),
|
|
finishedAt: log.finishedAt ? log.finishedAt.toISOString() : null,
|
|
};
|
|
}
|
|
}
|