File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ import { Rpc, RpcGroup } from "@effect/rpc";
33import { Effect , Schema } from "effect" ;
44import { RpcAuthMiddleware } from "./Authentication.ts" ;
55import { InternalError } from "./Errors.ts" ;
6- import { PolicyDeniedError } from "./Policy.ts" ;
76import { OrganisationId } from "./Organisation.ts" ;
8- import { UserId } from "./User .ts" ;
7+ import { PolicyDeniedError } from "./Policy .ts" ;
98import { SpaceId } from "./Space.ts" ;
9+ import { UserId } from "./User.ts" ;
1010
1111export const FolderId = Schema . String . pipe ( Schema . brand ( "FolderId" ) ) ;
1212export type FolderId = typeof FolderId . Type ;
Original file line number Diff line number Diff line change 11import { Workflow } from "@effect/workflow" ;
22import { Schema } from "effect" ;
3-
4- import * as Video from "./Video.ts" ;
5- import { UserId } from "./User.ts" ;
63import { OrganisationId } from "./Organisation.ts" ;
4+ import { UserId } from "./User.ts" ;
5+ import * as Video from "./Video.ts" ;
76
87class LoomApiError extends Schema . TaggedError < LoomApiError > ( "LoomApiError" ) (
98 "LoomApiError" ,
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import { RpcAuthMiddleware } from "./Authentication.ts";
55import { InternalError } from "./Errors.ts" ;
66import { FolderId } from "./Folder.ts" ;
77import { OrganisationId } from "./Organisation.ts" ;
8- import { UserId } from "./User.ts" ;
98import { PolicyDeniedError } from "./Policy.ts" ;
109import { S3BucketId } from "./S3Bucket.ts" ;
10+ import { UserId } from "./User.ts" ;
1111
1212export const VideoId = Schema . String . pipe ( Schema . brand ( "VideoId" ) ) ;
1313export type VideoId = typeof VideoId . Type ;
Original file line number Diff line number Diff line change 11export * from "./Authentication.ts" ;
2+ export * as Comment from "./Comment.ts" ;
23export * from "./Errors.ts" ;
34export * as Folder from "./Folder.ts" ;
45export * as Organisation from "./Organisation.ts" ;
5- export * as Space from "./Space.ts" ;
6- export * as User from "./User.ts" ;
7- export * as Policy from "./Policy.ts" ;
86export * from "./Organisation.ts" ;
9- export * as Comment from "./Comment .ts" ;
7+ export * as Policy from "./Policy .ts" ;
108export { Rpcs } from "./Rpcs.ts" ;
119export * as S3Bucket from "./S3Bucket.ts" ;
10+ export * as Space from "./Space.ts" ;
11+ export * as User from "./User.ts" ;
1212export * as Video from "./Video.ts" ;
You can’t perform that action at this time.
0 commit comments