Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

View manager follow ups #3830

Merged
merged 14 commits into from
Nov 18, 2024
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## v71.0.0-SNAPSHOT - unreleased


### ⚙️ Technical
* Misc. Improvements to ViewManager


## v70.0.0 - 2024-11-15

### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - changes to advanced persistence APIs)
Expand Down
4 changes: 3 additions & 1 deletion core/persist/viewmanager/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ export interface View<T extends PlainObject = PlainObject> {
isShared: boolean;
lastUpdated: number;
lastUpdatedBy: string;
/** User-supplied descriptive name. */
/** User-supplied descriptive name, including folder designating prefix. */
name: string;
/** User-supplied descriptive name, without folder designating prefix. */
shortName: string;
/** Original creator of the view, and the only user with access to it if not shared. */
owner: string;
token: string;
Expand Down
Loading
Loading