@chevre/factory 4.374.0-alpha.6 → 4.374.0-alpha.7

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,12 +1,12 @@
1
1
  import { IEntryTranArgs, IEntryTranResult, IExecTran3dsResult, IExecTranArgs, IExecTranResult } from '../assetTransaction/pay';
2
2
  import * as RecipeFactory from '../recipe';
3
3
  export interface IDirectionEntryTran extends RecipeFactory.IHowToDirection {
4
- beforeMedia: IEntryTranArgs;
5
- afterMedia: IEntryTranResult;
4
+ beforeMedia?: IEntryTranArgs;
5
+ afterMedia?: IEntryTranResult;
6
6
  }
7
7
  export interface IDirectionExecTran extends RecipeFactory.IHowToDirection {
8
- beforeMedia: IExecTranArgs;
9
- afterMedia: IExecTranResult | IExecTran3dsResult;
8
+ beforeMedia?: IExecTranArgs;
9
+ afterMedia?: IExecTranResult | IExecTran3dsResult;
10
10
  }
11
11
  export interface IStepEntryTran extends RecipeFactory.IHowToStep {
12
12
  identifier: RecipeFactory.StepIdentifier.entryTran;
@@ -55,7 +55,7 @@ export interface IObject {
55
55
  */
56
56
  name?: string;
57
57
  /**
58
- * 外部ロケーションでの決済情報
58
+ * 決済URLでの決済情報
59
59
  */
60
60
  paymentMethods?: IPaymentMethodByPaymentUrl;
61
61
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.374.0-alpha.6",
3
+ "version": "4.374.0-alpha.7",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",