@chevre/factory 4.351.0-alpha.4 → 4.351.0-alpha.5

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.
@@ -21,13 +21,14 @@ export interface IPaymentUrlSettings {
21
21
  useCallback?: boolean;
22
22
  useWebhook?: boolean;
23
23
  }
24
+ export type ICallbackType3ds = 'GET' | 'POST';
24
25
  export interface IProviderCredentials {
25
26
  /**
26
- * GMOショップID
27
+ * ショップID
27
28
  */
28
29
  shopId?: string;
29
30
  /**
30
- * GMOショップパス
31
+ * ショップパス
31
32
  */
32
33
  shopPass?: string;
33
34
  /**
@@ -38,6 +39,10 @@ export interface IProviderCredentials {
38
39
  * 3Dセキュア認証後加盟店戻りURL
39
40
  */
40
41
  returnUrls3ds?: string[];
42
+ /**
43
+ * 3Dセキュアコールバック方法
44
+ */
45
+ callbackType3ds?: ICallbackType3ds;
41
46
  paymentUrl?: IPaymentUrlSettings;
42
47
  /**
43
48
  * 決済カード興行会社コード
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.351.0-alpha.4",
3
+ "version": "4.351.0-alpha.5",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",