Files
negareh-api/src/seeders/data/product-field-options.data.ts
T
morteza a69b75ccdd
deploy to danak / build_and_deploy (push) Has been cancelled
update seeder
2026-07-20 23:26:27 +03:30

12 lines
340 B
TypeScript

/**
* Product field options are defined inline in `product-field.data.ts`
* (per category) and created by `ProductsFieldsSeeder`.
* Kept for backward compatibility with `FieldOptionSeeder`.
*/
export interface AttributeValueData {
value: string;
attributeName: string;
}
export const attributeValueData: AttributeValueData[] = [];