Skip to content

Instantly share code, notes, and snippets.

View bicatu's full-sized avatar

Mario Bittencourt bicatu

View GitHub Profile
@bicatu
bicatu / FraudCaseDeclined
Created July 15, 2023 12:25
Event Sourcing
{
number: "aaa-bbb-ccc-ddd",
state: "declined",
score: 1500,
reasonId: 99,
reason: "Shipping address differ from profile"
}
@bicatu
bicatu / FraudCaseReceived.ts
Created July 15, 2023 12:22
State-Carried State
{
number: "aaa-bbb-ccc-ddd",
state: "received",
customerId: "X",
totalAmount: 100.99,
usedPaymentMethod: "CreditCard"
}
@bicatu
bicatu / FraudCaseReceived.ts
Created July 15, 2023 12:01
Fraud Case Received
{
number: "aaa-bbb-ccc-ddd",
state: "received"
}