@xyo-network/diviner-boundwitness-stats-abstract 2.84.2 → 2.84.4
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/dist/node/index.cjs +35 -0
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.js +4 -31
- package/dist/node/index.js.map +1 -1
- package/package.json +11 -11
- package/dist/node/index.mjs +0 -8
- package/dist/node/index.mjs.map +0 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BoundWitnessStatsDiviner: () => BoundWitnessStatsDiviner
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(src_exports);
|
|
26
|
+
|
|
27
|
+
// src/Diviner.ts
|
|
28
|
+
var import_abstract_diviner = require("@xyo-network/abstract-diviner");
|
|
29
|
+
var BoundWitnessStatsDiviner = class extends import_abstract_diviner.AbstractDiviner {
|
|
30
|
+
};
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
BoundWitnessStatsDiviner
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/abstract-diviner'\nimport { BoundWitnessStatsDivinerParams } from '@xyo-network/diviner-boundwitness-stats-model'\n\nexport abstract class BoundWitnessStatsDiviner<\n TParams extends BoundWitnessStatsDivinerParams = BoundWitnessStatsDivinerParams,\n> extends AbstractDiviner<TParams> {}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,8BAAgC;AAGzB,IAAe,2BAAf,cAEG,wCAAyB;AAAC;","names":[]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,35 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
BoundWitnessStatsDiviner: () => BoundWitnessStatsDiviner
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(src_exports);
|
|
26
|
-
|
|
27
1
|
// src/Diviner.ts
|
|
28
|
-
|
|
29
|
-
var BoundWitnessStatsDiviner = class extends
|
|
2
|
+
import { AbstractDiviner } from "@xyo-network/abstract-diviner";
|
|
3
|
+
var BoundWitnessStatsDiviner = class extends AbstractDiviner {
|
|
30
4
|
};
|
|
31
|
-
|
|
32
|
-
0 && (module.exports = {
|
|
5
|
+
export {
|
|
33
6
|
BoundWitnessStatsDiviner
|
|
34
|
-
}
|
|
7
|
+
};
|
|
35
8
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/abstract-diviner'\nimport { BoundWitnessStatsDivinerParams } from '@xyo-network/diviner-boundwitness-stats-model'\n\nexport abstract class BoundWitnessStatsDiviner<\n TParams extends BoundWitnessStatsDivinerParams = BoundWitnessStatsDivinerParams,\n> extends AbstractDiviner<TParams> {}\n"],"mappings":";AAAA,SAAS,uBAAuB;AAGzB,IAAe,2BAAf,cAEG,gBAAyB;AAAC;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,16 +10,15 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/abstract-diviner": "~2.84.
|
|
14
|
-
"@xyo-network/diviner-boundwitness-stats-model": "~2.84.
|
|
13
|
+
"@xyo-network/abstract-diviner": "~2.84.4",
|
|
14
|
+
"@xyo-network/diviner-boundwitness-stats-model": "~2.84.4"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@xylabs/ts-scripts-yarn3": "^3.2.
|
|
18
|
-
"@xylabs/tsconfig": "^3.2.
|
|
17
|
+
"@xylabs/ts-scripts-yarn3": "^3.2.19",
|
|
18
|
+
"@xylabs/tsconfig": "^3.2.19",
|
|
19
19
|
"typescript": "^5.3.3"
|
|
20
20
|
},
|
|
21
21
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
22
|
-
"docs": "dist/docs.json",
|
|
23
22
|
"types": "dist/node/index.d.ts",
|
|
24
23
|
"exports": {
|
|
25
24
|
".": {
|
|
@@ -35,19 +34,19 @@
|
|
|
35
34
|
},
|
|
36
35
|
"node": {
|
|
37
36
|
"require": {
|
|
38
|
-
"types": "./dist/node/index.d.
|
|
39
|
-
"default": "./dist/node/index.
|
|
37
|
+
"types": "./dist/node/index.d.cts",
|
|
38
|
+
"default": "./dist/node/index.cjs"
|
|
40
39
|
},
|
|
41
40
|
"import": {
|
|
42
41
|
"types": "./dist/node/index.d.mts",
|
|
43
|
-
"default": "./dist/node/index.
|
|
42
|
+
"default": "./dist/node/index.js"
|
|
44
43
|
}
|
|
45
44
|
}
|
|
46
45
|
},
|
|
47
46
|
"./package.json": "./package.json"
|
|
48
47
|
},
|
|
49
|
-
"main": "dist/node/index.
|
|
50
|
-
"module": "dist/node/index.
|
|
48
|
+
"main": "dist/node/index.cjs",
|
|
49
|
+
"module": "dist/node/index.js",
|
|
51
50
|
"homepage": "https://xyo.network",
|
|
52
51
|
"license": "LGPL-3.0-only",
|
|
53
52
|
"publishConfig": {
|
|
@@ -58,5 +57,6 @@
|
|
|
58
57
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
59
58
|
},
|
|
60
59
|
"sideEffects": false,
|
|
61
|
-
"version": "2.84.
|
|
60
|
+
"version": "2.84.4",
|
|
61
|
+
"type": "module"
|
|
62
62
|
}
|
package/dist/node/index.mjs
DELETED
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/abstract-diviner'\nimport { BoundWitnessStatsDivinerParams } from '@xyo-network/diviner-boundwitness-stats-model'\n\nexport abstract class BoundWitnessStatsDiviner<\n TParams extends BoundWitnessStatsDivinerParams = BoundWitnessStatsDivinerParams,\n> extends AbstractDiviner<TParams> {}\n"],"mappings":";AAAA,SAAS,uBAAuB;AAGzB,IAAe,2BAAf,cAEG,gBAAyB;AAAC;","names":[]}
|