[WEB-SERVICES] generate latest (#343)

This commit is contained in:
Johannes Batzill 2023-02-14 20:27:33 -08:00 committed by GitHub
parent 9d894c79cc
commit cbd9096a4e
2 changed files with 20 additions and 20 deletions

View File

@ -7,9 +7,9 @@ import { getConfig } from '../config'
export const SPEC_VERSION = '0.0.0'
export type EnumAccessGrant = number
export type EnumMergeMethod = 'merge' | 'rebase' | 'squash'
export type EnumMergeCheckStatus = string
export type EnumMergeStatus = string
export type EnumMergeMethod = 'merge' | 'rebase' | 'squash'
export type EnumParentResourceType = 'space' | 'repo'
@ -176,8 +176,8 @@ export interface OpenapiGetContentOutput {
}
export interface OpenapiMergePullReq {
head_sha?: string
method?: EnumMergeMethod
source_sha?: string
}
export interface OpenapiMoveRepoRequest {
@ -369,11 +369,11 @@ export interface TypesPullReq {
edited?: number
is_draft?: boolean
merge_base_sha?: string | null
merge_check_status?: EnumMergeCheckStatus
merge_conflicts?: string | null
merge_head_sha?: string | null
merge_ref_sha?: string | null
merge_status?: EnumMergeStatus
merge_strategy?: EnumMergeMethod
merge_method?: EnumMergeMethod
merge_sha?: string | null
merge_target_sha?: string | null
merged?: number | null
merger?: TypesPrincipalInfo
number?: number

View File

@ -3547,14 +3547,14 @@ components:
schemas:
EnumAccessGrant:
type: integer
EnumMergeCheckStatus:
type: string
EnumMergeMethod:
enum:
- merge
- rebase
- squash
type: string
EnumMergeStatus:
type: string
EnumParentResourceType:
enum:
- space
@ -3848,10 +3848,10 @@ components:
type: object
OpenapiMergePullReq:
properties:
head_sha:
type: string
method:
$ref: '#/components/schemas/EnumMergeMethod'
source_sha:
type: string
type: object
OpenapiMoveRepoRequest:
properties:
@ -4165,19 +4165,19 @@ components:
merge_base_sha:
nullable: true
type: string
merge_check_status:
$ref: '#/components/schemas/EnumMergeCheckStatus'
merge_conflicts:
nullable: true
type: string
merge_head_sha:
nullable: true
type: string
merge_ref_sha:
nullable: true
type: string
merge_status:
$ref: '#/components/schemas/EnumMergeStatus'
merge_strategy:
merge_method:
$ref: '#/components/schemas/EnumMergeMethod'
merge_sha:
nullable: true
type: string
merge_target_sha:
nullable: true
type: string
merged:
nullable: true
type: integer