Skip to content

Commit 807dfca

Browse files
committed
Updating some missing schema info
1 parent 9d929d9 commit 807dfca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tap_clerk/streams.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ class UsersStream(ClerkStream):
193193
th.Property("two_factor_enabled", th.BooleanType),
194194
th.Property("totp_enabled", th.BooleanType),
195195
th.Property("backup_code_enabled", th.BooleanType),
196+
th.Property("mfa_enabled_at", th.IntegerType),
197+
th.Property("mfa_disabled_at", th.IntegerType),
196198
th.Property("external_accounts", th.ArrayType(th.ObjectType(additional_properties=True))),
197199
th.Property("saml_accounts", th.ArrayType(th.ObjectType(
198200
th.Property("id", th.StringType),
@@ -228,7 +230,9 @@ class UsersStream(ClerkStream):
228230
th.Property("created_at", th.IntegerType),
229231
th.Property("delete_self_enabled", th.BooleanType),
230232
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)
232236
).to_dict()
233237

234238
def get_url_params(self, context: dict | None, next_page_token: t.Any | None) -> dict[str, t.Any]:

0 commit comments

Comments
 (0)