From 889f37d9511040f6c7bce621b81f50ff116e976f Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Sat, 13 Feb 2021 14:43:37 -0500 Subject: [PATCH] Regenerated swagger --- src/docs/docs.go | 26 ++++++++++++++++++++++---- src/docs/swagger.json | 26 ++++++++++++++++++++++---- src/docs/swagger.yaml | 18 ++++++++++++++---- src/go.mod | 2 ++ src/go.sum | 5 +++++ 5 files changed, 65 insertions(+), 12 deletions(-) diff --git a/src/docs/docs.go b/src/docs/docs.go index 49dbea3..811ea13 100644 --- a/src/docs/docs.go +++ b/src/docs/docs.go @@ -19,7 +19,6 @@ var doc = `{ "description": "{{.Description}}", "title": "{{.Title}}", "contact": {}, - "license": {}, "version": "{{.Version}}" }, "host": "{{.Host}}", @@ -743,10 +742,20 @@ var doc = `{ "name": "number", "in": "path", "required": true + }, + { + "description": "Additional Settings", + "name": "data", + "in": "body", + "schema": { + "$ref": "#/definitions/api.RegisterNumberRequest" + } } ], "responses": { - "201": {}, + "201": { + "description": "" + }, "400": { "description": "Bad Request", "schema": { @@ -781,7 +790,6 @@ var doc = `{ "description": "Additional Settings", "name": "data", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/api.VerifyNumberSettings" } @@ -911,7 +919,6 @@ var doc = `{ "type": "object", "properties": { "logging": { - "type": "object", "$ref": "#/definitions/api.LoggingConfiguration" } } @@ -998,6 +1005,17 @@ var doc = `{ } } }, + "api.RegisterNumberRequest": { + "type": "object", + "properties": { + "captcha": { + "type": "string" + }, + "use_voice": { + "type": "boolean" + } + } + }, "api.SendMessageV1": { "type": "object", "properties": { diff --git a/src/docs/swagger.json b/src/docs/swagger.json index 588c155..321dc93 100644 --- a/src/docs/swagger.json +++ b/src/docs/swagger.json @@ -4,7 +4,6 @@ "description": "This is the Signal Cli REST API documentation.", "title": "Signal Cli REST API", "contact": {}, - "license": {}, "version": "1.0" }, "host": "127.0.0.1:8080", @@ -728,10 +727,20 @@ "name": "number", "in": "path", "required": true + }, + { + "description": "Additional Settings", + "name": "data", + "in": "body", + "schema": { + "$ref": "#/definitions/api.RegisterNumberRequest" + } } ], "responses": { - "201": {}, + "201": { + "description": "" + }, "400": { "description": "Bad Request", "schema": { @@ -766,7 +775,6 @@ "description": "Additional Settings", "name": "data", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/api.VerifyNumberSettings" } @@ -896,7 +904,6 @@ "type": "object", "properties": { "logging": { - "type": "object", "$ref": "#/definitions/api.LoggingConfiguration" } } @@ -983,6 +990,17 @@ } } }, + "api.RegisterNumberRequest": { + "type": "object", + "properties": { + "captcha": { + "type": "string" + }, + "use_voice": { + "type": "boolean" + } + } + }, "api.SendMessageV1": { "type": "object", "properties": { diff --git a/src/docs/swagger.yaml b/src/docs/swagger.yaml index 8e64e57..29b5897 100644 --- a/src/docs/swagger.yaml +++ b/src/docs/swagger.yaml @@ -13,7 +13,6 @@ definitions: properties: logging: $ref: '#/definitions/api.LoggingConfiguration' - type: object type: object api.CreateGroup: properties: @@ -68,6 +67,13 @@ definitions: Level: type: string type: object + api.RegisterNumberRequest: + properties: + captcha: + type: string + use_voice: + type: boolean + type: object api.SendMessageV1: properties: base64_attachment: @@ -119,7 +125,6 @@ host: 127.0.0.1:8080 info: contact: {} description: This is the Signal Cli REST API documentation. - license: {} title: Signal Cli REST API version: "1.0" paths: @@ -596,10 +601,16 @@ paths: name: number required: true type: string + - description: Additional Settings + in: body + name: data + schema: + $ref: '#/definitions/api.RegisterNumberRequest' produces: - application/json responses: - "201": {} + "201": + description: "" "400": description: Bad Request schema: @@ -621,7 +632,6 @@ paths: - description: Additional Settings in: body name: data - required: true schema: $ref: '#/definitions/api.VerifyNumberSettings' - description: Verification Code diff --git a/src/go.mod b/src/go.mod index 6337774..458ab57 100644 --- a/src/go.mod +++ b/src/go.mod @@ -5,6 +5,8 @@ go 1.14 require ( github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect + github.com/cyphar/filepath-securejoin v0.2.2 + github.com/gabriel-vasile/mimetype v1.1.2 github.com/gin-gonic/gin v1.6.3 github.com/go-openapi/spec v0.19.8 // indirect github.com/go-openapi/swag v0.19.9 // indirect diff --git a/src/go.sum b/src/go.sum index d900900..1b66949 100644 --- a/src/go.sum +++ b/src/go.sum @@ -12,8 +12,12 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d h1:U+s90UTSY github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.0 h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM= github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cyphar/filepath-securejoin v0.2.2 h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg= +github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gabriel-vasile/mimetype v1.1.2 h1:gaPnPcNor5aZSVCJVSGipcpbgMWiAAj9z182ocSGbHU= +github.com/gabriel-vasile/mimetype v1.1.2/go.mod h1:6CDPel/o/3/s4+bp6kIbsWATq8pmgOisOPG40CJa6To= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/gzip v0.0.1/go.mod h1:fGBJBCdt6qCZuCAOwWuFhBB4OOq9EFqlo5dEaFhhu5w= @@ -87,6 +91,7 @@ github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=