@chevre/factory 4.198.0 → 4.199.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.
|
@@ -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
|
*/
|
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;
|