@xyo-network/diviner-range-model 3.9.1 → 3.9.3
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 -48
- package/package.json +3 -3
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
2
|
-
import * as _xylabs_logger from '@xylabs/logger';
|
|
3
|
-
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
4
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
5
2
|
import { Hex } from '@xylabs/hex';
|
|
6
3
|
import { Payload } from '@xyo-network/payload-model';
|
|
@@ -36,50 +33,6 @@ type RangeDivinerConfigSchema = typeof RangeDivinerConfigSchema;
|
|
|
36
33
|
type RangeDivinerConfig = DivinerConfig<{
|
|
37
34
|
ranges?: RangePayload[];
|
|
38
35
|
}, RangeDivinerConfigSchema>;
|
|
39
|
-
declare const isRangeDivinerConfig: (x?: unknown | null) => x is
|
|
40
|
-
schema: "network.xyo.diviner.range.config";
|
|
41
|
-
readonly archiving?: {
|
|
42
|
-
readonly archivists?: string[] | undefined;
|
|
43
|
-
readonly queries?: string[] | undefined;
|
|
44
|
-
} | undefined;
|
|
45
|
-
readonly allowedQueries?: string[] | undefined;
|
|
46
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
47
|
-
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
48
|
-
readonly labels?: {
|
|
49
|
-
[x: string]: string | undefined;
|
|
50
|
-
} | undefined;
|
|
51
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
52
|
-
readonly paging?: {
|
|
53
|
-
[x: string]: {
|
|
54
|
-
size?: number | undefined;
|
|
55
|
-
};
|
|
56
|
-
} | undefined;
|
|
57
|
-
readonly retry?: {
|
|
58
|
-
backoff?: number | undefined;
|
|
59
|
-
interval?: number | undefined;
|
|
60
|
-
retries?: number | undefined;
|
|
61
|
-
} | undefined;
|
|
62
|
-
readonly security?: {
|
|
63
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
64
|
-
readonly allowed?: {
|
|
65
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
66
|
-
} | undefined;
|
|
67
|
-
readonly disallowed?: {
|
|
68
|
-
[x: string]: Lowercase<string>[];
|
|
69
|
-
} | undefined;
|
|
70
|
-
} | undefined;
|
|
71
|
-
readonly sign?: boolean | undefined;
|
|
72
|
-
readonly storeQueries?: boolean | undefined;
|
|
73
|
-
readonly timestamp?: boolean | undefined;
|
|
74
|
-
ranges?: ({
|
|
75
|
-
schema: "network.xyo.range";
|
|
76
|
-
count: number;
|
|
77
|
-
start: number;
|
|
78
|
-
} | {
|
|
79
|
-
schema: "network.xyo.range";
|
|
80
|
-
count: number;
|
|
81
|
-
start: Lowercase<string>;
|
|
82
|
-
})[] | undefined;
|
|
83
|
-
}>;
|
|
36
|
+
declare const isRangeDivinerConfig: (x?: unknown | null) => x is RangeDivinerConfig;
|
|
84
37
|
|
|
85
38
|
export { type BigIntPayload, type BigIntRangePayload, BigIntSchema, type NumberPayload, type NumberRangePayload, NumberSchema, type RangeDivinerConfig, RangeDivinerConfigSchema, type RangePayload, type RangePayloadBase, RangeSchema, isBigIntRangePayload, isNumberRangePayload, isRangeDivinerConfig, isRangePayload };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-range-model",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xylabs/hex": "^4.5.1",
|
|
33
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
34
|
-
"@xyo-network/payload-model": "^3.9.
|
|
33
|
+
"@xyo-network/diviner-model": "^3.9.3",
|
|
34
|
+
"@xyo-network/payload-model": "^3.9.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|