@xyo-network/diviner-boundwitness-stats-model 4.0.3 → 4.1.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.
@@ -0,0 +1,30 @@
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 { BoundWitnessStatsDivinerConfigSchema, BoundWitnessStatsDivinerSchema, BoundWitnessStatsQuerySchema, isBoundWitnessStatsPayload, isBoundWitnessStatsQueryPayload };
30
+ export type { BoundWitnessStatsDivinerConfig, BoundWitnessStatsDivinerParams, BoundWitnessStatsPayload, BoundWitnessStatsQueryPayload };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-boundwitness-stats-model",
3
- "version": "4.0.3",
3
+ "version": "4.1.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -21,21 +21,21 @@
21
21
  "type": "module",
22
22
  "exports": {
23
23
  ".": {
24
- "types": "./dist/types/index.d.ts",
24
+ "types": "./dist/neutral/index.d.ts",
25
25
  "default": "./dist/neutral/index.mjs"
26
26
  },
27
27
  "./package.json": "./package.json"
28
28
  },
29
29
  "module": "dist/neutral/index.mjs",
30
- "types": "dist/types/index.d.ts",
30
+ "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/diviner-model": "^4.0.3",
33
- "@xyo-network/module-model": "^4.0.3",
34
- "@xyo-network/payload-model": "^4.0.3"
32
+ "@xyo-network/diviner-model": "^4.1.1",
33
+ "@xyo-network/module-model": "^4.1.1",
34
+ "@xyo-network/payload-model": "^4.1.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@xylabs/ts-scripts-yarn3": "^6.5.18",
38
- "@xylabs/tsconfig": "^6.5.18",
37
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
38
+ "@xylabs/tsconfig": "^7.0.0-rc.23",
39
39
  "typescript": "^5.8.3"
40
40
  },
41
41
  "publishConfig": {
@@ -1,6 +0,0 @@
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes