You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
15
15
* Added clarification regarding expected behavior upon repeated calls to `addContextListener` on same or overlapping types (allowed) and `addIntentListener` on same intent (rejected; new error type added). ([#1394](https://github.com/finos/FDC3/pull/1394))
16
16
* Ported FDC3 Conformance Project as-is into the FDC3 Monorepo, just including minimal fixes for typescript compilation. ([#1576](https://github.com/finos/FDC3/pull/1576))
17
17
18
+
* Added `clearContext` function and associated `contextClearedEvent` to the `Channel` API, to be able to clear specific or all context types from the channel. ([#1379](https://github.com/finos/FDC3/pull/1379))
Copy file name to clipboardExpand all lines: packages/fdc3-schema/schemas/api/agentEvent.schema.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@
16
16
"intentEvent",
17
17
"privateChannelOnAddContextListenerEvent",
18
18
"privateChannelOnDisconnectEvent",
19
-
"privateChannelOnUnsubscribeEvent"
19
+
"privateChannelOnUnsubscribeEvent",
20
+
"contextClearedEvent"
20
21
],
21
22
"description": "Identifies the type of the message and it is typically set to the FDC3 function name that the message relates to, e.g. 'findIntent', with 'Response' appended."
Copy file name to clipboardExpand all lines: packages/fdc3-schema/schemas/api/agentResponse.schema.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,8 @@
35
35
"privateChannelUnsubscribeEventListenerResponse",
36
36
"raiseIntentForContextResponse",
37
37
"raiseIntentResponse",
38
-
"raiseIntentResultResponse"
38
+
"raiseIntentResultResponse",
39
+
"clearContextResponse"
39
40
],
40
41
"description": "Identifies the type of the message and it is typically set to the FDC3 function name that the message relates to, e.g. 'findIntent', with 'Response' appended."
Copy file name to clipboardExpand all lines: packages/fdc3-schema/schemas/api/appRequest.schema.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,8 @@
35
35
"privateChannelDisconnectRequest",
36
36
"privateChannelUnsubscribeEventListenerRequest",
37
37
"raiseIntentForContextRequest",
38
-
"raiseIntentRequest"
38
+
"raiseIntentRequest",
39
+
"clearContextRequest"
39
40
],
40
41
"description": "Identifies the type of the message and it is typically set to the FDC3 function name that the message relates to, e.g. 'findIntent', with 'Request' appended."
0 commit comments