Skip to content

Commit 60b9d57

Browse files
chore(internal): codegen related update
1 parent 94b79a2 commit 60b9d57

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/resources/hris/directory.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,21 @@ export interface DirectoryListParams extends IndividualsPageParams {
9999
entity_ids?: Array<string>;
100100
}
101101

102-
export interface DirectoryListIndividualsParams extends IndividualsPageParams {
102+
export interface DirectoryListIndividualsParams {
103103
/**
104104
* The entity IDs to specify which entities' data to access.
105105
*/
106106
entity_ids?: Array<string>;
107+
108+
/**
109+
* Number of employees to return (defaults to all)
110+
*/
111+
limit?: number;
112+
113+
/**
114+
* Index to start from (defaults to 0)
115+
*/
116+
offset?: number;
107117
}
108118

109119
export declare namespace Directory {

0 commit comments

Comments
 (0)