Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions client.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion models.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4425,6 +4425,9 @@
"401" : {
"$ref" : "#/components/responses/RequiresAuthentication"
},
"403" : {
"$ref" : "#/components/responses/Forbidden"
},
"422" : {
"$ref" : "#/components/responses/UnprocessableEntity"
},
Expand Down Expand Up @@ -4454,6 +4457,9 @@
"401" : {
"$ref" : "#/components/responses/RequiresAuthentication"
},
"403" : {
"$ref" : "#/components/responses/Forbidden"
},
"404" : {
"$ref" : "#/components/responses/NotFound"
},
Expand Down Expand Up @@ -9461,7 +9467,7 @@
},
"APIKeyScope" : {
"description" : "Scope of permissions for the API key. API keys are used for creating new plugin versions and downloading existing plugins",
"enum" : [ "read-and-write" ],
"enum" : [ "read-and-write", "syncs-operations-only" ],
"type" : "string"
},
"APIKey" : {
Expand Down Expand Up @@ -11590,6 +11596,9 @@
"expires_at" : {
"format" : "date-time",
"type" : "string"
},
"scope" : {
"$ref" : "#/components/schemas/APIKeyScope"
}
},
"required" : [ "expires_at", "name" ]
Expand Down
Loading