Skip to content

Commit

Permalink
fix: add environment to upload props (#2099)
Browse files Browse the repository at this point in the history
* fix: include environment in UploadsProp type

* environment type should be optional
  • Loading branch information
jsdalton authored Dec 19, 2023
1 parent fc61e3c commit 629cb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/entities/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type UploadProps = {
/**
* System metadata
*/
sys: MetaSysProps & { space: SysLink }
sys: MetaSysProps & { space: SysLink; environment?: SysLink }
}

export interface Upload extends UploadProps, DefaultElements<UploadProps> {
Expand Down

0 comments on commit 629cb2d

Please sign in to comment.