Skip to content

Commit

Permalink
docs: update docs & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed May 21, 2024
1 parent dd07c24 commit 7382a9f
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 33 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## \[Unreleased\]

### Added
- Test for Rust enum serialization.
### Changed
- **BREAKING** Update enum serialization to match [changed Conductor API serialization format](https://github.com/holochain/holochain/blob/develop/crates/holochain/CHANGELOG.md#040-dev1).
### Fixed
### Removed

## 2024-05-21: v0.17.0-rc.0
### Added
- Test for Rust enum serialization.
### Changed
- **BREAKING** Update enum serialization to match [changed Conductor API serialization format](https://github.com/holochain/holochain/blob/develop/crates/holochain/CHANGELOG.md#040-dev1).

## 2024-04-27: v0.17.0-dev.12
### Fixed
### Fixed`
- Invalid module references which caused the client to fail to import in Node environments.

## 2024-04-26: v0.17.0-dev.11
Expand Down
2 changes: 1 addition & 1 deletion docs/client.addagentinforesponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
**Signature:**

```typescript
export type AddAgentInfoResponse = any;
export type AddAgentInfoResponse = unknown;
```
10 changes: 5 additions & 5 deletions docs/client.appstatusfilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Disabled

</td><td>

`"disabled"`
`"Disabled"`


</td><td>
Expand All @@ -50,7 +50,7 @@ Enabled

</td><td>

`"enabled"`
`"Enabled"`


</td><td>
Expand All @@ -64,7 +64,7 @@ Paused

</td><td>

`"paused"`
`"Paused"`


</td><td>
Expand All @@ -78,7 +78,7 @@ Running

</td><td>

`"running"`
`"Running"`


</td><td>
Expand All @@ -92,7 +92,7 @@ Stopped

</td><td>

`"stopped"`
`"Stopped"`


</td><td>
Expand Down
4 changes: 1 addition & 3 deletions docs/client.capaccess.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
**Signature:**

```typescript
export type CapAccess = {
[CapAccessType.Unrestricted]: null;
} | {
export type CapAccess = [CapAccessType.Unrestricted] | {
[CapAccessType.Transferable]: {
secret: CapSecret;
};
Expand Down
6 changes: 1 addition & 5 deletions docs/client.deactivationreason.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
**Signature:**

```typescript
export type DeactivationReason = {
never_activated: null;
} | {
normal: null;
} | {
export type DeactivationReason = "never_activated" | "normal" | {
quarantined: {
error: string;
};
Expand Down
6 changes: 1 addition & 5 deletions docs/client.disabledappreason.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
**Signature:**

```typescript
export type DisabledAppReason = {
never_started: null;
} | {
user: null;
} | {
export type DisabledAppReason = "never_started" | "user" | {
error: string;
};
```
6 changes: 1 addition & 5 deletions docs/client.entryvisibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,5 @@
**Signature:**

```typescript
export type EntryVisibility = {
Public: null;
} | {
Private: null;
};
export type EntryVisibility = "Public" | "Private";
```
4 changes: 1 addition & 3 deletions docs/client.grantedfunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
**Signature:**

```typescript
export type GrantedFunctions = {
[GrantedFunctionsType.All]: null;
} | {
export type GrantedFunctions = GrantedFunctionsType.All | {
[GrantedFunctionsType.Listed]: [ZomeName, FunctionName][];
};
```
Expand Down
4 changes: 1 addition & 3 deletions docs/client.installedappinfostatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export type InstalledAppInfoStatus = {
disabled: {
reason: DisabledAppReason;
};
} | {
running: null;
};
} | "running";
```
**References:** [PausedAppReason](./client.pausedappreason.md)<!-- -->, [DisabledAppReason](./client.disabledappreason.md)

0 comments on commit 7382a9f

Please sign in to comment.