@chevre/factory 4.352.0-alpha.6 → 4.352.0-alpha.8

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.
package/lib/order.d.ts CHANGED
@@ -112,7 +112,7 @@ export interface IDiscount {
112
112
  discountCurrency: string;
113
113
  }
114
114
  export type IWorkPerformed = Pick<EventReservationFactory.IOptimizedWorkPerformed, 'typeOf' | 'id' | 'identifier' | 'name' | 'duration'>;
115
- export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEvent, 'additionalProperty' | 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'description' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
115
+ export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEvent, 'additionalProperty' | 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
116
116
  workPerformed: IWorkPerformed;
117
117
  };
118
118
  export type ITripAsReservationFor = BusReservationFactory.IReservationFor;
@@ -9,7 +9,7 @@ import { ReservationType } from '../reservationType';
9
9
  export type IOptimizedWorkPerformed = Omit<IWorkPerformed, 'project' | 'name'> & {
10
10
  name?: string | IMultilingualString;
11
11
  };
12
- export type IOptimizedSuperEvent = Pick<ISuperEvent, 'additionalProperty' | 'id' | 'kanaName' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'description' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
12
+ export type IOptimizedSuperEvent = Pick<ISuperEvent, 'additionalProperty' | 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
13
13
  workPerformed: IOptimizedWorkPerformed;
14
14
  };
15
15
  export interface IReservationFor {
@@ -9,10 +9,6 @@ export interface IData {
9
9
  project: {
10
10
  id: string;
11
11
  };
12
- /**
13
- * 発券前に予約アクションを実行するかどうか
14
- */
15
- reserveIfNotYet: boolean;
16
12
  }
17
13
  export interface IAttributes extends TaskFactory.IAttributes {
18
14
  name: TaskName.OnAuthorizationCreated;
@@ -5,10 +5,6 @@ import { TaskName } from '../taskName';
5
5
  export type IUseReservationObject = Pick<IReservationAsObject, 'id' | 'typeOf'>;
6
6
  export type IData = Pick<IUseReservationActionAttributes, 'agent' | 'instrument' | 'location' | 'project' | 'typeOf'> & {
7
7
  object: IUseReservationObject;
8
- /**
9
- * 発券前に予約アクションを実行するかどうか
10
- */
11
- reserveIfNotYet: boolean;
12
8
  };
13
9
  export interface IAttributes extends TaskFactory.IAttributes {
14
10
  name: TaskName.UseReservation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.352.0-alpha.6",
3
+ "version": "4.352.0-alpha.8",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",