@evoke-platform/context 1.5.0-dev.4 → 1.5.0-dev.5
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.
|
@@ -134,6 +134,12 @@ export type Property = {
|
|
|
134
134
|
validation?: PropertyValidation;
|
|
135
135
|
manyToManyPropertyId?: string;
|
|
136
136
|
textTransform?: 'titleCase' | 'upperCase' | 'lowerCase' | 'sentenceCase';
|
|
137
|
+
protection?: PropertyProtection;
|
|
138
|
+
};
|
|
139
|
+
export type PropertyProtection = {
|
|
140
|
+
maskChar: string;
|
|
141
|
+
preserveFirst?: number;
|
|
142
|
+
preserveLast?: number;
|
|
137
143
|
};
|
|
138
144
|
export type ActionType = 'create' | 'update' | 'delete';
|
|
139
145
|
export type InputStringValidation = StringValidation & {
|