@xyo-network/diviner-schema-list-memory 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,14 @@
1
+ import { Address } from '@xylabs/hex';
2
+ import { SchemaListDiviner } from '@xyo-network/diviner-schema-list-abstract';
3
+ import { SchemaListDivinerParams } from '@xyo-network/diviner-schema-list-model';
4
+ import { Schema, Payload } from '@xyo-network/payload-model';
5
+
6
+ declare class MemorySchemaListDiviner<TParams extends SchemaListDivinerParams = SchemaListDivinerParams> extends SchemaListDiviner<TParams> {
7
+ static readonly configSchemas: Schema[];
8
+ static readonly defaultConfigSchema: Schema;
9
+ protected divineAddress(address: Address): Promise<string[]>;
10
+ protected divineAllAddresses(): Promise<string[]>;
11
+ protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
12
+ }
13
+
14
+ export { MemorySchemaListDiviner };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-schema-list-memory",
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,26 +21,26 @@
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
- "@xylabs/array": "^4.13.4",
33
- "@xylabs/assert": "^4.13.4",
34
- "@xylabs/hex": "^4.13.4",
35
- "@xyo-network/boundwitness-model": "^4.0.3",
36
- "@xyo-network/diviner-schema-list-abstract": "^4.0.3",
37
- "@xyo-network/diviner-schema-list-model": "^4.0.3",
38
- "@xyo-network/payload-builder": "^4.0.3",
39
- "@xyo-network/payload-model": "^4.0.3"
32
+ "@xylabs/array": "^4.13.15",
33
+ "@xylabs/assert": "^4.13.15",
34
+ "@xylabs/hex": "^4.13.15",
35
+ "@xyo-network/boundwitness-model": "^4.1.1",
36
+ "@xyo-network/diviner-schema-list-abstract": "^4.1.1",
37
+ "@xyo-network/diviner-schema-list-model": "^4.1.1",
38
+ "@xyo-network/payload-builder": "^4.1.1",
39
+ "@xyo-network/payload-model": "^4.1.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@xylabs/ts-scripts-yarn3": "^6.5.18",
43
- "@xylabs/tsconfig": "^6.5.18",
42
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
43
+ "@xylabs/tsconfig": "^7.0.0-rc.23",
44
44
  "typescript": "^5.8.3"
45
45
  },
46
46
  "publishConfig": {
@@ -1,2 +0,0 @@
1
- export * from './MemorySchemaListDiviner.ts';
2
- //# sourceMappingURL=index.d.ts.map
File without changes