Skip to content

Commit

Permalink
施設のhasPOSを再定義
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Sep 27, 2023
1 parent 8acdf8d commit 40749a0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

### Changed

- 施設のhasPOSを再定義

### Deprecated

### Removed
Expand Down
12 changes: 8 additions & 4 deletions src/place/movieTheater.ts
Expand Up @@ -37,17 +37,21 @@ export interface IOffer extends Pick<OfferFactory.IOffer, 'priceCurrency' | 'pro
*/
availabilityEndsGraceTimeOnPOS: IAvailabilityEndsGraceTime;
}
export type POSType = 'POS';
// export type POSType = 'POS';
/**
* POS
* 管理者が識別しやすいようPOSの属性を指定します
* 施設の操作するPoints-of-Sales
*/
export interface IPOS {
typeOf: POSType;
// typeOf: POSType;
/**
* コード
* @deprecated Use branchCode(2023-09-27~)
*/
id: string;
/**
* コード
*/
branchCode: string;
/**
* 名称
*/
Expand Down

0 comments on commit 40749a0

Please sign in to comment.