@chevre/factory 4.188.0-alpha.0 → 4.188.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.
@@ -14,7 +14,7 @@ export declare type IError = any;
14
14
  */
15
15
  export declare enum Reason {
16
16
  /**
17
- * 顧客自身の都合での返品
17
+ * カスタマー都合での返品
18
18
  */
19
19
  Customer = "Customer",
20
20
  /**
@@ -22,16 +22,12 @@ export declare enum Reason {
22
22
  */
23
23
  Seller = "Seller"
24
24
  }
25
+ /**
26
+ * 返品可能な注文インターフェース
27
+ */
25
28
  export interface IReturnableOrder {
26
29
  confirmationNumber: string;
27
30
  orderNumber: string;
28
- /**
29
- * @deprecated Use confirmationNumber + orderNumber
30
- */
31
- customer?: {
32
- email?: string;
33
- telephone?: string;
34
- };
35
31
  }
36
32
  /**
37
33
  * 注文返品開始パラメータインターフェース
@@ -63,10 +59,6 @@ export interface IStartParams extends TransactionFactory.IStartParams<Transactio
63
59
  export declare type IInformOrderParams = IInformParams;
64
60
  export import ICancelReservationObject = ReturnReservationActionFactory.IObject;
65
61
  export import ICancelReservationPotentialActions = ReturnReservationActionFactory.IPotentialActions;
66
- /**
67
- * 予約取消パラメータ
68
- * 廃止済
69
- */
70
62
  declare type ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
71
63
  /**
72
64
  * クレジットカード返金パラメータ
@@ -100,10 +92,6 @@ export interface IReturnOrderActionParams {
100
92
  * 注文返品後アクション
101
93
  */
102
94
  potentialActions?: {
103
- /**
104
- * 予約取消アクション
105
- * 廃止済
106
- */
107
95
  /**
108
96
  * クレジットカード返金アクションについてカスタマイズする場合に指定
109
97
  */
@@ -7,7 +7,7 @@ exports.Reason = void 0;
7
7
  var Reason;
8
8
  (function (Reason) {
9
9
  /**
10
- * 顧客自身の都合での返品
10
+ * カスタマー都合での返品
11
11
  */
12
12
  Reason["Customer"] = "Customer";
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.188.0-alpha.0",
3
+ "version": "4.188.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",