From 1824223c05bc2edb3b9b855fd7e61fa5c14b4520 Mon Sep 17 00:00:00 2001 From: Fabrizio Demaria Date: Tue, 3 Dec 2024 16:38:52 +0100 Subject: [PATCH] feat!: Commit public API breaking changes --- api/Confidence_public_api.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/api/Confidence_public_api.json b/api/Confidence_public_api.json index da5e3e39..74278bb2 100644 --- a/api/Confidence_public_api.json +++ b/api/Confidence_public_api.json @@ -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(_:)", @@ -245,4 +249,4 @@ } ] } -] +] \ No newline at end of file