@portone/browser-sdk 0.1.1 → 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/bypass/IssueBillingKeyAndPayBypass.d.ts +5 -0
- package/dist/v2/entity/bypass/IssueBillingKeyBypass.d.ts +5 -0
- package/dist/v2/entity/bypass/PaymentBypass.d.ts +10 -0
- 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/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/index.d.ts +4 -0
- package/dist/v2/entity/index.d.ts +1 -1
- package/dist/v2/request/PaymentRequestUnionCard.d.ts +7 -0
- package/dist/v2.cjs +321 -54
- package/dist/v2.js +301 -54
- 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
|
+
};
|
|
@@ -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
|
};
|
|
@@ -2,6 +2,7 @@ import type { InicisV2IssueBillingKeyBypass } from './issueBillingKey/InicisV2.j
|
|
|
2
2
|
import type { KcpV2IssueBillingKeyBypass } from './issueBillingKey/KcpV2.js';
|
|
3
3
|
import type { SmartroV2IssueBillingKeyBypass } from './issueBillingKey/SmartroV2.js';
|
|
4
4
|
import type { WelcomeIssueBillingKeyBypass } from './issueBillingKey/Welcome.js';
|
|
5
|
+
import type { GalaxiaIssueBillingKeyBypass } from './issueBillingKey/Galaxia.js';
|
|
5
6
|
import type { NaverpayIssueBillingKeyBypass } from './issueBillingKey/Naverpay.js';
|
|
6
7
|
import type { KakaopayPaymentBypass } from './payment/Kakaopay.js';
|
|
7
8
|
import type { TosspayV2IssueBillingKeyBypass } from './issueBillingKey/TosspayV2.js';
|
|
@@ -22,6 +23,10 @@ export type IssueBillingKeyBypass = {
|
|
|
22
23
|
* **웰컴페이먼츠 bypass 파라미터**
|
|
23
24
|
*/
|
|
24
25
|
welcome?: WelcomeIssueBillingKeyBypass | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* **갤럭시아 bypass 파라미터**
|
|
28
|
+
*/
|
|
29
|
+
galaxia?: GalaxiaIssueBillingKeyBypass | undefined;
|
|
25
30
|
/**
|
|
26
31
|
* **네이버페이 bypass 파라미터**
|
|
27
32
|
*/
|
|
@@ -13,8 +13,10 @@ import type { TosspayV2PaymentBypass } from './payment/TosspayV2.js';
|
|
|
13
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
|
*/
|
|
@@ -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';
|
|
@@ -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
|
+
};
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 우리카드 우리페이(WON카드, WON뱅킹) 결제만 제공할지 여부
|
|
3
|
+
*/
|
|
4
|
+
export declare const MobiliansV2PayOptionsCnPayAppUseYn: {
|
|
5
|
+
/**
|
|
6
|
+
* 사용
|
|
7
|
+
*/
|
|
8
|
+
readonly Y: "Y";
|
|
9
|
+
/**
|
|
10
|
+
* 미사용
|
|
11
|
+
*/
|
|
12
|
+
readonly N: "N";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* 우리카드 우리페이 결제수단 목록 WON카드, WON뱅킹에서 단독으로 결제할지 여부
|
|
16
|
+
* (cn\_pay\_app\_use\_yn이 "Y"이어야 사용가능)
|
|
17
|
+
*/
|
|
18
|
+
export declare const MobiliansV2PayOptionsCnPayAppUseCd: {
|
|
19
|
+
/**
|
|
20
|
+
* WON카드
|
|
21
|
+
*/
|
|
22
|
+
readonly '01': "01";
|
|
23
|
+
/**
|
|
24
|
+
* WON뱅킹
|
|
25
|
+
*/
|
|
26
|
+
readonly '02': "02";
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* 간편결제 다이렉트 호출 시 사용할 결제수단
|
|
30
|
+
*/
|
|
31
|
+
export declare const MobiliansV2PayOptionsEpPayType: {
|
|
32
|
+
/**
|
|
33
|
+
* 카드
|
|
34
|
+
*/
|
|
35
|
+
readonly C: "C";
|
|
36
|
+
/**
|
|
37
|
+
* 네이버페이 포인트 (네이버페이에서만 사용 가능)
|
|
38
|
+
*/
|
|
39
|
+
readonly P: "P";
|
|
40
|
+
/**
|
|
41
|
+
* 카카오페이 머니, 토스머니 (카카오페이, 토스페이에서만 사용 가능)
|
|
42
|
+
*/
|
|
43
|
+
readonly M: "M";
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* 휴대폰 결제창에서 휴대폰 번호를 고정할지 여부
|
|
47
|
+
*/
|
|
48
|
+
export declare const MobiliansV2PayOptionsMcFixNo: {
|
|
49
|
+
/**
|
|
50
|
+
* 고정 사용
|
|
51
|
+
*/
|
|
52
|
+
readonly Y: "Y";
|
|
53
|
+
/**
|
|
54
|
+
* 미사용
|
|
55
|
+
*/
|
|
56
|
+
readonly N: "N";
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* 휴대폰 결제에서 ARS 인증 사용 여부
|
|
60
|
+
*/
|
|
61
|
+
export declare const MobiliansV2PayOptionsMcSafeCall: {
|
|
62
|
+
/**
|
|
63
|
+
* 고정 사용
|
|
64
|
+
*/
|
|
65
|
+
readonly SAFECALL: "SAFECALL";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* 휴대폰 결제에서 간소화 결제 미사용 여부
|
|
69
|
+
*/
|
|
70
|
+
export declare const MobiliansV2PayOptionsMcSimplePay: {
|
|
71
|
+
/**
|
|
72
|
+
* 간소화 결제 미사용
|
|
73
|
+
*/
|
|
74
|
+
readonly Y: "Y";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* 계좌이체 결제에서 뱅크페이 다이렉트 호출 여부
|
|
78
|
+
*/
|
|
79
|
+
export declare const MobiliansV2PayOptionsRaDirect: {
|
|
80
|
+
/**
|
|
81
|
+
* 사용
|
|
82
|
+
*/
|
|
83
|
+
readonly Y: "Y";
|
|
84
|
+
/**
|
|
85
|
+
* 미사용
|
|
86
|
+
*/
|
|
87
|
+
readonly N: "N";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* 가상계좌 결제창에서 현금영수증 발급 항목 노출 여부
|
|
91
|
+
*/
|
|
92
|
+
export declare const MobiliansV2PayOptionsVaCashReceipt: {
|
|
93
|
+
/**
|
|
94
|
+
* 노출
|
|
95
|
+
*/
|
|
96
|
+
readonly Y: "Y";
|
|
97
|
+
/**
|
|
98
|
+
* 미노출
|
|
99
|
+
*/
|
|
100
|
+
readonly N: "N";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* 가상계좌 결제창에서 에스크로 사용 설정 항목 노출 여부
|
|
104
|
+
*/
|
|
105
|
+
export declare const MobiliansV2PayOptionsVaEscrow: {
|
|
106
|
+
/**
|
|
107
|
+
* 노출
|
|
108
|
+
*/
|
|
109
|
+
readonly Y: "Y";
|
|
110
|
+
/**
|
|
111
|
+
* 미노출
|
|
112
|
+
*/
|
|
113
|
+
readonly N: "N";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* 가상계좌 결제창에서 이메일 입력 필수 여부
|
|
117
|
+
*/
|
|
118
|
+
export declare const MobiliansV2PayOptionsVaEmail: {
|
|
119
|
+
/**
|
|
120
|
+
* 필수 입력
|
|
121
|
+
*/
|
|
122
|
+
readonly Y: "Y";
|
|
123
|
+
/**
|
|
124
|
+
* 선택 입력
|
|
125
|
+
*/
|
|
126
|
+
readonly N: "N";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* 결제 수단 별 bypass할 값
|
|
130
|
+
*/
|
|
131
|
+
export type MobiliansV2PayOptions = {
|
|
132
|
+
/**
|
|
133
|
+
* 우리카드 우리페이(WON카드, WON뱅킹) 결제만 제공할지 여부
|
|
134
|
+
*/
|
|
135
|
+
cn_pay_app_use_yn?: (typeof MobiliansV2PayOptionsCnPayAppUseYn)[keyof typeof MobiliansV2PayOptionsCnPayAppUseYn] | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* 우리카드 우리페이 결제수단 목록 WON카드, WON뱅킹에서 단독으로 결제할지 여부
|
|
138
|
+
* (cn\_pay\_app\_use\_yn이 "Y"이어야 사용가능)
|
|
139
|
+
*/
|
|
140
|
+
cn_pay_app_use_cd?: (typeof MobiliansV2PayOptionsCnPayAppUseCd)[keyof typeof MobiliansV2PayOptionsCnPayAppUseCd] | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* 간편결제 다이렉트 호출 시 사용할 결제수단
|
|
143
|
+
*/
|
|
144
|
+
ep_pay_type?: (typeof MobiliansV2PayOptionsEpPayType)[keyof typeof MobiliansV2PayOptionsEpPayType] | undefined;
|
|
145
|
+
/**
|
|
146
|
+
* 휴대폰 결제창에서 휴대폰 번호를 고정할지 여부
|
|
147
|
+
*/
|
|
148
|
+
mc_fix_no?: (typeof MobiliansV2PayOptionsMcFixNo)[keyof typeof MobiliansV2PayOptionsMcFixNo] | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* 휴대폰 결제에서 ARS 인증 사용 여부
|
|
151
|
+
*/
|
|
152
|
+
mc_safe_call?: (typeof MobiliansV2PayOptionsMcSafeCall)[keyof typeof MobiliansV2PayOptionsMcSafeCall] | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* 휴대폰 결제에서 간소화 결제 미사용 여부
|
|
155
|
+
*/
|
|
156
|
+
mc_simple_pay?: (typeof MobiliansV2PayOptionsMcSimplePay)[keyof typeof MobiliansV2PayOptionsMcSimplePay] | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* 계좌이체 결제에서 에스크로 구매 비밀먼호
|
|
159
|
+
* (에스크로 적용하여 뱅크페이 다이렉트 호출 시 필수 입력)
|
|
160
|
+
*/
|
|
161
|
+
ra_escrow_password?: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* 계좌이체 결제에서 뱅크페이 다이렉트 호출 여부
|
|
164
|
+
*/
|
|
165
|
+
ra_direct?: (typeof MobiliansV2PayOptionsRaDirect)[keyof typeof MobiliansV2PayOptionsRaDirect] | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* 가상계좌 결제창에서 현금영수증 발급 항목 노출 여부
|
|
168
|
+
*/
|
|
169
|
+
va_cash_receipt?: (typeof MobiliansV2PayOptionsVaCashReceipt)[keyof typeof MobiliansV2PayOptionsVaCashReceipt] | undefined;
|
|
170
|
+
/**
|
|
171
|
+
* 가상계좌 결제창에서 에스크로 사용 설정 항목 노출 여부
|
|
172
|
+
*/
|
|
173
|
+
va_escrow?: (typeof MobiliansV2PayOptionsVaEscrow)[keyof typeof MobiliansV2PayOptionsVaEscrow] | undefined;
|
|
174
|
+
/**
|
|
175
|
+
* 가상계좌 결제창에서 이메일 입력 필수 여부
|
|
176
|
+
*/
|
|
177
|
+
va_email?: (typeof MobiliansV2PayOptionsVaEmail)[keyof typeof MobiliansV2PayOptionsVaEmail] | undefined;
|
|
178
|
+
};
|
|
@@ -19,6 +19,7 @@ export * from './Kpn.js';
|
|
|
19
19
|
export * from './KcpV2.js';
|
|
20
20
|
export * from './Hyphen.js';
|
|
21
21
|
export * from './EximbayV2.js';
|
|
22
|
+
export * from './Galaxia.js';
|
|
22
23
|
export * from './InicisJp.js';
|
|
23
24
|
export * from './InicisJpPaymentUI.js';
|
|
24
25
|
export * from './KsnetSndQpayType.js';
|
|
@@ -58,3 +59,6 @@ export * from './TossBrandpayWidgetOptionsUiPromotionSection.js';
|
|
|
58
59
|
export * from './TossBrandpayWidgetOptionsUiPromotionSectionSummary.js';
|
|
59
60
|
export * from './TossBrandpayWidgetOptionsUiPromotionSectionDescription.js';
|
|
60
61
|
export * from './PayletterGlobal.js';
|
|
62
|
+
export * from './MobiliansV2.js';
|
|
63
|
+
export * from './MobiliansV2PayOptions.js';
|
|
64
|
+
export * from './MobiliansV2HiddenOptions.js';
|
|
@@ -3,6 +3,7 @@ export * from './Bank.js';
|
|
|
3
3
|
export * from './BillingKeyAndPayMethod.js';
|
|
4
4
|
export * from './BillingKeyMethod.js';
|
|
5
5
|
export * from './CardCompany.js';
|
|
6
|
+
export * from './CardPromotion.js';
|
|
6
7
|
export * from './Carrier.js';
|
|
7
8
|
export * from './CashReceiptType.js';
|
|
8
9
|
export * from './Country.js';
|
|
@@ -21,7 +22,6 @@ export * from './OfferPeriod.js';
|
|
|
21
22
|
export * from './PaymentUIType.js';
|
|
22
23
|
export * from './PaymentPayMethod.js';
|
|
23
24
|
export * from './PayMethod.js';
|
|
24
|
-
export * from './PgProvider.js';
|
|
25
25
|
export * from './TaxFreeAmount.js';
|
|
26
26
|
export * from './VatAmount.js';
|
|
27
27
|
export * from './Product.js';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CardCompany } from '../entity/CardCompany.js';
|
|
2
2
|
import type { Installment } from '../entity/Installment.js';
|
|
3
|
+
import type { CardPromotion } from '../entity/CardPromotion.js';
|
|
3
4
|
/**
|
|
4
5
|
* **카드 결제 설정**
|
|
5
6
|
*/
|
|
@@ -76,4 +77,10 @@ export type PaymentRequestUnionCard = {
|
|
|
76
77
|
* 할부 사용 가능 여부
|
|
77
78
|
*/
|
|
78
79
|
useInstallment?: boolean | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* **카드 프로모션 정보**
|
|
82
|
+
*
|
|
83
|
+
* 카드사 다이렉트 호출 시 적용할 카드사 할인 쿠폰 정보입니다.
|
|
84
|
+
*/
|
|
85
|
+
cardPromotion?: CardPromotion | undefined;
|
|
79
86
|
};
|