@chevre/factory 8.2.0-alpha.1 → 8.2.0-alpha.3
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.
|
@@ -27,24 +27,12 @@ export interface IOffer extends Pick<IBaseOffer, 'typeOf' | 'eligibleQuantity'>
|
|
|
27
27
|
* イベント開始後の販売猶予期間
|
|
28
28
|
*/
|
|
29
29
|
availabilityEndsGraceTime: IAvailabilityEndsGraceTime;
|
|
30
|
-
/**
|
|
31
|
-
* イベント開始前の販売猶予期間(POS)
|
|
32
|
-
*/
|
|
33
|
-
availabilityStartsGraceTimeOnPOS?: never;
|
|
34
|
-
/**
|
|
35
|
-
* イベント開始後の販売猶予期間(POS)
|
|
36
|
-
*/
|
|
37
|
-
availabilityEndsGraceTimeOnPOS?: never;
|
|
38
30
|
}
|
|
39
31
|
/**
|
|
40
32
|
* 施設の操作するPoints-of-Sales
|
|
41
33
|
*/
|
|
42
34
|
export interface IPOS {
|
|
43
|
-
|
|
44
|
-
* コード
|
|
45
|
-
* @deprecated Use branchCode(2023-09-27~)
|
|
46
|
-
*/
|
|
47
|
-
id: string;
|
|
35
|
+
id?: never;
|
|
48
36
|
/**
|
|
49
37
|
* コード
|
|
50
38
|
*/
|
|
@@ -67,10 +55,6 @@ export type IParentOrganization = Pick<ISeller, 'typeOf' | 'id'> & {
|
|
|
67
55
|
export interface IPlace extends Pick<IBasePlace, 'additionalProperty' | 'branchCode' | 'name' | 'project' | 'telephone' | 'typeOf' | 'url'> {
|
|
68
56
|
typeOf: PlaceType.MovieTheater;
|
|
69
57
|
id: string;
|
|
70
|
-
/**
|
|
71
|
-
* ルーム数
|
|
72
|
-
*/
|
|
73
|
-
screenCount?: number;
|
|
74
58
|
/**
|
|
75
59
|
* 施設コード
|
|
76
60
|
*/
|
|
@@ -75,7 +75,7 @@ export interface IReservation extends IBaseReservation {
|
|
|
75
75
|
numSeats?: never;
|
|
76
76
|
}
|
|
77
77
|
export interface IReservationForSearchConditions {
|
|
78
|
-
typeOf?:
|
|
78
|
+
typeOf?: never;
|
|
79
79
|
id?: string | {
|
|
80
80
|
$eq?: string;
|
|
81
81
|
};
|
|
@@ -145,11 +145,11 @@ export interface IReservedTicketSearchConditions {
|
|
|
145
145
|
}
|
|
146
146
|
export interface IStringSearchConditions {
|
|
147
147
|
$eq?: string;
|
|
148
|
-
$ne?: string;
|
|
149
148
|
$in?: string[];
|
|
150
|
-
$nin?: string[];
|
|
151
|
-
$options?: string;
|
|
152
149
|
$regex?: string;
|
|
150
|
+
$ne?: never;
|
|
151
|
+
$nin?: never;
|
|
152
|
+
$options?: never;
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
155
|
* ソート条件
|
|
@@ -207,8 +207,6 @@ export interface ISearchConditions {
|
|
|
207
207
|
reservationStatuses?: IAvailableReservationStatusType[];
|
|
208
208
|
bookingFrom?: Date;
|
|
209
209
|
bookingThrough?: Date;
|
|
210
|
-
modifiedFrom?: Date;
|
|
211
|
-
modifiedThrough?: Date;
|
|
212
210
|
/**
|
|
213
211
|
* 予約チケット
|
|
214
212
|
*/
|
|
@@ -9,7 +9,19 @@ export interface ICredentialsMovieTicket {
|
|
|
9
9
|
authorizeServerDomain: string;
|
|
10
10
|
clientId: string;
|
|
11
11
|
clientSecret: string;
|
|
12
|
+
/**
|
|
13
|
+
* 着券取消IFを使用するかどうか
|
|
14
|
+
* add(2024-04-27~)
|
|
15
|
+
*/
|
|
12
16
|
useSeatInfoSyncCancel?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 決済承認レート制限(paymentServiceのIDごと)設定
|
|
19
|
+
* 2026-05-27~
|
|
20
|
+
*/
|
|
21
|
+
rateLimit?: {
|
|
22
|
+
threshold: number;
|
|
23
|
+
unitInSeconds: number;
|
|
24
|
+
};
|
|
13
25
|
}
|
|
14
26
|
export interface IServiceChannelCreditCard {
|
|
15
27
|
credentials: ICredentialsCreditCard;
|