Skip to content

Commit da39144

Browse files
committed
merge fix
1 parent 7300284 commit da39144

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

api/openapi.yml

+43
Original file line numberDiff line numberDiff line change
@@ -7485,6 +7485,49 @@ components:
74857485
example: "1000000000"
74867486
preview:
74877487
$ref: '#/components/schemas/EcPreview'
7488+
SourceFile:
7489+
type: object
7490+
required:
7491+
- name
7492+
- content
7493+
- is_entrypoint
7494+
- is_std_lib
7495+
- include_in_command
7496+
properties:
7497+
name:
7498+
type: string
7499+
content:
7500+
type: string
7501+
is_entrypoint:
7502+
type: boolean
7503+
example: false
7504+
is_std_lib:
7505+
type: boolean
7506+
example: false
7507+
include_in_command:
7508+
type: boolean
7509+
example: false
7510+
Source:
7511+
type: object
7512+
required:
7513+
- files
7514+
properties:
7515+
files:
7516+
type: array
7517+
items:
7518+
$ref: '#/components/schemas/SourceFile'
7519+
Method:
7520+
type: object
7521+
required:
7522+
- id
7523+
- method
7524+
properties:
7525+
id:
7526+
type: integer
7527+
format: int64
7528+
method:
7529+
type: string
7530+
example: "get_something"
74887531

74897532
responses:
74907533
Error:

0 commit comments

Comments
 (0)