Fix bug in type validation for webpack when initializing the account theme
This commit is contained in:
parent
8db35a81da
commit
f394e06e4d
@ -60,14 +60,14 @@ export function updateAccountThemeImplementationInConfig(params: {
|
|||||||
{
|
{
|
||||||
const parsedPackageJson = (() => {
|
const parsedPackageJson = (() => {
|
||||||
type ParsedPackageJson = {
|
type ParsedPackageJson = {
|
||||||
keycloakify: Record<string, string>;
|
keycloakify: Record<string, unknown>;
|
||||||
};
|
};
|
||||||
|
|
||||||
const zParsedPackageJson = (() => {
|
const zParsedPackageJson = (() => {
|
||||||
type TargetType = ParsedPackageJson;
|
type TargetType = ParsedPackageJson;
|
||||||
|
|
||||||
const zTargetType = z.object({
|
const zTargetType = z.object({
|
||||||
keycloakify: z.record(z.string())
|
keycloakify: z.record(z.unknown())
|
||||||
});
|
});
|
||||||
|
|
||||||
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user