@ariestools/sdk 7.0.3 → 7.0.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.
@@ -1,4 +1,3 @@
1
1
  export * from './Base.ts';
2
2
  export * from './globallyUnique.ts';
3
- export * from './UniqueBase.ts';
4
3
  //# sourceMappingURL=index.d.ts.map
@@ -144,20 +144,8 @@ var globallyUnique = (name, value, domain = "global") => {
144
144
  }
145
145
  return uniqueName;
146
146
  };
147
-
148
- // src/UniqueBase.ts
149
- var UniqueBase = class extends Base {
150
- static uniqueDomain = "xy";
151
- static uniqueName = globallyUnique(this.name, this, this.uniqueDomain);
152
- // TODO: Remove xyo domain version when old xyo versions are no longer needed
153
- static uniqueNameXyo = globallyUnique(this.name, this, "xyo");
154
- constructor(params) {
155
- super(params);
156
- }
157
- };
158
147
  export {
159
148
  Base,
160
- UniqueBase,
161
149
  disableGloballyUnique,
162
150
  globallyUnique
163
151
  };
@@ -4,6 +4,4 @@ export declare const isBrowser: () => boolean;
4
4
  export declare const isWebworker: () => boolean;
5
5
  /** Returns whether the current environment is Node.js. Always returns false in the browser entry point. */
6
6
  export declare const isNode: () => boolean;
7
- /** The Web Crypto API's SubtleCrypto interface, sourced from the browser's globalThis.crypto. */
8
- export declare const subtle: SubtleCrypto;
9
7
  //# sourceMappingURL=index.d.ts.map
@@ -8,11 +8,9 @@ var isWebworker = () => {
8
8
  var isNode = () => {
9
9
  return false;
10
10
  };
11
- var subtle = globalThis.crypto.subtle;
12
11
  export {
13
12
  isBrowser,
14
13
  isNode,
15
- isWebworker,
16
- subtle
14
+ isWebworker
17
15
  };
18
16
  //# sourceMappingURL=index-browser.mjs.map
@@ -4,6 +4,4 @@ export declare const isBrowser: () => boolean;
4
4
  export declare const isWebworker: () => boolean;
5
5
  /** Returns whether the current environment is Node.js. Always returns false in the browser entry point. */
6
6
  export declare const isNode: () => boolean;
7
- /** The Web Crypto API's SubtleCrypto interface, sourced from the browser's globalThis.crypto. */
8
- export declare const subtle: SubtleCrypto;
9
7
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ariestools/sdk",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "description": "All-in-one umbrella for the Aries Tools TypeScript/JavaScript utility libraries",
5
5
  "keywords": [
6
6
  "ariestools",
@@ -277,48 +277,48 @@
277
277
  "devDependencies": {
278
278
  "@opentelemetry/api": "^1.9.1",
279
279
  "@opentelemetry/sdk-trace-base": "^2.8.0",
280
- "@xylabs/toolchain": "^8.5.5",
281
- "@xylabs/tsconfig": "^8.5.5",
280
+ "@xylabs/toolchain": "^8.5.11",
281
+ "@xylabs/tsconfig": "^8.5.11",
282
282
  "async-mutex": "^0.5.0",
283
283
  "browserslist": "4.28.4",
284
284
  "eslint": "^10.6.0",
285
285
  "eslint-import-resolver-typescript": "^4.4.5",
286
286
  "typescript": "^6.0.3",
287
- "vite": "^8.1.0",
287
+ "vite": "^8.1.2",
288
288
  "vitest": "^4.1.9",
289
289
  "zod": "^4.4.3",
290
- "@internal/array": "~7.0.3",
291
- "@internal/api": "~7.0.3",
292
- "@internal/assert": "~7.0.3",
293
- "@internal/arraybuffer": "~7.0.3",
294
- "@internal/decimal-precision": "~7.0.3",
295
- "@internal/delay": "~7.0.3",
296
- "@internal/creatable": "~7.0.3",
297
- "@internal/enum": "~7.0.3",
298
- "@internal/base": "~7.0.3",
299
- "@internal/error": "~7.0.3",
300
- "@internal/events": "~7.0.3",
301
- "@internal/exists": "~7.0.3",
302
- "@internal/logger": "~7.0.3",
303
- "@internal/function-name": "~7.0.3",
304
- "@internal/forget": "~7.0.3",
305
- "@internal/platform": "~7.0.3",
306
- "@internal/object": "~7.0.3",
307
- "@internal/fetch": "~7.0.3",
308
- "@internal/ellipsize": "~7.0.3",
309
- "@internal/set": "~7.0.3",
310
- "@internal/promise": "~7.0.3",
311
- "@internal/static-implements": "~7.0.3",
312
- "@internal/profile": "~7.0.3",
313
- "@internal/telemetry": "~7.0.3",
314
- "@internal/telemetry-exporter": "~7.0.3",
315
- "@internal/hex": "~7.0.3",
316
- "@internal/timer": "~7.0.3",
317
- "@internal/retry": "~7.0.3",
318
- "@internal/storage": "~7.0.3",
319
- "@internal/zod": "~7.0.3",
320
- "@internal/typeof": "~7.0.3",
321
- "@internal/url": "~7.0.3"
290
+ "@internal/api": "~7.0.4",
291
+ "@internal/array": "~7.0.4",
292
+ "@internal/assert": "~7.0.4",
293
+ "@internal/creatable": "~7.0.4",
294
+ "@internal/base": "~7.0.4",
295
+ "@internal/decimal-precision": "~7.0.4",
296
+ "@internal/arraybuffer": "~7.0.4",
297
+ "@internal/delay": "~7.0.4",
298
+ "@internal/ellipsize": "~7.0.4",
299
+ "@internal/enum": "~7.0.4",
300
+ "@internal/events": "~7.0.4",
301
+ "@internal/error": "~7.0.4",
302
+ "@internal/exists": "~7.0.4",
303
+ "@internal/fetch": "~7.0.4",
304
+ "@internal/logger": "~7.0.4",
305
+ "@internal/function-name": "~7.0.4",
306
+ "@internal/hex": "~7.0.4",
307
+ "@internal/forget": "~7.0.4",
308
+ "@internal/object": "~7.0.4",
309
+ "@internal/profile": "~7.0.4",
310
+ "@internal/promise": "~7.0.4",
311
+ "@internal/platform": "~7.0.4",
312
+ "@internal/retry": "~7.0.4",
313
+ "@internal/static-implements": "~7.0.4",
314
+ "@internal/set": "~7.0.4",
315
+ "@internal/storage": "~7.0.4",
316
+ "@internal/telemetry-exporter": "~7.0.4",
317
+ "@internal/timer": "~7.0.4",
318
+ "@internal/telemetry": "~7.0.4",
319
+ "@internal/zod": "~7.0.4",
320
+ "@internal/typeof": "~7.0.4",
321
+ "@internal/url": "~7.0.4"
322
322
  },
323
323
  "peerDependencies": {
324
324
  "@opentelemetry/api": "^1.9",
@@ -1,10 +0,0 @@
1
- import type { BaseParams } from './Base.ts';
2
- import { Base } from './Base.ts';
3
- /** Base class that registers itself as globally unique, preventing duplicate module instances. */
4
- export declare abstract class UniqueBase<TParams extends BaseParams = BaseParams> extends Base<TParams> {
5
- static readonly uniqueDomain = "xy";
6
- static readonly uniqueName: string;
7
- static readonly uniqueNameXyo: string;
8
- constructor(params: BaseParams<TParams>);
9
- }
10
- //# sourceMappingURL=UniqueBase.d.ts.map