@imbricate/core 3.25.0 → 3.25.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.
@@ -4,7 +4,6 @@
4
4
  * @description Action
5
5
  */
6
6
  import { IETF_LOCALE } from "@sudoo/locale";
7
- import { HTTP_RESPONSE_CODE } from "@sudoo/magic";
8
7
  import { CommonActionOutcomeSymbol, CommonOutcomeSymbol } from "./outcome";
9
8
  export declare enum IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE {
10
9
  STRING = "STRING"
@@ -41,8 +40,13 @@ export type ImbricateOriginActionResultReference = {};
41
40
  export type ImbricateOriginActionResultOutput = {
42
41
  readonly content: string;
43
42
  };
43
+ export declare enum IMBRICATE_ORIGIN_ACTION_RESULT_STATUS {
44
+ SUCCESS = "SUCCESS",
45
+ BAD_INPUT = "BAD_INPUT",
46
+ INTERNAL_ERROR = "INTERNAL_ERROR"
47
+ }
44
48
  export type ImbricateOriginActionOutcome = {
45
- readonly response: HTTP_RESPONSE_CODE;
49
+ readonly response: IMBRICATE_ORIGIN_ACTION_RESULT_STATUS;
46
50
  readonly outputs: ImbricateOriginActionResultOutput[];
47
51
  readonly references: ImbricateOriginActionResultReference[];
48
52
  } | CommonOutcomeSymbol | CommonActionOutcomeSymbol;
package/common/action.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * @description Action
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.rebuildImbricateCommonQueryOriginActionsSymbol = exports.ImbricateCommonQueryOriginActionsOutcomeSymbolList = exports.S_Common_QueryOriginActions_Unknown = exports.S_Common_QueryOriginActions_Stale = exports.IMBRICATE_ORIGIN_ACTION_APPEARANCE = exports.IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE = void 0;
8
+ exports.rebuildImbricateCommonQueryOriginActionsSymbol = exports.ImbricateCommonQueryOriginActionsOutcomeSymbolList = exports.S_Common_QueryOriginActions_Unknown = exports.S_Common_QueryOriginActions_Stale = exports.IMBRICATE_ORIGIN_ACTION_RESULT_STATUS = exports.IMBRICATE_ORIGIN_ACTION_APPEARANCE = exports.IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE = void 0;
9
9
  const rebuild_symbol_1 = require("../util/rebuild-symbol");
10
10
  var IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE;
11
11
  (function (IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE) {
@@ -19,6 +19,12 @@ var IMBRICATE_ORIGIN_ACTION_APPEARANCE;
19
19
  IMBRICATE_ORIGIN_ACTION_APPEARANCE["WARNING"] = "WARNING";
20
20
  IMBRICATE_ORIGIN_ACTION_APPEARANCE["DANGER"] = "DANGER";
21
21
  })(IMBRICATE_ORIGIN_ACTION_APPEARANCE || (exports.IMBRICATE_ORIGIN_ACTION_APPEARANCE = IMBRICATE_ORIGIN_ACTION_APPEARANCE = {}));
22
+ var IMBRICATE_ORIGIN_ACTION_RESULT_STATUS;
23
+ (function (IMBRICATE_ORIGIN_ACTION_RESULT_STATUS) {
24
+ IMBRICATE_ORIGIN_ACTION_RESULT_STATUS["SUCCESS"] = "SUCCESS";
25
+ IMBRICATE_ORIGIN_ACTION_RESULT_STATUS["BAD_INPUT"] = "BAD_INPUT";
26
+ IMBRICATE_ORIGIN_ACTION_RESULT_STATUS["INTERNAL_ERROR"] = "INTERNAL_ERROR";
27
+ })(IMBRICATE_ORIGIN_ACTION_RESULT_STATUS || (exports.IMBRICATE_ORIGIN_ACTION_RESULT_STATUS = IMBRICATE_ORIGIN_ACTION_RESULT_STATUS = {}));
22
28
  // Query Origin Actions
23
29
  exports.S_Common_QueryOriginActions_Stale = Symbol("Common_QueryOriginActions_Stale");
24
30
  exports.S_Common_QueryOriginActions_Unknown = Symbol("Common_QueryOriginActions_Unknown");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.25.0",
4
+ "version": "3.25.1",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
@@ -19,7 +19,6 @@
19
19
  },
20
20
  "homepage": "https://imbricate.io",
21
21
  "dependencies": {
22
- "@sudoo/locale": "^2.0.0",
23
- "@sudoo/magic": "^1.9.0"
22
+ "@sudoo/locale": "^2.0.0"
24
23
  }
25
24
  }