@chevre/factory 4.397.0-alpha.0 → 4.397.0

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.
@@ -146,6 +146,9 @@ export interface IOffer {
146
146
  unacceptedPaymentMethod?: EventFactory.IUnacceptedPaymentMethodType[];
147
147
  seller: ISeller;
148
148
  }
149
+ /**
150
+ * イベントのルーム
151
+ */
149
152
  export interface ILocation {
150
153
  typeOf: PlaceType.ScreeningRoom;
151
154
  /**
@@ -153,15 +156,18 @@ export interface ILocation {
153
156
  */
154
157
  branchCode: string;
155
158
  /**
156
- * 場所名称
159
+ * ルームの名称を同期
157
160
  */
158
161
  name?: IMultilingualString;
159
- alternateName?: IMultilingualString;
160
- description?: IMultilingualString;
162
+ /**
163
+ * ルームのアドレスを同期
164
+ * COAでは値無し
165
+ */
161
166
  address?: IMultilingualString;
162
167
  /**
163
168
  * maximumPhysicalAttendeeCapacityへ移行
164
169
  * 2025-08-24時点で、まだ実態としては属性が残っている
170
+ * 2025-08-30: 値をunset
165
171
  */
166
172
  maximumAttendeeCapacity?: never;
167
173
  }
@@ -174,7 +180,7 @@ export interface IOrganizer {
174
180
  */
175
181
  export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Event>, 'maximumPhysicalAttendeeCapacity' | 'additionalProperty' | 'project' | 'identifier' | 'description' | 'eventStatus' | 'maximumAttendeeCapacity' | 'remainingAttendeeCapacity' | 'location' | 'name' | 'doorTime' | 'endDate' | 'startDate' | 'typeOf'> {
176
182
  /**
177
- * 上映場所
183
+ * ルーム
178
184
  */
179
185
  location: ILocation;
180
186
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.397.0-alpha.0",
3
+ "version": "4.397.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",