@creatio/base 0.822.0 → 0.830.0
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/CHANGELOG.md +4 -0
- package/esm2022/lib/public/esq/data-model/expressions/sub-queries/sub-query-expression.mjs +2 -1
- package/esm2022/lib/public/services/model/data-schema-attribute-value-masking-settings.mjs +2 -0
- package/esm2022/lib/public/services/model/data-schema-attribute.mjs +1 -1
- package/esm2022/lib/public/services/model/index.mjs +7 -6
- package/fesm2022/creatio-base.mjs +1 -0
- package/fesm2022/creatio-base.mjs.map +1 -1
- package/index.d.ts +41 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1082,10 +1082,13 @@ export declare interface ɵDataSchema {
|
|
|
1082
1082
|
* @property {string} name - name of DataSchemaAttribute.
|
|
1083
1083
|
* @property {string} caption - caption of DataSchemaAttribute.
|
|
1084
1084
|
* @property {string} isValueCloneable - copy this DataSchemaAttribute value when copying object.
|
|
1085
|
-
* @property {string} referenceSchemaName - name of
|
|
1085
|
+
* @property {string} referenceSchemaName - name of reference DataSchema.
|
|
1086
1086
|
* @property {boolean} isMasked - is mask used for DataSchemaAttribute.
|
|
1087
1087
|
* @property {boolean} isFormatValidated - is format validated for DataSchemaAttribute.
|
|
1088
|
-
* @property {boolean} isSensitiveData - is data of DataSchemaAttribute
|
|
1088
|
+
* @property {boolean} isSensitiveData - is data of DataSchemaAttribute sensitive.
|
|
1089
|
+
* @property {boolean} isValueMasked - is value of DataSchemaAttribute masked.
|
|
1090
|
+
* @property {DataSchemaAttributeValueMaskingSettings} valueMaskingSettings -
|
|
1091
|
+
* settings for masking DataSchemaAttribute value.
|
|
1089
1092
|
* @property {boolean} isRequired - flag to determine DataSchemaAttribute required or not.
|
|
1090
1093
|
*/
|
|
1091
1094
|
export declare interface ɵDataSchemaAttribute {
|
|
@@ -1151,7 +1154,7 @@ export declare interface ɵDataSchemaAttribute {
|
|
|
1151
1154
|
aggregationConfig?: ɵDataSchemaAttributeAggregationConfig;
|
|
1152
1155
|
/**
|
|
1153
1156
|
* @public
|
|
1154
|
-
* @description Whether attribute should
|
|
1157
|
+
* @description Whether attribute should use mask for input.
|
|
1155
1158
|
*/
|
|
1156
1159
|
isMasked: boolean;
|
|
1157
1160
|
/**
|
|
@@ -1169,6 +1172,16 @@ export declare interface ɵDataSchemaAttribute {
|
|
|
1169
1172
|
* @description Whether attribute is contain sensitive data.
|
|
1170
1173
|
*/
|
|
1171
1174
|
isSensitiveData: boolean;
|
|
1175
|
+
/**
|
|
1176
|
+
* @public
|
|
1177
|
+
* @description Whether attribute value is masked.
|
|
1178
|
+
*/
|
|
1179
|
+
isValueMasked: boolean;
|
|
1180
|
+
/**
|
|
1181
|
+
* @public
|
|
1182
|
+
* @description Value masking settings.
|
|
1183
|
+
*/
|
|
1184
|
+
valueMaskingSettings: ɵDataSchemaAttributeValueMaskingSettings;
|
|
1172
1185
|
/**
|
|
1173
1186
|
* @public
|
|
1174
1187
|
* @description Usage type.
|
|
@@ -1245,6 +1258,31 @@ export declare interface ɵDataSchemaAttributeValidatorConfig {
|
|
|
1245
1258
|
};
|
|
1246
1259
|
}
|
|
1247
1260
|
|
|
1261
|
+
/**
|
|
1262
|
+
* @public
|
|
1263
|
+
* @description Masking settings for attribute value.
|
|
1264
|
+
* @property {string} pattern - Regular expression pattern to match the value.
|
|
1265
|
+
* @property {string} replacement - Replacement string for the matched value.
|
|
1266
|
+
* @property {string} adminOperationCode - Admin operation code for unmasking value.
|
|
1267
|
+
*/
|
|
1268
|
+
export declare interface ɵDataSchemaAttributeValueMaskingSettings {
|
|
1269
|
+
/**
|
|
1270
|
+
* @public
|
|
1271
|
+
* @description Regular expression pattern to match the value.
|
|
1272
|
+
*/
|
|
1273
|
+
pattern: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* @public
|
|
1276
|
+
* @description Replacement string for the matched value.
|
|
1277
|
+
*/
|
|
1278
|
+
replacement: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* @public
|
|
1281
|
+
* @description Admin operation code for unmasking value.
|
|
1282
|
+
*/
|
|
1283
|
+
adminOperationCode: string;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1248
1286
|
/**
|
|
1249
1287
|
* @public
|
|
1250
1288
|
* @decription Type of DataSchema. In combination with the name is used for unique identification of {@link ɵDataSchema}.
|