chore(api-report): update api report for tech-inisghts

Signed-off-by: Fernando.Teixeira <fernando.Teixeira@traderev.com>
This commit is contained in:
Fernando.Teixeira
2023-01-25 15:03:16 -05:00
parent f44199533a
commit 9d59c101c8
4 changed files with 24 additions and 18 deletions
@@ -47,5 +47,22 @@ export type FactResponse = {
};
};
// @public
export type FactSchema = {
[name: string]: {
type:
| 'integer'
| 'float'
| 'string'
| 'boolean'
| 'datetime'
| 'set'
| 'object';
description: string;
since?: string;
metadata?: Record<string, any>;
};
};
// (No @packageDocumentation comment for this package)
```