@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 & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.5.0-dev.4",
3
+ "version": "1.5.0-dev.5",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",