Skip to content

Commit

Permalink
feat!: Commit public API breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziodemaria committed Dec 3, 2024
1 parent fff6bd6 commit 1824223
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions api/Confidence_public_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,23 @@
},
{
"name": "putContext(key:value:)",
"declaration": "public func putContext(key: String, value: ConfidenceValue)"
"declaration": "public func putContext(key: String, value: ConfidenceValue) async"
},
{
"name": "putContextLocal(context:removeKeys:)",
"declaration": "public func putContextLocal(context: ConfidenceStruct, removeKeys removedKeys: [String] = [])"
},
{
"name": "putContext(context:)",
"declaration": "public func putContext(context: ConfidenceStruct)"
"declaration": "public func putContext(context: ConfidenceStruct) async"
},
{
"name": "putContext(context:removeKeys:)",
"declaration": "public func putContext(context: ConfidenceStruct, removeKeys removedKeys: [String] = [])"
"declaration": "public func putContext(context: ConfidenceStruct, removeKeys removedKeys: [String] = []) async"
},
{
"name": "removeContext(key:)",
"declaration": "public func removeContext(key: String)"
"declaration": "public func removeContext(key: String) async"
},
{
"name": "withContext(_:)",
Expand Down Expand Up @@ -245,4 +249,4 @@
}
]
}
]
]

0 comments on commit 1824223

Please sign in to comment.