@cinerino/sdk 15.0.0-alpha.13 → 15.0.0-alpha.14
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.
|
@@ -7,7 +7,7 @@ export interface IUseActionResult {
|
|
|
7
7
|
/**
|
|
8
8
|
* 予約検索条件
|
|
9
9
|
*/
|
|
10
|
-
type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions, '
|
|
10
|
+
type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions, 'bookingFrom' | 'bookingThrough' | 'ids' | 'reservationNumbers' | 'reservationStatuses' | 'attended' | 'checkedIn'> & {
|
|
11
11
|
additionalTicketText?: string;
|
|
12
12
|
broker?: {
|
|
13
13
|
id?: string;
|
|
@@ -25,6 +25,7 @@ type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions,
|
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
reservationFor?: Pick<factory.reservation.eventReservation.IReservationForSearchConditions, 'startFrom' | 'startThrough' | 'ids'> & {
|
|
28
|
+
id?: string;
|
|
28
29
|
location?: {
|
|
29
30
|
branchCodes?: string[];
|
|
30
31
|
};
|
|
@@ -4,7 +4,7 @@ import { Service } from '../../service';
|
|
|
4
4
|
/**
|
|
5
5
|
* 予約検索条件
|
|
6
6
|
*/
|
|
7
|
-
type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions, '
|
|
7
|
+
type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions, 'bookingFrom' | 'bookingThrough' | 'ids' | 'reservationNumbers' | 'reservationStatuses'> & {
|
|
8
8
|
underName?: {
|
|
9
9
|
email?: {
|
|
10
10
|
$regex?: string;
|
|
@@ -18,6 +18,7 @@ type IFindParams = Pick<factory.reservation.eventReservation.ISearchConditions,
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
reservationFor?: Pick<factory.reservation.eventReservation.IReservationForSearchConditions, 'startFrom' | 'startThrough' | 'ids'> & {
|
|
21
|
+
id?: string;
|
|
21
22
|
location?: {
|
|
22
23
|
branchCodes?: string[];
|
|
23
24
|
};
|
|
@@ -45,7 +45,7 @@ class ReservationService extends service_1.Service {
|
|
|
45
45
|
// factory.reservationStatusType.ReservationConfirmed
|
|
46
46
|
// ]
|
|
47
47
|
// },
|
|
48
|
-
typeOf:
|
|
48
|
+
// typeOf: factory.reservationType.EventReservation
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
/**
|