@chevre/factory 4.369.0-alpha.0 → 4.369.0-alpha.2

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.
@@ -19,10 +19,14 @@ export interface ISeatInfoSyncResultAsError {
19
19
  }
20
20
  export type ISeatInfoSyncIn = surfrock.service.seat.factory.ISeatInfoSyncIn;
21
21
  export type ISeatInfoSyncResult = surfrock.service.seat.factory.ISeatInfoSyncResult | ISeatInfoSyncResultAsError;
22
+ export type ISeatInfoSyncCancelIn = surfrock.service.seat.factory.seatInfoSyncCancel.ISeatInfoSyncCancelIn;
23
+ export type ISeatInfoSyncCancelResult = surfrock.service.seat.factory.seatInfoSyncCancel.ISeatInfoSyncCancelResult | ISeatInfoSyncResultAsError;
22
24
  export interface IResult {
23
25
  alterTranResult?: IAlterTranResult[];
24
26
  seatInfoSyncIn?: ISeatInfoSyncIn;
25
27
  seatInfoSyncResult?: ISeatInfoSyncResult;
28
+ seatInfoSyncCancelIn?: ISeatInfoSyncCancelIn;
29
+ seatInfoSyncCancelResult?: ISeatInfoSyncCancelResult;
26
30
  /**
27
31
  * ペイメントカード決済の場合
28
32
  */
@@ -4,12 +4,16 @@ import { ISimpleOrder } from '../../../../order';
4
4
  import * as SendActionFactory from '../../send';
5
5
  export type IAgent = IParticipantAsProject;
6
6
  export type IRecipient = IParticipantAsWebApplication | IParticipantAsPerson | IParticipantAsCustomer;
7
- /**
8
- * オブジェクト
9
- * 「Eメール通知」を送信する
10
- */
11
- export type IObject = IEmailMessage;
12
- export type IResult = any;
7
+ export type IObjectAsEmailMessage = Pick<IEmailMessage, 'about' | 'identifier' | 'name' | 'sender' | 'text' | 'toRecipient' | 'typeOf'>;
8
+ export type IOptimizedObject = Pick<IEmailMessage, 'identifier' | 'typeOf'> & {
9
+ identifier: string;
10
+ text?: never;
11
+ };
12
+ export type IObject = IObjectAsEmailMessage | IOptimizedObject;
13
+ export interface IResult {
14
+ statusCode?: number;
15
+ statusMessage?: string;
16
+ }
13
17
  export type IPurpose = ISimpleOrder;
14
18
  export interface IPotentialActions {
15
19
  }
@@ -28,6 +28,8 @@ export interface ICreativeWork extends Pick<CreativeWorkFactory.ICreativeWork, '
28
28
  toRecipient: IParticipant[];
29
29
  about: IAbout;
30
30
  text: string;
31
+ name?: string;
32
+ identifier?: string;
31
33
  }
32
34
  export interface ICustomizedParticipant {
33
35
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.369.0-alpha.0",
3
+ "version": "4.369.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -56,7 +56,7 @@
56
56
  "@aws-sdk/client-cognito-identity-provider": "3.438.0",
57
57
  "@motionpicture/coa-service": "9.4.0",
58
58
  "@motionpicture/gmo-service": "5.3.0",
59
- "@surfrock/sdk": "1.1.0",
59
+ "@surfrock/sdk": "1.3.0-alpha.0",
60
60
  "@waiter/factory": "2.2.0",
61
61
  "setprototypeof": "1.2.0"
62
62
  },