@chevre/factory 4.366.0-alpha.2 → 4.366.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.
@@ -83,6 +83,7 @@ export interface IAccountsReceivableByServiceType {
83
83
  serviceType: string;
84
84
  accountsReceivable?: number;
85
85
  }
86
+ export type IPayActionInObject = Pick<IPayAction, 'actionStatus' | 'id' | 'typeOf'>;
86
87
  /**
87
88
  * 取引対象物
88
89
  */
@@ -95,14 +96,17 @@ export interface IObject {
95
96
  */
96
97
  id: string;
97
98
  paymentMethod: IPaymentMethod;
99
+ onPaymentStatusChanged?: IOnPaymentStatusChanged;
98
100
  pendingTransaction?: IPendingTransaction;
99
101
  entryTranArgs?: IEntryTranArgs;
100
102
  entryTranResult?: IEntryTranResult;
101
103
  execTranArgs?: IExecTranArgs | IExecTran3dsArgs;
102
104
  execTranResult?: IExecTranResult | IExecTran3dsResult;
103
105
  secureTran2Result?: ISecureTran2Result;
104
- payAction?: IPayAction;
105
- onPaymentStatusChanged?: IOnPaymentStatusChanged;
106
+ /**
107
+ * PaymentServiceType.MovieTicketの場合、着券アクション
108
+ */
109
+ payAction?: IPayActionInObject;
106
110
  accountsReceivablesByServiceType?: IAccountsReceivableByServiceType[];
107
111
  }
108
112
  export interface IPaymentMethodWithoutDetail extends IPaymentMethod {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.366.0-alpha.2",
3
+ "version": "4.366.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",