@chevre/factory 4.313.0-alpha.46 → 4.313.0-alpha.47

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.
@@ -1,9 +1,9 @@
1
- import * as ActionFactory from '../../../../action';
1
+ import { IParticipantAsCustomer, IParticipantAsPerson, IParticipantAsProject, IParticipantAsWebApplication } from '../../../../action';
2
2
  import { ICreativeWork as IEmailMessage } from '../../../../creativeWork/message/email';
3
3
  import { ISimpleOrder } from '../../../../order';
4
4
  import * as SendActionFactory from '../../send';
5
- export declare type IAgent = ActionFactory.IParticipantAsProject;
6
- export declare type IRecipient = ActionFactory.IParticipant;
5
+ export declare type IAgent = IParticipantAsProject;
6
+ export declare type IRecipient = IParticipantAsWebApplication | IParticipantAsPerson | IParticipantAsCustomer;
7
7
  /**
8
8
  * オブジェクト
9
9
  * 「Eメール通知」を送信する
@@ -17,6 +17,7 @@ export interface IAttributes extends SendActionFactory.IAttributes<IObject, IRes
17
17
  agent: IAgent;
18
18
  purpose: IPurpose;
19
19
  potentialActions?: IPotentialActions;
20
+ recipient: IRecipient;
20
21
  }
21
22
  /**
22
23
  * Eメール送信アクション
@@ -1,4 +1,4 @@
1
- import * as ActionFactory from '../../../action';
1
+ import { IParticipantAsCustomer, IParticipantAsPerson, IParticipantAsProject, IParticipantAsWebApplication } from '../../../action';
2
2
  import * as OrderFactory from '../../../order';
3
3
  import * as OwnershipInfoFactory from '../../../ownershipInfo';
4
4
  import * as WebAPIFactory from '../../../service/webAPI';
@@ -7,8 +7,8 @@ import { IAttributes as IRegisterServiceAttributes } from '../../interact/confir
7
7
  import { IAttributes as IConfirmReservationActionAttributes } from '../../interact/confirm/reservation';
8
8
  import * as SendActionFactory from '../send';
9
9
  import { IAttributes as ISendEmailMessageActionAttributes } from './message/email';
10
- export declare type IAgent = ActionFactory.IParticipantAsPerson | ActionFactory.IParticipantAsProject | ActionFactory.IParticipantAsWebApplication;
11
- export declare type IRecipient = ActionFactory.IParticipant;
10
+ export declare type IAgent = IParticipantAsPerson | IParticipantAsProject | IParticipantAsWebApplication;
11
+ export declare type IRecipient = IParticipantAsWebApplication | IParticipantAsPerson | IParticipantAsCustomer;
12
12
  export declare type IObject = OrderFactory.ISimpleOrder;
13
13
  /**
14
14
  * 注文配送結果としての所有権
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.46",
3
+ "version": "4.313.0-alpha.47",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",