customer registration api integration

This commit is contained in:
yaschalew
2026-05-21 02:21:32 +03:00
parent fea308a6af
commit c7347b88d7
39 changed files with 2273 additions and 910 deletions

View File

@@ -0,0 +1,37 @@
import { BaseEntity } from "@edr/api-common";
import { Column, Entity, Index, OneToMany } from "typeorm";
import { DropdownOption } from "./dropdown-option.entity";
export interface DropdownSettingMeta {
icon?: string;
color?: string;
searchable?: boolean;
clearable?: boolean;
permissions?: string[];
version?: string;
}
@Entity({ name: "dropdown_settings" })
@Index(["code"], { unique: true })
export class DropdownSetting extends BaseEntity {
@Column({ name: "code", type: "varchar", length: 128, unique: true })
code!: string;
@Column({ name: "label", type: "varchar", length: 256 })
label!: string;
@Column({ name: "description", type: "text", nullable: true })
description?: string | null;
@Column({ name: "multiple", type: "boolean", default: false })
multiple!: boolean;
@Column({ name: "meta", type: "jsonb", nullable: true })
meta?: DropdownSettingMeta | null;
@OneToMany(() => DropdownOption, (option) => option.setting, {
cascade: true,
})
children!: DropdownOption[];
}