Skip to content

Commit ff06097

Browse files
feat(api): api update
1 parent 03902e7 commit ff06097

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1751
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-38137fd04b869e5f6af7111acbdaf6ed1258cd912a6bcc3bde6b331831de6ef4.yml
3-
openapi_spec_hash: 5adbd62afe541f4fb3f91ddc4c6f1797
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-4b9c795ad1778404bcdd647198e7e43e952299ab167c30b9913c100209392f31.yml
3+
openapi_spec_hash: d06e58f4d8dcc7879fa4bf5f760fb773
44
config_hash: 259b5eeae0358ea7d7756b294847f140

src/cloudflare/types/email_security/investigate_get_response.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77

88
from ..._models import BaseModel
99

10-
__all__ = ["InvestigateGetResponse", "Validation"]
10+
__all__ = ["InvestigateGetResponse", "Properties", "Validation"]
11+
12+
13+
class Properties(BaseModel):
14+
whitelisted_pattern_type: Optional[str] = None
1115

1216

1317
class Validation(BaseModel):
@@ -36,6 +40,8 @@ class InvestigateGetResponse(BaseModel):
3640
postfix_id: str
3741
"""The identifier of the message."""
3842

43+
properties: Properties
44+
3945
ts: str
4046

4147
alert_id: Optional[str] = None

src/cloudflare/types/email_security/investigate_list_response.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77

88
from ..._models import BaseModel
99

10-
__all__ = ["InvestigateListResponse", "Validation"]
10+
__all__ = ["InvestigateListResponse", "Properties", "Validation"]
11+
12+
13+
class Properties(BaseModel):
14+
whitelisted_pattern_type: Optional[str] = None
1115

1216

1317
class Validation(BaseModel):
@@ -36,6 +40,8 @@ class InvestigateListResponse(BaseModel):
3640
postfix_id: str
3741
"""The identifier of the message."""
3842

43+
properties: Properties
44+
3945
ts: str
4046

4147
alert_id: Optional[str] = None

0 commit comments

Comments
 (0)