Skip to content

Commit 70be786

Browse files
feat(api): api update
1 parent 1e02aa5 commit 70be786

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
configured_endpoints: 54
2-
openapi_spec_hash: 49989625bf633c5fdb3e11140f788f2d
2+
openapi_spec_hash: c37472afd4b354d9a4e358b9dc6fd1a8
33
config_hash: 930284cfa37f835d949c8a1b124f4807

src/codex/resources/projects/projects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def invite_sme(
352352
project_id: str,
353353
*,
354354
email: str,
355-
page_type: Literal["query_log", "remediation"],
355+
page_type: Literal["query_log", "remediation", "prioritized_issue"],
356356
url_query_string: str,
357357
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
358358
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -925,7 +925,7 @@ async def invite_sme(
925925
project_id: str,
926926
*,
927927
email: str,
928-
page_type: Literal["query_log", "remediation"],
928+
page_type: Literal["query_log", "remediation", "prioritized_issue"],
929929
url_query_string: str,
930930
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
931931
# The extra values given here take precedence over values defined on the client or passed to this method.

src/codex/types/project_invite_sme_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
class ProjectInviteSmeParams(TypedDict, total=False):
1111
email: Required[str]
1212

13-
page_type: Required[Literal["query_log", "remediation"]]
13+
page_type: Required[Literal["query_log", "remediation", "prioritized_issue"]]
1414

1515
url_query_string: Required[str]

0 commit comments

Comments
 (0)