Skip to content

Commit

Permalink
Add experimental context types
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Floricel <andrei.floricel@gmail.com>
  • Loading branch information
andreifloricel committed Feb 16, 2024
1 parent df805e9 commit f3e8d08
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/context/ContextType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,17 @@ export type StandardContextType =
| 'fdc3.transactionResult'
| 'fdc3.valuation';

/**
* @see https://fdc3.finos.org/docs/context/spec#standard-context-types
*/
export type ExperimentalContextType =
| 'fdc3.order'
| 'fdc3.orderList'
| 'fdc3.product'
| 'fdc3.trade'
| 'fdc3.tradeList';

/**
* @see https://fdc3.finos.org/docs/context/spec
*/
export type ContextType = StandardContextType | string;
export type ContextType = StandardContextType | ExperimentalContextType | (string & {});

0 comments on commit f3e8d08

Please sign in to comment.