@xyo-network/diviner-temporal-indexing-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/browser/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import { DivinerConfig, DivinerParams, SearchableStorage } from '@xyo-network/di
|
|
|
4
4
|
import { Schema, Payload, PayloadWithSources } from '@xyo-network/payload-model';
|
|
5
5
|
import { BoundWitnessDivinerPredicate } from '@xyo-network/diviner-boundwitness-model';
|
|
6
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
7
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
8
7
|
import { Hash } from '@xylabs/hex';
|
|
9
8
|
|
|
10
9
|
declare const TemporalIndexingDivinerSchema: "network.xyo.diviner.indexing.temporal";
|
|
@@ -92,11 +91,7 @@ type TemporalIndexingDivinerResult = Payload<{
|
|
|
92
91
|
sources: Hash[];
|
|
93
92
|
timestamp: string;
|
|
94
93
|
}, TemporalIndexingDivinerResultSchema>;
|
|
95
|
-
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is
|
|
96
|
-
schema: "network.xyo.diviner.indexing.temporal.result";
|
|
97
|
-
sources: Lowercase<string>[];
|
|
98
|
-
timestamp: string;
|
|
99
|
-
}>;
|
|
94
|
+
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is TemporalIndexingDivinerResult;
|
|
100
95
|
|
|
101
96
|
declare const TemporalIndexingDivinerResultIndexSchema: "network.xyo.diviner.indexing.temporal.result.index";
|
|
102
97
|
type TemporalIndexingDivinerResultIndexSchema = typeof TemporalIndexingDivinerResultIndexSchema;
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import { DivinerConfig, DivinerParams, SearchableStorage } from '@xyo-network/di
|
|
|
4
4
|
import { Schema, Payload, PayloadWithSources } from '@xyo-network/payload-model';
|
|
5
5
|
import { BoundWitnessDivinerPredicate } from '@xyo-network/diviner-boundwitness-model';
|
|
6
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
7
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
8
7
|
import { Hash } from '@xylabs/hex';
|
|
9
8
|
|
|
10
9
|
declare const TemporalIndexingDivinerSchema: "network.xyo.diviner.indexing.temporal";
|
|
@@ -92,11 +91,7 @@ type TemporalIndexingDivinerResult = Payload<{
|
|
|
92
91
|
sources: Hash[];
|
|
93
92
|
timestamp: string;
|
|
94
93
|
}, TemporalIndexingDivinerResultSchema>;
|
|
95
|
-
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is
|
|
96
|
-
schema: "network.xyo.diviner.indexing.temporal.result";
|
|
97
|
-
sources: Lowercase<string>[];
|
|
98
|
-
timestamp: string;
|
|
99
|
-
}>;
|
|
94
|
+
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is TemporalIndexingDivinerResult;
|
|
100
95
|
|
|
101
96
|
declare const TemporalIndexingDivinerResultIndexSchema: "network.xyo.diviner.indexing.temporal.result.index";
|
|
102
97
|
type TemporalIndexingDivinerResultIndexSchema = typeof TemporalIndexingDivinerResultIndexSchema;
|
package/dist/node/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import { DivinerConfig, DivinerParams, SearchableStorage } from '@xyo-network/di
|
|
|
4
4
|
import { Schema, Payload, PayloadWithSources } from '@xyo-network/payload-model';
|
|
5
5
|
import { BoundWitnessDivinerPredicate } from '@xyo-network/diviner-boundwitness-model';
|
|
6
6
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
7
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
8
7
|
import { Hash } from '@xylabs/hex';
|
|
9
8
|
|
|
10
9
|
declare const TemporalIndexingDivinerSchema: "network.xyo.diviner.indexing.temporal";
|
|
@@ -92,11 +91,7 @@ type TemporalIndexingDivinerResult = Payload<{
|
|
|
92
91
|
sources: Hash[];
|
|
93
92
|
timestamp: string;
|
|
94
93
|
}, TemporalIndexingDivinerResultSchema>;
|
|
95
|
-
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is
|
|
96
|
-
schema: "network.xyo.diviner.indexing.temporal.result";
|
|
97
|
-
sources: Lowercase<string>[];
|
|
98
|
-
timestamp: string;
|
|
99
|
-
}>;
|
|
94
|
+
declare const isTemporalIndexingDivinerResult: (x?: unknown | null) => x is TemporalIndexingDivinerResult;
|
|
100
95
|
|
|
101
96
|
declare const TemporalIndexingDivinerResultIndexSchema: "network.xyo.diviner.indexing.temporal.result.index";
|
|
102
97
|
type TemporalIndexingDivinerResultIndexSchema = typeof TemporalIndexingDivinerResultIndexSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-temporal-indexing-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": {
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xylabs/hex": "^4.5.1",
|
|
33
|
-
"@xyo-network/diviner-boundwitness-model": "^3.9.
|
|
34
|
-
"@xyo-network/diviner-indexing-model": "^3.9.
|
|
35
|
-
"@xyo-network/diviner-jsonpath-model": "^3.9.
|
|
36
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
37
|
-
"@xyo-network/module-model": "^3.9.
|
|
38
|
-
"@xyo-network/payload-model": "^3.9.
|
|
33
|
+
"@xyo-network/diviner-boundwitness-model": "^3.9.4",
|
|
34
|
+
"@xyo-network/diviner-indexing-model": "^3.9.4",
|
|
35
|
+
"@xyo-network/diviner-jsonpath-model": "^3.9.4",
|
|
36
|
+
"@xyo-network/diviner-model": "^3.9.4",
|
|
37
|
+
"@xyo-network/module-model": "^3.9.4",
|
|
38
|
+
"@xyo-network/payload-model": "^3.9.4"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|