@chevre/factory 4.327.0-alpha.5 → 4.327.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.
@@ -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
  */
@@ -9,6 +9,11 @@ export interface IPayAssetTransaction {
9
9
  * 決済取引番号
10
10
  */
11
11
  transactionNumber: string;
12
+ object?: {
13
+ paymentMethod?: {
14
+ identifier?: string;
15
+ };
16
+ };
12
17
  }
13
18
  export declare type IObject = IPayAssetTransaction[];
14
19
  export declare type IResult = any;
@@ -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
  */
@@ -138,6 +142,11 @@ export interface IPotentialActionsParams {
138
142
  */
139
143
  export interface IConfirmParams {
140
144
  id?: string;
145
+ object?: {
146
+ paymentMethod?: {
147
+ identifier?: string;
148
+ };
149
+ };
141
150
  transactionNumber?: string;
142
151
  endDate?: Date;
143
152
  potentialActions: IPotentialActionsParams;
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
  */
@@ -13,6 +13,11 @@ export interface IObjectAsPayTransaction {
13
13
  typeOf: AssetTransactionType.Pay;
14
14
  transactionNumber: string;
15
15
  status: TransactionStatusType.Confirmed;
16
+ object?: {
17
+ paymentMethod?: {
18
+ identifier?: string;
19
+ };
20
+ };
16
21
  }
17
22
  export interface IData {
18
23
  project: Pick<IProject, 'id' | 'typeOf'>;
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.7",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",