fix: remove unnecessary currency field from movimentiSchema and report columns
This commit is contained in:
parent
ced51c4111
commit
0d0c72ba1f
1 changed files with 0 additions and 2 deletions
|
|
@ -39,7 +39,6 @@ export const stripeReportsRouter = createTRPCRouter({
|
||||||
columns: [
|
columns: [
|
||||||
"balance_transaction_id",
|
"balance_transaction_id",
|
||||||
"created_utc",
|
"created_utc",
|
||||||
"currency",
|
|
||||||
"customer_email",
|
"customer_email",
|
||||||
"customer_name",
|
"customer_name",
|
||||||
"description",
|
"description",
|
||||||
|
|
@ -190,7 +189,6 @@ export const stripeReportsRouter = createTRPCRouter({
|
||||||
const movimentiSchema = z.object({
|
const movimentiSchema = z.object({
|
||||||
balance_transaction_id: z.string(),
|
balance_transaction_id: z.string(),
|
||||||
created_utc: z.string(),
|
created_utc: z.string(),
|
||||||
currency: z.string(),
|
|
||||||
customer_email: z.email().nullable(),
|
customer_email: z.email().nullable(),
|
||||||
customer_name: z.string().nullable(),
|
customer_name: z.string().nullable(),
|
||||||
description: z.string().nullable(),
|
description: z.string().nullable(),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue