🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@ariestools/sdk

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ariestools/sdk - npm Package Compare versions

Comparing version
7.0.4
to
7.0.5
+0
-1
dist/_pkg/api/neutral/ApiClient.d.ts

@@ -10,2 +10,1 @@ import { ApiStage } from './ApiStage.ts';

export { ApiClient };
//# sourceMappingURL=ApiClient.d.ts.map

@@ -9,2 +9,1 @@ /** Configuration for connecting to an API, including domain, authentication, and user identification. */

export type { ApiConfig };
//# sourceMappingURL=ApiConfig.d.ts.map

@@ -19,2 +19,1 @@ import type { ApiConfig } from './ApiConfig.ts';

export { ApiEndpoint };
//# sourceMappingURL=ApiEndpoint.d.ts.map

@@ -11,2 +11,1 @@ import type { EnumValue } from '../../enum/neutral/index.ts';

export type ApiStage = EnumValue<typeof ApiStage>;
//# sourceMappingURL=ApiStage.d.ts.map

@@ -8,2 +8,1 @@ /**

export { getApiStage };
//# sourceMappingURL=getApiStage.d.ts.map

@@ -6,2 +6,1 @@ export * from './ApiClient.ts';

export * from './getApiStage.ts';
//# sourceMappingURL=index.d.ts.map

@@ -78,2 +78,1 @@ // src/ApiStage.ts

};
//# sourceMappingURL=index.mjs.map
export type * from './ApiConfig.ts';
export type { ApiStage } from './ApiStage.ts';
//# sourceMappingURL=model.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const containsAll: <T>(source: T[], target: T[]) => boolean;
//# sourceMappingURL=containsAll.d.ts.map

@@ -6,2 +6,1 @@ /**

export declare const distinct: <T>(value: T, index: number, array: T[]) => boolean;
//# sourceMappingURL=distinct.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const filterAs: <In, Out>(x: In[], predicate: (a: In) => Out) => NonNullable<Out>[];
//# sourceMappingURL=filterAs.d.ts.map

@@ -9,2 +9,1 @@ /**

export declare const filterAsync: <T>(array: T[], predicate: (value: T, index: number, array: T[]) => Promise<boolean>, concurrency?: number) => Promise<T[]>;
//# sourceMappingURL=filterAsync.d.ts.map

@@ -15,2 +15,1 @@ /**

export declare const findLastAs: <In, Out>(x: In[], predicate: (a: In) => Out) => NonNullable<Out> | undefined;
//# sourceMappingURL=findAs.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const flatten: <T>(a?: T | ConcatArray<T>, b?: T | ConcatArray<T>) => T[];
//# sourceMappingURL=flatten.d.ts.map

@@ -8,2 +8,1 @@ export * from './containsAll.ts';

export * from './uniq.ts';
//# sourceMappingURL=index.d.ts.map

@@ -80,2 +80,1 @@ // src/containsAll.ts

};
//# sourceMappingURL=index.mjs.map

@@ -14,2 +14,1 @@ /**

export declare const uniqBy: <T, I>(arr: T[], iteratee: (item: T) => I) => T[];
//# sourceMappingURL=uniq.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const equalArrayBuffers: (a1: ArrayBufferLike, a2: ArrayBufferLike) => boolean;
//# sourceMappingURL=equalArrayBuffers.d.ts.map

@@ -5,2 +5,1 @@ export * from './equalArrayBuffers.ts';

export * from './toUint8Array.ts';
//# sourceMappingURL=index.d.ts.map

@@ -74,2 +74,1 @@ // src/equalArrayBuffers.ts

};
//# sourceMappingURL=index.mjs.map

@@ -7,2 +7,1 @@ /** Type guard that checks if a value is an ArrayBuffer instance. */

export declare function isArrayBufferLike<T extends ArrayBufferLike>(value: T): value is Extract<T, ArrayBufferLike>;
//# sourceMappingURL=isArrayBuffer.d.ts.map

@@ -11,2 +11,1 @@ /**

export declare function toArrayBuffer(value: ArrayBufferLike | bigint | string | undefined, padLength?: number, base?: number): ArrayBufferLike | undefined;
//# sourceMappingURL=toArrayBuffer.d.ts.map

@@ -11,2 +11,1 @@ /**

export declare function toUint8Array(value: ArrayBufferLike | bigint | string | undefined, padLength?: number, base?: number): Uint8Array | undefined;
//# sourceMappingURL=toUint8Array.d.ts.map

@@ -41,2 +41,1 @@ import type { AssertExErrorFunc, AssertExMessageFunc } from './types.ts';

export { assertDefinedEx };
//# sourceMappingURL=assertDefinedEx.d.ts.map

@@ -41,2 +41,1 @@ import type { AssertExErrorFunc, AssertExMessageFunc } from './types.ts';

export { assertEx };
//# sourceMappingURL=assertEx.d.ts.map
export * from './assertDefinedEx.ts';
export * from './assertEx.ts';
export type * from './types.ts';
//# sourceMappingURL=index.d.ts.map

@@ -30,2 +30,1 @@ // src/assertDefinedEx.ts

};
//# sourceMappingURL=index.mjs.map
export type * from './types.ts';
//# sourceMappingURL=model.d.ts.map

@@ -36,2 +36,1 @@ /**

export type AssertExErrorFunc<T, R extends Error> = (value?: T | null) => R;
//# sourceMappingURL=types.d.ts.map

@@ -53,2 +53,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

}
//# sourceMappingURL=Base.d.ts.map

@@ -21,2 +21,1 @@ declare global {

export declare const globallyUnique: (name: string | symbol, value: unknown, domain?: string) => string;
//# sourceMappingURL=globallyUnique.d.ts.map
export * from './Base.ts';
export * from './globallyUnique.ts';
//# sourceMappingURL=index.d.ts.map

@@ -152,2 +152,1 @@ // src/Base.ts

};
//# sourceMappingURL=index.mjs.map
export type { BaseClassName, BaseParams, BaseParamsFields, } from './Base.ts';
//# sourceMappingURL=model.d.ts.map

@@ -123,2 +123,1 @@ import type { EventData } from '../../events/neutral/index.ts';

}
//# sourceMappingURL=AbstractCreatable.d.ts.map

@@ -49,2 +49,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

export declare function creatableFactory(): <U extends CreatableFactory>(constructor: U) => void;
//# sourceMappingURL=Creatable.d.ts.map

@@ -28,2 +28,1 @@ import { type Creatable, type CreatableFactory } from './Creatable.ts';

}
//# sourceMappingURL=Factory.d.ts.map

@@ -5,2 +5,1 @@ export * from './AbstractCreatable.ts';

export * from './model/index.ts';
//# sourceMappingURL=index.d.ts.map

@@ -396,2 +396,1 @@ var __defProp = Object.defineProperty;

};
//# sourceMappingURL=index.mjs.map

@@ -7,2 +7,1 @@ /**

export declare function getFunctionName(depth?: number): string;
//# sourceMappingURL=getFunctionName.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare function getRootFunction(obj: unknown, funcName: string): unknown;
//# sourceMappingURL=getRootFunction.d.ts.map
export * from './getFunctionName.ts';
export * from './getRootFunction.ts';
//# sourceMappingURL=index.d.ts.map
export type * from './Creatable.ts';
export type * from './model/index.ts';
//# sourceMappingURL=model.d.ts.map

@@ -16,2 +16,1 @@ import type { EventData, EventEmitter } from '../../../events/neutral/index.ts';

}
//# sourceMappingURL=CreatableInstance.d.ts.map

@@ -16,2 +16,1 @@ import type { BaseClassName } from '../../../base/neutral/index.ts';

}
//# sourceMappingURL=CreatableParams.d.ts.map

@@ -15,2 +15,1 @@ import type { BaseClassName } from '../../../base/neutral/index.ts';

}
//# sourceMappingURL=CreatableStatusReporter.d.ts.map

@@ -5,2 +5,1 @@ export * from './CreatableInstance.ts';

export * from './Labels.ts';
//# sourceMappingURL=index.d.ts.map

@@ -24,2 +24,1 @@ /**

export declare const hasAllLabels: (source?: Labels, required?: Labels) => boolean;
//# sourceMappingURL=Labels.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const fromFixedPoint: (value: bigint, places?: number) => bigint;
//# sourceMappingURL=fromFixedPoint.d.ts.map
export * from './fromFixedPoint.ts';
export * from './toDecimalPrecision.ts';
export * from './toFixedPoint.ts';
//# sourceMappingURL=index.d.ts.map

@@ -39,2 +39,1 @@ // src/fromFixedPoint.ts

};
//# sourceMappingURL=index.mjs.map

@@ -8,2 +8,1 @@ /**

export declare const toDecimalPrecision: (value: number, digits: number) => string;
//# sourceMappingURL=toDecimalPrecision.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const toFixedPoint: (value: bigint | string, places?: number) => bigint;
//# sourceMappingURL=toFixedPoint.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const delay: (ms: number) => Promise<void>;
//# sourceMappingURL=delay.d.ts.map
export { delay } from './delay.ts';
//# sourceMappingURL=index.d.ts.map

@@ -9,2 +9,1 @@ // src/delay.ts

};
//# sourceMappingURL=index.mjs.map

@@ -8,2 +8,1 @@ /**

export declare const ellipsize: (value: string, length?: number) => string;
//# sourceMappingURL=index.d.ts.map

@@ -10,2 +10,1 @@ // src/index.ts

};
//# sourceMappingURL=index.mjs.map

@@ -88,2 +88,1 @@ /**

export type EnumValue<T extends Record<string | number | symbol, unknown>, K = Enum<T>> = K[keyof K];
//# sourceMappingURL=Enum.d.ts.map
export * from './Enum.ts';
//# sourceMappingURL=index.d.ts.map

@@ -8,2 +8,1 @@ // src/Enum.ts

};
//# sourceMappingURL=index.mjs.map
export type { Enum, EnumKey, EnumValue, } from './Enum.ts';
//# sourceMappingURL=model.d.ts.map

@@ -12,2 +12,1 @@ type AssertCallback = (value: unknown, message: string) => string | boolean;

export {};
//# sourceMappingURL=assert.d.ts.map

@@ -15,2 +15,1 @@ /**

export declare const handleErrorAsync: <T>(error: any, handler: (error: Error) => Promise<T>) => Promise<T>;
//# sourceMappingURL=handleError.d.ts.map
export * from './assert.ts';
export * from './handleError.ts';
//# sourceMappingURL=index.d.ts.map

@@ -32,2 +32,1 @@ // src/assert.ts

};
//# sourceMappingURL=index.mjs.map
export type { AssertConfig } from './assert.ts';
//# sourceMappingURL=model.d.ts.map

@@ -74,2 +74,1 @@ import type { BaseParams } from '../../base/neutral/index.ts';

}
//# sourceMappingURL=BaseEmitter.d.ts.map

@@ -132,2 +132,1 @@ import type { BaseParams } from '../../../base/neutral/index.ts';

}
//# sourceMappingURL=Events.d.ts.map
export * from './Events.ts';
//# sourceMappingURL=index.d.ts.map
export * from './BaseEmitter.ts';
export * from './Events/index.ts';
export * from './model/index.ts';
//# sourceMappingURL=index.d.ts.map

@@ -415,2 +415,1 @@ // src/BaseEmitter.ts

};
//# sourceMappingURL=index.mjs.map
export type { BaseEmitterParams, BaseEmitterParamsFields, } from './BaseEmitter.ts';
export type * from './model/index.ts';
//# sourceMappingURL=model.d.ts.map

@@ -21,2 +21,1 @@ import type { Promisable } from '../../../promise/neutral/index.ts';

export type EventListener<TEventArgs extends EventArgs = EventArgs> = (eventData: TEventArgs) => Promisable<void>;
//# sourceMappingURL=Event.d.ts.map

@@ -25,2 +25,1 @@ import type { EventAnyListener, EventData, EventListener, EventUnsubscribeFunction } from './Event.ts';

}
//# sourceMappingURL=EventEmitter.d.ts.map
export * from './Event.ts';
export * from './EventEmitter.ts';
//# sourceMappingURL=index.d.ts.map

@@ -10,2 +10,1 @@ /**

export declare const exists: <T>(x?: T | null) => x is NonNullable<T>;
//# sourceMappingURL=index.d.ts.map

@@ -8,2 +8,1 @@ // src/index.ts

};
//# sourceMappingURL=index.mjs.map

@@ -46,2 +46,1 @@ import { FetchError } from './FetchError.ts';

}
//# sourceMappingURL=FetchClient.d.ts.map

@@ -12,2 +12,1 @@ export interface FetchCompressOptions extends RequestInit {

export declare function fetchCompress(url: string | URL, options?: FetchCompressOptions): Promise<Response>;
//# sourceMappingURL=fetchCompress.d.ts.map

@@ -80,2 +80,1 @@ import type { FetchJsonResponse } from './types.ts';

}): FetchError;
//# sourceMappingURL=FetchError.d.ts.map

@@ -7,2 +7,1 @@ import type { FetchJsonOptions, FetchJsonResponse } from './types.ts';

export declare function fetchJson<T>(url: string, options?: FetchJsonOptions): Promise<FetchJsonResponse<T>>;
//# sourceMappingURL=fetchJson.d.ts.map

@@ -19,2 +19,1 @@ import type { FetchClientConfig } from './FetchClient.ts';

export declare const fetchJsonClient: FetchJsonClient;
//# sourceMappingURL=FetchJsonClient.d.ts.map

@@ -11,2 +11,1 @@ export type { FetchClientConfig, FetchClientRequestConfig } from './FetchClient.ts';

export type { FetchJsonOptions, FetchJsonResponse } from './types.ts';
//# sourceMappingURL=index.d.ts.map

@@ -365,2 +365,1 @@ // src/FetchError.ts

};
//# sourceMappingURL=index.mjs.map

@@ -12,2 +12,1 @@ import type { FetchJsonOptions, FetchJsonResponse } from './types.ts';

export declare function fetchJsonDelete<T>(url: string, options?: FetchJsonOptions): Promise<FetchJsonResponse<T>>;
//# sourceMappingURL=methods.d.ts.map

@@ -5,2 +5,1 @@ export type { FetchClientConfig, FetchClientRequestConfig, } from './FetchClient.ts';

export type * from './types.ts';
//# sourceMappingURL=model.d.ts.map

@@ -16,2 +16,1 @@ /**

export declare function tryParseJson<T>(response: Response): Promise<T | null>;
//# sourceMappingURL=parseJson.d.ts.map

@@ -12,2 +12,1 @@ import type { FetchCompressOptions } from './fetchCompress.ts';

}
//# sourceMappingURL=types.d.ts.map

@@ -10,2 +10,1 @@ import { type Promisable } from '../../promise/neutral/index.ts';

export declare const forget: <T>(promise: Promisable<T>, config?: ForgetConfig<T>) => void;
//# sourceMappingURL=forget.d.ts.map

@@ -21,2 +21,1 @@ /**

export declare const defaultForgetConfig: ForgetConfig<unknown>;
//# sourceMappingURL=ForgetConfig.d.ts.map

@@ -9,2 +9,1 @@ import { type Promisable } from '../../promise/neutral/index.ts';

export declare const forgetNode: <T>(promise: Promisable<T>, config?: ForgetNodeConfig<T>) => void;
//# sourceMappingURL=forgetNode.d.ts.map

@@ -13,2 +13,1 @@ import { type ForgetConfig } from './ForgetConfig.ts';

export declare const defaultForgetNodeConfig: ForgetNodeConfig<unknown>;
//# sourceMappingURL=ForgetNodeConfig.d.ts.map

@@ -49,2 +49,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

export {};
//# sourceMappingURL=ForgetPromise.d.ts.map

@@ -15,2 +15,1 @@ import type { Promisable } from '../../promise/neutral/index.ts';

}
//# sourceMappingURL=ForgetPromiseNode.d.ts.map
export * from './node/index.ts';
//# sourceMappingURL=index.d.ts.map

@@ -162,2 +162,1 @@ // src/ForgetConfig.ts

};
//# sourceMappingURL=index.mjs.map
export type { ForgetConfig } from './ForgetConfig.ts';
export type { ForgetNodeConfig } from './ForgetNodeConfig.ts';
//# sourceMappingURL=model.d.ts.map
export * from '../forget.ts';
export * from '../ForgetConfig.ts';
export * from '../ForgetPromise.ts';
//# sourceMappingURL=index.d.ts.map
export { forgetNode as forget } from '../forgetNode.ts';
export * from '../ForgetNodeConfig.ts';
export { ForgetPromiseNode as ForgetPromise } from '../ForgetPromiseNode.ts';
//# sourceMappingURL=index.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const functionName: (depth?: number) => string;
//# sourceMappingURL=functionName.d.ts.map
export * from './functionName.ts';
//# sourceMappingURL=index.d.ts.map

@@ -27,2 +27,1 @@ // src/functionName.ts

};
//# sourceMappingURL=index.mjs.map

@@ -18,2 +18,1 @@ import type { Brand } from '../../../typeof/neutral/index.ts';

export {};
//# sourceMappingURL=address.d.ts.map

@@ -10,2 +10,1 @@ import * as z from 'zod/mini';

export type AddressTransformZodType = z.infer<typeof AddressTransformZod>;
//# sourceMappingURL=AddressTransformZod.d.ts.map

@@ -10,2 +10,1 @@ import * as z from 'zod/mini';

export type AddressValidationZodType = z.infer<typeof AddressValidationZod>;
//# sourceMappingURL=AddressValidationZod.d.ts.map

@@ -13,2 +13,1 @@ import type { AssertConfig } from '../../../error/neutral/index.ts';

export declare function asAddressV2(value?: unknown, assert?: boolean): Address | undefined;
//# sourceMappingURL=as.d.ts.map

@@ -7,2 +7,1 @@ export * from './address.ts';

export * from './to.ts';
//# sourceMappingURL=index.d.ts.map

@@ -12,2 +12,1 @@ import type { HexConfig } from '../hex/index.ts';

export declare function isAddressV2(value?: unknown): value is Address;
//# sourceMappingURL=is.d.ts.map

@@ -12,2 +12,1 @@ import type { HexConfig } from '../hex/index.ts';

export declare function toAddressV2(value: unknown, assert?: boolean): Address | undefined;
//# sourceMappingURL=to.d.ts.map

@@ -45,2 +45,1 @@ import type { AssertConfig } from '../../error/neutral/index.ts';

export declare function asEthAddress(value: unknown, assert: AssertConfig): EthAddress;
//# sourceMappingURL=ethAddress.d.ts.map

@@ -11,2 +11,1 @@ import type { AssertConfig } from '../../../error/neutral/index.ts';

export declare function asHash(value: unknown, assert: AssertConfig): Hash;
//# sourceMappingURL=as.d.ts.map

@@ -28,2 +28,1 @@ import type { Brand } from '../../../typeof/neutral/index.ts';

export type Hash = z.infer<typeof HashZod>;
//# sourceMappingURL=hash.d.ts.map

@@ -5,2 +5,1 @@ export * from './as.ts';

export * from './zod.ts';
//# sourceMappingURL=index.d.ts.map

@@ -9,2 +9,1 @@ import type { Hash, HashBitLength } from './hash.ts';

export declare const isHash: (value: unknown, bitLength?: HashBitLength) => value is Hash;
//# sourceMappingURL=is.d.ts.map

@@ -6,2 +6,1 @@ import * as z from 'zod/mini';

export declare const JsonToHashZod: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("./hash.ts").BrandedHash, string>>;
//# sourceMappingURL=zod.d.ts.map

@@ -11,2 +11,1 @@ import type { AssertConfig } from '../../../error/neutral/index.ts';

export declare function asHex(value: unknown, assert: AssertConfig): Hex;
//# sourceMappingURL=as.d.ts.map

@@ -8,2 +8,1 @@ import type { Hex, HexConfig } from '../hex.ts';

config?: HexConfig) => Hex;
//# sourceMappingURL=from.d.ts.map

@@ -8,2 +8,1 @@ import type { Hex, HexConfig } from '../hex.ts';

config?: HexConfig) => Hex;
//# sourceMappingURL=fromArrayBuffer.d.ts.map

@@ -8,2 +8,1 @@ import type { Hex, HexConfig } from '../hex.ts';

config?: HexConfig) => Hex;
//# sourceMappingURL=fromBigInt.d.ts.map

@@ -9,2 +9,1 @@ import type { Hex, HexConfig } from '../hex.ts';

export declare const hexFromHexString: (value: string, config?: HexConfig) => Hex;
//# sourceMappingURL=fromHexString.d.ts.map

@@ -9,2 +9,1 @@ import type { Hex, HexConfig } from '../hex.ts';

export declare const hexFromNumber: (value: number, config?: HexConfig) => Hex;
//# sourceMappingURL=fromNumber.d.ts.map

@@ -6,2 +6,1 @@ export * from './from.ts';

export * from './fromNumber.ts';
//# sourceMappingURL=index.d.ts.map

@@ -17,2 +17,1 @@ import type { Brand } from '../../../typeof/neutral/index.ts';

export type Hex = z.infer<typeof HexZod>;
//# sourceMappingURL=hex.d.ts.map

@@ -9,2 +9,1 @@ export * from './as.ts';

export * from './to.ts';
//# sourceMappingURL=index.d.ts.map

@@ -9,2 +9,1 @@ import type { Hex, HexConfig } from './hex.ts';

export declare const isHex: (value: unknown, config?: HexConfig) => value is Hex;
//# sourceMappingURL=is.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const isHexZero: (value?: string) => boolean | undefined;
//# sourceMappingURL=isHexZero.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const toHexLegacy: (buffer: ArrayBuffer) => string;
//# sourceMappingURL=legacy.d.ts.map

@@ -13,2 +13,1 @@ /**

export declare const nibblesToBits: (value: number) => number;
//# sourceMappingURL=nibble.d.ts.map

@@ -8,2 +8,1 @@ import type { HexConfig } from './hex.ts';

config?: HexConfig) => import("./hex.ts").BrandedHex;
//# sourceMappingURL=to.d.ts.map

@@ -19,2 +19,1 @@ /**

export declare const HexRegExWithPrefix: RegExp;
//# sourceMappingURL=HexRegEx.d.ts.map

@@ -8,2 +8,1 @@ import { type Hex } from './hex/index.ts';

export declare function hexToBigInt(hex: Hex): bigint;
//# sourceMappingURL=hexToBigInt.d.ts.map

@@ -8,2 +8,1 @@ export * from './address/index.ts';

export * from './zod.ts';
//# sourceMappingURL=index.d.ts.map

@@ -381,2 +381,1 @@ // src/address/address.ts

};
//# sourceMappingURL=index.mjs.map
export type { EthAddress } from './ethAddress.ts';
export type { BrandedHex, Hex, HexConfig, } from './hex/index.ts';
//# sourceMappingURL=model.d.ts.map

@@ -6,2 +6,1 @@ import * as z from 'zod/mini';

export declare const JsonToBigIntZod: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<bigint, string>>;
//# sourceMappingURL=zod.d.ts.map

@@ -7,2 +7,1 @@ import type { LogLevelValue } from './LevelLogger.ts';

}
//# sourceMappingURL=ConsoleLogger.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const getFunctionName: (depth?: number) => string;
//# sourceMappingURL=getFunctionName.d.ts.map

@@ -19,2 +19,1 @@ import type { Logger } from './LevelLogger.ts';

}
//# sourceMappingURL=IdLogger.d.ts.map

@@ -7,2 +7,1 @@ export * from './ConsoleLogger.ts';

export * from './SilentLogger.ts';
//# sourceMappingURL=index.d.ts.map

@@ -126,2 +126,1 @@ // src/LevelLogger.ts

};
//# sourceMappingURL=index.mjs.map

@@ -47,2 +47,1 @@ import type { EnumKey, EnumValue } from '../../enum/neutral/index.ts';

}
//# sourceMappingURL=LevelLogger.d.ts.map
/** A log function that silently discards all arguments. */
export declare const NoOpLogFunction: (..._data: unknown[]) => undefined;
//# sourceMappingURL=NoOpLogFunction.d.ts.map

