Merge remote-tracking branch 'origin' into back-office-integration

This commit is contained in:
sdarbinyan
2026-02-28 16:13:14 +04:00
217 changed files with 10170 additions and 5789 deletions

View File

@@ -24,7 +24,7 @@ export interface ItemTranslation {
description?: DescriptionField[];
}
export interface Callback {
export interface Review {
rating?: number;
content?: string;
userID?: string;
@@ -32,6 +32,9 @@ export interface Callback {
timestamp?: string;
}
/** @deprecated Use {@link Review} instead */
export type Callback = Review;
export interface Question {
question: string;
answer: string;
@@ -50,7 +53,7 @@ export interface Item {
discount: number;
remainings?: string;
rating: number;
callbacks: Callback[] | null;
callbacks: Review[] | null;
questions: Question[] | null;
partnerID?: string;
quantity?: number;