@riocrypto/common 1.0.2283 → 1.0.2286
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/async-bulk-bank-payout-updated-event.d.ts +9 -0
- package/build/events/async-bulk-bank-payout-updated-event.js +2 -0
- package/build/events/async-bulk-crypto-payout-updated-event.d.ts +9 -0
- package/build/events/async-bulk-crypto-payout-updated-event.js +2 -0
- package/build/events/bulk-bank-payout-updated-event.d.ts +9 -0
- package/build/events/bulk-bank-payout-updated-event.js +2 -0
- package/build/events/bulk-crypto-payout-updated-event.d.ts +9 -0
- package/build/events/bulk-crypto-payout-updated-event.js +2 -0
- package/build/events/subjects.d.ts +4 -0
- package/build/events/subjects.js +4 -0
- package/build/index.d.ts +4 -0
- package/build/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BulkBankPayoutStatus } from "../types/bulk-bank-payout-status";
|
|
2
|
+
import { Subjects } from "./subjects";
|
|
3
|
+
export interface AsyncBulkBankPayoutUpdatedEvent {
|
|
4
|
+
subject: Subjects.AsyncBulkBankPayoutUpdated;
|
|
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 AsyncBulkCryptoPayoutUpdatedEvent {
|
|
4
|
+
subject: Subjects.AsyncBulkCryptoPayoutUpdated;
|
|
5
|
+
data: {
|
|
6
|
+
id: string;
|
|
7
|
+
status: BulkCryptoPayoutStatus;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -78,11 +78,15 @@ export declare enum Subjects {
|
|
|
78
78
|
AsyncBulkBankPaymentCompleted = "asyncBulkBankPayment:completed",
|
|
79
79
|
BulkBankPayoutCompleted = "bulkBankPayout:completed",
|
|
80
80
|
BulkBankPayoutFailed = "bulkBankPayout:failed",
|
|
81
|
+
BulkBankPayoutUpdated = "bulkBankPayout:updated",
|
|
82
|
+
AsyncBulkBankPayoutUpdated = "asyncBulkBankPayout:updated",
|
|
81
83
|
AsyncBulkBankPayoutCompleted = "asyncBulkBankPayout:completed",
|
|
82
84
|
AsyncBulkBankPayoutFailed = "asyncBulkBankPayout:failed",
|
|
83
85
|
BankPaymentProcessing = "bankPayment:processing",
|
|
84
86
|
CryptoPaymentProcessing = "cryptoPayment:processing",
|
|
85
87
|
BulkCryptoPaymentCreated = "bulkCryptoPayment:created",
|
|
88
|
+
AsyncBulkCryptoPayoutUpdated = "asyncBulkCryptoPayout:updated",
|
|
89
|
+
BulkCryptoPayoutUpdated = "bulkCryptoPayout:updated",
|
|
86
90
|
BulkCryptoPaymentCompleted = "bulkCryptoPayment:completed",
|
|
87
91
|
BulkCryptoPayoutCompleted = "bulkCryptoPayout:completed",
|
|
88
92
|
BulkCryptoPayoutFailed = "bulkCryptoPayout:failed",
|
package/build/events/subjects.js
CHANGED
|
@@ -82,11 +82,15 @@ var Subjects;
|
|
|
82
82
|
Subjects["AsyncBulkBankPaymentCompleted"] = "asyncBulkBankPayment:completed";
|
|
83
83
|
Subjects["BulkBankPayoutCompleted"] = "bulkBankPayout:completed";
|
|
84
84
|
Subjects["BulkBankPayoutFailed"] = "bulkBankPayout:failed";
|
|
85
|
+
Subjects["BulkBankPayoutUpdated"] = "bulkBankPayout:updated";
|
|
86
|
+
Subjects["AsyncBulkBankPayoutUpdated"] = "asyncBulkBankPayout:updated";
|
|
85
87
|
Subjects["AsyncBulkBankPayoutCompleted"] = "asyncBulkBankPayout:completed";
|
|
86
88
|
Subjects["AsyncBulkBankPayoutFailed"] = "asyncBulkBankPayout:failed";
|
|
87
89
|
Subjects["BankPaymentProcessing"] = "bankPayment:processing";
|
|
88
90
|
Subjects["CryptoPaymentProcessing"] = "cryptoPayment:processing";
|
|
89
91
|
Subjects["BulkCryptoPaymentCreated"] = "bulkCryptoPayment:created";
|
|
92
|
+
Subjects["AsyncBulkCryptoPayoutUpdated"] = "asyncBulkCryptoPayout:updated";
|
|
93
|
+
Subjects["BulkCryptoPayoutUpdated"] = "bulkCryptoPayout:updated";
|
|
90
94
|
Subjects["BulkCryptoPaymentCompleted"] = "bulkCryptoPayment:completed";
|
|
91
95
|
Subjects["BulkCryptoPayoutCompleted"] = "bulkCryptoPayout:completed";
|
|
92
96
|
Subjects["BulkCryptoPayoutFailed"] = "bulkCryptoPayout:failed";
|
package/build/index.d.ts
CHANGED
|
@@ -206,6 +206,10 @@ export * from "./events/bulk-crypto-payout-failed-event";
|
|
|
206
206
|
export * from "./events/bulk-bank-payout-failed-event";
|
|
207
207
|
export * from "./events/async-bulk-crypto-payout-failed-event";
|
|
208
208
|
export * from "./events/async-bulk-bank-payout-failed-event";
|
|
209
|
+
export * from "./events/bulk-bank-payout-updated-event";
|
|
210
|
+
export * from "./events/bulk-crypto-payout-updated-event";
|
|
211
|
+
export * from "./events/async-bulk-crypto-payout-updated-event";
|
|
212
|
+
export * from "./events/async-bulk-bank-payout-updated-event";
|
|
209
213
|
export * from "./types/auth-payload";
|
|
210
214
|
export * from "./types/admin-auth-payload";
|
|
211
215
|
export * from "./types/admin-auth";
|
package/build/index.js
CHANGED
|
@@ -222,6 +222,10 @@ __exportStar(require("./events/bulk-crypto-payout-failed-event"), exports);
|
|
|
222
222
|
__exportStar(require("./events/bulk-bank-payout-failed-event"), exports);
|
|
223
223
|
__exportStar(require("./events/async-bulk-crypto-payout-failed-event"), exports);
|
|
224
224
|
__exportStar(require("./events/async-bulk-bank-payout-failed-event"), exports);
|
|
225
|
+
__exportStar(require("./events/bulk-bank-payout-updated-event"), exports);
|
|
226
|
+
__exportStar(require("./events/bulk-crypto-payout-updated-event"), exports);
|
|
227
|
+
__exportStar(require("./events/async-bulk-crypto-payout-updated-event"), exports);
|
|
228
|
+
__exportStar(require("./events/async-bulk-bank-payout-updated-event"), exports);
|
|
225
229
|
__exportStar(require("./types/auth-payload"), exports);
|
|
226
230
|
__exportStar(require("./types/admin-auth-payload"), exports);
|
|
227
231
|
__exportStar(require("./types/admin-auth"), exports);
|