@@ -17,2 +17,1 @@ import type { Logger } from './LevelLogger.ts';

}
//# sourceMappingURL=SilentLogger.d.ts.map

@@ -8,2 +8,1 @@ import type { TypedKey } from '../../typeof/neutral/index.ts';

export type AnyObject = EmptyObject & Partial<Record<TypedKey, unknown>>;
//# sourceMappingURL=AnyObject.d.ts.map

@@ -12,2 +12,1 @@ import type { AnyNonPromise } from '../../promise/neutral/index.ts';

};
//# sourceMappingURL=AsTypeFactory.d.ts.map

@@ -14,2 +14,1 @@ import type { AnyNonPromise } from '../../promise/neutral/index.ts';

export type AsOptionalTypeFunction<T extends AnyNonPromise = AnyNonPromise> = <TType extends T>(value: AnyNonPromise) => TType | undefined;
//# sourceMappingURL=AsTypeFunction.d.ts.map
/** A comparator function that returns a negative number if a < b, zero if a == b, and a positive number if a > b. */
export type Compare<T> = (a: T, b: T) => number;
//# sourceMappingURL=Compare.d.ts.map

@@ -8,2 +8,1 @@ /**

}, unknown[] | ((...args: unknown[]) => unknown) | null>;
//# sourceMappingURL=EmptyObject.d.ts.map

@@ -6,2 +6,1 @@ export * from './AnyObject.ts';

export * from './types.ts';
//# sourceMappingURL=index.d.ts.map

@@ -6,2 +6,1 @@ export type * from './AnyObject.ts';

export type * from './types.ts';
//# sourceMappingURL=model.d.ts.map

@@ -25,2 +25,1 @@ import type { AssertExMessageFunc } from '../../assert/neutral/index.ts';

}
//# sourceMappingURL=types.d.ts.map
import type { AnyObject } from '../../object-model/neutral/index.ts';
/** Type-narrowing function that casts a value to AnyObject if it is a plain object, or returns undefined. */
export declare const asAnyObject: import("../../object-model/neutral/index.ts").AsTypeFunction<AnyObject>;
//# sourceMappingURL=asObject.d.ts.map

