@chevre/factory 4.183.0-alpha.1 → 4.183.0-alpha.2

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.
package/CHANGELOG.md CHANGED
@@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
13
13
  - 返品ポリシーを拡張
14
14
  - プロジェクトの返品手数料設定を廃止
15
15
  - プロジェクトの顧客ユーザープール設定を廃止
16
+ - 注文取引確定パラメータを最適化
16
17
 
17
18
  ### Deprecated
18
19
 
@@ -70,9 +70,6 @@ export interface IObject {
70
70
  * 承認アクションリスト
71
71
  */
72
72
  authorizeActions: IAuthorizeAction<IAuthorizeActionAttributes<any, any>>[];
73
- /**
74
- * 注文ステータス変更時イベント
75
- */
76
73
  potentialActions?: {
77
74
  givePointAward?: IGivePointAwardParams[];
78
75
  };
@@ -88,9 +85,6 @@ export interface IStartParamsWithoutDetail {
88
85
  clientUser?: IClientUser;
89
86
  customer?: OrderFactory.ICustomer;
90
87
  passport?: TransactionFactory.IPassportBeforeStart;
91
- /**
92
- * 注文ステータス変更時イベント
93
- */
94
88
  /**
95
89
  * 注文名称
96
90
  */
@@ -132,10 +126,8 @@ export interface IGivePointAwardParams {
132
126
  export interface IPotentialActionsParams {
133
127
  order?: {
134
128
  potentialActions?: {
135
- givePointAward?: IGivePointAwardParams[];
136
129
  sendOrder?: {
137
130
  potentialActions?: {
138
- confirmReservation?: IConfirmReservationParams[];
139
131
  sendEmailMessage?: ISendEmailMessageParams[];
140
132
  };
141
133
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.183.0-alpha.1",
3
+ "version": "4.183.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",