-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try number 2.
- Loading branch information
Showing
27 changed files
with
1,943 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'Auto Assign' | ||
name: "Auto Assign" | ||
on: | ||
pull_request: | ||
types: [opened, ready_for_review] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,6 @@ _testmain.go | |
# IDE files | ||
*.iml | ||
.idea/ | ||
|
||
.travis.yml | ||
git_push.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.travis.yml | ||
api/openapi.yaml | ||
api_default.go | ||
client.go | ||
configuration.go | ||
docs/DefaultAPI.md | ||
docs/Request.md | ||
docs/Response.md | ||
git_push.sh | ||
go.mod | ||
go.sum | ||
model_request.go | ||
model_response.go | ||
response.go | ||
utils.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.3.1 | ||
7.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
packageName: qrzlog | ||
withGoCodegenComment: true | ||
globalProperties: | ||
skipFormModel: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ openapi: 3.0.1 | |
info: | ||
contact: | ||
email: [email protected] | ||
description: This API provides methods for external programs to interact with the | ||
description: | | ||
This API provides methods for external programs to interact with the | ||
QRZ Logbook using an HTTP REST interface. The QRZ Logbook is a combination free | ||
and paid subscription service of QRZ. Some advanced features require a valid subscription | ||
while the majority of operations are free to all QRZ members. All users of the | ||
|
@@ -14,7 +15,7 @@ externalDocs: | |
description: Prose API description | ||
url: http://files.qrz.com/static/qrz/The%20QRZ%20Logbook%20API.pdf | ||
servers: | ||
- url: https://logbook.qrz.com/api | ||
- url: https://logbook.qrz.com/api | ||
paths: | ||
/: | ||
post: | ||
|
@@ -23,14 +24,14 @@ paths: | |
content: | ||
application/x-www-form-urlencoded: | ||
schema: | ||
$ref: '#/components/schemas/Request' | ||
$ref: "#/components/schemas/Request" | ||
required: true | ||
responses: | ||
"200": | ||
content: | ||
application/x-www-form-urlencoded: | ||
schema: | ||
$ref: '#/components/schemas/Response' | ||
$ref: "#/components/schemas/Response" | ||
description: OK | ||
summary: The do-everything endpoint | ||
components: | ||
|
@@ -41,12 +42,12 @@ components: | |
description: A QRZ supplied logbook access key | ||
type: string | ||
ACTION: | ||
description: Type of request, i.e. INSERT, DELETE, UPLOAD, etc. | ||
description: "Type of request, i.e. INSERT, DELETE, UPLOAD, etc." | ||
enum: | ||
- INSERT | ||
- DELETE | ||
- STATUS | ||
- FETCH | ||
- INSERT | ||
- DELETE | ||
- STATUS | ||
- FETCH | ||
type: string | ||
ADIF: | ||
description: ADIF formatted input data | ||
|
@@ -58,30 +59,35 @@ components: | |
description: A comma separated list of integer logid values | ||
type: string | ||
required: | ||
- ACTION | ||
- KEY | ||
- ACTION | ||
- KEY | ||
type: object | ||
Response: | ||
properties: | ||
RESULT: | ||
description: OK when the operation succeeds, FAIL when the operation failed, | ||
description: | | ||
OK when the operation succeeds, FAIL when the operation failed, | ||
AUTH when API Access lacked sufficient privileges for the operation, or | ||
other action-specific codes | ||
type: string | ||
REASON: | ||
description: Used with RESULT=FAIL to describe the specific reason for failure | ||
description: | ||
Used with RESULT=FAIL to describe the specific reason for failure | ||
type: string | ||
LOGIDS: | ||
description: A comma separated list of logid values that were affected by | ||
the action | ||
description: | ||
A comma separated list of logid values that were affected by the | ||
action | ||
type: string | ||
LOGID: | ||
description: The logid value of the record that was inserted or replaced. | ||
(Singular "LOGID" response only used by INSERT as it is a single record | ||
operation.) | ||
description: | ||
The logid value of the record that was inserted or replaced. | ||
(Singular "LOGID" response only used by INSERT as it is a single | ||
record operation.) | ||
type: string | ||
COUNT: | ||
description: The number of QSO records that were affected by the action | ||
description: | ||
The number of QSO records that were affected by the action | ||
type: string | ||
DATA: | ||
description: Used for action-specific data such as status reports | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.