@@ -8,2 +8,1 @@ import type { TypeCheck } from '../../object-model/neutral/index.ts';

};
//# sourceMappingURL=AsObjectFactory.d.ts.map

@@ -11,2 +11,1 @@ import type { AsTypeFunction, TypeCheck } from '../../object-model/neutral/index.ts';

};
//# sourceMappingURL=AsTypeFactory.d.ts.map

@@ -49,2 +49,1 @@ import type { AnyObject } from '../../object-model/neutral/index.ts';

export {};
//# sourceMappingURL=deepMerge.d.ts.map
export type { EmptyObject } from '../../object-model/neutral/index.ts';
//# sourceMappingURL=EmptyObject.d.ts.map
export * from './isType.ts';
//# sourceMappingURL=index-deprecated.d.ts.map

@@ -22,2 +22,1 @@ export * from './asObject.ts';

export * from '../../object-model/neutral/index.ts';
//# sourceMappingURL=index-un-deprecated.d.ts.map

@@ -320,2 +320,1 @@ // src/asObject.ts

};
//# sourceMappingURL=index-un-deprecated.mjs.map
export * from './index-deprecated.ts';
export * from './index-un-deprecated.ts';
//# sourceMappingURL=index.d.ts.map

@@ -435,2 +435,1 @@ var __defProp = Object.defineProperty;

};
//# sourceMappingURL=index.mjs.map

