[ACS-6630] Replaced references of any

This commit is contained in:
swapnil.verma
2024-04-04 14:32:24 +05:30
parent 6b7cf620a2
commit 9b9d73f799
3 changed files with 4 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ settingsApi.publishExtensionConfig(`<instanceId>`, extensionConfig).then(() => {
| Name | Type |
|------------|-----------------------------------|
| **type** | string |
| **value** | any |
| **value** | string |
| parameters | [RuleParameter[]](#RuleParameter) |
## ActionRef
@@ -126,4 +126,4 @@ settingsApi.publishExtensionConfig(`<instanceId>`, extensionConfig).then(() => {
|-------------|--------|
| **id** | string |
| **type** | string |
| **payload** | any |
| **payload** | string |

View File

@@ -18,5 +18,5 @@
export interface ActionRef {
id: string;
type: string;
payload?: any;
payload?: string;
}

View File

@@ -17,7 +17,7 @@
export interface RuleParameter {
type: string;
value: any;
value: string;
parameters?: Array<RuleParameter>;
}