File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11configured_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
44config_hash : 27c0ea01aeb797a1767af139851c5b66
Original file line number Diff line number Diff line change @@ -8,6 +8,18 @@ export interface AppAction {
88 * Name of the action
99 */
1010 name : string ;
11+
12+ /**
13+ * JSON Schema (draft-07) describing the expected input payload. Null if schema
14+ * could not be automatically generated.
15+ */
16+ input_schema ?: { [ key : string ] : unknown } | null ;
17+
18+ /**
19+ * JSON Schema (draft-07) describing the expected output payload. Null if schema
20+ * could not be automatically generated.
21+ */
22+ output_schema ?: { [ key : string ] : unknown } | null ;
1123}
1224
1325/**
You can’t perform that action at this time.
0 commit comments