@chevre/factory 4.374.0-alpha.4 → 4.374.0-alpha.6

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,12 +6,12 @@ export type ISearchTradeResult = GMOFactory.credit.ISearchTradeResult;
6
6
  export type IAlterTranArgs = GMOFactory.credit.IAlterTranArgs & IOptionalSiteArgs;
7
7
  export type IAlterTranResult = GMOFactory.credit.IAlterTranResult;
8
8
  export interface IDirectionSearchTrade extends RecipeFactory.IHowToDirection {
9
- beforeMedia: ISearchTradeArgs;
10
- afterMedia: ISearchTradeResult;
9
+ beforeMedia?: ISearchTradeArgs;
10
+ afterMedia?: ISearchTradeResult;
11
11
  }
12
12
  export interface IDirectionAlterTran extends RecipeFactory.IHowToDirection {
13
13
  beforeMedia?: IAlterTranArgs;
14
- afterMedia: IAlterTranResult;
14
+ afterMedia?: IAlterTranResult;
15
15
  }
16
16
  export interface IStepSearchTrade extends RecipeFactory.IHowToStep {
17
17
  identifier: RecipeFactory.StepIdentifier.searchTrade;
@@ -7,8 +7,8 @@ export interface ISeatInfoSyncResultAsError {
7
7
  export type ISeatInfoSyncIn = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncIn;
8
8
  export type ISeatInfoSyncResult = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncResult | ISeatInfoSyncResultAsError;
9
9
  export interface IDirectionSeatInfoSync extends RecipeFactory.IHowToDirection {
10
- beforeMedia: ISeatInfoSyncIn;
11
- afterMedia: ISeatInfoSyncResult;
10
+ beforeMedia?: ISeatInfoSyncIn;
11
+ afterMedia?: ISeatInfoSyncResult;
12
12
  }
13
13
  export interface IStepSeatInfoSync extends RecipeFactory.IHowToStep {
14
14
  identifier: RecipeFactory.StepIdentifier.seatInfoSync;
@@ -10,12 +10,12 @@ export type ISearchTradeResult = GMOFactory.credit.ISearchTradeResult;
10
10
  export type IAlterTranArgs = GMOFactory.credit.IAlterTranArgs & IOptionalSiteArgs;
11
11
  export type IAlterTranResult = GMOFactory.credit.IAlterTranResult | IResultAsError;
12
12
  export interface IDirectionSearchTrade extends RecipeFactory.IHowToDirection {
13
- beforeMedia: ISearchTradeArgs;
14
- afterMedia: ISearchTradeResult;
13
+ beforeMedia?: ISearchTradeArgs;
14
+ afterMedia?: ISearchTradeResult;
15
15
  }
16
16
  export interface IDirectionAlterTran extends RecipeFactory.IHowToDirection {
17
17
  beforeMedia?: IAlterTranArgs;
18
- afterMedia: IAlterTranResult;
18
+ afterMedia?: IAlterTranResult;
19
19
  }
20
20
  export interface IStepSearchTrade extends RecipeFactory.IHowToStep {
21
21
  identifier: RecipeFactory.StepIdentifier.searchTrade;
@@ -9,12 +9,12 @@ export type ISeatInfoSyncCancelResult = surfrockFactory.service.seat.seatInfoSyn
9
9
  export type ISeatInfoSyncIn = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncIn;
10
10
  export type ISeatInfoSyncResult = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncResult | IResultAsError;
11
11
  export interface IDirectionSeatInfoSyncCancel extends RecipeFactory.IHowToDirection {
12
- beforeMedia: ISeatInfoSyncCancelIn;
13
- afterMedia: ISeatInfoSyncCancelResult;
12
+ beforeMedia?: ISeatInfoSyncCancelIn;
13
+ afterMedia?: ISeatInfoSyncCancelResult;
14
14
  }
15
15
  export interface IDirectionSeatInfoSync extends RecipeFactory.IHowToDirection {
16
- beforeMedia: ISeatInfoSyncIn;
17
- afterMedia: ISeatInfoSyncResult;
16
+ beforeMedia?: ISeatInfoSyncIn;
17
+ afterMedia?: ISeatInfoSyncResult;
18
18
  }
19
19
  export interface IStepSeatInfoSyncCancel extends RecipeFactory.IHowToStep {
20
20
  identifier: RecipeFactory.StepIdentifier.seatInfoSyncCancel;
@@ -1,7 +1,6 @@
1
1
  import type { passport } from '@waiter/factory';
2
2
  import { AccountType } from '../accountType';
3
3
  import { IAttributes as IOrderActionAttributes } from '../action/trade/order';
4
- import { IPaymentMethodWithoutDetail } from '../assetTransaction/pay';
5
4
  import { IExtendId } from '../autoGenerated';
6
5
  import { IClientUser } from '../clientUser';
7
6
  import { CreativeWorkType } from '../creativeWorkType';
@@ -25,14 +24,11 @@ export type IAgent = TransactionFactory.IAgent & {
25
24
  };
26
25
  export type ICustomer = OrderFactory.ICustomer;
27
26
  export interface IPaymentMethodByPaymentUrl {
27
+ /**
28
+ * 決済採用時に発行済の決済方法ID
29
+ * 決済承認時に指定が可能
30
+ */
28
31
  paymentMethodId: string;
29
- issuedThrough: {
30
- /**
31
- * 発行決済サービスID
32
- */
33
- id: string;
34
- };
35
- paymentMethod: IPaymentMethodWithoutDetail;
36
32
  }
37
33
  /**
38
34
  * 注文特典口座
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.374.0-alpha.4",
3
+ "version": "4.374.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",