skyflow-js 1.27.1 → 1.27.2

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.27.1",
5
+ "version": "1.27.2",
6
6
  "author": "Skyflow",
7
7
  "description": "Skyflow JavaScript SDK",
8
8
  "homepage": "https://github.com/skyflowapi/skyflow-js",
@@ -411,6 +411,14 @@ declare const SKYFLOW_ERROR_CODE: {
411
411
  code: number;
412
412
  description: string;
413
413
  };
414
+ INVALID_FILE_SIZE: {
415
+ code: number;
416
+ description: string;
417
+ };
418
+ NO_FILE_SELECTED: {
419
+ code: number;
420
+ description: string;
421
+ };
414
422
  INVALID_TABLE_IN_UPSERT_OPTION: {
415
423
  code: number;
416
424
  description: string;
@@ -178,6 +178,8 @@ declare const logs: {
178
178
  VALIDATION_FAILED: string;
179
179
  REVEAL_ELEMENT_ERROR_STATE: string;
180
180
  INVALID_FILE_TYPE: string;
181
+ INVALID_FILE_SIZE: string;
182
+ NO_FILE_SELECTED: string;
181
183
  INVALID_UPSERT_OPTION_TYPE: string;
182
184
  EMPTY_UPSERT_OPTIONS_ARRAY: string;
183
185
  INVALID_UPSERT_OPTION_OBJECT_TYPE: string;