@carlosdiazz/lottodiz-shared 3.5.3 → 3.5.4
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.
|
@@ -18,13 +18,13 @@ export interface ProcessTicketSaleInterface {
|
|
|
18
18
|
pos: PosInterface;
|
|
19
19
|
pos_user: PosUserInterface;
|
|
20
20
|
}
|
|
21
|
-
export interface
|
|
21
|
+
export interface ProcessTicketPaymentInterface {
|
|
22
22
|
ticket: TicketInterface;
|
|
23
23
|
group: GroupInterface;
|
|
24
24
|
pos: PosInterface;
|
|
25
25
|
pos_user: PosUserInterface;
|
|
26
26
|
}
|
|
27
|
-
export interface
|
|
27
|
+
export interface ProcessTicketCancellationInterface {
|
|
28
28
|
ticket: TicketInterface;
|
|
29
29
|
group: GroupInterface;
|
|
30
30
|
pos: PosInterface;
|
|
@@ -32,6 +32,6 @@ export interface ProcessTicketCancellation {
|
|
|
32
32
|
}
|
|
33
33
|
export interface FinancialTransactionServiceInterface {
|
|
34
34
|
processTickeSale(dto: ProcessTicketSaleInterface): Promise<TicketInterface>;
|
|
35
|
-
processTicketPayment(dto:
|
|
36
|
-
processTicketCancellation(dto:
|
|
35
|
+
processTicketPayment(dto: ProcessTicketPaymentInterface): Promise<TicketInterface>;
|
|
36
|
+
processTicketCancellation(dto: ProcessTicketCancellationInterface): Promise<TicketInterface>;
|
|
37
37
|
}
|