Skip to content

Commit f6b9d12

Browse files
chore(client): simplify unknown | null to just unknown (#171)
1 parent 7c6cfaa commit f6b9d12

File tree

3 files changed

+291
-291
lines changed

3 files changed

+291
-291
lines changed

src/resources/executions/executions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export interface Execution {
9393

9494
metadata?: unknown | null;
9595

96-
output?: unknown | null;
96+
output?: unknown;
9797
}
9898

9999
export interface Transition {
@@ -148,7 +148,7 @@ export interface ExecutionCreateParams {
148148

149149
metadata?: unknown | null;
150150

151-
output?: unknown | null;
151+
output?: unknown;
152152
}
153153

154154
export interface ExecutionListParams extends OffsetPaginationParams {

0 commit comments

Comments
 (0)