@paintswap/estfor-definitions 1.0.69 → 1.0.70

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.
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { default as NONE } from './constants';
1
+ import { NONE } from './constants';
2
2
  import * as EstforTypes from './types';
3
3
  import * as EstforConstants from './constants';
4
4
  export { EstforTypes, EstforConstants, NONE };
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,KAAK,WAAW,MAAM,SAAS,CAAA;AACtC,OAAO,KAAK,eAAe,MAAM,aAAa,CAAA;AAE9C,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,IAAI,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,KAAK,WAAW,MAAM,SAAS,CAAA;AACtC,OAAO,KAAK,eAAe,MAAM,aAAa,CAAA;AAE9C,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,IAAI,EAAE,CAAA"}
package/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NONE = exports.EstforConstants = exports.EstforTypes = void 0;
4
4
  const constants_1 = require("./constants");
5
- Object.defineProperty(exports, "NONE", { enumerable: true, get: function () { return constants_1.default; } });
5
+ Object.defineProperty(exports, "NONE", { enumerable: true, get: function () { return constants_1.NONE; } });
6
6
  const EstforTypes = require("./types");
7
7
  exports.EstforTypes = EstforTypes;
8
8
  const EstforConstants = require("./constants");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paintswap/estfor-definitions",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "description": "Types and constants for Estfor Kingdom",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "web3",
19
19
  "thegraph"
20
20
  ],
21
- "module": "CommonJS",
21
+ "module": "src/index.mjs",
22
22
  "ascMain": "src/index.ts",
23
23
  "main": "index.js",
24
24
  "types": "index.d.ts",
package/src/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ import { NONE } from '../constants.js'
2
+ import * as EstforTypes from '../types.js'
3
+ import * as EstforConstants from '../constants.js'
4
+
5
+ export { EstforTypes, EstforConstants, NONE }
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { default as NONE } from './constants'
1
+ import { NONE } from './constants'
2
2
  import * as EstforTypes from './types'
3
3
  import * as EstforConstants from './constants'
4
4