Skip to content

Commit

Permalink
fix(OUT-1284): marketplace app support object for customField value
Browse files Browse the repository at this point in the history
  • Loading branch information
makeitraina committed Jan 15, 2025
1 parent 5894d17 commit 095cfd1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/types/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ export const ClientResponseSchema = z.object({
customFields: z
.record(
z.string(),
z.union([z.string().nullable(), z.array(z.string()).nullable()]),
z.union([
z.string().nullable(),
z.array(z.string()).nullable(),
z.object({}).nullable(),
]),
)
.nullable(),
avatarImageUrl: z.string().nullable(),
Expand Down

0 comments on commit 095cfd1

Please sign in to comment.