@imbricate/core 3.26.0 → 3.27.0

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.
@@ -3,7 +3,7 @@
3
3
  * @namespace Common
4
4
  * @description Action
5
5
  */
6
- import { IETF_LOCALE } from "@sudoo/locale";
6
+ import type { IETF_LOCALE } from "@sudoo/locale";
7
7
  import { CommonActionOutcomeSymbol, CommonOutcomeSymbol } from "./outcome";
8
8
  export declare enum IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE {
9
9
  STRING = "STRING"
@@ -26,8 +26,9 @@ export declare enum IMBRICATE_ORIGIN_ACTION_APPEARANCE {
26
26
  }
27
27
  export type ImbricateOriginAction = {
28
28
  readonly actionIdentifier: string;
29
- readonly actionName: Record<IETF_LOCALE, string>;
30
- readonly actionDescription: Record<IETF_LOCALE, string>;
29
+ readonly defaultLocale: IETF_LOCALE;
30
+ readonly actionName: Partial<Record<IETF_LOCALE, string>>;
31
+ readonly actionDescription: Partial<Record<IETF_LOCALE, string>>;
31
32
  readonly parameters: ImbricateOriginActionParameter[];
32
33
  readonly appearance?: IMBRICATE_ORIGIN_ACTION_APPEARANCE;
33
34
  readonly disabled?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.26.0",
4
+ "version": "3.27.0",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "url": "https://github.com/Imbricate/Imbricate/issues"
19
19
  },
20
20
  "homepage": "https://imbricate.io",
21
- "dependencies": {
21
+ "optionalDependencies": {
22
22
  "@sudoo/locale": "^2.0.0"
23
23
  }
24
24
  }