@xyo-network/module-abstract 4.0.2 → 4.1.0
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 +202 -0
- package/package.json +34 -35
- /package/{dist/types → build/neutral}/AbstractModule.d.ts +0 -0
- /package/{dist/types → build/neutral}/AbstractModule.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/AbstractModuleInstance.d.ts +0 -0
- /package/{dist/types → build/neutral}/AbstractModuleInstance.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/Error.d.ts +0 -0
- /package/{dist/types → build/neutral}/Error.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/LoggerModuleStatusReporter.d.ts +0 -0
- /package/{dist/types → build/neutral}/LoggerModuleStatusReporter.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/ModuleConfigQueryValidator.d.ts +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/ModuleConfigQueryValidator.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/QueryValidator.d.ts +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/QueryValidator.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/SupportedQueryValidator.d.ts +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/SupportedQueryValidator.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/index.d.ts +0 -0
- /package/{dist/types → build/neutral}/QueryValidator/index.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/determineAccount.d.ts +0 -0
- /package/{dist/types → build/neutral}/determineAccount.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/index.d.ts +0 -0
- /package/{dist/types → build/neutral}/index.d.ts.map +0 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
2
|
+
import { AnyConfigSchema, ModuleConfig, Module, ModuleParams, ModuleEventData, Labels, ModuleDetailsError, ArchivingModuleConfig, ModuleResolverInstance, CreatableModuleInstance, CreatableModule, CreatableModuleFactory, AttachableModuleInstance, ModuleQueryResult, ModuleDescriptionPayload, AddressPreviousHashPayload, AddressPayload, ModuleQueryHandlerResult, ModuleNameResolver, ModuleInstance, ModuleFilterOptions, ModuleIdentifier, ObjectFilterOptions, ModuleStatusReporter } from '@xyo-network/module-model';
|
|
3
|
+
import { AbstractCreatable, CreatableStatus, CreatableInstance, CreatableName } from '@xylabs/creatable';
|
|
4
|
+
import { Address, Hash } from '@xylabs/hex';
|
|
5
|
+
import { Logger } from '@xylabs/logger';
|
|
6
|
+
import { Promisable, PromiseEx } from '@xylabs/promise';
|
|
7
|
+
import { AccountInstance } from '@xyo-network/account-model';
|
|
8
|
+
import { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
9
|
+
import { QueryBoundWitness, BoundWitness } from '@xyo-network/boundwitness-model';
|
|
10
|
+
import { ModuleManifestPayload } from '@xyo-network/manifest-model';
|
|
11
|
+
import { Payload, Schema, Query, ModuleError } from '@xyo-network/payload-model';
|
|
12
|
+
import { WalletInstance } from '@xyo-network/wallet-model';
|
|
13
|
+
import { Mutex } from 'async-mutex';
|
|
14
|
+
import { LRUCache } from 'lru-cache';
|
|
15
|
+
import * as _xyo_network_module_resolver from '@xyo-network/module-resolver';
|
|
16
|
+
import { CompositeModuleResolver } from '@xyo-network/module-resolver';
|
|
17
|
+
import { NodeInstance } from '@xyo-network/node-model';
|
|
18
|
+
import { JsonValue } from '@xylabs/object';
|
|
19
|
+
import { PayloadBuilder } from '@xyo-network/payload-builder';
|
|
20
|
+
|
|
21
|
+
type Queryable<T extends QueryBoundWitness = QueryBoundWitness> = (query: T, payloads?: Payload[]) => Promisable<boolean>;
|
|
22
|
+
interface QueryValidator<T extends QueryBoundWitness = QueryBoundWitness> {
|
|
23
|
+
queryable: Queryable<T>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
type SortedPipedAddressesString = string;
|
|
27
|
+
declare class ModuleConfigQueryValidator<TConfig extends AnyConfigSchema<ModuleConfig>> implements QueryValidator {
|
|
28
|
+
protected allowed: Record<Schema, SortedPipedAddressesString[]>;
|
|
29
|
+
protected disallowed: Record<Schema, SortedPipedAddressesString[]>;
|
|
30
|
+
protected readonly hasAllowedRules: boolean;
|
|
31
|
+
protected readonly hasDisallowedRules: boolean;
|
|
32
|
+
protected readonly hasRules: boolean;
|
|
33
|
+
constructor(config?: TConfig);
|
|
34
|
+
queryable: Queryable;
|
|
35
|
+
protected queryAllowed: (schema: Schema, addresses: Address[]) => boolean;
|
|
36
|
+
protected queryDisallowed: (schema: Schema, addresses: string[]) => boolean;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare const isQuerySupportedByModule: <T extends QueryBoundWitness = QueryBoundWitness>(mod: Module, query: T, payloads?: Payload[]) => Promise<boolean>;
|
|
40
|
+
declare class SupportedQueryValidator implements QueryValidator {
|
|
41
|
+
protected readonly mod: Module;
|
|
42
|
+
constructor(mod: Module);
|
|
43
|
+
queryable: Queryable;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
declare abstract class AbstractModule<TParams extends ModuleParams = ModuleParams, TEventData extends ModuleEventData = ModuleEventData> extends AbstractCreatable<TParams, TEventData> implements Module<TParams, TEventData> {
|
|
47
|
+
static readonly allowRandomAccount: boolean;
|
|
48
|
+
static readonly configSchemas: Schema[];
|
|
49
|
+
static readonly defaultConfigSchema: Schema;
|
|
50
|
+
static defaultLogger: Logger;
|
|
51
|
+
static enableLazyLoad: boolean;
|
|
52
|
+
static readonly labels: Labels;
|
|
53
|
+
static readonly uniqueName: string;
|
|
54
|
+
protected static privateConstructorKey: string;
|
|
55
|
+
protected _account: AccountInstance | undefined;
|
|
56
|
+
protected _cachedManifests: LRUCache<number, ModuleManifestPayload, unknown>;
|
|
57
|
+
protected _globalReentrancyMutex: Mutex | undefined;
|
|
58
|
+
protected _lastError?: ModuleDetailsError;
|
|
59
|
+
protected _moduleConfigQueryValidator: Queryable | undefined;
|
|
60
|
+
protected _startPromise: Promisable<boolean> | undefined;
|
|
61
|
+
protected _supportedQueryValidator: Queryable | undefined;
|
|
62
|
+
private _busyCount;
|
|
63
|
+
private _logger;
|
|
64
|
+
private _status;
|
|
65
|
+
get account(): AccountInstance;
|
|
66
|
+
get additionalSigners(): AccountInstance[];
|
|
67
|
+
get address(): Lowercase<string>;
|
|
68
|
+
get allowAnonymous(): boolean;
|
|
69
|
+
get allowNameResolution(): boolean;
|
|
70
|
+
get archiving(): ArchivingModuleConfig['archiving'] | undefined;
|
|
71
|
+
get archivist(): string | undefined;
|
|
72
|
+
get config(): TParams['config'] & {
|
|
73
|
+
schema: Schema;
|
|
74
|
+
};
|
|
75
|
+
get dead(): boolean;
|
|
76
|
+
get ephemeralQueryAccountEnabled(): boolean;
|
|
77
|
+
get globalReentrancyMutex(): Mutex | undefined;
|
|
78
|
+
get id(): string;
|
|
79
|
+
get logger(): Logger | undefined;
|
|
80
|
+
get modName(): string | undefined;
|
|
81
|
+
get priority(): 2;
|
|
82
|
+
get queries(): Schema[];
|
|
83
|
+
get reentrancy(): {
|
|
84
|
+
action: "skip" | "wait";
|
|
85
|
+
scope: "global";
|
|
86
|
+
} | undefined;
|
|
87
|
+
get status(): CreatableStatus;
|
|
88
|
+
get statusReporter(): _xyo_network_module_model.ModuleStatusReporter | undefined;
|
|
89
|
+
get timestamp(): boolean;
|
|
90
|
+
protected get moduleConfigQueryValidator(): Queryable;
|
|
91
|
+
protected set status(value: CreatableStatus);
|
|
92
|
+
protected get supportedQueryValidator(): Queryable;
|
|
93
|
+
abstract get downResolver(): ModuleResolverInstance;
|
|
94
|
+
abstract get upResolver(): ModuleResolverInstance;
|
|
95
|
+
static _getRootFunction(funcName: string): any;
|
|
96
|
+
static _noOverride(functionName: string): void;
|
|
97
|
+
static createHandler<T extends CreatableInstance>(inInstance: T): Promise<T & AbstractModule<any, any>>;
|
|
98
|
+
static determineAccount(params: {
|
|
99
|
+
account?: AccountInstance | 'random';
|
|
100
|
+
accountPath?: string;
|
|
101
|
+
wallet?: WalletInstance;
|
|
102
|
+
}): Promise<AccountInstance>;
|
|
103
|
+
static factory<TModule extends CreatableModuleInstance>(this: CreatableModule<TModule>, params?: Partial<TModule['params']>): CreatableModuleFactory<TModule>;
|
|
104
|
+
static isAllowedSchema(schema: Schema): boolean;
|
|
105
|
+
static paramsHandler<T extends AttachableModuleInstance<ModuleParams, ModuleEventData>>(inParams?: Partial<T['params']>): Promise<T["params"]>;
|
|
106
|
+
_getRootFunction(funcName: string): any;
|
|
107
|
+
busy<R>(closure: () => Promise<R>): Promise<R>;
|
|
108
|
+
createHandler(): Promise<void>;
|
|
109
|
+
emit<TEventName extends keyof TEventData = keyof TEventData, TEventArgs extends TEventData[TEventName] = TEventData[TEventName]>(eventName: TEventName, eventArgs: TEventArgs): Promise<void>;
|
|
110
|
+
isSupportedQuery(query: Schema, assert?: boolean | string): boolean;
|
|
111
|
+
previousHash(): Promisable<string | undefined>;
|
|
112
|
+
query<T extends QueryBoundWitness = QueryBoundWitness, TConfig extends ModuleConfig = ModuleConfig>(query: T, payloads?: Payload[], queryConfig?: TConfig): Promise<ModuleQueryResult>;
|
|
113
|
+
queryable<T extends QueryBoundWitness = QueryBoundWitness, TConfig extends ModuleConfig = ModuleConfig>(query: T, payloads?: Payload[], queryConfig?: TConfig): Promise<boolean>;
|
|
114
|
+
started(notStartedAction?: 'error' | 'throw' | 'warn' | 'log' | 'none', tryStart?: boolean): Promise<boolean>;
|
|
115
|
+
protected _checkDead(): void;
|
|
116
|
+
protected archivistInstance(): Promise<ArchivistInstance | undefined>;
|
|
117
|
+
protected archivistInstance(required: true): Promise<ArchivistInstance>;
|
|
118
|
+
protected bindHashes(hashes: Hash[], schema: Schema[], account?: AccountInstance): PromiseEx<unknown, AccountInstance>;
|
|
119
|
+
protected bindHashesInternal(hashes: Hash[], schema: Schema[], account?: AccountInstance): Promise<BoundWitness>;
|
|
120
|
+
protected bindQuery<T extends Query>(query: T, payloads?: Payload[], account?: AccountInstance, additionalSigners?: AccountInstance[]): PromiseEx<[QueryBoundWitness, Payload[], Payload[]], AccountInstance>;
|
|
121
|
+
protected bindQueryInternal<T extends Query>(query: T, payloads?: Payload[], account?: AccountInstance, additionalSigners?: AccountInstance[]): Promise<[QueryBoundWitness, Payload[], Payload[]]>;
|
|
122
|
+
protected bindQueryResult<T extends Query>(query: T, payloads: Payload[], additionalWitnesses?: AccountInstance[], errors?: ModuleError[]): Promise<ModuleQueryResult>;
|
|
123
|
+
protected generateConfigAndAddress(_maxDepth?: number): Promisable<Payload[]>;
|
|
124
|
+
protected generateDescribe(): Promise<ModuleDescriptionPayload>;
|
|
125
|
+
/** @deprecated use archivistInstance() instead */
|
|
126
|
+
protected getArchivist(): Promise<ArchivistInstance | undefined>;
|
|
127
|
+
protected isAllowedArchivingQuery(schema: Schema): boolean;
|
|
128
|
+
protected manifestHandler(_maxDepth?: number, _ignoreAddresses?: Address[]): Promisable<ModuleManifestPayload>;
|
|
129
|
+
protected moduleAddressHandler(): Promisable<(AddressPreviousHashPayload | AddressPayload)[]>;
|
|
130
|
+
protected queryHandler<T extends QueryBoundWitness = QueryBoundWitness, TConfig extends ModuleConfig = ModuleConfig>(query: T, payloads?: Payload[], queryConfig?: TConfig): Promise<ModuleQueryHandlerResult>;
|
|
131
|
+
protected startHandler(): Promise<void>;
|
|
132
|
+
protected stateHandler(): Promise<Payload[]>;
|
|
133
|
+
protected stopHandler(): Promise<void>;
|
|
134
|
+
protected subscribeHandler(): void;
|
|
135
|
+
protected validateConfig(config?: unknown, parents?: string[]): boolean;
|
|
136
|
+
protected abstract certifyParents(): Promise<Payload[]>;
|
|
137
|
+
protected abstract storeToArchivists(payloads: Payload[]): Promise<Payload[]>;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
declare abstract class AbstractModuleInstance<TParams extends ModuleParams = ModuleParams, TEventData extends ModuleEventData = ModuleEventData> extends AbstractModule<TParams, TEventData> implements AttachableModuleInstance<TParams, TEventData>, ModuleNameResolver {
|
|
141
|
+
static readonly uniqueName: string;
|
|
142
|
+
static readonly useNewResolver = false;
|
|
143
|
+
private _downResolver?;
|
|
144
|
+
private _parents;
|
|
145
|
+
private _privateResolver?;
|
|
146
|
+
private _upResolver?;
|
|
147
|
+
get downResolver(): CompositeModuleResolver<_xyo_network_module_resolver.CompositeModuleResolverParams>;
|
|
148
|
+
get modName(): string | undefined;
|
|
149
|
+
get moduleIdentifierTransformers(): _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
150
|
+
get privateResolver(): CompositeModuleResolver<_xyo_network_module_resolver.CompositeModuleResolverParams>;
|
|
151
|
+
get root(): this;
|
|
152
|
+
get upResolver(): CompositeModuleResolver<_xyo_network_module_resolver.CompositeModuleResolverParams>;
|
|
153
|
+
addParent(mod: ModuleInstance): void;
|
|
154
|
+
certifyParents(): Promise<Payload[]>;
|
|
155
|
+
createHandler(): Promise<void>;
|
|
156
|
+
manifest(maxDepth?: number): Promise<ModuleManifestPayload>;
|
|
157
|
+
manifestQuery(account: AccountInstance, maxDepth?: number): Promise<ModuleQueryResult<ModuleManifestPayload>>;
|
|
158
|
+
moduleAddress(): Promise<(AddressPayload | AddressPreviousHashPayload)[]>;
|
|
159
|
+
parents(): Promisable<NodeInstance[]>;
|
|
160
|
+
privateChildren(): Promisable<ModuleInstance[]>;
|
|
161
|
+
publicChildren(): Promisable<ModuleInstance[]>;
|
|
162
|
+
removeParent(address: Address): void;
|
|
163
|
+
resolve(): Promise<ModuleInstance[]>;
|
|
164
|
+
resolve<T extends ModuleInstance = ModuleInstance>(all: '*', options?: ModuleFilterOptions<T>): Promise<T[]>;
|
|
165
|
+
resolve<T extends ModuleInstance = ModuleInstance>(id: ModuleIdentifier, options?: ModuleFilterOptions<T>): Promise<T | undefined>;
|
|
166
|
+
resolveIdentifier(id: ModuleIdentifier, options?: ObjectFilterOptions): Promise<Address | undefined>;
|
|
167
|
+
resolvePrivate<T extends ModuleInstance = ModuleInstance>(all: '*', options?: ModuleFilterOptions<T>): Promise<T[]>;
|
|
168
|
+
resolvePrivate<T extends ModuleInstance = ModuleInstance>(id: ModuleIdentifier, options?: ModuleFilterOptions<T>): Promise<T | undefined>;
|
|
169
|
+
siblings(): Promise<ModuleInstance[]>;
|
|
170
|
+
state(): Promise<Payload[]>;
|
|
171
|
+
stateQuery(account: AccountInstance): Promise<ModuleQueryResult>;
|
|
172
|
+
subscribe(_queryAccount?: AccountInstance): void;
|
|
173
|
+
protected manifestHandler(maxDepth?: number, _ignoreAddresses?: Address[]): Promise<ModuleManifestPayload>;
|
|
174
|
+
protected resolveArchivingArchivists(): Promise<ArchivistInstance[]>;
|
|
175
|
+
protected sendQuery<T extends Query, P extends Payload = Payload, R extends Payload = Payload>(queryPayload: T, payloads?: P[], account?: AccountInstance): Promise<R[]>;
|
|
176
|
+
protected sendQueryRaw<T extends Query, P extends Payload = Payload, R extends Payload = Payload>(queryPayload: T, payloads?: P[], account?: AccountInstance): Promise<ModuleQueryResult<R>>;
|
|
177
|
+
protected startHandler(): Promise<void>;
|
|
178
|
+
protected storeToArchivists(payloads: Payload[]): Promise<Payload[]>;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
declare class ModuleErrorBuilder extends PayloadBuilder<ModuleError> {
|
|
182
|
+
_details?: JsonValue;
|
|
183
|
+
_message?: string;
|
|
184
|
+
_name?: string;
|
|
185
|
+
_query?: Hash;
|
|
186
|
+
constructor();
|
|
187
|
+
build(): ModuleError;
|
|
188
|
+
details(details?: JsonValue): this;
|
|
189
|
+
message(message: string): this;
|
|
190
|
+
name(name: string): this;
|
|
191
|
+
query(query: Hash): this;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
declare class LoggerModuleStatusReporter implements ModuleStatusReporter {
|
|
195
|
+
protected logger: Logger;
|
|
196
|
+
protected statusMap: Record<CreatableName, CreatableStatus>;
|
|
197
|
+
constructor(logger: Logger);
|
|
198
|
+
report(name: string, status: CreatableStatus, progress?: number | Error): void;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export { AbstractModule, AbstractModuleInstance, LoggerModuleStatusReporter, ModuleConfigQueryValidator, ModuleErrorBuilder, SupportedQueryValidator, isQuerySupportedByModule };
|
|
202
|
+
export type { QueryValidator, Queryable, SortedPipedAddressesString };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module-abstract",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,50 +21,49 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.
|
|
33
|
-
"@xylabs/base": "^4.
|
|
34
|
-
"@xylabs/creatable": "^4.
|
|
35
|
-
"@xylabs/error": "^4.
|
|
36
|
-
"@xylabs/exists": "^4.
|
|
37
|
-
"@xylabs/forget": "^4.
|
|
38
|
-
"@xylabs/hex": "^4.
|
|
39
|
-
"@xylabs/logger": "^4.
|
|
40
|
-
"@xylabs/object": "^4.
|
|
41
|
-
"@xylabs/promise": "^4.
|
|
42
|
-
"@xylabs/telemetry": "^4.
|
|
43
|
-
"@xylabs/typeof": "^4.
|
|
44
|
-
"@xyo-network/account": "^4.0
|
|
45
|
-
"@xyo-network/account-model": "^4.0
|
|
46
|
-
"@xyo-network/archivist-model": "^4.0
|
|
47
|
-
"@xyo-network/boundwitness-builder": "^4.0
|
|
48
|
-
"@xyo-network/boundwitness-model": "^4.0
|
|
49
|
-
"@xyo-network/boundwitness-wrapper": "^4.0
|
|
50
|
-
"@xyo-network/config-payload-plugin": "^4.0
|
|
51
|
-
"@xyo-network/manifest-model": "^4.0
|
|
52
|
-
"@xyo-network/module-
|
|
53
|
-
"@xyo-network/module-
|
|
54
|
-
"@xyo-network/
|
|
55
|
-
"@xyo-network/
|
|
56
|
-
"@xyo-network/payload-
|
|
57
|
-
"@xyo-network/payload-
|
|
58
|
-
"@xyo-network/
|
|
59
|
-
"@xyo-network/wallet-model": "^4.0.2",
|
|
32
|
+
"@xylabs/assert": "^4.13.15",
|
|
33
|
+
"@xylabs/base": "^4.13.15",
|
|
34
|
+
"@xylabs/creatable": "^4.13.15",
|
|
35
|
+
"@xylabs/error": "^4.13.15",
|
|
36
|
+
"@xylabs/exists": "^4.13.15",
|
|
37
|
+
"@xylabs/forget": "^4.13.15",
|
|
38
|
+
"@xylabs/hex": "^4.13.15",
|
|
39
|
+
"@xylabs/logger": "^4.13.15",
|
|
40
|
+
"@xylabs/object": "^4.13.15",
|
|
41
|
+
"@xylabs/promise": "^4.13.15",
|
|
42
|
+
"@xylabs/telemetry": "^4.13.15",
|
|
43
|
+
"@xylabs/typeof": "^4.13.15",
|
|
44
|
+
"@xyo-network/account": "^4.1.0",
|
|
45
|
+
"@xyo-network/account-model": "^4.1.0",
|
|
46
|
+
"@xyo-network/archivist-model": "^4.1.0",
|
|
47
|
+
"@xyo-network/boundwitness-builder": "^4.1.0",
|
|
48
|
+
"@xyo-network/boundwitness-model": "^4.1.0",
|
|
49
|
+
"@xyo-network/boundwitness-wrapper": "^4.1.0",
|
|
50
|
+
"@xyo-network/config-payload-plugin": "^4.1.0",
|
|
51
|
+
"@xyo-network/manifest-model": "^4.1.0",
|
|
52
|
+
"@xyo-network/module-model": "^4.1.0",
|
|
53
|
+
"@xyo-network/module-resolver": "^4.1.0",
|
|
54
|
+
"@xyo-network/node-model": "^4.1.0",
|
|
55
|
+
"@xyo-network/payload-builder": "^4.1.0",
|
|
56
|
+
"@xyo-network/payload-model": "^4.1.0",
|
|
57
|
+
"@xyo-network/query-payload-plugin": "^4.1.0",
|
|
58
|
+
"@xyo-network/wallet-model": "^4.1.0",
|
|
60
59
|
"async-mutex": "^0.5.0",
|
|
61
60
|
"lru-cache": "^11.1.0"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|
|
64
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
65
|
-
"@xylabs/tsconfig": "^
|
|
66
|
-
"@xylabs/typeof": "^4.
|
|
67
|
-
"@xylabs/vitest-extended": "^4.
|
|
63
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.20",
|
|
64
|
+
"@xylabs/tsconfig": "^7.0.0-rc.20",
|
|
65
|
+
"@xylabs/typeof": "^4.13.15",
|
|
66
|
+
"@xylabs/vitest-extended": "^4.13.15",
|
|
68
67
|
"typescript": "^5.8.3",
|
|
69
68
|
"vitest": "^3.2.4"
|
|
70
69
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|