Skip to content

Commit 726b6ed

Browse files
committed
chore(cli): rebuild dist after branch merges
1 parent e6cb08c commit 726b6ed

6 files changed

Lines changed: 14 additions & 4 deletions

File tree

cli/dist/shared/database.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@ export type Database = {
301301
views_count: number;
302302
created_at: string;
303303
updated_at: string;
304+
boosted_at: string | null;
305+
ranked_at: string | null;
304306
};
305307
Insert: {
306308
id?: string;
@@ -324,6 +326,7 @@ export type Database = {
324326
views_count?: number;
325327
created_at?: string;
326328
updated_at?: string;
329+
boosted_at?: string | null;
327330
};
328331
Update: {
329332
id?: string;
@@ -347,6 +350,7 @@ export type Database = {
347350
views_count?: number;
348351
created_at?: string;
349352
updated_at?: string;
353+
boosted_at?: string | null;
350354
};
351355
Relationships: [
352356
{

cli/dist/shared/validations.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export declare const walletAddressSchema: z.ZodObject<{
3030
is_preferred: z.ZodDefault<z.ZodBoolean>;
3131
}, z.core.$strip>;
3232
export declare const profileSchema: z.ZodObject<{
33-
username: z.ZodString;
33+
username: z.ZodOptional<z.ZodString>;
3434
full_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3535
bio: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3636
skills: z.ZodDefault<z.ZodArray<z.ZodString>>;

cli/dist/shared/validations.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/dist/shared/validations.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/src/shared/database.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,8 @@ export type Database = {
306306
views_count: number;
307307
created_at: string;
308308
updated_at: string;
309+
boosted_at: string | null;
310+
ranked_at: string | null;
309311
};
310312
Insert: {
311313
id?: string;
@@ -329,6 +331,7 @@ export type Database = {
329331
views_count?: number;
330332
created_at?: string;
331333
updated_at?: string;
334+
boosted_at?: string | null;
332335
};
333336
Update: {
334337
id?: string;
@@ -352,6 +355,7 @@ export type Database = {
352355
views_count?: number;
353356
created_at?: string;
354357
updated_at?: string;
358+
boosted_at?: string | null;
355359
};
356360
Relationships: [
357361
{

cli/src/shared/validations.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ export const profileSchema = z.object({
8080
.regex(
8181
/^[a-zA-Z0-9_-]+$/,
8282
"Username can only contain letters, numbers, underscores, and hyphens"
83-
),
83+
)
84+
.optional(),
8485
full_name: z.string().max(100).optional().nullable(),
8586
bio: z.string().max(1000).optional().nullable(),
8687
skills: z.array(z.string()).max(20).default([]),

0 commit comments

Comments
 (0)