@chevre/factory 5.4.0-alpha.10 → 5.4.0-alpha.12
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.
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -57,19 +57,6 @@ export interface IAggregateOfferOfPlace {
|
|
|
57
57
|
aggregateReservation?: Pick<IAggregateReservation, 'typeOf' | 'useActionCount'>;
|
|
58
58
|
}[];
|
|
59
59
|
}
|
|
60
|
-
export interface IPlaceWithAggregateOffer {
|
|
61
|
-
typeOf: PlaceType;
|
|
62
|
-
identifier?: string;
|
|
63
|
-
aggregateOffer?: IAggregateOfferOfPlace;
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* 入場ゲート集計
|
|
67
|
-
*/
|
|
68
|
-
export interface IAggregateEntranceGate {
|
|
69
|
-
typeOf: PlaceType.AggregatePlace;
|
|
70
|
-
aggregateDate: Date;
|
|
71
|
-
places: IPlaceWithAggregateOffer[];
|
|
72
|
-
}
|
|
73
60
|
export type IServiceType = IProductServiceType & {
|
|
74
61
|
id?: string;
|
|
75
62
|
};
|
|
@@ -12,7 +12,6 @@ import * as AnyEventFactory from './anyEvent';
|
|
|
12
12
|
export import IAggregateReservation = AnyEventFactory.IAggregateReservation;
|
|
13
13
|
export import IOfferWithAggregateReservation = AnyEventFactory.IOfferWithAggregateReservation;
|
|
14
14
|
export import IAggregateOffer = AnyEventFactory.IAggregateOffer;
|
|
15
|
-
export import IAggregateEntranceGate = AnyEventFactory.IAggregateEntranceGate;
|
|
16
15
|
export import IOfferAvailableAtOrFrom = AnyEventFactory.IOfferAvailableAtOrFrom;
|
|
17
16
|
export import IEventOfferForMemberTier = AnyEventFactory.IEventOfferForMemberTier;
|
|
18
17
|
export import ISellerMakesOffer = AnyEventFactory.ISellerMakesOffer;
|
|
@@ -45,14 +45,29 @@ export interface ISearchConditions {
|
|
|
45
45
|
$eq?: string;
|
|
46
46
|
$regex?: string;
|
|
47
47
|
};
|
|
48
|
+
/**
|
|
49
|
+
* ルーム
|
|
50
|
+
*/
|
|
48
51
|
containedInPlace?: {
|
|
52
|
+
/**
|
|
53
|
+
* ルームコード
|
|
54
|
+
*/
|
|
49
55
|
branchCode?: {
|
|
50
56
|
$eq?: string;
|
|
51
57
|
};
|
|
52
|
-
containedInPlace
|
|
58
|
+
containedInPlace?: {
|
|
59
|
+
/**
|
|
60
|
+
* 施設コード
|
|
61
|
+
*/
|
|
53
62
|
branchCode?: {
|
|
54
63
|
$eq?: string;
|
|
55
64
|
};
|
|
65
|
+
/**
|
|
66
|
+
* 施設ID
|
|
67
|
+
*/
|
|
68
|
+
id?: {
|
|
69
|
+
$eq?: string;
|
|
70
|
+
};
|
|
56
71
|
};
|
|
57
72
|
};
|
|
58
73
|
name?: {
|