@paydala-payments/models 0.7.79 → 0.7.80
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.
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.BankProcessor = void 0;
|
4
|
+
var BankProcessor;
|
5
|
+
(function (BankProcessor) {
|
6
|
+
BankProcessor["MX"] = "MX";
|
7
|
+
BankProcessor["MASTER_CARD"] = "MC";
|
8
|
+
BankProcessor["MC"] = "MC";
|
9
|
+
})(BankProcessor || (exports.BankProcessor = BankProcessor = {}));
|
package/dist/custom_theme.d.ts
CHANGED
@@ -3,20 +3,10 @@ export interface CustomTheme {
|
|
3
3
|
light?: ThemeObject | undefined;
|
4
4
|
dark?: ThemeObject | undefined;
|
5
5
|
}
|
6
|
-
export interface FontFamilyObject {
|
7
|
-
url: string;
|
8
|
-
format: FontFormat;
|
9
|
-
}
|
10
6
|
export declare enum FontFamily {
|
11
7
|
Gotham = "Gotham",
|
12
8
|
Inter = "InterVariable"
|
13
9
|
}
|
14
|
-
export declare enum FontFormat {
|
15
|
-
OpenType = "opentype",
|
16
|
-
TrueType = "truetype",
|
17
|
-
Woff = "woff",
|
18
|
-
Woff2 = "woff2"
|
19
|
-
}
|
20
10
|
export interface ThemeObject {
|
21
11
|
primary?: string;
|
22
12
|
primaryForeground?: string;
|
@@ -31,6 +21,4 @@ export interface ThemeObject {
|
|
31
21
|
warning?: string;
|
32
22
|
brandBackground?: string | null;
|
33
23
|
fontFamily?: FontFamily;
|
34
|
-
headingFontFamily?: FontFamilyObject;
|
35
|
-
bodyFontFamily?: FontFamilyObject;
|
36
24
|
}
|
package/dist/custom_theme.js
CHANGED
@@ -1,15 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.FontFamily = void 0;
|
4
4
|
var FontFamily;
|
5
5
|
(function (FontFamily) {
|
6
6
|
FontFamily["Gotham"] = "Gotham";
|
7
7
|
FontFamily["Inter"] = "InterVariable";
|
8
8
|
})(FontFamily || (exports.FontFamily = FontFamily = {}));
|
9
|
-
var FontFormat;
|
10
|
-
(function (FontFormat) {
|
11
|
-
FontFormat["OpenType"] = "opentype";
|
12
|
-
FontFormat["TrueType"] = "truetype";
|
13
|
-
FontFormat["Woff"] = "woff";
|
14
|
-
FontFormat["Woff2"] = "woff2";
|
15
|
-
})(FontFormat || (exports.FontFormat = FontFormat = {}));
|
package/dist/custome_theme.d.ts
CHANGED
@@ -1,12 +1,8 @@
|
|
1
|
-
export interface
|
1
|
+
export interface CustomTheme {
|
2
2
|
selectedTheme?: "light" | "dark";
|
3
3
|
light?: ThemeObject | undefined;
|
4
4
|
dark?: ThemeObject | undefined;
|
5
5
|
}
|
6
|
-
export interface FontFamilyObject {
|
7
|
-
url: string;
|
8
|
-
format: "opentype" | "truetype" | "woff" | "woff2";
|
9
|
-
}
|
10
6
|
export interface ThemeObject {
|
11
7
|
primary?: string;
|
12
8
|
primaryForeground?: string;
|
@@ -20,6 +16,4 @@ export interface ThemeObject {
|
|
20
16
|
error?: string;
|
21
17
|
warning?: string;
|
22
18
|
brandBackground?: string | null;
|
23
|
-
headingFontFamily?: FontFamilyObject;
|
24
|
-
bodyFontFamily?: FontFamilyObject;
|
25
19
|
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.IntegrationSource = void 0;
|
4
|
+
var IntegrationSource;
|
5
|
+
(function (IntegrationSource) {
|
6
|
+
IntegrationSource["WebView"] = "webview";
|
7
|
+
IntegrationSource["Iframe"] = "iframe";
|
8
|
+
IntegrationSource["RNWebView"] = "rn-webview";
|
9
|
+
IntegrationSource["ExpoWebView"] = "expo-webview";
|
10
|
+
IntegrationSource["IOSNative"] = "ios-native";
|
11
|
+
IntegrationSource["AndroidNative"] = "android-native";
|
12
|
+
})(IntegrationSource || (exports.IntegrationSource = IntegrationSource = {}));
|