@chevre/factory 4.181.0-alpha.2 → 4.181.0-alpha.3
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/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
13
13
|
- 決済取引のIPendingTransactionに出金元の口座番号情報を追加
|
|
14
14
|
- プロダクトにavailableChannelを追加
|
|
15
15
|
- サービス登録アクションのIObjectを定義
|
|
16
|
+
- 予約取引の適用メンバーシップ指定に発行サービスIDを必須化
|
|
17
|
+
- 予約取引のポイント特典入金先指定に発行サービスIDを必須化
|
|
18
|
+
- サービス登録取引のポイント特典入金先指定に発行サービスIDを必須化
|
|
16
19
|
|
|
17
20
|
### Deprecated
|
|
18
21
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as ReserveActionFactory from '../action/reserve';
|
|
2
|
+
import ActionType from '../actionType';
|
|
2
3
|
import * as TransactionFactory from '../assetTransaction';
|
|
3
4
|
import AssetTransactionType from '../assetTransactionType';
|
|
4
5
|
import { IExtendId } from '../autoGenerated';
|
|
@@ -24,7 +25,16 @@ export interface IAgent {
|
|
|
24
25
|
}
|
|
25
26
|
export interface IAcceptedProgramMembershipUsedAsObject {
|
|
26
27
|
accessCode?: string;
|
|
27
|
-
|
|
28
|
+
/**
|
|
29
|
+
* メンバーシップコード
|
|
30
|
+
*/
|
|
31
|
+
identifier: string;
|
|
32
|
+
issuedThrough: {
|
|
33
|
+
/**
|
|
34
|
+
* メンバーシップ発行サービスID
|
|
35
|
+
*/
|
|
36
|
+
id: string;
|
|
37
|
+
};
|
|
28
38
|
}
|
|
29
39
|
/**
|
|
30
40
|
* トークン化された適用メンバーシップ
|
|
@@ -36,6 +46,7 @@ export declare type ITokenizedAcceptedProgramMembershipUsed = string;
|
|
|
36
46
|
export declare type IAcceptedProgramMembershipUsed = IAcceptedProgramMembershipUsedAsObject | ITokenizedAcceptedProgramMembershipUsed;
|
|
37
47
|
export declare type IAcceptedSubReservation = ISubReservation4eventReservation;
|
|
38
48
|
export interface IAcceptedPointAward {
|
|
49
|
+
typeOf: ActionType.MoneyTransfer;
|
|
39
50
|
recipient?: any;
|
|
40
51
|
/**
|
|
41
52
|
* 特典付与先
|
|
@@ -44,7 +55,13 @@ export interface IAcceptedPointAward {
|
|
|
44
55
|
/**
|
|
45
56
|
* カード番号
|
|
46
57
|
*/
|
|
47
|
-
identifier
|
|
58
|
+
identifier: string;
|
|
59
|
+
issuedThrough: {
|
|
60
|
+
/**
|
|
61
|
+
* カード発行サービスID
|
|
62
|
+
*/
|
|
63
|
+
id: string;
|
|
64
|
+
};
|
|
48
65
|
};
|
|
49
66
|
}
|
|
50
67
|
/**
|
package/lib/factory/product.d.ts
CHANGED