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
|
@@ -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;
|
package/types/utils/logs.d.ts
CHANGED
|
@@ -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;
|