@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.
- package/dist/index.d.ts +8 -0
- 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;
|