Skip to content

Commit ce4429a

Browse files
committed
chore: add types for pro proof request
1 parent 1ac97e8 commit ce4429a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

types/pro/pro.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,16 @@ declare module 'libsession_util_nodejs' {
7474
*/
7575
proFeatures: ProFeatures;
7676
}) => WithProFeatures & { success: boolean; error: string | null; codepointCount: number };
77+
proProofRequestBody: (args: {
78+
requestVersion: string,
79+
masterPrivkey: Uint8Array,
80+
rotatingPrivkey: Uint8Array,
81+
unixTsMs: number,
82+
}
83+
) => string;
7784
};
7885

79-
export type ProActionsCalls = MakeWrapperActionCalls<ProWrapper>;
86+
export type ProActionsCalls = MakeWrapperActionCalls<ProWrapper>;
8087

8188

8289
/**

0 commit comments

Comments
 (0)