Now I am starting to get familiar with createIdentity method but I have 2 issues with it. First - creation is successful, however I am getting null as a return value from this method and second - when I am listing created identities, they miss email trait although I am sending it to the method and I can see it in "recoveryAddresses" and also "verifiableAddresses". This is how I am invoking this method: "var credentials = new KratosIdentityWithCredentials(password: new KratosIdentityWithCredentialsPassword(config: new KratosIdentityWithCredentialsPasswordConfig(password: request.Password)));
UserTraits traitsObject = new()
{
email = request.Email
};
var kratosCreateIdentityBody = new KratosCreateIdentityBody(schemaId: "default", traits: traitsObject, credentials: credentials);" where UserTraits is class with just "email" property in it. Any ideas what am I doing wrong?