@seo-console/package 1.0.0

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.
@@ -0,0 +1,329 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { z } from 'zod';
3
+ import * as React from 'react';
4
+
5
+ declare function SEORecordList(): react_jsx_runtime.JSX.Element;
6
+
7
+ declare const seoRecordSchema: z.ZodObject<{
8
+ title: z.ZodOptional<z.ZodString>;
9
+ description: z.ZodOptional<z.ZodString>;
10
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11
+ ogTitle: z.ZodOptional<z.ZodString>;
12
+ ogDescription: z.ZodOptional<z.ZodString>;
13
+ ogImageUrl: z.ZodOptional<z.ZodString>;
14
+ ogImageWidth: z.ZodOptional<z.ZodNumber>;
15
+ ogImageHeight: z.ZodOptional<z.ZodNumber>;
16
+ ogType: z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>;
17
+ ogUrl: z.ZodOptional<z.ZodString>;
18
+ ogSiteName: z.ZodOptional<z.ZodString>;
19
+ twitterCard: z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>;
20
+ twitterTitle: z.ZodOptional<z.ZodString>;
21
+ twitterDescription: z.ZodOptional<z.ZodString>;
22
+ twitterImageUrl: z.ZodOptional<z.ZodString>;
23
+ twitterSite: z.ZodOptional<z.ZodString>;
24
+ twitterCreator: z.ZodOptional<z.ZodString>;
25
+ canonicalUrl: z.ZodOptional<z.ZodString>;
26
+ robots: z.ZodOptional<z.ZodString>;
27
+ author: z.ZodOptional<z.ZodString>;
28
+ publishedTime: z.ZodOptional<z.ZodDate>;
29
+ modifiedTime: z.ZodOptional<z.ZodDate>;
30
+ structuredData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
31
+ } & {
32
+ id: z.ZodOptional<z.ZodString>;
33
+ userId: z.ZodString;
34
+ routePath: z.ZodString;
35
+ validationStatus: z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>;
36
+ lastValidatedAt: z.ZodOptional<z.ZodDate>;
37
+ validationErrors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
38
+ createdAt: z.ZodOptional<z.ZodDate>;
39
+ updatedAt: z.ZodOptional<z.ZodDate>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ userId: string;
42
+ routePath: string;
43
+ title?: string | undefined;
44
+ description?: string | undefined;
45
+ keywords?: string[] | undefined;
46
+ ogTitle?: string | undefined;
47
+ ogDescription?: string | undefined;
48
+ ogImageUrl?: string | undefined;
49
+ ogImageWidth?: number | undefined;
50
+ ogImageHeight?: number | undefined;
51
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
52
+ ogUrl?: string | undefined;
53
+ ogSiteName?: string | undefined;
54
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
55
+ twitterTitle?: string | undefined;
56
+ twitterDescription?: string | undefined;
57
+ twitterImageUrl?: string | undefined;
58
+ twitterSite?: string | undefined;
59
+ twitterCreator?: string | undefined;
60
+ canonicalUrl?: string | undefined;
61
+ robots?: string | undefined;
62
+ author?: string | undefined;
63
+ publishedTime?: Date | undefined;
64
+ modifiedTime?: Date | undefined;
65
+ structuredData?: Record<string, unknown> | undefined;
66
+ id?: string | undefined;
67
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
68
+ lastValidatedAt?: Date | undefined;
69
+ validationErrors?: Record<string, unknown> | undefined;
70
+ createdAt?: Date | undefined;
71
+ updatedAt?: Date | undefined;
72
+ }, {
73
+ userId: string;
74
+ routePath: string;
75
+ title?: string | undefined;
76
+ description?: string | undefined;
77
+ keywords?: string[] | undefined;
78
+ ogTitle?: string | undefined;
79
+ ogDescription?: string | undefined;
80
+ ogImageUrl?: string | undefined;
81
+ ogImageWidth?: number | undefined;
82
+ ogImageHeight?: number | undefined;
83
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
84
+ ogUrl?: string | undefined;
85
+ ogSiteName?: string | undefined;
86
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
87
+ twitterTitle?: string | undefined;
88
+ twitterDescription?: string | undefined;
89
+ twitterImageUrl?: string | undefined;
90
+ twitterSite?: string | undefined;
91
+ twitterCreator?: string | undefined;
92
+ canonicalUrl?: string | undefined;
93
+ robots?: string | undefined;
94
+ author?: string | undefined;
95
+ publishedTime?: Date | undefined;
96
+ modifiedTime?: Date | undefined;
97
+ structuredData?: Record<string, unknown> | undefined;
98
+ id?: string | undefined;
99
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
100
+ lastValidatedAt?: Date | undefined;
101
+ validationErrors?: Record<string, unknown> | undefined;
102
+ createdAt?: Date | undefined;
103
+ updatedAt?: Date | undefined;
104
+ }>;
105
+ declare const createSEORecordSchema: z.ZodObject<Omit<{
106
+ title: z.ZodOptional<z.ZodString>;
107
+ description: z.ZodOptional<z.ZodString>;
108
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
109
+ ogTitle: z.ZodOptional<z.ZodString>;
110
+ ogDescription: z.ZodOptional<z.ZodString>;
111
+ ogImageUrl: z.ZodOptional<z.ZodString>;
112
+ ogImageWidth: z.ZodOptional<z.ZodNumber>;
113
+ ogImageHeight: z.ZodOptional<z.ZodNumber>;
114
+ ogType: z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>;
115
+ ogUrl: z.ZodOptional<z.ZodString>;
116
+ ogSiteName: z.ZodOptional<z.ZodString>;
117
+ twitterCard: z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>;
118
+ twitterTitle: z.ZodOptional<z.ZodString>;
119
+ twitterDescription: z.ZodOptional<z.ZodString>;
120
+ twitterImageUrl: z.ZodOptional<z.ZodString>;
121
+ twitterSite: z.ZodOptional<z.ZodString>;
122
+ twitterCreator: z.ZodOptional<z.ZodString>;
123
+ canonicalUrl: z.ZodOptional<z.ZodString>;
124
+ robots: z.ZodOptional<z.ZodString>;
125
+ author: z.ZodOptional<z.ZodString>;
126
+ publishedTime: z.ZodOptional<z.ZodDate>;
127
+ modifiedTime: z.ZodOptional<z.ZodDate>;
128
+ structuredData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
129
+ } & {
130
+ id: z.ZodOptional<z.ZodString>;
131
+ userId: z.ZodString;
132
+ routePath: z.ZodString;
133
+ validationStatus: z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>;
134
+ lastValidatedAt: z.ZodOptional<z.ZodDate>;
135
+ validationErrors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
136
+ createdAt: z.ZodOptional<z.ZodDate>;
137
+ updatedAt: z.ZodOptional<z.ZodDate>;
138
+ }, "id" | "validationStatus" | "lastValidatedAt" | "validationErrors" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
139
+ userId: string;
140
+ routePath: string;
141
+ title?: string | undefined;
142
+ description?: string | undefined;
143
+ keywords?: string[] | undefined;
144
+ ogTitle?: string | undefined;
145
+ ogDescription?: string | undefined;
146
+ ogImageUrl?: string | undefined;
147
+ ogImageWidth?: number | undefined;
148
+ ogImageHeight?: number | undefined;
149
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
150
+ ogUrl?: string | undefined;
151
+ ogSiteName?: string | undefined;
152
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
153
+ twitterTitle?: string | undefined;
154
+ twitterDescription?: string | undefined;
155
+ twitterImageUrl?: string | undefined;
156
+ twitterSite?: string | undefined;
157
+ twitterCreator?: string | undefined;
158
+ canonicalUrl?: string | undefined;
159
+ robots?: string | undefined;
160
+ author?: string | undefined;
161
+ publishedTime?: Date | undefined;
162
+ modifiedTime?: Date | undefined;
163
+ structuredData?: Record<string, unknown> | undefined;
164
+ }, {
165
+ userId: string;
166
+ routePath: string;
167
+ title?: string | undefined;
168
+ description?: string | undefined;
169
+ keywords?: string[] | undefined;
170
+ ogTitle?: string | undefined;
171
+ ogDescription?: string | undefined;
172
+ ogImageUrl?: string | undefined;
173
+ ogImageWidth?: number | undefined;
174
+ ogImageHeight?: number | undefined;
175
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
176
+ ogUrl?: string | undefined;
177
+ ogSiteName?: string | undefined;
178
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
179
+ twitterTitle?: string | undefined;
180
+ twitterDescription?: string | undefined;
181
+ twitterImageUrl?: string | undefined;
182
+ twitterSite?: string | undefined;
183
+ twitterCreator?: string | undefined;
184
+ canonicalUrl?: string | undefined;
185
+ robots?: string | undefined;
186
+ author?: string | undefined;
187
+ publishedTime?: Date | undefined;
188
+ modifiedTime?: Date | undefined;
189
+ structuredData?: Record<string, unknown> | undefined;
190
+ }>;
191
+ declare const updateSEORecordSchema: z.ZodObject<Omit<{
192
+ title: z.ZodOptional<z.ZodOptional<z.ZodString>>;
193
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
194
+ keywords: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
195
+ ogTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
196
+ ogDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
197
+ ogImageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
198
+ ogImageWidth: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
199
+ ogImageHeight: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
200
+ ogType: z.ZodOptional<z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>>;
201
+ ogUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
202
+ ogSiteName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
203
+ twitterCard: z.ZodOptional<z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>>;
204
+ twitterTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
205
+ twitterDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
206
+ twitterImageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
207
+ twitterSite: z.ZodOptional<z.ZodOptional<z.ZodString>>;
208
+ twitterCreator: z.ZodOptional<z.ZodOptional<z.ZodString>>;
209
+ canonicalUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
210
+ robots: z.ZodOptional<z.ZodOptional<z.ZodString>>;
211
+ author: z.ZodOptional<z.ZodOptional<z.ZodString>>;
212
+ publishedTime: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
213
+ modifiedTime: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
214
+ structuredData: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
215
+ id: z.ZodString;
216
+ userId: z.ZodOptional<z.ZodString>;
217
+ routePath: z.ZodOptional<z.ZodString>;
218
+ validationStatus: z.ZodOptional<z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>>;
219
+ lastValidatedAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
220
+ validationErrors: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
221
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
222
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
223
+ }, "userId" | "createdAt">, "strip", z.ZodTypeAny, {
224
+ id: string;
225
+ title?: string | undefined;
226
+ description?: string | undefined;
227
+ keywords?: string[] | undefined;
228
+ ogTitle?: string | undefined;
229
+ ogDescription?: string | undefined;
230
+ ogImageUrl?: string | undefined;
231
+ ogImageWidth?: number | undefined;
232
+ ogImageHeight?: number | undefined;
233
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
234
+ ogUrl?: string | undefined;
235
+ ogSiteName?: string | undefined;
236
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
237
+ twitterTitle?: string | undefined;
238
+ twitterDescription?: string | undefined;
239
+ twitterImageUrl?: string | undefined;
240
+ twitterSite?: string | undefined;
241
+ twitterCreator?: string | undefined;
242
+ canonicalUrl?: string | undefined;
243
+ robots?: string | undefined;
244
+ author?: string | undefined;
245
+ publishedTime?: Date | undefined;
246
+ modifiedTime?: Date | undefined;
247
+ structuredData?: Record<string, unknown> | undefined;
248
+ routePath?: string | undefined;
249
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
250
+ lastValidatedAt?: Date | undefined;
251
+ validationErrors?: Record<string, unknown> | undefined;
252
+ updatedAt?: Date | undefined;
253
+ }, {
254
+ id: string;
255
+ title?: string | undefined;
256
+ description?: string | undefined;
257
+ keywords?: string[] | undefined;
258
+ ogTitle?: string | undefined;
259
+ ogDescription?: string | undefined;
260
+ ogImageUrl?: string | undefined;
261
+ ogImageWidth?: number | undefined;
262
+ ogImageHeight?: number | undefined;
263
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
264
+ ogUrl?: string | undefined;
265
+ ogSiteName?: string | undefined;
266
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
267
+ twitterTitle?: string | undefined;
268
+ twitterDescription?: string | undefined;
269
+ twitterImageUrl?: string | undefined;
270
+ twitterSite?: string | undefined;
271
+ twitterCreator?: string | undefined;
272
+ canonicalUrl?: string | undefined;
273
+ robots?: string | undefined;
274
+ author?: string | undefined;
275
+ publishedTime?: Date | undefined;
276
+ modifiedTime?: Date | undefined;
277
+ structuredData?: Record<string, unknown> | undefined;
278
+ routePath?: string | undefined;
279
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
280
+ lastValidatedAt?: Date | undefined;
281
+ validationErrors?: Record<string, unknown> | undefined;
282
+ updatedAt?: Date | undefined;
283
+ }>;
284
+ type SEORecord = z.infer<typeof seoRecordSchema>;
285
+ type CreateSEORecord = z.infer<typeof createSEORecordSchema>;
286
+ type UpdateSEORecord = z.infer<typeof updateSEORecordSchema>;
287
+
288
+ interface SEORecordFormProps {
289
+ record?: SEORecord;
290
+ onSuccess?: () => void;
291
+ onCancel?: () => void;
292
+ }
293
+ declare function SEORecordForm({ record, onSuccess, onCancel }: SEORecordFormProps): react_jsx_runtime.JSX.Element;
294
+
295
+ declare function ValidationDashboard(): react_jsx_runtime.JSX.Element;
296
+
297
+ interface OGImagePreviewProps {
298
+ imageUrl: string;
299
+ expectedWidth?: number;
300
+ expectedHeight?: number;
301
+ title?: string;
302
+ description?: string;
303
+ }
304
+ declare function OGImagePreview({ imageUrl, expectedWidth, expectedHeight, title, description, }: OGImagePreviewProps): react_jsx_runtime.JSX.Element;
305
+
306
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
307
+ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
308
+ size?: "default" | "sm" | "lg" | "icon";
309
+ }
310
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
311
+
312
+ declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
313
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
314
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
315
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
316
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
317
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
318
+
319
+ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
320
+ }
321
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
322
+
323
+ interface SpinnerProps {
324
+ className?: string;
325
+ size?: "sm" | "default" | "lg";
326
+ }
327
+ declare function Spinner({ className, size }: SpinnerProps): react_jsx_runtime.JSX.Element;
328
+
329
+ export { Button as B, type CreateSEORecord as C, Input as I, OGImagePreview as O, type SEORecord as S, type UpdateSEORecord as U, ValidationDashboard as V, SEORecordList as a, SEORecordForm as b, createSEORecordSchema as c, Card as d, CardHeader as e, CardFooter as f, CardTitle as g, CardDescription as h, CardContent as i, Spinner as j, updateSEORecordSchema as u };
@@ -0,0 +1,329 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { z } from 'zod';
3
+ import * as React from 'react';
4
+
5
+ declare function SEORecordList(): react_jsx_runtime.JSX.Element;
6
+
7
+ declare const seoRecordSchema: z.ZodObject<{
8
+ title: z.ZodOptional<z.ZodString>;
9
+ description: z.ZodOptional<z.ZodString>;
10
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11
+ ogTitle: z.ZodOptional<z.ZodString>;
12
+ ogDescription: z.ZodOptional<z.ZodString>;
13
+ ogImageUrl: z.ZodOptional<z.ZodString>;
14
+ ogImageWidth: z.ZodOptional<z.ZodNumber>;
15
+ ogImageHeight: z.ZodOptional<z.ZodNumber>;
16
+ ogType: z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>;
17
+ ogUrl: z.ZodOptional<z.ZodString>;
18
+ ogSiteName: z.ZodOptional<z.ZodString>;
19
+ twitterCard: z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>;
20
+ twitterTitle: z.ZodOptional<z.ZodString>;
21
+ twitterDescription: z.ZodOptional<z.ZodString>;
22
+ twitterImageUrl: z.ZodOptional<z.ZodString>;
23
+ twitterSite: z.ZodOptional<z.ZodString>;
24
+ twitterCreator: z.ZodOptional<z.ZodString>;
25
+ canonicalUrl: z.ZodOptional<z.ZodString>;
26
+ robots: z.ZodOptional<z.ZodString>;
27
+ author: z.ZodOptional<z.ZodString>;
28
+ publishedTime: z.ZodOptional<z.ZodDate>;
29
+ modifiedTime: z.ZodOptional<z.ZodDate>;
30
+ structuredData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
31
+ } & {
32
+ id: z.ZodOptional<z.ZodString>;
33
+ userId: z.ZodString;
34
+ routePath: z.ZodString;
35
+ validationStatus: z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>;
36
+ lastValidatedAt: z.ZodOptional<z.ZodDate>;
37
+ validationErrors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
38
+ createdAt: z.ZodOptional<z.ZodDate>;
39
+ updatedAt: z.ZodOptional<z.ZodDate>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ userId: string;
42
+ routePath: string;
43
+ title?: string | undefined;
44
+ description?: string | undefined;
45
+ keywords?: string[] | undefined;
46
+ ogTitle?: string | undefined;
47
+ ogDescription?: string | undefined;
48
+ ogImageUrl?: string | undefined;
49
+ ogImageWidth?: number | undefined;
50
+ ogImageHeight?: number | undefined;
51
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
52
+ ogUrl?: string | undefined;
53
+ ogSiteName?: string | undefined;
54
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
55
+ twitterTitle?: string | undefined;
56
+ twitterDescription?: string | undefined;
57
+ twitterImageUrl?: string | undefined;
58
+ twitterSite?: string | undefined;
59
+ twitterCreator?: string | undefined;
60
+ canonicalUrl?: string | undefined;
61
+ robots?: string | undefined;
62
+ author?: string | undefined;
63
+ publishedTime?: Date | undefined;
64
+ modifiedTime?: Date | undefined;
65
+ structuredData?: Record<string, unknown> | undefined;
66
+ id?: string | undefined;
67
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
68
+ lastValidatedAt?: Date | undefined;
69
+ validationErrors?: Record<string, unknown> | undefined;
70
+ createdAt?: Date | undefined;
71
+ updatedAt?: Date | undefined;
72
+ }, {
73
+ userId: string;
74
+ routePath: string;
75
+ title?: string | undefined;
76
+ description?: string | undefined;
77
+ keywords?: string[] | undefined;
78
+ ogTitle?: string | undefined;
79
+ ogDescription?: string | undefined;
80
+ ogImageUrl?: string | undefined;
81
+ ogImageWidth?: number | undefined;
82
+ ogImageHeight?: number | undefined;
83
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
84
+ ogUrl?: string | undefined;
85
+ ogSiteName?: string | undefined;
86
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
87
+ twitterTitle?: string | undefined;
88
+ twitterDescription?: string | undefined;
89
+ twitterImageUrl?: string | undefined;
90
+ twitterSite?: string | undefined;
91
+ twitterCreator?: string | undefined;
92
+ canonicalUrl?: string | undefined;
93
+ robots?: string | undefined;
94
+ author?: string | undefined;
95
+ publishedTime?: Date | undefined;
96
+ modifiedTime?: Date | undefined;
97
+ structuredData?: Record<string, unknown> | undefined;
98
+ id?: string | undefined;
99
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
100
+ lastValidatedAt?: Date | undefined;
101
+ validationErrors?: Record<string, unknown> | undefined;
102
+ createdAt?: Date | undefined;
103
+ updatedAt?: Date | undefined;
104
+ }>;
105
+ declare const createSEORecordSchema: z.ZodObject<Omit<{
106
+ title: z.ZodOptional<z.ZodString>;
107
+ description: z.ZodOptional<z.ZodString>;
108
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
109
+ ogTitle: z.ZodOptional<z.ZodString>;
110
+ ogDescription: z.ZodOptional<z.ZodString>;
111
+ ogImageUrl: z.ZodOptional<z.ZodString>;
112
+ ogImageWidth: z.ZodOptional<z.ZodNumber>;
113
+ ogImageHeight: z.ZodOptional<z.ZodNumber>;
114
+ ogType: z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>;
115
+ ogUrl: z.ZodOptional<z.ZodString>;
116
+ ogSiteName: z.ZodOptional<z.ZodString>;
117
+ twitterCard: z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>;
118
+ twitterTitle: z.ZodOptional<z.ZodString>;
119
+ twitterDescription: z.ZodOptional<z.ZodString>;
120
+ twitterImageUrl: z.ZodOptional<z.ZodString>;
121
+ twitterSite: z.ZodOptional<z.ZodString>;
122
+ twitterCreator: z.ZodOptional<z.ZodString>;
123
+ canonicalUrl: z.ZodOptional<z.ZodString>;
124
+ robots: z.ZodOptional<z.ZodString>;
125
+ author: z.ZodOptional<z.ZodString>;
126
+ publishedTime: z.ZodOptional<z.ZodDate>;
127
+ modifiedTime: z.ZodOptional<z.ZodDate>;
128
+ structuredData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
129
+ } & {
130
+ id: z.ZodOptional<z.ZodString>;
131
+ userId: z.ZodString;
132
+ routePath: z.ZodString;
133
+ validationStatus: z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>;
134
+ lastValidatedAt: z.ZodOptional<z.ZodDate>;
135
+ validationErrors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
136
+ createdAt: z.ZodOptional<z.ZodDate>;
137
+ updatedAt: z.ZodOptional<z.ZodDate>;
138
+ }, "id" | "validationStatus" | "lastValidatedAt" | "validationErrors" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
139
+ userId: string;
140
+ routePath: string;
141
+ title?: string | undefined;
142
+ description?: string | undefined;
143
+ keywords?: string[] | undefined;
144
+ ogTitle?: string | undefined;
145
+ ogDescription?: string | undefined;
146
+ ogImageUrl?: string | undefined;
147
+ ogImageWidth?: number | undefined;
148
+ ogImageHeight?: number | undefined;
149
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
150
+ ogUrl?: string | undefined;
151
+ ogSiteName?: string | undefined;
152
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
153
+ twitterTitle?: string | undefined;
154
+ twitterDescription?: string | undefined;
155
+ twitterImageUrl?: string | undefined;
156
+ twitterSite?: string | undefined;
157
+ twitterCreator?: string | undefined;
158
+ canonicalUrl?: string | undefined;
159
+ robots?: string | undefined;
160
+ author?: string | undefined;
161
+ publishedTime?: Date | undefined;
162
+ modifiedTime?: Date | undefined;
163
+ structuredData?: Record<string, unknown> | undefined;
164
+ }, {
165
+ userId: string;
166
+ routePath: string;
167
+ title?: string | undefined;
168
+ description?: string | undefined;
169
+ keywords?: string[] | undefined;
170
+ ogTitle?: string | undefined;
171
+ ogDescription?: string | undefined;
172
+ ogImageUrl?: string | undefined;
173
+ ogImageWidth?: number | undefined;
174
+ ogImageHeight?: number | undefined;
175
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
176
+ ogUrl?: string | undefined;
177
+ ogSiteName?: string | undefined;
178
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
179
+ twitterTitle?: string | undefined;
180
+ twitterDescription?: string | undefined;
181
+ twitterImageUrl?: string | undefined;
182
+ twitterSite?: string | undefined;
183
+ twitterCreator?: string | undefined;
184
+ canonicalUrl?: string | undefined;
185
+ robots?: string | undefined;
186
+ author?: string | undefined;
187
+ publishedTime?: Date | undefined;
188
+ modifiedTime?: Date | undefined;
189
+ structuredData?: Record<string, unknown> | undefined;
190
+ }>;
191
+ declare const updateSEORecordSchema: z.ZodObject<Omit<{
192
+ title: z.ZodOptional<z.ZodOptional<z.ZodString>>;
193
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
194
+ keywords: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
195
+ ogTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
196
+ ogDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
197
+ ogImageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
198
+ ogImageWidth: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
199
+ ogImageHeight: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
200
+ ogType: z.ZodOptional<z.ZodOptional<z.ZodEnum<["website", "article", "product", "book", "profile", "music", "video"]>>>;
201
+ ogUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
202
+ ogSiteName: z.ZodOptional<z.ZodOptional<z.ZodString>>;
203
+ twitterCard: z.ZodOptional<z.ZodOptional<z.ZodEnum<["summary", "summary_large_image", "app", "player"]>>>;
204
+ twitterTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
205
+ twitterDescription: z.ZodOptional<z.ZodOptional<z.ZodString>>;
206
+ twitterImageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
207
+ twitterSite: z.ZodOptional<z.ZodOptional<z.ZodString>>;
208
+ twitterCreator: z.ZodOptional<z.ZodOptional<z.ZodString>>;
209
+ canonicalUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
210
+ robots: z.ZodOptional<z.ZodOptional<z.ZodString>>;
211
+ author: z.ZodOptional<z.ZodOptional<z.ZodString>>;
212
+ publishedTime: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
213
+ modifiedTime: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
214
+ structuredData: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
215
+ id: z.ZodString;
216
+ userId: z.ZodOptional<z.ZodString>;
217
+ routePath: z.ZodOptional<z.ZodString>;
218
+ validationStatus: z.ZodOptional<z.ZodOptional<z.ZodEnum<["pending", "valid", "invalid", "warning"]>>>;
219
+ lastValidatedAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
220
+ validationErrors: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
221
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
222
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodDate>>;
223
+ }, "userId" | "createdAt">, "strip", z.ZodTypeAny, {
224
+ id: string;
225
+ title?: string | undefined;
226
+ description?: string | undefined;
227
+ keywords?: string[] | undefined;
228
+ ogTitle?: string | undefined;
229
+ ogDescription?: string | undefined;
230
+ ogImageUrl?: string | undefined;
231
+ ogImageWidth?: number | undefined;
232
+ ogImageHeight?: number | undefined;
233
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
234
+ ogUrl?: string | undefined;
235
+ ogSiteName?: string | undefined;
236
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
237
+ twitterTitle?: string | undefined;
238
+ twitterDescription?: string | undefined;
239
+ twitterImageUrl?: string | undefined;
240
+ twitterSite?: string | undefined;
241
+ twitterCreator?: string | undefined;
242
+ canonicalUrl?: string | undefined;
243
+ robots?: string | undefined;
244
+ author?: string | undefined;
245
+ publishedTime?: Date | undefined;
246
+ modifiedTime?: Date | undefined;
247
+ structuredData?: Record<string, unknown> | undefined;
248
+ routePath?: string | undefined;
249
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
250
+ lastValidatedAt?: Date | undefined;
251
+ validationErrors?: Record<string, unknown> | undefined;
252
+ updatedAt?: Date | undefined;
253
+ }, {
254
+ id: string;
255
+ title?: string | undefined;
256
+ description?: string | undefined;
257
+ keywords?: string[] | undefined;
258
+ ogTitle?: string | undefined;
259
+ ogDescription?: string | undefined;
260
+ ogImageUrl?: string | undefined;
261
+ ogImageWidth?: number | undefined;
262
+ ogImageHeight?: number | undefined;
263
+ ogType?: "website" | "article" | "product" | "book" | "profile" | "music" | "video" | undefined;
264
+ ogUrl?: string | undefined;
265
+ ogSiteName?: string | undefined;
266
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player" | undefined;
267
+ twitterTitle?: string | undefined;
268
+ twitterDescription?: string | undefined;
269
+ twitterImageUrl?: string | undefined;
270
+ twitterSite?: string | undefined;
271
+ twitterCreator?: string | undefined;
272
+ canonicalUrl?: string | undefined;
273
+ robots?: string | undefined;
274
+ author?: string | undefined;
275
+ publishedTime?: Date | undefined;
276
+ modifiedTime?: Date | undefined;
277
+ structuredData?: Record<string, unknown> | undefined;
278
+ routePath?: string | undefined;
279
+ validationStatus?: "pending" | "valid" | "invalid" | "warning" | undefined;
280
+ lastValidatedAt?: Date | undefined;
281
+ validationErrors?: Record<string, unknown> | undefined;
282
+ updatedAt?: Date | undefined;
283
+ }>;
284
+ type SEORecord = z.infer<typeof seoRecordSchema>;
285
+ type CreateSEORecord = z.infer<typeof createSEORecordSchema>;
286
+ type UpdateSEORecord = z.infer<typeof updateSEORecordSchema>;
287
+
288
+ interface SEORecordFormProps {
289
+ record?: SEORecord;
290
+ onSuccess?: () => void;
291
+ onCancel?: () => void;
292
+ }
293
+ declare function SEORecordForm({ record, onSuccess, onCancel }: SEORecordFormProps): react_jsx_runtime.JSX.Element;
294
+
295
+ declare function ValidationDashboard(): react_jsx_runtime.JSX.Element;
296
+
297
+ interface OGImagePreviewProps {
298
+ imageUrl: string;
299
+ expectedWidth?: number;
300
+ expectedHeight?: number;
301
+ title?: string;
302
+ description?: string;
303
+ }
304
+ declare function OGImagePreview({ imageUrl, expectedWidth, expectedHeight, title, description, }: OGImagePreviewProps): react_jsx_runtime.JSX.Element;
305
+
306
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
307
+ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
308
+ size?: "default" | "sm" | "lg" | "icon";
309
+ }
310
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
311
+
312
+ declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
313
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
314
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
315
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
316
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
317
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
318
+
319
+ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
320
+ }
321
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
322
+
323
+ interface SpinnerProps {
324
+ className?: string;
325
+ size?: "sm" | "default" | "lg";
326
+ }
327
+ declare function Spinner({ className, size }: SpinnerProps): react_jsx_runtime.JSX.Element;
328
+
329
+ export { Button as B, type CreateSEORecord as C, Input as I, OGImagePreview as O, type SEORecord as S, type UpdateSEORecord as U, ValidationDashboard as V, SEORecordList as a, SEORecordForm as b, createSEORecordSchema as c, Card as d, CardHeader as e, CardFooter as f, CardTitle as g, CardDescription as h, CardContent as i, Spinner as j, updateSEORecordSchema as u };