Skip to content

Commit

Permalink
Features/automatic update (#8)
Browse files Browse the repository at this point in the history
* Update to newly built API from GH Run 117

* Update to newly built API from GH Run 121

* Update to newly built API from GH Run 128

* Update to newly built API from GH Run 129

* Update to newly built API from GH Run 134

* Update to newly built API from GH Run 136

Co-authored-by: OpenApi-Bot <OpenApi-Bot@users.noreply.github.com>
  • Loading branch information
joerghartmann and openapi-bot committed Aug 9, 2022
1 parent 4c17262 commit ffc95e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sources/CumulocityCoreLibrary/Model/C8yAuthConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public struct C8yAuthConfig: Codable {

/// Indicates whether user data are managed internally by the Cumulocity IoT platform or by an external server. Note that the value is case insensitive.
public enum C8yUserManagementSource: String, Codable {
case internal = "INTERNAL"
case `internal` = "INTERNAL"
case remote = "REMOTE"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public struct C8yJSONPredicateRepresentation: Codable {
public var childPredicates: [C8yJSONPredicateRepresentation]?

/// Operator executed on the parameter from the JWT access token claim pointed by `parameterPath` and the provided parameter `value`.
public var operator: C8yOperator?
public var `operator`: C8yOperator?

/// Path to the claim from the JWT access token from the external authorization server.
public var parameterPath: String?
Expand All @@ -25,7 +25,7 @@ public struct C8yJSONPredicateRepresentation: Codable {

enum CodingKeys: String, CodingKey {
case childPredicates
case operator
case `operator` = "operator"
case parameterPath
case value
}
Expand All @@ -41,7 +41,7 @@ public struct C8yJSONPredicateRepresentation: Codable {
case lt = "LT"
case gte = "GTE"
case lte = "LTE"
case in = "IN"
case `in` = "IN"
case and = "AND"
case or = "OR"
}
Expand Down

0 comments on commit ffc95e1

Please sign in to comment.