@sendhome/common 1.0.101 → 1.0.103
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/publishers/payment-created-event.d.ts +41 -0
- package/build/events/publishers/payment-created-event.js +2 -0
- package/build/events/publishers/payment-updated-event.d.ts +41 -0
- package/build/events/publishers/payment-updated-event.js +2 -0
- package/build/events/subjects/subjects.d.ts +3 -1
- package/build/events/subjects/subjects.js +3 -0
- package/build/events/types/order-status.d.ts +2 -0
- package/build/events/types/order-status.js +4 -0
- package/build/events/types/payment-status.d.ts +5 -0
- package/build/events/types/payment-status.js +12 -0
- package/build/index.d.ts +4 -0
- package/build/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Subjects } from "../subjects/subjects";
|
|
2
|
+
import { PaymentStatus } from "../types/payment-status";
|
|
3
|
+
import { SendCountry } from "../types/send-country";
|
|
4
|
+
import { ReceiveCountry } from "../types/receive-country";
|
|
5
|
+
interface CardDetails {
|
|
6
|
+
card_number: string;
|
|
7
|
+
expiration_date: string;
|
|
8
|
+
cvv: string;
|
|
9
|
+
}
|
|
10
|
+
interface PaypalDetails {
|
|
11
|
+
email: string;
|
|
12
|
+
}
|
|
13
|
+
interface ApplePayDetails {
|
|
14
|
+
apple_id: string;
|
|
15
|
+
}
|
|
16
|
+
interface BankTransferDetails {
|
|
17
|
+
account_number: string;
|
|
18
|
+
bank_name: string;
|
|
19
|
+
}
|
|
20
|
+
declare type PaymentDetails = CardDetails | PaypalDetails | ApplePayDetails | BankTransferDetails;
|
|
21
|
+
export interface PaymentCreatedEvent {
|
|
22
|
+
subject: Subjects.PaymentCreated;
|
|
23
|
+
data: {
|
|
24
|
+
id: string;
|
|
25
|
+
payment_id: number;
|
|
26
|
+
payment_method: "card" | "paypal" | "applePay" | "bankTransfer";
|
|
27
|
+
amount: number;
|
|
28
|
+
company: string;
|
|
29
|
+
module: string;
|
|
30
|
+
user: string;
|
|
31
|
+
order: string;
|
|
32
|
+
send_country: SendCountry;
|
|
33
|
+
receive_country: ReceiveCountry;
|
|
34
|
+
details: PaymentDetails;
|
|
35
|
+
created_at: Date;
|
|
36
|
+
updated_at: Date;
|
|
37
|
+
status: PaymentStatus;
|
|
38
|
+
version: number;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Subjects } from "../subjects/subjects";
|
|
2
|
+
import { PaymentStatus } from "../types/payment-status";
|
|
3
|
+
import { SendCountry } from "../types/send-country";
|
|
4
|
+
import { ReceiveCountry } from "../types/receive-country";
|
|
5
|
+
interface CardDetails {
|
|
6
|
+
card_number: string;
|
|
7
|
+
expiration_date: string;
|
|
8
|
+
cvv: string;
|
|
9
|
+
}
|
|
10
|
+
interface PaypalDetails {
|
|
11
|
+
email: string;
|
|
12
|
+
}
|
|
13
|
+
interface ApplePayDetails {
|
|
14
|
+
apple_id: string;
|
|
15
|
+
}
|
|
16
|
+
interface BankTransferDetails {
|
|
17
|
+
account_number: string;
|
|
18
|
+
bank_name: string;
|
|
19
|
+
}
|
|
20
|
+
declare type PaymentDetails = CardDetails | PaypalDetails | ApplePayDetails | BankTransferDetails;
|
|
21
|
+
export interface PaymentUpdatedEvent {
|
|
22
|
+
subject: Subjects.PaymentUpdated;
|
|
23
|
+
data: {
|
|
24
|
+
id: string;
|
|
25
|
+
payment_id: number;
|
|
26
|
+
payment_method: "card" | "paypal" | "applePay" | "bankTransfer";
|
|
27
|
+
amount: number;
|
|
28
|
+
company: string;
|
|
29
|
+
module: string;
|
|
30
|
+
user: string;
|
|
31
|
+
order: string;
|
|
32
|
+
send_country: SendCountry;
|
|
33
|
+
receive_country: ReceiveCountry;
|
|
34
|
+
details: PaymentDetails;
|
|
35
|
+
created_at: Date;
|
|
36
|
+
updated_at: Date;
|
|
37
|
+
status: PaymentStatus;
|
|
38
|
+
version: number;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -36,5 +36,7 @@ export declare enum Subjects {
|
|
|
36
36
|
CouponUpdated = "coupon:updated",
|
|
37
37
|
CouponExpired = "coupon:Expired",
|
|
38
38
|
CollectionCreated = "collection:created",
|
|
39
|
-
CollectionUpdated = "collection:updated"
|
|
39
|
+
CollectionUpdated = "collection:updated",
|
|
40
|
+
PaymentCreated = "payment:created",
|
|
41
|
+
PaymentUpdated = "payment:updated"
|
|
40
42
|
}
|
|
@@ -56,4 +56,7 @@ var Subjects;
|
|
|
56
56
|
// Collection
|
|
57
57
|
Subjects["CollectionCreated"] = "collection:created";
|
|
58
58
|
Subjects["CollectionUpdated"] = "collection:updated";
|
|
59
|
+
// Payment
|
|
60
|
+
Subjects["PaymentCreated"] = "payment:created";
|
|
61
|
+
Subjects["PaymentUpdated"] = "payment:updated";
|
|
59
62
|
})(Subjects = exports.Subjects || (exports.Subjects = {}));
|
|
@@ -5,6 +5,10 @@ var OrderStatus;
|
|
|
5
5
|
(function (OrderStatus) {
|
|
6
6
|
// order created
|
|
7
7
|
OrderStatus["Created"] = "created";
|
|
8
|
+
// order payment-pending
|
|
9
|
+
OrderStatus["PaymentPending"] = "paymentPending";
|
|
10
|
+
// order cancel-pending
|
|
11
|
+
OrderStatus["CancelPending"] = "cancelPending";
|
|
8
12
|
// order pending
|
|
9
13
|
OrderStatus["Pending"] = "pending";
|
|
10
14
|
// order declined
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentStatus = void 0;
|
|
4
|
+
var PaymentStatus;
|
|
5
|
+
(function (PaymentStatus) {
|
|
6
|
+
// order pending
|
|
7
|
+
PaymentStatus["Pending"] = "pending";
|
|
8
|
+
// order completed
|
|
9
|
+
PaymentStatus["Completed"] = "completed";
|
|
10
|
+
// order failed
|
|
11
|
+
PaymentStatus["Failed"] = "failed";
|
|
12
|
+
})(PaymentStatus = exports.PaymentStatus || (exports.PaymentStatus = {}));
|
package/build/index.d.ts
CHANGED
|
@@ -40,6 +40,9 @@ export * from './events/publishers/order-expiration-completed';
|
|
|
40
40
|
export * from './events/publishers/order-expiration-event';
|
|
41
41
|
export * from './events/publishers/order-expiration-warning';
|
|
42
42
|
export * from './events/publishers/order-updated-event';
|
|
43
|
+
export * from './events/publishers/payment-created-event';
|
|
44
|
+
export * from './events/publishers/payment-updated-event';
|
|
45
|
+
export * from './events/publishers/order-updated-event';
|
|
43
46
|
export * from './events/publishers/product-created-event';
|
|
44
47
|
export * from './events/publishers/product-updated-event';
|
|
45
48
|
export * from './events/publishers/recipient-created-event';
|
|
@@ -60,6 +63,7 @@ export * from './events/types/coupon-status';
|
|
|
60
63
|
export * from './events/types/media-status';
|
|
61
64
|
export * from './events/types/module-status';
|
|
62
65
|
export * from './events/types/order-status';
|
|
66
|
+
export * from './events/types/payment-status';
|
|
63
67
|
export * from './events/types/product-status';
|
|
64
68
|
export * from './events/types/receive-country';
|
|
65
69
|
export * from './events/types/recipient-status';
|
package/build/index.js
CHANGED
|
@@ -53,6 +53,9 @@ __exportStar(require("./events/publishers/order-expiration-completed"), exports)
|
|
|
53
53
|
__exportStar(require("./events/publishers/order-expiration-event"), exports);
|
|
54
54
|
__exportStar(require("./events/publishers/order-expiration-warning"), exports);
|
|
55
55
|
__exportStar(require("./events/publishers/order-updated-event"), exports);
|
|
56
|
+
__exportStar(require("./events/publishers/payment-created-event"), exports);
|
|
57
|
+
__exportStar(require("./events/publishers/payment-updated-event"), exports);
|
|
58
|
+
__exportStar(require("./events/publishers/order-updated-event"), exports);
|
|
56
59
|
__exportStar(require("./events/publishers/product-created-event"), exports);
|
|
57
60
|
__exportStar(require("./events/publishers/product-updated-event"), exports);
|
|
58
61
|
__exportStar(require("./events/publishers/recipient-created-event"), exports);
|
|
@@ -73,6 +76,7 @@ __exportStar(require("./events/types/coupon-status"), exports);
|
|
|
73
76
|
__exportStar(require("./events/types/media-status"), exports);
|
|
74
77
|
__exportStar(require("./events/types/module-status"), exports);
|
|
75
78
|
__exportStar(require("./events/types/order-status"), exports);
|
|
79
|
+
__exportStar(require("./events/types/payment-status"), exports);
|
|
76
80
|
__exportStar(require("./events/types/product-status"), exports);
|
|
77
81
|
__exportStar(require("./events/types/receive-country"), exports);
|
|
78
82
|
__exportStar(require("./events/types/recipient-status"), exports);
|