Skip to content

Commit b37854a

Browse files
feat: add openapi-yaml command
1 parent 3a94db2 commit b37854a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 106
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/keycard%2Fkeycard-api-a6c69375c7b6a9cb277146a1e7e9efcce4344c551f8921683a35934ddb485f73.yml
3-
openapi_spec_hash: 7c34a8fc7e4eebe443cfa233c501ece6
4-
config_hash: fab2044922865fa04fb03f5f19e195a0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/keycard%2Fkeycard-api-1a24bef1d575743c453111f5967c9e233a093b0b35aa31e0bc508d0a654b31e2.yml
3+
openapi_spec_hash: 9567eb9828bd2c6984eeb838c67ae033
4+
config_hash: 8fdc6a9c1185417459f79052b1222ff0

src/keycardai_api/types/organization_list_identities_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ class Item(BaseModel):
5353
class Pagination(BaseModel):
5454
"""Cursor-based pagination metadata returned alongside a list of results"""
5555

56-
after_cursor: str
56+
after_cursor: Optional[str] = None
5757
"""An opaque cursor used for paginating through a list of results"""
5858

59-
before_cursor: str
59+
before_cursor: Optional[str] = None
6060
"""An opaque cursor used for paginating through a list of results"""
6161

6262
total_count: Optional[int] = None

0 commit comments

Comments
 (0)