@@ -126,6 +126,7 @@ def list(
126126 * ,
127127 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
128128 filters : str | NotGiven = NOT_GIVEN ,
129+ include_content : bool | NotGiven = NOT_GIVEN ,
129130 limit : Union [str , float ] | NotGiven = NOT_GIVEN ,
130131 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
131132 page : Union [str , float ] | NotGiven = NOT_GIVEN ,
@@ -146,6 +147,9 @@ def list(
146147
147148 filters: Optional filters to apply to the search
148149
150+ include_content: Whether to include the content field in the response. Warning: This can make
151+ responses significantly larger.
152+
149153 limit: Number of items per page
150154
151155 order: Sort order
@@ -168,6 +172,7 @@ def list(
168172 {
169173 "container_tags" : container_tags ,
170174 "filters" : filters ,
175+ "include_content" : include_content ,
171176 "limit" : limit ,
172177 "order" : order ,
173178 "page" : page ,
@@ -462,6 +467,7 @@ async def list(
462467 * ,
463468 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
464469 filters : str | NotGiven = NOT_GIVEN ,
470+ include_content : bool | NotGiven = NOT_GIVEN ,
465471 limit : Union [str , float ] | NotGiven = NOT_GIVEN ,
466472 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
467473 page : Union [str , float ] | NotGiven = NOT_GIVEN ,
@@ -482,6 +488,9 @@ async def list(
482488
483489 filters: Optional filters to apply to the search
484490
491+ include_content: Whether to include the content field in the response. Warning: This can make
492+ responses significantly larger.
493+
485494 limit: Number of items per page
486495
487496 order: Sort order
@@ -504,6 +513,7 @@ async def list(
504513 {
505514 "container_tags" : container_tags ,
506515 "filters" : filters ,
516+ "include_content" : include_content ,
507517 "limit" : limit ,
508518 "order" : order ,
509519 "page" : page ,
0 commit comments