Skip to content

Commit

Permalink
Merge branch 'fixModel' into 'main'
Browse files Browse the repository at this point in the history
Fix model

See merge request ec/epotheke/epotheke-sdk!23
  • Loading branch information
florian-otto committed Aug 23, 2024
2 parents e189cff + e488945 commit 0bc63fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo-android-standalone/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ android {
}
}

val epothekeSdkVersion = "1.1.3"
val epothekeSdkVersion = "1.1.5-SNAPSHOT"

dependencies {
androidTestImplementation("androidx.test.ext:junit:1.1.5")
Expand Down
2 changes: 1 addition & 1 deletion demo-react-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ android {
}
}

def epothekeSdkVersion = "1.1.3"
def epothekeSdkVersion = "1.1.5-SNAPSHOT"

dependencies {
// The version of react-native is set by the React Native Gradle Plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ enum class GenericErrorResultType(val value: String) {
UNKNOWN_ERROR("UNKNOWN_ERROR");
}

@Serializable
sealed interface MedicationItem

@Serializable
Expand Down Expand Up @@ -285,6 +286,7 @@ data class Person(
val vorsatzwort: String? = null,
)

@Serializable
sealed interface Address

@Serializable
Expand All @@ -307,6 +309,7 @@ data class PobAddress(
val postfach: String,
) : Address

@Serializable
sealed interface PrescriptionInterface

@Serializable
Expand Down

0 comments on commit 0bc63fe

Please sign in to comment.