@xyo-network/crypto-nft-collection-diviner-score-plugin 3.4.1 → 3.4.2
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/index.d.ts +7 -41
- package/dist/neutral/index.d.ts +7 -41
- package/dist/node/index.d.ts +7 -41
- package/package.json +15 -15
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
+
import * as _xyo_network_crypto_nft_collection_payload_plugin from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
1
2
|
import { NftCollectionScoreDivinerConfig, NftCollectionInfo } from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
2
3
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
3
4
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
4
5
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
5
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
6
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
7
7
|
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
8
8
|
import { WeightedScoringCriteria, Score } from '@xyo-network/crypto-nft-score-model';
|
|
9
9
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
10
|
-
import * as
|
|
11
|
-
import * as _store__xyo_network_account_model_virtual_3a3814c98f_package from '.store/@xyo-network-account-model-virtual-3a3814c98f/package';
|
|
10
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
12
11
|
import * as _xylabs_object from '@xylabs/object';
|
|
13
12
|
|
|
14
13
|
type NftCollectionScoreDivinerParams = DivinerParams<AnyConfigSchema<NftCollectionScoreDivinerConfig>>;
|
|
@@ -29,48 +28,15 @@ type NftCollectionAnalysis = {
|
|
|
29
28
|
declare const analyzeNftCollection: (nft: NftCollectionInfo) => Promise<NftCollectionAnalysis>;
|
|
30
29
|
|
|
31
30
|
declare const NftCollectionScoreDivinerPlugin: () => _xyo_network_payloadset_plugin.PayloadSetDivinerPlugin<NftCollectionScoreDiviner<_xylabs_object.BaseParamsFields & {
|
|
32
|
-
account?:
|
|
31
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
33
32
|
addToResolvers?: boolean;
|
|
34
|
-
additionalSigners?:
|
|
33
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
35
34
|
allowNameResolution?: boolean;
|
|
36
|
-
config:
|
|
37
|
-
schema: _xyo_network_payload_model.Schema;
|
|
38
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
39
|
-
readonly archiving?: {
|
|
40
|
-
readonly archivists?: string[] | undefined;
|
|
41
|
-
readonly queries?: string[] | undefined;
|
|
42
|
-
} | undefined;
|
|
43
|
-
readonly allowedQueries?: string[] | undefined;
|
|
44
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
45
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
46
|
-
readonly labels?: {
|
|
47
|
-
[x: string]: string | undefined;
|
|
48
|
-
} | undefined;
|
|
49
|
-
readonly paging?: {
|
|
50
|
-
[x: string]: {
|
|
51
|
-
size?: number | undefined;
|
|
52
|
-
};
|
|
53
|
-
} | undefined;
|
|
54
|
-
readonly retry?: {
|
|
55
|
-
backoff?: number | undefined;
|
|
56
|
-
interval?: number | undefined;
|
|
57
|
-
retries?: number | undefined;
|
|
58
|
-
} | undefined;
|
|
59
|
-
readonly security?: {
|
|
60
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
61
|
-
readonly allowed?: {
|
|
62
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
63
|
-
} | undefined;
|
|
64
|
-
readonly disallowed?: {
|
|
65
|
-
[x: string]: Lowercase<string>[];
|
|
66
|
-
} | undefined;
|
|
67
|
-
} | undefined;
|
|
68
|
-
readonly sign?: boolean | undefined;
|
|
69
|
-
readonly storeQueries?: boolean | undefined;
|
|
70
|
-
readonly timestamp?: boolean | undefined;
|
|
71
|
-
}>;
|
|
35
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_nft_collection_payload_plugin.NftCollectionScoreDivinerConfig>;
|
|
72
36
|
ephemeralQueryAccountEnabled?: boolean;
|
|
73
37
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
38
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
39
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
74
40
|
}>>;
|
|
75
41
|
|
|
76
42
|
export { type NftCollectionAnalysis, NftCollectionScoreDiviner, type NftCollectionScoreDivinerParams, NftCollectionScoreDivinerPlugin, type ScoringCriteriaKey, analyzeNftCollection, NftCollectionScoreDivinerPlugin as default, scoringCriteria };
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
+
import * as _xyo_network_crypto_nft_collection_payload_plugin from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
1
2
|
import { NftCollectionScoreDivinerConfig, NftCollectionInfo } from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
2
3
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
3
4
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
4
5
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
5
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
6
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
7
7
|
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
8
8
|
import { WeightedScoringCriteria, Score } from '@xyo-network/crypto-nft-score-model';
|
|
9
9
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
10
|
-
import * as
|
|
11
|
-
import * as _store__xyo_network_account_model_virtual_3a3814c98f_package from '.store/@xyo-network-account-model-virtual-3a3814c98f/package';
|
|
10
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
12
11
|
import * as _xylabs_object from '@xylabs/object';
|
|
13
12
|
|
|
14
13
|
type NftCollectionScoreDivinerParams = DivinerParams<AnyConfigSchema<NftCollectionScoreDivinerConfig>>;
|
|
@@ -29,48 +28,15 @@ type NftCollectionAnalysis = {
|
|
|
29
28
|
declare const analyzeNftCollection: (nft: NftCollectionInfo) => Promise<NftCollectionAnalysis>;
|
|
30
29
|
|
|
31
30
|
declare const NftCollectionScoreDivinerPlugin: () => _xyo_network_payloadset_plugin.PayloadSetDivinerPlugin<NftCollectionScoreDiviner<_xylabs_object.BaseParamsFields & {
|
|
32
|
-
account?:
|
|
31
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
33
32
|
addToResolvers?: boolean;
|
|
34
|
-
additionalSigners?:
|
|
33
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
35
34
|
allowNameResolution?: boolean;
|
|
36
|
-
config:
|
|
37
|
-
schema: _xyo_network_payload_model.Schema;
|
|
38
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
39
|
-
readonly archiving?: {
|
|
40
|
-
readonly archivists?: string[] | undefined;
|
|
41
|
-
readonly queries?: string[] | undefined;
|
|
42
|
-
} | undefined;
|
|
43
|
-
readonly allowedQueries?: string[] | undefined;
|
|
44
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
45
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
46
|
-
readonly labels?: {
|
|
47
|
-
[x: string]: string | undefined;
|
|
48
|
-
} | undefined;
|
|
49
|
-
readonly paging?: {
|
|
50
|
-
[x: string]: {
|
|
51
|
-
size?: number | undefined;
|
|
52
|
-
};
|
|
53
|
-
} | undefined;
|
|
54
|
-
readonly retry?: {
|
|
55
|
-
backoff?: number | undefined;
|
|
56
|
-
interval?: number | undefined;
|
|
57
|
-
retries?: number | undefined;
|
|
58
|
-
} | undefined;
|
|
59
|
-
readonly security?: {
|
|
60
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
61
|
-
readonly allowed?: {
|
|
62
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
63
|
-
} | undefined;
|
|
64
|
-
readonly disallowed?: {
|
|
65
|
-
[x: string]: Lowercase<string>[];
|
|
66
|
-
} | undefined;
|
|
67
|
-
} | undefined;
|
|
68
|
-
readonly sign?: boolean | undefined;
|
|
69
|
-
readonly storeQueries?: boolean | undefined;
|
|
70
|
-
readonly timestamp?: boolean | undefined;
|
|
71
|
-
}>;
|
|
35
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_nft_collection_payload_plugin.NftCollectionScoreDivinerConfig>;
|
|
72
36
|
ephemeralQueryAccountEnabled?: boolean;
|
|
73
37
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
38
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
39
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
74
40
|
}>>;
|
|
75
41
|
|
|
76
42
|
export { type NftCollectionAnalysis, NftCollectionScoreDiviner, type NftCollectionScoreDivinerParams, NftCollectionScoreDivinerPlugin, type ScoringCriteriaKey, analyzeNftCollection, NftCollectionScoreDivinerPlugin as default, scoringCriteria };
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
+
import * as _xyo_network_crypto_nft_collection_payload_plugin from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
1
2
|
import { NftCollectionScoreDivinerConfig, NftCollectionInfo } from '@xyo-network/crypto-nft-collection-payload-plugin';
|
|
2
3
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
3
4
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
4
5
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
5
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
6
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
7
7
|
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
8
8
|
import { WeightedScoringCriteria, Score } from '@xyo-network/crypto-nft-score-model';
|
|
9
9
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
10
|
-
import * as
|
|
11
|
-
import * as _store__xyo_network_account_model_virtual_3a3814c98f_package from '.store/@xyo-network-account-model-virtual-3a3814c98f/package';
|
|
10
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
12
11
|
import * as _xylabs_object from '@xylabs/object';
|
|
13
12
|
|
|
14
13
|
type NftCollectionScoreDivinerParams = DivinerParams<AnyConfigSchema<NftCollectionScoreDivinerConfig>>;
|
|
@@ -29,48 +28,15 @@ type NftCollectionAnalysis = {
|
|
|
29
28
|
declare const analyzeNftCollection: (nft: NftCollectionInfo) => Promise<NftCollectionAnalysis>;
|
|
30
29
|
|
|
31
30
|
declare const NftCollectionScoreDivinerPlugin: () => _xyo_network_payloadset_plugin.PayloadSetDivinerPlugin<NftCollectionScoreDiviner<_xylabs_object.BaseParamsFields & {
|
|
32
|
-
account?:
|
|
31
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
33
32
|
addToResolvers?: boolean;
|
|
34
|
-
additionalSigners?:
|
|
33
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
35
34
|
allowNameResolution?: boolean;
|
|
36
|
-
config:
|
|
37
|
-
schema: _xyo_network_payload_model.Schema;
|
|
38
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
39
|
-
readonly archiving?: {
|
|
40
|
-
readonly archivists?: string[] | undefined;
|
|
41
|
-
readonly queries?: string[] | undefined;
|
|
42
|
-
} | undefined;
|
|
43
|
-
readonly allowedQueries?: string[] | undefined;
|
|
44
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
45
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
46
|
-
readonly labels?: {
|
|
47
|
-
[x: string]: string | undefined;
|
|
48
|
-
} | undefined;
|
|
49
|
-
readonly paging?: {
|
|
50
|
-
[x: string]: {
|
|
51
|
-
size?: number | undefined;
|
|
52
|
-
};
|
|
53
|
-
} | undefined;
|
|
54
|
-
readonly retry?: {
|
|
55
|
-
backoff?: number | undefined;
|
|
56
|
-
interval?: number | undefined;
|
|
57
|
-
retries?: number | undefined;
|
|
58
|
-
} | undefined;
|
|
59
|
-
readonly security?: {
|
|
60
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
61
|
-
readonly allowed?: {
|
|
62
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
63
|
-
} | undefined;
|
|
64
|
-
readonly disallowed?: {
|
|
65
|
-
[x: string]: Lowercase<string>[];
|
|
66
|
-
} | undefined;
|
|
67
|
-
} | undefined;
|
|
68
|
-
readonly sign?: boolean | undefined;
|
|
69
|
-
readonly storeQueries?: boolean | undefined;
|
|
70
|
-
readonly timestamp?: boolean | undefined;
|
|
71
|
-
}>;
|
|
35
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_nft_collection_payload_plugin.NftCollectionScoreDivinerConfig>;
|
|
72
36
|
ephemeralQueryAccountEnabled?: boolean;
|
|
73
37
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
38
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
39
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
74
40
|
}>>;
|
|
75
41
|
|
|
76
42
|
export { type NftCollectionAnalysis, NftCollectionScoreDiviner, type NftCollectionScoreDivinerParams, NftCollectionScoreDivinerPlugin, type ScoringCriteriaKey, analyzeNftCollection, NftCollectionScoreDivinerPlugin as default, scoringCriteria };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/crypto-nft-collection-diviner-score-plugin",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,25 +29,25 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/crypto-nft-collection-payload-plugin": "^3.4.
|
|
33
|
-
"@xyo-network/crypto-nft-payload-plugin": "^3.4.
|
|
34
|
-
"@xyo-network/crypto-nft-score-model": "^3.4.
|
|
35
|
-
"@xyo-network/diviner-abstract": "^3.
|
|
36
|
-
"@xyo-network/diviner-model": "^3.
|
|
37
|
-
"@xyo-network/module-model": "^3.
|
|
38
|
-
"@xyo-network/payload-builder": "^3.
|
|
39
|
-
"@xyo-network/payload-model": "^3.
|
|
40
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
32
|
+
"@xyo-network/crypto-nft-collection-payload-plugin": "^3.4.2",
|
|
33
|
+
"@xyo-network/crypto-nft-payload-plugin": "^3.4.2",
|
|
34
|
+
"@xyo-network/crypto-nft-score-model": "^3.4.2",
|
|
35
|
+
"@xyo-network/diviner-abstract": "^3.9.16",
|
|
36
|
+
"@xyo-network/diviner-model": "^3.9.16",
|
|
37
|
+
"@xyo-network/module-model": "^3.9.16",
|
|
38
|
+
"@xyo-network/payload-builder": "^3.9.16",
|
|
39
|
+
"@xyo-network/payload-model": "^3.9.16",
|
|
40
|
+
"@xyo-network/payloadset-plugin": "^3.9.16"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
44
|
-
"@xylabs/tsconfig": "^5.0.
|
|
43
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|
|
44
|
+
"@xylabs/tsconfig": "^5.0.24",
|
|
45
45
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
46
|
-
"@xyo-network/account": "^3.
|
|
47
|
-
"@xyo-network/payload-wrapper": "^3.
|
|
46
|
+
"@xyo-network/account": "^3.9.16",
|
|
47
|
+
"@xyo-network/payload-wrapper": "^3.9.16",
|
|
48
48
|
"ethers": "^6.13.5",
|
|
49
49
|
"typescript": "^5.7.3",
|
|
50
|
-
"vitest": "^3.0.
|
|
50
|
+
"vitest": "^3.0.6"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|