@rowengine/common 1.1.8 → 1.1.10

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.
@@ -0,0 +1 @@
1
+ export * from './grades';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./grades"), exports);
@@ -1,2 +1,2 @@
1
- export * from './grades';
2
1
  export * from './gc';
2
+ export { default as gcStorage } from './gc-storage';
@@ -13,6 +13,11 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
13
13
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
+ var __importDefault = (this && this.__importDefault) || function (mod) {
17
+ return (mod && mod.__esModule) ? mod : { "default": mod };
18
+ };
16
19
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./grades"), exports);
20
+ exports.gcStorage = void 0;
18
21
  __exportStar(require("./gc"), exports);
22
+ var gc_storage_1 = require("./gc-storage");
23
+ Object.defineProperty(exports, "gcStorage", { enumerable: true, get: function () { return __importDefault(gc_storage_1).default; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowengine/common",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "private": false,
@@ -36,6 +36,14 @@
36
36
  "default": "./build/utils/index.js"
37
37
  },
38
38
  "./build/utils/index.js"
39
+ ],
40
+ "./constants": [
41
+ {
42
+ "import": "./build/constants/index.js",
43
+ "require": "./build/constants/index.js",
44
+ "default": "./build/constants/index.js"
45
+ },
46
+ "./build/constants/index.js"
39
47
  ]
40
48
  },
41
49
  "types": "./build/index.d.ts",
File without changes
File without changes