@chevre/factory 4.313.0-alpha.20 → 4.313.0-alpha.22

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.
@@ -240,6 +240,7 @@ export interface IObjectSearchConditions {
240
240
  };
241
241
  reservationNumber?: {
242
242
  $eq?: string;
243
+ $in?: string[];
243
244
  };
244
245
  reservations?: {
245
246
  id?: {
@@ -9,6 +9,10 @@ export interface IData {
9
9
  project: {
10
10
  id: string;
11
11
  };
12
+ /**
13
+ * 発券前に予約アクションを実行するかどうか
14
+ */
15
+ reserveIfNotYet: boolean;
12
16
  }
13
17
  export interface IAttributes extends TaskFactory.IAttributes {
14
18
  name: TaskName.OnAuthorizationCreated;
@@ -5,6 +5,10 @@ import { TaskName } from '../taskName';
5
5
  export declare type IUseReservationObject = Pick<IReservationAsObject, 'id' | 'typeOf'>;
6
6
  export declare type IData = Pick<IUseReservationActionAttributes, 'agent' | 'instrument' | 'location' | 'project' | 'typeOf'> & {
7
7
  object: IUseReservationObject;
8
+ /**
9
+ * 発券前に予約アクションを実行するかどうか
10
+ */
11
+ reserveIfNotYet: boolean;
8
12
  };
9
13
  export interface IAttributes extends TaskFactory.IAttributes {
10
14
  name: TaskName.UseReservation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.20",
3
+ "version": "4.313.0-alpha.22",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",