keycloakify 10.0.2 → 10.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/780.index.js
CHANGED
@@ -68,7 +68,7 @@ function updateAccountThemeImplementationInConfig(params) {
|
|
68
68
|
const parsedPackageJson = (() => {
|
69
69
|
const zParsedPackageJson = (() => {
|
70
70
|
const zTargetType = lib.z.object({
|
71
|
-
keycloakify: lib.z.record(lib.z.
|
71
|
+
keycloakify: lib.z.record(lib.z.unknown())
|
72
72
|
});
|
73
73
|
(0,assert.assert)();
|
74
74
|
return (0,id.id)(zTargetType);
|
package/package.json
CHANGED
@@ -60,14 +60,14 @@ export function updateAccountThemeImplementationInConfig(params: {
|
|
60
60
|
{
|
61
61
|
const parsedPackageJson = (() => {
|
62
62
|
type ParsedPackageJson = {
|
63
|
-
keycloakify: Record<string,
|
63
|
+
keycloakify: Record<string, unknown>;
|
64
64
|
};
|
65
65
|
|
66
66
|
const zParsedPackageJson = (() => {
|
67
67
|
type TargetType = ParsedPackageJson;
|
68
68
|
|
69
69
|
const zTargetType = z.object({
|
70
|
-
keycloakify: z.record(z.
|
70
|
+
keycloakify: z.record(z.unknown())
|
71
71
|
});
|
72
72
|
|
73
73
|
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|