@chevre/factory 4.327.0-alpha.3 → 4.327.0-alpha.4
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 +8 -1
- package/package.json +1 -1
package/lib/order.d.ts
CHANGED
|
@@ -46,7 +46,12 @@ export interface IOrderPaymentMethodIssuedThrough {
|
|
|
46
46
|
export interface ITotalPaymentDue extends Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'> {
|
|
47
47
|
value: number;
|
|
48
48
|
}
|
|
49
|
-
export declare type IPaymentMethodOfInvoice = Pick<IPaymentMethodAsServiceOutput, 'amount'
|
|
49
|
+
export declare type IPaymentMethodOfInvoice = Pick<IPaymentMethodAsServiceOutput, 'amount'> & {
|
|
50
|
+
/**
|
|
51
|
+
* 決済方法区分コード
|
|
52
|
+
*/
|
|
53
|
+
identifier: string;
|
|
54
|
+
};
|
|
50
55
|
/**
|
|
51
56
|
* 請求
|
|
52
57
|
*/
|
|
@@ -66,6 +71,8 @@ export interface IReferencedInvoice {
|
|
|
66
71
|
/**
|
|
67
72
|
* The name of the credit card or other method of payment for the order.
|
|
68
73
|
* 追加(2023-08-13~)
|
|
74
|
+
* 存在を保証(2023-08-28~)
|
|
75
|
+
* OrderPaymentDueの状態では存在しない可能性あり
|
|
69
76
|
*/
|
|
70
77
|
paymentMethod?: IPaymentMethodOfInvoice;
|
|
71
78
|
/**
|