rapida-partner 1.19.0 → 1.19.1
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
|
@@ -19,7 +19,7 @@ export type IFormCondition = {
|
|
|
19
19
|
[K in ConditionType]?: IConditionBody;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
|
-
interface IConditionElement {
|
|
22
|
+
export interface IConditionElement {
|
|
23
23
|
key: string;
|
|
24
24
|
value?: any;
|
|
25
25
|
array?: string;
|
|
@@ -27,7 +27,7 @@ interface IConditionElement {
|
|
|
27
27
|
logicalOperator?: "&&" | "!" | "nor" | "||";
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
interface IConditionCode {
|
|
30
|
+
export interface IConditionCode {
|
|
31
31
|
triggerField: string;
|
|
32
32
|
code: string;
|
|
33
33
|
}
|