@@ -93,6 +93,7 @@ def list(
9393 * ,
9494 after : str | NotGiven = NOT_GIVEN ,
9595 before : str | NotGiven = NOT_GIVEN ,
96+ file_type : str | NotGiven = NOT_GIVEN ,
9697 graph_id : str | NotGiven = NOT_GIVEN ,
9798 limit : int | NotGiven = NOT_GIVEN ,
9899 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
@@ -115,6 +116,9 @@ def list(
115116 before: The ID of the first object in the previous page. This parameter instructs the
116117 API to return the previous page of results.
117118
119+ file_type: The extensions of the files to retrieve. Separate multiple extensions with a
120+ comma. For example: `pdf,jpg,docx`.
121+
118122 graph_id: The unique identifier of the graph to which the files belong.
119123
120124 limit: Specifies the maximum number of objects returned in a page. The default value
@@ -146,6 +150,7 @@ def list(
146150 {
147151 "after" : after ,
148152 "before" : before ,
153+ "file_type" : file_type ,
149154 "graph_id" : graph_id ,
150155 "limit" : limit ,
151156 "order" : order ,
@@ -356,6 +361,7 @@ def list(
356361 * ,
357362 after : str | NotGiven = NOT_GIVEN ,
358363 before : str | NotGiven = NOT_GIVEN ,
364+ file_type : str | NotGiven = NOT_GIVEN ,
359365 graph_id : str | NotGiven = NOT_GIVEN ,
360366 limit : int | NotGiven = NOT_GIVEN ,
361367 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
@@ -378,6 +384,9 @@ def list(
378384 before: The ID of the first object in the previous page. This parameter instructs the
379385 API to return the previous page of results.
380386
387+ file_type: The extensions of the files to retrieve. Separate multiple extensions with a
388+ comma. For example: `pdf,jpg,docx`.
389+
381390 graph_id: The unique identifier of the graph to which the files belong.
382391
383392 limit: Specifies the maximum number of objects returned in a page. The default value
@@ -409,6 +418,7 @@ def list(
409418 {
410419 "after" : after ,
411420 "before" : before ,
421+ "file_type" : file_type ,
412422 "graph_id" : graph_id ,
413423 "limit" : limit ,
414424 "order" : order ,
0 commit comments