@hed-hog/core 0.0.262 → 0.0.266
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/dist/auth/auth.controller.d.ts +1 -1
- package/dist/auth/auth.service.d.ts +1 -1
- package/dist/dashboard/dashboard-user/dashboard-user.controller.d.ts +3 -3
- package/dist/dashboard/dashboard-user/dashboard-user.service.d.ts +3 -3
- package/dist/menu/menu.controller.d.ts +3 -3
- package/dist/menu/menu.service.d.ts +3 -3
- package/dist/user/user.controller.d.ts +2 -2
- package/dist/user/user.service.d.ts +3 -3
- package/hedhog/frontend/app/configurations/[slug]/page.tsx.ejs +1 -1
- package/hedhog/frontend/app/configurations/layout.tsx.ejs +2 -2
- package/hedhog/frontend/app/configurations/page.tsx.ejs +2 -2
- package/hedhog/frontend/app/dashboard/components/draggable-grid.tsx.ejs +38 -12
- package/hedhog/frontend/app/preferences/page.tsx.ejs +1 -1
- package/hedhog/frontend/app/roles/page.tsx.ejs +59 -57
- package/hedhog/frontend/app/users/page.tsx.ejs +1 -1
- package/package.json +6 -6
|
@@ -23,9 +23,9 @@ export declare class AuthController {
|
|
|
23
23
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
24
24
|
created_at: Date;
|
|
25
25
|
updated_at: Date;
|
|
26
|
+
email: string | null;
|
|
26
27
|
user_id: number;
|
|
27
28
|
provider_user_id: string;
|
|
28
|
-
email: string | null;
|
|
29
29
|
scopes: string | null;
|
|
30
30
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
31
31
|
token_expires_at: Date | null;
|
|
@@ -79,9 +79,9 @@ export declare class AuthService {
|
|
|
79
79
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
80
80
|
created_at: Date;
|
|
81
81
|
updated_at: Date;
|
|
82
|
+
email: string | null;
|
|
82
83
|
user_id: number;
|
|
83
84
|
provider_user_id: string;
|
|
84
|
-
email: string | null;
|
|
85
85
|
scopes: string | null;
|
|
86
86
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
87
87
|
token_expires_at: Date | null;
|
|
@@ -18,24 +18,24 @@ export declare class DashboardUserController {
|
|
|
18
18
|
id: number;
|
|
19
19
|
created_at: Date;
|
|
20
20
|
updated_at: Date;
|
|
21
|
-
dashboard_id: number;
|
|
22
21
|
user_id: number;
|
|
22
|
+
dashboard_id: number;
|
|
23
23
|
is_home: boolean;
|
|
24
24
|
}>;
|
|
25
25
|
create(data: CreateDTO): Promise<{
|
|
26
26
|
id: number;
|
|
27
27
|
created_at: Date;
|
|
28
28
|
updated_at: Date;
|
|
29
|
-
dashboard_id: number;
|
|
30
29
|
user_id: number;
|
|
30
|
+
dashboard_id: number;
|
|
31
31
|
is_home: boolean;
|
|
32
32
|
}>;
|
|
33
33
|
update(id: number, data: UpdateDTO): Promise<{
|
|
34
34
|
id: number;
|
|
35
35
|
created_at: Date;
|
|
36
36
|
updated_at: Date;
|
|
37
|
-
dashboard_id: number;
|
|
38
37
|
user_id: number;
|
|
38
|
+
dashboard_id: number;
|
|
39
39
|
is_home: boolean;
|
|
40
40
|
}>;
|
|
41
41
|
delete(data: DeleteDTO): Promise<{
|
|
@@ -20,16 +20,16 @@ export declare class DashboardUserService {
|
|
|
20
20
|
id: number;
|
|
21
21
|
created_at: Date;
|
|
22
22
|
updated_at: Date;
|
|
23
|
-
dashboard_id: number;
|
|
24
23
|
user_id: number;
|
|
24
|
+
dashboard_id: number;
|
|
25
25
|
is_home: boolean;
|
|
26
26
|
}>;
|
|
27
27
|
create(data: CreateDTO): Promise<{
|
|
28
28
|
id: number;
|
|
29
29
|
created_at: Date;
|
|
30
30
|
updated_at: Date;
|
|
31
|
-
dashboard_id: number;
|
|
32
31
|
user_id: number;
|
|
32
|
+
dashboard_id: number;
|
|
33
33
|
is_home: boolean;
|
|
34
34
|
}>;
|
|
35
35
|
update({ id, data }: {
|
|
@@ -39,8 +39,8 @@ export declare class DashboardUserService {
|
|
|
39
39
|
id: number;
|
|
40
40
|
created_at: Date;
|
|
41
41
|
updated_at: Date;
|
|
42
|
-
dashboard_id: number;
|
|
43
42
|
user_id: number;
|
|
43
|
+
dashboard_id: number;
|
|
44
44
|
is_home: boolean;
|
|
45
45
|
}>;
|
|
46
46
|
delete({ ids }: DeleteDTO): Promise<{
|
|
@@ -54,9 +54,9 @@ export declare class MenuController {
|
|
|
54
54
|
created_at: Date;
|
|
55
55
|
updated_at: Date;
|
|
56
56
|
slug: string;
|
|
57
|
+
icon: string;
|
|
57
58
|
menu_id: number | null;
|
|
58
59
|
url: string | null;
|
|
59
|
-
icon: string;
|
|
60
60
|
}>;
|
|
61
61
|
create(locale: any, data: CreateDTO): Promise<{
|
|
62
62
|
id: number;
|
|
@@ -64,9 +64,9 @@ export declare class MenuController {
|
|
|
64
64
|
created_at: Date;
|
|
65
65
|
updated_at: Date;
|
|
66
66
|
slug: string;
|
|
67
|
+
icon: string;
|
|
67
68
|
menu_id: number | null;
|
|
68
69
|
url: string | null;
|
|
69
|
-
icon: string;
|
|
70
70
|
}>;
|
|
71
71
|
updateOrder(locale: any, data: OrderDTO): Promise<void>;
|
|
72
72
|
update(locale: any, menuId: number, data: UpdateDTO): Promise<{
|
|
@@ -75,9 +75,9 @@ export declare class MenuController {
|
|
|
75
75
|
created_at: Date;
|
|
76
76
|
updated_at: Date;
|
|
77
77
|
slug: string;
|
|
78
|
+
icon: string;
|
|
78
79
|
menu_id: number | null;
|
|
79
80
|
url: string | null;
|
|
80
|
-
icon: string;
|
|
81
81
|
}>;
|
|
82
82
|
delete(locale: any, data: DeleteDTO): Promise<{
|
|
83
83
|
count: number;
|
|
@@ -67,9 +67,9 @@ export declare class MenuService {
|
|
|
67
67
|
created_at: Date;
|
|
68
68
|
updated_at: Date;
|
|
69
69
|
slug: string;
|
|
70
|
+
icon: string;
|
|
70
71
|
menu_id: number | null;
|
|
71
72
|
url: string | null;
|
|
72
|
-
icon: string;
|
|
73
73
|
}>;
|
|
74
74
|
create(_locale: string, { slug, url, icon, order, menu_id, locale }: CreateDTO): Promise<{
|
|
75
75
|
id: number;
|
|
@@ -77,9 +77,9 @@ export declare class MenuService {
|
|
|
77
77
|
created_at: Date;
|
|
78
78
|
updated_at: Date;
|
|
79
79
|
slug: string;
|
|
80
|
+
icon: string;
|
|
80
81
|
menu_id: number | null;
|
|
81
82
|
url: string | null;
|
|
82
|
-
icon: string;
|
|
83
83
|
}>;
|
|
84
84
|
update(locale: string, { id, data }: {
|
|
85
85
|
id: number;
|
|
@@ -90,9 +90,9 @@ export declare class MenuService {
|
|
|
90
90
|
created_at: Date;
|
|
91
91
|
updated_at: Date;
|
|
92
92
|
slug: string;
|
|
93
|
+
icon: string;
|
|
93
94
|
menu_id: number | null;
|
|
94
95
|
url: string | null;
|
|
95
|
-
icon: string;
|
|
96
96
|
}>;
|
|
97
97
|
delete(locale: string, { ids }: DeleteDTO): Promise<{
|
|
98
98
|
count: number;
|
|
@@ -25,9 +25,9 @@ export declare class UserController {
|
|
|
25
25
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
26
26
|
created_at: Date;
|
|
27
27
|
updated_at: Date;
|
|
28
|
+
email: string | null;
|
|
28
29
|
user_id: number;
|
|
29
30
|
provider_user_id: string;
|
|
30
|
-
email: string | null;
|
|
31
31
|
scopes: string | null;
|
|
32
32
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
33
33
|
token_expires_at: Date | null;
|
|
@@ -136,8 +136,8 @@ export declare class UserController {
|
|
|
136
136
|
id: number;
|
|
137
137
|
created_at: Date;
|
|
138
138
|
updated_at: Date;
|
|
139
|
-
role_id: number;
|
|
140
139
|
user_id: number;
|
|
140
|
+
role_id: number;
|
|
141
141
|
}>;
|
|
142
142
|
removeRoleFromUser(userId: number, roleId: number, locale: string): Promise<{
|
|
143
143
|
count: number;
|
|
@@ -46,9 +46,9 @@ export declare class UserService {
|
|
|
46
46
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
47
47
|
created_at: Date;
|
|
48
48
|
updated_at: Date;
|
|
49
|
+
email: string | null;
|
|
49
50
|
user_id: number;
|
|
50
51
|
provider_user_id: string;
|
|
51
|
-
email: string | null;
|
|
52
52
|
scopes: string | null;
|
|
53
53
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
54
54
|
token_expires_at: Date | null;
|
|
@@ -142,9 +142,9 @@ export declare class UserService {
|
|
|
142
142
|
provider: import("@prisma/client").$Enums.user_account_provider_enum;
|
|
143
143
|
created_at: Date;
|
|
144
144
|
updated_at: Date;
|
|
145
|
+
email: string | null;
|
|
145
146
|
user_id: number;
|
|
146
147
|
provider_user_id: string;
|
|
147
|
-
email: string | null;
|
|
148
148
|
scopes: string | null;
|
|
149
149
|
refresh_token: import("@prisma/client/runtime/library").Bytes | null;
|
|
150
150
|
token_expires_at: Date | null;
|
|
@@ -254,8 +254,8 @@ export declare class UserService {
|
|
|
254
254
|
id: number;
|
|
255
255
|
created_at: Date;
|
|
256
256
|
updated_at: Date;
|
|
257
|
-
role_id: number;
|
|
258
257
|
user_id: number;
|
|
258
|
+
role_id: number;
|
|
259
259
|
}>;
|
|
260
260
|
removeRoleFromUser(locale: string, userId: number, roleId: number): Promise<{
|
|
261
261
|
count: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import { Card, CardContent } from '@/components/ui/card';
|
|
4
|
-
import { PaginatedResult } from '
|
|
4
|
+
import { PaginatedResult } from '@/types/pagination-result';
|
|
5
5
|
import { Setting } from '@hed-hog/api-types';
|
|
6
6
|
import { useApp, useQuery } from '@hed-hog/next-app-provider';
|
|
7
7
|
import { Loader } from 'lucide-react';
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
DropdownMenuTrigger,
|
|
20
20
|
} from '@/components/ui/dropdown-menu';
|
|
21
21
|
import { cn } from '@/lib/utils';
|
|
22
|
-
import { PaginatedResult } from '
|
|
22
|
+
import { PaginatedResult } from '@/types/pagination-result';
|
|
23
23
|
import { SettingGroup } from '@hed-hog/api-types';
|
|
24
24
|
import { useApp, useQuery } from '@hed-hog/next-app-provider';
|
|
25
25
|
import { Download, MenuIcon, Upload } from 'lucide-react';
|
|
@@ -64,7 +64,7 @@ export default function ConfigurationsLayout({ children }: IProps) {
|
|
|
64
64
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
|
65
65
|
|
|
66
66
|
const handleExport = (includeSecrets: boolean) => {
|
|
67
|
-
request({
|
|
67
|
+
request<Blob>({
|
|
68
68
|
url: `/setting/export?secrets=${includeSecrets}`,
|
|
69
69
|
responseType: 'blob',
|
|
70
70
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
3
|
import { Loading } from '@/components/loading';
|
|
4
|
-
import { PaginatedResult } from '
|
|
4
|
+
import { PaginatedResult } from '@/types/pagination-result';
|
|
5
5
|
import { SettingGroup } from '@hed-hog/api-types';
|
|
6
6
|
import { useApp, useQuery } from '@hed-hog/next-app-provider';
|
|
7
7
|
import { useRouter } from 'next/navigation';
|
|
@@ -23,7 +23,7 @@ export default function Page() {
|
|
|
23
23
|
|
|
24
24
|
useEffect(() => {
|
|
25
25
|
if ((settingGroups?.data || []).length > 0) {
|
|
26
|
-
router.push(`/core/configurations/${settingGroups
|
|
26
|
+
router.push(`/core/configurations/${settingGroups?.data?.[0]?.slug}`);
|
|
27
27
|
}
|
|
28
28
|
}, [settingGroups]);
|
|
29
29
|
|
|
@@ -35,6 +35,24 @@ interface DraggableGridProps {
|
|
|
35
35
|
containerPadding?: [number, number];
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
// Simple compaction function for grid layout
|
|
39
|
+
const compactLayout = (
|
|
40
|
+
layout: RGLLayout,
|
|
41
|
+
cols: number,
|
|
42
|
+
compactType: 'vertical' | 'horizontal' | null
|
|
43
|
+
): RGLLayout => {
|
|
44
|
+
if (!Array.isArray(layout)) return layout;
|
|
45
|
+
|
|
46
|
+
const sorted = [...layout].sort((a, b) => {
|
|
47
|
+
if (compactType === 'vertical') {
|
|
48
|
+
return a.y - b.y || a.x - b.x;
|
|
49
|
+
}
|
|
50
|
+
return a.x - b.x || a.y - b.y;
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
return sorted as RGLLayout;
|
|
54
|
+
};
|
|
55
|
+
|
|
38
56
|
export function DraggableGrid({
|
|
39
57
|
layout,
|
|
40
58
|
onLayoutChange,
|
|
@@ -92,20 +110,28 @@ export function DraggableGrid({
|
|
|
92
110
|
<GridLayout
|
|
93
111
|
className={`layout ${className}`}
|
|
94
112
|
layout={layout}
|
|
95
|
-
|
|
96
|
-
|
|
113
|
+
gridConfig={{
|
|
114
|
+
cols,
|
|
115
|
+
rowHeight,
|
|
116
|
+
containerPadding,
|
|
117
|
+
margin,
|
|
118
|
+
}}
|
|
119
|
+
dragConfig={{
|
|
120
|
+
enabled: isDraggable,
|
|
121
|
+
handle: '.drag-handle',
|
|
122
|
+
cancel: 'button,.no-drag',
|
|
123
|
+
}}
|
|
97
124
|
width={containerWidth}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
125
|
+
resizeConfig={{
|
|
126
|
+
enabled: isResizable,
|
|
127
|
+
handles: ['se', 's', 'e', 'sw', 'w', 'n', 'ne', 'nw'],
|
|
128
|
+
}}
|
|
129
|
+
compactor={{
|
|
130
|
+
type: compactType,
|
|
131
|
+
allowOverlap: !preventCollision,
|
|
132
|
+
compact: (layout, cols) => compactLayout(layout, cols, compactType),
|
|
133
|
+
}}
|
|
104
134
|
onLayoutChange={handleLayoutChange}
|
|
105
|
-
useCSSTransforms={true}
|
|
106
|
-
draggableHandle=".drag-handle"
|
|
107
|
-
resizeHandles={['se', 's', 'e', 'sw', 'w', 'n', 'ne', 'nw']}
|
|
108
|
-
draggableCancel="button,.no-drag"
|
|
109
135
|
>
|
|
110
136
|
{children}
|
|
111
137
|
</GridLayout>
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
SelectTrigger,
|
|
12
12
|
SelectValue,
|
|
13
13
|
} from '@/components/ui/select';
|
|
14
|
-
import { PaginatedResult } from '
|
|
14
|
+
import { PaginatedResult } from '@/types/pagination-result';
|
|
15
15
|
import { Setting, SettingList } from '@hed-hog/api-types';
|
|
16
16
|
import { useApp, useQuery } from '@hed-hog/next-app-provider';
|
|
17
17
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
@@ -223,7 +223,7 @@ export default function RolePage() {
|
|
|
223
223
|
}
|
|
224
224
|
};
|
|
225
225
|
|
|
226
|
-
const handleEdit = async (role: Role) => {
|
|
226
|
+
const handleEdit = async (role: Role & { role_id: number }) => {
|
|
227
227
|
setEditFormError(null);
|
|
228
228
|
|
|
229
229
|
try {
|
|
@@ -426,65 +426,67 @@ export default function RolePage() {
|
|
|
426
426
|
<p className="text-sm text-muted-foreground">{t('noRolesFound')}</p>
|
|
427
427
|
) : (
|
|
428
428
|
<div className="grid gap-4 grid-cols-1 lg:grid-cols-2 xl:grid-cols-3">
|
|
429
|
-
{rolesResponse?.data
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
<
|
|
437
|
-
<div className="
|
|
438
|
-
<
|
|
439
|
-
|
|
440
|
-
<div className="flex-1">
|
|
441
|
-
<CardTitle className="text-sm font-semibold">
|
|
442
|
-
{role.name}
|
|
443
|
-
</CardTitle>
|
|
444
|
-
<CardDescription className="text-xs text-muted-foreground">
|
|
445
|
-
{role.slug}
|
|
446
|
-
</CardDescription>
|
|
447
|
-
</div>
|
|
448
|
-
</div>
|
|
449
|
-
<Button
|
|
450
|
-
variant="outline"
|
|
451
|
-
size="sm"
|
|
452
|
-
onClick={() => handleEdit(role)}
|
|
453
|
-
>
|
|
454
|
-
{t('buttonEditRole')}
|
|
455
|
-
</Button>
|
|
456
|
-
</CardHeader>
|
|
457
|
-
{role.description && (
|
|
458
|
-
<CardContent className="p-0">
|
|
459
|
-
<p className="text-xs text-muted-foreground line-clamp-2">
|
|
460
|
-
{role.description}
|
|
461
|
-
</p>
|
|
462
|
-
<div className="text-xs line-clamp-2 flex gap-2 py-2">
|
|
463
|
-
<div>
|
|
464
|
-
{(role as any).user_count}{' '}
|
|
465
|
-
{(role as any).user_count === 1
|
|
466
|
-
? t('user')
|
|
467
|
-
: t('users')}
|
|
468
|
-
</div>
|
|
469
|
-
<div>•</div>
|
|
470
|
-
<div>
|
|
471
|
-
{(role as any).menu_count}{' '}
|
|
472
|
-
{(role as any).menu_count === 1
|
|
473
|
-
? t('menu')
|
|
474
|
-
: t('menus')}
|
|
429
|
+
{(rolesResponse?.data as (Role & { role_id: number })[])?.map(
|
|
430
|
+
(role: Role & { role_id: number }) => (
|
|
431
|
+
<Card
|
|
432
|
+
key={String(role.role_id)}
|
|
433
|
+
onDoubleClick={() => handleEdit(role)}
|
|
434
|
+
className="cursor-pointer rounded-md flex flex-col justify-between gap-2 border border-border/60 bg-card p-4 shadow-sm transition hover:border-primary"
|
|
435
|
+
>
|
|
436
|
+
<CardHeader className="flex items-start justify-between gap-4 p-0">
|
|
437
|
+
<div className="flex items-center gap-3 flex-1">
|
|
438
|
+
<div className="h-12 w-12 shrink-0 rounded-full bg-primary/10 flex items-center justify-center">
|
|
439
|
+
<ShieldCheck className="h-6 w-6 text-primary" />
|
|
475
440
|
</div>
|
|
476
|
-
<div
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
441
|
+
<div className="flex-1">
|
|
442
|
+
<CardTitle className="text-sm font-semibold">
|
|
443
|
+
{role.name}
|
|
444
|
+
</CardTitle>
|
|
445
|
+
<CardDescription className="text-xs text-muted-foreground">
|
|
446
|
+
{role.slug}
|
|
447
|
+
</CardDescription>
|
|
482
448
|
</div>
|
|
483
449
|
</div>
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
450
|
+
<Button
|
|
451
|
+
variant="outline"
|
|
452
|
+
size="sm"
|
|
453
|
+
onClick={() => handleEdit(role)}
|
|
454
|
+
>
|
|
455
|
+
{t('buttonEditRole')}
|
|
456
|
+
</Button>
|
|
457
|
+
</CardHeader>
|
|
458
|
+
{role.description && (
|
|
459
|
+
<CardContent className="p-0">
|
|
460
|
+
<p className="text-xs text-muted-foreground line-clamp-2">
|
|
461
|
+
{role.description}
|
|
462
|
+
</p>
|
|
463
|
+
<div className="text-xs line-clamp-2 flex gap-2 py-2">
|
|
464
|
+
<div>
|
|
465
|
+
{(role as any).user_count}{' '}
|
|
466
|
+
{(role as any).user_count === 1
|
|
467
|
+
? t('user')
|
|
468
|
+
: t('users')}
|
|
469
|
+
</div>
|
|
470
|
+
<div>•</div>
|
|
471
|
+
<div>
|
|
472
|
+
{(role as any).menu_count}{' '}
|
|
473
|
+
{(role as any).menu_count === 1
|
|
474
|
+
? t('menu')
|
|
475
|
+
: t('menus')}
|
|
476
|
+
</div>
|
|
477
|
+
<div>•</div>
|
|
478
|
+
<div>
|
|
479
|
+
{(role as any).route_count}{' '}
|
|
480
|
+
{(role as any).route_count === 1
|
|
481
|
+
? t('route')
|
|
482
|
+
: t('routes')}
|
|
483
|
+
</div>
|
|
484
|
+
</div>
|
|
485
|
+
</CardContent>
|
|
486
|
+
)}
|
|
487
|
+
</Card>
|
|
488
|
+
)
|
|
489
|
+
)}
|
|
488
490
|
</div>
|
|
489
491
|
)}
|
|
490
492
|
|
|
@@ -41,7 +41,7 @@ import {
|
|
|
41
41
|
import { formatDateTime } from '@/lib/format-date';
|
|
42
42
|
import { getPhotoUrl } from '@/lib/get-photo-url';
|
|
43
43
|
import { getUserEmail } from '@/lib/get-user-email';
|
|
44
|
-
import { PaginatedResult } from '
|
|
44
|
+
import { PaginatedResult } from '@/types/pagination-result';
|
|
45
45
|
import { User, UserMfa } from '@hed-hog/api-types';
|
|
46
46
|
import { useApp, useQuery } from '@hed-hog/next-app-provider';
|
|
47
47
|
import { zodResolver } from '@hookform/resolvers/zod';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.266",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"sharp": "^0.34.2",
|
|
31
31
|
"speakeasy": "^2.0.0",
|
|
32
32
|
"uuid": "^11.1.0",
|
|
33
|
-
"@hed-hog/api-pagination": "0.0.
|
|
34
|
-
"@hed-hog/api-
|
|
35
|
-
"@hed-hog/api-
|
|
36
|
-
"@hed-hog/api-prisma": "0.0.
|
|
33
|
+
"@hed-hog/api-pagination": "0.0.6",
|
|
34
|
+
"@hed-hog/api-mail": "0.0.8",
|
|
35
|
+
"@hed-hog/api-locale": "0.0.13",
|
|
36
|
+
"@hed-hog/api-prisma": "0.0.5",
|
|
37
37
|
"@hed-hog/api-types": "0.0.1",
|
|
38
|
-
"@hed-hog/api": "0.0.
|
|
38
|
+
"@hed-hog/api": "0.0.4"
|
|
39
39
|
},
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|