Skip to content

Commit

Permalink
Merge pull request #255 from holochain/add-missing-base-field-in-link…
Browse files Browse the repository at this point in the history
…-interface

Add missing `base` field in the Link interface
  • Loading branch information
ThetaSinner committed Jun 18, 2024
2 parents 68e0378 + 054f349 commit 41ed0ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## \[Unreleased\]

### Added
- Added missing `base` field to the `Link` type. This exists in Holochain but wasn't present in the client.

### Changed
### Fixed
### Removed
Expand Down
1 change: 1 addition & 0 deletions src/hdk/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export type RateUnits = number;
*/
export interface Link {
author: AgentPubKey;
base: AnyLinkableHash;
target: AnyLinkableHash;
timestamp: Timestamp;
zome_index: ZomeIndex;
Expand Down

0 comments on commit 41ed0ea

Please sign in to comment.