Skip to content

Commit 6ad7341

Browse files
feat(api): indentation fix
1 parent 1a2417d commit 6ad7341

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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: 48
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-f4cd00365ba96133e0675eae3d5d3c6ac13874789e2ce69a84310ab64a4f87dd.yml
3-
openapi_spec_hash: dce632cfbb5464a98c0f5d8eb9573d68
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-3234424a3a5871f31f5d6dcb8173593fc6c1db14802a0e71f14f3527ad16c871.yml
3+
openapi_spec_hash: 017a8ab68d905ed9e163022f68d8be78
44
config_hash: 17e408231b0b01676298010c7405f483

src/imagekitio/types/dam_file_version_create_event.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from datetime import datetime
44
from typing_extensions import Literal
55

6+
from .file import File
67
from .base_webhook_event import BaseWebhookEvent
78

89
__all__ = ["DamFileVersionCreateEvent"]
@@ -14,7 +15,8 @@ class DamFileVersionCreateEvent(BaseWebhookEvent):
1415
created_at: datetime
1516
"""Timestamp of when the event occurred in ISO8601 format."""
1617

17-
data: object
18+
data: File
19+
"""Object containing details of a file or file version."""
1820

1921
type: Literal["file-version.created"] # type: ignore
2022
"""Type of the webhook event."""

0 commit comments

Comments
 (0)