Skip to content

Commit 28f97d1

Browse files
fix(openapi): 修复 ItemChangeSets 中 default 字段非法值 (#6)
1 parent 7bf5ea8 commit 28f97d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apollo-openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4391,21 +4391,21 @@ components:
43914391
$ref: '#/components/schemas/ItemDTO'
43924392
description: com.ctrip.framework.apollo.common.dto.ItemDTO
43934393
description: ''
4394-
default: new LinkedList<>()
4394+
default: []
43954395
updateItems:
43964396
type: array
43974397
items:
43984398
$ref: '#/components/schemas/ItemDTO'
43994399
description: com.ctrip.framework.apollo.common.dto.ItemDTO
44004400
description: ''
4401-
default: new LinkedList<>()
4401+
default: []
44024402
deleteItems:
44034403
type: array
44044404
items:
44054405
$ref: '#/components/schemas/ItemDTO'
44064406
description: com.ctrip.framework.apollo.common.dto.ItemDTO
44074407
description: ''
4408-
default: new LinkedList<>()
4408+
default: []
44094409
ListItemDiffs:
44104410
type: object
44114411
properties:

0 commit comments

Comments
 (0)