Skip to content

Commit

Permalink
feat: add missing properties in asset interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidgil committed Nov 26, 2021
1 parent 0712343 commit ab40f31
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/api/interfaces/modules_assets_assets_types.Asset.md
Expand Up @@ -6,13 +6,21 @@

### Properties

- [createdAt](modules_assets_assets_types.Asset.md#createdat)
- [document](modules_assets_assets_types.Asset.md#document)
- [id](modules_assets_assets_types.Asset.md#id)
- [offeredTo](modules_assets_assets_types.Asset.md#offeredto)
- [owner](modules_assets_assets_types.Asset.md#owner)
- [updatedAt](modules_assets_assets_types.Asset.md#updatedat)

## Properties

### createdAt

**createdAt**: `string`

___

### document

**document**: `IDIDDocument`
Expand All @@ -34,3 +42,9 @@ ___
### owner

**owner**: `string`

___

### updatedAt

**updatedAt**: `string`
2 changes: 2 additions & 0 deletions src/modules/assets/assets.types.ts
Expand Up @@ -5,6 +5,8 @@ export interface Asset {
owner: string;
offeredTo?: string;
document: IDIDDocument;
updatedAt: string;
createdAt: string;
}

export interface AssetHistory {
Expand Down

0 comments on commit ab40f31

Please sign in to comment.