Skip to content

Commit

Permalink
feat(RESTGetAPIAuditLogQuery): support after (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Jan 4, 2023
1 parent 5e9bff9 commit bb2ef84
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/rest/v10/auditLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export interface RESTGetAPIAuditLogQuery {
* Filter the log before a certain entry ID
*/
before?: Snowflake;
/**
* Filter the log after a certain entry ID
*/
after?: Snowflake;
/**
* How many entries are returned (default 50, minimum 1, maximum 100)
*
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/auditLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export interface RESTGetAPIAuditLogQuery {
* Filter the log before a certain entry ID
*/
before?: Snowflake;
/**
* Filter the log after a certain entry ID
*/
after?: Snowflake;
/**
* How many entries are returned (default 50, minimum 1, maximum 100)
*
Expand Down
4 changes: 4 additions & 0 deletions rest/v10/auditLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export interface RESTGetAPIAuditLogQuery {
* Filter the log before a certain entry ID
*/
before?: Snowflake;
/**
* Filter the log after a certain entry ID
*/
after?: Snowflake;
/**
* How many entries are returned (default 50, minimum 1, maximum 100)
*
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/auditLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export interface RESTGetAPIAuditLogQuery {
* Filter the log before a certain entry ID
*/
before?: Snowflake;
/**
* Filter the log after a certain entry ID
*/
after?: Snowflake;
/**
* How many entries are returned (default 50, minimum 1, maximum 100)
*
Expand Down

1 comment on commit bb2ef84

@vercel
Copy link

@vercel vercel bot commented on bb2ef84 Jan 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.