@xyo-network/diviner-address-chain-model 2.110.16 → 2.110.17
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/browser/Config.d.cts +1 -1
- package/dist/browser/Config.d.mts +1 -1
- package/dist/browser/Config.d.ts +1 -1
- package/dist/browser/Params.d.cts +1 -1
- package/dist/browser/Params.d.mts +1 -1
- package/dist/browser/Params.d.ts +1 -1
- package/dist/browser/Payload.d.cts +1 -1
- package/dist/browser/Payload.d.mts +1 -1
- package/dist/browser/Payload.d.ts +1 -1
- package/dist/browser/Query.d.cts +1 -1
- package/dist/browser/Query.d.mts +1 -1
- package/dist/browser/Query.d.ts +1 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.d.cts +5 -5
- package/dist/browser/index.d.mts +5 -5
- package/dist/browser/index.d.ts +5 -5
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/Config.d.cts +1 -1
- package/dist/neutral/Config.d.mts +1 -1
- package/dist/neutral/Config.d.ts +1 -1
- package/dist/neutral/Params.d.cts +1 -1
- package/dist/neutral/Params.d.mts +1 -1
- package/dist/neutral/Params.d.ts +1 -1
- package/dist/neutral/Payload.d.cts +1 -1
- package/dist/neutral/Payload.d.mts +1 -1
- package/dist/neutral/Payload.d.ts +1 -1
- package/dist/neutral/Query.d.cts +1 -1
- package/dist/neutral/Query.d.mts +1 -1
- package/dist/neutral/Query.d.ts +1 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.d.cts +5 -5
- package/dist/neutral/index.d.mts +5 -5
- package/dist/neutral/index.d.ts +5 -5
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/Config.d.cts +1 -1
- package/dist/node/Config.d.mts +1 -1
- package/dist/node/Config.d.ts +1 -1
- package/dist/node/Params.d.cts +1 -1
- package/dist/node/Params.d.mts +1 -1
- package/dist/node/Params.d.ts +1 -1
- package/dist/node/Payload.d.cts +1 -1
- package/dist/node/Payload.d.mts +1 -1
- package/dist/node/Payload.d.ts +1 -1
- package/dist/node/Query.d.cts +1 -1
- package/dist/node/Query.d.mts +1 -1
- package/dist/node/Query.d.ts +1 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.d.cts +5 -5
- package/dist/node/index.d.mts +5 -5
- package/dist/node/index.d.ts +5 -5
- package/dist/node/index.js.map +1 -1
- package/package.json +4 -4
- package/src/Config.ts +1 -1
- package/src/Params.ts +1 -1
- package/src/Payload.ts +1 -1
- package/src/Query.ts +1 -1
- package/src/index.ts +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
package/dist/browser/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/browser/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/browser/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/browser/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/browser/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,MAAiDA,GAAGC,WAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
package/dist/browser/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/browser/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;AACO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,MAAiDA,GAAGC,WAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
package/dist/neutral/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/neutral/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/neutral/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/neutral/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/neutral/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,MAAiDA,GAAGC,WAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
package/dist/neutral/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/neutral/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;AACO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,MAAiDA,GAAGC,WAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,MAAsDA,GAAGC,WAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
package/dist/node/Config.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
package/dist/node/Config.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
package/dist/node/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex';
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
3
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
3
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts';
|
|
4
4
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
5
5
|
address?: Address;
|
|
6
6
|
maxResults?: number;
|
package/dist/node/Params.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Params.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
3
|
+
import { AddressChainDivinerConfig } from './Config.ts';
|
|
4
4
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Payload.d.cts
CHANGED
package/dist/node/Payload.d.mts
CHANGED
package/dist/node/Payload.d.ts
CHANGED
package/dist/node/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/node/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/node/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
2
|
+
import { AddressChainQuerySchema } from './Schema.ts';
|
|
3
3
|
export type AddressChainQueryPayload = Query<{
|
|
4
4
|
schema: AddressChainQuerySchema;
|
|
5
5
|
} & PayloadFindFilter>;
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,OAAiDA,uBAAGC,YAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,OAAsDA,uBAAGC,YAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
package/dist/node/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type AddressChainSchema = 'network.xyo.diviner.address.chain'\nexport const AddressChainSchema: AddressChainSchema = 'network.xyo.diviner.address.chain'\n\nexport type AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\nexport const AddressChainDivinerConfigSchema: AddressChainDivinerConfigSchema = `${AddressChainSchema}.config`\n\nexport type AddressChainQuerySchema = `${AddressChainSchema}.query`\nexport const AddressChainQuerySchema: AddressChainQuerySchema = `${AddressChainSchema}.query`\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { AddressChainSchema } from './Schema.ts'\n\nexport type AddressChainPayload = Payload<{ schema: AddressChainSchema }>\nexport const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema\n","import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'\n\nimport { AddressChainQuerySchema } from './Schema.ts'\n\nexport type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>\nexport const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema\n"],"mappings":";;;;AACO,IAAMA,qBAAyC;AAG/C,IAAMC,kCAAmE,GAAGD,kBAAAA;AAG5E,IAAME,0BAAmD,GAAGF,kBAAAA;;;ACF5D,IAAMG,wBAAwB,wBAACC,OAAiDA,uBAAGC,YAAWC,oBAAhE;;;ACA9B,IAAMC,6BAA6B,wBAACC,OAAsDA,uBAAGC,YAAWC,yBAArE;","names":["AddressChainSchema","AddressChainDivinerConfigSchema","AddressChainQuerySchema","isAddressChainPayload","x","schema","AddressChainSchema","isAddressChainQueryPayload","x","schema","AddressChainQuerySchema"]}
|
package/package.json
CHANGED
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@xylabs/hex": "^3.6.6",
|
|
14
|
-
"@xyo-network/diviner-model": "^2.110.
|
|
15
|
-
"@xyo-network/module-model": "^2.110.
|
|
16
|
-
"@xyo-network/payload-model": "^2.110.
|
|
14
|
+
"@xyo-network/diviner-model": "^2.110.17",
|
|
15
|
+
"@xyo-network/module-model": "^2.110.17",
|
|
16
|
+
"@xyo-network/payload-model": "^2.110.17"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@xylabs/ts-scripts-yarn3": "^3.14.1",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
|
-
"version": "2.110.
|
|
62
|
+
"version": "2.110.17",
|
|
63
63
|
"type": "module"
|
|
64
64
|
}
|
package/src/Config.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Address, Hash } from '@xylabs/hex'
|
|
2
2
|
import { DivinerConfig } from '@xyo-network/diviner-model'
|
|
3
3
|
|
|
4
|
-
import { AddressChainDivinerConfigSchema } from './Schema.
|
|
4
|
+
import { AddressChainDivinerConfigSchema } from './Schema.ts'
|
|
5
5
|
|
|
6
6
|
export type AddressChainDivinerConfig = DivinerConfig<{
|
|
7
7
|
address?: Address
|
package/src/Params.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model'
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model'
|
|
3
3
|
|
|
4
|
-
import { AddressChainDivinerConfig } from './Config.
|
|
4
|
+
import { AddressChainDivinerConfig } from './Config.ts'
|
|
5
5
|
|
|
6
6
|
export type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>
|
package/src/Payload.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model'
|
|
2
2
|
|
|
3
|
-
import { AddressChainSchema } from './Schema.
|
|
3
|
+
import { AddressChainSchema } from './Schema.ts'
|
|
4
4
|
|
|
5
5
|
export type AddressChainPayload = Payload<{ schema: AddressChainSchema }>
|
|
6
6
|
export const isAddressChainPayload = (x?: Payload | null): x is AddressChainPayload => x?.schema === AddressChainSchema
|
package/src/Query.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Payload, PayloadFindFilter, Query } from '@xyo-network/payload-model'
|
|
2
2
|
|
|
3
|
-
import { AddressChainQuerySchema } from './Schema.
|
|
3
|
+
import { AddressChainQuerySchema } from './Schema.ts'
|
|
4
4
|
|
|
5
5
|
export type AddressChainQueryPayload = Query<{ schema: AddressChainQuerySchema } & PayloadFindFilter>
|
|
6
6
|
export const isAddressChainQueryPayload = (x?: Payload | null): x is AddressChainQueryPayload => x?.schema === AddressChainQuerySchema
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
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'
|