@@ -16,2 +16,1 @@ import type { TypeCheck, TypeCheckConfig } from '../../object-model/neutral/index.ts';

}
//# sourceMappingURL=IsObjectFactory.d.ts.map
import type { FieldType } from '../../typeof/neutral/index.ts';
/** @deprecated use from @internal/typeof instead */
export declare const isType: (value: unknown, expectedType: FieldType) => boolean;
//# sourceMappingURL=isType.d.ts.map

@@ -49,2 +49,1 @@ import * as z from 'zod/mini';

export {};
//# sourceMappingURL=JsonObject.d.ts.map

@@ -14,2 +14,1 @@ export type { ObjectTypeConfig } from './IsObjectFactory.ts';

export type * from '../../object-model/neutral/model.ts';
//# sourceMappingURL=model.d.ts.map

@@ -9,2 +9,1 @@ import type { EmptyObject } from './EmptyObject.ts';

}
//# sourceMappingURL=ObjectWrapper.d.ts.map

@@ -21,2 +21,1 @@ import type { EmptyObject } from './EmptyObject.ts';

export declare const omitByPrefix: <T extends EmptyObject, P extends string>(payload: T, prefix: P, maxDepth?: number) => DeepOmitStartsWith<T, P>;
//# sourceMappingURL=omitBy.d.ts.map

@@ -18,2 +18,1 @@ import type { JsonValue } from './JsonObject.ts';

};
//# sourceMappingURL=OmitStartsWith.d.ts.map
/** Makes the specified fields of T optional while keeping the rest required. */
export type Optional<T extends object, F extends keyof T> = Omit<T, F> & Partial<Pick<T, F>>;
//# sourceMappingURL=Optional.d.ts.map
/** Overrides properties of T1 with those from T2. */
type Override<T1, T2> = Omit<T1, keyof T2> & T2;
export type { Override };
//# sourceMappingURL=Override.d.ts.map
/** @deprecated use Partial<Record<>> instead */
export type PartialRecord<K extends keyof any, T> = Partial<Record<K, T>>;
//# sourceMappingURL=PartialRecord.d.ts.map

@@ -21,2 +21,1 @@ import type { EmptyObject } from './EmptyObject.ts';

export declare const pickByPrefix: <T extends EmptyObject, P extends string>(payload: T, prefix: P, maxDepth?: number) => DeepPickStartsWith<T, P>;
//# sourceMappingURL=pickBy.d.ts.map

@@ -9,2 +9,1 @@ /** Picks only the keys of T that start with the given prefix. */

} : T;
//# sourceMappingURL=PickStartsWith.d.ts.map

@@ -9,2 +9,1 @@ import type { EmptyObject } from './EmptyObject.ts';

export declare const removeFields: <T extends EmptyObject, K extends keyof T>(obj: T, fields: K[]) => Omit<T, K>;
//# sourceMappingURL=removeFields.d.ts.map

@@ -5,2 +5,1 @@ /** Flattens an intersection or complex mapped type into a single object type for better readability. */

} & {};
//# sourceMappingURL=Simplify.d.ts.map
/** An object type with string keys and values of type T. */
export type StringKeyObject<T = unknown> = Record<string, T>;
//# sourceMappingURL=StringKeyObject.d.ts.map

@@ -41,2 +41,1 @@ import type { JsonArray, JsonObject, JsonValue } from './JsonObject.ts';

