@chevre/factory 4.362.0 → 4.363.0-alpha.0
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.
|
@@ -8,10 +8,13 @@ import * as PayActionFactory from '../../trade/pay';
|
|
|
8
8
|
export type IAgent = ActionFactory.IParticipantAsWebApplication | ActionFactory.IParticipantAsPerson;
|
|
9
9
|
export type IPurchaseNumberAuthIn = surfrock.service.auth.factory.IPurchaseNumberAuthIn;
|
|
10
10
|
export type IPurchaseNumberAuthResult = surfrock.service.auth.factory.IPurchaseNumberAuthResult;
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* 認証対象のmovieTicket
|
|
13
|
+
*/
|
|
14
|
+
export type IMovieTicket = Pick<IMovieTicketPaymentCard, 'accessCode' | 'category' | 'identifier'> & {
|
|
12
15
|
serviceOutput: Pick<IMovieTicketServiceOutput, 'reservationFor'>;
|
|
13
16
|
};
|
|
14
|
-
export interface IPaymentService extends Pick<PayActionFactory.IPaymentService, 'id' | 'typeOf'
|
|
17
|
+
export interface IPaymentService extends Pick<PayActionFactory.IPaymentService, 'id' | 'typeOf'> {
|
|
15
18
|
/**
|
|
16
19
|
* 販売者
|
|
17
20
|
*/
|
|
@@ -20,6 +23,12 @@ export interface IPaymentService extends Pick<PayActionFactory.IPaymentService,
|
|
|
20
23
|
id: string;
|
|
21
24
|
};
|
|
22
25
|
movieTickets?: IMovieTicket[];
|
|
26
|
+
paymentMethod: {
|
|
27
|
+
/**
|
|
28
|
+
* 決済方法区分
|
|
29
|
+
*/
|
|
30
|
+
typeOf: string;
|
|
31
|
+
};
|
|
23
32
|
}
|
|
24
33
|
export type IObject = IPaymentService[];
|
|
25
34
|
export interface IResult {
|