@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
|
@@ -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
|
* 転送元あるいは転送先の場所インターフェース
|