@tap-payments/apple-pay-button 0.0.68-development → 1.0.0-test
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/README.md +30 -30
- package/build/@types/ApplePaySession.d.ts +67 -0
- package/build/@types/index.d.ts +118 -6
- package/build/@types/index.js +1 -6
- package/build/api/app.service.d.ts +23 -0
- package/build/{api.js → api/app.service.js} +93 -84
- package/build/api/base.d.ts +9 -0
- package/build/api/base.js +45 -0
- package/build/api/httpClient.d.ts +8 -0
- package/build/api/httpClient.js +33 -0
- package/build/constants/index.d.ts +58 -2
- package/build/constants/index.js +58 -2
- package/build/features/ApplePayButton/ApplePayButton.css +21 -0
- package/build/features/ApplePayButton/ApplePayButton.d.ts +5 -3
- package/build/features/ApplePayButton/ApplePayButton.js +25 -9
- package/build/features/ApplePayButton/index.d.ts +3 -3
- package/build/features/ApplePayButton/index.js +2 -2
- package/build/hooks/index.d.ts +1 -1
- package/build/hooks/index.js +1 -1
- package/build/hooks/useApplePay.d.ts +7 -85
- package/build/hooks/useApplePay.js +178 -262
- package/build/hooks/useGetEvents.d.ts +4 -0
- package/build/hooks/useGetEvents.js +15 -0
- package/build/hooks/useScript.d.ts +1 -0
- package/build/hooks/useScript.js +39 -0
- package/build/index.d.ts +4 -4
- package/build/index.js +7 -5
- package/build/utils/config.d.ts +9 -7
- package/build/utils/config.js +52 -41
- package/build/utils/defaultValues.d.ts +32 -2
- package/build/utils/defaultValues.js +31 -10
- package/build/utils/index.d.ts +0 -3
- package/build/utils/index.js +0 -3
- package/package.json +11 -16
- package/build/@types/ApplePayButtonProps.d.ts +0 -128
- package/build/@types/charge.d.ts +0 -57
- package/build/@types/charge.js +0 -1
- package/build/@types/checkoutProfile.d.ts +0 -194
- package/build/@types/checkoutProfile.js +0 -1
- package/build/@types/enums.d.ts +0 -65
- package/build/@types/enums.js +0 -76
- package/build/@types/tapLocalisation.d.ts +0 -193
- package/build/@types/tapLocalisation.js +0 -1
- package/build/@types/tapTheme.d.ts +0 -842
- package/build/@types/tapTheme.js +0 -1
- package/build/api.d.ts +0 -34
- package/build/hooks/useMerchantApplePay.d.ts +0 -20
- package/build/hooks/useMerchantApplePay.js +0 -176
- package/build/utils/theme.d.ts +0 -12
- package/build/utils/theme.js +0 -61
- /package/build/@types/{ApplePayButtonProps.js → ApplePaySession.js} +0 -0
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
import { SupportedNetworks, ThemeMode } from '..';
|
|
2
|
-
export interface CheckoutProfileRequest {
|
|
3
|
-
supported_payment_methods: string[];
|
|
4
|
-
supported_currencies: string[];
|
|
5
|
-
transaction_mode: string;
|
|
6
|
-
currency: string;
|
|
7
|
-
merchant_id: string;
|
|
8
|
-
total_amount: number;
|
|
9
|
-
order: {
|
|
10
|
-
id?: string;
|
|
11
|
-
amount: number;
|
|
12
|
-
currency: string;
|
|
13
|
-
description?: string;
|
|
14
|
-
metadata?: Record<string, string>;
|
|
15
|
-
customer?: {
|
|
16
|
-
id?: string;
|
|
17
|
-
email?: string;
|
|
18
|
-
first_name?: string;
|
|
19
|
-
last_name?: string;
|
|
20
|
-
phone?: {
|
|
21
|
-
country_code: string;
|
|
22
|
-
number: string;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
items: {
|
|
26
|
-
quantity: number;
|
|
27
|
-
amount: number;
|
|
28
|
-
currency: string;
|
|
29
|
-
name: string;
|
|
30
|
-
description: string;
|
|
31
|
-
}[];
|
|
32
|
-
merchant: {
|
|
33
|
-
id: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export interface CheckoutProfileResponse {
|
|
38
|
-
status: string;
|
|
39
|
-
merchant: MerchantResponse;
|
|
40
|
-
assests: Assests;
|
|
41
|
-
payment_options: Paymentoptions;
|
|
42
|
-
session: string;
|
|
43
|
-
}
|
|
44
|
-
interface Paymentoptions {
|
|
45
|
-
id: string;
|
|
46
|
-
object: string;
|
|
47
|
-
payment_methods: PaymentMethod[];
|
|
48
|
-
currency: string;
|
|
49
|
-
country: string;
|
|
50
|
-
settlement_currency: string;
|
|
51
|
-
supported_currencies: Supportedcurrency[];
|
|
52
|
-
api_version: string;
|
|
53
|
-
order: Order;
|
|
54
|
-
}
|
|
55
|
-
interface Order {
|
|
56
|
-
id: string;
|
|
57
|
-
}
|
|
58
|
-
interface Supportedcurrency {
|
|
59
|
-
symbol: string;
|
|
60
|
-
name: string;
|
|
61
|
-
flag: string;
|
|
62
|
-
decimal_digit: number;
|
|
63
|
-
selected: boolean;
|
|
64
|
-
rate: number;
|
|
65
|
-
logos: Logos2;
|
|
66
|
-
order_by: number;
|
|
67
|
-
currency: string;
|
|
68
|
-
amount: number;
|
|
69
|
-
}
|
|
70
|
-
interface Logos2 {
|
|
71
|
-
dark: Disabled;
|
|
72
|
-
light: Disabled;
|
|
73
|
-
light_mono: Disabled;
|
|
74
|
-
dark_colored: Disabled;
|
|
75
|
-
}
|
|
76
|
-
export interface PaymentMethod {
|
|
77
|
-
id: string;
|
|
78
|
-
name: string;
|
|
79
|
-
name_ar: string;
|
|
80
|
-
image: string;
|
|
81
|
-
payment_type: string;
|
|
82
|
-
supported_card_brands: SupportedNetworks[];
|
|
83
|
-
supported_currencies: string[];
|
|
84
|
-
order_by: number;
|
|
85
|
-
cc_markup: number;
|
|
86
|
-
asynchronous: boolean;
|
|
87
|
-
threeDS: string;
|
|
88
|
-
api_version: number;
|
|
89
|
-
api_version_minor: number;
|
|
90
|
-
logos: Logos;
|
|
91
|
-
payment_order_type: string;
|
|
92
|
-
button_style: Buttonstyle;
|
|
93
|
-
display_name: string;
|
|
94
|
-
default_currency: string;
|
|
95
|
-
}
|
|
96
|
-
interface Buttonstyle {
|
|
97
|
-
background: Background2;
|
|
98
|
-
title_asset: 'https://tap-assets.b-cdn.net/action-button/{theme}/{lang}/mastercard';
|
|
99
|
-
}
|
|
100
|
-
interface Background2 {
|
|
101
|
-
light: Light2;
|
|
102
|
-
dark: Light2;
|
|
103
|
-
light_mono: Light2;
|
|
104
|
-
dark_colored: Light2;
|
|
105
|
-
}
|
|
106
|
-
interface Light2 {
|
|
107
|
-
base_color: string;
|
|
108
|
-
background_colors: string[];
|
|
109
|
-
}
|
|
110
|
-
interface Logos {
|
|
111
|
-
dark: Dark2;
|
|
112
|
-
light: Dark2;
|
|
113
|
-
light_mono: Dark2;
|
|
114
|
-
dark_colored: Dark2;
|
|
115
|
-
}
|
|
116
|
-
interface Dark2 {
|
|
117
|
-
svg: string;
|
|
118
|
-
png: string;
|
|
119
|
-
disabled: Disabled;
|
|
120
|
-
currency_widget: Disabled;
|
|
121
|
-
card_icon: Disabled;
|
|
122
|
-
}
|
|
123
|
-
interface Disabled {
|
|
124
|
-
svg: string;
|
|
125
|
-
png: string;
|
|
126
|
-
}
|
|
127
|
-
interface Assests {
|
|
128
|
-
localisation: Localisation;
|
|
129
|
-
theme: Theme;
|
|
130
|
-
web: Theme;
|
|
131
|
-
}
|
|
132
|
-
declare type Theme = Record<ThemeMode, string> & {
|
|
133
|
-
card: {
|
|
134
|
-
light: string;
|
|
135
|
-
dark: string;
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
interface Localisation {
|
|
139
|
-
url: string;
|
|
140
|
-
card: {
|
|
141
|
-
url: string;
|
|
142
|
-
};
|
|
143
|
-
}
|
|
144
|
-
interface MerchantResponse {
|
|
145
|
-
id: string;
|
|
146
|
-
api_version: string;
|
|
147
|
-
live_mode: boolean;
|
|
148
|
-
object: string;
|
|
149
|
-
name: string;
|
|
150
|
-
country_code: string;
|
|
151
|
-
logo: string;
|
|
152
|
-
background: Background;
|
|
153
|
-
contact: any[];
|
|
154
|
-
powered_by: boolean;
|
|
155
|
-
sdk_settings: Sdksettings;
|
|
156
|
-
session_token: string;
|
|
157
|
-
key_type: string;
|
|
158
|
-
encryption_key: string;
|
|
159
|
-
permissions: string[];
|
|
160
|
-
permission: Permission;
|
|
161
|
-
}
|
|
162
|
-
interface Permission {
|
|
163
|
-
card_wallet: boolean;
|
|
164
|
-
threeDSecure: boolean;
|
|
165
|
-
pci_dss: boolean;
|
|
166
|
-
}
|
|
167
|
-
interface Sdksettings {
|
|
168
|
-
status_display_duration: number;
|
|
169
|
-
otp_resend_interval: number;
|
|
170
|
-
otp_resend_attempts: number;
|
|
171
|
-
}
|
|
172
|
-
interface Background {
|
|
173
|
-
url: string;
|
|
174
|
-
mode: string;
|
|
175
|
-
color: Color;
|
|
176
|
-
}
|
|
177
|
-
interface Color {
|
|
178
|
-
dark: Dark;
|
|
179
|
-
light: Light;
|
|
180
|
-
}
|
|
181
|
-
interface Light {
|
|
182
|
-
color: string;
|
|
183
|
-
rectangle: Rectangle;
|
|
184
|
-
image: string;
|
|
185
|
-
}
|
|
186
|
-
interface Rectangle {
|
|
187
|
-
background: string;
|
|
188
|
-
'backdrop-filter': string;
|
|
189
|
-
}
|
|
190
|
-
interface Dark {
|
|
191
|
-
color: string;
|
|
192
|
-
image: string;
|
|
193
|
-
}
|
|
194
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/@types/enums.d.ts
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
export declare enum Locale {
|
|
2
|
-
EN = "en",
|
|
3
|
-
AR = "ar",
|
|
4
|
-
DYNAMIC = "dynamic"
|
|
5
|
-
}
|
|
6
|
-
export declare enum ThemeMode {
|
|
7
|
-
DARK = "dark",
|
|
8
|
-
LIGHT = "light",
|
|
9
|
-
DYNAMIC = "dynamic"
|
|
10
|
-
}
|
|
11
|
-
export declare enum Edges {
|
|
12
|
-
STRAIGHT = "straight",
|
|
13
|
-
CURVED = "curved",
|
|
14
|
-
CIRCULAR = "circular"
|
|
15
|
-
}
|
|
16
|
-
export declare enum ColorStyle {
|
|
17
|
-
COLORED = "colored",
|
|
18
|
-
MONOCHROME = "monochrome"
|
|
19
|
-
}
|
|
20
|
-
export declare enum Scope {
|
|
21
|
-
CHARGE = "charge",
|
|
22
|
-
AUTHORIZE = "authorize",
|
|
23
|
-
TAP_TOKEN = "taptoken",
|
|
24
|
-
APPLE_PAY_TOKEN = "applepaytoken"
|
|
25
|
-
}
|
|
26
|
-
export declare enum ButtonStyle {
|
|
27
|
-
Black = "black",
|
|
28
|
-
White = "white",
|
|
29
|
-
WhiteOutline = "white-outline"
|
|
30
|
-
}
|
|
31
|
-
export declare enum FullThemeMode {
|
|
32
|
-
DARK = "dark",
|
|
33
|
-
LIGHT = "light",
|
|
34
|
-
LIGHT_MONO = "light_mono",
|
|
35
|
-
DARK_COLORED = "dark_colored"
|
|
36
|
-
}
|
|
37
|
-
export declare enum ButtonType {
|
|
38
|
-
BOOK = "book",
|
|
39
|
-
BUY = "buy",
|
|
40
|
-
CHECK_OUT = "check-out",
|
|
41
|
-
PAY = "pay",
|
|
42
|
-
PLAIN = "plain",
|
|
43
|
-
SUBSCRIBE = "subscribe"
|
|
44
|
-
}
|
|
45
|
-
export declare enum CHARGE_CODE {
|
|
46
|
-
SUCCESS = "000",
|
|
47
|
-
AUTHORIZED = "001",
|
|
48
|
-
IN_PROGRESS = "200"
|
|
49
|
-
}
|
|
50
|
-
export declare enum MerchantCapabilities {
|
|
51
|
-
Supports3DS = "supports3DS",
|
|
52
|
-
SupportsCredit = "supportsCredit",
|
|
53
|
-
SupportsDebit = "supportsDebit"
|
|
54
|
-
}
|
|
55
|
-
export declare enum SupportedNetworks {
|
|
56
|
-
Amex = "amex",
|
|
57
|
-
Mada = "mada",
|
|
58
|
-
MasterCard = "masterCard",
|
|
59
|
-
Visa = "visa",
|
|
60
|
-
ChinaUnionPay = "chinaUnionPay",
|
|
61
|
-
Discover = "discover",
|
|
62
|
-
Electron = "electron",
|
|
63
|
-
Jcb = "jcb",
|
|
64
|
-
Maestro = "maestro"
|
|
65
|
-
}
|
package/build/@types/enums.js
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
export var Locale;
|
|
2
|
-
(function (Locale) {
|
|
3
|
-
Locale["EN"] = "en";
|
|
4
|
-
Locale["AR"] = "ar";
|
|
5
|
-
Locale["DYNAMIC"] = "dynamic";
|
|
6
|
-
})(Locale || (Locale = {}));
|
|
7
|
-
export var ThemeMode;
|
|
8
|
-
(function (ThemeMode) {
|
|
9
|
-
ThemeMode["DARK"] = "dark";
|
|
10
|
-
ThemeMode["LIGHT"] = "light";
|
|
11
|
-
ThemeMode["DYNAMIC"] = "dynamic";
|
|
12
|
-
})(ThemeMode || (ThemeMode = {}));
|
|
13
|
-
export var Edges;
|
|
14
|
-
(function (Edges) {
|
|
15
|
-
Edges["STRAIGHT"] = "straight";
|
|
16
|
-
Edges["CURVED"] = "curved";
|
|
17
|
-
Edges["CIRCULAR"] = "circular";
|
|
18
|
-
})(Edges || (Edges = {}));
|
|
19
|
-
export var ColorStyle;
|
|
20
|
-
(function (ColorStyle) {
|
|
21
|
-
ColorStyle["COLORED"] = "colored";
|
|
22
|
-
ColorStyle["MONOCHROME"] = "monochrome";
|
|
23
|
-
})(ColorStyle || (ColorStyle = {}));
|
|
24
|
-
export var Scope;
|
|
25
|
-
(function (Scope) {
|
|
26
|
-
Scope["CHARGE"] = "charge";
|
|
27
|
-
Scope["AUTHORIZE"] = "authorize";
|
|
28
|
-
Scope["TAP_TOKEN"] = "taptoken";
|
|
29
|
-
Scope["APPLE_PAY_TOKEN"] = "applepaytoken";
|
|
30
|
-
})(Scope || (Scope = {}));
|
|
31
|
-
export var ButtonStyle;
|
|
32
|
-
(function (ButtonStyle) {
|
|
33
|
-
ButtonStyle["Black"] = "black";
|
|
34
|
-
ButtonStyle["White"] = "white";
|
|
35
|
-
ButtonStyle["WhiteOutline"] = "white-outline";
|
|
36
|
-
})(ButtonStyle || (ButtonStyle = {}));
|
|
37
|
-
export var FullThemeMode;
|
|
38
|
-
(function (FullThemeMode) {
|
|
39
|
-
FullThemeMode["DARK"] = "dark";
|
|
40
|
-
FullThemeMode["LIGHT"] = "light";
|
|
41
|
-
FullThemeMode["LIGHT_MONO"] = "light_mono";
|
|
42
|
-
FullThemeMode["DARK_COLORED"] = "dark_colored";
|
|
43
|
-
})(FullThemeMode || (FullThemeMode = {}));
|
|
44
|
-
export var ButtonType;
|
|
45
|
-
(function (ButtonType) {
|
|
46
|
-
ButtonType["BOOK"] = "book";
|
|
47
|
-
ButtonType["BUY"] = "buy";
|
|
48
|
-
ButtonType["CHECK_OUT"] = "check-out";
|
|
49
|
-
ButtonType["PAY"] = "pay";
|
|
50
|
-
ButtonType["PLAIN"] = "plain";
|
|
51
|
-
ButtonType["SUBSCRIBE"] = "subscribe";
|
|
52
|
-
})(ButtonType || (ButtonType = {}));
|
|
53
|
-
export var CHARGE_CODE;
|
|
54
|
-
(function (CHARGE_CODE) {
|
|
55
|
-
CHARGE_CODE["SUCCESS"] = "000";
|
|
56
|
-
CHARGE_CODE["AUTHORIZED"] = "001";
|
|
57
|
-
CHARGE_CODE["IN_PROGRESS"] = "200";
|
|
58
|
-
})(CHARGE_CODE || (CHARGE_CODE = {}));
|
|
59
|
-
export var MerchantCapabilities;
|
|
60
|
-
(function (MerchantCapabilities) {
|
|
61
|
-
MerchantCapabilities["Supports3DS"] = "supports3DS";
|
|
62
|
-
MerchantCapabilities["SupportsCredit"] = "supportsCredit";
|
|
63
|
-
MerchantCapabilities["SupportsDebit"] = "supportsDebit";
|
|
64
|
-
})(MerchantCapabilities || (MerchantCapabilities = {}));
|
|
65
|
-
export var SupportedNetworks;
|
|
66
|
-
(function (SupportedNetworks) {
|
|
67
|
-
SupportedNetworks["Amex"] = "amex";
|
|
68
|
-
SupportedNetworks["Mada"] = "mada";
|
|
69
|
-
SupportedNetworks["MasterCard"] = "masterCard";
|
|
70
|
-
SupportedNetworks["Visa"] = "visa";
|
|
71
|
-
SupportedNetworks["ChinaUnionPay"] = "chinaUnionPay";
|
|
72
|
-
SupportedNetworks["Discover"] = "discover";
|
|
73
|
-
SupportedNetworks["Electron"] = "electron";
|
|
74
|
-
SupportedNetworks["Jcb"] = "jcb";
|
|
75
|
-
SupportedNetworks["Maestro"] = "maestro";
|
|
76
|
-
})(SupportedNetworks || (SupportedNetworks = {}));
|
|
@@ -1,193 +0,0 @@
|
|
|
1
|
-
export declare type TapLocalizationResponse = Record<string, TapLocalization>;
|
|
2
|
-
export interface TapLocalization {
|
|
3
|
-
ActionButton: ActionButton;
|
|
4
|
-
Common: Common;
|
|
5
|
-
CurrencyChangeWidget: CurrencyChangeWidget;
|
|
6
|
-
DeleteCard: DeleteCard;
|
|
7
|
-
ExtraFees: DeleteCard;
|
|
8
|
-
GoPay: GoPay;
|
|
9
|
-
Hints: Hints;
|
|
10
|
-
HorizontalHeaders: HorizontalHeaders;
|
|
11
|
-
ItemList: ItemList;
|
|
12
|
-
NFC: NFC;
|
|
13
|
-
TapAsyncSection: TapAsyncSection;
|
|
14
|
-
TapCardInputKit: TapCardInputKit;
|
|
15
|
-
TapLoyaltySection: TapLoyaltySection;
|
|
16
|
-
TapMerchantSection: TapMerchantSection;
|
|
17
|
-
TapOtpView: TapOtpView;
|
|
18
|
-
TapSwitchView: TapSwitchView;
|
|
19
|
-
}
|
|
20
|
-
interface TapSwitchView {
|
|
21
|
-
goPay: GoPay2;
|
|
22
|
-
mainCards: MainCards;
|
|
23
|
-
mainTelecom: MainCards;
|
|
24
|
-
merchant: GoPay2;
|
|
25
|
-
}
|
|
26
|
-
interface MainCards {
|
|
27
|
-
notes: string;
|
|
28
|
-
subtitle: string;
|
|
29
|
-
titleEmpty: string;
|
|
30
|
-
titleValid: string;
|
|
31
|
-
}
|
|
32
|
-
interface GoPay2 {
|
|
33
|
-
notes: string;
|
|
34
|
-
subtitle: string;
|
|
35
|
-
title: string;
|
|
36
|
-
}
|
|
37
|
-
interface TapOtpView {
|
|
38
|
-
Message: Message;
|
|
39
|
-
}
|
|
40
|
-
interface Message {
|
|
41
|
-
Expired: string;
|
|
42
|
-
Invalid: string;
|
|
43
|
-
Ready: string;
|
|
44
|
-
}
|
|
45
|
-
interface TapMerchantSection {
|
|
46
|
-
paymentFor: string;
|
|
47
|
-
}
|
|
48
|
-
interface TapLoyaltySection {
|
|
49
|
-
amountView: AmountView;
|
|
50
|
-
footerView: FooterView;
|
|
51
|
-
headerView: HeaderView;
|
|
52
|
-
hintView: HintView;
|
|
53
|
-
}
|
|
54
|
-
interface HintView {
|
|
55
|
-
minimumWarning: string;
|
|
56
|
-
}
|
|
57
|
-
interface HeaderView {
|
|
58
|
-
balance: string;
|
|
59
|
-
lessThanMinimum: string;
|
|
60
|
-
redeem: string;
|
|
61
|
-
tc: string;
|
|
62
|
-
}
|
|
63
|
-
interface FooterView {
|
|
64
|
-
amount: string;
|
|
65
|
-
points: string;
|
|
66
|
-
}
|
|
67
|
-
interface AmountView {
|
|
68
|
-
title: string;
|
|
69
|
-
}
|
|
70
|
-
interface TapCardInputKit {
|
|
71
|
-
additionalLinePlaceHolder: string;
|
|
72
|
-
cardCVVPlaceHolder: string;
|
|
73
|
-
cardExpiryPlaceHolder: string;
|
|
74
|
-
cardNamePlaceHolder: string;
|
|
75
|
-
cardNumberPlaceHolder: string;
|
|
76
|
-
cardSaveForTapInfoMessage: string;
|
|
77
|
-
cardSaveForTapInfoTitle: string;
|
|
78
|
-
cardSaveForTapLabel: string;
|
|
79
|
-
cardSaveLabel: string;
|
|
80
|
-
cardSectionTitle: string;
|
|
81
|
-
cardSectionTitleOr: string;
|
|
82
|
-
cityPlaceHolder: string;
|
|
83
|
-
emailPlaceHolder: string;
|
|
84
|
-
flatPlaceHolder: string;
|
|
85
|
-
savedCardSectionTitle: string;
|
|
86
|
-
weSupport: string;
|
|
87
|
-
}
|
|
88
|
-
interface TapAsyncSection {
|
|
89
|
-
paymentCodeTitleLabel: string;
|
|
90
|
-
paymentExpiryTitleLabel: string;
|
|
91
|
-
paymentProgressLabel: string;
|
|
92
|
-
paymentRecieptEmail: string;
|
|
93
|
-
paymentRecieptLabel: string;
|
|
94
|
-
paymentRecieptSms: string;
|
|
95
|
-
paymentReferenceTitleLabel: string;
|
|
96
|
-
paymentVisitBranchesLabel: string;
|
|
97
|
-
}
|
|
98
|
-
interface NFC {
|
|
99
|
-
disabledNFC: string;
|
|
100
|
-
enableNFC: string;
|
|
101
|
-
nfcDescription: string;
|
|
102
|
-
nfcUnsupported: string;
|
|
103
|
-
scan: string;
|
|
104
|
-
scanSuccess: string;
|
|
105
|
-
}
|
|
106
|
-
interface ItemList {
|
|
107
|
-
Discount: string;
|
|
108
|
-
hideDesc: string;
|
|
109
|
-
showDesc: string;
|
|
110
|
-
}
|
|
111
|
-
interface HorizontalHeaders {
|
|
112
|
-
GatewayHeader: GatewayHeader;
|
|
113
|
-
SaveCardHeader: SaveCardHeader;
|
|
114
|
-
}
|
|
115
|
-
interface SaveCardHeader {
|
|
116
|
-
contactCountryPickerHeader: string;
|
|
117
|
-
contactDetailsSectionTitle: string;
|
|
118
|
-
shippingSectionTitle: string;
|
|
119
|
-
}
|
|
120
|
-
interface GatewayHeader {
|
|
121
|
-
leftTitle: string;
|
|
122
|
-
rightTitle: string;
|
|
123
|
-
webViewTitle: string;
|
|
124
|
-
}
|
|
125
|
-
interface Hints {
|
|
126
|
-
Default: Default;
|
|
127
|
-
Error: Error;
|
|
128
|
-
GoPayLogin: GoPayLogin;
|
|
129
|
-
Scanned: Scanned;
|
|
130
|
-
Warning: Warning;
|
|
131
|
-
}
|
|
132
|
-
interface Warning {
|
|
133
|
-
missingCVV: string;
|
|
134
|
-
missingExpiryCVV: string;
|
|
135
|
-
missingName: string;
|
|
136
|
-
}
|
|
137
|
-
interface Scanned {
|
|
138
|
-
successFullScan: string;
|
|
139
|
-
}
|
|
140
|
-
interface GoPayLogin {
|
|
141
|
-
otp: string;
|
|
142
|
-
password: string;
|
|
143
|
-
}
|
|
144
|
-
interface Error {
|
|
145
|
-
wrongCardNumber: string;
|
|
146
|
-
}
|
|
147
|
-
interface Default {
|
|
148
|
-
scan: string;
|
|
149
|
-
}
|
|
150
|
-
interface GoPay {
|
|
151
|
-
HintLabel: string;
|
|
152
|
-
}
|
|
153
|
-
interface DeleteCard {
|
|
154
|
-
cancel: string;
|
|
155
|
-
confirm: string;
|
|
156
|
-
message: string;
|
|
157
|
-
title: string;
|
|
158
|
-
}
|
|
159
|
-
interface CurrencyChangeWidget {
|
|
160
|
-
confirmButton: string;
|
|
161
|
-
enabledHeader: string;
|
|
162
|
-
header: string;
|
|
163
|
-
}
|
|
164
|
-
interface Common {
|
|
165
|
-
availableInOtherCurrencies: string;
|
|
166
|
-
back: string;
|
|
167
|
-
cancel: string;
|
|
168
|
-
change: string;
|
|
169
|
-
close: string;
|
|
170
|
-
confirm: string;
|
|
171
|
-
currencyAlert: string;
|
|
172
|
-
done: string;
|
|
173
|
-
edit: string;
|
|
174
|
-
email: string;
|
|
175
|
-
item: string;
|
|
176
|
-
items: string;
|
|
177
|
-
next: string;
|
|
178
|
-
password: string;
|
|
179
|
-
phone: string;
|
|
180
|
-
previous: string;
|
|
181
|
-
recent: string;
|
|
182
|
-
}
|
|
183
|
-
interface ActionButton {
|
|
184
|
-
cancel: string;
|
|
185
|
-
close: string;
|
|
186
|
-
confirm: string;
|
|
187
|
-
next: string;
|
|
188
|
-
now: string;
|
|
189
|
-
pay: string;
|
|
190
|
-
resend: string;
|
|
191
|
-
signin: string;
|
|
192
|
-
}
|
|
193
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|