Currently, it is typed as follow, which is too permissive :
export type UpdateDataAttributeRequestBody = {
options: {
value?: string | undefined;
}[];
} | unknown;
In order to correctly match API specifications, it should look more like this :
export type UpdateDataAttributeRequestBody = {
archived?: boolean;
description?: string;
messenger_writable?: boolean;
options?: {
value?: string | undefined;
}[];
};