Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(api)!: remove previous_auth_rule_tokens from auth rules #69

Merged
merged 1 commit into from
Jul 5, 2023
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
7 changes: 0 additions & 7 deletions src/lithic/types/auth_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ class AuthRule(BaseModel):
Rule.
"""

previous_auth_rule_tokens: Optional[List[str]]
"""
Identifier for the Auth Rule(s) that a new Auth Rule replaced; will be returned
only if an Auth Rule is applied to entities that previously already had one
applied.
"""

program_level: Optional[bool]
"""Boolean indicating whether the Auth Rule is applied at the program level."""

Expand Down
2 changes: 0 additions & 2 deletions src/lithic/types/auth_rule_remove_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@ class AuthRuleRemoveResponse(BaseModel):

card_tokens: Optional[List[str]]

previous_auth_rule_tokens: Optional[List[str]]

program_level: Optional[bool]