@chevre/factory 4.198.0 → 4.201.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
  */
@@ -2,8 +2,9 @@ import * as AccountFactory from '../../../account';
2
2
  import * as ActionFactory from '../../../action';
3
3
  import { ActionType } from '../../../actionType';
4
4
  import * as MoneyTransferTransactionFactory from '../../../assetTransaction/moneyTransfer';
5
+ import { AssetTransactionType } from '../../../assetTransactionType';
5
6
  import { IMonetaryAmount } from '../../../monetaryAmount';
6
- import * as OrderFactory from '../../../order';
7
+ import { ISimpleOrder } from '../../../order';
7
8
  import { IPropertyValue } from '../../../propertyValue';
8
9
  import { TransactionType } from '../../../transactionType';
9
10
  export declare type IAgent = ActionFactory.IParticipant;
@@ -51,16 +52,20 @@ export import IFromLocationBeforeStart = MoneyTransferTransactionFactory.IFromLo
51
52
  export declare type ILocation = IAnonymousLocation | IPaymentMethodLocation | IPaymentCard;
52
53
  export interface IObject {
53
54
  pendingTransaction: IPendingTransaction;
55
+ typeOf: AssetTransactionType.MoneyTransfer;
56
+ }
57
+ export interface IPotentialActions {
58
+ }
59
+ export interface IResult {
54
60
  }
55
- export declare type IResult = any;
56
- export declare type IPotentialActions = any;
57
61
  export interface ITransactionPurpose {
58
62
  typeOf: TransactionType;
59
63
  id: string;
60
64
  }
61
- export declare type IPurpose = ITransactionPurpose | OrderFactory.ISimpleOrder;
65
+ export declare type IPurpose = ITransactionPurpose | ISimpleOrder;
62
66
  export interface IAttributes extends ActionFactory.IAttributes<ActionType.ConfirmAction, IObject, IResult> {
63
67
  typeOf: ActionType.ConfirmAction;
68
+ potentialActions?: IPotentialActions;
64
69
  purpose: IPurpose;
65
70
  /**
66
71
  * 金額
@@ -1,13 +1,12 @@
1
1
  import * as ActionFactory from '../../../action';
2
2
  import { ActionType } from '../../../actionType';
3
- import * as OrderFactory from '../../../order';
3
+ import { IPaymentMethod, ISimpleOrder } from '../../../order';
4
4
  import * as MovieTicketFactory from '../../../paymentMethod/paymentCard/movieTicket';
5
5
  import { IInstrument } from '../../authorize/paymentMethod/any';
6
- import * as PayActionFactory from '../../trade/pay';
7
6
  export import IMovieTicket = MovieTicketFactory.IMovieTicket;
8
7
  export declare type IAgent = ActionFactory.IParticipant;
9
8
  export declare type IRecipient = ActionFactory.IParticipant;
10
- export declare type IPurpose = OrderFactory.ISimpleOrder;
9
+ export declare type IPurpose = ISimpleOrder;
11
10
  export declare enum ObjectType {
12
11
  PaymentMethod = "PaymentMethod"
13
12
  }
@@ -16,29 +15,23 @@ export interface IPaymentService {
16
15
  /**
17
16
  * 決済方法
18
17
  */
19
- paymentMethod: OrderFactory.IPaymentMethod;
18
+ paymentMethod: IPaymentMethod;
20
19
  /**
21
20
  * ムビチケリスト
22
21
  */
23
22
  movieTickets?: IMovieTicket[];
24
23
  }
25
24
  export declare type IObject = IPaymentService[];
26
- /**
27
- * 決済結果
28
- */
25
+ export interface IPotentialActions {
26
+ }
29
27
  export interface IResult {
30
- /**
31
- * クレジットカード売上結果
32
- */
33
- creditCardSales?: PayActionFactory.ICreditCardSales[];
34
- seatInfoSyncIn?: any;
35
- seatInfoSyncResult?: any;
36
28
  }
37
29
  export interface IAttributes extends ActionFactory.IAttributes<ActionType.ConfirmAction, IObject, IResult> {
38
30
  instrument?: IInstrument;
31
+ potentialActions?: IPotentialActions;
39
32
  purpose: IPurpose;
40
33
  }
41
34
  /**
42
- * 決済アクションインターフェース
35
+ * 決済確定アクションインターフェース
43
36
  */
