@xyo-network/crypto-nft-diviner-score-plugin 2.82.2 → 2.84.0
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/Diviner.d.cts +14 -2
- package/dist/browser/Diviner.d.cts.map +1 -1
- package/dist/browser/Diviner.d.mts +14 -2
- package/dist/browser/Diviner.d.mts.map +1 -1
- package/dist/browser/Diviner.d.ts +14 -2
- package/dist/browser/Diviner.d.ts.map +1 -1
- package/dist/browser/Plugin.d.cts +396 -6
- package/dist/browser/Plugin.d.cts.map +1 -1
- package/dist/browser/Plugin.d.mts +396 -6
- package/dist/browser/Plugin.d.mts.map +1 -1
- package/dist/browser/Plugin.d.ts +396 -6
- package/dist/browser/Plugin.d.ts.map +1 -1
- package/dist/browser/index.cjs +2 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +2 -1
- package/dist/browser/lib/rating/index.d.cts +1 -0
- package/dist/browser/lib/rating/index.d.cts.map +1 -1
- package/dist/browser/lib/rating/index.d.mts +1 -0
- package/dist/browser/lib/rating/index.d.mts.map +1 -1
- package/dist/browser/lib/rating/index.d.ts +1 -0
- package/dist/browser/lib/rating/index.d.ts.map +1 -1
- package/dist/node/Diviner.d.cts +14 -2
- package/dist/node/Diviner.d.cts.map +1 -1
- package/dist/node/Diviner.d.mts +14 -2
- package/dist/node/Diviner.d.mts.map +1 -1
- package/dist/node/Diviner.d.ts +14 -2
- package/dist/node/Diviner.d.ts.map +1 -1
- package/dist/node/Plugin.d.cts +396 -6
- package/dist/node/Plugin.d.cts.map +1 -1
- package/dist/node/Plugin.d.mts +396 -6
- package/dist/node/Plugin.d.mts.map +1 -1
- package/dist/node/Plugin.d.ts +396 -6
- package/dist/node/Plugin.d.ts.map +1 -1
- package/dist/node/index.js +4 -2
- package/dist/node/index.js.map +1 -1
- package/dist/node/index.mjs +2 -1
- package/dist/node/lib/rating/index.d.cts +1 -0
- package/dist/node/lib/rating/index.d.cts.map +1 -1
- package/dist/node/lib/rating/index.d.mts +1 -0
- package/dist/node/lib/rating/index.d.mts.map +1 -1
- package/dist/node/lib/rating/index.d.ts +1 -0
- package/dist/node/lib/rating/index.d.ts.map +1 -1
- package/package.json +12 -12
- package/src/lib/rating/index.ts +1 -0
package/dist/node/Diviner.d.cts
CHANGED
|
@@ -4,11 +4,23 @@ import { DivinerParams } from '@xyo-network/diviner-model';
|
|
|
4
4
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
5
5
|
import { Payload } from '@xyo-network/payload-model';
|
|
6
6
|
export type NftScoreDivinerParams = DivinerParams<AnyConfigSchema<NftScoreDivinerConfig>>;
|
|
7
|
-
export declare const isNftScore: (payload: Payload) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
7
|
+
export declare const isNftScore: (payload: Payload) => payload is (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
8
8
|
sources?: string[] | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
schema: "network.xyo.crypto.nft.score";
|
|
11
|
-
}
|
|
11
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
12
|
+
sources?: string[] | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
schema: "network.xyo.crypto.nft.score";
|
|
15
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
16
|
+
sources?: string[] | undefined;
|
|
17
|
+
} & {
|
|
18
|
+
schema: "network.xyo.crypto.nft.score";
|
|
19
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
20
|
+
sources?: string[] | undefined;
|
|
21
|
+
} & {
|
|
22
|
+
schema: "network.xyo.crypto.nft.score";
|
|
23
|
+
});
|
|
12
24
|
export declare class NftScoreDiviner<TParams extends NftScoreDivinerParams = NftScoreDivinerParams> extends AbstractDiviner<TParams> {
|
|
13
25
|
static configSchemas: "network.xyo.crypto.nft.score.diviner.config"[];
|
|
14
26
|
protected divineHandler: (payloads?: Payload[]) => Promise<Payload[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO;;;;;;;;;;;;;;;;EAA2D,CAAA;AAEtG,qBAAa,eAAe,CAAC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;IAC1H,OAAgB,aAAa,kDAAgC;IAE7D,UAAmB,aAAa,cAAqB,OAAO,EAAE,KAAG,QAAQ,OAAO,EAAE,CAAC,CAclF;CACF"}
|
package/dist/node/Diviner.d.mts
CHANGED
|
@@ -4,11 +4,23 @@ import { DivinerParams } from '@xyo-network/diviner-model';
|
|
|
4
4
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
5
5
|
import { Payload } from '@xyo-network/payload-model';
|
|
6
6
|
export type NftScoreDivinerParams = DivinerParams<AnyConfigSchema<NftScoreDivinerConfig>>;
|
|
7
|
-
export declare const isNftScore: (payload: Payload) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
7
|
+
export declare const isNftScore: (payload: Payload) => payload is (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
8
8
|
sources?: string[] | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
schema: "network.xyo.crypto.nft.score";
|
|
11
|
-
}
|
|
11
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
12
|
+
sources?: string[] | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
schema: "network.xyo.crypto.nft.score";
|
|
15
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
16
|
+
sources?: string[] | undefined;
|
|
17
|
+
} & {
|
|
18
|
+
schema: "network.xyo.crypto.nft.score";
|
|
19
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
20
|
+
sources?: string[] | undefined;
|
|
21
|
+
} & {
|
|
22
|
+
schema: "network.xyo.crypto.nft.score";
|
|
23
|
+
});
|
|
12
24
|
export declare class NftScoreDiviner<TParams extends NftScoreDivinerParams = NftScoreDivinerParams> extends AbstractDiviner<TParams> {
|
|
13
25
|
static configSchemas: "network.xyo.crypto.nft.score.diviner.config"[];
|
|
14
26
|
protected divineHandler: (payloads?: Payload[]) => Promise<Payload[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO;;;;;;;;;;;;;;;;EAA2D,CAAA;AAEtG,qBAAa,eAAe,CAAC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;IAC1H,OAAgB,aAAa,kDAAgC;IAE7D,UAAmB,aAAa,cAAqB,OAAO,EAAE,KAAG,QAAQ,OAAO,EAAE,CAAC,CAclF;CACF"}
|
package/dist/node/Diviner.d.ts
CHANGED
|
@@ -4,11 +4,23 @@ import { DivinerParams } from '@xyo-network/diviner-model';
|
|
|
4
4
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
5
5
|
import { Payload } from '@xyo-network/payload-model';
|
|
6
6
|
export type NftScoreDivinerParams = DivinerParams<AnyConfigSchema<NftScoreDivinerConfig>>;
|
|
7
|
-
export declare const isNftScore: (payload: Payload) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
7
|
+
export declare const isNftScore: (payload: Payload) => payload is (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
8
8
|
sources?: string[] | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
schema: "network.xyo.crypto.nft.score";
|
|
11
|
-
}
|
|
11
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
12
|
+
sources?: string[] | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
schema: "network.xyo.crypto.nft.score";
|
|
15
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
16
|
+
sources?: string[] | undefined;
|
|
17
|
+
} & {
|
|
18
|
+
schema: "network.xyo.crypto.nft.score";
|
|
19
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/crypto-nft-payload-plugin").NftContractInformation & import("@xyo-network/crypto-nft-payload-plugin").NftScores & {
|
|
20
|
+
sources?: string[] | undefined;
|
|
21
|
+
} & {
|
|
22
|
+
schema: "network.xyo.crypto.nft.score";
|
|
23
|
+
});
|
|
12
24
|
export declare class NftScoreDiviner<TParams extends NftScoreDivinerParams = NftScoreDivinerParams> extends AbstractDiviner<TParams> {
|
|
13
25
|
static configSchemas: "network.xyo.crypto.nft.score.diviner.config"[];
|
|
14
26
|
protected divineHandler: (payloads?: Payload[]) => Promise<Payload[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAIL,qBAAqB,EAGtB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAIpD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAOzF,eAAO,MAAM,UAAU,YAAa,OAAO;;;;;;;;;;;;;;;;EAA2D,CAAA;AAEtG,qBAAa,eAAe,CAAC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,CAAE,SAAQ,eAAe,CAAC,OAAO,CAAC;IAC1H,OAAgB,aAAa,kDAAgC;IAE7D,UAAmB,aAAa,cAAqB,OAAO,EAAE,KAAG,QAAQ,OAAO,EAAE,CAAC,CAclF;CACF"}
|
package/dist/node/Plugin.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NftScoreDiviner } from './Diviner';
|
|
2
|
-
export declare const NftScoreDivinerPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<NftScoreDiviner<import("@xyo-network/
|
|
2
|
+
export declare const NftScoreDivinerPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<NftScoreDiviner<import("@xyo-network/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
4
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
5
5
|
accountDerivationPath?: string | undefined;
|
|
6
6
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
7
7
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -17,7 +17,225 @@ export declare const NftScoreDivinerPlugin: () => import("@xyo-network/payloadse
|
|
|
17
17
|
readonly sign?: boolean | undefined;
|
|
18
18
|
readonly storeQueries?: boolean | undefined;
|
|
19
19
|
readonly timestamp?: boolean | undefined;
|
|
20
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
20
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
21
|
+
schema: string;
|
|
22
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
23
|
+
accountDerivationPath?: string | undefined;
|
|
24
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
25
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
26
|
+
readonly name?: string | undefined;
|
|
27
|
+
readonly paging?: Record<string, {
|
|
28
|
+
size?: number | undefined;
|
|
29
|
+
}> | undefined;
|
|
30
|
+
readonly security?: {
|
|
31
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
34
|
+
} | undefined;
|
|
35
|
+
readonly sign?: boolean | undefined;
|
|
36
|
+
readonly storeQueries?: boolean | undefined;
|
|
37
|
+
readonly timestamp?: boolean | undefined;
|
|
38
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
39
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
40
|
+
} & Omit<{
|
|
41
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
42
|
+
}, "schema">, "schema"> & {
|
|
43
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
44
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
45
|
+
accountDerivationPath?: string | undefined;
|
|
46
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
47
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
48
|
+
readonly name?: string | undefined;
|
|
49
|
+
readonly paging?: Record<string, {
|
|
50
|
+
size?: number | undefined;
|
|
51
|
+
}> | undefined;
|
|
52
|
+
readonly security?: {
|
|
53
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
54
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
55
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
56
|
+
} | undefined;
|
|
57
|
+
readonly sign?: boolean | undefined;
|
|
58
|
+
readonly storeQueries?: boolean | undefined;
|
|
59
|
+
readonly timestamp?: boolean | undefined;
|
|
60
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
61
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
62
|
+
} & Omit<{
|
|
63
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
64
|
+
}, "schema">, "schema"> & {
|
|
65
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
66
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
67
|
+
accountDerivationPath?: string | undefined;
|
|
68
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
69
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
70
|
+
readonly name?: string | undefined;
|
|
71
|
+
readonly paging?: Record<string, {
|
|
72
|
+
size?: number | undefined;
|
|
73
|
+
}> | undefined;
|
|
74
|
+
readonly security?: {
|
|
75
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
78
|
+
} | undefined;
|
|
79
|
+
readonly sign?: boolean | undefined;
|
|
80
|
+
readonly storeQueries?: boolean | undefined;
|
|
81
|
+
readonly timestamp?: boolean | undefined;
|
|
82
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
83
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
84
|
+
} & Omit<{
|
|
85
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
86
|
+
}, "schema">, "schema"> & {
|
|
87
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
88
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
89
|
+
accountDerivationPath?: string | undefined;
|
|
90
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
91
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
92
|
+
readonly name?: string | undefined;
|
|
93
|
+
readonly paging?: Record<string, {
|
|
94
|
+
size?: number | undefined;
|
|
95
|
+
}> | undefined;
|
|
96
|
+
readonly security?: {
|
|
97
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
98
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
99
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
100
|
+
} | undefined;
|
|
101
|
+
readonly sign?: boolean | undefined;
|
|
102
|
+
readonly storeQueries?: boolean | undefined;
|
|
103
|
+
readonly timestamp?: boolean | undefined;
|
|
104
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
105
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
106
|
+
} & Omit<{
|
|
107
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
108
|
+
}, "schema">, "schema"> & {
|
|
109
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
110
|
+
}), "schema">, "schema"> & {
|
|
111
|
+
schema: string;
|
|
112
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
113
|
+
accountDerivationPath?: string | undefined;
|
|
114
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
115
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
116
|
+
readonly name?: string | undefined;
|
|
117
|
+
readonly paging?: Record<string, {
|
|
118
|
+
size?: number | undefined;
|
|
119
|
+
}> | undefined;
|
|
120
|
+
readonly security?: {
|
|
121
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
124
|
+
} | undefined;
|
|
125
|
+
readonly sign?: boolean | undefined;
|
|
126
|
+
readonly storeQueries?: boolean | undefined;
|
|
127
|
+
readonly timestamp?: boolean | undefined;
|
|
128
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
129
|
+
schema: string;
|
|
130
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
131
|
+
accountDerivationPath?: string | undefined;
|
|
132
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
133
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
134
|
+
readonly name?: string | undefined;
|
|
135
|
+
readonly paging?: Record<string, {
|
|
136
|
+
size?: number | undefined;
|
|
137
|
+
}> | undefined;
|
|
138
|
+
readonly security?: {
|
|
139
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
140
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
141
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
142
|
+
} | undefined;
|
|
143
|
+
readonly sign?: boolean | undefined;
|
|
144
|
+
readonly storeQueries?: boolean | undefined;
|
|
145
|
+
readonly timestamp?: boolean | undefined;
|
|
146
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
147
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
148
|
+
} & Omit<{
|
|
149
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
150
|
+
}, "schema">, "schema"> & {
|
|
151
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
152
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
153
|
+
accountDerivationPath?: string | undefined;
|
|
154
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
155
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
156
|
+
readonly name?: string | undefined;
|
|
157
|
+
readonly paging?: Record<string, {
|
|
158
|
+
size?: number | undefined;
|
|
159
|
+
}> | undefined;
|
|
160
|
+
readonly security?: {
|
|
161
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
162
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
163
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
164
|
+
} | undefined;
|
|
165
|
+
readonly sign?: boolean | undefined;
|
|
166
|
+
readonly storeQueries?: boolean | undefined;
|
|
167
|
+
readonly timestamp?: boolean | undefined;
|
|
168
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
169
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
170
|
+
} & Omit<{
|
|
171
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
172
|
+
}, "schema">, "schema"> & {
|
|
173
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
174
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
175
|
+
accountDerivationPath?: string | undefined;
|
|
176
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
177
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
178
|
+
readonly name?: string | undefined;
|
|
179
|
+
readonly paging?: Record<string, {
|
|
180
|
+
size?: number | undefined;
|
|
181
|
+
}> | undefined;
|
|
182
|
+
readonly security?: {
|
|
183
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
184
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
185
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
186
|
+
} | undefined;
|
|
187
|
+
readonly sign?: boolean | undefined;
|
|
188
|
+
readonly storeQueries?: boolean | undefined;
|
|
189
|
+
readonly timestamp?: boolean | undefined;
|
|
190
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
191
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
192
|
+
} & Omit<{
|
|
193
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
194
|
+
}, "schema">, "schema"> & {
|
|
195
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
196
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
197
|
+
accountDerivationPath?: string | undefined;
|
|
198
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
199
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
200
|
+
readonly name?: string | undefined;
|
|
201
|
+
readonly paging?: Record<string, {
|
|
202
|
+
size?: number | undefined;
|
|
203
|
+
}> | undefined;
|
|
204
|
+
readonly security?: {
|
|
205
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
206
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
207
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
208
|
+
} | undefined;
|
|
209
|
+
readonly sign?: boolean | undefined;
|
|
210
|
+
readonly storeQueries?: boolean | undefined;
|
|
211
|
+
readonly timestamp?: boolean | undefined;
|
|
212
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
213
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
214
|
+
} & Omit<{
|
|
215
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
216
|
+
}, "schema">, "schema"> & {
|
|
217
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
218
|
+
}), "schema">, "schema"> & {
|
|
219
|
+
schema: string;
|
|
220
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
221
|
+
accountDerivationPath?: string | undefined;
|
|
222
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
223
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
224
|
+
readonly name?: string | undefined;
|
|
225
|
+
readonly paging?: Record<string, {
|
|
226
|
+
size?: number | undefined;
|
|
227
|
+
}> | undefined;
|
|
228
|
+
readonly security?: {
|
|
229
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
230
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
231
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
232
|
+
} | undefined;
|
|
233
|
+
readonly sign?: boolean | undefined;
|
|
234
|
+
readonly storeQueries?: boolean | undefined;
|
|
235
|
+
readonly timestamp?: boolean | undefined;
|
|
236
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
237
|
+
schema: string;
|
|
238
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
21
239
|
accountDerivationPath?: string | undefined;
|
|
22
240
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
23
241
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -39,11 +257,183 @@ export declare const NftScoreDivinerPlugin: () => import("@xyo-network/payloadse
|
|
|
39
257
|
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
40
258
|
}, "schema">, "schema"> & {
|
|
41
259
|
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
42
|
-
}
|
|
260
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
261
|
+
accountDerivationPath?: string | undefined;
|
|
262
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
263
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
264
|
+
readonly name?: string | undefined;
|
|
265
|
+
readonly paging?: Record<string, {
|
|
266
|
+
size?: number | undefined;
|
|
267
|
+
}> | undefined;
|
|
268
|
+
readonly security?: {
|
|
269
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
270
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
272
|
+
} | undefined;
|
|
273
|
+
readonly sign?: boolean | undefined;
|
|
274
|
+
readonly storeQueries?: boolean | undefined;
|
|
275
|
+
readonly timestamp?: boolean | undefined;
|
|
276
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
277
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
278
|
+
} & Omit<{
|
|
279
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
280
|
+
}, "schema">, "schema"> & {
|
|
281
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
282
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
283
|
+
accountDerivationPath?: string | undefined;
|
|
284
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
285
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
286
|
+
readonly name?: string | undefined;
|
|
287
|
+
readonly paging?: Record<string, {
|
|
288
|
+
size?: number | undefined;
|
|
289
|
+
}> | undefined;
|
|
290
|
+
readonly security?: {
|
|
291
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
292
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
293
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
294
|
+
} | undefined;
|
|
295
|
+
readonly sign?: boolean | undefined;
|
|
296
|
+
readonly storeQueries?: boolean | undefined;
|
|
297
|
+
readonly timestamp?: boolean | undefined;
|
|
298
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
299
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
300
|
+
} & Omit<{
|
|
301
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
302
|
+
}, "schema">, "schema"> & {
|
|
303
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
304
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
305
|
+
accountDerivationPath?: string | undefined;
|
|
306
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
307
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
308
|
+
readonly name?: string | undefined;
|
|
309
|
+
readonly paging?: Record<string, {
|
|
310
|
+
size?: number | undefined;
|
|
311
|
+
}> | undefined;
|
|
312
|
+
readonly security?: {
|
|
313
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
314
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
315
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
316
|
+
} | undefined;
|
|
317
|
+
readonly sign?: boolean | undefined;
|
|
318
|
+
readonly storeQueries?: boolean | undefined;
|
|
319
|
+
readonly timestamp?: boolean | undefined;
|
|
320
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
321
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
322
|
+
} & Omit<{
|
|
323
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
324
|
+
}, "schema">, "schema"> & {
|
|
325
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
326
|
+
}), "schema">, "schema"> & {
|
|
43
327
|
schema: string;
|
|
44
|
-
}
|
|
328
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
329
|
+
accountDerivationPath?: string | undefined;
|
|
330
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
331
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
332
|
+
readonly name?: string | undefined;
|
|
333
|
+
readonly paging?: Record<string, {
|
|
334
|
+
size?: number | undefined;
|
|
335
|
+
}> | undefined;
|
|
336
|
+
readonly security?: {
|
|
337
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
338
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
339
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
340
|
+
} | undefined;
|
|
341
|
+
readonly sign?: boolean | undefined;
|
|
342
|
+
readonly storeQueries?: boolean | undefined;
|
|
343
|
+
readonly timestamp?: boolean | undefined;
|
|
344
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
345
|
+
schema: string;
|
|
346
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
347
|
+
accountDerivationPath?: string | undefined;
|
|
348
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
349
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
350
|
+
readonly name?: string | undefined;
|
|
351
|
+
readonly paging?: Record<string, {
|
|
352
|
+
size?: number | undefined;
|
|
353
|
+
}> | undefined;
|
|
354
|
+
readonly security?: {
|
|
355
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
356
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
357
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
358
|
+
} | undefined;
|
|
359
|
+
readonly sign?: boolean | undefined;
|
|
360
|
+
readonly storeQueries?: boolean | undefined;
|
|
361
|
+
readonly timestamp?: boolean | undefined;
|
|
362
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
363
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
364
|
+
} & Omit<{
|
|
365
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
366
|
+
}, "schema">, "schema"> & {
|
|
367
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
368
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
369
|
+
accountDerivationPath?: string | undefined;
|
|
370
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
371
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
372
|
+
readonly name?: string | undefined;
|
|
373
|
+
readonly paging?: Record<string, {
|
|
374
|
+
size?: number | undefined;
|
|
375
|
+
}> | undefined;
|
|
376
|
+
readonly security?: {
|
|
377
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
378
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
379
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
380
|
+
} | undefined;
|
|
381
|
+
readonly sign?: boolean | undefined;
|
|
382
|
+
readonly storeQueries?: boolean | undefined;
|
|
383
|
+
readonly timestamp?: boolean | undefined;
|
|
384
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
385
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
386
|
+
} & Omit<{
|
|
387
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
388
|
+
}, "schema">, "schema"> & {
|
|
389
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
390
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
391
|
+
accountDerivationPath?: string | undefined;
|
|
392
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
393
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
394
|
+
readonly name?: string | undefined;
|
|
395
|
+
readonly paging?: Record<string, {
|
|
396
|
+
size?: number | undefined;
|
|
397
|
+
}> | undefined;
|
|
398
|
+
readonly security?: {
|
|
399
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
400
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
401
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
402
|
+
} | undefined;
|
|
403
|
+
readonly sign?: boolean | undefined;
|
|
404
|
+
readonly storeQueries?: boolean | undefined;
|
|
405
|
+
readonly timestamp?: boolean | undefined;
|
|
406
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
407
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
408
|
+
} & Omit<{
|
|
409
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
410
|
+
}, "schema">, "schema"> & {
|
|
411
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
412
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
413
|
+
accountDerivationPath?: string | undefined;
|
|
414
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
415
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
416
|
+
readonly name?: string | undefined;
|
|
417
|
+
readonly paging?: Record<string, {
|
|
418
|
+
size?: number | undefined;
|
|
419
|
+
}> | undefined;
|
|
420
|
+
readonly security?: {
|
|
421
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
422
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
423
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
424
|
+
} | undefined;
|
|
425
|
+
readonly sign?: boolean | undefined;
|
|
426
|
+
readonly storeQueries?: boolean | undefined;
|
|
427
|
+
readonly timestamp?: boolean | undefined;
|
|
428
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
429
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
430
|
+
} & Omit<{
|
|
431
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
432
|
+
}, "schema">, "schema"> & {
|
|
433
|
+
schema: "network.xyo.crypto.nft.score.diviner.config";
|
|
434
|
+
}), "schema">, "schema"> & {
|
|
45
435
|
schema: string;
|
|
46
|
-
};
|
|
436
|
+
});
|
|
47
437
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
48
438
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
49
439
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAE3C,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAE3C,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAS/B,CAAA"}
|