Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion workos/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__package_url__ = "https://github.com/workos-inc/workos-python"

__version__ = "0.4.0"
__version__ = "0.4.1"

__author__ = "WorkOS"

Expand Down
14 changes: 7 additions & 7 deletions workos/audit_trail.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,25 +126,25 @@ def get_events(
}

if group is not None:
params["group"] = list(group)
params["group[]"] = group

if action is not None:
params["action"] = list(action)
params["action[]"] = action

if action_type is not None:
params["action_type"] = list(action_type)
params["action_type[]"] = action_type

if actor_name is not None:
params["actor_name"] = list(actor_name)
params["actor_name[]"] = actor_name

if actor_id is not None:
params["actor_id"] = list(actor_id)
params["actor_id[]"] = actor_id

if target_name is not None:
params["target_name"] = list(target_name)
params["target_name[]"] = target_name

if target_id is not None:
params["target_id"] = list(target_id)
params["target_id[]"] = target_id

if occurred_at is not None:
params["occurred_at"] = occurred_at
Expand Down