You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
567 B
TypeScript
27 lines
567 B
TypeScript
2 years ago
|
export enum SnodeNamespaces {
|
||
|
/**
|
||
|
* The messages sent to a closed group are sent and polled from this namespace
|
||
|
*/
|
||
|
ClosedGroupMessages = -10,
|
||
|
|
||
|
/**
|
||
|
* This is the namespace anyone can deposit a message for us
|
||
|
*/
|
||
|
UserMessages = 0,
|
||
|
|
||
|
/**
|
||
|
* This is the namespace used to sync our profile
|
||
|
*/
|
||
|
UserProfile = 2,
|
||
|
|
||
|
/**
|
||
|
* This is the namespace used to sync our contacts
|
||
|
*/
|
||
|
UserContacts = 3,
|
||
|
|
||
|
/**
|
||
|
* This is the namespace used to sync the closed group details for each of the closed groups we are polling
|
||
|
*/
|
||
|
ClosedGroupInfo = 11,
|
||
|
}
|