@imbricate/core 3.19.0 → 3.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/common/action.d.ts +4 -2
- package/package.json +1 -1
package/common/action.d.ts
CHANGED
|
@@ -14,7 +14,8 @@ export type ImbricateOriginActionParameterType = {
|
|
|
14
14
|
};
|
|
15
15
|
export type ImbricateOriginActionParameter = {
|
|
16
16
|
readonly parameterKey: string;
|
|
17
|
-
readonly
|
|
17
|
+
readonly parameterName: Record<IETF_LOCALE, string>;
|
|
18
|
+
readonly parameterDescription: Record<IETF_LOCALE, string>;
|
|
18
19
|
readonly parameterType: ImbricateOriginActionParameterType;
|
|
19
20
|
};
|
|
20
21
|
export declare enum IMBRICATE_ORIGIN_ACTION_APPEARANCE {
|
|
@@ -26,7 +27,8 @@ export declare enum IMBRICATE_ORIGIN_ACTION_APPEARANCE {
|
|
|
26
27
|
}
|
|
27
28
|
export type ImbricateOriginAction = {
|
|
28
29
|
readonly actionIdentifier: string;
|
|
29
|
-
readonly
|
|
30
|
+
readonly actionName: Record<IETF_LOCALE, string>;
|
|
31
|
+
readonly actionDescription: Record<IETF_LOCALE, string>;
|
|
30
32
|
readonly parameters: ImbricateOriginActionParameter[];
|
|
31
33
|
readonly appearance?: IMBRICATE_ORIGIN_ACTION_APPEARANCE;
|
|
32
34
|
readonly disabled?: boolean;
|