export declare const toSafeJson: (value: unknown, maxDepth?: number) => JsonValue;
//# sourceMappingURL=toSafeJson.d.ts.map

@@ -13,2 +13,1 @@ import type { AnyObject } from '../../object-model/neutral/index.ts';

}
//# sourceMappingURL=Validator.d.ts.map
import type { EmptyObject } from './EmptyObject.ts';
/** Intersects T with TAdditional if TAdditional is an object, otherwise returns T unchanged. */
export type WithAdditional<T extends EmptyObject | void, TAdditional extends EmptyObject | void = void> = TAdditional extends EmptyObject ? T & TAdditional : T;
//# sourceMappingURL=WithAdditional.d.ts.map

@@ -7,2 +7,1 @@ /** Returns whether the current environment is a browser window (not a web worker). */

export declare const isNode: () => boolean;
//# sourceMappingURL=index.d.ts.map
export * from './browser/index.ts';
//# sourceMappingURL=index-browser.d.ts.map

@@ -16,2 +16,1 @@ // src/browser/index.ts

};
//# sourceMappingURL=index-browser.mjs.map
export * from './node/index.ts';
//# sourceMappingURL=index-node.d.ts.map

@@ -9,2 +9,1 @@ /** The Web Crypto API's SubtleCrypto interface, re-exported from Node.js crypto module. */

export declare const isNode: () => boolean;
//# sourceMappingURL=index.d.ts.map

@@ -7,2 +7,1 @@ /** Returns whether the current environment is a browser window (not a web worker). */

export declare const isNode: () => boolean;
//# sourceMappingURL=index.d.ts.map
export * from './browser/index.ts';
//# sourceMappingURL=index-browser.d.ts.map
export * from './node/index.ts';
//# sourceMappingURL=index-node.d.ts.map

@@ -18,2 +18,1 @@ // src/node/index.ts

};
//# sourceMappingURL=index-node.mjs.map

@@ -9,2 +9,1 @@ /** The Web Crypto API's SubtleCrypto interface, re-exported from Node.js crypto module. */

export declare const isNode: () => boolean;
//# sourceMappingURL=index.d.ts.map
export * from './profiler.ts';
//# sourceMappingURL=index.d.ts.map

@@ -37,2 +37,1 @@ // src/profiler.ts

};
//# sourceMappingURL=index.mjs.map
export type { Profiler } from './profiler.ts';
//# sourceMappingURL=model.d.ts.map

@@ -17,2 +17,1 @@ /** A record of named timing entries, where each key maps to an array of timestamps. */

export declare const profileReport: (profiler: Profiler) => Record<string, number>;
//# sourceMappingURL=profiler.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const fulfilled: <T>(val: PromiseSettledResult<T>) => val is PromiseFulfilledResult<T>;
//# sourceMappingURL=fulfilled.d.ts.map

@@ -20,2 +20,1 @@ /**

export declare const fulfilledValues: <T>(previousValue: T[], currentValue: PromiseSettledResult<T>) => T[];
//# sourceMappingURL=fulfilledValues.d.ts.map

@@ -7,2 +7,1 @@ export { fulfilled } from './fulfilled.ts';

export * from './types.ts';
//# sourceMappingURL=index.d.ts.map

@@ -57,2 +57,1 @@ // src/fulfilled.ts

};
//# sourceMappingURL=index.mjs.map
export type { PromiseExFunc, PromiseExSubFunc, PromiseExValueFunc, } from './PromiseEx.ts';
export type * from './types.ts';
//# sourceMappingURL=model.d.ts.map

@@ -24,2 +24,1 @@ /** A resolve/reject callback used within PromiseEx. */

}
//# sourceMappingURL=PromiseEx.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const rejected: <T>(val: PromiseSettledResult<T>) => val is PromiseRejectedResult;
//# sourceMappingURL=rejected.d.ts.map

@@ -8,2 +8,1 @@ import type { Promisable } from './types.ts';

export declare function toPromise<T>(value: Promisable<T>): Promise<T>;
//# sourceMappingURL=toPromise.d.ts.map

@@ -23,2 +23,1 @@ import type { TypedValue } from '../../typeof/neutral/index.ts';

export type AnyNonPromise = Exclude<TypedValue, PromiseType>;
//# sourceMappingURL=types.d.ts.map
export * from './retry.ts';
//# sourceMappingURL=index.d.ts.map

@@ -28,2 +28,1 @@ // src/retry.ts

};
//# sourceMappingURL=index.mjs.map
export type { RetryConfig, RetryConfigWithComplete, } from './retry.ts';
//# sourceMappingURL=model.d.ts.map

@@ -23,2 +23,1 @@ import type { Promisable } from '../../promise/neutral/index.ts';

export declare const retry: <T = unknown>(func: () => Promisable<T | undefined>, config?: RetryConfigWithComplete<T>) => Promise<T | undefined>;
//# sourceMappingURL=retry.d.ts.map
export * from './lib/index.ts';
//# sourceMappingURL=index.d.ts.map

@@ -20,2 +20,1 @@ // src/lib/difference.ts

};
//# sourceMappingURL=index.mjs.map

