Skip to content

Commit 7061b32

Browse files
feat: Neil/kernel 873 templates v4
1 parent b614636 commit 7061b32

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
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: 100
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-47ee6a2b624baddb41a681feff758bf1893cd3d65edf3ab51219ebe4d942932b.yml
3-
openapi_spec_hash: 76178c41ede593e76bfacb176057d2f0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-2b77b2efd4d25aaa264cbd6fcb0e43f82d14ce5a4bd6fb1e3859be440868685a.yml
3+
openapi_spec_hash: 299be31ecb4a96dcd54d4d902a716e68
44
config_hash: 27c0ea01aeb797a1767af139851c5b66

src/kernel/types/shared/app_action.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3+
from typing import Dict, Optional
4+
35
from ..._models import BaseModel
46

57
__all__ = ["AppAction"]
@@ -10,3 +12,15 @@ class AppAction(BaseModel):
1012

1113
name: str
1214
"""Name of the action"""
15+
16+
input_schema: Optional[Dict[str, object]] = None
17+
"""JSON Schema (draft-07) describing the expected input payload.
18+
19+
Null if schema could not be automatically generated.
20+
"""
21+
22+
output_schema: Optional[Dict[str, object]] = None
23+
"""JSON Schema (draft-07) describing the expected output payload.
24+
25+
Null if schema could not be automatically generated.
26+
"""

0 commit comments

Comments
 (0)