Skip to content

Commit

Permalink
update type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed Feb 3, 2024
1 parent 2ac2425 commit 34aad88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/types/AuthorizedServiceHost.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ServiceHostScope } from "./ServiceHostScope";

export interface AuthorizedServiceHost { url: string, id: string, public: boolean, }
export interface AuthorizedServiceHost { url: string, id: string, visibility: ServiceHostScope, }
3 changes: 1 addition & 2 deletions src/types/CreateProjectData.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ClientId } from "./ClientId";
import type { RoleData } from "./RoleData";
import type { RoleId } from "./RoleId";
import type { SaveState } from "./SaveState";

export interface CreateProjectData { owner?: string, name: string, roles?: Array<RoleData>, clientId?: ClientId, saveState?: SaveState, roleDict?: Record<RoleId, RoleData>, }
export interface CreateProjectData { owner?: string, name: string, roles?: Array<RoleData>, clientId?: ClientId, saveState?: SaveState, }

0 comments on commit 34aad88

Please sign in to comment.