propro-utils 1.7.41 → 1.7.42
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.
|
@@ -177,6 +177,7 @@ const checkIfUserExists = async accountId => {
|
|
|
177
177
|
console.warn("Invalid accountId provided:", accountId);
|
|
178
178
|
throw new Error("Invalid accountId provided");
|
|
179
179
|
}
|
|
180
|
+
console.log("ACCOUNT INFO: 1");
|
|
180
181
|
|
|
181
182
|
try {
|
|
182
183
|
const schemaResults = await Promise.all([
|
|
@@ -186,6 +187,8 @@ const checkIfUserExists = async accountId => {
|
|
|
186
187
|
ServiceManager.getService("ThemeSchema"),
|
|
187
188
|
]);
|
|
188
189
|
|
|
190
|
+
console.log("ACCOUNT INFO: 2", schemaResults);
|
|
191
|
+
|
|
189
192
|
const [userSchema, userStyleSchema, folderSchema, themeSchema] =
|
|
190
193
|
schemaResults;
|
|
191
194
|
|