@@ -4555,6 +4555,7 @@ export type AddonMessagesGetContactRequestsWSResponse = {
45554555 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
45564556 canmessage: boolean; // If the user can be messaged.
45574557 requirescontact: boolean; // If the user requires to be contacts.
4558+ cancreatecontact: boolean; // Is the user permitted to add a contact.
45584559 contactrequests?: { // The contact requests.
45594560 id: number; // The id of the contact request.
45604561 userid: number; // The id of the user who created the contact request.
@@ -4616,6 +4617,7 @@ export type AddonMessagesGetConversationWSResponse = {
46164617 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
46174618 canmessage: boolean; // If the user can be messaged.
46184619 requirescontact: boolean; // If the user requires to be contacts.
4620+ cancreatecontact: boolean; // Is the user permitted to add a contact.
46194621 contactrequests?: { // The contact requests.
46204622 id: number; // The id of the contact request.
46214623 userid: number; // The id of the user who created the contact request.
@@ -4685,6 +4687,7 @@ export type AddonMessagesGetConversationBetweenUsersWSResponse = {
46854687 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
46864688 canmessage: boolean; // If the user can be messaged.
46874689 requirescontact: boolean; // If the user requires to be contacts.
4690+ cancreatecontact: boolean; // Is the user permitted to add a contact.
46884691 contactrequests?: { // The contact requests.
46894692 id: number; // The id of the contact request.
46904693 userid: number; // The id of the user who created the contact request.
@@ -4763,6 +4766,7 @@ export type AddonMessagesGetConversationMembersWSResponse = {
47634766 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
47644767 canmessage: boolean; // If the user can be messaged.
47654768 requirescontact: boolean; // If the user requires to be contacts.
4769+ cancreatecontact: boolean; // Is the user permitted to add a contact.
47664770 contactrequests?: { // The contact requests.
47674771 id: number; // The id of the contact request.
47684772 userid: number; // The id of the user who created the contact request.
@@ -4812,6 +4816,7 @@ export type AddonMessagesGetConversationMessagesWSResponse = {
48124816 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
48134817 canmessage: boolean; // If the user can be messaged.
48144818 requirescontact: boolean; // If the user requires to be contacts.
4819+ cancreatecontact: boolean; // Is the user permitted to add a contact.
48154820 contactrequests?: { // The contact requests.
48164821 id: number; // The id of the contact request.
48174822 userid: number; // The id of the user who created the contact request.
@@ -4882,6 +4887,7 @@ export type AddonMessagesGetConversationsWSResponse = {
48824887 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
48834888 canmessage: boolean; // If the user can be messaged.
48844889 requirescontact: boolean; // If the user requires to be contacts.
4890+ cancreatecontact: boolean; // Is the user permitted to add a contact.
48854891 contactrequests?: { // The contact requests.
48864892 id: number; // The id of the contact request.
48874893 userid: number; // The id of the user who created the contact request.
@@ -4936,6 +4942,7 @@ export type AddonMessagesGetMemberInfoWSResponse = {
49364942 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
49374943 canmessage: boolean; // If the user can be messaged.
49384944 requirescontact: boolean; // If the user requires to be contacts.
4945+ cancreatecontact: boolean; // Is the user permitted to add a contact.
49394946 contactrequests?: { // The contact requests.
49404947 id: number; // The id of the contact request.
49414948 userid: number; // The id of the user who created the contact request.
@@ -5056,6 +5063,7 @@ export type AddonMessagesGetSelfConversationWSResponse = {
50565063 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
50575064 canmessage: boolean; // If the user can be messaged.
50585065 requirescontact: boolean; // If the user requires to be contacts.
5066+ cancreatecontact: boolean; // Is the user permitted to add a contact.
50595067 contactrequests?: { // The contact requests.
50605068 id: number; // The id of the contact request.
50615069 userid: number; // The id of the user who created the contact request.
@@ -5163,6 +5171,7 @@ export type AddonMessagesGetUserContactsWSResponse = {
51635171 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
51645172 canmessage: boolean; // If the user can be messaged.
51655173 requirescontact: boolean; // If the user requires to be contacts.
5174+ cancreatecontact: boolean; // Is the user permitted to add a contact.
51665175 contactrequests?: { // The contact requests.
51675176 id: number; // The id of the contact request.
51685177 userid: number; // The id of the user who created the contact request.
@@ -5395,6 +5404,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
53955404 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
53965405 canmessage: boolean; // If the user can be messaged.
53975406 requirescontact: boolean; // If the user requires to be contacts.
5407+ cancreatecontact: boolean; // Is the user permitted to add a contact.
53985408 contactrequests?: { // The contact requests.
53995409 id: number; // The id of the contact request.
54005410 userid: number; // The id of the user who created the contact request.
@@ -5422,6 +5432,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
54225432 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
54235433 canmessage: boolean; // If the user can be messaged.
54245434 requirescontact: boolean; // If the user requires to be contacts.
5435+ cancreatecontact: boolean; // Is the user permitted to add a contact.
54255436 contactrequests?: { // The contact requests.
54265437 id: number; // The id of the contact request.
54275438 userid: number; // The id of the user who created the contact request.
0 commit comments