@dynamic-labs/sdk-api-core 0.0.434 → 0.0.435

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.434",
3
+ "version": "0.0.435",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -17,25 +17,25 @@ import { CustomFieldValidValue } from './CustomFieldValidValue';
17
17
  */
18
18
  export interface CustomFieldValidationRules {
19
19
  /**
20
- * if this field must be unique for every user in the environment
20
+ * If this field must be unique for every user in the environment
21
21
  * @type {boolean}
22
22
  * @memberof CustomFieldValidationRules
23
23
  */
24
24
  unique?: boolean;
25
25
  /**
26
- * must follow a certain regex
26
+ * The regex pattern that the text field must match
27
27
  * @type {string}
28
28
  * @memberof CustomFieldValidationRules
29
29
  */
30
30
  regex?: string;
31
31
  /**
32
- * must go with one of the valid selection choices
32
+ * The dropdown options for the select field
33
33
  * @type {Array<CustomFieldValidValue>}
34
34
  * @memberof CustomFieldValidationRules
35
35
  */
36
36
  validOptions?: Array<CustomFieldValidValue>;
37
37
  /**
38
- * text that will be displayed next to the checkbox
38
+ * The text that will be displayed for the checkbox field
39
39
  * @type {string}
40
40
  * @memberof CustomFieldValidationRules
41
41
  */