@chevre/factory 4.369.1 → 4.370.0-alpha.1

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.
@@ -3,7 +3,6 @@ import * as AssetTransactionFactory from '../assetTransaction';
3
3
  import { ITransaction as IReserveTransaction } from '../assetTransaction/reserve';
4
4
  import { AssetTransactionType } from '../assetTransactionType';
5
5
  import { IExtendId } from '../autoGenerated';
6
- import { IClientUser } from '../clientUser';
7
6
  import { IReservation as IBusReservation, IReservationFor as IBusReservationFor } from '../reservation/busReservation';
8
7
  import { IReservation as IEventReservation, IReservationFor as IEventReservationFor } from '../reservation/event';
9
8
  import { IReservation as IReservationPackage } from '../reservation/reservationPackage';
@@ -20,7 +19,6 @@ export interface IResult {
20
19
  */
21
20
  export type IError = any;
22
21
  export interface IObjectWithoutDetail {
23
- clientUser?: IClientUser;
24
22
  reservation?: {
25
23
  /**
26
24
  * 予約IDで取消
@@ -47,7 +45,6 @@ export type IEventReservationAsObject = Pick<IEventReservation, 'id' | 'issuedTh
47
45
  * 取引対象物
48
46
  */
49
47
  export interface IObject extends Pick<IReservationPackage, 'reservationNumber' | 'typeOf'> {
50
- clientUser?: IClientUser;
51
48
  transaction?: IReserveTransactionAsObject;
52
49
  reservations?: IBusReservationAsObject[] | IEventReservationAsObject[];
53
50
  /**
package/lib/order.d.ts CHANGED
@@ -185,7 +185,7 @@ export type IWebApplicationCustomer = Pick<IWebApplication, 'id' | 'typeOf'> & I
185
185
  * 顧客組織としてのカスタマー
186
186
  */
187
187
  export type IOrganizationCustomer = Pick<ICustomerOrganization, 'id' | 'typeOf'> & IProfile;
188
- export type IPersonCustomer = Pick<IPerson, 'id' | 'typeOf' | 'memberOf'> & IProfile;
188
+ export type IPersonCustomer = Pick<IPerson, 'id' | 'typeOf'> & IProfile;
189
189
  /**
190
190
  * カスタマー
191
191
  */
@@ -50,7 +50,7 @@ export interface IAwardAccount {
50
50
  accountNumber: string;
51
51
  }
52
52
  export interface IObject {
53
- clientUser?: IClientUser;
53
+ clientUser?: Omit<IClientUser, 'scope' | 'scopes'>;
54
54
  broker?: OrderFactory.IBroker;
55
55
  customer?: ICustomer;
56
56
  identifier?: OrderFactory.IIdentifier;
@@ -86,7 +86,7 @@ export interface IStartParamsWithoutDetail {
86
86
  id: string;
87
87
  };
88
88
  object: {
89
- clientUser?: IClientUser;
89
+ clientUser?: Omit<IClientUser, 'scope' | 'scopes'>;
90
90
  customer?: ICustomer;
91
91
  passport?: TransactionFactory.IPassportBeforeStart;
92
92
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.369.1",
3
+ "version": "4.370.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",