@@ -4579,6 +4579,7 @@ export type AddonMessagesGetContactRequestsWSResponse = {
45794579 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
45804580 canmessage: boolean; // If the user can be messaged.
45814581 requirescontact: boolean; // If the user requires to be contacts.
4582+ cancreatecontact: boolean; // Is the user permitted to add a contact.
45824583 contactrequests?: { // The contact requests.
45834584 id: number; // The id of the contact request.
45844585 userid: number; // The id of the user who created the contact request.
@@ -4640,6 +4641,7 @@ export type AddonMessagesGetConversationWSResponse = {
46404641 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
46414642 canmessage: boolean; // If the user can be messaged.
46424643 requirescontact: boolean; // If the user requires to be contacts.
4644+ cancreatecontact: boolean; // Is the user permitted to add a contact.
46434645 contactrequests?: { // The contact requests.
46444646 id: number; // The id of the contact request.
46454647 userid: number; // The id of the user who created the contact request.
@@ -4709,6 +4711,7 @@ export type AddonMessagesGetConversationBetweenUsersWSResponse = {
47094711 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
47104712 canmessage: boolean; // If the user can be messaged.
47114713 requirescontact: boolean; // If the user requires to be contacts.
4714+ cancreatecontact: boolean; // Is the user permitted to add a contact.
47124715 contactrequests?: { // The contact requests.
47134716 id: number; // The id of the contact request.
47144717 userid: number; // The id of the user who created the contact request.
@@ -4787,6 +4790,7 @@ export type AddonMessagesGetConversationMembersWSResponse = {
47874790 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
47884791 canmessage: boolean; // If the user can be messaged.
47894792 requirescontact: boolean; // If the user requires to be contacts.
4793+ cancreatecontact: boolean; // Is the user permitted to add a contact.
47904794 contactrequests?: { // The contact requests.
47914795 id: number; // The id of the contact request.
47924796 userid: number; // The id of the user who created the contact request.
@@ -4836,6 +4840,7 @@ export type AddonMessagesGetConversationMessagesWSResponse = {
48364840 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
48374841 canmessage: boolean; // If the user can be messaged.
48384842 requirescontact: boolean; // If the user requires to be contacts.
4843+ cancreatecontact: boolean; // Is the user permitted to add a contact.
48394844 contactrequests?: { // The contact requests.
48404845 id: number; // The id of the contact request.
48414846 userid: number; // The id of the user who created the contact request.
@@ -4906,6 +4911,7 @@ export type AddonMessagesGetConversationsWSResponse = {
49064911 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
49074912 canmessage: boolean; // If the user can be messaged.
49084913 requirescontact: boolean; // If the user requires to be contacts.
4914+ cancreatecontact: boolean; // Is the user permitted to add a contact.
49094915 contactrequests?: { // The contact requests.
49104916 id: number; // The id of the contact request.
49114917 userid: number; // The id of the user who created the contact request.
@@ -4960,6 +4966,7 @@ export type AddonMessagesGetMemberInfoWSResponse = {
49604966 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
49614967 canmessage: boolean; // If the user can be messaged.
49624968 requirescontact: boolean; // If the user requires to be contacts.
4969+ cancreatecontact: boolean; // Is the user permitted to add a contact.
49634970 contactrequests?: { // The contact requests.
49644971 id: number; // The id of the contact request.
49654972 userid: number; // The id of the user who created the contact request.
@@ -5080,6 +5087,7 @@ export type AddonMessagesGetSelfConversationWSResponse = {
50805087 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
50815088 canmessage: boolean; // If the user can be messaged.
50825089 requirescontact: boolean; // If the user requires to be contacts.
5090+ cancreatecontact: boolean; // Is the user permitted to add a contact.
50835091 contactrequests?: { // The contact requests.
50845092 id: number; // The id of the contact request.
50855093 userid: number; // The id of the user who created the contact request.
@@ -5187,6 +5195,7 @@ export type AddonMessagesGetUserContactsWSResponse = {
51875195 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
51885196 canmessage: boolean; // If the user can be messaged.
51895197 requirescontact: boolean; // If the user requires to be contacts.
5198+ cancreatecontact: boolean; // Is the user permitted to add a contact.
51905199 contactrequests?: { // The contact requests.
51915200 id: number; // The id of the contact request.
51925201 userid: number; // The id of the user who created the contact request.
@@ -5419,6 +5428,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
54195428 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
54205429 canmessage: boolean; // If the user can be messaged.
54215430 requirescontact: boolean; // If the user requires to be contacts.
5431+ cancreatecontact: boolean; // Is the user permitted to add a contact.
54225432 contactrequests?: { // The contact requests.
54235433 id: number; // The id of the contact request.
54245434 userid: number; // The id of the user who created the contact request.
@@ -5446,6 +5456,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
54465456 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
54475457 canmessage: boolean; // If the user can be messaged.
54485458 requirescontact: boolean; // If the user requires to be contacts.
5459+ cancreatecontact: boolean; // Is the user permitted to add a contact.
54495460 contactrequests?: { // The contact requests.
54505461 id: number; // The id of the contact request.
54515462 userid: number; // The id of the user who created the contact request.
0 commit comments