|
6 | 6 |
|
7 | 7 | import httpx |
8 | 8 |
|
9 | | -from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven |
| 9 | +from ..._types import Body, Omit, Query, Headers, NotGiven, omit, not_given |
10 | 10 | from ..._utils import maybe_transform, async_maybe_transform |
11 | 11 | from ..._compat import cached_property |
12 | 12 | from ..._resource import SyncAPIResource, AsyncAPIResource |
@@ -49,17 +49,17 @@ def list( |
49 | 49 | self, |
50 | 50 | project_version_id: str, |
51 | 51 | *, |
52 | | - include_archived: bool | NotGiven = NOT_GIVEN, |
53 | | - page: int | NotGiven = NOT_GIVEN, |
54 | | - per_page: int | NotGiven = NOT_GIVEN, |
55 | | - status: Literal["running", "passing", "failing", "skipped", "error"] | NotGiven = NOT_GIVEN, |
56 | | - type: Literal["integrity", "consistency", "performance", "fairness", "robustness"] | NotGiven = NOT_GIVEN, |
| 52 | + include_archived: bool | Omit = omit, |
| 53 | + page: int | Omit = omit, |
| 54 | + per_page: int | Omit = omit, |
| 55 | + status: Literal["running", "passing", "failing", "skipped", "error"] | Omit = omit, |
| 56 | + type: Literal["integrity", "consistency", "performance", "fairness", "robustness"] | Omit = omit, |
57 | 57 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
58 | 58 | # The extra values given here take precedence over values defined on the client or passed to this method. |
59 | 59 | extra_headers: Headers | None = None, |
60 | 60 | extra_query: Query | None = None, |
61 | 61 | extra_body: Body | None = None, |
62 | | - timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, |
| 62 | + timeout: float | httpx.Timeout | None | NotGiven = not_given, |
63 | 63 | ) -> TestResultListResponse: |
64 | 64 | """ |
65 | 65 | List the test results for a project commit (project version). |
@@ -133,17 +133,17 @@ async def list( |
133 | 133 | self, |
134 | 134 | project_version_id: str, |
135 | 135 | *, |
136 | | - include_archived: bool | NotGiven = NOT_GIVEN, |
137 | | - page: int | NotGiven = NOT_GIVEN, |
138 | | - per_page: int | NotGiven = NOT_GIVEN, |
139 | | - status: Literal["running", "passing", "failing", "skipped", "error"] | NotGiven = NOT_GIVEN, |
140 | | - type: Literal["integrity", "consistency", "performance", "fairness", "robustness"] | NotGiven = NOT_GIVEN, |
| 136 | + include_archived: bool | Omit = omit, |
| 137 | + page: int | Omit = omit, |
| 138 | + per_page: int | Omit = omit, |
| 139 | + status: Literal["running", "passing", "failing", "skipped", "error"] | Omit = omit, |
| 140 | + type: Literal["integrity", "consistency", "performance", "fairness", "robustness"] | Omit = omit, |
141 | 141 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
142 | 142 | # The extra values given here take precedence over values defined on the client or passed to this method. |
143 | 143 | extra_headers: Headers | None = None, |
144 | 144 | extra_query: Query | None = None, |
145 | 145 | extra_body: Body | None = None, |
146 | | - timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, |
| 146 | + timeout: float | httpx.Timeout | None | NotGiven = not_given, |
147 | 147 | ) -> TestResultListResponse: |
148 | 148 | """ |
149 | 149 | List the test results for a project commit (project version). |
|
0 commit comments