@chevre/factory 4.389.0 → 4.390.0-alpha.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.
@@ -67,26 +67,25 @@ export interface IReservationPackage4informCheckedIn {
67
67
  id?: never;
68
68
  reservationStatus?: never;
69
69
  }
70
- /**
71
- * 予約使用通知
72
- */
73
- export interface IReservation4informUsed {
70
+ interface IUsedReservation {
74
71
  typeOf: ReservationType.EventReservation;
75
- project: IProject;
76
72
  id: string;
77
- attended: boolean;
73
+ /**
74
+ * 初使用時のみ通知される
75
+ */
78
76
  modifiedTime?: Date;
79
- reservedTicket: {
77
+ reservedTicket?: {
78
+ /**
79
+ * 初使用時のみ通知される
80
+ */
80
81
  dateUsed?: Date;
81
82
  };
82
- reservationStatus?: never;
83
- checkedIn?: never;
84
83
  }
85
84
  /**
86
85
  * 予約使用アクション通知
87
86
  */
88
87
  export interface IUseAction {
89
- object: Pick<IReservation4informUsed, 'id' | 'modifiedTime' | 'reservedTicket' | 'typeOf'>;
88
+ object: Pick<IUsedReservation, 'id' | 'modifiedTime' | 'reservedTicket' | 'typeOf'>;
90
89
  typeOf: ActionType.UseAction;
91
90
  project: IProject;
92
91
  id: string;
@@ -121,5 +120,5 @@ export interface IReservationPackage4informPendingCanceled {
121
120
  reservationStatus: ReservationStatusType.ReservationCancelled;
122
121
  typeOf: ReservationType.ReservationPackage;
123
122
  }
124
- export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IReservation4informUsed | IUseAction | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
123
+ export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IUseAction | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
125
124
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.389.0",
3
+ "version": "4.390.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",