@riocrypto/common 1.0.2282 → 1.0.2284
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.
- package/build/events/bulk-bank-payout-updated-event.d.ts +9 -0
- package/build/events/bulk-crypto-payout-updated-event.d.ts +9 -0
- package/build/events/subjects.d.ts +2 -4
- package/build/events/subjects.js +2 -4
- package/build/index.d.ts +0 -4
- package/build/index.js +0 -4
- package/build/types/bulk-bank-payout.d.ts +2 -0
- package/package.json +1 -1
- package/build/events/bulk-bank-payout-completed-event.d.ts +0 -7
- package/build/events/bulk-bank-payout-failed-event.d.ts +0 -7
- package/build/events/bulk-crypto-payout-completed-event.d.ts +0 -7
- package/build/events/bulk-crypto-payout-completed-event.js +0 -2
- package/build/events/bulk-crypto-payout-failed-event.d.ts +0 -7
- package/build/events/bulk-crypto-payout-failed-event.js +0 -2
- /package/build/events/{bulk-bank-payout-completed-event.js → bulk-bank-payout-updated-event.js} +0 -0
- /package/build/events/{bulk-bank-payout-failed-event.js → bulk-crypto-payout-updated-event.js} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BulkBankPayoutStatus } from "../types/bulk-bank-payout-status";
|
|
2
|
+
import { Subjects } from "./subjects";
|
|
3
|
+
export interface BulkBankPayoutUpdatedEvent {
|
|
4
|
+
subject: Subjects.BulkBankPayoutUpdated;
|
|
5
|
+
data: {
|
|
6
|
+
id: string;
|
|
7
|
+
status: BulkBankPayoutStatus;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BulkCryptoPayoutStatus } from "../types/bulk-crypto-payout-status";
|
|
2
|
+
import { Subjects } from "./subjects";
|
|
3
|
+
export interface BulkCryptoPayoutUpdatedEvent {
|
|
4
|
+
subject: Subjects.BulkCryptoPayoutUpdated;
|
|
5
|
+
data: {
|
|
6
|
+
id: string;
|
|
7
|
+
status: BulkCryptoPayoutStatus;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
@@ -76,16 +76,14 @@ export declare enum Subjects {
|
|
|
76
76
|
BulkBankPaymentCancelled = "bulkBankPayment:cancelled",
|
|
77
77
|
BulkBankPaymentCompleted = "bulkBankPayment:completed",
|
|
78
78
|
AsyncBulkBankPaymentCompleted = "asyncBulkBankPayment:completed",
|
|
79
|
-
|
|
80
|
-
BulkBankPayoutFailed = "bulkBankPayout:failed",
|
|
79
|
+
BulkBankPayoutUpdated = "bulkBankPayout:updated",
|
|
81
80
|
AsyncBulkBankPayoutCompleted = "asyncBulkBankPayout:completed",
|
|
82
81
|
AsyncBulkBankPayoutFailed = "asyncBulkBankPayout:failed",
|
|
83
82
|
BankPaymentProcessing = "bankPayment:processing",
|
|
84
83
|
CryptoPaymentProcessing = "cryptoPayment:processing",
|
|
85
84
|
BulkCryptoPaymentCreated = "bulkCryptoPayment:created",
|
|
86
85
|
BulkCryptoPaymentCompleted = "bulkCryptoPayment:completed",
|
|
87
|
-
|
|
88
|
-
BulkCryptoPayoutFailed = "bulkCryptoPayout:failed",
|
|
86
|
+
BulkCryptoPayoutUpdated = "bulkCryptoPayout:updated",
|
|
89
87
|
AsyncBulkCryptoPayoutCompleted = "asyncBulkCryptoPayout:completed",
|
|
90
88
|
AsyncBulkCryptoPayoutFailed = "asyncBulkCryptoPayout:failed",
|
|
91
89
|
BulkCryptoPaymentCancelled = "bulkCryptoPayment:cancelled",
|
package/build/events/subjects.js
CHANGED
|
@@ -80,16 +80,14 @@ var Subjects;
|
|
|
80
80
|
Subjects["BulkBankPaymentCancelled"] = "bulkBankPayment:cancelled";
|
|
81
81
|
Subjects["BulkBankPaymentCompleted"] = "bulkBankPayment:completed";
|
|
82
82
|
Subjects["AsyncBulkBankPaymentCompleted"] = "asyncBulkBankPayment:completed";
|
|
83
|
-
Subjects["
|
|
84
|
-
Subjects["BulkBankPayoutFailed"] = "bulkBankPayout:failed";
|
|
83
|
+
Subjects["BulkBankPayoutUpdated"] = "bulkBankPayout:updated";
|
|
85
84
|
Subjects["AsyncBulkBankPayoutCompleted"] = "asyncBulkBankPayout:completed";
|
|
86
85
|
Subjects["AsyncBulkBankPayoutFailed"] = "asyncBulkBankPayout:failed";
|
|
87
86
|
Subjects["BankPaymentProcessing"] = "bankPayment:processing";
|
|
88
87
|
Subjects["CryptoPaymentProcessing"] = "cryptoPayment:processing";
|
|
89
88
|
Subjects["BulkCryptoPaymentCreated"] = "bulkCryptoPayment:created";
|
|
90
89
|
Subjects["BulkCryptoPaymentCompleted"] = "bulkCryptoPayment:completed";
|
|
91
|
-
Subjects["
|
|
92
|
-
Subjects["BulkCryptoPayoutFailed"] = "bulkCryptoPayout:failed";
|
|
90
|
+
Subjects["BulkCryptoPayoutUpdated"] = "bulkCryptoPayout:updated";
|
|
93
91
|
Subjects["AsyncBulkCryptoPayoutCompleted"] = "asyncBulkCryptoPayout:completed";
|
|
94
92
|
Subjects["AsyncBulkCryptoPayoutFailed"] = "asyncBulkCryptoPayout:failed";
|
|
95
93
|
Subjects["BulkCryptoPaymentCancelled"] = "bulkCryptoPayment:cancelled";
|
package/build/index.d.ts
CHANGED
|
@@ -195,15 +195,11 @@ export * from "./events/crypto-address-two-factor-verification-complete-event";
|
|
|
195
195
|
export * from "./events/crypto-address-created-event";
|
|
196
196
|
export * from "./events/bulk-crypto-payment-completed-event";
|
|
197
197
|
export * from "./events/bulk-bank-payment-completed-event";
|
|
198
|
-
export * from "./events/bulk-crypto-payout-completed-event";
|
|
199
|
-
export * from "./events/bulk-bank-payout-completed-event";
|
|
200
198
|
export * from "./events/async-bulk-bank-payment-completed-event";
|
|
201
199
|
export * from "./events/async-bulk-crypto-payment-completed-event";
|
|
202
200
|
export * from "./events/async-bulk-bank-payout-completed-event";
|
|
203
201
|
export * from "./events/async-bulk-crypto-payout-completed-event";
|
|
204
202
|
export * from "./events/twap-settlement-updated-event";
|
|
205
|
-
export * from "./events/bulk-crypto-payout-failed-event";
|
|
206
|
-
export * from "./events/bulk-bank-payout-failed-event";
|
|
207
203
|
export * from "./events/async-bulk-crypto-payout-failed-event";
|
|
208
204
|
export * from "./events/async-bulk-bank-payout-failed-event";
|
|
209
205
|
export * from "./types/auth-payload";
|
package/build/index.js
CHANGED
|
@@ -211,15 +211,11 @@ __exportStar(require("./events/crypto-address-two-factor-verification-complete-e
|
|
|
211
211
|
__exportStar(require("./events/crypto-address-created-event"), exports);
|
|
212
212
|
__exportStar(require("./events/bulk-crypto-payment-completed-event"), exports);
|
|
213
213
|
__exportStar(require("./events/bulk-bank-payment-completed-event"), exports);
|
|
214
|
-
__exportStar(require("./events/bulk-crypto-payout-completed-event"), exports);
|
|
215
|
-
__exportStar(require("./events/bulk-bank-payout-completed-event"), exports);
|
|
216
214
|
__exportStar(require("./events/async-bulk-bank-payment-completed-event"), exports);
|
|
217
215
|
__exportStar(require("./events/async-bulk-crypto-payment-completed-event"), exports);
|
|
218
216
|
__exportStar(require("./events/async-bulk-bank-payout-completed-event"), exports);
|
|
219
217
|
__exportStar(require("./events/async-bulk-crypto-payout-completed-event"), exports);
|
|
220
218
|
__exportStar(require("./events/twap-settlement-updated-event"), exports);
|
|
221
|
-
__exportStar(require("./events/bulk-crypto-payout-failed-event"), exports);
|
|
222
|
-
__exportStar(require("./events/bulk-bank-payout-failed-event"), exports);
|
|
223
219
|
__exportStar(require("./events/async-bulk-crypto-payout-failed-event"), exports);
|
|
224
220
|
__exportStar(require("./events/async-bulk-bank-payout-failed-event"), exports);
|
|
225
221
|
__exportStar(require("./types/auth-payload"), exports);
|
|
@@ -2,6 +2,7 @@ import { BulkBankPayoutStatus } from "./bulk-bank-payout-status";
|
|
|
2
2
|
import { Country } from "./country";
|
|
3
3
|
import { DeferredPaymentType } from "./deferred-payment-type";
|
|
4
4
|
import { Fiat } from "./fiat";
|
|
5
|
+
import { Processor } from "./processor";
|
|
5
6
|
export interface BulkBankPayout {
|
|
6
7
|
id: string;
|
|
7
8
|
createdAt: Date;
|
|
@@ -10,6 +11,7 @@ export interface BulkBankPayout {
|
|
|
10
11
|
amount: number;
|
|
11
12
|
fiat: Fiat;
|
|
12
13
|
country: Country;
|
|
14
|
+
processor: Processor;
|
|
13
15
|
deferredPaymentType: DeferredPaymentType;
|
|
14
16
|
payoutBankAccountId?: string;
|
|
15
17
|
bankName?: string;
|
package/package.json
CHANGED
/package/build/events/{bulk-bank-payout-completed-event.js → bulk-bank-payout-updated-event.js}
RENAMED
|
File without changes
|
/package/build/events/{bulk-bank-payout-failed-event.js → bulk-crypto-payout-updated-event.js}
RENAMED
|
File without changes
|