Skip to content

Commit

Permalink
feat: add installed_at to AppInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg authored Oct 10, 2024
1 parent 1ebb4ae commit f669533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/client.appinfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export type AppInfo = {
installed_app_id: InstalledAppId;
cell_info: Record<RoleName, Array<CellInfo>>;
status: InstalledAppInfoStatus;
installed_at: Timestamp;
};
```
**References:** [AgentPubKey](./client.agentpubkey.md)<!-- -->, [InstalledAppId](./client.installedappid.md)<!-- -->, [RoleName](./client.rolename.md)<!-- -->, [CellInfo](./client.cellinfo.md)<!-- -->, [InstalledAppInfoStatus](./client.installedappinfostatus.md)
**References:** [AgentPubKey](./client.agentpubkey.md)<!-- -->, [InstalledAppId](./client.installedappid.md)<!-- -->, [RoleName](./client.rolename.md)<!-- -->, [CellInfo](./client.cellinfo.md)<!-- -->, [InstalledAppInfoStatus](./client.installedappinfostatus.md)<!-- -->, [Timestamp](./client.timestamp.md)

1 change: 1 addition & 0 deletions src/api/admin/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export type AppInfo = {
installed_app_id: InstalledAppId;
cell_info: Record<RoleName, Array<CellInfo>>;
status: InstalledAppInfoStatus;
installed_at: Timestamp;
};

/**
Expand Down

0 comments on commit f669533

Please sign in to comment.