We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1278f0b commit c50eeb7Copy full SHA for c50eeb7
src/clients/inbox-client.ts
@@ -58,8 +58,8 @@ export class InboxClient extends BaseClient {
58
workspace_id: args.workspaceId,
59
}
60
61
- if (args.since) params.since_ts_or_obj_idx = Math.floor(args.since.getTime() / 1000)
62
- if (args.until) params.until_ts_or_obj_idx = Math.floor(args.until.getTime() / 1000)
+ if (args.since) params.newer_than_ts = Math.floor(args.since.getTime() / 1000)
+ if (args.until) params.older_than_ts = Math.floor(args.until.getTime() / 1000)
63
if (args.limit) params.limit = args.limit
64
if (args.cursor) params.cursor = args.cursor
65
0 commit comments