@chevre/factory 4.181.0-alpha.3 → 4.181.0-alpha.4

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
@@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
16
16
  - 予約取引の適用メンバーシップ指定に発行サービスIDを必須化
17
17
  - 予約取引のポイント特典入金先指定に発行サービスIDを必須化
18
18
  - サービス登録取引のポイント特典入金先指定に発行サービスIDを必須化
19
+ - 通貨転送アクションのペイメントカードインターフェースに発行サービスIDを必須化
19
20
 
20
21
  ### Deprecated
21
22
 
@@ -52,6 +52,12 @@ export interface IPaymentCard {
52
52
  identifier: string;
53
53
  accessCode?: string;
54
54
  hasNoPermit?: boolean;
55
+ issuedThrough: {
56
+ /**
57
+ * カード発行サービスID
58
+ */
59
+ id: string;
60
+ };
55
61
  }
56
62
  /**
57
63
  * 転送元あるいは転送先の場所インターフェース
@@ -20,13 +20,19 @@ export declare type IRecipient = ActionFactory.IParticipant;
20
20
  */
21
21
  export import IAnonymousLocation = AccountFactory.action.moneyTransfer.IAnonymousLocation;
22
22
  /**
23
- * 決済カードインターフェース
23
+ * ペイメントカードインターフェース
24
24
  */
25
25
  export interface IPaymentCard {
26
26
  typeOf: PermitType;
27
27
  identifier: string;
28
28
  accessCode?: string;
29
29
  hasNoPermit?: boolean;
30
+ issuedThrough: {
31
+ /**
32
+ * カード発行サービスID
33
+ */
34
+ id: string;
35
+ };
30
36
  }
31
37
  /**
32
38
  * 転送元あるいは転送先の場所インターフェース
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.181.0-alpha.3",
3
+ "version": "4.181.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",