@chevre/factory 5.4.0-alpha.20 → 5.4.0-alpha.21

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.
@@ -34,6 +34,9 @@ export type IRecipient = Pick<ActionFactory.IParticipantAsWebApplication, 'name'
34
34
  id?: never;
35
35
  url?: never;
36
36
  };
37
+ /**
38
+ * 取引、タスク以外の通知対象リソース
39
+ */
37
40
  export type IAnyResourceAsObject = IPlaceOrderAsNotification | IOfferCatalogAsNotification | IHasPOSAsNotification | IMovieTheaterAsNotification | IRoomAsNotification | IOfferAsNotification | IAccountTitleAsNotification | IProductAsNotification | ICategoryCodeAsNotification | IMovieAsNotification | INoteDigitalDocumentAsNotification | IPersonAsNotification | IEvent4inform2agg | IEventAsNotification | IEventSeriesAsNotification;
38
41
  export type IObject = IAnyResourceAsObject | IOrder4inform | IReservation4inform | IPayAction4inform | IRefundAction4inform | ITask4inform;
39
42
  export interface IPayTransactionAsPurpose {
@@ -1,8 +1,5 @@
1
- import { IPlace as IMovieTheater, IPOS } from '../place/movieTheater';
1
+ import { IEntranceGate, IPlace as IMovieTheater, IPOS } from '../place/movieTheater';
2
2
  import { IPlace as IScreeningRoom } from '../place/screeningRoom';
3
- export type IHasPOSAsNotification = Pick<IMovieTheater, 'id' | 'typeOf'> & {
4
- hasPOS: IPOS[];
5
- };
6
3
  export type IContainsPlace = Pick<IScreeningRoom, 'branchCode' | 'name' | 'typeOf' | 'additionalProperty' | 'address'>;
7
4
  /**
8
5
  * ルーム通知
@@ -22,9 +19,32 @@ export type IRoomAsNotification = IContainsPlace & {
22
19
  id: string;
23
20
  };
24
21
  };
22
+ /**
23
+ * 施設の入場ゲート通知
24
+ * define(2026-01-17~)
25
+ */
26
+ export type IEntranceGateAsNotification = Pick<IMovieTheater, 'id' | 'typeOf'> & {
27
+ /**
28
+ * 編集分だけ通知
29
+ */
30
+ hasEntranceGate: IEntranceGate[];
31
+ branchCode?: never;
32
+ };
33
+ /**
34
+ * 施設のPOS通知
35
+ */
36
+ export type IHasPOSAsNotification = Pick<IMovieTheater, 'id' | 'typeOf'> & {
37
+ /**
38
+ * 施設の全POSが通知
39
+ */
40
+ hasPOS: IPOS[];
41
+ branchCode?: never;
42
+ hasEntranceGate?: never;
43
+ };
25
44
  /**
26
45
  * 施設通知
27
46
  */
28
- export type IMovieTheaterAsNotification = Pick<IMovieTheater, 'id' | 'additionalProperty' | 'branchCode' | 'hasEntranceGate' | 'kanaName' | 'name' | 'parentOrganization' | 'project' | 'telephone' | 'url' | 'typeOf'> & {
47
+ export type IMovieTheaterAsNotification = Pick<IMovieTheater, 'id' | 'additionalProperty' | 'branchCode' | 'kanaName' | 'name' | 'parentOrganization' | 'project' | 'telephone' | 'url' | 'typeOf'> & {
29
48
  containsPlace?: never;
49
+ hasEntranceGate?: never;
30
50
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "5.4.0-alpha.20",
3
+ "version": "5.4.0-alpha.21",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",