@@ -8,2 +8,1 @@ /**

export declare const difference: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
//# sourceMappingURL=difference.d.ts.map
export * from './difference.ts';
export * from './intersection.ts';
export * from './union.ts';
//# sourceMappingURL=index.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const intersection: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
//# sourceMappingURL=intersection.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const union: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
//# sourceMappingURL=union.d.ts.map
export * from './staticImplements.ts';
//# sourceMappingURL=index.d.ts.map

@@ -10,2 +10,1 @@ // src/staticImplements.ts

};
//# sourceMappingURL=index.mjs.map

@@ -7,2 +7,1 @@ /**

export declare function staticImplements<T>(): <U extends T>(constructor: U) => void;
//# sourceMappingURL=staticImplements.d.ts.map
export * from './KeyValueStore.ts';
//# sourceMappingURL=index.d.ts.map

@@ -34,2 +34,1 @@ import type { Promisable } from '../../promise/neutral/index.ts';

}
//# sourceMappingURL=KeyValueStore.d.ts.map
export type * from './KeyValueStore.ts';
//# sourceMappingURL=model.d.ts.map
export * from './XyConsoleSpanExporter.ts';
//# sourceMappingURL=index.d.ts.map

@@ -88,2 +88,1 @@ // src/XyConsoleSpanExporter.ts

};
//# sourceMappingURL=index.mjs.map

@@ -40,2 +40,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

export {};
//# sourceMappingURL=XyConsoleSpanExporter.d.ts.map
export * from './span.ts';
export * from './timeBudget.ts';
//# sourceMappingURL=index.d.ts.map

@@ -152,2 +152,1 @@ // src/span.ts

};
//# sourceMappingURL=index.mjs.map
export type { SpanConfig } from './span.ts';
//# sourceMappingURL=model.d.ts.map

@@ -51,2 +51,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

export declare function spanRootAsync<T>(name: string, fn: () => Promise<T>, { timeBudgetLimit, logger, tracer, }?: SpanConfig): Promise<T>;
//# sourceMappingURL=span.d.ts.map

@@ -12,2 +12,1 @@ import type { Logger } from '../../logger/neutral/index.ts';

export declare function timeBudget<TResult>(name: string, logger: Logger | undefined, func: () => Promise<TResult>, budget: number, status?: boolean): Promise<TResult>;
//# sourceMappingURL=timeBudget.d.ts.map
export { clearTimeoutEx, defaultTimerScheduler, setTimeoutEx, TimerScheduler, } from './setTimeoutEx.ts';
//# sourceMappingURL=index.d.ts.map

@@ -75,2 +75,1 @@ // src/setTimeoutEx.ts

};
//# sourceMappingURL=index.mjs.map

@@ -37,2 +37,1 @@ /** Coalesces multiple logical timeouts into a single native timer. */

export declare const clearTimeoutEx: (id: string) => void;
//# sourceMappingURL=setTimeoutEx.d.ts.map

@@ -5,2 +5,1 @@ /** Creates a branded type by intersecting base type T with brand type B, enabling nominal typing in TypeScript. */

};
//# sourceMappingURL=Brand.d.ts.map
/** A type guard function that narrows an unknown value to type T. */
export type IdentityFunction<T> = (value: unknown) => value is T;
//# sourceMappingURL=IdentityFunction.d.ts.map

@@ -8,2 +8,1 @@ /**

export declare const ifDefined: <T>(value: T, func: (value: T) => void) => T | undefined;
//# sourceMappingURL=ifDefined.d.ts.map

@@ -11,2 +11,1 @@ import type { TypeOfTypes } from './TypeOfTypes.ts';

export declare const ifTypeOf: <T, R>(typeName: TypeOfTypes, value: unknown, trueFunc: (value: T) => R, isFunc?: (value: T) => boolean) => R | undefined;
//# sourceMappingURL=ifTypeOf.d.ts.map

@@ -12,2 +12,1 @@ export * from './Brand.ts';

export * from './validateType.ts';
//# sourceMappingURL=index.d.ts.map

@@ -255,2 +255,1 @@ // src/typeOf.ts

};
//# sourceMappingURL=index.mjs.map

@@ -116,2 +116,1 @@ /** A function type that accepts any arguments and returns unknown. */

export declare function isFile<T extends File>(value: T): value is Extract<T, File>;
//# sourceMappingURL=is.d.ts.map

@@ -9,2 +9,1 @@ import type { FieldType } from './ObjectTypeShape.ts';

export declare const isType: (value: unknown, expectedType: FieldType) => boolean;
//# sourceMappingURL=isType.d.ts.map

@@ -7,2 +7,1 @@ export type * from './Brand.ts';

export type * from './TypeOfTypes.ts';
//# sourceMappingURL=model.d.ts.map

@@ -5,2 +5,1 @@ /** Union of string literals representing the possible types of an object field. */

export type ObjectTypeShape = Record<string | number | symbol, FieldType>;
//# sourceMappingURL=ObjectTypeShape.d.ts.map

@@ -41,2 +41,1 @@ /** A value that can appear in a typed object tree (primitives, objects, arrays, functions, and symbols). */

export declare const isTypedObject: (value: unknown) => value is TypedObject;
//# sourceMappingURL=Typed.d.ts.map

@@ -8,2 +8,1 @@ import type { TypeOfTypes } from './TypeOfTypes.ts';

export declare const typeOf: <T>(item: T) => TypeOfTypes;
//# sourceMappingURL=typeOf.d.ts.map
/** Union of string literals representing the possible results of the extended `typeOf` function. */
export type TypeOfTypes = 'string' | 'number' | 'object' | 'array' | 'buffer' | 'null' | 'undefined' | 'bigint' | 'boolean' | 'function' | 'symbol';
//# sourceMappingURL=TypeOfTypes.d.ts.map

@@ -10,2 +10,1 @@ import type { TypeOfTypes } from './TypeOfTypes.ts';

export declare const validateType: <T>(typeName: TypeOfTypes, value: T, optional?: boolean) => [T | undefined, Error[]];
//# sourceMappingURL=validateType.d.ts.map

@@ -12,2 +12,1 @@ /** Browser-specific URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-browser.d.ts.map

@@ -12,2 +12,1 @@ // src/lib/isLocalhost.ts

};
//# sourceMappingURL=index-browser.mjs.map

@@ -12,2 +12,1 @@ /** Platform-neutral URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-neutral.d.ts.map

@@ -13,2 +13,1 @@ import { URL } from 'node:url';

export * from './lib/index.ts';
//# sourceMappingURL=index-node.d.ts.map
export * from './isLocalhost.ts';
//# sourceMappingURL=index.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const isLocalhost: (hostname: string) => boolean;
//# sourceMappingURL=isLocalhost.d.ts.map

@@ -12,2 +12,1 @@ /** Browser-specific URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-browser.d.ts.map

@@ -12,2 +12,1 @@ /** Platform-neutral URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-neutral.d.ts.map

@@ -12,2 +12,1 @@ // src/lib/isLocalhost.ts

};
//# sourceMappingURL=index-neutral.mjs.map

@@ -13,2 +13,1 @@ import { URL } from 'node:url';

export * from './lib/index.ts';
//# sourceMappingURL=index-node.d.ts.map
export * from './isLocalhost.ts';
//# sourceMappingURL=index.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const isLocalhost: (hostname: string) => boolean;
//# sourceMappingURL=isLocalhost.d.ts.map

@@ -12,2 +12,1 @@ /** Browser-specific URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-browser.d.ts.map

@@ -12,2 +12,1 @@ /** Platform-neutral URL class, aliased from the global `URL`. */

