skyflow-js 1.14.0 → 1.15.0

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
@@ -2,7 +2,7 @@
2
2
  "name": "skyflow-js",
3
3
  "preferGlobal": true,
4
4
  "analyze": false,
5
- "version": "1.14.0",
5
+ "version": "1.15.0",
6
6
  "author": "Skyflow",
7
7
  "description": "Skyflow JavaScript SDK",
8
8
  "homepage": "https://github.com/skyflowapi/skyflow-js",
@@ -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% - 10px)";
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,4 @@ export declare function updateRequestBodyInConnection(config: IConnectionConfig)
23
23
  requestHeader?: any;
24
24
  responseBody?: any;
25
25
  };
26
+ export declare const appendZeroToOne: (value: any) => any;
@@ -213,6 +213,7 @@ declare const logs: {
213
213
  UNABLE_TO_CLEAR_VALUE_IN_PROD_ENV: string;
214
214
  COLLECT_ALT_TEXT_DEPERECATED: string;
215
215
  NO_MATCH_FOUND_FOR_FORMAT_REGEX: string;
216
+ DEPRECATE_INVOKE_CONNECTION: string;
216
217
  };
217
218
  };
218
219
  export default logs;