@chevre/factory 4.307.0 → 4.308.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.
|
@@ -25,10 +25,6 @@ export declare type IObject = IPaymentService[];
|
|
|
25
25
|
export interface IResult {
|
|
26
26
|
purchaseNumberAuthIn: IPurchaseNumberAuthIn;
|
|
27
27
|
purchaseNumberAuthResult: IPurchaseNumberAuthResult;
|
|
28
|
-
/**
|
|
29
|
-
* 認証結果としてのMovieTicketリスト
|
|
30
|
-
*/
|
|
31
|
-
movieTickets: IMovieTicket[];
|
|
32
28
|
}
|
|
33
29
|
export declare type IError = any;
|
|
34
30
|
export interface IPurpose {
|
package/lib/action.d.ts
CHANGED
|
@@ -157,9 +157,15 @@ export interface ISearchConditions {
|
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
159
|
acceptedOffer?: {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
160
|
+
itemOffered?: {
|
|
161
|
+
serviceOutput?: {
|
|
162
|
+
reservedTicket?: {
|
|
163
|
+
ticketedSeat?: {
|
|
164
|
+
seatNumber?: {
|
|
165
|
+
$in?: string[];
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
};
|
|
163
169
|
};
|
|
164
170
|
};
|
|
165
171
|
};
|
|
@@ -49,6 +49,9 @@ export interface IProvider extends Pick<IOrganization, 'id' | 'name' | 'typeOf'>
|
|
|
49
49
|
}
|
|
50
50
|
export declare type IAvailableChannel = IProductAvailableChannel & {
|
|
51
51
|
onPaymentStatusChanged?: IOnPaymentStatusChanged;
|
|
52
|
+
totalPaymentDue?: {
|
|
53
|
+
maxValue?: number;
|
|
54
|
+
};
|
|
52
55
|
};
|
|
53
56
|
/**
|
|
54
57
|
* 決済サービスインターフェース
|