This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Description
Is it possible to have the field privateAttributeNamesavailable when creating an instance of the client, so it gets propagated for all users sharing the same instance? It would be similar to how it works for JS API on LDOptions.
Check the example below:
const user = { key: "new-user" }
const config = { privateAttributeNames: ["name", "email"] }
try {
await client.configure(config, user);
return client;
} catch (err) {
console.error(err)
}
Thanks in advance!