sr-npm 1.7.552 → 1.7.553
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.
- package/backend/data.js +2 -1
- package/package.json +1 -1
package/backend/data.js
CHANGED
|
@@ -150,8 +150,9 @@ async function saveJobsDataToCMS() {
|
|
|
150
150
|
});
|
|
151
151
|
|
|
152
152
|
await insertValuesReference(jobToCustomValues);
|
|
153
|
+
console.log("inserted values reference successfully");
|
|
153
154
|
await insertJobsReference(jobToCustomValues);
|
|
154
|
-
|
|
155
|
+
console.log("inserted jobs reference successfully");
|
|
155
156
|
|
|
156
157
|
console.log(`✓ All chunks processed. Total jobs saved: ${totalSaved}/${jobsData.length}`);
|
|
157
158
|
}
|