Skip to content

Commit

Permalink
fix(messages): change query param name
Browse files Browse the repository at this point in the history
  • Loading branch information
erezsob committed Feb 21, 2019
1 parent e254535 commit 11d4550
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v0/messages.ts
Expand Up @@ -10,7 +10,7 @@ export interface MessagesOptions {
export interface MessagesQueryOptions {
read?: boolean
ignored?: boolean
last_updated_at?: string
min_updated_at?: string
}

export interface MessagesResponse {
Expand Down
2 changes: 1 addition & 1 deletion test/messages/get-all.test.ts
Expand Up @@ -16,7 +16,7 @@ afterEach(() => {
const queryParams = {
read: false,
ignored: false,
last_updated_at: new Date().toISOString()
min_updated_at: new Date().toISOString()
}

describe('v0: Messages: can get all messages', () => {
Expand Down

0 comments on commit 11d4550

Please sign in to comment.