@peerbit/indexer-interface
Advanced tools
Comparing version 1.0.2 to 1.0.3-4ec760d
126
package.json
{ | ||
"name": "@peerbit/indexer-interface", | ||
"version": "1.0.2", | ||
"description": "Indexer store interface", | ||
"sideEffects": false, | ||
"type": "module", | ||
"types": "./dist/src/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"*", | ||
"dist/*", | ||
"dist/src/*", | ||
"dist/src/*/index" | ||
], | ||
"src/*": [ | ||
"*", | ||
"dist/*", | ||
"dist/src/*", | ||
"dist/src/*/index" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"src", | ||
"dist", | ||
"!dist/e2e", | ||
"!dist/test", | ||
"!**/*.tsbuildinfo" | ||
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/src/index.d.ts", | ||
"import": "./dist/src/index.js" | ||
} | ||
}, | ||
"eslintConfig": { | ||
"extends": "peerbit", | ||
"parserOptions": { | ||
"project": true, | ||
"sourceType": "module" | ||
}, | ||
"ignorePatterns": [ | ||
"!.aegir.js", | ||
"test/ts-use", | ||
"*.d.ts" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"clean": "aegir clean", | ||
"build": "aegir build --no-bundle", | ||
"test": "aegir test", | ||
"lint": "aegir lint" | ||
}, | ||
"author": "dao.xyz", | ||
"license": "MIT", | ||
"dependencies": { | ||
"uuid": "^9.0.0", | ||
"@dao-xyz/borsh": "^5.2.3", | ||
"@peerbit/crypto": "^2.3.0" | ||
} | ||
"name": "@peerbit/indexer-interface", | ||
"version": "1.0.3-4ec760d", | ||
"description": "Indexer store interface", | ||
"sideEffects": false, | ||
"type": "module", | ||
"types": "./dist/src/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"*", | ||
"dist/*", | ||
"dist/src/*", | ||
"dist/src/*/index" | ||
], | ||
"src/*": [ | ||
"*", | ||
"dist/*", | ||
"dist/src/*", | ||
"dist/src/*/index" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"src", | ||
"dist", | ||
"!dist/e2e", | ||
"!dist/test", | ||
"!**/*.tsbuildinfo" | ||
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/src/index.d.ts", | ||
"import": "./dist/src/index.js" | ||
} | ||
}, | ||
"eslintConfig": { | ||
"extends": "peerbit", | ||
"parserOptions": { | ||
"project": true, | ||
"sourceType": "module" | ||
}, | ||
"ignorePatterns": [ | ||
"!.aegir.js", | ||
"test/ts-use", | ||
"*.d.ts" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"clean": "aegir clean", | ||
"build": "aegir build --no-bundle", | ||
"test": "aegir test", | ||
"lint": "aegir lint" | ||
}, | ||
"author": "dao.xyz", | ||
"license": "MIT", | ||
"dependencies": { | ||
"uuid": "^9.0.0", | ||
"@dao-xyz/borsh": "^5.2.3", | ||
"@peerbit/crypto": "2.3.1-4ec760d" | ||
} | ||
} |
@@ -90,3 +90,3 @@ import { | ||
export abstract class AbstractSearchRequest { } | ||
export abstract class AbstractSearchRequest {} | ||
@@ -116,8 +116,8 @@ /** | ||
query?: | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
sort?: Sort[] | Sort; | ||
@@ -179,3 +179,3 @@ fetch?: number; | ||
@variant(1) | ||
export abstract class LogicalQuery extends Query { } | ||
export abstract class LogicalQuery extends Query {} | ||
@@ -224,3 +224,3 @@ @variant(0) | ||
@variant(2) | ||
export abstract class StateQuery extends Query { } | ||
export abstract class StateQuery extends Query {} | ||
@@ -337,3 +337,3 @@ @variant(1) | ||
@variant(4) | ||
export class IsNull extends StateFieldQuery { } | ||
export class IsNull extends StateFieldQuery {} | ||
@@ -367,8 +367,8 @@ @variant(5) | ||
query: | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
}) { | ||
@@ -412,3 +412,3 @@ super(); | ||
export abstract class AbstractAggregationRequest { } | ||
export abstract class AbstractAggregationRequest {} | ||
@@ -428,8 +428,8 @@ @variant(0) | ||
query?: | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
key: string[] | string; | ||
@@ -444,3 +444,3 @@ }) { | ||
export abstract class AbstractCountRequest { } | ||
export abstract class AbstractCountRequest {} | ||
@@ -458,8 +458,8 @@ @variant(0) | ||
query: | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
} = { query: [] }, | ||
@@ -473,3 +473,3 @@ ) { | ||
export abstract class AbstractDeleteRequest { } | ||
export abstract class AbstractDeleteRequest {} | ||
@@ -486,8 +486,8 @@ @variant(0) | ||
query: | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
| Query[] | ||
| Query | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>; | ||
}) { | ||
@@ -505,5 +505,5 @@ super(); | ||
| Record< | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>, | ||
string, | ||
string | number | bigint | Uint8Array | boolean | null | undefined | ||
>, | ||
) => { | ||
@@ -510,0 +510,0 @@ if (Array.isArray(query)) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
100190
2
+ Added@libp2p/crypto@4.1.9(transitive)
+ Added@libp2p/interface@1.7.0(transitive)
+ Added@libp2p/peer-id@4.2.4(transitive)
+ Added@peerbit/cache@2.1.0-4ec760d(transitive)
+ Added@peerbit/crypto@2.3.1-4ec760d(transitive)
- Removed@libp2p/crypto@5.0.13(transitive)
- Removed@libp2p/interface@2.6.1(transitive)
- Removed@libp2p/peer-id@5.0.14(transitive)
- Removed@peerbit/cache@2.1.2(transitive)
- Removed@peerbit/crypto@2.3.5(transitive)