@riocrypto/common-server 1.0.1193 → 1.0.1195
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -53,7 +53,7 @@ declare class BridgeClient {
|
|
|
53
53
|
to_address?: string;
|
|
54
54
|
wire_message?: string;
|
|
55
55
|
};
|
|
56
|
-
state: "
|
|
56
|
+
state: "awaiting_funds" | "funds_received" | "payment_posted" | "error";
|
|
57
57
|
source_deposit_instructions: {
|
|
58
58
|
payment_rail: "ach_push" | "wire" | "avalanche_c_chain" | "ethereum" | "polygon";
|
|
59
59
|
amount: string;
|
|
@@ -87,7 +87,7 @@ declare class BridgeClient {
|
|
|
87
87
|
to_address?: string;
|
|
88
88
|
wire_message?: string;
|
|
89
89
|
};
|
|
90
|
-
state: "
|
|
90
|
+
state: "awaiting_funds" | "funds_received" | "payment_posted" | "error";
|
|
91
91
|
source_deposit_instructions: {
|
|
92
92
|
payment_rail: "ach_push" | "wire" | "avalanche_c_chain" | "ethereum" | "polygon";
|
|
93
93
|
amount: string;
|
|
@@ -120,7 +120,7 @@ declare class BridgeClient {
|
|
|
120
120
|
to_address?: string;
|
|
121
121
|
wire_message?: string;
|
|
122
122
|
};
|
|
123
|
-
state: "
|
|
123
|
+
state: "awaiting_funds" | "funds_received" | "payment_posted" | "error";
|
|
124
124
|
source_deposit_instructions: {
|
|
125
125
|
payment_rail: "ach_push" | "wire" | "avalanche_c_chain" | "ethereum" | "polygon";
|
|
126
126
|
amount: string;
|
|
@@ -160,7 +160,7 @@ declare class BridgeClient {
|
|
|
160
160
|
id: string;
|
|
161
161
|
amount: string;
|
|
162
162
|
currency: string;
|
|
163
|
-
state: "
|
|
163
|
+
state: "funds_received" | "complete";
|
|
164
164
|
created_at: string;
|
|
165
165
|
}[]>;
|
|
166
166
|
createPlaidLinkToken(bridgeCustomerId: string): Promise<{
|