@xyo-network/diviner-temporal-indexing-memory 4.1.2 → 4.1.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/StateToIndexCandidateDiviner/Diviner.d.ts +1 -1
- package/dist/browser/index.d.ts +6 -157
- package/dist/neutral/StateToIndexCandidateDiviner/Diviner.d.ts +1 -1
- package/dist/neutral/index.d.ts +6 -157
- package/dist/node/StateToIndexCandidateDiviner/Diviner.d.ts +1 -1
- package/dist/node/index.d.ts +6 -157
- package/package.json +37 -37
|
@@ -49,7 +49,7 @@ export declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams
|
|
|
49
49
|
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
50
50
|
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
51
51
|
*/
|
|
52
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData
|
|
52
|
+
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
53
53
|
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
54
54
|
}
|
|
55
55
|
//# sourceMappingURL=Diviner.d.ts.map
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,157 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import { SchemaToPayloadTransformersDictionary, SchemaToJsonPathTransformExpressionsDictionary } from '@xyo-network/diviner-jsonpath-model';
|
|
8
|
-
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
9
|
-
import { Labels, ModuleState } from '@xyo-network/module-model';
|
|
10
|
-
import { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
11
|
-
import { ArchivistWrapper } from '@xyo-network/archivist-wrapper';
|
|
12
|
-
import { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
13
|
-
import { BoundWitnessDiviner } from '@xyo-network/diviner-boundwitness-abstract';
|
|
14
|
-
import { BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload } from '@xyo-network/diviner-boundwitness-model';
|
|
15
|
-
import { IndexingDivinerState } from '@xyo-network/diviner-indexing-model';
|
|
16
|
-
import { DivinerWrapper } from '@xyo-network/diviner-wrapper';
|
|
17
|
-
import { TimeStamp } from '@xyo-network/witness-timestamp';
|
|
18
|
-
|
|
19
|
-
declare class TemporalIndexingDiviner<TParams extends TemporalIndexingDivinerParams = TemporalIndexingDivinerParams, TIn extends Payload = Payload, TOut extends Payload = Payload, TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut>> extends IndexingDiviner<TParams, TIn, TOut, TEventData> {
|
|
20
|
-
static readonly configSchemas: Schema[];
|
|
21
|
-
static readonly defaultConfigSchema: Schema;
|
|
22
|
-
protected startHandler(): Promise<void>;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* A diviner that converts diviner query to index query
|
|
27
|
-
*/
|
|
28
|
-
declare class TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner<TParams extends TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams = TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams> extends AbstractDiviner<TParams> {
|
|
29
|
-
static readonly configSchemas: string[];
|
|
30
|
-
static readonly defaultConfigSchema: "network.xyo.diviner.indexing.temporal.stage.divinerQueryToIndexQueryDiviner.config";
|
|
31
|
-
static readonly labels: Labels;
|
|
32
|
-
private _indexableSchemas;
|
|
33
|
-
private _payloadTransformers;
|
|
34
|
-
/**
|
|
35
|
-
* The schema of the diviner query payloads
|
|
36
|
-
*/
|
|
37
|
-
protected get divinerQuerySchema(): Schema;
|
|
38
|
-
/**
|
|
39
|
-
* The schema of the index query payloads
|
|
40
|
-
*/
|
|
41
|
-
protected get indexQuerySchema(): Schema;
|
|
42
|
-
/**
|
|
43
|
-
* The schema of the index payloads
|
|
44
|
-
*/
|
|
45
|
-
protected get indexSchema(): Schema;
|
|
46
|
-
/**
|
|
47
|
-
* List of indexable schemas for this diviner
|
|
48
|
-
*/
|
|
49
|
-
protected get indexableSchemas(): Schema[];
|
|
50
|
-
/**
|
|
51
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
52
|
-
* from the payloads within a Bound Witness
|
|
53
|
-
*/
|
|
54
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
55
|
-
/**
|
|
56
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
57
|
-
* from the payloads within a Bound Witness
|
|
58
|
-
*/
|
|
59
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
60
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Diviner which transforms index candidates to indexes using JSON Path to map
|
|
65
|
-
* source properties in the supplied payloads to destination fields in the
|
|
66
|
-
* resultant index
|
|
67
|
-
*/
|
|
68
|
-
declare class TemporalIndexingDivinerIndexCandidateToIndexDiviner<TParams extends TemporalIndexingDivinerIndexCandidateToIndexDivinerParams = TemporalIndexingDivinerIndexCandidateToIndexDivinerParams> extends AbstractDiviner<TParams> {
|
|
69
|
-
static readonly configSchemas: Schema[];
|
|
70
|
-
static readonly defaultConfigSchema: Schema;
|
|
71
|
-
static readonly labels: Labels;
|
|
72
|
-
private _indexableSchemas;
|
|
73
|
-
private _payloadTransformers;
|
|
74
|
-
/**
|
|
75
|
-
* List of indexable schemas for this diviner
|
|
76
|
-
*/
|
|
77
|
-
protected get indexableSchemas(): string[];
|
|
78
|
-
/**
|
|
79
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
80
|
-
* from the payloads within a Bound Witness
|
|
81
|
-
*/
|
|
82
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
83
|
-
/**
|
|
84
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
85
|
-
* from the payloads within a Bound Witness
|
|
86
|
-
*/
|
|
87
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
88
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
89
|
-
/**
|
|
90
|
-
* Identifies if a payload is one that is indexed by this diviner
|
|
91
|
-
* @param x The candidate payload
|
|
92
|
-
* @returns True if the payload is one indexed by this diviner, false otherwise
|
|
93
|
-
*/
|
|
94
|
-
protected isIndexablePayload: (x: unknown) => boolean;
|
|
95
|
-
/**
|
|
96
|
-
* Identifies if a schema is one that is indexed by this diviner
|
|
97
|
-
* @param schema The candidate schema
|
|
98
|
-
* @returns True if this schema is one indexed by this diviner, false otherwise
|
|
99
|
-
*/
|
|
100
|
-
protected isIndexableSchema: (schema?: string | null) => boolean;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Transforms an ImageThumbnailIndex response into an ImageThumbnailResponse response
|
|
105
|
-
*/
|
|
106
|
-
declare class TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner extends AbstractDiviner {
|
|
107
|
-
static readonly configSchemas: Schema[];
|
|
108
|
-
static readonly defaultConfigSchema: Schema;
|
|
109
|
-
static readonly labels: Labels;
|
|
110
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
/**
|
|
114
|
-
* All Payload types involved in index candidates for indexing
|
|
115
|
-
*/
|
|
116
|
-
type IndexCandidate = BoundWitness | Payload | TimeStamp;
|
|
117
|
-
/**
|
|
118
|
-
* The response from the TemporalStateToIndexCandidateDiviner
|
|
119
|
-
*/
|
|
120
|
-
type TemporalStateToIndexCandidateDivinerResponse = [
|
|
121
|
-
/**
|
|
122
|
-
* The next state of the diviner
|
|
123
|
-
*/
|
|
124
|
-
nextState: ModuleState<IndexingDivinerState>,
|
|
125
|
-
/**
|
|
126
|
-
* The index candidates
|
|
127
|
-
*/
|
|
128
|
-
...IndexCandidate[]
|
|
129
|
-
];
|
|
130
|
-
/**
|
|
131
|
-
* Transforms candidates for image thumbnail indexing into their indexed representation
|
|
132
|
-
*/
|
|
133
|
-
declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams extends TemporalIndexingDivinerStateToIndexCandidateDivinerParams = TemporalIndexingDivinerStateToIndexCandidateDivinerParams> extends AbstractDiviner<TParams, Payload, ModuleState | IndexCandidate> {
|
|
134
|
-
static readonly configSchemas: Schema[];
|
|
135
|
-
static readonly defaultConfigSchema: Schema;
|
|
136
|
-
static readonly labels: Labels;
|
|
137
|
-
get payloadDivinerLimit(): number;
|
|
138
|
-
/**
|
|
139
|
-
* The required payload_schemas within BoundWitnesses to identify index candidates
|
|
140
|
-
*/
|
|
141
|
-
protected get payload_schemas(): string[];
|
|
142
|
-
protected divineHandler(payloads?: Payload[]): Promise<TemporalStateToIndexCandidateDivinerResponse>;
|
|
143
|
-
/**
|
|
144
|
-
* Retrieves the archivist for the payloadStore
|
|
145
|
-
* @returns The archivist for the payloadStore or undefined if not resolvable
|
|
146
|
-
*/
|
|
147
|
-
protected getArchivistForStore(): Promise<ArchivistWrapper | undefined>;
|
|
148
|
-
/**
|
|
149
|
-
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
150
|
-
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
151
|
-
*/
|
|
152
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_diviner_model.DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_module_model.ModuleInstance<_xyo_network_module_model.ModuleParams<_xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<object, void>>>, _xyo_network_module_model.ModuleEventData<object>>, Payload, Payload>>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
153
|
-
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export { TemporalIndexingDiviner, TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner, TemporalIndexingDivinerIndexCandidateToIndexDiviner, TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner, TemporalIndexingDivinerStateToIndexCandidateDiviner };
|
|
157
|
-
export type { IndexCandidate, TemporalStateToIndexCandidateDivinerResponse };
|
|
1
|
+
export * from './Diviner.ts';
|
|
2
|
+
export * from './DivinerQueryToIndexQueryDiviner/index.ts';
|
|
3
|
+
export * from './IndexCandidateToIndexDiviner/index.ts';
|
|
4
|
+
export * from './IndexQueryResponseToDivinerQueryResponseDiviner/index.ts';
|
|
5
|
+
export * from './StateToIndexCandidateDiviner/index.ts';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -49,7 +49,7 @@ export declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams
|
|
|
49
49
|
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
50
50
|
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
51
51
|
*/
|
|
52
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData
|
|
52
|
+
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
53
53
|
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
54
54
|
}
|
|
55
55
|
//# sourceMappingURL=Diviner.d.ts.map
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,157 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import { SchemaToPayloadTransformersDictionary, SchemaToJsonPathTransformExpressionsDictionary } from '@xyo-network/diviner-jsonpath-model';
|
|
8
|
-
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
9
|
-
import { Labels, ModuleState } from '@xyo-network/module-model';
|
|
10
|
-
import { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
11
|
-
import { ArchivistWrapper } from '@xyo-network/archivist-wrapper';
|
|
12
|
-
import { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
13
|
-
import { BoundWitnessDiviner } from '@xyo-network/diviner-boundwitness-abstract';
|
|
14
|
-
import { BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload } from '@xyo-network/diviner-boundwitness-model';
|
|
15
|
-
import { IndexingDivinerState } from '@xyo-network/diviner-indexing-model';
|
|
16
|
-
import { DivinerWrapper } from '@xyo-network/diviner-wrapper';
|
|
17
|
-
import { TimeStamp } from '@xyo-network/witness-timestamp';
|
|
18
|
-
|
|
19
|
-
declare class TemporalIndexingDiviner<TParams extends TemporalIndexingDivinerParams = TemporalIndexingDivinerParams, TIn extends Payload = Payload, TOut extends Payload = Payload, TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut>> extends IndexingDiviner<TParams, TIn, TOut, TEventData> {
|
|
20
|
-
static readonly configSchemas: Schema[];
|
|
21
|
-
static readonly defaultConfigSchema: Schema;
|
|
22
|
-
protected startHandler(): Promise<void>;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* A diviner that converts diviner query to index query
|
|
27
|
-
*/
|
|
28
|
-
declare class TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner<TParams extends TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams = TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams> extends AbstractDiviner<TParams> {
|
|
29
|
-
static readonly configSchemas: string[];
|
|
30
|
-
static readonly defaultConfigSchema: "network.xyo.diviner.indexing.temporal.stage.divinerQueryToIndexQueryDiviner.config";
|
|
31
|
-
static readonly labels: Labels;
|
|
32
|
-
private _indexableSchemas;
|
|
33
|
-
private _payloadTransformers;
|
|
34
|
-
/**
|
|
35
|
-
* The schema of the diviner query payloads
|
|
36
|
-
*/
|
|
37
|
-
protected get divinerQuerySchema(): Schema;
|
|
38
|
-
/**
|
|
39
|
-
* The schema of the index query payloads
|
|
40
|
-
*/
|
|
41
|
-
protected get indexQuerySchema(): Schema;
|
|
42
|
-
/**
|
|
43
|
-
* The schema of the index payloads
|
|
44
|
-
*/
|
|
45
|
-
protected get indexSchema(): Schema;
|
|
46
|
-
/**
|
|
47
|
-
* List of indexable schemas for this diviner
|
|
48
|
-
*/
|
|
49
|
-
protected get indexableSchemas(): Schema[];
|
|
50
|
-
/**
|
|
51
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
52
|
-
* from the payloads within a Bound Witness
|
|
53
|
-
*/
|
|
54
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
55
|
-
/**
|
|
56
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
57
|
-
* from the payloads within a Bound Witness
|
|
58
|
-
*/
|
|
59
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
60
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Diviner which transforms index candidates to indexes using JSON Path to map
|
|
65
|
-
* source properties in the supplied payloads to destination fields in the
|
|
66
|
-
* resultant index
|
|
67
|
-
*/
|
|
68
|
-
declare class TemporalIndexingDivinerIndexCandidateToIndexDiviner<TParams extends TemporalIndexingDivinerIndexCandidateToIndexDivinerParams = TemporalIndexingDivinerIndexCandidateToIndexDivinerParams> extends AbstractDiviner<TParams> {
|
|
69
|
-
static readonly configSchemas: Schema[];
|
|
70
|
-
static readonly defaultConfigSchema: Schema;
|
|
71
|
-
static readonly labels: Labels;
|
|
72
|
-
private _indexableSchemas;
|
|
73
|
-
private _payloadTransformers;
|
|
74
|
-
/**
|
|
75
|
-
* List of indexable schemas for this diviner
|
|
76
|
-
*/
|
|
77
|
-
protected get indexableSchemas(): string[];
|
|
78
|
-
/**
|
|
79
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
80
|
-
* from the payloads within a Bound Witness
|
|
81
|
-
*/
|
|
82
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
83
|
-
/**
|
|
84
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
85
|
-
* from the payloads within a Bound Witness
|
|
86
|
-
*/
|
|
87
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
88
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
89
|
-
/**
|
|
90
|
-
* Identifies if a payload is one that is indexed by this diviner
|
|
91
|
-
* @param x The candidate payload
|
|
92
|
-
* @returns True if the payload is one indexed by this diviner, false otherwise
|
|
93
|
-
*/
|
|
94
|
-
protected isIndexablePayload: (x: unknown) => boolean;
|
|
95
|
-
/**
|
|
96
|
-
* Identifies if a schema is one that is indexed by this diviner
|
|
97
|
-
* @param schema The candidate schema
|
|
98
|
-
* @returns True if this schema is one indexed by this diviner, false otherwise
|
|
99
|
-
*/
|
|
100
|
-
protected isIndexableSchema: (schema?: string | null) => boolean;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Transforms an ImageThumbnailIndex response into an ImageThumbnailResponse response
|
|
105
|
-
*/
|
|
106
|
-
declare class TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner extends AbstractDiviner {
|
|
107
|
-
static readonly configSchemas: Schema[];
|
|
108
|
-
static readonly defaultConfigSchema: Schema;
|
|
109
|
-
static readonly labels: Labels;
|
|
110
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
/**
|
|
114
|
-
* All Payload types involved in index candidates for indexing
|
|
115
|
-
*/
|
|
116
|
-
type IndexCandidate = BoundWitness | Payload | TimeStamp;
|
|
117
|
-
/**
|
|
118
|
-
* The response from the TemporalStateToIndexCandidateDiviner
|
|
119
|
-
*/
|
|
120
|
-
type TemporalStateToIndexCandidateDivinerResponse = [
|
|
121
|
-
/**
|
|
122
|
-
* The next state of the diviner
|
|
123
|
-
*/
|
|
124
|
-
nextState: ModuleState<IndexingDivinerState>,
|
|
125
|
-
/**
|
|
126
|
-
* The index candidates
|
|
127
|
-
*/
|
|
128
|
-
...IndexCandidate[]
|
|
129
|
-
];
|
|
130
|
-
/**
|
|
131
|
-
* Transforms candidates for image thumbnail indexing into their indexed representation
|
|
132
|
-
*/
|
|
133
|
-
declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams extends TemporalIndexingDivinerStateToIndexCandidateDivinerParams = TemporalIndexingDivinerStateToIndexCandidateDivinerParams> extends AbstractDiviner<TParams, Payload, ModuleState | IndexCandidate> {
|
|
134
|
-
static readonly configSchemas: Schema[];
|
|
135
|
-
static readonly defaultConfigSchema: Schema;
|
|
136
|
-
static readonly labels: Labels;
|
|
137
|
-
get payloadDivinerLimit(): number;
|
|
138
|
-
/**
|
|
139
|
-
* The required payload_schemas within BoundWitnesses to identify index candidates
|
|
140
|
-
*/
|
|
141
|
-
protected get payload_schemas(): string[];
|
|
142
|
-
protected divineHandler(payloads?: Payload[]): Promise<TemporalStateToIndexCandidateDivinerResponse>;
|
|
143
|
-
/**
|
|
144
|
-
* Retrieves the archivist for the payloadStore
|
|
145
|
-
* @returns The archivist for the payloadStore or undefined if not resolvable
|
|
146
|
-
*/
|
|
147
|
-
protected getArchivistForStore(): Promise<ArchivistWrapper | undefined>;
|
|
148
|
-
/**
|
|
149
|
-
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
150
|
-
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
151
|
-
*/
|
|
152
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_diviner_model.DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_module_model.ModuleInstance<_xyo_network_module_model.ModuleParams<_xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<object, void>>>, _xyo_network_module_model.ModuleEventData<object>>, Payload, Payload>>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
153
|
-
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export { TemporalIndexingDiviner, TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner, TemporalIndexingDivinerIndexCandidateToIndexDiviner, TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner, TemporalIndexingDivinerStateToIndexCandidateDiviner };
|
|
157
|
-
export type { IndexCandidate, TemporalStateToIndexCandidateDivinerResponse };
|
|
1
|
+
export * from './Diviner.ts';
|
|
2
|
+
export * from './DivinerQueryToIndexQueryDiviner/index.ts';
|
|
3
|
+
export * from './IndexCandidateToIndexDiviner/index.ts';
|
|
4
|
+
export * from './IndexQueryResponseToDivinerQueryResponseDiviner/index.ts';
|
|
5
|
+
export * from './StateToIndexCandidateDiviner/index.ts';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -49,7 +49,7 @@ export declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams
|
|
|
49
49
|
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
50
50
|
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
51
51
|
*/
|
|
52
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData
|
|
52
|
+
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData<import("@xyo-network/diviner-model").DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
53
53
|
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
54
54
|
}
|
|
55
55
|
//# sourceMappingURL=Diviner.d.ts.map
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,157 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import { SchemaToPayloadTransformersDictionary, SchemaToJsonPathTransformExpressionsDictionary } from '@xyo-network/diviner-jsonpath-model';
|
|
8
|
-
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
9
|
-
import { Labels, ModuleState } from '@xyo-network/module-model';
|
|
10
|
-
import { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
11
|
-
import { ArchivistWrapper } from '@xyo-network/archivist-wrapper';
|
|
12
|
-
import { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
13
|
-
import { BoundWitnessDiviner } from '@xyo-network/diviner-boundwitness-abstract';
|
|
14
|
-
import { BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload } from '@xyo-network/diviner-boundwitness-model';
|
|
15
|
-
import { IndexingDivinerState } from '@xyo-network/diviner-indexing-model';
|
|
16
|
-
import { DivinerWrapper } from '@xyo-network/diviner-wrapper';
|
|
17
|
-
import { TimeStamp } from '@xyo-network/witness-timestamp';
|
|
18
|
-
|
|
19
|
-
declare class TemporalIndexingDiviner<TParams extends TemporalIndexingDivinerParams = TemporalIndexingDivinerParams, TIn extends Payload = Payload, TOut extends Payload = Payload, TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut>> extends IndexingDiviner<TParams, TIn, TOut, TEventData> {
|
|
20
|
-
static readonly configSchemas: Schema[];
|
|
21
|
-
static readonly defaultConfigSchema: Schema;
|
|
22
|
-
protected startHandler(): Promise<void>;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* A diviner that converts diviner query to index query
|
|
27
|
-
*/
|
|
28
|
-
declare class TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner<TParams extends TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams = TemporalIndexingDivinerDivinerQueryToIndexQueryDivinerParams> extends AbstractDiviner<TParams> {
|
|
29
|
-
static readonly configSchemas: string[];
|
|
30
|
-
static readonly defaultConfigSchema: "network.xyo.diviner.indexing.temporal.stage.divinerQueryToIndexQueryDiviner.config";
|
|
31
|
-
static readonly labels: Labels;
|
|
32
|
-
private _indexableSchemas;
|
|
33
|
-
private _payloadTransformers;
|
|
34
|
-
/**
|
|
35
|
-
* The schema of the diviner query payloads
|
|
36
|
-
*/
|
|
37
|
-
protected get divinerQuerySchema(): Schema;
|
|
38
|
-
/**
|
|
39
|
-
* The schema of the index query payloads
|
|
40
|
-
*/
|
|
41
|
-
protected get indexQuerySchema(): Schema;
|
|
42
|
-
/**
|
|
43
|
-
* The schema of the index payloads
|
|
44
|
-
*/
|
|
45
|
-
protected get indexSchema(): Schema;
|
|
46
|
-
/**
|
|
47
|
-
* List of indexable schemas for this diviner
|
|
48
|
-
*/
|
|
49
|
-
protected get indexableSchemas(): Schema[];
|
|
50
|
-
/**
|
|
51
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
52
|
-
* from the payloads within a Bound Witness
|
|
53
|
-
*/
|
|
54
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
55
|
-
/**
|
|
56
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
57
|
-
* from the payloads within a Bound Witness
|
|
58
|
-
*/
|
|
59
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
60
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Diviner which transforms index candidates to indexes using JSON Path to map
|
|
65
|
-
* source properties in the supplied payloads to destination fields in the
|
|
66
|
-
* resultant index
|
|
67
|
-
*/
|
|
68
|
-
declare class TemporalIndexingDivinerIndexCandidateToIndexDiviner<TParams extends TemporalIndexingDivinerIndexCandidateToIndexDivinerParams = TemporalIndexingDivinerIndexCandidateToIndexDivinerParams> extends AbstractDiviner<TParams> {
|
|
69
|
-
static readonly configSchemas: Schema[];
|
|
70
|
-
static readonly defaultConfigSchema: Schema;
|
|
71
|
-
static readonly labels: Labels;
|
|
72
|
-
private _indexableSchemas;
|
|
73
|
-
private _payloadTransformers;
|
|
74
|
-
/**
|
|
75
|
-
* List of indexable schemas for this diviner
|
|
76
|
-
*/
|
|
77
|
-
protected get indexableSchemas(): string[];
|
|
78
|
-
/**
|
|
79
|
-
* Dictionary of schemas to payload transformers for creating indexes
|
|
80
|
-
* from the payloads within a Bound Witness
|
|
81
|
-
*/
|
|
82
|
-
protected get payloadTransformers(): SchemaToPayloadTransformersDictionary;
|
|
83
|
-
/**
|
|
84
|
-
* The dictionary of schemas to JSON Path transform expressions for creating indexes
|
|
85
|
-
* from the payloads within a Bound Witness
|
|
86
|
-
*/
|
|
87
|
-
protected get schemaTransforms(): SchemaToJsonPathTransformExpressionsDictionary;
|
|
88
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
89
|
-
/**
|
|
90
|
-
* Identifies if a payload is one that is indexed by this diviner
|
|
91
|
-
* @param x The candidate payload
|
|
92
|
-
* @returns True if the payload is one indexed by this diviner, false otherwise
|
|
93
|
-
*/
|
|
94
|
-
protected isIndexablePayload: (x: unknown) => boolean;
|
|
95
|
-
/**
|
|
96
|
-
* Identifies if a schema is one that is indexed by this diviner
|
|
97
|
-
* @param schema The candidate schema
|
|
98
|
-
* @returns True if this schema is one indexed by this diviner, false otherwise
|
|
99
|
-
*/
|
|
100
|
-
protected isIndexableSchema: (schema?: string | null) => boolean;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Transforms an ImageThumbnailIndex response into an ImageThumbnailResponse response
|
|
105
|
-
*/
|
|
106
|
-
declare class TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner extends AbstractDiviner {
|
|
107
|
-
static readonly configSchemas: Schema[];
|
|
108
|
-
static readonly defaultConfigSchema: Schema;
|
|
109
|
-
static readonly labels: Labels;
|
|
110
|
-
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
/**
|
|
114
|
-
* All Payload types involved in index candidates for indexing
|
|
115
|
-
*/
|
|
116
|
-
type IndexCandidate = BoundWitness | Payload | TimeStamp;
|
|
117
|
-
/**
|
|
118
|
-
* The response from the TemporalStateToIndexCandidateDiviner
|
|
119
|
-
*/
|
|
120
|
-
type TemporalStateToIndexCandidateDivinerResponse = [
|
|
121
|
-
/**
|
|
122
|
-
* The next state of the diviner
|
|
123
|
-
*/
|
|
124
|
-
nextState: ModuleState<IndexingDivinerState>,
|
|
125
|
-
/**
|
|
126
|
-
* The index candidates
|
|
127
|
-
*/
|
|
128
|
-
...IndexCandidate[]
|
|
129
|
-
];
|
|
130
|
-
/**
|
|
131
|
-
* Transforms candidates for image thumbnail indexing into their indexed representation
|
|
132
|
-
*/
|
|
133
|
-
declare class TemporalIndexingDivinerStateToIndexCandidateDiviner<TParams extends TemporalIndexingDivinerStateToIndexCandidateDivinerParams = TemporalIndexingDivinerStateToIndexCandidateDivinerParams> extends AbstractDiviner<TParams, Payload, ModuleState | IndexCandidate> {
|
|
134
|
-
static readonly configSchemas: Schema[];
|
|
135
|
-
static readonly defaultConfigSchema: Schema;
|
|
136
|
-
static readonly labels: Labels;
|
|
137
|
-
get payloadDivinerLimit(): number;
|
|
138
|
-
/**
|
|
139
|
-
* The required payload_schemas within BoundWitnesses to identify index candidates
|
|
140
|
-
*/
|
|
141
|
-
protected get payload_schemas(): string[];
|
|
142
|
-
protected divineHandler(payloads?: Payload[]): Promise<TemporalStateToIndexCandidateDivinerResponse>;
|
|
143
|
-
/**
|
|
144
|
-
* Retrieves the archivist for the payloadStore
|
|
145
|
-
* @returns The archivist for the payloadStore or undefined if not resolvable
|
|
146
|
-
*/
|
|
147
|
-
protected getArchivistForStore(): Promise<ArchivistWrapper | undefined>;
|
|
148
|
-
/**
|
|
149
|
-
* Retrieves the BoundWitness Diviner for the payloadStore
|
|
150
|
-
* @returns The BoundWitness Diviner for the payloadStore or undefined if not resolvable
|
|
151
|
-
*/
|
|
152
|
-
protected getBoundWitnessDivinerForStore(): Promise<DivinerWrapper<BoundWitnessDiviner<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_diviner_model.DivinerInstance<BoundWitnessDivinerParams, BoundWitnessDivinerQueryPayload, BoundWitness, _xyo_network_diviner_model.DivinerModuleEventData<_xyo_network_module_model.ModuleInstance<_xyo_network_module_model.ModuleParams<_xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<object, void>>>, _xyo_network_module_model.ModuleEventData<object>>, Payload, Payload>>, BoundWitnessDivinerQueryPayload, BoundWitness>>, BoundWitnessDivinerQueryPayload, WithStorageMeta<BoundWitness>> | undefined>;
|
|
153
|
-
protected getPayloadsInBoundWitness(bw: BoundWitness, archivist: ArchivistInstance): Promise<IndexCandidate[] | undefined>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export { TemporalIndexingDiviner, TemporalIndexingDivinerDivinerQueryToIndexQueryDiviner, TemporalIndexingDivinerIndexCandidateToIndexDiviner, TemporalIndexingDivinerIndexQueryResponseToDivinerQueryResponseDiviner, TemporalIndexingDivinerStateToIndexCandidateDiviner };
|
|
157
|
-
export type { IndexCandidate, TemporalStateToIndexCandidateDivinerResponse };
|
|
1
|
+
export * from './Diviner.ts';
|
|
2
|
+
export * from './DivinerQueryToIndexQueryDiviner/index.ts';
|
|
3
|
+
export * from './IndexCandidateToIndexDiviner/index.ts';
|
|
4
|
+
export * from './IndexQueryResponseToDivinerQueryResponseDiviner/index.ts';
|
|
5
|
+
export * from './StateToIndexCandidateDiviner/index.ts';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-temporal-indexing-memory",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,44 +29,44 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/array": "^4.13.
|
|
33
|
-
"@xylabs/assert": "^4.13.
|
|
34
|
-
"@xylabs/exists": "^4.13.
|
|
35
|
-
"@xyo-network/archivist-model": "^4.1.
|
|
36
|
-
"@xyo-network/archivist-wrapper": "^4.1.
|
|
37
|
-
"@xyo-network/boundwitness-model": "^4.1.
|
|
38
|
-
"@xyo-network/boundwitness-validator": "^4.1.
|
|
39
|
-
"@xyo-network/diviner-abstract": "^4.1.
|
|
40
|
-
"@xyo-network/diviner-boundwitness-abstract": "^4.1.
|
|
41
|
-
"@xyo-network/diviner-boundwitness-model": "^4.1.
|
|
42
|
-
"@xyo-network/diviner-indexing-memory": "^4.1.
|
|
43
|
-
"@xyo-network/diviner-indexing-model": "^4.1.
|
|
44
|
-
"@xyo-network/diviner-jsonpath-aggregate-memory": "^4.1.
|
|
45
|
-
"@xyo-network/diviner-jsonpath-model": "^4.1.
|
|
46
|
-
"@xyo-network/diviner-model": "^4.1.
|
|
47
|
-
"@xyo-network/diviner-payload-model": "^4.1.
|
|
48
|
-
"@xyo-network/diviner-temporal-indexing-model": "^4.1.
|
|
49
|
-
"@xyo-network/diviner-wrapper": "^4.1.
|
|
50
|
-
"@xyo-network/module-model": "^4.1.
|
|
51
|
-
"@xyo-network/payload-builder": "^4.1.
|
|
52
|
-
"@xyo-network/payload-model": "^4.1.
|
|
53
|
-
"@xyo-network/payload-utils": "^4.1.
|
|
54
|
-
"@xyo-network/witness-timestamp": "^4.1.
|
|
32
|
+
"@xylabs/array": "^4.13.16",
|
|
33
|
+
"@xylabs/assert": "^4.13.16",
|
|
34
|
+
"@xylabs/exists": "^4.13.16",
|
|
35
|
+
"@xyo-network/archivist-model": "^4.1.4",
|
|
36
|
+
"@xyo-network/archivist-wrapper": "^4.1.4",
|
|
37
|
+
"@xyo-network/boundwitness-model": "^4.1.4",
|
|
38
|
+
"@xyo-network/boundwitness-validator": "^4.1.4",
|
|
39
|
+
"@xyo-network/diviner-abstract": "^4.1.4",
|
|
40
|
+
"@xyo-network/diviner-boundwitness-abstract": "^4.1.4",
|
|
41
|
+
"@xyo-network/diviner-boundwitness-model": "^4.1.4",
|
|
42
|
+
"@xyo-network/diviner-indexing-memory": "^4.1.4",
|
|
43
|
+
"@xyo-network/diviner-indexing-model": "^4.1.4",
|
|
44
|
+
"@xyo-network/diviner-jsonpath-aggregate-memory": "^4.1.4",
|
|
45
|
+
"@xyo-network/diviner-jsonpath-model": "^4.1.4",
|
|
46
|
+
"@xyo-network/diviner-model": "^4.1.4",
|
|
47
|
+
"@xyo-network/diviner-payload-model": "^4.1.4",
|
|
48
|
+
"@xyo-network/diviner-temporal-indexing-model": "^4.1.4",
|
|
49
|
+
"@xyo-network/diviner-wrapper": "^4.1.4",
|
|
50
|
+
"@xyo-network/module-model": "^4.1.4",
|
|
51
|
+
"@xyo-network/payload-builder": "^4.1.4",
|
|
52
|
+
"@xyo-network/payload-model": "^4.1.4",
|
|
53
|
+
"@xyo-network/payload-utils": "^4.1.4",
|
|
54
|
+
"@xyo-network/witness-timestamp": "^4.1.4"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@xylabs/delay": "^4.13.
|
|
58
|
-
"@xylabs/hex": "^4.13.
|
|
59
|
-
"@xylabs/object": "^4.13.
|
|
60
|
-
"@xylabs/promise": "^4.13.
|
|
61
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
62
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
63
|
-
"@xylabs/vitest-extended": "^4.13.
|
|
64
|
-
"@xyo-network/archivist-memory": "^4.1.
|
|
65
|
-
"@xyo-network/boundwitness-builder": "^4.1.
|
|
66
|
-
"@xyo-network/manifest": "^4.1.
|
|
67
|
-
"@xyo-network/module-factory-locator": "^4.1.
|
|
68
|
-
"@xyo-network/node-memory": "^4.1.
|
|
69
|
-
"@xyo-network/wallet": "^4.1.
|
|
57
|
+
"@xylabs/delay": "^4.13.16",
|
|
58
|
+
"@xylabs/hex": "^4.13.16",
|
|
59
|
+
"@xylabs/object": "^4.13.16",
|
|
60
|
+
"@xylabs/promise": "^4.13.16",
|
|
61
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
62
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
63
|
+
"@xylabs/vitest-extended": "^4.13.16",
|
|
64
|
+
"@xyo-network/archivist-memory": "^4.1.4",
|
|
65
|
+
"@xyo-network/boundwitness-builder": "^4.1.4",
|
|
66
|
+
"@xyo-network/manifest": "^4.1.4",
|
|
67
|
+
"@xyo-network/module-factory-locator": "^4.1.4",
|
|
68
|
+
"@xyo-network/node-memory": "^4.1.4",
|
|
69
|
+
"@xyo-network/wallet": "^4.1.4",
|
|
70
70
|
"typescript": "^5.8.3",
|
|
71
71
|
"vitest": "^3.2.4"
|
|
72
72
|
},
|