Skip to content

Commit b384301

Browse files
authored
fix: add app_min_version and app_max_version param to releases (#633)
1 parent 5c68bb0 commit b384301

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

doc/compiled.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9370,6 +9370,16 @@
93709370
"feature1"
93719371
]
93729372
},
9373+
"app_min_version": {
9374+
"description": "Minimum version of the app that the release supports in semver format",
9375+
"type": "string",
9376+
"example": "2.5.0"
9377+
},
9378+
"app_max_version": {
9379+
"description": "Maximum version of the app that the release supports in semver format",
9380+
"type": "string",
9381+
"example": "3.0.0"
9382+
},
93739383
"branch": {
93749384
"description": "Branch used for release",
93759385
"type": "string",
@@ -9536,6 +9546,16 @@
95369546
"ios"
95379547
]
95389548
},
9549+
"app_min_version": {
9550+
"description": "Minimum version of the app that the release supports in semver format",
9551+
"type": "string",
9552+
"example": "2.5.0"
9553+
},
9554+
"app_max_version": {
9555+
"description": "Maximum version of the app that the release supports in semver format",
9556+
"type": "string",
9557+
"example": "3.0.0"
9558+
},
95399559
"branch": {
95409560
"description": "Branch used for release",
95419561
"type": "string",

paths/releases/create.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ requestBody:
7979
example:
8080
- android
8181
- feature1
82+
app_min_version:
83+
description: Minimum version of the app that the release supports in semver format
84+
type: string
85+
example: 2.5.0
86+
app_max_version:
87+
description: Maximum version of the app that the release supports in semver format
88+
type: string
89+
example: 3.0.0
8290
branch:
8391
description: Branch used for release
8492
type: string

paths/releases/update.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ requestBody:
6565
example:
6666
- android
6767
- ios
68+
app_min_version:
69+
description: Minimum version of the app that the release supports in semver format
70+
type: string
71+
example: 2.5.0
72+
app_max_version:
73+
description: Maximum version of the app that the release supports in semver format
74+
type: string
75+
example: 3.0.0
6876
branch:
6977
description: Branch used for release
7078
type: string

0 commit comments

Comments
 (0)