skyflow-js 1.14.0 → 1.16.1
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -71,7 +71,8 @@ export declare enum CardType {
|
|
|
71
71
|
MAESTRO = "MAESTRO",
|
|
72
72
|
UNIONPAY = "UNIONPAY",
|
|
73
73
|
HIPERCARD = "HIPERCARD",
|
|
74
|
-
DEFAULT = "DEFAULT"
|
|
74
|
+
DEFAULT = "DEFAULT",
|
|
75
|
+
UNKNOWN = "UNKNOWN"
|
|
75
76
|
}
|
|
76
77
|
export declare const CARD_NUMBER_MASK: {
|
|
77
78
|
AMEX: (string | {
|
|
@@ -104,6 +105,9 @@ export declare const CARD_NUMBER_MASK: {
|
|
|
104
105
|
DEFAULT: (string | {
|
|
105
106
|
X: string;
|
|
106
107
|
})[];
|
|
108
|
+
UNKNOWN: (string | {
|
|
109
|
+
X: string;
|
|
110
|
+
})[];
|
|
107
111
|
};
|
|
108
112
|
export declare const ELEMENTS: {
|
|
109
113
|
textarea: {
|
|
@@ -249,7 +253,7 @@ export declare const INPUT_WITH_ICON_DEFAULT_STYLES: {
|
|
|
249
253
|
'text-indent': string;
|
|
250
254
|
padding: string;
|
|
251
255
|
};
|
|
252
|
-
export declare const INPUT_ICON_STYLES = "position: absolute; left:8px; top:calc(50% -
|
|
256
|
+
export declare const INPUT_ICON_STYLES = "position: absolute; left:8px; top:calc(50% - 12px)";
|
|
253
257
|
export declare const ERROR_TEXT_STYLES: {
|
|
254
258
|
color: string;
|
|
255
259
|
padding: string;
|
|
@@ -23,3 +23,5 @@ export declare function updateRequestBodyInConnection(config: IConnectionConfig)
|
|
|
23
23
|
requestHeader?: any;
|
|
24
24
|
responseBody?: any;
|
|
25
25
|
};
|
|
26
|
+
export declare const appendZeroToOne: (value: any) => any;
|
|
27
|
+
export declare const getReturnValue: (value: string, element: string, doesReturnValue: boolean) => string | undefined;
|
package/types/utils/logs.d.ts
CHANGED