@chevre/factory 10.3.0-alpha.2 → 10.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.
|
@@ -408,11 +408,6 @@ export interface IAttributes extends IBaseAttributes<IStartParams, IResult, IErr
|
|
|
408
408
|
*/
|
|
409
409
|
export type ITransaction = IExtendId<IAttributes>;
|
|
410
410
|
export interface IObjectSearchConditions {
|
|
411
|
-
provider?: {
|
|
412
|
-
id?: {
|
|
413
|
-
$eq?: string;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
411
|
reservationFor?: {
|
|
417
412
|
id?: {
|
|
418
413
|
$eq?: string;
|
|
@@ -426,14 +421,6 @@ export interface IObjectSearchConditions {
|
|
|
426
421
|
id?: {
|
|
427
422
|
$in?: string[];
|
|
428
423
|
};
|
|
429
|
-
reservationNumber?: {
|
|
430
|
-
$in?: string[];
|
|
431
|
-
};
|
|
432
|
-
reservationFor?: {
|
|
433
|
-
id?: {
|
|
434
|
-
$in?: string[];
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
424
|
reservedTicket?: {
|
|
438
425
|
ticketedSeat?: {
|
|
439
426
|
seatNumber?: {
|
|
@@ -441,12 +428,11 @@ export interface IObjectSearchConditions {
|
|
|
441
428
|
};
|
|
442
429
|
};
|
|
443
430
|
};
|
|
431
|
+
reservationFor?: never;
|
|
432
|
+
reservationNumber?: never;
|
|
444
433
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
$eq?: string;
|
|
448
|
-
};
|
|
449
|
-
};
|
|
434
|
+
provider?: never;
|
|
435
|
+
reservatiounderNamenNumber?: never;
|
|
450
436
|
}
|
|
451
437
|
export interface ISearchConditions extends IBaseSearchConditions<AssetTransactionType.Reserve> {
|
|
452
438
|
object?: IObjectSearchConditions;
|
|
@@ -20,6 +20,14 @@ export type ISubReservation4inform = Pick<IEventReservation, 'id' | 'modifiedTim
|
|
|
20
20
|
additionalProperty?: never;
|
|
21
21
|
programMembershipUsed?: never;
|
|
22
22
|
};
|
|
23
|
+
export type IReservationFor4informLegacy = IReservationForLegacy;
|
|
24
|
+
/**
|
|
25
|
+
* 確定予約通知のイベント属性
|
|
26
|
+
* 2026-09-01~
|
|
27
|
+
*/
|
|
28
|
+
export type IReservationFor4inform = Pick<IReservationForLegacy, 'id' | 'typeOf'> & {
|
|
29
|
+
superEvent?: never;
|
|
30
|
+
};
|
|
23
31
|
/**
|
|
24
32
|
* 確定予約通知
|
|
25
33
|
*/
|
|
@@ -27,7 +35,7 @@ export interface IReservationPackage4informConfirmed {
|
|
|
27
35
|
bookingTime: Date;
|
|
28
36
|
project: IProject;
|
|
29
37
|
provider: IProvider;
|
|
30
|
-
reservationFor:
|
|
38
|
+
reservationFor: IReservationFor4inform | IReservationFor4informLegacy;
|
|
31
39
|
reservationNumber: string;
|
|
32
40
|
reservationStatus: ReservationStatusType.ReservationConfirmed;
|
|
33
41
|
subReservation: ISubReservation4inform[];
|