skyflow-js 2.3.0 → 2.3.1
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
|
@@ -719,5 +719,17 @@ declare const SKYFLOW_ERROR_CODE: {
|
|
|
719
719
|
code: number;
|
|
720
720
|
description: string;
|
|
721
721
|
};
|
|
722
|
+
NO_ELEMENTS_IN_COLLECT: {
|
|
723
|
+
code: number;
|
|
724
|
+
description: string;
|
|
725
|
+
};
|
|
726
|
+
NO_ELEMENTS_IN_COMPOSABLE: {
|
|
727
|
+
code: number;
|
|
728
|
+
description: string;
|
|
729
|
+
};
|
|
730
|
+
NO_ELEMENTS_IN_REVEAL: {
|
|
731
|
+
code: number;
|
|
732
|
+
description: string;
|
|
733
|
+
};
|
|
722
734
|
};
|
|
723
735
|
export default SKYFLOW_ERROR_CODE;
|
package/types/utils/logs.d.ts
CHANGED
|
@@ -74,6 +74,9 @@ declare const logs: {
|
|
|
74
74
|
VALIDATE_GET_BY_ID_INPUT: string;
|
|
75
75
|
};
|
|
76
76
|
errorLogs: {
|
|
77
|
+
NO_ELEMENTS_IN_COLLECT: string;
|
|
78
|
+
NO_ELEMENTS_IN_COMPOSABLE: string;
|
|
79
|
+
NO_ELEMENTS_IN_REVEAL: string;
|
|
77
80
|
INVALID_FILE_NAMES: string;
|
|
78
81
|
INVALID_FILE_NAME: string;
|
|
79
82
|
CLIENT_CONNECTION: string;
|