@chevre/factory 5.4.0-alpha.12 → 5.4.0-alpha.13
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/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/place/entranceGate.d.ts +28 -0
- package/lib/place/entranceGate.js +2 -0
- package/lib/place/movieTheater.d.ts +2 -7
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ import * as PermitFactory from './permit';
|
|
|
106
106
|
import * as PersonFactory from './person';
|
|
107
107
|
import { PersonType } from './personType';
|
|
108
108
|
import * as BusStopFactory from './place/busStop';
|
|
109
|
+
import * as EntranceGateFactory from './place/entranceGate';
|
|
109
110
|
import * as MovieTheaterPlaceFactory from './place/movieTheater';
|
|
110
111
|
import * as ScreeningRoomPlaceFactory from './place/screeningRoom';
|
|
111
112
|
import * as ScreeningRoomSectionPlaceFactory from './place/screeningRoomSection';
|
|
@@ -451,6 +452,7 @@ export import personType = PersonType;
|
|
|
451
452
|
export import priceCurrency = PriceCurrency;
|
|
452
453
|
export declare namespace place {
|
|
453
454
|
export import busStop = BusStopFactory;
|
|
455
|
+
export import entranceGate = EntranceGateFactory;
|
|
454
456
|
export import movieTheater = MovieTheaterPlaceFactory;
|
|
455
457
|
export import screeningRoom = ScreeningRoomPlaceFactory;
|
|
456
458
|
export import screeningRoomSection = ScreeningRoomSectionPlaceFactory;
|
package/lib/index.js
CHANGED
|
@@ -105,6 +105,7 @@ var PermitFactory = require("./permit");
|
|
|
105
105
|
var PersonFactory = require("./person");
|
|
106
106
|
var personType_1 = require("./personType");
|
|
107
107
|
var BusStopFactory = require("./place/busStop");
|
|
108
|
+
var EntranceGateFactory = require("./place/entranceGate");
|
|
108
109
|
var MovieTheaterPlaceFactory = require("./place/movieTheater");
|
|
109
110
|
var ScreeningRoomPlaceFactory = require("./place/screeningRoom");
|
|
110
111
|
var ScreeningRoomSectionPlaceFactory = require("./place/screeningRoomSection");
|
|
@@ -480,6 +481,7 @@ exports.priceCurrency = priceCurrency_1.PriceCurrency;
|
|
|
480
481
|
var place;
|
|
481
482
|
(function (place) {
|
|
482
483
|
place.busStop = BusStopFactory;
|
|
484
|
+
place.entranceGate = EntranceGateFactory;
|
|
483
485
|
place.movieTheater = MovieTheaterPlaceFactory;
|
|
484
486
|
place.screeningRoom = ScreeningRoomPlaceFactory;
|
|
485
487
|
place.screeningRoomSection = ScreeningRoomSectionPlaceFactory;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as PlaceFactory from '../place';
|
|
2
|
+
import { PlaceType } from '../placeType';
|
|
3
|
+
/**
|
|
4
|
+
* 入場ゲート
|
|
5
|
+
*/
|
|
6
|
+
export type IEntranceGate = Pick<PlaceFactory.IPlace, 'typeOf' | 'identifier' | 'name'> & {
|
|
7
|
+
typeOf: PlaceType.Place;
|
|
8
|
+
identifier: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* 入場ゲート検索条件
|
|
12
|
+
*/
|
|
13
|
+
export interface ISearchConditions {
|
|
14
|
+
limit?: number;
|
|
15
|
+
page?: number;
|
|
16
|
+
/**
|
|
17
|
+
* プロジェクト
|
|
18
|
+
*/
|
|
19
|
+
project?: {
|
|
20
|
+
id?: {
|
|
21
|
+
$eq?: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
identifier?: {
|
|
25
|
+
$eq?: string;
|
|
26
|
+
$in?: string[];
|
|
27
|
+
};
|
|
28
|
+
}
|
|
@@ -6,6 +6,7 @@ import { IQuantitativeValue } from '../quantitativeValue';
|
|
|
6
6
|
import { ISeller } from '../seller';
|
|
7
7
|
import { SortType } from '../sortType';
|
|
8
8
|
import { UnitCode } from '../unitCode';
|
|
9
|
+
import { IEntranceGate } from './entranceGate';
|
|
9
10
|
export interface IAvailabilityStartsGraceTime extends Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'> {
|
|
10
11
|
unitCode: UnitCode.Day;
|
|
11
12
|
value: number;
|
|
@@ -53,13 +54,7 @@ export interface IPOS {
|
|
|
53
54
|
*/
|
|
54
55
|
name: string;
|
|
55
56
|
}
|
|
56
|
-
|
|
57
|
-
* 入場ゲート
|
|
58
|
-
*/
|
|
59
|
-
export type IEntranceGate = Pick<PlaceFactory.IPlace, 'typeOf' | 'identifier' | 'name'> & {
|
|
60
|
-
typeOf: PlaceType.Place;
|
|
61
|
-
identifier: string;
|
|
62
|
-
};
|
|
57
|
+
export { IEntranceGate };
|
|
63
58
|
/**
|
|
64
59
|
* 親組織
|
|
65
60
|
*/
|