From 2c2091fc7d298a1eb7640da58c027cce896f1567 Mon Sep 17 00:00:00 2001 From: Tomer Vilensky Date: Tue, 15 Jun 2021 19:19:16 +0300 Subject: [PATCH] Make id property optional --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 365edeb1..89740dc1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -90,7 +90,7 @@ export interface TransferPeerPath { interface DestinationTransferPeerPath { type: PeerType; - id: string; + id?: string; virtualId?: string; virtualType?: VirtualType; oneTimeAddress?: IOneTimeAddress;