@hub3js/std 0.0.1-next.1 → 0.0.1-next.3

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,3 +1,3 @@
1
- export type { Namespace, CommonActions, AutoImplementedActionsByRecommended, } from './namespace.js';
1
+ export type { CommonActions, AutoImplementedActionsByRecommended, } from './namespace.js';
2
2
  export type { CaipAccount, Accounts, AccountsWithActiveChain, } from './accounts.js';
3
3
  //# sourceMappingURL=mod.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/types/mod.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,SAAS,EACT,aAAa,EACb,mCAAmC,GACpC,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,WAAW,EACX,QAAQ,EACR,uBAAuB,GACxB,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/types/mod.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,aAAa,EACb,mCAAmC,GACpC,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,WAAW,EACX,QAAQ,EACR,uBAAuB,GACxB,MAAM,eAAe,CAAC"}
@@ -1,10 +1,7 @@
1
- type KnownNamespace = 'EVM' | 'Solana' | 'Cosmos' | 'UTXO' | 'Starknet' | 'Tron' | 'Ton' | 'Sui' | 'XRPL' | 'Stellar';
2
- export type Namespace = KnownNamespace | (string & {});
3
1
  export interface CommonActions {
4
2
  init: () => void;
5
3
  }
6
4
  export interface AutoImplementedActionsByRecommended {
7
5
  disconnect: () => void;
8
6
  }
9
- export {};
10
7
  //# sourceMappingURL=namespace.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"namespace.d.ts","sourceRoot":"","sources":["../../src/types/namespace.ts"],"names":[],"mappings":"AAKA,KAAK,cAAc,GACf,KAAK,GACL,QAAQ,GACR,QAAQ,GACR,MAAM,GACN,UAAU,GACV,MAAM,GACN,KAAK,GACL,KAAK,GACL,MAAM,GACN,SAAS,CAAC;AAEd,MAAM,MAAM,SAAS,GAAG,cAAc,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAEvD,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,mCAAmC;IAClD,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB"}
1
+ {"version":3,"file":"namespace.d.ts","sourceRoot":"","sources":["../../src/types/namespace.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,mCAAmC;IAClD,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hub3js/std",
3
- "version": "0.0.1-next.1",
3
+ "version": "0.0.1-next.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
package/src/types/mod.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export type {
2
- Namespace,
3
2
  CommonActions,
4
3
  AutoImplementedActionsByRecommended,
5
4
  } from './namespace.js';
@@ -1,22 +1,3 @@
1
- /*
2
- * These are the supported namespace tags. The opaque `(string & {})` widening
3
- * keeps the union open — downstream packages can register arbitrary names —
4
- * while preserving autocomplete for the well-known ones.
5
- */
6
- type KnownNamespace =
7
- | 'EVM'
8
- | 'Solana'
9
- | 'Cosmos'
10
- | 'UTXO'
11
- | 'Starknet'
12
- | 'Tron'
13
- | 'Ton'
14
- | 'Sui'
15
- | 'XRPL'
16
- | 'Stellar';
17
-
18
- export type Namespace = KnownNamespace | (string & {});
19
-
20
1
  export interface CommonActions {
21
2
  init: () => void;
22
3
  }