Skip to content

Commit

Permalink
fix: add additional fields (#1915)
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosp1011 authored Jan 30, 2025
1 parent 94f3f2a commit aeb870e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/wallet/backend/src/rafiki/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ const amountSchema = z.object({
const incomingPaymentCompletedSchema = z.object({
id: z.string(),
walletAddressId: z.string(),
client: z.string().optional(),
createdAt: z.string(),
expiresAt: z.string(),
incomingAmount: amountSchema,
incomingAmount: amountSchema.optional(),
receivedAmount: amountSchema,
completed: z.boolean(),
updatedAt: z.string(),
Expand Down

0 comments on commit aeb870e

Please sign in to comment.