@yuuvis/client-core 2.3.24 → 2.3.25
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.
|
@@ -162,6 +162,7 @@ var ContentStreamAllowed;
|
|
|
162
162
|
// classifications applied to object type fields
|
|
163
163
|
var Classification;
|
|
164
164
|
(function (Classification) {
|
|
165
|
+
Classification["STRING_CATALOG_I18N"] = "i18n:catalog";
|
|
165
166
|
Classification["STRING_CATALOG_CUSTOM"] = "custom:catalog";
|
|
166
167
|
Classification["STRING_CATALOG_DYNAMIC"] = "dynamic:catalog";
|
|
167
168
|
Classification["STRING_CATALOG"] = "catalog";
|
|
@@ -205,6 +206,7 @@ var InternalFieldType;
|
|
|
205
206
|
InternalFieldType["STRING_ORGANIZATION"] = "string:organization";
|
|
206
207
|
InternalFieldType["STRING_REFERENCE"] = "string:reference";
|
|
207
208
|
InternalFieldType["STRING_CATALOG"] = "string:catalog";
|
|
209
|
+
InternalFieldType["STRING_CATALOG_I18N"] = "string:catalog:i18n";
|
|
208
210
|
InternalFieldType["STRING_DYNAMIC_CATALOG"] = "string:catalog:dynamic";
|
|
209
211
|
InternalFieldType["BOOLEAN_SWITCH"] = "boolean:switch";
|
|
210
212
|
})(InternalFieldType || (InternalFieldType = {}));
|
|
@@ -1828,6 +1830,9 @@ class SystemService {
|
|
|
1828
1830
|
else if (type === 'string' && _classifications.has(Classification.STRING_ORGANIZATION_SET)) {
|
|
1829
1831
|
return InternalFieldType.STRING_ORGANIZATION_SET;
|
|
1830
1832
|
}
|
|
1833
|
+
else if (type === 'string' && _classifications.has(Classification.STRING_CATALOG_I18N)) {
|
|
1834
|
+
return InternalFieldType.STRING_CATALOG_I18N;
|
|
1835
|
+
}
|
|
1831
1836
|
else if (type === 'string' && _classifications.has(Classification.STRING_CATALOG)) {
|
|
1832
1837
|
return InternalFieldType.STRING_CATALOG;
|
|
1833
1838
|
}
|