Skip to content

Commit 9306c6c

Browse files
jensmeichleresezen
andauthored
fix: additional params for fmtOptions (#415)
* fix: additional params for fmtOptions Since those parameters are already passed properly there should be no need to change anything but the type definition for the fmt_options * Update src/types/index.d.ts --------- Co-authored-by: Enes Kutay SEZEN <eneskutaysezen@gmail.com>
1 parent 0d8e0e8 commit 9306c6c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/types/index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ export interface FmtOptions extends Record<string, any> {
162162
groups_max_depth?: number;
163163
groups_start?: 'current' | 'top' | `group_id:${string}`;
164164
fields?: string[]; // Array of metadata field to be returned in the data response
165+
hidden_fields?: string[];
166+
show_hidden_fields?: boolean;
167+
variations_return_type?: 'default' | 'all' | 'matched';
165168
}
166169

167170
export type Nullable<T> = T | null;

0 commit comments

Comments
 (0)