Skip to content

Commit

Permalink
feat: copywriting
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Oct 24, 2024
1 parent ec79996 commit 079ec27
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion locales/app/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
20 changes: 20 additions & 0 deletions packages/shared/src/hono.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -4229,6 +4245,7 @@ declare const transactionsOpenAPISchema: zod.ZodObject<{
toListId: zod.ZodNullable<zod.ZodString>;
toEntryId: zod.ZodNullable<zod.ZodString>;
powerToken: zod.ZodString;
tax: zod.ZodString;
createdAt: zod.ZodString;
comment: zod.ZodNullable<zod.ZodString>;
}, zod.UnknownKeysParam, zod.ZodTypeAny, {
Expand All @@ -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";
Expand All @@ -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", {
Expand Down Expand Up @@ -5137,6 +5156,7 @@ declare const _routes: hono_hono_base.HonoBase<Env, {
toFeedId: string | null;
toListId: string | null;
toEntryId: string | null;
tax: string;
comment: string | null;
fromUser?: {
name: string | null;
Expand Down

0 comments on commit 079ec27

Please sign in to comment.