-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add missing select field on query parameter and missing name field on grant model * lint --------- Co-authored-by: Subash Pradhan <[email protected]>
- Loading branch information
1 parent
a641a22
commit 1463246
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
export interface ListQueryParams { | ||
/** | ||
* The maximum number of objects to return. | ||
* This field defaults to 50. The maximum allowed value is 200. | ||
*/ | ||
limit?: number; | ||
/** | ||
* An identifier that specifies which page of data to return. | ||
* This value should be taken from the [ListResponse.nextCursor] response field. | ||
*/ | ||
pageToken?: string; | ||
/** | ||
* Specify fields that you want Nylas to return | ||
* as a comma-separated list (for example, select=id,updated_at). | ||
* This allows you to receive only the portion of object data that you're interested in. | ||
*/ | ||
select?: string; | ||
} |