@riocrypto/common 1.0.524 → 1.0.526
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.
|
@@ -245,7 +245,7 @@ class RioClient {
|
|
|
245
245
|
}
|
|
246
246
|
createSPIDPayment(orderId) {
|
|
247
247
|
return __awaiter(this, void 0, void 0, function* () {
|
|
248
|
-
const { data } = yield this.axios.post(`/api/payments/bank/spid`, {
|
|
248
|
+
const { data } = yield this.axios.post(`/api/payments/bank/init/spid`, {
|
|
249
249
|
orderId,
|
|
250
250
|
});
|
|
251
251
|
return data;
|
package/build/index.d.ts
CHANGED
|
@@ -103,7 +103,6 @@ export * from "./types/order-input";
|
|
|
103
103
|
export * from "./types/quote";
|
|
104
104
|
export * from "./types/fees";
|
|
105
105
|
export * from "./types/user-update";
|
|
106
|
-
export * from "./types/wyre-webhook-notification";
|
|
107
106
|
export * from "./types/wyre-payment-method";
|
|
108
107
|
export * from "./types/partner";
|
|
109
108
|
export * from "./types/partner-auth";
|
package/build/index.js
CHANGED
|
@@ -119,7 +119,6 @@ __exportStar(require("./types/order-input"), exports);
|
|
|
119
119
|
__exportStar(require("./types/quote"), exports);
|
|
120
120
|
__exportStar(require("./types/fees"), exports);
|
|
121
121
|
__exportStar(require("./types/user-update"), exports);
|
|
122
|
-
__exportStar(require("./types/wyre-webhook-notification"), exports);
|
|
123
122
|
__exportStar(require("./types/wyre-payment-method"), exports);
|
|
124
123
|
__exportStar(require("./types/partner"), exports);
|
|
125
124
|
__exportStar(require("./types/partner-auth"), exports);
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { WyreOrderStatus } from "./wyre-order-status";
|
|
2
|
-
export interface WyreWebhookNotification {
|
|
3
|
-
referenceId?: string;
|
|
4
|
-
accountId: string;
|
|
5
|
-
orderId: string;
|
|
6
|
-
orderStatus: WyreOrderStatus;
|
|
7
|
-
transferId: string;
|
|
8
|
-
failedReason?: string;
|
|
9
|
-
error?: string;
|
|
10
|
-
reservation: string;
|
|
11
|
-
email: string;
|
|
12
|
-
}
|