pareto-core 0.1.147 → 0.1.148

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,3 +4,5 @@ export * from "./query_function";
4
4
  export * from "./query_result";
5
5
  export * from "./query";
6
6
  export * from "./decide";
7
+ import query_function from "./query_function";
8
+ export { query_function, };
@@ -35,12 +35,17 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
+ var __importDefault = (this && this.__importDefault) || function (mod) {
39
+ return (mod && mod.__esModule) ? mod : { "default": mod };
40
+ };
38
41
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.literal = void 0;
42
+ exports.query_function = exports.literal = void 0;
40
43
  exports.literal = __importStar(require("../__internal/sync/literal"));
41
44
  __exportStar(require("./query_expressions"), exports);
42
45
  __exportStar(require("./query_function"), exports);
43
46
  __exportStar(require("./query_result"), exports);
44
47
  __exportStar(require("./query"), exports);
45
48
  __exportStar(require("./decide"), exports);
46
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vcXVlcnkvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0Esc0VBQXFEO0FBQ3JELHNEQUFtQztBQUNuQyxtREFBZ0M7QUFDaEMsaURBQThCO0FBQzlCLDBDQUF1QjtBQUN2QiwyQ0FBd0IifQ==
49
+ const query_function_1 = __importDefault(require("./query_function"));
50
+ exports.query_function = query_function_1.default;
51
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vcXVlcnkvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0Esc0VBQXFEO0FBQ3JELHNEQUFtQztBQUNuQyxtREFBZ0M7QUFDaEMsaURBQThCO0FBQzlCLDBDQUF1QjtBQUN2QiwyQ0FBd0I7QUFFeEIsc0VBQTZDO0FBR3pDLHlCQUhHLHdCQUFjLENBR0gifQ==
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core",
3
- "version": "0.1.147",
3
+ "version": "0.1.148",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "the core language constructs for the Pareto programming language (in TypeScript)",