@@ -193,6 +193,8 @@ class UsersStream(ClerkStream):
193
193
th .Property ("two_factor_enabled" , th .BooleanType ),
194
194
th .Property ("totp_enabled" , th .BooleanType ),
195
195
th .Property ("backup_code_enabled" , th .BooleanType ),
196
+ th .Property ("mfa_enabled_at" , th .IntegerType ),
197
+ th .Property ("mfa_disabled_at" , th .IntegerType ),
196
198
th .Property ("external_accounts" , th .ArrayType (th .ObjectType (additional_properties = True ))),
197
199
th .Property ("saml_accounts" , th .ArrayType (th .ObjectType (
198
200
th .Property ("id" , th .StringType ),
@@ -228,7 +230,9 @@ class UsersStream(ClerkStream):
228
230
th .Property ("created_at" , th .IntegerType ),
229
231
th .Property ("delete_self_enabled" , th .BooleanType ),
230
232
th .Property ("create_organization_enabled" , th .BooleanType ),
231
- th .Property ("last_active_at" , th .IntegerType )
233
+ th .Property ("create_organizations_limit" , th .IntegerType ),
234
+ th .Property ("last_active_at" , th .IntegerType ),
235
+ th .Property ("legal_accepted_at" , th .IntegerType )
232
236
).to_dict ()
233
237
234
238
def get_url_params (self , context : dict | None , next_page_token : t .Any | None ) -> dict [str , t .Any ]:
0 commit comments