2021-10-04 21:26:49 +00:00
|
|
|
{
|
|
|
|
"name": "my8110",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"functions": {
|
|
|
|
"my8110::exampleFunc": {
|
|
|
|
"inputs": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"enums": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "#/types/my8110::MyEnum"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"types": {
|
|
|
|
"my8110::MyEnum": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
{
|
|
|
|
"value": "one"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"value": "two"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"my8110::MyObj": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"a": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"language": {
|
|
|
|
"nodejs": {
|
|
|
|
"devDependencies": {
|
2023-02-07 10:35:58 +00:00
|
|
|
"@types/node": "ts4.3",
|
2021-10-04 21:26:49 +00:00
|
|
|
"ts-node": "latest"
|
|
|
|
},
|
|
|
|
"extraTypeScriptFiles": [
|
|
|
|
"compileCheck.ts"
|
|
|
|
]
|
2021-12-10 23:35:24 +00:00
|
|
|
},
|
|
|
|
"go": {
|
2023-06-13 23:44:51 +00:00
|
|
|
"generateExtraInputTypes": true,
|
|
|
|
"importBasePath": "regress-node-8110/my8110"
|
2021-10-04 21:26:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|