@imbricate/core 3.27.0 → 3.27.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.
@@ -46,6 +46,7 @@ export declare enum IMBRICATE_ORIGIN_ACTION_RESULT_STATUS {
46
46
  BAD_INPUT = "BAD_INPUT",
47
47
  INTERNAL_ERROR = "INTERNAL_ERROR"
48
48
  }
49
+ export declare const rebuildImbricateOriginActionOutcomeSymbol: (symbolDescription: string) => CommonOutcomeSymbol | CommonActionOutcomeSymbol;
49
50
  export type ImbricateOriginActionOutcome = {
50
51
  readonly response: IMBRICATE_ORIGIN_ACTION_RESULT_STATUS;
51
52
  readonly outputs: ImbricateOriginActionResultOutput[];
package/common/action.js CHANGED
@@ -5,8 +5,9 @@
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_RESULT_STATUS = 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.rebuildImbricateOriginActionOutcomeSymbol = 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
+ const outcome_1 = require("./outcome");
10
11
  var IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE;
11
12
  (function (IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE) {
12
13
  IMBRICATE_ORIGIN_ACTION_PARAMETER_TYPE["STRING"] = "STRING";
@@ -25,6 +26,7 @@ var IMBRICATE_ORIGIN_ACTION_RESULT_STATUS;
25
26
  IMBRICATE_ORIGIN_ACTION_RESULT_STATUS["BAD_INPUT"] = "BAD_INPUT";
26
27
  IMBRICATE_ORIGIN_ACTION_RESULT_STATUS["INTERNAL_ERROR"] = "INTERNAL_ERROR";
27
28
  })(IMBRICATE_ORIGIN_ACTION_RESULT_STATUS || (exports.IMBRICATE_ORIGIN_ACTION_RESULT_STATUS = IMBRICATE_ORIGIN_ACTION_RESULT_STATUS = {}));
29
+ exports.rebuildImbricateOriginActionOutcomeSymbol = (0, rebuild_symbol_1.createRebuildImbricateSymbolFunction)(outcome_1.CommonActionOutcomeSymbolList, outcome_1.S_Action_ActionResultStatusUnknown);
28
30
  // Query Origin Actions
29
31
  exports.S_Common_QueryOriginActions_Stale = Symbol("Common_QueryOriginActions_Stale");
30
32
  exports.S_Common_QueryOriginActions_Unknown = Symbol("Common_QueryOriginActions_Unknown");
@@ -10,5 +10,6 @@ export type CommonOutcomeSymbol = typeof S_Common_Origin_ConnectionFail | typeof
10
10
  export declare const CommonOutcomeSymbolList: CommonOutcomeSymbol[];
11
11
  export declare const S_Action_ActionNotFound: unique symbol;
12
12
  export declare const S_Action_ActionParameterNotFound: unique symbol;
13
- export type CommonActionOutcomeSymbol = typeof S_Action_ActionNotFound | typeof S_Action_ActionParameterNotFound;
13
+ export declare const S_Action_ActionResultStatusUnknown: unique symbol;
14
+ export type CommonActionOutcomeSymbol = typeof S_Action_ActionNotFound | typeof S_Action_ActionParameterNotFound | typeof S_Action_ActionResultStatusUnknown;
14
15
  export declare const CommonActionOutcomeSymbolList: CommonActionOutcomeSymbol[];
package/common/outcome.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * @description Outcome
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.CommonActionOutcomeSymbolList = exports.S_Action_ActionParameterNotFound = exports.S_Action_ActionNotFound = exports.CommonOutcomeSymbolList = exports.S_Common_Origin_NotAuthorized = exports.S_Common_Origin_ConnectionTimeout = exports.S_Common_Origin_ConnectionFail = void 0;
8
+ exports.CommonActionOutcomeSymbolList = exports.S_Action_ActionResultStatusUnknown = exports.S_Action_ActionParameterNotFound = exports.S_Action_ActionNotFound = exports.CommonOutcomeSymbolList = exports.S_Common_Origin_NotAuthorized = exports.S_Common_Origin_ConnectionTimeout = exports.S_Common_Origin_ConnectionFail = void 0;
9
9
  exports.S_Common_Origin_ConnectionFail = Symbol("Common_Origin_ConnectionFail");
10
10
  exports.S_Common_Origin_ConnectionTimeout = Symbol("Common_Origin_ConnectionTimeout");
11
11
  exports.S_Common_Origin_NotAuthorized = Symbol("Common_Origin_NotAuthorized");
@@ -16,7 +16,9 @@ exports.CommonOutcomeSymbolList = [
16
16
  ];
17
17
  exports.S_Action_ActionNotFound = Symbol("Action_ActionNotFound");
18
18
  exports.S_Action_ActionParameterNotFound = Symbol("Action_ActionParameterNotFound");
19
+ exports.S_Action_ActionResultStatusUnknown = Symbol("Action_ActionResultStatusUnknown");
19
20
  exports.CommonActionOutcomeSymbolList = [
20
21
  exports.S_Action_ActionNotFound,
21
22
  exports.S_Action_ActionParameterNotFound,
23
+ exports.S_Action_ActionResultStatusUnknown,
22
24
  ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.27.0",
4
+ "version": "3.27.1",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",