Skip to content

Commit

Permalink
イベント属性からaggregateEntranceGate,aggregateOfferを廃止
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Mar 27, 2024
1 parent 987f234 commit 19ebcc0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

### Removed

- イベント属性からaggregateEntranceGate,aggregateOfferを廃止

### Fixed

### Security
Expand Down
4 changes: 2 additions & 2 deletions src/event/anyEvent.ts
Expand Up @@ -235,15 +235,15 @@ export interface IAttributes extends Pick<
/**
* 入場ゲート集計
*/
aggregateEntranceGate?: IAggregateEntranceGate;
// aggregateEntranceGate?: IAggregateEntranceGate; // 廃止(2024-03-27~)
/**
* 予約集計
*/
aggregateReservation?: IAggregateReservation;
/**
* オファー集計
*/
aggregateOffer?: IAggregateOffer;
// aggregateOffer?: IAggregateOffer; // 廃止(2024-03-27~)
// 必須化(2023-07-12~)
organizer: IOrganizer;
}
Expand Down
16 changes: 5 additions & 11 deletions src/event/screeningEvent.ts
Expand Up @@ -11,12 +11,6 @@ import { ReservationType } from '../reservationType';
import * as WebAPIFactory from '../service/webAPI';
import * as AnyEventFactory from './anyEvent';

export import IAggregateReservation = AnyEventFactory.IAggregateReservation;
export import IOfferWithAggregateReservation = AnyEventFactory.IOfferWithAggregateReservation;
export import IAggregateOffer = AnyEventFactory.IAggregateOffer;
export import IAggregateOfferOfPlace = AnyEventFactory.IAggregateOfferOfPlace;
export import IPlaceWithAggregateOffer = AnyEventFactory.IPlaceWithAggregateOffer;
export import IAggregateEntranceGate = AnyEventFactory.IAggregateEntranceGate;
export interface IServiceOutput {
typeOf: ReservationType.EventReservation;
reservedTicket?: {
Expand Down Expand Up @@ -181,14 +175,14 @@ export import IName = AnyEventFactory.IName;
/**
* イベント属性
*/
// alternateName ?: IMultilingualString;
// alternativeHeadline ?: IMultilingualString | string;
// duration ?: string;
// headline ?: IMultilingualString;
export interface IAttributes extends Pick<
AnyEventFactory.IAttributes,
'additionalProperty' | 'project' | 'identifier' | 'description' | 'eventStatus' | 'maximumAttendeeCapacity' | 'remainingAttendeeCapacity' | 'location'
| 'name' | 'doorTime' | 'endDate' | 'startDate' | 'aggregateEntranceGate' | 'aggregateReservation' | 'aggregateOffer' | 'organizer'
| 'name' | 'doorTime' | 'endDate' | 'startDate'
// | 'aggregateEntranceGate' // 廃止(2024-03-27~)
| 'aggregateReservation'
// | 'aggregateOffer' // 廃止(2024-03-27~)
| 'organizer'
| 'checkInCount' | 'attendeeCount'
> {
/**
Expand Down

0 comments on commit 19ebcc0

Please sign in to comment.