@xyo-network/diviner-boundwitness-stats-model 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 +43 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +22 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +43 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +22 -1
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +51 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +22 -1
- package/dist/node/index.js.map +1 -1
- package/package.json +6 -6
package/dist/browser/index.cjs
CHANGED
|
@@ -1,2 +1,44 @@
|
|
|
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
|
+
BoundWitnessStatsDivinerConfigSchema: () => BoundWitnessStatsDivinerConfigSchema,
|
|
25
|
+
BoundWitnessStatsDivinerSchema: () => BoundWitnessStatsDivinerSchema,
|
|
26
|
+
BoundWitnessStatsQuerySchema: () => BoundWitnessStatsQuerySchema,
|
|
27
|
+
isBoundWitnessStatsPayload: () => isBoundWitnessStatsPayload,
|
|
28
|
+
isBoundWitnessStatsQueryPayload: () => isBoundWitnessStatsQueryPayload
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(src_exports);
|
|
31
|
+
|
|
32
|
+
// src/Schema.ts
|
|
33
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
34
|
+
|
|
35
|
+
// src/Config.ts
|
|
36
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
37
|
+
|
|
38
|
+
// src/Payload.ts
|
|
39
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
40
|
+
|
|
41
|
+
// src/Query.ts
|
|
42
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
43
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
2
44
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,MAA2DA,GAAGC,WAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
6
|
+
|
|
7
|
+
// src/Config.ts
|
|
8
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
9
|
+
|
|
10
|
+
// src/Payload.ts
|
|
11
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
12
|
+
|
|
13
|
+
// src/Query.ts
|
|
14
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
15
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
16
|
+
export {
|
|
17
|
+
BoundWitnessStatsDivinerConfigSchema,
|
|
18
|
+
BoundWitnessStatsDivinerSchema,
|
|
19
|
+
BoundWitnessStatsQuerySchema,
|
|
20
|
+
isBoundWitnessStatsPayload,
|
|
21
|
+
isBoundWitnessStatsQueryPayload
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,MAA2DA,GAAGC,WAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,2 +1,44 @@
|
|
|
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
|
+
BoundWitnessStatsDivinerConfigSchema: () => BoundWitnessStatsDivinerConfigSchema,
|
|
25
|
+
BoundWitnessStatsDivinerSchema: () => BoundWitnessStatsDivinerSchema,
|
|
26
|
+
BoundWitnessStatsQuerySchema: () => BoundWitnessStatsQuerySchema,
|
|
27
|
+
isBoundWitnessStatsPayload: () => isBoundWitnessStatsPayload,
|
|
28
|
+
isBoundWitnessStatsQueryPayload: () => isBoundWitnessStatsQueryPayload
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(src_exports);
|
|
31
|
+
|
|
32
|
+
// src/Schema.ts
|
|
33
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
34
|
+
|
|
35
|
+
// src/Config.ts
|
|
36
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
37
|
+
|
|
38
|
+
// src/Payload.ts
|
|
39
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
40
|
+
|
|
41
|
+
// src/Query.ts
|
|
42
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
43
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
2
44
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,MAA2DA,GAAGC,WAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
6
|
+
|
|
7
|
+
// src/Config.ts
|
|
8
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
9
|
+
|
|
10
|
+
// src/Payload.ts
|
|
11
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
12
|
+
|
|
13
|
+
// src/Query.ts
|
|
14
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
15
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => x?.schema === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
16
|
+
export {
|
|
17
|
+
BoundWitnessStatsDivinerConfigSchema,
|
|
18
|
+
BoundWitnessStatsDivinerSchema,
|
|
19
|
+
BoundWitnessStatsQuerySchema,
|
|
20
|
+
isBoundWitnessStatsPayload,
|
|
21
|
+
isBoundWitnessStatsQueryPayload
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,MAA2DA,GAAGC,WAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,2 +1,52 @@
|
|
|
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
|
+
BoundWitnessStatsDivinerConfigSchema: () => BoundWitnessStatsDivinerConfigSchema,
|
|
25
|
+
BoundWitnessStatsDivinerSchema: () => BoundWitnessStatsDivinerSchema,
|
|
26
|
+
BoundWitnessStatsQuerySchema: () => BoundWitnessStatsQuerySchema,
|
|
27
|
+
isBoundWitnessStatsPayload: () => isBoundWitnessStatsPayload,
|
|
28
|
+
isBoundWitnessStatsQueryPayload: () => isBoundWitnessStatsQueryPayload
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(src_exports);
|
|
31
|
+
|
|
32
|
+
// src/Schema.ts
|
|
33
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
34
|
+
|
|
35
|
+
// src/Config.ts
|
|
36
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
37
|
+
|
|
38
|
+
// src/Payload.ts
|
|
39
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => (x == null ? void 0 : x.schema) === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
40
|
+
|
|
41
|
+
// src/Query.ts
|
|
42
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
43
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => (x == null ? void 0 : x.schema) === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
44
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
45
|
+
0 && (module.exports = {
|
|
46
|
+
BoundWitnessStatsDivinerConfigSchema,
|
|
47
|
+
BoundWitnessStatsDivinerSchema,
|
|
48
|
+
BoundWitnessStatsQuerySchema,
|
|
49
|
+
isBoundWitnessStatsPayload,
|
|
50
|
+
isBoundWitnessStatsQueryPayload
|
|
51
|
+
});
|
|
2
52
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Payload'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,OAAsDA,uBAAGC,YAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,OAA2DA,uBAAGC,YAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
var
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BoundWitnessStatsDivinerSchema = "network.xyo.diviner.boundwitness.stats";
|
|
6
|
+
|
|
7
|
+
// src/Config.ts
|
|
8
|
+
var BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
|
|
9
|
+
|
|
10
|
+
// src/Payload.ts
|
|
11
|
+
var isBoundWitnessStatsPayload = /* @__PURE__ */ __name((x) => (x == null ? void 0 : x.schema) === BoundWitnessStatsDivinerSchema, "isBoundWitnessStatsPayload");
|
|
12
|
+
|
|
13
|
+
// src/Query.ts
|
|
14
|
+
var BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
|
|
15
|
+
var isBoundWitnessStatsQueryPayload = /* @__PURE__ */ __name((x) => (x == null ? void 0 : x.schema) === BoundWitnessStatsQuerySchema, "isBoundWitnessStatsQueryPayload");
|
|
16
|
+
export {
|
|
17
|
+
BoundWitnessStatsDivinerConfigSchema,
|
|
18
|
+
BoundWitnessStatsDivinerSchema,
|
|
19
|
+
BoundWitnessStatsQuerySchema,
|
|
20
|
+
isBoundWitnessStatsPayload,
|
|
21
|
+
isBoundWitnessStatsQueryPayload
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\nexport const BoundWitnessStatsDivinerSchema: BoundWitnessStatsDivinerSchema = 'network.xyo.diviner.boundwitness.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\nexport const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`\n\nexport type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsPayload = Payload<{ count: number; schema: BoundWitnessStatsDivinerSchema }>\nexport const isBoundWitnessStatsPayload = (x?: Payload | null): x is BoundWitnessStatsPayload => x?.schema === BoundWitnessStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessStatsDivinerSchema } from './Schema'\n\nexport type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\nexport const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`\n\nexport type BoundWitnessStatsQueryPayload = Query<{ schema: BoundWitnessStatsQuerySchema }>\nexport const isBoundWitnessStatsQueryPayload = (x?: Payload | null): x is BoundWitnessStatsQueryPayload => x?.schema === BoundWitnessStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,iCAAiE;;;ACKvE,IAAMC,uCAA6E,GAAGC,8BAAAA;;;ACDtF,IAAMC,6BAA6B,wBAACC,OAAsDA,uBAAGC,YAAWC,gCAArE;;;ACAnC,IAAMC,+BAA6D,GAAGC,8BAAAA;AAGtE,IAAMC,kCAAkC,wBAACC,OAA2DA,uBAAGC,YAAWJ,8BAA1E;","names":["BoundWitnessStatsDivinerSchema","BoundWitnessStatsDivinerConfigSchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsPayload","x","schema","BoundWitnessStatsDivinerSchema","BoundWitnessStatsQuerySchema","BoundWitnessStatsDivinerSchema","isBoundWitnessStatsQueryPayload","x","schema"]}
|
package/package.json
CHANGED
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/diviner-model": "~2.107.
|
|
14
|
-
"@xyo-network/module-model": "~2.107.
|
|
15
|
-
"@xyo-network/payload-model": "~2.107.
|
|
13
|
+
"@xyo-network/diviner-model": "~2.107.5",
|
|
14
|
+
"@xyo-network/module-model": "~2.107.5",
|
|
15
|
+
"@xyo-network/payload-model": "~2.107.5"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.11.
|
|
19
|
-
"@xylabs/tsconfig": "^3.11.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.10",
|
|
19
|
+
"@xylabs/tsconfig": "^3.11.10",
|
|
20
20
|
"typescript": "^5.5.2"
|
|
21
21
|
},
|
|
22
22
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
|
-
"version": "2.107.
|
|
61
|
+
"version": "2.107.5",
|
|
62
62
|
"type": "module"
|
|
63
63
|
}
|