@xyo-network/diviner-boundwitness-model 3.9.2 → 3.9.4
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/neutral/index.d.ts +1 -21
- package/package.json +6 -6
package/dist/neutral/index.d.ts
CHANGED
|
@@ -2,9 +2,7 @@ import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
|
|
|
2
2
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
3
3
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
4
4
|
import { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
5
|
-
import * as _xyo_network_diviner_payload_model from '@xyo-network/diviner-payload-model';
|
|
6
5
|
import { PayloadDivinerPredicate } from '@xyo-network/diviner-payload-model';
|
|
7
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
8
6
|
|
|
9
7
|
declare const BoundWitnessDivinerSchema: "network.xyo.diviner.boundwitness";
|
|
10
8
|
type BoundWitnessDivinerSchema = typeof BoundWitnessDivinerSchema;
|
|
@@ -29,24 +27,6 @@ declare const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema;
|
|
|
29
27
|
type BoundWitnessDivinerQueryPayload = Query<{
|
|
30
28
|
schema: BoundWitnessDivinerQuerySchema;
|
|
31
29
|
} & BoundWitnessDivinerPredicate>;
|
|
32
|
-
declare const isBoundWitnessDivinerQueryPayload: (x?: unknown | null) => x is
|
|
33
|
-
schema: "network.xyo.diviner.boundwitness.query";
|
|
34
|
-
block?: Lowercase<string> | undefined;
|
|
35
|
-
chain?: Lowercase<string> | undefined;
|
|
36
|
-
root?: Lowercase<string> | undefined;
|
|
37
|
-
addresses?: Lowercase<string>[] | undefined;
|
|
38
|
-
payload_hashes?: Lowercase<string>[] | undefined;
|
|
39
|
-
payload_schemas?: string[] | undefined;
|
|
40
|
-
previous_hashes?: _xylabs_object.DeepRestrictToStringKeys<Lowercase<string> | null>[] | undefined;
|
|
41
|
-
cursor?: Lowercase<string> | undefined;
|
|
42
|
-
limit?: number | undefined;
|
|
43
|
-
order?: _xyo_network_diviner_payload_model.Order | undefined;
|
|
44
|
-
destination?: string[] | undefined;
|
|
45
|
-
sourceQuery?: string | undefined;
|
|
46
|
-
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
47
|
-
budget?: number | undefined;
|
|
48
|
-
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
49
|
-
minBid?: number | undefined;
|
|
50
|
-
}>;
|
|
30
|
+
declare const isBoundWitnessDivinerQueryPayload: (x?: unknown | null) => x is BoundWitnessDivinerQueryPayload;
|
|
51
31
|
|
|
52
32
|
export { type BoundWitnessDivinerConfig, BoundWitnessDivinerConfigSchema, type BoundWitnessDivinerParams, type BoundWitnessDivinerPredicate, type BoundWitnessDivinerPredicateFields, type BoundWitnessDivinerQueryPayload, BoundWitnessDivinerQuerySchema, BoundWitnessDivinerSchema, type WithoutSchemas, isBoundWitnessDivinerQueryPayload };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-boundwitness-model",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.4",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/boundwitness-model": "^3.9.
|
|
33
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
34
|
-
"@xyo-network/diviner-payload-model": "^3.9.
|
|
35
|
-
"@xyo-network/module-model": "^3.9.
|
|
36
|
-
"@xyo-network/payload-model": "^3.9.
|
|
32
|
+
"@xyo-network/boundwitness-model": "^3.9.4",
|
|
33
|
+
"@xyo-network/diviner-model": "^3.9.4",
|
|
34
|
+
"@xyo-network/diviner-payload-model": "^3.9.4",
|
|
35
|
+
"@xyo-network/module-model": "^3.9.4",
|
|
36
|
+
"@xyo-network/payload-model": "^3.9.4"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|