@paydala-payments/models 0.7.77 → 0.7.79
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/custom_theme.d.ts +13 -2
- package/dist/custom_theme.js +8 -2
- package/dist/custome_theme.d.ts +6 -5
- package/dist/custome_theme.js +0 -6
- package/package.json +1 -1
- package/dist/bank_processor.d.ts +0 -5
- package/dist/bank_processor.js +0 -9
- package/dist/integration_source.d.ts +0 -8
- package/dist/integration_source.js +0 -12
package/dist/custom_theme.d.ts
CHANGED
@@ -3,10 +3,19 @@ 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
|
+
}
|
6
10
|
export declare enum FontFamily {
|
7
11
|
Gotham = "Gotham",
|
8
|
-
Inter = "InterVariable"
|
9
|
-
|
12
|
+
Inter = "InterVariable"
|
13
|
+
}
|
14
|
+
export declare enum FontFormat {
|
15
|
+
OpenType = "opentype",
|
16
|
+
TrueType = "truetype",
|
17
|
+
Woff = "woff",
|
18
|
+
Woff2 = "woff2"
|
10
19
|
}
|
11
20
|
export interface ThemeObject {
|
12
21
|
primary?: string;
|
@@ -22,4 +31,6 @@ export interface ThemeObject {
|
|
22
31
|
warning?: string;
|
23
32
|
brandBackground?: string | null;
|
24
33
|
fontFamily?: FontFamily;
|
34
|
+
headingFontFamily?: FontFamilyObject;
|
35
|
+
bodyFontFamily?: FontFamilyObject;
|
25
36
|
}
|
package/dist/custom_theme.js
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.FontFamily = void 0;
|
3
|
+
exports.FontFormat = exports.FontFamily = void 0;
|
4
4
|
var FontFamily;
|
5
5
|
(function (FontFamily) {
|
6
6
|
FontFamily["Gotham"] = "Gotham";
|
7
7
|
FontFamily["Inter"] = "InterVariable";
|
8
|
-
FontFamily["Anton"] = "Anton";
|
9
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,11 +1,11 @@
|
|
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
|
7
|
-
|
8
|
-
|
6
|
+
export interface FontFamilyObject {
|
7
|
+
url: string;
|
8
|
+
format: "opentype" | "truetype" | "woff" | "woff2";
|
9
9
|
}
|
10
10
|
export interface ThemeObject {
|
11
11
|
primary?: string;
|
@@ -20,5 +20,6 @@ export interface ThemeObject {
|
|
20
20
|
error?: string;
|
21
21
|
warning?: string;
|
22
22
|
brandBackground?: string | null;
|
23
|
-
|
23
|
+
headingFontFamily?: FontFamilyObject;
|
24
|
+
bodyFontFamily?: FontFamilyObject;
|
24
25
|
}
|
package/dist/custome_theme.js
CHANGED
@@ -1,8 +1,2 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.FontFamily = void 0;
|
4
|
-
var FontFamily;
|
5
|
-
(function (FontFamily) {
|
6
|
-
FontFamily["Gotham"] = "Gotham";
|
7
|
-
FontFamily["Inter"] = "InterVariable";
|
8
|
-
})(FontFamily || (exports.FontFamily = FontFamily = {}));
|
package/package.json
CHANGED
package/dist/bank_processor.d.ts
DELETED
package/dist/bank_processor.js
DELETED
@@ -1,9 +0,0 @@
|
|
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 = {}));
|
@@ -1,12 +0,0 @@
|
|
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 = {}));
|