Forgot to add POINT to commands.json

This commit is contained in:
Alex Roitman 2019-02-10 14:56:11 -08:00
parent 1cffdcc31f
commit d179a8f2a3
2 changed files with 53 additions and 1 deletions

View File

@ -1793,6 +1793,19 @@
{ {
"name": "area1", "name": "area1",
"enumargs": [ "enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
}
]
},
{ {
"name": "GET", "name": "GET",
"arguments": [ "arguments": [
@ -1910,6 +1923,19 @@
{ {
"name": "area2", "name": "area2",
"enumargs": [ "enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
}
]
},
{ {
"name": "GET", "name": "GET",
"arguments": [ "arguments": [

View File

@ -1953,12 +1953,25 @@ var commandsJSON = `{
"group": "scripting" "group": "scripting"
}, },
"TEST":{ "TEST":{
"summary": "Performs spatial tests", "summary": "Performs spatial test",
"complexity": "One test per command, complexity depends on the test", "complexity": "One test per command, complexity depends on the test",
"arguments": [ "arguments": [
{ {
"name": "area1", "name": "area1",
"enumargs": [ "enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
}
]
},
{ {
"name": "GET", "name": "GET",
"arguments": [ "arguments": [
@ -2076,6 +2089,19 @@ var commandsJSON = `{
{ {
"name": "area2", "name": "area2",
"enumargs": [ "enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
}
]
},
{ {
"name": "GET", "name": "GET",
"arguments": [ "arguments": [