Skip to content

Commit 37f1eae

Browse files
chore: add missing docstrings
1 parent 7769f80 commit 37f1eae

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/miru_server_sdk/types/deployment_validate_params.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class DeploymentValidateParams(TypedDict, total=False):
2525

2626

2727
class ConfigInstanceParameter(TypedDict, total=False):
28+
"""The validation error for a parameter in the config instance."""
29+
2830
message: Required[str]
2931
"""An error message displayed for an individual parameter."""
3032

@@ -33,6 +35,8 @@ class ConfigInstanceParameter(TypedDict, total=False):
3335

3436

3537
class ConfigInstance(TypedDict, total=False):
38+
"""The validation errors(s) for a specific config instance in the deployment."""
39+
3640
id: Required[str]
3741
"""ID of the config instance."""
3842

src/miru_server_sdk/types/deployment_validate_webhook_event.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class DataDeployment(BaseModel):
2525

2626

2727
class Data(BaseModel):
28+
"""The data associated with the event"""
29+
2830
deployment: DataDeployment
2931

3032

src/miru_server_sdk/types/unwrap_webhook_event.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class DataDeployment(BaseModel):
2525

2626

2727
class Data(BaseModel):
28+
"""The data associated with the event"""
29+
2830
deployment: DataDeployment
2931

3032

0 commit comments

Comments
 (0)