skyflow-js 1.26.0 → 1.27.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.26.0",
5
+ "version": "1.27.0",
6
6
  "author": "Skyflow",
7
7
  "description": "Skyflow JavaScript SDK",
8
8
  "homepage": "https://github.com/skyflowapi/skyflow-js",
@@ -225,6 +225,11 @@ export declare const ELEMENTS: {
225
225
  };
226
226
  };
227
227
  };
228
+ export declare const CARDNUMBER_REVEAL_FORMAT: {
229
+ SPACE_FORMAT: string;
230
+ DASH_FORMAT: string;
231
+ AMEX_FORMAT: string;
232
+ };
228
233
  export declare const IFRAME_DEFAULT_STYLES: {
229
234
  height: string;
230
235
  width: string;
@@ -235,6 +235,18 @@ declare const SKYFLOW_ERROR_CODE: {
235
235
  code: number;
236
236
  description: string;
237
237
  };
238
+ INVALID_FORMAT_REVEAL: {
239
+ code: number;
240
+ description: string;
241
+ };
242
+ EMPTY_FORMAT_REVEAL: {
243
+ code: number;
244
+ description: string;
245
+ };
246
+ INVALID_FORMAT_VALUE_REVEAL: {
247
+ code: number;
248
+ description: string;
249
+ };
238
250
  INVALID_REDACTION_TYPE_REVEAL: {
239
251
  code: number;
240
252
  description: string;
@@ -119,6 +119,9 @@ declare const logs: {
119
119
  INVALID_TOKEN_ID_REVEAL: string;
120
120
  INVALID_LABEL_REVEAL: string;
121
121
  INVALID_ALT_TEXT_REVEAL: string;
122
+ INVALID_FORMAT_REVEAL: string;
123
+ EMPTY_FORMAT_REVEAL: string;
124
+ INVALID_FORMAT_VALUE_REVEAL: string;
122
125
  INVALID_REDACTION_TYPE_REVEAL: string;
123
126
  ELEMENTS_NOT_MOUNTED_REVEAL: string;
124
127
  EMPTY_TABLE_IN_ADDITIONAL_FIELDS: string;