@chevre/factory 5.3.0-alpha.3 → 5.3.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.
|
@@ -98,6 +98,10 @@ export type IAuthorizeCreditCardObject = Pick<IObjectIncludingPaymentMethodDetai
|
|
|
98
98
|
* 決済URL発行の場合、発行済のpaymentMethodIdを指定
|
|
99
99
|
*/
|
|
100
100
|
paymentMethodId?: string;
|
|
101
|
+
/**
|
|
102
|
+
* 関連注文
|
|
103
|
+
* 指定すると、注文取引確定時にアイテムの整合性が検証される
|
|
104
|
+
*/
|
|
101
105
|
referencesOrder?: IInvoiceReferenceOrder;
|
|
102
106
|
movieTickets?: never;
|
|
103
107
|
fromLocation?: never;
|
package/lib/authorization.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export type IPermitAsTypeOfGood = Pick<IPermitAsGood, 'identifier' | 'typeOf'> &
|
|
|
24
24
|
/**
|
|
25
25
|
* 決済方法チケットの請求情報
|
|
26
26
|
*/
|
|
27
|
-
export interface IInvoiceAsPaymentMethodServiceOutput extends Pick<IResultAsInvoice, 'paymentMethodId'
|
|
27
|
+
export interface IInvoiceAsPaymentMethodServiceOutput extends Pick<IResultAsInvoice, 'paymentMethodId'> {
|
|
28
28
|
typeOf: IInvoice['typeOf'];
|
|
29
29
|
}
|
|
30
30
|
/**
|