@constructor-io/constructorio-node 4.14.2 → 4.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/index.d.ts +2 -1
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -33,7 +33,8 @@ export interface UserParameters {
|
|
|
33
33
|
|
|
34
34
|
export interface FmtOptions extends Record<string, any> {
|
|
35
35
|
groups_max_depth?: number;
|
|
36
|
-
groups_start?: 'current' | 'top'
|
|
36
|
+
groups_start?: 'current' | 'top' | `group_id:${string}`;
|
|
37
|
+
fields?: string[]; // Array of metadata field to be returned in the data response
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
export interface RequestFeature extends Record<string, any> {
|