Skip to content

Commit dc2b7e5

Browse files
feat(api): api update
1 parent a18bab3 commit dc2b7e5

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
configured_endpoints: 17
2-
openapi_spec_hash: 8827ead72aa0c635ccafac5e008fe247
2+
openapi_spec_hash: a9c2f380c41389904ec243caa6fd4cc8
33
config_hash: 087e6b8013c398a6d24031d24594fdec

src/openlayer/types/projects/test_list_response.py

+1-17
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,7 @@
88

99
from ..._models import BaseModel
1010

11-
__all__ = ["TestListResponse", "_Meta", "Item", "ItemThreshold", "ItemThresholdInsightParameter"]
12-
13-
14-
class _Meta(BaseModel):
15-
page: int
16-
"""The current page."""
17-
18-
per_page: int = FieldInfo(alias="perPage")
19-
"""The number of items per page."""
20-
21-
total_items: int = FieldInfo(alias="totalItems")
22-
"""The total number of items."""
23-
24-
total_pages: int = FieldInfo(alias="totalPages")
25-
"""The total number of pages."""
11+
__all__ = ["TestListResponse", "Item", "ItemThreshold", "ItemThresholdInsightParameter"]
2612

2713

2814
class ItemThresholdInsightParameter(BaseModel):
@@ -168,6 +154,4 @@ class Item(BaseModel):
168154

169155
class TestListResponse(BaseModel):
170156
__test__ = False
171-
api_meta: _Meta = FieldInfo(alias="_meta")
172-
173157
items: List[Item]

0 commit comments

Comments
 (0)