@alfresco/aca-playwright-shared 8.0.0-16785129299 → 8.0.0-16811620225
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/api/rules-api.d.ts
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
* You should have received a copy of the GNU Lesser General Public License
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
|
-
import { AcaFolderRulesModule } from '@alfresco/aca-content/folder-rules';
|
|
25
24
|
export declare class RulesApi {
|
|
26
25
|
private apiService;
|
|
27
26
|
constructor();
|
|
@@ -46,7 +45,7 @@ export interface Rule {
|
|
|
46
45
|
errorScript: string;
|
|
47
46
|
isShared: boolean;
|
|
48
47
|
triggers: RuleTrigger[];
|
|
49
|
-
conditions:
|
|
48
|
+
conditions: any;
|
|
50
49
|
actions: RuleAction[];
|
|
51
50
|
}
|
|
52
51
|
export interface RuleAction {
|
|
@@ -67,12 +66,12 @@ export declare class ActionTypes {
|
|
|
67
66
|
}
|
|
68
67
|
export declare class ConditionsTypes {
|
|
69
68
|
key: string;
|
|
70
|
-
value:
|
|
69
|
+
value: any;
|
|
71
70
|
static readonly MIMETYPE: ConditionsTypes;
|
|
72
71
|
static readonly CMNAME: ConditionsTypes;
|
|
73
72
|
static readonly SIZE: ConditionsTypes;
|
|
74
73
|
static readonly TAG: ConditionsTypes;
|
|
75
|
-
static readonly conditions:
|
|
76
|
-
constructor(key: string, value:
|
|
74
|
+
static readonly conditions: any[];
|
|
75
|
+
constructor(key: string, value: any);
|
|
77
76
|
}
|
|
78
77
|
export {};
|