@chevre/factory 6.2.0-alpha.1 → 6.2.0-alpha.2
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.
|
@@ -89,6 +89,10 @@ export interface IAvailableChannelCreditCard {
|
|
|
89
89
|
* add paymentServiceChannel ID(2025-02-21~)
|
|
90
90
|
*/
|
|
91
91
|
id: string;
|
|
92
|
+
/**
|
|
93
|
+
* 対応決済方法や金額のカスタム検証URL
|
|
94
|
+
*/
|
|
95
|
+
customValidationUrl?: string;
|
|
92
96
|
credentials?: never;
|
|
93
97
|
totalPaymentDue?: never;
|
|
94
98
|
}
|
|
@@ -98,6 +102,10 @@ export interface IAvailableChannelMovieTicket {
|
|
|
98
102
|
* add paymentServiceChannel ID(2025-02-21~)
|
|
99
103
|
*/
|
|
100
104
|
id: string;
|
|
105
|
+
/**
|
|
106
|
+
* 対応決済方法や金額のカスタム検証URL
|
|
107
|
+
*/
|
|
108
|
+
customValidationUrl?: string;
|
|
101
109
|
credentials?: never;
|
|
102
110
|
totalPaymentDue?: {
|
|
103
111
|
maxValue?: number;
|
|
@@ -163,11 +171,17 @@ export interface ICommonAttributes {
|
|
|
163
171
|
}
|
|
164
172
|
export type ICreditCardPaymentMethod = ICommonAttributes & {
|
|
165
173
|
typeOf: PaymentServiceType.CreditCard;
|
|
174
|
+
/**
|
|
175
|
+
* クライアントサイドからは見えない想定
|
|
176
|
+
*/
|
|
166
177
|
availableChannel?: IAvailableChannelCreditCard;
|
|
167
178
|
potentialAction?: IPotentialAction[];
|
|
168
179
|
};
|
|
169
180
|
export type IMovieTicketPaymentMethod = ICommonAttributes & {
|
|
170
181
|
typeOf: PaymentServiceType.MovieTicket;
|
|
182
|
+
/**
|
|
183
|
+
* クライアントサイドからは見えない想定
|
|
184
|
+
*/
|
|
171
185
|
availableChannel?: IAvailableChannelMovieTicket;
|
|
172
186
|
potentialAction?: IPotentialAction[];
|
|
173
187
|
};
|