|
|
|
@ -46,6 +46,11 @@ export const GenericWrapperActions = {
|
|
|
|
|
) =>
|
|
|
|
|
/** base wrapper generic actions */
|
|
|
|
|
callLibSessionWorker([wrapperId, 'init', ed25519Key, dump]) as Promise<void>,
|
|
|
|
|
/** This function is used to free wrappers from memory only.
|
|
|
|
|
*
|
|
|
|
|
* See freeUserWrapper() in libsession.worker.ts */
|
|
|
|
|
free: async (wrapperId: ConfigWrapperObjectTypes) =>
|
|
|
|
|
callLibSessionWorker([wrapperId, 'free']) as Promise<void>,
|
|
|
|
|
confirmPushed: async (wrapperId: ConfigWrapperObjectTypes, seqno: number, hash: string) =>
|
|
|
|
|
callLibSessionWorker([wrapperId, 'confirmPushed', seqno, hash]) as ReturnType<
|
|
|
|
|
BaseWrapperActionsCalls['confirmPushed']
|
|
|
|
@ -87,6 +92,7 @@ export const UserConfigWrapperActions: UserConfigWrapperActionsCalls = {
|
|
|
|
|
/* Reuse the GenericWrapperActions with the UserConfig argument */
|
|
|
|
|
init: async (ed25519Key: Uint8Array, dump: Uint8Array | null) =>
|
|
|
|
|
GenericWrapperActions.init('UserConfig', ed25519Key, dump),
|
|
|
|
|
free: async () => GenericWrapperActions.free('UserConfig'),
|
|
|
|
|
confirmPushed: async (seqno: number, hash: string) =>
|
|
|
|
|
GenericWrapperActions.confirmPushed('UserConfig', seqno, hash),
|
|
|
|
|
dump: async () => GenericWrapperActions.dump('UserConfig'),
|
|
|
|
@ -135,6 +141,7 @@ export const ContactsWrapperActions: ContactsWrapperActionsCalls = {
|
|
|
|
|
/* Reuse the GenericWrapperActions with the ContactConfig argument */
|
|
|
|
|
init: async (ed25519Key: Uint8Array, dump: Uint8Array | null) =>
|
|
|
|
|
GenericWrapperActions.init('ContactsConfig', ed25519Key, dump),
|
|
|
|
|
free: async () => GenericWrapperActions.free('ContactsConfig'),
|
|
|
|
|
confirmPushed: async (seqno: number, hash: string) =>
|
|
|
|
|
GenericWrapperActions.confirmPushed('ContactsConfig', seqno, hash),
|
|
|
|
|
dump: async () => GenericWrapperActions.dump('ContactsConfig'),
|
|
|
|
@ -171,6 +178,7 @@ export const UserGroupsWrapperActions: UserGroupsWrapperActionsCalls = {
|
|
|
|
|
/* Reuse the GenericWrapperActions with the ContactConfig argument */
|
|
|
|
|
init: async (ed25519Key: Uint8Array, dump: Uint8Array | null) =>
|
|
|
|
|
GenericWrapperActions.init('UserGroupsConfig', ed25519Key, dump),
|
|
|
|
|
free: async () => GenericWrapperActions.free('UserGroupsConfig'),
|
|
|
|
|
confirmPushed: async (seqno: number, hash: string) =>
|
|
|
|
|
GenericWrapperActions.confirmPushed('UserGroupsConfig', seqno, hash),
|
|
|
|
|
dump: async () => GenericWrapperActions.dump('UserGroupsConfig'),
|
|
|
|
@ -244,6 +252,7 @@ export const ConvoInfoVolatileWrapperActions: ConvoInfoVolatileWrapperActionsCal
|
|
|
|
|
/* Reuse the GenericWrapperActions with the ContactConfig argument */
|
|
|
|
|
init: async (ed25519Key: Uint8Array, dump: Uint8Array | null) =>
|
|
|
|
|
GenericWrapperActions.init('ConvoInfoVolatileConfig', ed25519Key, dump),
|
|
|
|
|
free: async () => GenericWrapperActions.free('ConvoInfoVolatileConfig'),
|
|
|
|
|
confirmPushed: async (seqno: number, hash: string) =>
|
|
|
|
|
GenericWrapperActions.confirmPushed('ConvoInfoVolatileConfig', seqno, hash),
|
|
|
|
|
dump: async () => GenericWrapperActions.dump('ConvoInfoVolatileConfig'),
|
|
|
|
|