@xyo-network/diviner-boundwitness-stats-model 3.8.0 → 3.8.1

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.
@@ -1,6 +1,29 @@
1
- export * from './Config.ts';
2
- export * from './Params.ts';
3
- export * from './Payload.ts';
4
- export * from './Query.ts';
5
- export * from './Schema.ts';
6
- //# sourceMappingURL=index.d.ts.map
1
+ import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
2
+ import { Payload, Query } from '@xyo-network/payload-model';
3
+ import { AnyConfigSchema } from '@xyo-network/module-model';
4
+
5
+ declare const BoundWitnessStatsDivinerSchema: "network.xyo.diviner.boundwitness.stats";
6
+ type BoundWitnessStatsDivinerSchema = typeof BoundWitnessStatsDivinerSchema;
7
+
8
+ type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
9
+ declare const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema;
10
+ type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
11
+ schema: BoundWitnessStatsDivinerConfigSchema;
12
+ }>;
13
+
14
+ type BoundWitnessStatsDivinerParams = DivinerParams<AnyConfigSchema<BoundWitnessStatsDivinerConfig>>;
15
+
16
+ type BoundWitnessStatsPayload = Payload<{
17
+ count: number;
18
+ schema: BoundWitnessStatsDivinerSchema;
19
+ }>;
20
+ declare const isBoundWitnessStatsPayload: (x?: Payload | null) => x is BoundWitnessStatsPayload;
21
+
22
+ type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
23
+ declare const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema;
24
+ type BoundWitnessStatsQueryPayload = Query<{
25
+ schema: BoundWitnessStatsQuerySchema;
26
+ }>;
27
+ declare const isBoundWitnessStatsQueryPayload: (x?: Payload | null) => x is BoundWitnessStatsQueryPayload;
28
+
29
+ export { type BoundWitnessStatsDivinerConfig, BoundWitnessStatsDivinerConfigSchema, type BoundWitnessStatsDivinerParams, BoundWitnessStatsDivinerSchema, type BoundWitnessStatsPayload, type BoundWitnessStatsQueryPayload, BoundWitnessStatsQuerySchema, isBoundWitnessStatsPayload, isBoundWitnessStatsQueryPayload };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-boundwitness-stats-model",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,13 +29,13 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/diviner-model": "^3.8.0",
33
- "@xyo-network/module-model": "^3.8.0",
34
- "@xyo-network/payload-model": "^3.8.0"
32
+ "@xyo-network/diviner-model": "^3.8.1",
33
+ "@xyo-network/module-model": "^3.8.1",
34
+ "@xyo-network/payload-model": "^3.8.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@xylabs/ts-scripts-yarn3": "^4.2.6",
38
- "@xylabs/tsconfig": "^4.2.6",
37
+ "@xylabs/ts-scripts-yarn3": "^5.0.22",
38
+ "@xylabs/tsconfig": "^5.0.22",
39
39
  "typescript": "^5.7.3"
40
40
  },
41
41
  "publishConfig": {
@@ -1,9 +0,0 @@
1
- import type { DivinerConfig } from '@xyo-network/diviner-model';
2
- import type { Payload } from '@xyo-network/payload-model';
3
- import { BoundWitnessStatsDivinerSchema } from './Schema.ts';
4
- export type BoundWitnessStatsDivinerConfigSchema = `${BoundWitnessStatsDivinerSchema}.config`;
5
- export declare const BoundWitnessStatsDivinerConfigSchema: BoundWitnessStatsDivinerConfigSchema;
6
- export type BoundWitnessStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
7
- schema: BoundWitnessStatsDivinerConfigSchema;
8
- }>;
9
- //# sourceMappingURL=Config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AAE5D,MAAM,MAAM,oCAAoC,GAAG,GAAG,8BAA8B,SAAS,CAAA;AAC7F,eAAO,MAAM,oCAAoC,EAAE,oCAAiF,CAAA;AAEpI,MAAM,MAAM,8BAA8B,CAAC,CAAC,SAAS,OAAO,GAAG,OAAO,IAAI,aAAa,CACrF,CAAC,GAAG;IACF,MAAM,EAAE,oCAAoC,CAAA;CAC7C,CACF,CAAA"}
@@ -1,5 +0,0 @@
1
- import type { DivinerParams } from '@xyo-network/diviner-model';
2
- import type { AnyConfigSchema } from '@xyo-network/module-model';
3
- import type { BoundWitnessStatsDivinerConfig } from './Config.ts';
4
- export type BoundWitnessStatsDivinerParams = DivinerParams<AnyConfigSchema<BoundWitnessStatsDivinerConfig>>;
5
- //# sourceMappingURL=Params.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAEhE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AAEjE,MAAM,MAAM,8BAA8B,GAAG,aAAa,CAAC,eAAe,CAAC,8BAA8B,CAAC,CAAC,CAAA"}
@@ -1,8 +0,0 @@
1
- import type { Payload } from '@xyo-network/payload-model';
2
- import { BoundWitnessStatsDivinerSchema } from './Schema.ts';
3
- export type BoundWitnessStatsPayload = Payload<{
4
- count: number;
5
- schema: BoundWitnessStatsDivinerSchema;
6
- }>;
7
- export declare const isBoundWitnessStatsPayload: (x?: Payload | null) => x is BoundWitnessStatsPayload;
8
- //# sourceMappingURL=Payload.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AAE5D,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,8BAA8B,CAAA;CAAE,CAAC,CAAA;AACzG,eAAO,MAAM,0BAA0B,OAAQ,OAAO,GAAG,IAAI,KAAG,CAAC,IAAI,wBAAwE,CAAA"}
@@ -1,9 +0,0 @@
1
- import type { Payload, Query } from '@xyo-network/payload-model';
2
- import { BoundWitnessStatsDivinerSchema } from './Schema.ts';
3
- export type BoundWitnessStatsQuerySchema = `${BoundWitnessStatsDivinerSchema}.query`;
4
- export declare const BoundWitnessStatsQuerySchema: BoundWitnessStatsQuerySchema;
5
- export type BoundWitnessStatsQueryPayload = Query<{
6
- schema: BoundWitnessStatsQuerySchema;
7
- }>;
8
- export declare const isBoundWitnessStatsQueryPayload: (x?: Payload | null) => x is BoundWitnessStatsQueryPayload;
9
- //# sourceMappingURL=Query.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAA;AAEhE,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AAE5D,MAAM,MAAM,4BAA4B,GAAG,GAAG,8BAA8B,QAAQ,CAAA;AACpF,eAAO,MAAM,4BAA4B,EAAE,4BAAwE,CAAA;AAEnH,MAAM,MAAM,6BAA6B,GAAG,KAAK,CAAC;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,CAAC,CAAA;AAC3F,eAAO,MAAM,+BAA+B,OAAQ,OAAO,GAAG,IAAI,KAAG,CAAC,IAAI,6BAA2E,CAAA"}
@@ -1,3 +0,0 @@
1
- export declare const BoundWitnessStatsDivinerSchema: "network.xyo.diviner.boundwitness.stats";
2
- export type BoundWitnessStatsDivinerSchema = typeof BoundWitnessStatsDivinerSchema;
3
- //# sourceMappingURL=Schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,EAAG,wCAAiD,CAAA;AAC/F,MAAM,MAAM,8BAA8B,GAAG,OAAO,8BAA8B,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,YAAY,CAAA;AAC1B,cAAc,aAAa,CAAA"}