sr-npm 1.7.480 → 1.7.482

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.
@@ -30,7 +30,8 @@ const AMOUNT_OF_JOBS_PER_DEPARTMENT_COLLECTION_FIELDS = {
30
30
  IMAGE: 'image',
31
31
  }
32
32
  const BRANDS_COLLECTION_FIELDS = {
33
- BRAND: 'brand',
33
+ TITLE: 'title',
34
+ COUNT: 'count',
34
35
  }
35
36
  const CITIES_COLLECTION_FIELDS = {
36
37
  TITLE: 'title',
@@ -78,7 +79,8 @@ const COLLECTIONS_FIELDS = {
78
79
  {key:'tokenValue', type: 'TEXT'},
79
80
  ],
80
81
  BRANDS: [
81
- {key:'brand', type: 'TEXT'},
82
+ {key:'title', type: 'TEXT'},
83
+ { key: 'count', type: 'NUMBER' },
82
84
  ],
83
85
  };
84
86
 
package/backend/data.js CHANGED
@@ -388,7 +388,6 @@ async function fillSecretManagerMirror() {
388
388
 
389
389
 
390
390
 
391
-
392
391
  module.exports = {
393
392
  syncJobsFast,
394
393
  referenceJobs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.480",
3
+ "version": "1.7.482",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {