skyflow-js 1.27.1 → 1.27.3
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;
|
|
@@ -19,6 +19,6 @@ export declare const appendMonthTwoDigitYears: (value: any) => {
|
|
|
19
19
|
export declare const getReturnValue: (value: string | Blob, element: string, doesReturnValue: boolean) => string | Blob | undefined;
|
|
20
20
|
export declare const copyToClipboard: (text: string) => void;
|
|
21
21
|
export declare const handleCopyIconClick: (textToCopy: string, domCopy: any) => void;
|
|
22
|
-
export declare const fileValidation: (value: any) => boolean;
|
|
22
|
+
export declare const fileValidation: (value: any, required?: Boolean) => boolean;
|
|
23
23
|
export declare const styleToString: (style: any) => string;
|
|
24
24
|
export declare const getContainerType: (frameName: string) => ContainerType;
|
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;
|