@chevre/factory 4.278.0-alpha.1 → 4.278.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.
|
@@ -367,6 +367,31 @@ export interface IOfferSearchConditions {
|
|
|
367
367
|
};
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
|
+
seller?: {
|
|
371
|
+
makesOffer?: {
|
|
372
|
+
$elemMatch?: {
|
|
373
|
+
availabilityEnds?: {
|
|
374
|
+
$gte?: Date;
|
|
375
|
+
$lte?: Date;
|
|
376
|
+
};
|
|
377
|
+
availabilityStarts?: {
|
|
378
|
+
$gte?: Date;
|
|
379
|
+
$lte?: Date;
|
|
380
|
+
};
|
|
381
|
+
validFrom?: {
|
|
382
|
+
$gte?: Date;
|
|
383
|
+
$lte?: Date;
|
|
384
|
+
};
|
|
385
|
+
validThrough?: {
|
|
386
|
+
$gte?: Date;
|
|
387
|
+
$lte?: Date;
|
|
388
|
+
};
|
|
389
|
+
'availableAtOrFrom.id'?: {
|
|
390
|
+
$eq?: string;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
};
|
|
370
395
|
}
|
|
371
396
|
/**
|
|
372
397
|
* イベント検索条件
|
|
@@ -8,21 +8,29 @@ import { SortType } from '../sortType';
|
|
|
8
8
|
import { UnitCode } from '../unitCode';
|
|
9
9
|
import { IPlace as IScreeningRoom } from './screeningRoom';
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 施設に対するオファー
|
|
12
12
|
*/
|
|
13
13
|
export interface IOffer extends Pick<OfferFactory.IOffer, 'priceCurrency' | 'project' | 'typeOf' | 'eligibleQuantity'> {
|
|
14
14
|
/**
|
|
15
15
|
* イベント開始前の販売猶予期間
|
|
16
16
|
*/
|
|
17
|
-
availabilityStartsGraceTime?: IQuantitativeValue<UnitCode.Day>;
|
|
17
|
+
availabilityStartsGraceTime?: Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'>;
|
|
18
18
|
/**
|
|
19
19
|
* イベント開始後の販売猶予期間
|
|
20
20
|
*/
|
|
21
|
-
availabilityEndsGraceTime?: IQuantitativeValue<UnitCode.Sec>;
|
|
21
|
+
availabilityEndsGraceTime?: Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'value' | 'unitCode'>;
|
|
22
|
+
/**
|
|
23
|
+
* イベント開始前の販売猶予期間(POS)
|
|
24
|
+
*/
|
|
25
|
+
availabilityStartsGraceTimeOnPOS: Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'>;
|
|
26
|
+
/**
|
|
27
|
+
* イベント開始後の販売猶予期間(POS)
|
|
28
|
+
*/
|
|
29
|
+
availabilityEndsGraceTimeOnPOS: Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'value' | 'unitCode'>;
|
|
22
30
|
}
|
|
23
31
|
export declare type POSType = 'POS';
|
|
24
32
|
/**
|
|
25
|
-
* POS
|
|
33
|
+
* POS
|
|
26
34
|
* 管理者が識別しやすいようPOSの属性を指定します
|
|
27
35
|
*/
|
|
28
36
|
export interface IPOS {
|