@chevre/factory 4.219.0 → 4.220.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.
@@ -10,7 +10,6 @@ import { OrderType } from '../../order';
10
10
  import { OrganizationType } from '../../organizationType';
11
11
  import { IMovieTicket } from '../../paymentMethod/paymentCard/movieTicket';
12
12
  import { IPropertyValue } from '../../propertyValue';
13
- import { ISeller } from '../../seller';
14
13
  import { PaymentServiceType } from '../../service/paymentService';
15
14
  import { TransactionType } from '../../transactionType';
16
15
  import { IAttributes as IInformActionAttributes } from '../interact/inform';
@@ -18,7 +17,7 @@ export interface IAgent {
18
17
  id: string;
19
18
  typeOf: OrganizationType.Project;
20
19
  }
21
- export declare type IRecipient = Omit<ISeller, 'branchCode' | 'paymentAccepted'>;
20
+ export import IRecipient = ActionFactory.IParticipantAsSeller;
22
21
  export interface IOrderAsPayPurpose {
23
22
  typeOf: OrderType.Order;
24
23
  confirmationNumber?: string;
@@ -1,15 +1,8 @@
1
1
  import * as ActionFactory from '../../action';
2
2
  import { ActionType } from '../../actionType';
3
- import { ISeller } from '../../seller';
4
3
  import { IAttributes as IInformActionAttributes } from '../interact/inform';
5
4
  import { IPaymentService as IPaymentServiceOnPay, IPayPurpose } from './pay';
6
- /**
7
- * agentはSeller
8
- */
9
- export interface IAgentAsSeller extends Omit<ISeller, 'branchCode' | 'paymentAccepted'> {
10
- name: string;
11
- }
12
- export declare type IAgent = IAgentAsSeller | ActionFactory.IParticipant;
5
+ export declare type IAgent = ActionFactory.IParticipant;
13
6
  export declare type IRecipient = ActionFactory.IParticipant;
14
7
  export declare type IPaymentService = IPaymentServiceOnPay & {
15
8
  refundFee?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.219.0",
3
+ "version": "4.220.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",