Skip to content

Commit

Permalink
feat: Add basic pagination parameters to device list (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Jul 22, 2023
1 parent db9d10c commit cfd0c7b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -958,6 +958,8 @@ export interface Routes {
)
| undefined
device_ids?: string[] | undefined
limit?: number
created_before?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down Expand Up @@ -1131,6 +1133,8 @@ export interface Routes {
)
| undefined
device_ids?: string[] | undefined
limit?: number
created_before?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down Expand Up @@ -1532,6 +1536,8 @@ export interface Routes {
)
| undefined
device_ids?: string[] | undefined
limit?: number
created_before?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down Expand Up @@ -2123,6 +2129,8 @@ export interface Routes {
)
| undefined
device_ids?: string[] | undefined
limit?: number
created_before?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down

0 comments on commit cfd0c7b

Please sign in to comment.