@chevre/factory 4.326.0 → 4.327.0-alpha.1
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/lib/order.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { IMultilingualString } from './multilingualString';
|
|
|
10
10
|
import { IOffer } from './offer';
|
|
11
11
|
import { OrderStatus } from './orderStatus';
|
|
12
12
|
import { OrganizationType } from './organizationType';
|
|
13
|
+
import { PaymentStatusType } from './paymentStatusType';
|
|
13
14
|
import { IPermit as IBasePermit } from './permit';
|
|
14
15
|
import { IPerson, IProfile } from './person';
|
|
15
16
|
import { PersonType } from './personType';
|
|
@@ -71,6 +72,10 @@ export interface IReferencedInvoice {
|
|
|
71
72
|
* An identifier for the method of payment used (e.g.the last 4 digits of the credit card).
|
|
72
73
|
*/
|
|
73
74
|
paymentMethodId: string;
|
|
75
|
+
/**
|
|
76
|
+
* 自動決済かどうか判定するために追加(2023-08-23~)
|
|
77
|
+
*/
|
|
78
|
+
paymentStatus?: PaymentStatusType.PaymentAutomaticallyApplied;
|
|
74
79
|
/**
|
|
75
80
|
* The total amount due.
|
|
76
81
|
*/
|
|
@@ -7,6 +7,11 @@ export declare type IPurpose = IConfirmPayPurpose & {
|
|
|
7
7
|
};
|
|
8
8
|
export interface IData extends IConfirmPayActionAttributes {
|
|
9
9
|
purpose: IPurpose;
|
|
10
|
+
/**
|
|
11
|
+
* OrderPaymentDue->OrderProcessing処理を実行するかどうかのオプションを追加(2023-08-23~)
|
|
12
|
+
*/
|
|
13
|
+
processOrder?: boolean;
|
|
14
|
+
useOnOrderStatusChanged?: boolean;
|
|
10
15
|
}
|
|
11
16
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
12
17
|
name: TaskName.ConfirmPayTransaction;
|