@iotexproject/kit 0.1.11 → 0.1.13

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8622,7 +8622,7 @@ declare class Ioid {
8622
8622
  }>;
8623
8623
  did_hex(args: {
8624
8624
  did: `0x${string}`;
8625
- owner: `0x${string}`;
8625
+ projectName: string;
8626
8626
  }, ctx?: ConfigContext): Promise<{
8627
8627
  hex: string;
8628
8628
  error?: undefined;
@@ -8630,6 +8630,15 @@ declare class Ioid {
8630
8630
  error: unknown;
8631
8631
  hex?: undefined;
8632
8632
  }>;
8633
+ devices_registered(args: {
8634
+ dids: string;
8635
+ }, ctx?: ConfigContext): Promise<{
8636
+ devices: any[];
8637
+ error?: undefined;
8638
+ } | {
8639
+ error: unknown;
8640
+ devices?: undefined;
8641
+ }>;
8633
8642
  }
8634
8643
  declare const modules$3: {
8635
8644
  ioid: Ioid;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.1.11",
5
+ "version": "v0.1.13",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {