@chevre/factory 4.374.0-alpha.5 → 4.374.0-alpha.7
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.
- package/lib/recipe/payCreditCard.d.ts +3 -3
- package/lib/recipe/payMovieTicket.d.ts +2 -2
- package/lib/recipe/publishPaymentUrl.d.ts +4 -4
- package/lib/recipe/refundCreditCard.d.ts +3 -3
- package/lib/recipe/refundMovieTicket.d.ts +4 -4
- package/lib/transaction/placeOrder.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
10
|
-
afterMedia
|
|
9
|
+
beforeMedia?: ISearchTradeArgs;
|
|
10
|
+
afterMedia?: ISearchTradeResult;
|
|
11
11
|
}
|
|
12
12
|
export interface IDirectionAlterTran extends RecipeFactory.IHowToDirection {
|
|
13
13
|
beforeMedia?: IAlterTranArgs;
|
|
14
|
-
afterMedia
|
|
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
|
|
11
|
-
afterMedia
|
|
10
|
+
beforeMedia?: ISeatInfoSyncIn;
|
|
11
|
+
afterMedia?: ISeatInfoSyncResult;
|
|
12
12
|
}
|
|
13
13
|
export interface IStepSeatInfoSync extends RecipeFactory.IHowToStep {
|
|
14
14
|
identifier: RecipeFactory.StepIdentifier.seatInfoSync;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { IEntryTranArgs, IEntryTranResult, IExecTran3dsResult, IExecTranArgs, IExecTranResult } from '../assetTransaction/pay';
|
|
2
2
|
import * as RecipeFactory from '../recipe';
|
|
3
3
|
export interface IDirectionEntryTran extends RecipeFactory.IHowToDirection {
|
|
4
|
-
beforeMedia
|
|
5
|
-
afterMedia
|
|
4
|
+
beforeMedia?: IEntryTranArgs;
|
|
5
|
+
afterMedia?: IEntryTranResult;
|
|
6
6
|
}
|
|
7
7
|
export interface IDirectionExecTran extends RecipeFactory.IHowToDirection {
|
|
8
|
-
beforeMedia
|
|
9
|
-
afterMedia
|
|
8
|
+
beforeMedia?: IExecTranArgs;
|
|
9
|
+
afterMedia?: IExecTranResult | IExecTran3dsResult;
|
|
10
10
|
}
|
|
11
11
|
export interface IStepEntryTran extends RecipeFactory.IHowToStep {
|
|
12
12
|
identifier: RecipeFactory.StepIdentifier.entryTran;
|
|
@@ -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
|
|
14
|
-
afterMedia
|
|
13
|
+
beforeMedia?: ISearchTradeArgs;
|
|
14
|
+
afterMedia?: ISearchTradeResult;
|
|
15
15
|
}
|
|
16
16
|
export interface IDirectionAlterTran extends RecipeFactory.IHowToDirection {
|
|
17
17
|
beforeMedia?: IAlterTranArgs;
|
|
18
|
-
afterMedia
|
|
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
|
|
13
|
-
afterMedia
|
|
12
|
+
beforeMedia?: ISeatInfoSyncCancelIn;
|
|
13
|
+
afterMedia?: ISeatInfoSyncCancelResult;
|
|
14
14
|
}
|
|
15
15
|
export interface IDirectionSeatInfoSync extends RecipeFactory.IHowToDirection {
|
|
16
|
-
beforeMedia
|
|
17
|
-
afterMedia
|
|
16
|
+
beforeMedia?: ISeatInfoSyncIn;
|
|
17
|
+
afterMedia?: ISeatInfoSyncResult;
|
|
18
18
|
}
|
|
19
19
|
export interface IStepSeatInfoSyncCancel extends RecipeFactory.IHowToStep {
|
|
20
20
|
identifier: RecipeFactory.StepIdentifier.seatInfoSyncCancel;
|