Skip to content

Commit

Permalink
Fixes type
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Dec 21, 2023
1 parent 91e2510 commit c6bbff4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/cli",
"description": "Small package containing useful typescript utilities.",
"version": "4.121.1",
"version": "4.121.2",
"homepage": "https://github.com/transcend-io/cli",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/addMessagesToPromptRun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export interface AddMessagesToPromptRunInput {
}
| {
/** Don't report by name */
name: undefined;
name?: undefined;
/** Report by prompt run ID */
id?: string;
id: string;
};
/** Messages to report on */
promptRunMessages?: {
Expand Down

0 comments on commit c6bbff4

Please sign in to comment.