@xyo-network/diviner-address-history-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,29 +1,4 @@
1
- import { Address } from '@xylabs/hex';
2
- import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
3
- import { Payload, Query, PayloadFindFilter } from '@xyo-network/payload-model';
4
- import { AnyConfigSchema } from '@xyo-network/module-model';
5
-
6
- declare const AddressHistorySchema: "network.xyo.diviner.address.history";
7
- type AddressHistorySchema = typeof AddressHistorySchema;
8
- declare const AddressHistoryQuerySchema: "network.xyo.diviner.address.history.query";
9
- type AddressHistoryQuerySchema = typeof AddressHistoryQuerySchema;
10
- type AddressHistoryPayload = Payload<{
11
- schema: AddressHistorySchema;
12
- }>;
13
- declare const isAddressHistoryPayload: (x?: Payload | null) => x is AddressHistoryPayload;
14
- type AddressHistoryQueryPayload = Query<{
15
- schema: AddressHistoryQuerySchema;
16
- } & Omit<PayloadFindFilter, 'schema'>>;
17
- declare const isAddressHistoryQueryPayload: (x?: unknown | null) => x is AddressHistoryQueryPayload;
18
-
19
- type AddressHistoryDivinerConfigSchema = `${AddressHistorySchema}.config`;
20
- declare const AddressHistoryDivinerConfigSchema: AddressHistoryDivinerConfigSchema;
21
- type AddressHistoryDivinerConfig = DivinerConfig<{
22
- address?: Address;
23
- schema: AddressHistoryDivinerConfigSchema;
24
- }>;
25
-
26
- type AddressHistoryDivinerParams = DivinerParams<AnyConfigSchema<AddressHistoryDivinerConfig>>;
27
-
28
- export { AddressHistoryDivinerConfigSchema, AddressHistoryQuerySchema, AddressHistorySchema, isAddressHistoryPayload, isAddressHistoryQueryPayload };
29
- export type { AddressHistoryDivinerConfig, AddressHistoryDivinerParams, AddressHistoryPayload, AddressHistoryQueryPayload };
1
+ export * from './Config.ts';
2
+ export * from './Diviner.ts';
3
+ export * from './Params.ts';
4
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-address-history-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": {