@chevre/factory 4.327.0-alpha.5 → 4.327.0-alpha.6

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.
@@ -125,7 +125,7 @@ export interface IResult {
125
125
  * 決済ステータス
126
126
  * 注文に連携(2023-08-23~)
127
127
  */
128
- paymentStatus: PaymentStatusType.PaymentAutomaticallyApplied;
128
+ paymentStatus: PaymentStatusType.PaymentAutomaticallyApplied | PaymentStatusType.PaymentDue;
129
129
  /**
130
130
  * 決済方法名称
131
131
  */
@@ -59,9 +59,13 @@ export interface IPaymentMethod {
59
59
  */
60
60
  totalPaymentDue?: ITotalPaymentDue;
61
61
  /**
62
- * 決済方法タイプ
62
+ * 決済方法区分
63
63
  */
64
64
  typeOf: string;
65
+ /**
66
+ * 決済方法区分
67
+ */
68
+ identifier?: string;
65
69
  /**
66
70
  * 出金元ペイメントカード
67
71
  */
package/lib/order.d.ts CHANGED
@@ -82,7 +82,7 @@ export interface IReferencedInvoice {
82
82
  /**
83
83
  * 自動決済かどうか判定するために追加(2023-08-23~)
84
84
  */
85
- paymentStatus?: PaymentStatusType.PaymentAutomaticallyApplied;
85
+ paymentStatus?: PaymentStatusType.PaymentAutomaticallyApplied | PaymentStatusType.PaymentDue;
86
86
  /**
87
87
  * The total amount due.
88
88
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.327.0-alpha.5",
3
+ "version": "4.327.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",