@iotexproject/kit 0.2.2 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -9380,6 +9380,14 @@ declare class Delegate$1 extends BaseDBModule {
9380
9380
  status: string;
9381
9381
  data: CandidateProfile;
9382
9382
  }>;
9383
+ getCandidateProfileById({ id }: {
9384
+ id: number;
9385
+ }): Promise<{
9386
+ status: string;
9387
+ data: {
9388
+ temp_eth_address: string;
9389
+ } | null;
9390
+ }>;
9383
9391
  upsertCandidateSecret(args: Candidate$1): Promise<{
9384
9392
  status: string;
9385
9393
  data: null;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.2.2",
5
+ "version": "0.2.3",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {