@chevre/factory 4.208.0 → 4.209.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.
@@ -1,9 +1,7 @@
1
1
  import * as ActionFactory from '../../../action';
2
2
  import { ActionType } from '../../../actionType';
3
3
  import { IPaymentMethod, ISimpleOrder } from '../../../order';
4
- import * as MovieTicketFactory from '../../../paymentMethod/paymentCard/movieTicket';
5
4
  import { IInstrument } from '../../authorize/paymentMethod/any';
6
- export import IMovieTicket = MovieTicketFactory.IMovieTicket;
7
5
  export declare type IAgent = ActionFactory.IParticipant;
8
6
  export declare type IRecipient = ActionFactory.IParticipant;
9
7
  export declare type IPurpose = ISimpleOrder;
@@ -16,22 +14,14 @@ export interface IPaymentService {
16
14
  * 決済方法
17
15
  */
18
16
  paymentMethod: IPaymentMethod;
19
- /**
20
- * ムビチケリスト
21
- */
22
- movieTickets?: IMovieTicket[];
23
17
  }
24
18
  export declare type IObject = IPaymentService[];
25
- export interface IPotentialActions {
26
- }
27
- export interface IResult {
28
- }
19
+ export declare type IResult = any;
29
20
  export interface IAttributes extends ActionFactory.IAttributes<ActionType.ConfirmAction, IObject, IResult> {
30
21
  instrument?: IInstrument;
31
- potentialActions?: IPotentialActions;
32
22
  purpose: IPurpose;
33
23
  }
34
24
  /**
35
- * 決済確定アクションインターフェース
25
+ * 決済確定アクション
36
26
  */
37
27
  export declare type IAction = ActionFactory.IAction<IAttributes>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.208.0",
3
+ "version": "4.209.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",