Skip to content

Commit b2ccbe1

Browse files
committed
Rules Api's Action object updated
1 parent 3c183c1 commit b2ccbe1

File tree

1 file changed

+2
-18
lines changed

1 file changed

+2
-18
lines changed

model/action.ts

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,7 @@ export class Action {
2525
* A regular expression to extract a value. Applies to provisionable, multi-selects, and string actions.
2626
*/
2727
'expression'?: string;
28-
/**
29-
* A hash containing scriptlet code that returns a value.
30-
*/
31-
'scriplet'?: string;
32-
/**
33-
* A template to construct a value. Applies to default, string, and list actions.
34-
*/
35-
'macro'?: string;
28+
3629

3730
static discriminator: string | undefined = undefined;
3831

@@ -52,16 +45,7 @@ export class Action {
5245
"baseName": "expression",
5346
"type": "string"
5447
},
55-
{
56-
"name": "scriplet",
57-
"baseName": "scriplet",
58-
"type": "string"
59-
},
60-
{
61-
"name": "macro",
62-
"baseName": "macro",
63-
"type": "string"
64-
} ];
48+
];
6549

6650
static getAttributeTypeMap() {
6751
return Action.attributeTypeMap;

0 commit comments

Comments
 (0)