Merge pull request #7581 from tchak/fix-gon-type
fix(gon): matomo key can be a number
This commit is contained in:
commit
5abc17fe74
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ const Gon = z
|
||||||
domain: z.string().optional(),
|
domain: z.string().optional(),
|
||||||
enabled: z.boolean().default(false),
|
enabled: z.boolean().default(false),
|
||||||
host: z.string().optional(),
|
host: z.string().optional(),
|
||||||
key: z.string().nullish()
|
key: z.string().or(z.number()).nullish()
|
||||||
})
|
})
|
||||||
.default({}),
|
.default({}),
|
||||||
sentry: z
|
sentry: z
|
||||||
|
|
Loading…
Reference in a new issue