@chevre/factory 4.281.0-alpha.5 → 4.281.0-alpha.6

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.
@@ -1,9 +1,10 @@
1
1
  import { EventType } from './eventType';
2
2
  import { IMultilingualString } from './multilingualString';
3
3
  import { IProject } from './project';
4
+ import { PropertyValueType } from './propertyValue';
4
5
  import { SortType } from './sortType';
5
6
  import { IThing } from './thing';
6
- export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries;
7
+ export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification;
7
8
  /**
8
9
  * {@link https://schema.org/CategoryCodeSet}
9
10
  */
@@ -308,6 +308,30 @@ export interface IOfferSearchConditions {
308
308
  ids?: string[];
309
309
  };
310
310
  serviceOutput?: {
311
+ reservationFor?: {
312
+ arrivalBusStop?: {
313
+ /**
314
+ * ターミナルコード
315
+ */
316
+ branchCode?: {
317
+ $eq?: string;
318
+ };
319
+ };
320
+ departureBusStop?: {
321
+ /**
322
+ * ターミナルコード
323
+ */
324
+ branchCode?: {
325
+ $eq?: string;
326
+ };
327
+ };
328
+ /**
329
+ * トリップコード
330
+ */
331
+ identifier?: {
332
+ $eq?: string;
333
+ };
334
+ };
311
335
  reservedTicket?: {
312
336
  ticketedSeat?: {
313
337
  typeOfs?: string[];
package/lib/index.d.ts CHANGED
@@ -99,6 +99,7 @@ import * as ProductFactory from './product';
99
99
  import * as ProgramMembershipFactory from './programMembership';
100
100
  import * as project from './project';
101
101
  import * as PropertyValueFactory from './propertyValue';
102
+ import * as LocationFeatureSpecificationFactory from './propertyValue/locationFeatureSpecification';
102
103
  import * as QualitativeValueFactory from './qualitativeValue';
103
104
  import * as QuantitativeValueFactory from './quantitativeValue';
104
105
  import * as AccountingReportFactory from './report/accountingReport';
@@ -363,7 +364,11 @@ export import priceSpecificationType = PriceSpecificationType;
363
364
  export import programMembership = ProgramMembershipFactory;
364
365
  export import product = ProductFactory;
365
366
  export import project = project;
366
- export import propertyValue = PropertyValueFactory;
367
+ export declare namespace propertyValue {
368
+ export import PropertyValueType = PropertyValueFactory.PropertyValueType;
369
+ export import IPropertyValue = PropertyValueFactory.IPropertyValue;
370
+ export import locationFeatureSpecification = LocationFeatureSpecificationFactory;
371
+ }
367
372
  export import qualitativeValue = QualitativeValueFactory;
368
373
  export import quantitativeValue = QuantitativeValueFactory;
369
374
  export declare namespace report {
package/lib/index.js CHANGED
@@ -91,6 +91,7 @@ var ProductFactory = require("./product");
91
91
  var ProgramMembershipFactory = require("./programMembership");
92
92
  var project = require("./project");
93
93
  var PropertyValueFactory = require("./propertyValue");
94
+ var LocationFeatureSpecificationFactory = require("./propertyValue/locationFeatureSpecification");
94
95
  var QualitativeValueFactory = require("./qualitativeValue");
95
96
  var QuantitativeValueFactory = require("./quantitativeValue");
96
97
  var AccountingReportFactory = require("./report/accountingReport");
@@ -334,7 +335,11 @@ exports.priceSpecificationType = priceSpecificationType_1.PriceSpecificationType
334
335
  exports.programMembership = ProgramMembershipFactory;
335
336
  exports.product = ProductFactory;
336
337
  exports.project = project;
337
- exports.propertyValue = PropertyValueFactory;
338
+ var propertyValue;
339
+ (function (propertyValue) {
340
+ propertyValue.PropertyValueType = PropertyValueFactory.PropertyValueType;
341
+ propertyValue.locationFeatureSpecification = LocationFeatureSpecificationFactory;
342
+ })(propertyValue = exports.propertyValue || (exports.propertyValue = {}));
338
343
  exports.qualitativeValue = QualitativeValueFactory;
339
344
  exports.quantitativeValue = QuantitativeValueFactory;
340
345
  var report;
@@ -5,7 +5,7 @@ import { IPlace as IScreeningRoomSection } from './screeningRoomSection';
5
5
  /**
6
6
  * ルームインターフェース
7
7
  */
8
- export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' | 'branchCode' | 'name' | 'address' | 'containedInPlace' | 'containsPlace' | 'additionalProperty' | 'openSeatingAllowed' | 'maximumAttendeeCapacity'> {
8
+ export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' | 'amenityFeature' | 'branchCode' | 'name' | 'address' | 'containedInPlace' | 'containsPlace' | 'additionalProperty' | 'openSeatingAllowed' | 'maximumAttendeeCapacity'> {
9
9
  typeOf: PlaceType.ScreeningRoom;
10
10
  /**
11
11
  * セクションリスト
package/lib/place.d.ts CHANGED
@@ -2,7 +2,9 @@ import { IMultilingualString } from './multilingualString';
2
2
  import { PlaceType } from './placeType';
3
3
  import { IProject } from './project';
4
4
  import { IPropertyValue } from './propertyValue';
5
+ import { IPropertyValue as ILocationFeatureSpecification } from './propertyValue/locationFeatureSpecification';
5
6
  import { IThing } from './thing';
7
+ export declare type IAmenityFeature = ILocationFeatureSpecification;
6
8
  /**
7
9
  * 場所インターフェース
8
10
  */
@@ -10,6 +12,7 @@ export interface IPlace extends Pick<IThing, 'identifier' | 'name'> {
10
12
  project: Pick<IProject, 'id' | 'typeOf'>;
11
13
  typeOf: PlaceType;
12
14
  id?: string;
15
+ amenityFeature?: IAmenityFeature[];
13
16
  address?: IMultilingualString;
14
17
  branchCode?: string;
15
18
  containedInPlace?: IPlace;
@@ -0,0 +1,4 @@
1
+ import * as PropertyValueFactory from '../propertyValue';
2
+ export interface IPropertyValue extends Pick<PropertyValueFactory.IPropertyValue<string>, 'name' | 'value'> {
3
+ typeOf: PropertyValueFactory.PropertyValueType.LocationFeatureSpecification;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,6 @@
1
+ export declare enum PropertyValueType {
2
+ LocationFeatureSpecification = "LocationFeatureSpecification"
3
+ }
1
4
  /**
2
5
  * 属性値インターフェース
3
6
  */
@@ -1,2 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PropertyValueType = void 0;
4
+ var PropertyValueType;
5
+ (function (PropertyValueType) {
6
+ PropertyValueType["LocationFeatureSpecification"] = "LocationFeatureSpecification";
7
+ })(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.281.0-alpha.5",
3
+ "version": "4.281.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",