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

remove deprecated timezone_offset, use newly introduced timezone #197

Merged
merged 1 commit into from
Sep 11, 2024
Merged
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
10 changes: 5 additions & 5 deletions src/types/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ export interface operations {
to?: string
token_address?: string
value?: string
timezone_offset?: number
timezone?: string
}
}
responses: {
Expand All @@ -622,7 +622,7 @@ export interface operations {
query?: {
module?: string
to?: string
timezone_offset?: number
timezone?: string
transaction_hash?: string
}
}
Expand Down Expand Up @@ -650,7 +650,7 @@ export interface operations {
value?: string
nonce?: string
executed?: string
timezone_offset?: number
timezone?: string
}
}
responses: {
Expand Down Expand Up @@ -729,7 +729,7 @@ export interface operations {
page_url?: string
trusted?: boolean
imitation?: boolean
timezone_offset?: number
timezone?: string
}
}
responses: {
Expand All @@ -748,7 +748,7 @@ export interface operations {
/** Taken from the Page['next'] or Page['previous'] */
page_url?: string
trusted?: boolean
timezone_offset?: number
timezone?: string
}
}
responses: {
Expand Down
Loading