mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"id": "SchematicsAbpGenerateAPI",
|
|
"title": "ABP Generate API Schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"module": {
|
|
"description": "Backend module name",
|
|
"type": "string",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 0
|
|
},
|
|
"x-prompt": "Please enter backend module name. (default: \"app\")"
|
|
},
|
|
"api-name": {
|
|
"description": "Backend api name, a.k.a. remoteServiceName",
|
|
"type": "string",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 1
|
|
},
|
|
"x-prompt": "Please enter backend api name, a.k.a. remoteServiceName. (default: \"default\")"
|
|
},
|
|
"source": {
|
|
"description": "Source Angular project for API definition URL & root namespace resolution",
|
|
"type": "string",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 2
|
|
},
|
|
"x-prompt": "Plese enter source Angular project for API definition URL & root namespace resolution. (default: workspace \"defaultProject\")"
|
|
},
|
|
"target": {
|
|
"description": "Target Angular project to place the generated code",
|
|
"type": "string",
|
|
"$default": {
|
|
"$source": "argv",
|
|
"index": 3
|
|
},
|
|
"x-prompt": "Plese enter target Angular project to place the generated code. (default: workspace \"defaultProject\")"
|
|
}
|
|
},
|
|
"required": []
|
|
}
|