@xyo-network/diviner-coin-user-locations-abstract 2.107.3 → 2.107.5
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/browser/index.cjs +34 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +13 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +34 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +13 -1
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +37 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +12 -1
- package/dist/node/index.js.map +1 -1
- package/package.json +7 -7
package/dist/browser/index.cjs
CHANGED
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
"use strict";
|
|
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 __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
CoinUserLocationsDiviner: () => CoinUserLocationsDiviner
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
|
+
|
|
28
|
+
// src/Diviner.ts
|
|
29
|
+
var import_diviner_abstract = require("@xyo-network/diviner-abstract");
|
|
30
|
+
var CoinUserLocationsDiviner = class extends import_diviner_abstract.AbstractDiviner {
|
|
31
|
+
static {
|
|
32
|
+
__name(this, "CoinUserLocationsDiviner");
|
|
33
|
+
}
|
|
34
|
+
};
|
|
2
35
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;ACAA,8BAAgC;AAKzB,IAAeA,2BAAf,cASGC,wCAAAA;EAdV,OAcUA;;;AAAiD;","names":["CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,2 +1,14 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Diviner.ts
|
|
5
|
+
import { AbstractDiviner } from "@xyo-network/diviner-abstract";
|
|
6
|
+
var CoinUserLocationsDiviner = class extends AbstractDiviner {
|
|
7
|
+
static {
|
|
8
|
+
__name(this, "CoinUserLocationsDiviner");
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
CoinUserLocationsDiviner
|
|
13
|
+
};
|
|
2
14
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;AAAA,SAASA,uBAAuB;AAKzB,IAAeC,2BAAf,cASGC,gBAAAA;EAdV,OAcUA;;;AAAiD;","names":["AbstractDiviner","CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
"use strict";
|
|
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 __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
CoinUserLocationsDiviner: () => CoinUserLocationsDiviner
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
|
+
|
|
28
|
+
// src/Diviner.ts
|
|
29
|
+
var import_diviner_abstract = require("@xyo-network/diviner-abstract");
|
|
30
|
+
var CoinUserLocationsDiviner = class extends import_diviner_abstract.AbstractDiviner {
|
|
31
|
+
static {
|
|
32
|
+
__name(this, "CoinUserLocationsDiviner");
|
|
33
|
+
}
|
|
34
|
+
};
|
|
2
35
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;ACAA,8BAAgC;AAKzB,IAAeA,2BAAf,cASGC,wCAAAA;EAdV,OAcUA;;;AAAiD;","names":["CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,2 +1,14 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Diviner.ts
|
|
5
|
+
import { AbstractDiviner } from "@xyo-network/diviner-abstract";
|
|
6
|
+
var CoinUserLocationsDiviner = class extends AbstractDiviner {
|
|
7
|
+
static {
|
|
8
|
+
__name(this, "CoinUserLocationsDiviner");
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
CoinUserLocationsDiviner
|
|
13
|
+
};
|
|
2
14
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;AAAA,SAASA,uBAAuB;AAKzB,IAAeC,2BAAf,cASGC,gBAAAA;EAdV,OAcUA;;;AAAiD;","names":["AbstractDiviner","CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,2 +1,38 @@
|
|
|
1
|
-
"use strict";
|
|
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 __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
CoinUserLocationsDiviner: () => CoinUserLocationsDiviner
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
|
+
|
|
28
|
+
// src/Diviner.ts
|
|
29
|
+
var import_diviner_abstract = require("@xyo-network/diviner-abstract");
|
|
30
|
+
var _CoinUserLocationsDiviner = class _CoinUserLocationsDiviner extends import_diviner_abstract.AbstractDiviner {
|
|
31
|
+
};
|
|
32
|
+
__name(_CoinUserLocationsDiviner, "CoinUserLocationsDiviner");
|
|
33
|
+
var CoinUserLocationsDiviner = _CoinUserLocationsDiviner;
|
|
34
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
35
|
+
0 && (module.exports = {
|
|
36
|
+
CoinUserLocationsDiviner
|
|
37
|
+
});
|
|
2
38
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Diviner.ts"],"sourcesContent":["export * from './Diviner'\n","import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;ACAA,8BAAgC;AAKzB,IAAeA,4BAAf,MAAeA,kCASZC,wCAAAA;AAAiD;AAAjDA;AATH,IAAeD,2BAAf;","names":["CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Diviner.ts
|
|
5
|
+
import { AbstractDiviner } from "@xyo-network/diviner-abstract";
|
|
6
|
+
var _CoinUserLocationsDiviner = class _CoinUserLocationsDiviner extends AbstractDiviner {
|
|
7
|
+
};
|
|
8
|
+
__name(_CoinUserLocationsDiviner, "CoinUserLocationsDiviner");
|
|
9
|
+
var CoinUserLocationsDiviner = _CoinUserLocationsDiviner;
|
|
10
|
+
export {
|
|
11
|
+
CoinUserLocationsDiviner
|
|
12
|
+
};
|
|
2
13
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Diviner.ts"],"sourcesContent":["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport { CoinUserLocationsDivinerParams } from '@xyo-network/diviner-coin-user-locations-model'\nimport { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nexport abstract class CoinUserLocationsDiviner<\n TParams extends CoinUserLocationsDivinerParams = CoinUserLocationsDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {}\n"],"mappings":";;;;AAAA,SAASA,uBAAuB;AAKzB,IAAeC,4BAAf,MAAeA,kCASZC,gBAAAA;AAAiD;AAAjDA;AATH,IAAeD,2BAAf;","names":["AbstractDiviner","CoinUserLocationsDiviner","AbstractDiviner"]}
|
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/diviner-abstract": "~2.107.
|
|
14
|
-
"@xyo-network/diviner-coin-user-locations-model": "~2.107.
|
|
15
|
-
"@xyo-network/diviner-model": "~2.107.
|
|
16
|
-
"@xyo-network/payload-model": "~2.107.
|
|
13
|
+
"@xyo-network/diviner-abstract": "~2.107.5",
|
|
14
|
+
"@xyo-network/diviner-coin-user-locations-model": "~2.107.5",
|
|
15
|
+
"@xyo-network/diviner-model": "~2.107.5",
|
|
16
|
+
"@xyo-network/payload-model": "~2.107.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@xylabs/ts-scripts-yarn3": "^3.11.
|
|
20
|
-
"@xylabs/tsconfig": "^3.11.
|
|
19
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.10",
|
|
20
|
+
"@xylabs/tsconfig": "^3.11.10",
|
|
21
21
|
"typescript": "^5.5.2"
|
|
22
22
|
},
|
|
23
23
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
|
-
"version": "2.107.
|
|
62
|
+
"version": "2.107.5",
|
|
63
63
|
"type": "module"
|
|
64
64
|
}
|