@@ -1473,7 +1473,7 @@ async def list_api_keys(
14731473 application_id : Optional [str ] = None ,
14741474 user_id : Optional [str ] = None ,
14751475 editable : Optional [bool ] = None ,
1476- expirable : Optional [bool ] = None ,
1476+ expired : Optional [bool ] = None ,
14771477 access_key : Optional [str ] = None ,
14781478 description : Optional [str ] = None ,
14791479 bearer_id : Optional [str ] = None ,
@@ -1492,7 +1492,7 @@ async def list_api_keys(
14921492
14931493 One-of ('bearer'): at most one of 'application_id', 'user_id' could be set.
14941494 :param editable: Filter out editable API keys or not
1495- :param expirable : Filter out expirable API keys or not
1495+ :param expired : Filter out expired API keys or not
14961496 :param access_key: Filter out by access key
14971497 :param description: Filter out by description
14981498 :param bearer_id: Filter out by bearer ID
@@ -1514,7 +1514,7 @@ async def list_api_keys(
15141514 "bearer_type" : bearer_type ,
15151515 "description" : description ,
15161516 "editable" : editable ,
1517- "expirable " : expirable ,
1517+ "expired " : expired ,
15181518 "order_by" : order_by ,
15191519 "organization_id" : organization_id
15201520 or self .client .default_organization_id ,
@@ -1542,7 +1542,7 @@ async def list_api_keys_all(
15421542 application_id : Optional [str ] = None ,
15431543 user_id : Optional [str ] = None ,
15441544 editable : Optional [bool ] = None ,
1545- expirable : Optional [bool ] = None ,
1545+ expired : Optional [bool ] = None ,
15461546 access_key : Optional [str ] = None ,
15471547 description : Optional [str ] = None ,
15481548 bearer_id : Optional [str ] = None ,
@@ -1561,7 +1561,7 @@ async def list_api_keys_all(
15611561
15621562 One-of ('bearer'): at most one of 'application_id', 'user_id' could be set.
15631563 :param editable: Filter out editable API keys or not
1564- :param expirable : Filter out expirable API keys or not
1564+ :param expired : Filter out expired API keys or not
15651565 :param access_key: Filter out by access key
15661566 :param description: Filter out by description
15671567 :param bearer_id: Filter out by bearer ID
@@ -1586,7 +1586,7 @@ async def list_api_keys_all(
15861586 "application_id" : application_id ,
15871587 "user_id" : user_id ,
15881588 "editable" : editable ,
1589- "expirable " : expirable ,
1589+ "expired " : expired ,
15901590 "access_key" : access_key ,
15911591 "description" : description ,
15921592 "bearer_id" : bearer_id ,
0 commit comments