Skip to content

Commit cb5769e

Browse files
fix(config): Diagnostic errors
1 parent 5d271a4 commit cb5769e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
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: 1752
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-87cffcb2b7a8c40e24da5ed6c357445c8eb7acdb63152243fd2f1a3f4dba688c.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-628b27476dcb24be6d178f13e44068933c1e4cf67895b708a62fc182ae35a83a.yml
33
openapi_spec_hash: 5d8aa29e0696dfd71cc1e27c3d520f2e
4-
config_hash: a1b7c5aaad1e2019b29cef1b1da689fc
4+
config_hash: 8f5aab183b4a8e0f4a9ec9c0293b54f1

api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,6 +1081,7 @@ from cloudflare.types.dns import (
10811081
NAPTRRecord,
10821082
NSRecord,
10831083
PTRRecord,
1084+
Record,
10841085
RecordResponse,
10851086
RecordTags,
10861087
SMIMEARecord,

src/cloudflare/types/d1/database_import_params.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
from typing import Union
66
from typing_extensions import Literal, Required, TypeAlias, TypedDict
77

8-
__all__ = ["DatabaseImportParams", "Variant0", "Variant1", "Variant2"]
8+
__all__ = ["DatabaseImportParams", "Init", "Ingest", "Poll"]
99

1010

11-
class Variant0(TypedDict, total=False):
11+
class Init(TypedDict, total=False):
1212
account_id: Required[str]
1313
"""Account identifier tag."""
1414

@@ -23,7 +23,7 @@ class Variant0(TypedDict, total=False):
2323
"""
2424

2525

26-
class Variant1(TypedDict, total=False):
26+
class Ingest(TypedDict, total=False):
2727
account_id: Required[str]
2828
"""Account identifier tag."""
2929

@@ -40,7 +40,7 @@ class Variant1(TypedDict, total=False):
4040
"""The filename you have successfully uploaded."""
4141

4242

43-
class Variant2(TypedDict, total=False):
43+
class Poll(TypedDict, total=False):
4444
account_id: Required[str]
4545
"""Account identifier tag."""
4646

@@ -51,4 +51,4 @@ class Variant2(TypedDict, total=False):
5151
"""This identifies the currently-running import, checking its status."""
5252

5353

54-
DatabaseImportParams: TypeAlias = Union[Variant0, Variant1, Variant2]
54+
DatabaseImportParams: TypeAlias = Union[Init, Ingest, Poll]

0 commit comments

Comments
 (0)