44
37
  export declare type IAction = ActionFactory.IAction<IAttributes>;
@@ -1,16 +1,23 @@
1
1
  import * as ActionFactory from '../../../action';
2
2
  import { ActionType } from '../../../actionType';
3
- import * as OrderFactory from '../../../order';
4
- export declare type IAcceptedOffer = OrderFactory.IAcceptedOffer<any>;
5
- export declare type IObject = any;
6
- export declare type IResult = any;
7
- export declare type IPurpose = OrderFactory.ISimpleOrder;
8
- export declare type IPotentialActions = any;
3
+ import * as RegisterServiceFactory from '../../../assetTransaction/registerService';
4
+ import { AssetTransactionType } from '../../../assetTransactionType';
5
+ import { ISimpleOrder } from '../../../order';
6
+ import * as OrderProgramMembershipFactory from '../../../task/orderProgramMembership';
7
+ export declare type IObject = RegisterServiceFactory.IConfirmParams & {
8
+ typeOf: AssetTransactionType.RegisterService;
9
+ };
10
+ export interface IResult {
11
+ }
12
+ export declare type IPurpose = ISimpleOrder;
13
+ export interface IPotentialActions {
14
+ orderProgramMembership?: OrderProgramMembershipFactory.IAttributes[];
15
+ }
9
16
  export interface IAttributes extends ActionFactory.IAttributes<ActionType.ConfirmAction, IObject, IResult> {
10
17
  potentialActions?: IPotentialActions;
11
18
  purpose: IPurpose;
12
19
  }
13
20
  /**
14
- * サービス登録アクションインターフェース
21
+ * サービス登録確定アクションインターフェース
15
22
  */
16
23
  export declare type IAction = ActionFactory.IAction<IAttributes>;
@@ -2,6 +2,7 @@ import * as COA from '@motionpicture/coa-service';
2
2
  import * as ActionFactory from '../../../action';
3
3
  import * as ReserveTransactionFactory from '../../../assetTransaction/reserve';
4
4
  import { AssetTransactionType } from '../../../assetTransactionType';
5
+ import { ISimpleOrder } from '../../../order';
5
6
  import * as WebAPIFactory from '../../../service/webAPI';
6
7
  import * as ConfirmActionFactory from '../confirm';
7
8
  export declare type IAgent = ActionFactory.IParticipant;
@@ -10,6 +11,7 @@ export declare type IObject4Chevre = ReserveTransactionFactory.IConfirmParams &
10
11
  typeOf: AssetTransactionType.Reserve;
11
12
  };
12
13
  export declare type IObject<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IObject4COA : IObject4Chevre;
14
+ export declare type IPurpose = ISimpleOrder;
13
15
  export interface IResult {
14
16
  }
15
17
  export interface IPotentialActions {
@@ -17,8 +19,9 @@ export interface IPotentialActions {
17
19
  export declare type IInstrument<T extends WebAPIFactory.Identifier> = WebAPIFactory.IService<T>;
18
20
  export interface IAttributes<T extends WebAPIFactory.Identifier> extends ConfirmActionFactory.IAttributes<IObject<T>, IResult> {
19
21
  agent: IAgent;
20
- potentialActions?: IPotentialActions;
21
22
  instrument?: IInstrument<T>;
23
+ potentialActions?: IPotentialActions;
24
+ purpose: IPurpose;
22
25
  }
23
26
  /**
24
27
  * 予約確定アクションインターフェース
@@ -88,6 +88,7 @@ export interface IPotentialActions {
88
88
  informPayment?: IInformPayment[];
89
89
  }
90
90
  export interface IInstrument {
91
+ typeOf: string;
91
92
  seatInfoSyncIn?: any;
92
93
  }
93
94
  /**
@@ -98,7 +99,6 @@ export interface IResult {
98
99
  * クレジットカード売上結果
99
100
  */
100
101
  creditCardSales?: ICreditCardSales[];
101
- seatInfoSyncIn?: any;
102
102
  seatInfoSyncResult?: any;
103
103
  }
104
104
  export interface IAttributes extends ActionFactory.IAttributes<ActionType.PayAction, IObject, IResult> {
@@ -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;
@@ -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: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.198.0",
3
+ "version": "4.201.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",