Files

525 lines
10 KiB
Go
Raw Permalink Normal View History

2017-11-12 23:02:25 -08:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2017-11-12 23:02:25 -08:00
package swagger
import (
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
2017-11-12 23:02:25 -08:00
)
// Repository
2017-11-12 23:02:25 -08:00
// swagger:response Repository
type swaggerResponseRepository struct {
// in:body
Body api.Repository `json:"body"`
}
// RepositoryList
2017-11-12 23:02:25 -08:00
// swagger:response RepositoryList
type swaggerResponseRepositoryList struct {
// in:body
Body []api.Repository `json:"body"`
}
// Branch
2017-11-12 23:02:25 -08:00
// swagger:response Branch
type swaggerResponseBranch struct {
// in:body
Body api.Branch `json:"body"`
}
// BranchList
2017-11-12 23:02:25 -08:00
// swagger:response BranchList
type swaggerResponseBranchList struct {
// in:body
Body []api.Branch `json:"body"`
}
2020-02-13 00:19:35 +01:00
// BranchProtection
// swagger:response BranchProtection
type swaggerResponseBranchProtection struct {
// in:body
Body api.BranchProtection `json:"body"`
}
// BranchProtectionList
// swagger:response BranchProtectionList
type swaggerResponseBranchProtectionList struct {
// in:body
Body []api.BranchProtection `json:"body"`
}
2019-02-07 20:00:52 +08:00
// TagList
// swagger:response TagList
type swaggerResponseTagList struct {
2019-02-07 20:00:52 +08:00
// in:body
Body []api.Tag `json:"body"`
}
// Tag
// swagger:response Tag
type swaggerResponseTag struct {
// in:body
Body api.Tag `json:"body"`
}
// AnnotatedTag
// swagger:response AnnotatedTag
type swaggerResponseAnnotatedTag struct {
// in:body
Body api.AnnotatedTag `json:"body"`
}
// TagProtectionList
// swagger:response TagProtectionList
type swaggerResponseTagProtectionList struct {
// in:body
Body []api.TagProtection `json:"body"`
}
// TagProtection
// swagger:response TagProtection
type swaggerResponseTagProtection struct {
// in:body
Body api.TagProtection `json:"body"`
}
// Reference
// swagger:response Reference
type swaggerResponseReference struct {
// in:body
Body api.Reference `json:"body"`
}
// ReferenceList
// swagger:response ReferenceList
type swaggerResponseReferenceList struct {
// in:body
Body []api.Reference `json:"body"`
}
// Hook
2017-11-12 23:02:25 -08:00
// swagger:response Hook
type swaggerResponseHook struct {
// in:body
2019-03-26 21:41:17 +02:00
Body api.Hook `json:"body"`
2017-11-12 23:02:25 -08:00
}
// HookList
2017-11-12 23:02:25 -08:00
// swagger:response HookList
type swaggerResponseHookList struct {
// in:body
2019-03-26 21:41:17 +02:00
Body []api.Hook `json:"body"`
2017-11-12 23:02:25 -08:00
}
2019-04-17 08:31:08 +03:00
// GitHook
// swagger:response GitHook
type swaggerResponseGitHook struct {
// in:body
Body api.GitHook `json:"body"`
}
// GitHookList
// swagger:response GitHookList
type swaggerResponseGitHookList struct {
// in:body
Body []api.GitHook `json:"body"`
}
// Release
2017-11-12 23:02:25 -08:00
// swagger:response Release
type swaggerResponseRelease struct {
// in:body
Body api.Release `json:"body"`
}
// ReleaseList
2017-11-12 23:02:25 -08:00
// swagger:response ReleaseList
type swaggerResponseReleaseList struct {
// in:body
Body []api.Release `json:"body"`
}
// PullRequest
2017-11-12 23:02:25 -08:00
// swagger:response PullRequest
type swaggerResponsePullRequest struct {
// in:body
Body api.PullRequest `json:"body"`
}
// PullRequestList
2017-11-12 23:02:25 -08:00
// swagger:response PullRequestList
type swaggerResponsePullRequestList struct {
// in:body
Body []api.PullRequest `json:"body"`
}
2020-05-02 02:20:51 +02:00
// PullReview
// swagger:response PullReview
type swaggerResponsePullReview struct {
// in:body
Body api.PullReview `json:"body"`
}
// PullReviewList
// swagger:response PullReviewList
type swaggerResponsePullReviewList struct {
// in:body
Body []api.PullReview `json:"body"`
}
// PullComment
// swagger:response PullReviewComment
type swaggerPullReviewComment struct {
// in:body
Body api.PullReviewComment `json:"body"`
}
// PullCommentList
// swagger:response PullReviewCommentList
type swaggerResponsePullReviewCommentList struct {
// in:body
Body []api.PullReviewComment `json:"body"`
}
// CommitStatus
// swagger:response CommitStatus
2017-11-12 23:02:25 -08:00
type swaggerResponseStatus struct {
// in:body
Body api.CommitStatus `json:"body"`
2017-11-12 23:02:25 -08:00
}
// CommitStatusList
// swagger:response CommitStatusList
type swaggerResponseCommitStatusList struct {
2017-11-12 23:02:25 -08:00
// in:body
Body []api.CommitStatus `json:"body"`
2017-11-12 23:02:25 -08:00
}
// WatchInfo
2017-11-12 23:02:25 -08:00
// swagger:response WatchInfo
type swaggerResponseWatchInfo struct {
// in:body
Body api.WatchInfo `json:"body"`
}
// SearchResults
2017-11-12 23:02:25 -08:00
// swagger:response SearchResults
type swaggerResponseSearchResults struct {
2018-06-12 16:59:22 +02:00
// in:body
2017-11-12 23:02:25 -08:00
Body api.SearchResults `json:"body"`
}
2018-03-06 02:22:16 +01:00
// AttachmentList
2018-03-06 02:22:16 +01:00
// swagger:response AttachmentList
type swaggerResponseAttachmentList struct {
2020-05-02 02:20:51 +02:00
// in: body
2018-03-06 02:22:16 +01:00
Body []api.Attachment `json:"body"`
}
// Attachment
2018-03-06 02:22:16 +01:00
// swagger:response Attachment
type swaggerResponseAttachment struct {
2020-05-02 02:20:51 +02:00
// in: body
2018-03-06 02:22:16 +01:00
Body api.Attachment `json:"body"`
}
2019-01-24 19:13:30 +01:00
// GitTreeResponse
// swagger:response GitTreeResponse
type swaggerGitTreeResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
2019-01-24 19:13:30 +01:00
Body api.GitTreeResponse `json:"body"`
}
2019-02-03 11:35:17 +08:00
// GitBlobResponse
// swagger:response GitBlobResponse
type swaggerGitBlobResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
Body api.GitBlobResponse `json:"body"`
}
2019-02-03 11:35:17 +08:00
// Commit
// swagger:response Commit
type swaggerCommit struct {
2020-05-02 02:20:51 +02:00
// in: body
2019-02-03 11:35:17 +08:00
Body api.Commit `json:"body"`
}
// CommitList
// swagger:response CommitList
type swaggerCommitList struct {
// The current page
Page int `json:"X-Page"`
// Commits per page
PerPage int `json:"X-PerPage"`
// Total commit count
Total int `json:"X-Total"`
// Total number of pages
PageCount int `json:"X-PageCount"`
// True if there is another page
HasMore bool `json:"X-HasMore"`
2020-05-02 02:20:51 +02:00
// in: body
Body []api.Commit `json:"body"`
}
// ChangedFileList
// swagger:response ChangedFileList
type swaggerChangedFileList struct {
// The current page
Page int `json:"X-Page"`
// Commits per page
PerPage int `json:"X-PerPage"`
// Total commit count
Total int `json:"X-Total"`
// Total number of pages
PageCount int `json:"X-PageCount"`
// True if there is another page
HasMore bool `json:"X-HasMore"`
// in: body
Body []api.ChangedFile `json:"body"`
}
// Note
// swagger:response Note
type swaggerNote struct {
// in: body
Body api.Note `json:"body"`
}
// EmptyRepository
// swagger:response EmptyRepository
type swaggerEmptyRepository struct {
2020-05-02 02:20:51 +02:00
// in: body
Body api.APIError `json:"body"`
}
// FileResponse
// swagger:response FileResponse
type swaggerFileResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
Body api.FileResponse `json:"body"`
}
// FilesResponse
// swagger:response FilesResponse
type swaggerFilesResponse struct {
// in: body
Body api.FilesResponse `json:"body"`
}
2019-06-29 16:51:10 -04:00
// ContentsResponse
// swagger:response ContentsResponse
type swaggerContentsResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
2019-06-29 16:51:10 -04:00
Body api.ContentsResponse `json:"body"`
}
// ContentsListResponse
// swagger:response ContentsListResponse
type swaggerContentsListResponse struct {
// in:body
Body []api.ContentsResponse `json:"body"`
}
// swagger:response ContentsExtResponse
type swaggerContentsExtResponse struct {
// in:body
Body api.ContentsExtResponse `json:"body"`
}
// FileDeleteResponse
// swagger:response FileDeleteResponse
type swaggerFileDeleteResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
Body api.FileDeleteResponse `json:"body"`
}
// TopicListResponse
// swagger:response TopicListResponse
type swaggerTopicListResponse struct {
2020-05-02 02:20:51 +02:00
// in: body
Body []api.TopicResponse `json:"body"`
}
// TopicNames
// swagger:response TopicNames
type swaggerTopicNames struct {
2020-05-02 02:20:51 +02:00
// in: body
Body api.TopicName `json:"body"`
}
// LanguageStatistics
// swagger:response LanguageStatistics
type swaggerLanguageStatistics struct {
// in: body
Body map[string]int64 `json:"body"`
}
2024-10-02 04:25:08 +09:00
// LicensesList
// swagger:response LicensesList
type swaggerLicensesList struct {
// in: body
Body []string `json:"body"`
}
// CombinedStatus
// swagger:response CombinedStatus
type swaggerCombinedStatus struct {
// in: body
Body api.CombinedStatus `json:"body"`
}
2021-10-25 05:43:40 +02:00
// WikiPageList
// swagger:response WikiPageList
type swaggerWikiPageList struct {
// in:body
Body []api.WikiPageMetaData `json:"body"`
}
// WikiPage
// swagger:response WikiPage
type swaggerWikiPage struct {
// in:body
Body api.WikiPage `json:"body"`
}
// WikiCommitList
// swagger:response WikiCommitList
type swaggerWikiCommitList struct {
// in:body
Body api.WikiCommitList `json:"body"`
}
// PushMirror
// swagger:response PushMirror
type swaggerPushMirror struct {
// in:body
Body api.PushMirror `json:"body"`
}
// PushMirrorList
// swagger:response PushMirrorList
type swaggerPushMirrorList struct {
// in:body
Body []api.PushMirror `json:"body"`
}
// RepoCollaboratorPermission
// swagger:response RepoCollaboratorPermission
type swaggerRepoCollaboratorPermission struct {
// in:body
Body api.RepoCollaboratorPermission `json:"body"`
}
2023-03-28 20:22:07 +02:00
// RepoIssueConfig
// swagger:response RepoIssueConfig
type swaggerRepoIssueConfig struct {
// in:body
Body api.IssueConfig `json:"body"`
}
// RepoIssueConfigValidation
// swagger:response RepoIssueConfigValidation
type swaggerRepoIssueConfigValidation struct {
// in:body
Body api.IssueConfigValidation `json:"body"`
}
2023-05-25 15:17:19 +02:00
// RepoNewIssuePinsAllowed
// swagger:response RepoNewIssuePinsAllowed
type swaggerRepoNewIssuePinsAllowed struct {
// in:body
Body api.NewIssuePinsAllowed `json:"body"`
}
// TasksList
// swagger:response TasksList
type swaggerRepoTasksList struct {
// in:body
Body api.ActionTaskResponse `json:"body"`
}
2025-06-20 14:14:00 +02:00
// WorkflowRunsList
// swagger:response WorkflowRunsList
type swaggerActionWorkflowRunsResponse struct {
// in:body
Body api.ActionWorkflowRunsResponse `json:"body"`
}
// WorkflowRun
// swagger:response WorkflowRun
type swaggerWorkflowRun struct {
// in:body
Body api.ActionWorkflowRun `json:"body"`
}
// WorkflowJobsList
// swagger:response WorkflowJobsList
type swaggerActionWorkflowJobsResponse struct {
// in:body
Body api.ActionWorkflowJobsResponse `json:"body"`
}
// WorkflowJob
// swagger:response WorkflowJob
type swaggerWorkflowJob struct {
// in:body
Body api.ActionWorkflowJob `json:"body"`
}
// ArtifactsList
// swagger:response ArtifactsList
type swaggerRepoArtifactsList struct {
// in:body
Body api.ActionArtifactsResponse `json:"body"`
}
// Artifact
// swagger:response Artifact
type swaggerRepoArtifact struct {
// in:body
Body api.ActionArtifact `json:"body"`
}
2025-04-18 17:22:41 +02:00
// RunnerList
// swagger:response RunnerList
type swaggerRunnerList struct {
// in:body
Body api.ActionRunnersResponse `json:"body"`
}
// Runner
// swagger:response Runner
type swaggerRunner struct {
// in:body
Body api.ActionRunner `json:"body"`
}
// swagger:response Compare
type swaggerCompare struct {
// in:body
Body api.Compare `json:"body"`
}
2025-01-10 13:29:55 +08:00
// swagger:response MergeUpstreamRequest
type swaggerMergeUpstreamRequest struct {
// in:body
Body api.MergeUpstreamRequest `json:"body"`
}
// swagger:response MergeUpstreamResponse
type swaggerMergeUpstreamResponse struct {
// in:body
Body api.MergeUpstreamResponse `json:"body"`
}