@portone/browser-sdk 0.1.0 → 0.1.2
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/dist/v2/entity/CardPromotion.d.ts +21 -0
- package/dist/v2/entity/EasyPayProvider.d.ts +33 -33
- package/dist/v2/entity/Product.d.ts +0 -2
- package/dist/v2/entity/bypass/IssueBillingKeyAndPayBypass.d.ts +5 -0
- package/dist/v2/entity/bypass/IssueBillingKeyBypass.d.ts +21 -16
- package/dist/v2/entity/bypass/PaymentBypass.d.ts +42 -32
- package/dist/v2/entity/bypass/issueBillingKey/Galaxia.d.ts +9 -0
- package/dist/v2/entity/bypass/issueBillingKey/index.d.ts +1 -0
- package/dist/v2/entity/bypass/issueBillingKeyAndPay/Galaxia.d.ts +9 -0
- package/dist/v2/entity/bypass/issueBillingKeyAndPay/PayletterGlobal.d.ts +2 -2
- package/dist/v2/entity/bypass/issueBillingKeyAndPay/index.d.ts +1 -0
- package/dist/v2/entity/bypass/payment/Galaxia.d.ts +9 -0
- package/dist/v2/entity/bypass/payment/MobiliansV2.d.ts +147 -0
- package/dist/v2/entity/bypass/payment/MobiliansV2HiddenOptions.d.ts +73 -0
- package/dist/v2/entity/bypass/payment/MobiliansV2PayOptions.d.ts +178 -0
- package/dist/v2/entity/bypass/payment/PayletterGlobal.d.ts +2 -2
- package/dist/v2/entity/bypass/payment/index.d.ts +4 -0
- package/dist/v2/entity/index.d.ts +1 -1
- package/dist/v2/request/LoadPaymentUIRequest.d.ts +1 -1
- package/dist/v2/request/PaymentRequestBase.d.ts +5 -5
- package/dist/v2/request/PaymentRequestUnionCard.d.ts +7 -0
- package/dist/v2.cjs +354 -87
- package/dist/v2.js +334 -87
- package/package.json +2 -2
- package/dist/v2/entity/PgProvider.d.ts +0 -53
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* **카드 프로모션 정보**
|
|
3
|
+
*
|
|
4
|
+
* 카드사 다이렉트 호출 시 적용할 카드사 할인 쿠폰 정보입니다.
|
|
5
|
+
*
|
|
6
|
+
* 현재 KCP\_V2 채널에서만 사용 가능합니다.
|
|
7
|
+
*/
|
|
8
|
+
export type CardPromotion = {
|
|
9
|
+
/**
|
|
10
|
+
* **프로모션 ID**
|
|
11
|
+
*
|
|
12
|
+
* 카드사에서 제공하는 프로모션 식별자입니다.
|
|
13
|
+
*/
|
|
14
|
+
promotionId: string;
|
|
15
|
+
/**
|
|
16
|
+
* **할인 금액**
|
|
17
|
+
*
|
|
18
|
+
* 프로모션으로 할인받을 금액입니다.
|
|
19
|
+
*/
|
|
20
|
+
discountAmount: number;
|
|
21
|
+
};
|
|
@@ -3,63 +3,53 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const EasyPayProvider: {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* 네이버페이
|
|
7
7
|
*
|
|
8
8
|
* - 토스페이먼츠
|
|
9
9
|
* - 나이스페이먼츠
|
|
10
10
|
* - KG이니시스
|
|
11
11
|
* - 스마트로
|
|
12
|
+
* - NHN KCP
|
|
12
13
|
* - KSNET
|
|
13
14
|
* - 한국결제네트웍스
|
|
14
|
-
* - 웰컴페이먼츠
|
|
15
15
|
*/
|
|
16
|
-
readonly
|
|
16
|
+
readonly NAVERPAY: "NAVERPAY";
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* 카카오페이
|
|
19
19
|
*
|
|
20
20
|
* - 토스페이먼츠
|
|
21
21
|
* - 나이스페이먼츠
|
|
22
22
|
* - KG이니시스
|
|
23
|
-
* - NHN KCP
|
|
24
23
|
* - 스마트로
|
|
25
|
-
* - 한국결제네트웍스
|
|
26
|
-
*/
|
|
27
|
-
readonly SAMSUNGPAY: "SAMSUNGPAY";
|
|
28
|
-
/**
|
|
29
|
-
* SSG페이
|
|
30
|
-
*
|
|
31
|
-
* - 토스페이먼츠
|
|
32
|
-
* - 나이스페이먼츠
|
|
33
|
-
* - KG이니시스
|
|
34
24
|
* - NHN KCP
|
|
35
25
|
* - KSNET
|
|
26
|
+
* - 한국결제네트웍스
|
|
27
|
+
* - 웰컴페이먼츠
|
|
36
28
|
*/
|
|
37
|
-
readonly
|
|
29
|
+
readonly KAKAOPAY: "KAKAOPAY";
|
|
38
30
|
/**
|
|
39
|
-
*
|
|
31
|
+
* 토스페이
|
|
40
32
|
*
|
|
41
33
|
* - 토스페이먼츠
|
|
42
|
-
* - 나이스페이먼츠
|
|
43
34
|
* - KG이니시스
|
|
44
|
-
* - 스마트로
|
|
45
35
|
* - NHN KCP
|
|
46
|
-
* -
|
|
36
|
+
* - 스마트로
|
|
47
37
|
* - 한국결제네트웍스
|
|
48
38
|
* - 웰컴페이먼츠
|
|
49
39
|
*/
|
|
50
|
-
readonly
|
|
40
|
+
readonly TOSSPAY: "TOSSPAY";
|
|
51
41
|
/**
|
|
52
|
-
*
|
|
42
|
+
* 페이코
|
|
53
43
|
*
|
|
54
44
|
* - 토스페이먼츠
|
|
55
45
|
* - 나이스페이먼츠
|
|
56
46
|
* - KG이니시스
|
|
57
47
|
* - 스마트로
|
|
58
|
-
* - NHN KCP
|
|
59
48
|
* - KSNET
|
|
60
49
|
* - 한국결제네트웍스
|
|
50
|
+
* - 웰컴페이먼츠
|
|
61
51
|
*/
|
|
62
|
-
readonly
|
|
52
|
+
readonly PAYCO: "PAYCO";
|
|
63
53
|
/**
|
|
64
54
|
* 차이페이
|
|
65
55
|
*/
|
|
@@ -80,22 +70,26 @@ export declare const EasyPayProvider: {
|
|
|
80
70
|
*/
|
|
81
71
|
readonly KPAY: "KPAY";
|
|
82
72
|
/**
|
|
83
|
-
*
|
|
73
|
+
* SSG페이
|
|
84
74
|
*
|
|
85
75
|
* - 토스페이먼츠
|
|
76
|
+
* - 나이스페이먼츠
|
|
86
77
|
* - KG이니시스
|
|
87
78
|
* - NHN KCP
|
|
88
|
-
* -
|
|
89
|
-
* - 한국결제네트웍스
|
|
90
|
-
* - 웰컴페이먼츠
|
|
79
|
+
* - KSNET
|
|
91
80
|
*/
|
|
92
|
-
readonly
|
|
81
|
+
readonly SSGPAY: "SSGPAY";
|
|
93
82
|
/**
|
|
94
|
-
*
|
|
83
|
+
* 삼성페이
|
|
95
84
|
*
|
|
96
85
|
* - 토스페이먼츠
|
|
86
|
+
* - 나이스페이먼츠
|
|
87
|
+
* - KG이니시스
|
|
88
|
+
* - NHN KCP
|
|
89
|
+
* - 스마트로
|
|
90
|
+
* - 한국결제네트웍스
|
|
97
91
|
*/
|
|
98
|
-
readonly
|
|
92
|
+
readonly SAMSUNGPAY: "SAMSUNGPAY";
|
|
99
93
|
/**
|
|
100
94
|
* 애플페이
|
|
101
95
|
*
|
|
@@ -106,17 +100,23 @@ export declare const EasyPayProvider: {
|
|
|
106
100
|
*/
|
|
107
101
|
readonly APPLEPAY: "APPLEPAY";
|
|
108
102
|
/**
|
|
109
|
-
*
|
|
103
|
+
* LG페이
|
|
110
104
|
*
|
|
111
|
-
* -
|
|
105
|
+
* - 토스페이먼츠
|
|
112
106
|
*/
|
|
113
|
-
readonly
|
|
107
|
+
readonly LGPAY: "LGPAY";
|
|
114
108
|
/**
|
|
115
109
|
* SK페이
|
|
116
110
|
*
|
|
117
111
|
* - 나이스페이먼츠
|
|
118
112
|
*/
|
|
119
113
|
readonly SKPAY: "SKPAY";
|
|
114
|
+
/**
|
|
115
|
+
* 핀페이
|
|
116
|
+
*
|
|
117
|
+
* - 스마트로
|
|
118
|
+
*/
|
|
119
|
+
readonly PINPAY: "PINPAY";
|
|
120
120
|
/**
|
|
121
121
|
* 토스 브랜드페이
|
|
122
122
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WelcomeIssueBillingKeyAndPayBypass } from './issueBillingKeyAndPay/Welcome.js';
|
|
2
2
|
import type { PayletterGlobalIssueBillingKeyAndPayBypass } from './issueBillingKeyAndPay/PayletterGlobal.js';
|
|
3
3
|
import type { EximbayV2IssueBillingKeyAndPayBypass } from './issueBillingKeyAndPay/EximbayV2.js';
|
|
4
|
+
import type { GalaxiaIssueBillingKeyAndPayBypass } from './issueBillingKeyAndPay/Galaxia.js';
|
|
4
5
|
export type IssueBillingKeyAndPayBypass = {
|
|
5
6
|
/**
|
|
6
7
|
* **웰컴페이먼츠 bypass 파라미터**
|
|
@@ -14,4 +15,8 @@ export type IssueBillingKeyAndPayBypass = {
|
|
|
14
15
|
* **엑심베이 bypass 파라미터**
|
|
15
16
|
*/
|
|
16
17
|
eximbay_v2?: EximbayV2IssueBillingKeyAndPayBypass | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* **갤럭시아 bypass 파라미터**
|
|
20
|
+
*/
|
|
21
|
+
galaxia?: GalaxiaIssueBillingKeyAndPayBypass | undefined;
|
|
17
22
|
};
|
|
@@ -1,37 +1,42 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { InicisV2IssueBillingKeyBypass } from './issueBillingKey/InicisV2.js';
|
|
2
|
+
import type { KcpV2IssueBillingKeyBypass } from './issueBillingKey/KcpV2.js';
|
|
2
3
|
import type { SmartroV2IssueBillingKeyBypass } from './issueBillingKey/SmartroV2.js';
|
|
3
|
-
import type { NaverpayIssueBillingKeyBypass } from './issueBillingKey/Naverpay.js';
|
|
4
4
|
import type { WelcomeIssueBillingKeyBypass } from './issueBillingKey/Welcome.js';
|
|
5
|
+
import type { GalaxiaIssueBillingKeyBypass } from './issueBillingKey/Galaxia.js';
|
|
6
|
+
import type { NaverpayIssueBillingKeyBypass } from './issueBillingKey/Naverpay.js';
|
|
7
|
+
import type { KakaopayPaymentBypass } from './payment/Kakaopay.js';
|
|
5
8
|
import type { TosspayV2IssueBillingKeyBypass } from './issueBillingKey/TosspayV2.js';
|
|
6
|
-
import type { InicisV2IssueBillingKeyBypass } from './issueBillingKey/InicisV2.js';
|
|
7
|
-
import type { KcpV2IssueBillingKeyBypass } from './issueBillingKey/KcpV2.js';
|
|
8
9
|
export type IssueBillingKeyBypass = {
|
|
9
10
|
/**
|
|
10
|
-
*
|
|
11
|
+
* **KG이니시스 bypass 파라미터**
|
|
11
12
|
*/
|
|
12
|
-
|
|
13
|
+
inicis_v2?: InicisV2IssueBillingKeyBypass | undefined;
|
|
13
14
|
/**
|
|
14
|
-
*
|
|
15
|
+
* **KCP bypass 파라미터**
|
|
15
16
|
*/
|
|
16
|
-
|
|
17
|
+
kcp_v2?: KcpV2IssueBillingKeyBypass | undefined;
|
|
17
18
|
/**
|
|
18
|
-
*
|
|
19
|
+
* **스마트로 bypass 파라미터**
|
|
19
20
|
*/
|
|
20
|
-
|
|
21
|
+
smartro_v2?: SmartroV2IssueBillingKeyBypass | undefined;
|
|
21
22
|
/**
|
|
22
23
|
* **웰컴페이먼츠 bypass 파라미터**
|
|
23
24
|
*/
|
|
24
25
|
welcome?: WelcomeIssueBillingKeyBypass | undefined;
|
|
25
26
|
/**
|
|
26
|
-
*
|
|
27
|
+
* **갤럭시아 bypass 파라미터**
|
|
27
28
|
*/
|
|
28
|
-
|
|
29
|
+
galaxia?: GalaxiaIssueBillingKeyBypass | undefined;
|
|
29
30
|
/**
|
|
30
|
-
*
|
|
31
|
+
* **네이버페이 bypass 파라미터**
|
|
31
32
|
*/
|
|
32
|
-
|
|
33
|
+
naverpay?: NaverpayIssueBillingKeyBypass | undefined;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* 카카오페이 bypass 파라미터
|
|
35
36
|
*/
|
|
36
|
-
|
|
37
|
+
kakaopay?: KakaopayPaymentBypass | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* **토스페이 bypass 파라미터**
|
|
40
|
+
*/
|
|
41
|
+
tosspay_v2?: TosspayV2IssueBillingKeyBypass | undefined;
|
|
37
42
|
};
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
import type { TosspaymentsPaymentBypass } from './payment/Tosspayments.js';
|
|
2
|
-
import type {
|
|
2
|
+
import type { NiceV2PaymentBypass } from './payment/NiceV2.js';
|
|
3
3
|
import type { PaypalV2PaymentBypass } from './payment/PaypalV2.js';
|
|
4
|
-
import type {
|
|
4
|
+
import type { InicisV2Bypass } from './payment/InicisV2.js';
|
|
5
|
+
import type { KcpV2Bypass } from './payment/KcpV2.js';
|
|
5
6
|
import type { SmartroV2PaymentBypass } from './payment/SmartroV2.js';
|
|
6
|
-
import type {
|
|
7
|
-
import type { NiceV2PaymentBypass } from './payment/NiceV2.js';
|
|
8
|
-
import type { TossBrandpayPaymentBypass } from './payment/TossBrandpay.js';
|
|
7
|
+
import type { KsnetPaymentBypass } from './payment/Ksnet.js';
|
|
9
8
|
import type { WelcomePaymentBypass } from './payment/Welcome.js';
|
|
10
|
-
import type { TosspayV2PaymentBypass } from './payment/TosspayV2.js';
|
|
11
|
-
import type { InicisV2Bypass } from './payment/InicisV2.js';
|
|
12
9
|
import type { KpnBypass } from './payment/Kpn.js';
|
|
13
|
-
import type {
|
|
10
|
+
import type { NaverpayPaymentBypass } from './payment/Naverpay.js';
|
|
11
|
+
import type { KakaopayPaymentBypass } from './payment/Kakaopay.js';
|
|
12
|
+
import type { TosspayV2PaymentBypass } from './payment/TosspayV2.js';
|
|
13
|
+
import type { TossBrandpayPaymentBypass } from './payment/TossBrandpay.js';
|
|
14
14
|
import type { HyphenBypass } from './payment/Hyphen.js';
|
|
15
15
|
import type { EximbayV2Bypass } from './payment/EximbayV2.js';
|
|
16
|
+
import type { GalaxiaPaymentBypass } from './payment/Galaxia.js';
|
|
16
17
|
import type { InicisJpBypass } from './payment/InicisJp.js';
|
|
17
18
|
import type { PayletterGlobalBypass } from './payment/PayletterGlobal.js';
|
|
19
|
+
import type { MobiliansV2Bypass } from './payment/MobiliansV2.js';
|
|
18
20
|
/**
|
|
19
21
|
* **PG사 결제창 호출 시 PG사로 그대로 bypass할 값들의 모음**
|
|
20
22
|
*/
|
|
@@ -24,55 +26,55 @@ export type PaymentBypass = {
|
|
|
24
26
|
*/
|
|
25
27
|
tosspayments?: TosspaymentsPaymentBypass | undefined;
|
|
26
28
|
/**
|
|
27
|
-
*
|
|
29
|
+
* (신)나이스페이먼츠 bypass 파라미터
|
|
28
30
|
*/
|
|
29
|
-
|
|
31
|
+
nice_v2?: NiceV2PaymentBypass | undefined;
|
|
30
32
|
/**
|
|
31
33
|
* **Paypal bypass 파라미터**
|
|
32
34
|
*/
|
|
33
35
|
paypal_v2?: PaypalV2PaymentBypass | undefined;
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* 스마트로 V2 bypass 파라미터
|
|
37
|
+
* KG이니시스 bypass 파라미터
|
|
38
|
+
*
|
|
39
|
+
* KG이니시스는 PC 결제 모듈과 모바일 결제 모듈이 분리되어 있기 때문에 bypass 파라미터 또한 PC용과 모바일용이 분리되어 있습니다.
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
inicis_v2?: InicisV2Bypass | undefined;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* NHN KCP bypass 파라미터
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
kcp_v2?: KcpV2Bypass | undefined;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* 스마트로 V2 bypass 파라미터
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
smartro_v2?: SmartroV2PaymentBypass | undefined;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* KSNET bypass 파라미터
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
ksnet?: KsnetPaymentBypass | undefined;
|
|
54
54
|
/**
|
|
55
55
|
* 웰컴페이먼츠 bypass 파라미터
|
|
56
56
|
*/
|
|
57
57
|
welcome?: WelcomePaymentBypass | undefined;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* KPN bypass 파라미터
|
|
60
60
|
*/
|
|
61
|
-
|
|
61
|
+
kpn?: KpnBypass | undefined;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
* KG이니시스는 PC 결제 모듈과 모바일 결제 모듈이 분리되어 있기 때문에 bypass 파라미터 또한 PC용과 모바일용이 분리되어 있습니다.
|
|
63
|
+
* 네이버페이 bypass 파라미터
|
|
66
64
|
*/
|
|
67
|
-
|
|
65
|
+
naverpay?: NaverpayPaymentBypass | undefined;
|
|
68
66
|
/**
|
|
69
|
-
*
|
|
67
|
+
* 카카오페이 bypass 파라미터
|
|
70
68
|
*/
|
|
71
|
-
|
|
69
|
+
kakaopay?: KakaopayPaymentBypass | undefined;
|
|
72
70
|
/**
|
|
73
|
-
*
|
|
71
|
+
* 토스페이 bypass 파라미터
|
|
74
72
|
*/
|
|
75
|
-
|
|
73
|
+
tosspay_v2?: TosspayV2PaymentBypass | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* 토스 브랜드페이 bypass 파라미터
|
|
76
|
+
*/
|
|
77
|
+
toss_brandpay?: TossBrandpayPaymentBypass | undefined;
|
|
76
78
|
/**
|
|
77
79
|
* 하이픈 bypass 파라미터
|
|
78
80
|
*/
|
|
@@ -81,6 +83,10 @@ export type PaymentBypass = {
|
|
|
81
83
|
* 엑심베이 V2 bypass 파라미터
|
|
82
84
|
*/
|
|
83
85
|
eximbay_v2?: EximbayV2Bypass | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* 갤럭시아 bypass 파라미터
|
|
88
|
+
*/
|
|
89
|
+
galaxia?: GalaxiaPaymentBypass | undefined;
|
|
84
90
|
/**
|
|
85
91
|
* 이니시스 일본 bypass 파라미터
|
|
86
92
|
*/
|
|
@@ -89,4 +95,8 @@ export type PaymentBypass = {
|
|
|
89
95
|
* 페이레터 해외결제 bypass 파라미터
|
|
90
96
|
*/
|
|
91
97
|
payletter_global?: PayletterGlobalBypass | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* 모빌리언스 V2 bypass 파라미터
|
|
100
|
+
*/
|
|
101
|
+
mobilians_v2?: MobiliansV2Bypass | undefined;
|
|
92
102
|
};
|
|
@@ -4,6 +4,7 @@ export * from './KcpV2.js';
|
|
|
4
4
|
export * from './Naverpay.js';
|
|
5
5
|
export * from './TosspayV2.js';
|
|
6
6
|
export * from './Welcome.js';
|
|
7
|
+
export * from './Galaxia.js';
|
|
7
8
|
export * from './SmartroV2SkinColor.js';
|
|
8
9
|
export * from './SmartroV2IsPwdPass.js';
|
|
9
10
|
export * from './InicisV2CardUse.js';
|
|
@@ -5,8 +5,8 @@ export type PayletterGlobalIssueBillingKeyAndPayBypass = {
|
|
|
5
5
|
/**
|
|
6
6
|
* **결제수단 지정용 파라미터**
|
|
7
7
|
*
|
|
8
|
-
* - 해외카드
|
|
9
|
-
* - 해외카드
|
|
8
|
+
* - 해외카드 비인증 : `PLCreditCard`
|
|
9
|
+
* - 해외카드 인증(3DS) : `PLCreditCardMpi`
|
|
10
10
|
* - 유니온페이 : `PLUnionPay_HC`
|
|
11
11
|
* - 위챗페이 PC결제: `WeChatPayQRCodePayment`
|
|
12
12
|
* - 위챗페이 모바일결제 : `WeChatPayH5Payment`
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import type { MobiliansV2PayOptions } from './MobiliansV2PayOptions.js';
|
|
2
|
+
import type { MobiliansV2HiddenOptions } from './MobiliansV2HiddenOptions.js';
|
|
3
|
+
/**
|
|
4
|
+
* 고객사 로고 표기 여부
|
|
5
|
+
*/
|
|
6
|
+
export declare const MobiliansV2BypassCpLogo: {
|
|
7
|
+
/**
|
|
8
|
+
* 표기 (사전 협의 된 이미지 등록 필요)
|
|
9
|
+
*/
|
|
10
|
+
readonly Y: "Y";
|
|
11
|
+
/**
|
|
12
|
+
* 미표기
|
|
13
|
+
*/
|
|
14
|
+
readonly N: "N";
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* 법인 단위 로고 표기 여부
|
|
18
|
+
*/
|
|
19
|
+
export declare const MobiliansV2BypassEntpLogo: {
|
|
20
|
+
/**
|
|
21
|
+
* 표기 (사전 협의 된 이미지 등록 필요)
|
|
22
|
+
*/
|
|
23
|
+
readonly Y: "Y";
|
|
24
|
+
/**
|
|
25
|
+
* 미표기
|
|
26
|
+
*/
|
|
27
|
+
readonly N: "N";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* 상품권 결제창 고객사 로고 표시 여부
|
|
31
|
+
*/
|
|
32
|
+
export declare const MobiliansV2BypassLogoYn: {
|
|
33
|
+
/**
|
|
34
|
+
* 표시 (사전 협의 된 이미지 등록 필요)
|
|
35
|
+
*/
|
|
36
|
+
readonly Y: "Y";
|
|
37
|
+
/**
|
|
38
|
+
* 미표시, 모빌리언스 로고 표시 (default)
|
|
39
|
+
*/
|
|
40
|
+
readonly N: "N";
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* 상품권 결제창 안내문영역 노출 여부
|
|
44
|
+
*/
|
|
45
|
+
export declare const MobiliansV2BypassInfoareaYn: {
|
|
46
|
+
/**
|
|
47
|
+
* 표시 (default)
|
|
48
|
+
*/
|
|
49
|
+
readonly Y: "Y";
|
|
50
|
+
/**
|
|
51
|
+
* 미표시
|
|
52
|
+
*/
|
|
53
|
+
readonly N: "N";
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* 상품권 결제창 하단 안내영역 노출 여부
|
|
57
|
+
*/
|
|
58
|
+
export declare const MobiliansV2BypassFooterYn: {
|
|
59
|
+
/**
|
|
60
|
+
* 표시 (default)
|
|
61
|
+
*/
|
|
62
|
+
readonly Y: "Y";
|
|
63
|
+
/**
|
|
64
|
+
* 미표시
|
|
65
|
+
*/
|
|
66
|
+
readonly N: "N";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* 상품권 결제창 이용약관영역 노출 여부
|
|
70
|
+
*/
|
|
71
|
+
export declare const MobiliansV2BypassContractHidden: {
|
|
72
|
+
/**
|
|
73
|
+
* 노출 (default)
|
|
74
|
+
*/
|
|
75
|
+
readonly Y: "Y";
|
|
76
|
+
/**
|
|
77
|
+
* 숨김
|
|
78
|
+
*/
|
|
79
|
+
readonly N: "N";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* 상품권 결제창 이메일입력영역 숨김 여부
|
|
83
|
+
*/
|
|
84
|
+
export declare const MobiliansV2BypassEmailHidden: {
|
|
85
|
+
/**
|
|
86
|
+
* 숨김
|
|
87
|
+
*/
|
|
88
|
+
readonly Y: "Y";
|
|
89
|
+
/**
|
|
90
|
+
* 노출 (default)
|
|
91
|
+
*/
|
|
92
|
+
readonly N: "N";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* 모빌리언스 V2 bypass 파라미터
|
|
96
|
+
*/
|
|
97
|
+
export type MobiliansV2Bypass = {
|
|
98
|
+
/**
|
|
99
|
+
* 담당자 이메일 (결제 결과 노티 실패 또는 입금 완료 시 알림이 발송될 이메일)
|
|
100
|
+
*/
|
|
101
|
+
noti_email?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* 고객사 로고 표기 여부
|
|
104
|
+
*/
|
|
105
|
+
cp_logo?: (typeof MobiliansV2BypassCpLogo)[keyof typeof MobiliansV2BypassCpLogo] | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* 법인 단위 로고 표기 여부
|
|
108
|
+
*/
|
|
109
|
+
entp_logo?: (typeof MobiliansV2BypassEntpLogo)[keyof typeof MobiliansV2BypassEntpLogo] | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* 결제창 색상 설정 (HTML 색상코드)
|
|
112
|
+
* ex) #006EB9
|
|
113
|
+
*/
|
|
114
|
+
css_type?: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* 고객사 UI 설정
|
|
117
|
+
*/
|
|
118
|
+
cp_ui?: string | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* 결제 수단 별 bypass할 값
|
|
121
|
+
*/
|
|
122
|
+
pay_options?: MobiliansV2PayOptions | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* 추가 설정 옵션
|
|
125
|
+
*/
|
|
126
|
+
hidden_options?: MobiliansV2HiddenOptions | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* 상품권 결제창 고객사 로고 표시 여부
|
|
129
|
+
*/
|
|
130
|
+
LOGO_YN?: (typeof MobiliansV2BypassLogoYn)[keyof typeof MobiliansV2BypassLogoYn] | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* 상품권 결제창 안내문영역 노출 여부
|
|
133
|
+
*/
|
|
134
|
+
INFOAREA_YN?: (typeof MobiliansV2BypassInfoareaYn)[keyof typeof MobiliansV2BypassInfoareaYn] | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* 상품권 결제창 하단 안내영역 노출 여부
|
|
137
|
+
*/
|
|
138
|
+
FOOTER_YN?: (typeof MobiliansV2BypassFooterYn)[keyof typeof MobiliansV2BypassFooterYn] | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* 상품권 결제창 이용약관영역 노출 여부
|
|
141
|
+
*/
|
|
142
|
+
CONTRACT_HIDDEN?: (typeof MobiliansV2BypassContractHidden)[keyof typeof MobiliansV2BypassContractHidden] | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* 상품권 결제창 이메일입력영역 숨김 여부
|
|
145
|
+
*/
|
|
146
|
+
EMAIL_HIDDEN?: (typeof MobiliansV2BypassEmailHidden)[keyof typeof MobiliansV2BypassEmailHidden] | undefined;
|
|
147
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 결제창 하단안내문구영역 숨김 여부
|
|
3
|
+
*/
|
|
4
|
+
export declare const MobiliansV2HiddenOptionsInfoArea: {
|
|
5
|
+
/**
|
|
6
|
+
* 숨김
|
|
7
|
+
*/
|
|
8
|
+
readonly Y: "Y";
|
|
9
|
+
/**
|
|
10
|
+
* 노출 (default)
|
|
11
|
+
*/
|
|
12
|
+
readonly N: "N";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* 결제창 footer영역 숨김 여부
|
|
16
|
+
*/
|
|
17
|
+
export declare const MobiliansV2HiddenOptionsFooterArea: {
|
|
18
|
+
/**
|
|
19
|
+
* 숨김
|
|
20
|
+
*/
|
|
21
|
+
readonly Y: "Y";
|
|
22
|
+
/**
|
|
23
|
+
* 노출 (default)
|
|
24
|
+
*/
|
|
25
|
+
readonly N: "N";
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* 결제창 상품정보영역 숨김 여부
|
|
29
|
+
*/
|
|
30
|
+
export declare const MobiliansV2HiddenOptionsProductArea: {
|
|
31
|
+
/**
|
|
32
|
+
* 숨김
|
|
33
|
+
*/
|
|
34
|
+
readonly Y: "Y";
|
|
35
|
+
/**
|
|
36
|
+
* 노출 (default)
|
|
37
|
+
*/
|
|
38
|
+
readonly N: "N";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* 결제창 이메일입력영역 숨김 여부
|
|
42
|
+
*/
|
|
43
|
+
export declare const MobiliansV2HiddenOptionsEmailArea: {
|
|
44
|
+
/**
|
|
45
|
+
* 숨김
|
|
46
|
+
*/
|
|
47
|
+
readonly Y: "Y";
|
|
48
|
+
/**
|
|
49
|
+
* 노출 (default)
|
|
50
|
+
*/
|
|
51
|
+
readonly N: "N";
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* 추가 설정 옵션
|
|
55
|
+
*/
|
|
56
|
+
export type MobiliansV2HiddenOptions = {
|
|
57
|
+
/**
|
|
58
|
+
* 결제창 하단안내문구영역 숨김 여부
|
|
59
|
+
*/
|
|
60
|
+
info_area?: (typeof MobiliansV2HiddenOptionsInfoArea)[keyof typeof MobiliansV2HiddenOptionsInfoArea] | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* 결제창 footer영역 숨김 여부
|
|
63
|
+
*/
|
|
64
|
+
footer_area?: (typeof MobiliansV2HiddenOptionsFooterArea)[keyof typeof MobiliansV2HiddenOptionsFooterArea] | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* 결제창 상품정보영역 숨김 여부
|
|
67
|
+
*/
|
|
68
|
+
product_area?: (typeof MobiliansV2HiddenOptionsProductArea)[keyof typeof MobiliansV2HiddenOptionsProductArea] | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* 결제창 이메일입력영역 숨김 여부
|
|
71
|
+
*/
|
|
72
|
+
email_area?: (typeof MobiliansV2HiddenOptionsEmailArea)[keyof typeof MobiliansV2HiddenOptionsEmailArea] | undefined;
|
|
73
|
+
};
|