@chevre/factory 4.364.0-alpha.3 → 4.364.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.
@@ -225,7 +225,6 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Eve
225
225
  /**
226
226
  * 入場ゲート集計
227
227
  */
228
- aggregateEntranceGate?: IAggregateEntranceGate;
229
228
  /**
230
229
  * 予約集計
231
230
  */
@@ -233,7 +232,6 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Eve
233
232
  /**
234
233
  * オファー集計
235
234
  */
236
- aggregateOffer?: IAggregateOffer;
237
235
  organizer: IOrganizer;
238
236
  }
239
237
  /**
@@ -9,12 +9,6 @@ import * as ReservationFactory from '../reservation';
9
9
  import { ReservationType } from '../reservationType';
10
10
  import * as WebAPIFactory from '../service/webAPI';
11
11
  import * as AnyEventFactory from './anyEvent';
12
- export import IAggregateReservation = AnyEventFactory.IAggregateReservation;
13
- export import IOfferWithAggregateReservation = AnyEventFactory.IOfferWithAggregateReservation;
14
- export import IAggregateOffer = AnyEventFactory.IAggregateOffer;
15
- export import IAggregateOfferOfPlace = AnyEventFactory.IAggregateOfferOfPlace;
16
- export import IPlaceWithAggregateOffer = AnyEventFactory.IPlaceWithAggregateOffer;
17
- export import IAggregateEntranceGate = AnyEventFactory.IAggregateEntranceGate;
18
12
  export interface IServiceOutput {
19
13
  typeOf: ReservationType.EventReservation;
20
14
  reservedTicket?: {
@@ -171,7 +165,7 @@ export import IName = AnyEventFactory.IName;
171
165
  /**
172
166
  * イベント属性
173
167
  */
174
- export interface IAttributes extends Pick<AnyEventFactory.IAttributes, 'additionalProperty' | 'project' | 'identifier' | 'description' | 'eventStatus' | 'maximumAttendeeCapacity' | 'remainingAttendeeCapacity' | 'location' | 'name' | 'doorTime' | 'endDate' | 'startDate' | 'aggregateEntranceGate' | 'aggregateReservation' | 'aggregateOffer' | 'organizer' | 'checkInCount' | 'attendeeCount'> {
168
+ export interface IAttributes extends Pick<AnyEventFactory.IAttributes, 'additionalProperty' | 'project' | 'identifier' | 'description' | 'eventStatus' | 'maximumAttendeeCapacity' | 'remainingAttendeeCapacity' | 'location' | 'name' | 'doorTime' | 'endDate' | 'startDate' | 'aggregateReservation' | 'organizer' | 'checkInCount' | 'attendeeCount'> {
175
169
  /**
176
170
  * 親イベント
177
171
  * 施設コンテンツに相当
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.364.0-alpha.3",
3
+ "version": "4.364.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",