diff --git a/locales/app/en.json b/locales/app/en.json index 552b9af7d0..55cbe5d564 100644 --- a/locales/app/en.json +++ b/locales/app/en.json @@ -18,7 +18,7 @@ "achievement.product_hunt_vote": "Product Hunt Upvoter", "achievement.product_hunt_vote_description": "You supported Follow on Product Hunt", "activation.activate": "Activate", - "activation.description": "During the public beta phase, current feature is limited for inactive users.", + "activation.description": "During the public testing phase, you need an invitation code to use this feature.", "activation.title": "Invitation Code", "ai_daily.header": "AI Daily Report", "ai_daily.no_found": "No AI news found for this period.", diff --git a/packages/shared/src/hono.ts b/packages/shared/src/hono.ts index beeacd322f..14fc77962a 100644 --- a/packages/shared/src/hono.ts +++ b/packages/shared/src/hono.ts @@ -4185,6 +4185,22 @@ declare const transactions: drizzle_orm_pg_core.PgTableWithColumns<{ baseColumn: never; generated: undefined; }, {}, {}>; + tax: drizzle_orm_pg_core.PgColumn<{ + name: "tax"; + tableName: "transactions"; + dataType: "string"; + columnType: "PgNumeric"; + data: string; + driverParam: string; + notNull: true; + hasDefault: true; + isPrimaryKey: false; + isAutoincrement: false; + hasRuntimeDefault: false; + enumValues: undefined; + baseColumn: never; + generated: undefined; + }, {}, {}>; createdAt: drizzle_orm_pg_core.PgColumn<{ name: "created_at"; tableName: "transactions"; @@ -4229,6 +4245,7 @@ declare const transactionsOpenAPISchema: zod.ZodObject<{ toListId: zod.ZodNullable; toEntryId: zod.ZodNullable; powerToken: zod.ZodString; + tax: zod.ZodString; createdAt: zod.ZodString; comment: zod.ZodNullable; }, zod.UnknownKeysParam, zod.ZodTypeAny, { @@ -4241,6 +4258,7 @@ declare const transactionsOpenAPISchema: zod.ZodObject<{ toFeedId: string | null; toListId: string | null; toEntryId: string | null; + tax: string; comment: string | null; }, { type: "tip" | "mint" | "burn" | "withdraw" | "purchase"; @@ -4252,6 +4270,7 @@ declare const transactionsOpenAPISchema: zod.ZodObject<{ toFeedId: string | null; toListId: string | null; toEntryId: string | null; + tax: string; comment: string | null; }>; declare const transactionsRelations: drizzle_orm.Relations<"transactions", { @@ -5137,6 +5156,7 @@ declare const _routes: hono_hono_base.HonoBase