Skip to content

Commit f4ea6d5

Browse files
committed
fix: correct wrapper type in MakeActionCall
1 parent 14a9bd0 commit f4ea6d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

user/contacts.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ declare module 'libsession_util_nodejs' {
5757

5858
export type ContactsConfigActionsType =
5959
| ['init', Uint8Array, Uint8Array | null]
60-
| MakeActionCall<UserConfigWrapper, 'free'>
60+
| MakeActionCall<ContactsWrapper, 'free'>
6161
| MakeActionCall<ContactsWrapper, 'get'>
6262
| MakeActionCall<ContactsWrapper, 'set'>
6363
| MakeActionCall<ContactsWrapper, 'getAll'>

user/convovolatile.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ declare module 'libsession_util_nodejs' {
6262

6363
export type ConvoInfoVolatileConfigActionsType =
6464
| ['init', Uint8Array, Uint8Array | null]
65-
| MakeActionCall<UserConfigWrapper, 'free'>
65+
| MakeActionCall<ConvoInfoVolatileWrapper, 'free'>
6666
| MakeActionCall<ConvoInfoVolatileWrapper, 'get1o1'>
6767
| MakeActionCall<ConvoInfoVolatileWrapper, 'getAll1o1'>
6868
| MakeActionCall<ConvoInfoVolatileWrapper, 'set1o1'>

user/usergroups.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ declare module 'libsession_util_nodejs' {
8484

8585
export type UserGroupsConfigActionsType =
8686
| ['init', Uint8Array, Uint8Array | null]
87-
| MakeActionCall<UserConfigWrapper, 'free'>
87+
| MakeActionCall<UserGroupsWrapper, 'free'>
8888
| MakeActionCall<UserGroupsWrapper, 'getCommunityByFullUrl'>
8989
| MakeActionCall<UserGroupsWrapper, 'setCommunityByFullUrl'>
9090
| MakeActionCall<UserGroupsWrapper, 'getAllCommunities'>

0 commit comments

Comments
 (0)