Skip to content

Commit

Permalink
Merge branch 'main' into fdc3-for-web-impl
Browse files Browse the repository at this point in the history
  • Loading branch information
kriswest committed Dec 18, 2024
2 parents 25ff0fb + bc2fa35 commit bf67434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Added missing `resultType` argument to `findIntentByContext` agent request in the Bridging Schema. ([#1212](https://github.com/finos/FDC3/pull/1212))
* Added missing id and name fields from the context base schema to respective context schemas (`Contact`, `ContactList`, `Country`, `InstrumentList`, `OrderList`, `Organization`, `Portfolio`, `Position`, `TradeList`). ([#1360](https://github.com/finos/FDC3/pull/1360))
* Revised FDC3 charter to include well-known language from the FDC3 introduction, better describe FDC3's scope, focus on financial applications, update application types, etc. ([#1079](https://github.com/finos/FDC3/pull/1079))
* Ensured that `PrivateChannelEvent` extends `ApiEvent` in both sourcecode and documentation. ([#1474](https://github.com/finos/FDC3/pull/1474))

## [npm v2.1.1] - 2024-06-28

Expand Down
2 changes: 1 addition & 1 deletion packages/fdc3-standard/src/api/Events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export type PrivateChannelEventTypes = 'addContextListener' | 'unsubscribe' | 'd
* Type defining the format of event objects that may be received
* via a PrivateChannel's `addEventListener` function.
*/
export interface PrivateChannelEvent {
export interface PrivateChannelEvent extends ApiEvent{
readonly type: PrivateChannelEventTypes;
readonly details: any;
}
Expand Down

0 comments on commit bf67434

Please sign in to comment.