@chevre/factory 4.353.0-alpha.0 → 4.353.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.
@@ -6,7 +6,7 @@ export type IRecipient = ActionFactory.IParticipantAsSeller;
6
6
  /**
7
7
  * 返却対象は入金アクション
8
8
  */
9
- export type IObject = MoneyTransferActionFactory.IAction;
9
+ export type IObject = Pick<MoneyTransferActionFactory.IAction, 'object' | 'typeOf'>;
10
10
  export type IResult = any;
11
11
  export interface IPotentialActions {
12
12
  }
@@ -3,7 +3,6 @@ import * as OrderFactory from '../../../order';
3
3
  import { IAttributes as IReturnPaymentMethodActionAttributes } from '../../transfer/return/paymentMethod';
4
4
  import * as ReturnActionFactory from '../return';
5
5
  import { IAttributes as ISendEmailMessageActionAttributes } from '../send/message/email';
6
- import * as ReturnMoneyTransferActionFactory from './moneyTransfer';
7
6
  import * as ReturnPointAwardActionFactory from './pointAward';
8
7
  export type IAgent = OrderFactory.IParticipantAsReturner;
9
8
  export type IRecipient = ActionFactory.IParticipantAsSeller;
@@ -23,10 +22,6 @@ export interface IPotentialActions {
23
22
  * refundから移行(2022-08-10~)
24
23
  */
25
24
  returnPaymentMethod: IReturnPaymentMethodActionAttributes[];
26
- /**
27
- * 入金返却アクション
28
- */
29
- returnMoneyTransfer: ReturnMoneyTransferActionFactory.IAttributes[];
30
25
  /**
31
26
  * ポイントインセンティブ返却アクション
32
27
  */
@@ -184,9 +184,7 @@ export interface IConfirmParams {
184
184
  */
185
185
  result?: IResultParams;
186
186
  }
187
- export type IOrderAsResult = OrderFactory.IOrder & {
188
- acceptedOffers: OrderFactory.IAcceptedOffer<OrderFactory.IItemOffered>[];
189
- };
187
+ export type IOrderAsResult = OrderFactory.IOrder & {};
190
188
  export interface IAuthorizeActionAsResult {
191
189
  id: string;
192
190
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.353.0-alpha.0",
3
+ "version": "4.353.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",