@xyo-network/diviner-schema-stats-abstract 2.73.4 → 2.74.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.
package/dist/index.d.mts CHANGED
@@ -1,7 +1,2 @@
1
- import { AbstractDiviner } from '@xyo-network/abstract-diviner';
2
- import { SchemaStatsDivinerParams } from '@xyo-network/diviner-schema-stats-model';
3
-
4
- declare abstract class SchemaStatsDiviner<TParams extends SchemaStatsDivinerParams = SchemaStatsDivinerParams> extends AbstractDiviner<TParams> {
5
- }
6
-
7
- export { SchemaStatsDiviner };
1
+ export * from './Diviner';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
package/dist/index.d.ts CHANGED
@@ -1,7 +1,2 @@
1
- import { AbstractDiviner } from '@xyo-network/abstract-diviner';
2
- import { SchemaStatsDivinerParams } from '@xyo-network/diviner-schema-stats-model';
3
-
4
- declare abstract class SchemaStatsDiviner<TParams extends SchemaStatsDivinerParams = SchemaStatsDivinerParams> extends AbstractDiviner<TParams> {
5
- }
6
-
7
- export { SchemaStatsDiviner };
1
+ export * from './Diviner';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
package/package.json CHANGED
@@ -10,20 +10,14 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/abstract-diviner": "~2.73.4",
14
- "@xyo-network/diviner-schema-stats-model": "~2.73.4"
13
+ "@xyo-network/abstract-diviner": "~2.74.1",
14
+ "@xyo-network/diviner-schema-stats-model": "~2.74.1"
15
15
  },
16
16
  "devDependencies": {
17
- "@xylabs/ts-scripts-yarn3": "^2.19.12",
18
- "@xylabs/tsconfig": "^2.19.12",
19
- "publint": "^0.2.2",
20
- "tsup": "^7.2.0",
17
+ "@xylabs/ts-scripts-yarn3": "^3.0.28",
18
+ "@xylabs/tsconfig": "^3.0.28",
21
19
  "typescript": "^5.2.2"
22
20
  },
23
- "scripts": {
24
- "package-compile": "tsup && publint",
25
- "package-recompile": "tsup && publint"
26
- },
27
21
  "description": "Primary SDK for using XYO Protocol 2.0",
28
22
  "docs": "dist/docs.json",
29
23
  "types": "dist/index.d.ts",
@@ -64,5 +58,5 @@
64
58
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
65
59
  },
66
60
  "sideEffects": false,
67
- "version": "2.73.4"
61
+ "version": "2.74.1"
68
62
  }
package/tsup.config.ts DELETED
@@ -1,16 +0,0 @@
1
- import { defineConfig } from 'tsup'
2
-
3
- // eslint-disable-next-line import/no-default-export
4
- export default defineConfig({
5
- bundle: true,
6
- cjsInterop: true,
7
- clean: false,
8
- dts: {
9
- entry: ['src/index.ts'],
10
- },
11
- entry: ['src/index.ts'],
12
- format: ['cjs', 'esm'],
13
- sourcemap: true,
14
- splitting: false,
15
- tsconfig: 'tsconfig.json',
16
- })