[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 const SPEC_VERSION = '0.0.0'
export type EnumAccessGrant = number 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' export type EnumParentResourceType = 'space' | 'repo'
@ -176,8 +176,8 @@ export interface OpenapiGetContentOutput {
} }
export interface OpenapiMergePullReq { export interface OpenapiMergePullReq {
head_sha?: string
method?: EnumMergeMethod method?: EnumMergeMethod
source_sha?: string
} }
export interface OpenapiMoveRepoRequest { export interface OpenapiMoveRepoRequest {
@ -369,11 +369,11 @@ export interface TypesPullReq {
edited?: number edited?: number
is_draft?: boolean is_draft?: boolean
merge_base_sha?: string | null merge_base_sha?: string | null
merge_check_status?: EnumMergeCheckStatus
merge_conflicts?: string | null merge_conflicts?: string | null
merge_head_sha?: string | null merge_method?: EnumMergeMethod
merge_ref_sha?: string | null merge_sha?: string | null
merge_status?: EnumMergeStatus merge_target_sha?: string | null
merge_strategy?: EnumMergeMethod
merged?: number | null merged?: number | null
merger?: TypesPrincipalInfo merger?: TypesPrincipalInfo
number?: number number?: number

View File

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