Skip to content

Commit 4f96136

Browse files
committed
fix type error
1 parent caeed13 commit 4f96136

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

packages/client-github/src/types.ts

+5-8
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@ export const OODASchema = z.object({
55
"CREATE_ISSUE",
66
"NOTHING",
77
"ADD_COMMENT_TO_ISSUE",
8-
// "COMMENT_PR",
9-
"INITIALIZE_REPOSITORY",
10-
// "CREATE_COMMIT",
11-
"CREATE_MEMORIES_FROM_FILES",
12-
// "CREATE_PULL_REQUEST",
13-
// "MODIFY_ISSUE",
8+
"ADD_COMMENT_TO_PR",
9+
// "INITIALIZE_REPOSITORY",
10+
// "CREATE_MEMORIES_FROM_FILES",
1411
// "IDEATE",
1512
]),
1613
owner: z.string().optional(),
1714
repo: z.string().optional(),
1815
path: z.string().optional(),
1916
branch: z.string().optional(),
20-
title: z.string().min(1, "Pull request title is required").optional(),
17+
title: z.string().optional(),
2118
description: z.string().optional(),
2219
files: z.array(z.object({ path: z.string(), content: z.string() })).optional(),
2320
message: z.string().optional(),
@@ -32,7 +29,7 @@ export interface OODAContent {
3229
repo?: string;
3330
path?: string;
3431
branch?: string;
35-
title: string;
32+
title?: string;
3633
description?: string;
3734
files: { path: string; content: string }[];
3835
message?: string;

0 commit comments

Comments
 (0)