@chevre/factory 4.295.0 → 4.296.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.
|
@@ -2,6 +2,7 @@ import * as surfrock from '@surfrock/sdk';
|
|
|
2
2
|
import * as ActionFactory from '../../../action';
|
|
3
3
|
import { OrganizationType } from '../../../organizationType';
|
|
4
4
|
import { IMovieTicket as IMovieTicketPaymentCard, IServiceOutput as IMovieTicketServiceOutput } from '../../../paymentMethod/paymentCard/movieTicket';
|
|
5
|
+
import { TransactionType } from '../../../transactionType';
|
|
5
6
|
import * as CheckActionFactory from '../../check';
|
|
6
7
|
import * as PayActionFactory from '../../trade/pay';
|
|
7
8
|
export declare type IAgent = ActionFactory.IParticipantAsWebApplication | ActionFactory.IParticipantAsPerson;
|
|
@@ -25,19 +26,21 @@ export interface IResult {
|
|
|
25
26
|
purchaseNumberAuthIn: IPurchaseNumberAuthIn;
|
|
26
27
|
purchaseNumberAuthResult: IPurchaseNumberAuthResult;
|
|
27
28
|
/**
|
|
28
|
-
*
|
|
29
|
+
* 認証結果としてのMovieTicketリスト
|
|
29
30
|
*/
|
|
30
31
|
movieTickets: IMovieTicket[];
|
|
31
32
|
}
|
|
32
33
|
export declare type IError = any;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
export interface IPurpose {
|
|
35
|
+
typeOf: TransactionType;
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
36
38
|
export interface IAttributes extends CheckActionFactory.IAttributes<IObject, IResult> {
|
|
37
39
|
agent: IAgent;
|
|
38
40
|
object: IObject;
|
|
41
|
+
purpose?: IPurpose;
|
|
39
42
|
}
|
|
40
43
|
/**
|
|
41
|
-
*
|
|
44
|
+
* MovieTicket認証アクション
|
|
42
45
|
*/
|
|
43
46
|
export declare type IAction = ActionFactory.IAction<IAttributes>;
|