@hed-hog/catalog 0.0.293 → 0.0.294
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/README.md +409 -379
- package/dist/catalog-resource.config.d.ts.map +1 -1
- package/dist/catalog-resource.config.js +51 -24
- package/dist/catalog-resource.config.js.map +1 -1
- package/dist/catalog.controller.d.ts +420 -0
- package/dist/catalog.controller.d.ts.map +1 -1
- package/dist/catalog.controller.js +98 -0
- package/dist/catalog.controller.js.map +1 -1
- package/dist/catalog.module.d.ts.map +1 -1
- package/dist/catalog.module.js +5 -1
- package/dist/catalog.module.js.map +1 -1
- package/dist/catalog.service.d.ts +216 -1
- package/dist/catalog.service.d.ts.map +1 -1
- package/dist/catalog.service.js +1111 -5
- package/dist/catalog.service.js.map +1 -1
- package/hedhog/data/catalog_attribute.yaml +202 -0
- package/hedhog/data/catalog_attribute_option.yaml +109 -0
- package/hedhog/data/catalog_category.yaml +47 -0
- package/hedhog/data/catalog_category_attribute.yaml +209 -0
- package/hedhog/data/menu.yaml +133 -99
- package/hedhog/data/route.yaml +72 -8
- package/hedhog/frontend/app/[resource]/page.tsx.ejs +391 -33
- package/hedhog/frontend/app/_components/catalog-ai-form-assist-dialog.tsx.ejs +340 -0
- package/hedhog/frontend/app/_components/catalog-resource-form-sheet.tsx.ejs +907 -92
- package/hedhog/frontend/app/_lib/catalog-resources.tsx.ejs +929 -1161
- package/hedhog/frontend/messages/en.json +389 -299
- package/hedhog/frontend/messages/pt.json +389 -299
- package/hedhog/table/catalog_attribute.yaml +67 -52
- package/hedhog/table/catalog_attribute_option.yaml +40 -0
- package/hedhog/table/catalog_category.yaml +40 -0
- package/hedhog/table/catalog_category_attribute.yaml +37 -31
- package/hedhog/table/catalog_comparison.yaml +19 -22
- package/hedhog/table/catalog_product.yaml +30 -28
- package/hedhog/table/catalog_product_attribute_value.yaml +44 -31
- package/hedhog/table/catalog_product_category.yaml +13 -13
- package/hedhog/table/catalog_score_criterion.yaml +42 -25
- package/hedhog/table/catalog_seo_page_rule.yaml +10 -10
- package/hedhog/table/catalog_similarity_rule.yaml +33 -20
- package/hedhog/table/catalog_site.yaml +21 -13
- package/hedhog/table/catalog_site_category.yaml +12 -12
- package/package.json +6 -6
- package/src/catalog-resource.config.ts +132 -105
- package/src/catalog.controller.ts +91 -24
- package/src/catalog.module.ts +16 -12
- package/src/catalog.service.ts +1569 -56
|
@@ -1,299 +1,389 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Catalog",
|
|
3
|
-
"subtitle": "Manage the
|
|
4
|
-
"openResource": "Open resource",
|
|
5
|
-
"searchPlaceholder": "Search by id, slug, name or title...",
|
|
6
|
-
"create": "Create",
|
|
7
|
-
"edit": "Edit",
|
|
8
|
-
"delete": "Delete",
|
|
9
|
-
"save": "Save",
|
|
10
|
-
"cancel": "Cancel",
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
},
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
"
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
"
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
"
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
"
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
"
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
"
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
},
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
"
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
"
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
"
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
"
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
"
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
"
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"title": "Catalog",
|
|
3
|
+
"subtitle": "Manage categories, attributes, products, offers, and publication for the structured catalog.",
|
|
4
|
+
"openResource": "Open resource",
|
|
5
|
+
"searchPlaceholder": "Search by id, slug, name, or title...",
|
|
6
|
+
"create": "Create",
|
|
7
|
+
"edit": "Edit",
|
|
8
|
+
"delete": "Delete",
|
|
9
|
+
"save": "Save",
|
|
10
|
+
"cancel": "Cancel",
|
|
11
|
+
"aiAssist": {
|
|
12
|
+
"button": "Use AI",
|
|
13
|
+
"title": "Form assist",
|
|
14
|
+
"description": "Describe what should be filled for {resource}. The suggestion will only be applied to the current form.",
|
|
15
|
+
"promptLabel": "Prompt",
|
|
16
|
+
"promptPlaceholder": "Example: Create a brand named ASUS with the official website https://www.asus.com and active status.",
|
|
17
|
+
"promptHint": "AI suggests values for the current form, but you still review everything before saving.",
|
|
18
|
+
"generate": "Generate suggestion",
|
|
19
|
+
"apply": "Apply suggestions",
|
|
20
|
+
"previewTitle": "Suggestion preview",
|
|
21
|
+
"previewDescription": "Review the suggested values before applying them to the form.",
|
|
22
|
+
"sections": {
|
|
23
|
+
"fields": "Form fields",
|
|
24
|
+
"productAttributes": "Technical attributes",
|
|
25
|
+
"warnings": "Warnings"
|
|
26
|
+
},
|
|
27
|
+
"errors": {
|
|
28
|
+
"promptRequired": "Enter a prompt to use AI.",
|
|
29
|
+
"generate": "Could not generate the AI suggestion."
|
|
30
|
+
},
|
|
31
|
+
"toasts": {
|
|
32
|
+
"applied": "Suggestions applied to the form."
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"backToCatalog": "Back to dashboard",
|
|
36
|
+
"refresh": "Refresh",
|
|
37
|
+
"confirmDelete": "Delete this record?",
|
|
38
|
+
"confirmDeleteDescription": "This operation cannot be undone.",
|
|
39
|
+
"unsupportedResource": "Unsupported catalog resource.",
|
|
40
|
+
"breadcrumbs": {
|
|
41
|
+
"home": "Home",
|
|
42
|
+
"catalog": "Catalog"
|
|
43
|
+
},
|
|
44
|
+
"dashboard": {
|
|
45
|
+
"title": "Dashboard",
|
|
46
|
+
"subtitle": "Operational view of the catalog with real resource data.",
|
|
47
|
+
"heroBadge": "Catalog overview",
|
|
48
|
+
"heroTitle": "Track the structured catalog from one control panel.",
|
|
49
|
+
"heroDescription": "Monitor the resources the team uses most, compare domain volumes, and move quickly across the areas operated every day.",
|
|
50
|
+
"primaryAction": "Open products",
|
|
51
|
+
"secondaryAction": "View imports",
|
|
52
|
+
"summary": {
|
|
53
|
+
"totalRecords": "Total records",
|
|
54
|
+
"activeRecords": "Active/published",
|
|
55
|
+
"monitoredResources": "Resources with data"
|
|
56
|
+
},
|
|
57
|
+
"card": {
|
|
58
|
+
"totalLabel": "Total",
|
|
59
|
+
"activeLabel": "{count} active/published",
|
|
60
|
+
"noActiveLabel": "No tracked metric"
|
|
61
|
+
},
|
|
62
|
+
"charts": {
|
|
63
|
+
"volume": {
|
|
64
|
+
"title": "Highest volume by resource",
|
|
65
|
+
"description": "Comparison across the resources with the most records."
|
|
66
|
+
},
|
|
67
|
+
"status": {
|
|
68
|
+
"title": "Tracked status",
|
|
69
|
+
"description": "Status view across the {count} resources with a tracked metric."
|
|
70
|
+
},
|
|
71
|
+
"distribution": {
|
|
72
|
+
"title": "Volume distribution",
|
|
73
|
+
"description": "Relative share of the main resources."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"ranking": {
|
|
77
|
+
"title": "Resource ranking",
|
|
78
|
+
"description": "The largest modules right now.",
|
|
79
|
+
"activeCount": "{count} active/published"
|
|
80
|
+
},
|
|
81
|
+
"quickActions": {
|
|
82
|
+
"itemHint": "Quick access"
|
|
83
|
+
},
|
|
84
|
+
"footer": {
|
|
85
|
+
"title": "Consolidated module view",
|
|
86
|
+
"description": "The charts use real statistics and organize navigation around them.",
|
|
87
|
+
"realData": "Real data",
|
|
88
|
+
"multiView": "Multi-resource view",
|
|
89
|
+
"resourceCount": "{count} monitored resources"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"resource": {
|
|
93
|
+
"notFound": "Resource not found",
|
|
94
|
+
"unsupportedDescription": "Choose one of the module resources to continue navigating through the catalog.",
|
|
95
|
+
"emptyStateTitle": "No records found",
|
|
96
|
+
"emptyStateDescription": "Adjust filters or create the first record for this resource.",
|
|
97
|
+
"emptyStateAction": "Create new record",
|
|
98
|
+
"booleans": {
|
|
99
|
+
"true": "Yes",
|
|
100
|
+
"false": "No"
|
|
101
|
+
},
|
|
102
|
+
"kpis": {
|
|
103
|
+
"total": "Resource total",
|
|
104
|
+
"active": "Active/published",
|
|
105
|
+
"visible": "Visible records",
|
|
106
|
+
"activeInSlice": "Active in slice",
|
|
107
|
+
"inStockInSlice": "In stock in slice",
|
|
108
|
+
"filterableInSlice": "Filterable in slice",
|
|
109
|
+
"requiredInSlice": "Required in slice",
|
|
110
|
+
"publishedInSlice": "Published in slice",
|
|
111
|
+
"verifiedInSlice": "Verified in slice"
|
|
112
|
+
},
|
|
113
|
+
"filters": {
|
|
114
|
+
"all": "All",
|
|
115
|
+
"status": "Status",
|
|
116
|
+
"availability_status": "Availability",
|
|
117
|
+
"data_type": "Data type",
|
|
118
|
+
"facet_mode": "Facet mode",
|
|
119
|
+
"is_verified": "Verification"
|
|
120
|
+
},
|
|
121
|
+
"filterOptions": {
|
|
122
|
+
"status": {
|
|
123
|
+
"active": "Active",
|
|
124
|
+
"inactive": "Inactive",
|
|
125
|
+
"draft": "Draft",
|
|
126
|
+
"published": "Published",
|
|
127
|
+
"archived": "Archived",
|
|
128
|
+
"hidden": "Hidden"
|
|
129
|
+
},
|
|
130
|
+
"availability_status": {
|
|
131
|
+
"inStock": "In stock",
|
|
132
|
+
"outOfStock": "Out of stock",
|
|
133
|
+
"preOrder": "Pre-order",
|
|
134
|
+
"unknown": "Unknown"
|
|
135
|
+
},
|
|
136
|
+
"data_type": {
|
|
137
|
+
"text": "Text",
|
|
138
|
+
"longText": "Long text",
|
|
139
|
+
"number": "Number",
|
|
140
|
+
"boolean": "Boolean",
|
|
141
|
+
"option": "Option"
|
|
142
|
+
},
|
|
143
|
+
"facet_mode": {
|
|
144
|
+
"default": "Default",
|
|
145
|
+
"range": "Range",
|
|
146
|
+
"select": "Select",
|
|
147
|
+
"hidden": "Hidden"
|
|
148
|
+
},
|
|
149
|
+
"is_verified": {
|
|
150
|
+
"verified": "Verified",
|
|
151
|
+
"unverified": "Unverified"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"fields": {
|
|
155
|
+
"actions": "Actions",
|
|
156
|
+
"id": "ID",
|
|
157
|
+
"name": "Name",
|
|
158
|
+
"slug": "Slug",
|
|
159
|
+
"status": "Status",
|
|
160
|
+
"normalizedName": "Normalized name",
|
|
161
|
+
"websiteUrl": "Website",
|
|
162
|
+
"domain": "Domain",
|
|
163
|
+
"defaultLocaleId": "Default locale",
|
|
164
|
+
"sku": "SKU",
|
|
165
|
+
"brandId": "Brand",
|
|
166
|
+
"code": "Code",
|
|
167
|
+
"groupId": "Group",
|
|
168
|
+
"groupName": "Group name",
|
|
169
|
+
"label": "Label",
|
|
170
|
+
"dataType": "Data type",
|
|
171
|
+
"comparisonMode": "Comparison mode",
|
|
172
|
+
"requiredForComparison": "Required for comparison",
|
|
173
|
+
"isComparable": "Comparable",
|
|
174
|
+
"isRequiredDefault": "Required by default",
|
|
175
|
+
"facetMode": "Facet mode",
|
|
176
|
+
"attributeId": "Attribute",
|
|
177
|
+
"isRequired": "Required",
|
|
178
|
+
"isHighlighted": "Highlighted",
|
|
179
|
+
"isHighlight": "Highlight",
|
|
180
|
+
"isFilterVisible": "Visible in filters",
|
|
181
|
+
"isComparisonVisible": "Visible in comparison",
|
|
182
|
+
"weight": "Weight",
|
|
183
|
+
"siteId": "Site",
|
|
184
|
+
"merchantId": "Merchant",
|
|
185
|
+
"productId": "Product",
|
|
186
|
+
"priceAmount": "Price",
|
|
187
|
+
"merchantType": "Merchant type",
|
|
188
|
+
"logoFileId": "Logo file",
|
|
189
|
+
"commissionType": "Commission type",
|
|
190
|
+
"defaultCommissionValue": "Default commission",
|
|
191
|
+
"priority": "Priority",
|
|
192
|
+
"sourceType": "Source type",
|
|
193
|
+
"isFilterable": "Filterable",
|
|
194
|
+
"parentCategoryId": "Parent category",
|
|
195
|
+
"comparisonEnabled": "Comparison enabled",
|
|
196
|
+
"sortOrder": "Sort order",
|
|
197
|
+
"catalogCategoryId": "Category",
|
|
198
|
+
"isActive": "Active",
|
|
199
|
+
"optionValue": "Option value",
|
|
200
|
+
"isDefault": "Default",
|
|
201
|
+
"attributeOptionId": "Attribute option",
|
|
202
|
+
"rawValue": "Raw value",
|
|
203
|
+
"normalizedValue": "Normalized value",
|
|
204
|
+
"valueText": "Text value",
|
|
205
|
+
"isVerified": "Verified"
|
|
206
|
+
},
|
|
207
|
+
"valueLabels": {
|
|
208
|
+
"status": {
|
|
209
|
+
"active": "Active",
|
|
210
|
+
"inactive": "Inactive",
|
|
211
|
+
"draft": "Draft",
|
|
212
|
+
"published": "Published",
|
|
213
|
+
"archived": "Archived",
|
|
214
|
+
"hidden": "Hidden"
|
|
215
|
+
},
|
|
216
|
+
"comparison_status": {
|
|
217
|
+
"draft": "Draft",
|
|
218
|
+
"ready": "Ready",
|
|
219
|
+
"disabled": "Disabled"
|
|
220
|
+
},
|
|
221
|
+
"availability_status": {
|
|
222
|
+
"in_stock": "In stock",
|
|
223
|
+
"out_of_stock": "Out of stock",
|
|
224
|
+
"pre_order": "Pre-order",
|
|
225
|
+
"unknown": "Unknown"
|
|
226
|
+
},
|
|
227
|
+
"site_type": {
|
|
228
|
+
"portal": "Portal",
|
|
229
|
+
"niche": "Niche",
|
|
230
|
+
"tenant": "Tenant"
|
|
231
|
+
},
|
|
232
|
+
"merchant_type": {
|
|
233
|
+
"retailer": "Retailer",
|
|
234
|
+
"marketplace": "Marketplace",
|
|
235
|
+
"saas": "SaaS",
|
|
236
|
+
"direct": "Direct"
|
|
237
|
+
},
|
|
238
|
+
"network_type": {
|
|
239
|
+
"amazon": "Amazon",
|
|
240
|
+
"mercado_livre": "Mercado Livre",
|
|
241
|
+
"aliexpress": "AliExpress",
|
|
242
|
+
"kabum": "KaBuM!",
|
|
243
|
+
"direct": "Direct",
|
|
244
|
+
"network": "Network"
|
|
245
|
+
},
|
|
246
|
+
"commission_type": {
|
|
247
|
+
"percentage": "Percentage",
|
|
248
|
+
"fixed": "Fixed"
|
|
249
|
+
},
|
|
250
|
+
"page_type": {
|
|
251
|
+
"comparison": "Comparison",
|
|
252
|
+
"best_of": "Best of",
|
|
253
|
+
"cost_benefit": "Cost benefit",
|
|
254
|
+
"attribute": "Attribute",
|
|
255
|
+
"price_range": "Price range",
|
|
256
|
+
"brand": "Brand",
|
|
257
|
+
"use_case": "Use case"
|
|
258
|
+
},
|
|
259
|
+
"canonical_strategy": {
|
|
260
|
+
"self": "Self",
|
|
261
|
+
"parent": "Parent",
|
|
262
|
+
"custom": "Custom"
|
|
263
|
+
},
|
|
264
|
+
"source_type": {
|
|
265
|
+
"api": "API",
|
|
266
|
+
"feed": "Feed",
|
|
267
|
+
"file": "File",
|
|
268
|
+
"crawler": "Crawler"
|
|
269
|
+
},
|
|
270
|
+
"data_type": {
|
|
271
|
+
"text": "Text",
|
|
272
|
+
"long_text": "Long text",
|
|
273
|
+
"number": "Number",
|
|
274
|
+
"boolean": "Boolean",
|
|
275
|
+
"option": "Option"
|
|
276
|
+
},
|
|
277
|
+
"comparison_mode": {
|
|
278
|
+
"neutral": "Neutral",
|
|
279
|
+
"higher_better": "Higher is better",
|
|
280
|
+
"lower_better": "Lower is better",
|
|
281
|
+
"boolean_true_better": "True is better",
|
|
282
|
+
"exact_match": "Exact match"
|
|
283
|
+
},
|
|
284
|
+
"facet_mode": {
|
|
285
|
+
"default": "Default",
|
|
286
|
+
"range": "Range",
|
|
287
|
+
"select": "Select",
|
|
288
|
+
"hidden": "Hidden"
|
|
289
|
+
},
|
|
290
|
+
"comparison_type": {
|
|
291
|
+
"manual": "Manual",
|
|
292
|
+
"automatic": "Automatic",
|
|
293
|
+
"similarity": "Similarity",
|
|
294
|
+
"compatibility": "Compatibility"
|
|
295
|
+
},
|
|
296
|
+
"generation_mode": {
|
|
297
|
+
"manual": "Manual",
|
|
298
|
+
"automatic": "Automatic"
|
|
299
|
+
},
|
|
300
|
+
"is_verified": {
|
|
301
|
+
"true": "Verified",
|
|
302
|
+
"false": "Unverified"
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"toasts": {
|
|
307
|
+
"saveSuccess": "{resource} saved successfully.",
|
|
308
|
+
"saveError": "Failed to save resource.",
|
|
309
|
+
"deleteSuccess": "Record deleted successfully.",
|
|
310
|
+
"deleteError": "Failed to delete record."
|
|
311
|
+
},
|
|
312
|
+
"resources": {
|
|
313
|
+
"categories": {
|
|
314
|
+
"title": "Categories",
|
|
315
|
+
"shortTitle": "Categories",
|
|
316
|
+
"description": "Official catalog taxonomy for attributes, products, and publication."
|
|
317
|
+
},
|
|
318
|
+
"brands": {
|
|
319
|
+
"title": "Brands",
|
|
320
|
+
"shortTitle": "Brands",
|
|
321
|
+
"description": "Manufacturers, brands, and portfolio normalization."
|
|
322
|
+
},
|
|
323
|
+
"sites": {
|
|
324
|
+
"title": "Sites",
|
|
325
|
+
"shortTitle": "Sites",
|
|
326
|
+
"description": "Domains, visual identity, and multi-site publication."
|
|
327
|
+
},
|
|
328
|
+
"products": {
|
|
329
|
+
"title": "Products",
|
|
330
|
+
"shortTitle": "Products",
|
|
331
|
+
"description": "Main product catalog with structured attributes."
|
|
332
|
+
},
|
|
333
|
+
"attributeGroups": {
|
|
334
|
+
"title": "Attribute groups",
|
|
335
|
+
"shortTitle": "Groups",
|
|
336
|
+
"description": "Visual and logical groupings for comparable attributes."
|
|
337
|
+
},
|
|
338
|
+
"attributes": {
|
|
339
|
+
"title": "Attributes",
|
|
340
|
+
"shortTitle": "Attributes",
|
|
341
|
+
"description": "Typed dictionary of comparable attributes."
|
|
342
|
+
},
|
|
343
|
+
"attributeOptions": {
|
|
344
|
+
"title": "Attribute options",
|
|
345
|
+
"shortTitle": "Options",
|
|
346
|
+
"description": "Enumerable options for select-type attributes."
|
|
347
|
+
},
|
|
348
|
+
"categoryAttributes": {
|
|
349
|
+
"title": "Category attributes",
|
|
350
|
+
"shortTitle": "Cat. attrs",
|
|
351
|
+
"description": "Required, highlight, and facet rules per category."
|
|
352
|
+
},
|
|
353
|
+
"productAttributes": {
|
|
354
|
+
"title": "Product attributes",
|
|
355
|
+
"shortTitle": "Prod. attrs",
|
|
356
|
+
"description": "Structured attribute values by product."
|
|
357
|
+
},
|
|
358
|
+
"comparisons": {
|
|
359
|
+
"title": "Comparisons",
|
|
360
|
+
"shortTitle": "Comparisons",
|
|
361
|
+
"description": "Comparison pages between products."
|
|
362
|
+
},
|
|
363
|
+
"offers": {
|
|
364
|
+
"title": "Offers",
|
|
365
|
+
"shortTitle": "Offers",
|
|
366
|
+
"description": "Commercial offers, prices, and affiliate links."
|
|
367
|
+
},
|
|
368
|
+
"merchants": {
|
|
369
|
+
"title": "Merchants",
|
|
370
|
+
"shortTitle": "Merchants",
|
|
371
|
+
"description": "Stores, retailers, and business partners."
|
|
372
|
+
},
|
|
373
|
+
"affiliatePrograms": {
|
|
374
|
+
"title": "Affiliate programs",
|
|
375
|
+
"shortTitle": "Affiliate",
|
|
376
|
+
"description": "Affiliate networks and direct programs by merchant."
|
|
377
|
+
},
|
|
378
|
+
"seoRules": {
|
|
379
|
+
"title": "SEO rules",
|
|
380
|
+
"shortTitle": "SEO",
|
|
381
|
+
"description": "Rules for programmatic page generation."
|
|
382
|
+
},
|
|
383
|
+
"importSources": {
|
|
384
|
+
"title": "Import sources",
|
|
385
|
+
"shortTitle": "Imports",
|
|
386
|
+
"description": "Feeds, APIs, and external integrations for ingestion."
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|