From ebac307d934c8cbeb2c5c88e5b2dc35eb53a5542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Behrendt?= Date: Mon, 17 Jun 2024 17:12:44 +0200 Subject: [PATCH] fix: add app_min_version and app_max_version param to releases --- doc/compiled.json | 20 ++++++++++++++++++++ paths/releases/create.yaml | 8 ++++++++ paths/releases/update.yaml | 8 ++++++++ 3 files changed, 36 insertions(+) diff --git a/doc/compiled.json b/doc/compiled.json index da20156a..4c761c45 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -9370,6 +9370,16 @@ "feature1" ] }, + "app_min_version": { + "description": "Minimum version of the app that the release supports in semver format", + "type": "string", + "example": "2.5.0" + }, + "app_max_version": { + "description": "Maximum version of the app that the release supports in semver format", + "type": "string", + "example": "3.0.0" + }, "branch": { "description": "Branch used for release", "type": "string", @@ -9536,6 +9546,16 @@ "ios" ] }, + "app_min_version": { + "description": "Minimum version of the app that the release supports in semver format", + "type": "string", + "example": "2.5.0" + }, + "app_max_version": { + "description": "Maximum version of the app that the release supports in semver format", + "type": "string", + "example": "3.0.0" + }, "branch": { "description": "Branch used for release", "type": "string", diff --git a/paths/releases/create.yaml b/paths/releases/create.yaml index e73cb896..0ffbcfcb 100644 --- a/paths/releases/create.yaml +++ b/paths/releases/create.yaml @@ -79,6 +79,14 @@ requestBody: example: - android - feature1 + app_min_version: + description: Minimum version of the app that the release supports in semver format + type: string + example: 2.5.0 + app_max_version: + description: Maximum version of the app that the release supports in semver format + type: string + example: 3.0.0 branch: description: Branch used for release type: string diff --git a/paths/releases/update.yaml b/paths/releases/update.yaml index 98627707..21569390 100644 --- a/paths/releases/update.yaml +++ b/paths/releases/update.yaml @@ -65,6 +65,14 @@ requestBody: example: - android - ios + app_min_version: + description: Minimum version of the app that the release supports in semver format + type: string + example: 2.5.0 + app_max_version: + description: Maximum version of the app that the release supports in semver format + type: string + example: 3.0.0 branch: description: Branch used for release type: string