Skip to content

Commit e842cba

Browse files
format
1 parent 5b08df3 commit e842cba

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

packages/web-domain/src/Folder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { Rpc, RpcGroup } from "@effect/rpc";
33
import { Effect, Schema } from "effect";
44
import { RpcAuthMiddleware } from "./Authentication.ts";
55
import { InternalError } from "./Errors.ts";
6-
import { PolicyDeniedError } from "./Policy.ts";
76
import { OrganisationId } from "./Organisation.ts";
8-
import { UserId } from "./User.ts";
7+
import { PolicyDeniedError } from "./Policy.ts";
98
import { SpaceId } from "./Space.ts";
9+
import { UserId } from "./User.ts";
1010

1111
export const FolderId = Schema.String.pipe(Schema.brand("FolderId"));
1212
export type FolderId = typeof FolderId.Type;

packages/web-domain/src/Loom.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import { Workflow } from "@effect/workflow";
22
import { Schema } from "effect";
3-
4-
import * as Video from "./Video.ts";
5-
import { UserId } from "./User.ts";
63
import { OrganisationId } from "./Organisation.ts";
4+
import { UserId } from "./User.ts";
5+
import * as Video from "./Video.ts";
76

87
class LoomApiError extends Schema.TaggedError<LoomApiError>("LoomApiError")(
98
"LoomApiError",

packages/web-domain/src/Video.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { RpcAuthMiddleware } from "./Authentication.ts";
55
import { InternalError } from "./Errors.ts";
66
import { FolderId } from "./Folder.ts";
77
import { OrganisationId } from "./Organisation.ts";
8-
import { UserId } from "./User.ts";
98
import { PolicyDeniedError } from "./Policy.ts";
109
import { S3BucketId } from "./S3Bucket.ts";
10+
import { UserId } from "./User.ts";
1111

1212
export const VideoId = Schema.String.pipe(Schema.brand("VideoId"));
1313
export type VideoId = typeof VideoId.Type;

packages/web-domain/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export * from "./Authentication.ts";
2+
export * as Comment from "./Comment.ts";
23
export * from "./Errors.ts";
34
export * as Folder from "./Folder.ts";
45
export * 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";
86
export * from "./Organisation.ts";
9-
export * as Comment from "./Comment.ts";
7+
export * as Policy from "./Policy.ts";
108
export { Rpcs } from "./Rpcs.ts";
119
export * as S3Bucket from "./S3Bucket.ts";
10+
export * as Space from "./Space.ts";
11+
export * as User from "./User.ts";
1212
export * as Video from "./Video.ts";

0 commit comments

Comments
 (0)