@chevre/factory 4.197.0 → 4.200.0
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/factory/action/authorize/paymentMethod/any.d.ts +19 -7
- package/lib/factory/assetTransaction/moneyTransfer.d.ts +8 -0
- package/lib/factory/order.d.ts +2 -8
- package/lib/factory/paymentMethod/paymentCard/movieTicket.d.ts +22 -20
- package/lib/factory/task/placeOrder.d.ts +10 -2
- package/lib/factory/task/sendOrder.d.ts +7 -2
- package/package.json +1 -1
|
@@ -110,6 +110,24 @@ export interface IObject {
|
|
|
110
110
|
*/
|
|
111
111
|
movieTickets?: IMovieTicket[];
|
|
112
112
|
}
|
|
113
|
+
export declare type IPaymentServiceOutput = IMovieTicket[];
|
|
114
|
+
/**
|
|
115
|
+
* 決済方法の発行サービス
|
|
116
|
+
*/
|
|
117
|
+
export interface IPaymentMethodIssuedThrough {
|
|
118
|
+
/**
|
|
119
|
+
* 決済サービスタイプ
|
|
120
|
+
*/
|
|
121
|
+
typeOf: PaymentServiceType;
|
|
122
|
+
/**
|
|
123
|
+
* サービスID
|
|
124
|
+
*/
|
|
125
|
+
id: string;
|
|
126
|
+
/**
|
|
127
|
+
* 決済サービスによって発行された決済カード
|
|
128
|
+
*/
|
|
129
|
+
serviceOutput?: IPaymentServiceOutput;
|
|
130
|
+
}
|
|
113
131
|
export interface IResult {
|
|
114
132
|
/**
|
|
115
133
|
* The identifier for the account the payment will be applied to.
|
|
@@ -144,13 +162,7 @@ export interface IResult {
|
|
|
144
162
|
*/
|
|
145
163
|
additionalProperty?: IPropertyValue<string>[];
|
|
146
164
|
typeOf: ResultType;
|
|
147
|
-
issuedThrough:
|
|
148
|
-
typeOf: PaymentServiceType;
|
|
149
|
-
/**
|
|
150
|
-
* 発行決済サービスID
|
|
151
|
-
*/
|
|
152
|
-
id: string;
|
|
153
|
-
};
|
|
165
|
+
issuedThrough: IPaymentMethodIssuedThrough;
|
|
154
166
|
/**
|
|
155
167
|
* 転送元(PaymentCard決済)
|
|
156
168
|
*/
|
|
@@ -59,6 +59,10 @@ export interface IObject {
|
|
|
59
59
|
*/
|
|
60
60
|
description?: string;
|
|
61
61
|
pendingTransaction?: IPendingTransaction;
|
|
62
|
+
/**
|
|
63
|
+
* 負の残高でも強制的に出金するかどうか
|
|
64
|
+
*/
|
|
65
|
+
force?: boolean;
|
|
62
66
|
}
|
|
63
67
|
export declare type IObjectWithoutDetail = IObject;
|
|
64
68
|
export interface IObjectBeforeStart {
|
|
@@ -79,6 +83,10 @@ export interface IObjectBeforeStart {
|
|
|
79
83
|
*/
|
|
80
84
|
description?: string;
|
|
81
85
|
pendingTransaction?: IPendingTransaction;
|
|
86
|
+
/**
|
|
87
|
+
* 負の残高でも強制的に出金するかどうか
|
|
88
|
+
*/
|
|
89
|
+
force?: boolean;
|
|
82
90
|
}
|
|
83
91
|
export interface IStartParamsWithoutDetail extends TransactionFactory.IStartParams<AssetTransactionType.MoneyTransfer, IAgent, IRecipient, IObjectWithoutDetail> {
|
|
84
92
|
recipient: IRecipient;
|
package/lib/factory/order.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IParticipant } from './action';
|
|
2
|
+
import { IPaymentMethodIssuedThrough } from './action/authorize/paymentMethod/any';
|
|
2
3
|
import { IPaymentCard } from './action/interact/confirm/moneyTransfer';
|
|
3
4
|
import { ActionType } from './actionType';
|
|
4
5
|
import { AssetTransactionType } from './assetTransactionType';
|
|
@@ -21,7 +22,6 @@ import { IProgramMembershipUsedSearchConditions } from './reservation';
|
|
|
21
22
|
import * as EventReservationFactory from './reservation/event';
|
|
22
23
|
import { ReservationType } from './reservationType';
|
|
23
24
|
import { ISeller as ISellerOrganization } from './seller';
|
|
24
|
-
import { PaymentServiceType } from './service/paymentService';
|
|
25
25
|
import { IServiceType } from './serviceType';
|
|
26
26
|
import { SortType } from './sortType';
|
|
27
27
|
import { IThing } from './thing';
|
|
@@ -61,13 +61,7 @@ export interface IPaymentMethod {
|
|
|
61
61
|
* 追加特性
|
|
62
62
|
*/
|
|
63
63
|
additionalProperty: IPropertyValue<string>[];
|
|
64
|
-
issuedThrough:
|
|
65
|
-
typeOf: PaymentServiceType;
|
|
66
|
-
/**
|
|
67
|
-
* 発行決済サービスID
|
|
68
|
-
*/
|
|
69
|
-
id: string;
|
|
70
|
-
};
|
|
64
|
+
issuedThrough: IPaymentMethodIssuedThrough;
|
|
71
65
|
}
|
|
72
66
|
/**
|
|
73
67
|
* 割引インターフェース
|
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
import { EventType } from '../../eventType';
|
|
2
2
|
import { ISeat } from '../../reservation';
|
|
3
3
|
import { IPaymentCard } from '../paymentCard';
|
|
4
|
+
export interface IReservationFor {
|
|
5
|
+
typeOf: EventType.ScreeningEvent;
|
|
6
|
+
id: string;
|
|
7
|
+
}
|
|
8
|
+
export interface IServiceOutput {
|
|
9
|
+
/**
|
|
10
|
+
* 予約対象イベント
|
|
11
|
+
*/
|
|
12
|
+
reservationFor: IReservationFor;
|
|
13
|
+
/**
|
|
14
|
+
* 予約チケット
|
|
15
|
+
*/
|
|
16
|
+
reservedTicket: {
|
|
17
|
+
ticketedSeat: ISeat;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
4
20
|
export interface IAttributes extends IPaymentCard {
|
|
5
21
|
/**
|
|
6
|
-
* 購入管理番号
|
|
22
|
+
* 購入管理番号
|
|
7
23
|
*/
|
|
8
24
|
identifier: string;
|
|
9
25
|
/**
|
|
10
|
-
* pinコード
|
|
26
|
+
* pinコード
|
|
11
27
|
*/
|
|
12
|
-
accessCode
|
|
28
|
+
accessCode?: string;
|
|
13
29
|
/**
|
|
14
30
|
* 券種区分
|
|
15
31
|
*/
|
|
16
32
|
serviceType: string;
|
|
17
33
|
/**
|
|
18
|
-
*
|
|
34
|
+
* 利用対象予約
|
|
19
35
|
*/
|
|
20
|
-
serviceOutput:
|
|
21
|
-
/**
|
|
22
|
-
* 予約対象イベント
|
|
23
|
-
*/
|
|
24
|
-
reservationFor: {
|
|
25
|
-
typeOf: EventType.ScreeningEvent;
|
|
26
|
-
id: string;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* 予約チケット
|
|
30
|
-
*/
|
|
31
|
-
reservedTicket: {
|
|
32
|
-
ticketedSeat: ISeat;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
36
|
+
serviceOutput: IServiceOutput;
|
|
35
37
|
}
|
|
36
38
|
/**
|
|
37
|
-
*
|
|
39
|
+
* MovieTicket決済カードインターフェース
|
|
38
40
|
*/
|
|
39
41
|
export interface IMovieTicket extends IAttributes {
|
|
40
42
|
typeOf: string;
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IPotentialActions as IOrderActionPotentialActions } from '../action/trade/order';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
+
import { IProject } from '../project';
|
|
3
4
|
import * as TaskFactory from '../task';
|
|
4
5
|
import { TaskName } from '../taskName';
|
|
5
|
-
export
|
|
6
|
+
export interface IData {
|
|
7
|
+
project: IProject;
|
|
8
|
+
object: {
|
|
9
|
+
confirmationNumber: string;
|
|
10
|
+
orderNumber: string;
|
|
11
|
+
};
|
|
12
|
+
potentialActions?: IOrderActionPotentialActions;
|
|
13
|
+
}
|
|
6
14
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
7
15
|
name: TaskName.PlaceOrder;
|
|
8
16
|
data: IData;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as SendOrderActionFactory from '../action/transfer/send/order';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
+
import { IProject } from '../project';
|
|
3
4
|
import * as TaskFactory from '../task';
|
|
4
5
|
import { TaskName } from '../taskName';
|
|
5
|
-
export
|
|
6
|
+
export interface IData {
|
|
7
|
+
project: IProject;
|
|
8
|
+
object: SendOrderActionFactory.IObject;
|
|
9
|
+
potentialActions?: SendOrderActionFactory.IPotentialActions;
|
|
10
|
+
}
|
|
6
11
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
7
12
|
name: TaskName.SendOrder;
|
|
8
13
|
data: IData;
|