@xyo-network/diviner-address-chain-model 4.1.1 → 4.1.3

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,33 +1,6 @@
1
- import { Address, Hash } from '@xylabs/hex';
2
- import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
3
- import { AnyConfigSchema } from '@xyo-network/module-model';
4
- import { Payload, Query, PayloadFindFilter } from '@xyo-network/payload-model';
5
-
6
- declare const AddressChainSchema: "network.xyo.diviner.address.chain";
7
- type AddressChainSchema = typeof AddressChainSchema;
8
- declare const AddressChainDivinerConfigSchema: "network.xyo.diviner.address.chain.config";
9
- type AddressChainDivinerConfigSchema = typeof AddressChainDivinerConfigSchema;
10
- declare const AddressChainQuerySchema: "network.xyo.diviner.address.chain.query";
11
- type AddressChainQuerySchema = typeof AddressChainQuerySchema;
12
-
13
- type AddressChainDivinerConfig = DivinerConfig<{
14
- address?: Address;
15
- maxResults?: number;
16
- schema: AddressChainDivinerConfigSchema;
17
- startHash?: Hash;
18
- }>;
19
-
20
- type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
21
-
22
- type AddressChainPayload = Payload<{
23
- schema: AddressChainSchema;
24
- }>;
25
- declare const isAddressChainPayload: (x?: Payload | null) => x is AddressChainPayload;
26
-
27
- type AddressChainQueryPayload = Query<{
28
- schema: AddressChainQuerySchema;
29
- } & Omit<PayloadFindFilter, 'schema'>>;
30
- declare const isAddressChainQueryPayload: (x?: unknown | null) => x is AddressChainQueryPayload;
31
-
32
- export { AddressChainDivinerConfigSchema, AddressChainQuerySchema, AddressChainSchema, isAddressChainPayload, isAddressChainQueryPayload };
33
- export type { AddressChainDivinerConfig, AddressChainDivinerParams, AddressChainPayload, AddressChainQueryPayload };
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-address-chain-model",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,14 +29,14 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xylabs/hex": "^4.13.15",
33
- "@xyo-network/diviner-model": "^4.1.1",
34
- "@xyo-network/module-model": "^4.1.1",
35
- "@xyo-network/payload-model": "^4.1.1"
32
+ "@xylabs/hex": "^4.13.16",
33
+ "@xyo-network/diviner-model": "^4.1.3",
34
+ "@xyo-network/module-model": "^4.1.3",
35
+ "@xyo-network/payload-model": "^4.1.3"
36
36
  },
37
37
  "devDependencies": {
38
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
39
- "@xylabs/tsconfig": "^7.0.0-rc.23",
38
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
39
+ "@xylabs/tsconfig": "^7.0.0-rc.27",
40
40
  "typescript": "^5.8.3"
41
41
  },
42
42
  "publishConfig": {