This commit is contained in:
pradeepkumar
2026-01-24 21:36:37 +05:30
parent eba83e2961
commit 7d6ef356e2
6 changed files with 436 additions and 31 deletions

View File

@@ -45,7 +45,7 @@ interface ApiResponse<T> {
export interface FieldValueInput {
fieldSlug: string;
value: string | number | boolean | string[] | Record<string, unknown> | null;
value: string | number | boolean | string[] | Record<string, unknown> | Record<string, unknown>[] | null;
}
export interface FieldValueResponse {