-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sdk): add
files
entry to SdkMessageV
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
packages/sdk/src/modules/dashboard/messages/dto/sdk-message-file.dto.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { z } from 'zod'; | ||
|
||
import { SdkTableRowWithIdV } from '~/shared'; | ||
|
||
import { SdkBaseS3ResourceV } from '../../s3-files/dto/sdk-base-s3-resource.dto'; | ||
|
||
export const SdkMessageFileV = z.object({ | ||
resource: SdkBaseS3ResourceV, | ||
}) | ||
.merge(SdkTableRowWithIdV); | ||
|
||
export type SdkProjectFileT = z.infer<typeof SdkMessageFileV>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters