Skip to content

Commit

Permalink
chore(release): v0.18.0-dev.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed May 10, 2024
1 parent bf7fe2d commit 907e69a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
### Removed

## 2024-05-10: v0.18.0-dev.1
### Added
- App id to `AppClient` and `AppWebsocket`.
- Optional function parameter for a custom zome transformer in `AppWebsocket`.

## 2024-05-02: v0.18.0-dev.0
### Added
- Test for Rust enum serialization.
Expand Down
1 change: 1 addition & 0 deletions docs/client.callzometransform.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## CallZomeTransform type


**Signature:**

```typescript
Expand Down
1 change: 1 addition & 0 deletions docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -1502,6 +1502,7 @@ This type is meant to be opaque
</td><td>



</td></tr>
<tr><td>

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holochain/client",
"version": "0.18.0-dev.0",
"version": "0.18.0-dev.1",
"description": "A JavaScript client for the Holochain Conductor API",
"author": "Holochain Foundation <info@holochain.org> (https://holochain.org)",
"license": "CAL-1.0",
Expand Down
3 changes: 3 additions & 0 deletions src/api/app/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,9 @@ export interface AppWebsocketConnectionOptions
callZomeTransform?: CallZomeTransform;
}

/**
* @public
*/
export type CallZomeTransform = Transformer<
CallZomeRequest | CallZomeRequestSigned,
Promise<CallZomeRequestSigned>,
Expand Down

0 comments on commit 907e69a

Please sign in to comment.