sr-npm 1.7.554 → 1.7.556
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 +4 -5
- package/package.json +1 -1
package/backend/data.js
CHANGED
|
@@ -158,32 +158,32 @@ async function saveJobsDataToCMS() {
|
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
async function insertValuesReference(jobToCustomValues) {
|
|
161
|
+
console.log("inserting values reference");
|
|
161
162
|
for (const jobId of Object.keys(jobToCustomValues)) {
|
|
162
163
|
const items = jobToCustomValues[jobId];
|
|
163
164
|
await wixData.insertReference(COLLECTIONS.JOBS, JOBS_COLLECTION_FIELDS.MULTI_REF_JOBS_CUSTOM_VALUES,jobId, items);
|
|
164
165
|
}
|
|
166
|
+
console.log("inserted values reference successfully");
|
|
165
167
|
}
|
|
166
168
|
async function insertJobsReference(jobToCustomValues) {
|
|
169
|
+
console.log("inserting jobs reference");
|
|
167
170
|
for (const jobId of Object.keys(jobToCustomValues)) {
|
|
168
171
|
for (const valueId of jobToCustomValues[jobId]) {
|
|
169
172
|
await wixData.insertReference(COLLECTIONS.CUSTOM_VALUES, CUSTOM_VALUES_COLLECTION_FIELDS.MULTI_REF_JOBS_CUSTOM_VALUES,valueId, jobId);
|
|
170
173
|
}
|
|
171
174
|
}
|
|
172
|
-
|
|
175
|
+
console.log("inserted jobs reference successfully");
|
|
173
176
|
}
|
|
174
177
|
|
|
175
178
|
async function populateCustomFieldsCollection(customFields) {
|
|
176
|
-
console.log("populating custom fields collection");
|
|
177
179
|
for(const ID of Object.keys(customFields)){
|
|
178
180
|
await wixData.save(COLLECTIONS.CUSTOM_FIELDS, {
|
|
179
181
|
title: customFields[ID],
|
|
180
182
|
_id: ID,
|
|
181
183
|
});
|
|
182
184
|
}
|
|
183
|
-
console.log("populated custom fields collection successfully");
|
|
184
185
|
}
|
|
185
186
|
async function populateCustomValuesCollection(customFieldsValues) {
|
|
186
|
-
console.log("populating custom values collection");
|
|
187
187
|
for (const fieldId of Object.keys(customFieldsValues)) {
|
|
188
188
|
const valuesMap = customFieldsValues[fieldId] || {};
|
|
189
189
|
for (const valueId of Object.keys(valuesMap)) {
|
|
@@ -194,7 +194,6 @@ async function populateCustomValuesCollection(customFieldsValues) {
|
|
|
194
194
|
});
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
|
-
console.log("populated custom values collection successfully");
|
|
198
197
|
}
|
|
199
198
|
async function saveJobsDescriptionsAndLocationApplyUrlToCMS() {
|
|
200
199
|
console.log('🚀 Starting job descriptions update process for ALL jobs');
|