@chevre/factory 4.389.0-alpha.11 → 4.389.0-alpha.13

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.
@@ -1,3 +1,4 @@
1
+ import { ActionType } from '../actionType';
1
2
  import { IProvider, ITicket, IUnderName } from '../reservation';
2
3
  import { IIssuedThrough, IReservation as IEventReservation, IReservationFor } from '../reservation/event';
3
4
  import { ReservationStatusType } from '../reservationStatusType';
@@ -81,6 +82,21 @@ export interface IReservation4informUsed {
81
82
  reservationStatus?: never;
82
83
  checkedIn?: never;
83
84
  }
85
+ /**
86
+ * 予約使用アクション通知
87
+ */
88
+ export interface IUseAction {
89
+ object: Pick<IReservation4informUsed, 'id' | 'modifiedTime' | 'reservedTicket' | 'typeOf'>;
90
+ typeOf: ActionType.UseAction;
91
+ project: IProject;
92
+ id: string;
93
+ location?: {
94
+ /**
95
+ * 入場ゲートコード
96
+ */
97
+ identifier: string;
98
+ };
99
+ }
84
100
  /**
85
101
  * 予約作成通知
86
102
  */
@@ -105,5 +121,5 @@ export interface IReservationPackage4informPendingCanceled {
105
121
  reservationStatus: ReservationStatusType.ReservationCancelled;
106
122
  typeOf: ReservationType.ReservationPackage;
107
123
  }
108
- export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IReservation4informUsed | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
124
+ export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IReservation4informUsed | IUseAction | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
109
125
  export {};
@@ -16,6 +16,10 @@ export interface IActionInstrument {
16
16
  createScreeningEventSeriesOnAllLocation?: boolean;
17
17
  }
18
18
  export interface IEventBySchedule {
19
+ /**
20
+ * スケジュールを作成し始める日(Asia/Tokyoでこの日から作成される)
21
+ */
22
+ startDate?: Date;
19
23
  eventSchedule: {
20
24
  id: string;
21
25
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.389.0-alpha.11",
3
+ "version": "4.389.0-alpha.13",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",