export * from './lib/index.ts';
//# sourceMappingURL=index-neutral.d.ts.map

@@ -13,2 +13,1 @@ import { URL } from 'node:url';

export * from './lib/index.ts';
//# sourceMappingURL=index-node.d.ts.map

@@ -15,2 +15,1 @@ // src/index-node.ts

};
//# sourceMappingURL=index-node.mjs.map
export * from './isLocalhost.ts';
//# sourceMappingURL=index.d.ts.map

@@ -7,2 +7,1 @@ /**

export declare const isLocalhost: (hostname: string) => boolean;
//# sourceMappingURL=isLocalhost.d.ts.map

@@ -8,2 +8,1 @@ import type { AssertConfig } from '../../error/neutral/index.ts';

export type ZodFactoryConfig = AssertConfig | ZodFactoryConfigObject;
//# sourceMappingURL=Config.d.ts.map

@@ -8,2 +8,1 @@ export * from './Config.ts';

export * from './zodToFactory.ts';
//# sourceMappingURL=index.d.ts.map

@@ -127,2 +127,1 @@ // src/zodAsFactory.ts

};
//# sourceMappingURL=index.mjs.map
export type * from './Config.ts';
//# sourceMappingURL=model.d.ts.map

@@ -20,2 +20,1 @@ import type * as z from 'zod/v4/core';

};
//# sourceMappingURL=zodAllFactory.d.ts.map

@@ -14,2 +14,1 @@ import * as z from 'zod/v4/core';

};
//# sourceMappingURL=zodAsAsyncFactory.d.ts.map

@@ -14,2 +14,1 @@ import * as z from 'zod/v4/core';

};
//# sourceMappingURL=zodAsFactory.d.ts.map

@@ -8,2 +8,1 @@ import * as z from 'zod/v4/core';

export declare function zodIsFactory<TZod>(zod: z.$ZodType<TZod>): <T>(value: T) => value is T & TZod;
//# sourceMappingURL=zodIsFactory.d.ts.map

@@ -14,2 +14,1 @@ import type * as z from 'zod/v4/core';

};
//# sourceMappingURL=zodToAsyncFactory.d.ts.map

@@ -14,2 +14,1 @@ import type * as z from 'zod/v4/core';

};
//# sourceMappingURL=zodToFactory.d.ts.map
+39
-39
{
"name": "@ariestools/sdk",
"version": "7.0.4",
"version": "7.0.5",
"description": "All-in-one umbrella for the Aries Tools TypeScript/JavaScript utility libraries",

@@ -40,4 +40,4 @@ "keywords": [

"default": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.mjs"
}

@@ -179,4 +179,4 @@ },

"default": {
"types": "./dist/node/platform.d.ts",
"default": "./dist/node/platform.mjs"
"types": "./dist/browser/platform.d.ts",
"default": "./dist/browser/platform.mjs"
}

@@ -282,4 +282,4 @@ },

"@opentelemetry/sdk-trace-base": "^2.8.0",
"@xylabs/toolchain": "^8.5.11",
"@xylabs/tsconfig": "^8.5.11",
"@xylabs/toolchain": "^8.5.15",
"@xylabs/tsconfig": "^8.5.15",
"async-mutex": "^0.5.0",

@@ -293,34 +293,34 @@ "browserslist": "4.28.4",

"zod": "^4.4.3",
"@internal/api": "~7.0.4",
"@internal/array": "~7.0.4",
"@internal/assert": "~7.0.4",
"@internal/creatable": "~7.0.4",
"@internal/base": "~7.0.4",
"@internal/decimal-precision": "~7.0.4",
"@internal/arraybuffer": "~7.0.4",
"@internal/delay": "~7.0.4",
"@internal/ellipsize": "~7.0.4",
"@internal/enum": "~7.0.4",
"@internal/events": "~7.0.4",
"@internal/error": "~7.0.4",
"@internal/exists": "~7.0.4",
"@internal/fetch": "~7.0.4",
"@internal/logger": "~7.0.4",
"@internal/function-name": "~7.0.4",
"@internal/hex": "~7.0.4",
"@internal/forget": "~7.0.4",
"@internal/object": "~7.0.4",
"@internal/profile": "~7.0.4",
"@internal/promise": "~7.0.4",
"@internal/platform": "~7.0.4",
"@internal/retry": "~7.0.4",
"@internal/static-implements": "~7.0.4",
"@internal/set": "~7.0.4",
"@internal/storage": "~7.0.4",
"@internal/telemetry-exporter": "~7.0.4",
"@internal/timer": "~7.0.4",
"@internal/telemetry": "~7.0.4",
"@internal/zod": "~7.0.4",
"@internal/typeof": "~7.0.4",
"@internal/url": "~7.0.4"
"@internal/api": "~7.0.5",
"@internal/arraybuffer": "~7.0.5",
"@internal/array": "~7.0.5",
"@internal/assert": "~7.0.5",
"@internal/decimal-precision": "~7.0.5",
"@internal/base": "~7.0.5",
"@internal/delay": "~7.0.5",
"@internal/ellipsize": "~7.0.5",
"@internal/enum": "~7.0.5",
"@internal/creatable": "~7.0.5",
"@internal/error": "~7.0.5",
"@internal/fetch": "~7.0.5",
"@internal/exists": "~7.0.5",
"@internal/events": "~7.0.5",
"@internal/forget": "~7.0.5",
"@internal/function-name": "~7.0.5",
"@internal/hex": "~7.0.5",
"@internal/logger": "~7.0.5",
"@internal/platform": "~7.0.5",
"@internal/profile": "~7.0.5",
"@internal/promise": "~7.0.5",
"@internal/object": "~7.0.5",
"@internal/set": "~7.0.5",
"@internal/static-implements": "~7.0.5",
"@internal/retry": "~7.0.5",
"@internal/storage": "~7.0.5",
"@internal/telemetry": "~7.0.5",
"@internal/telemetry-exporter": "~7.0.5",
"@internal/timer": "~7.0.5",
"@internal/typeof": "~7.0.5",
"@internal/url": "~7.0.5",
"@internal/zod": "~7.0.5"
},

@@ -327,0 +327,0 @@ "peerDependencies": {