@@ -4546,6 +4546,7 @@ export type AddonMessagesGetContactRequestsWSResponse = {
45464546 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
45474547 canmessage: boolean; // If the user can be messaged.
45484548 requirescontact: boolean; // If the user requires to be contacts.
4549+ cancreatecontact: boolean; // Is the user permitted to add a contact.
45494550 contactrequests?: { // The contact requests.
45504551 id: number; // The id of the contact request.
45514552 userid: number; // The id of the user who created the contact request.
@@ -4607,6 +4608,7 @@ export type AddonMessagesGetConversationWSResponse = {
46074608 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
46084609 canmessage: boolean; // If the user can be messaged.
46094610 requirescontact: boolean; // If the user requires to be contacts.
4611+ cancreatecontact: boolean; // Is the user permitted to add a contact.
46104612 contactrequests?: { // The contact requests.
46114613 id: number; // The id of the contact request.
46124614 userid: number; // The id of the user who created the contact request.
@@ -4676,6 +4678,7 @@ export type AddonMessagesGetConversationBetweenUsersWSResponse = {
46764678 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
46774679 canmessage: boolean; // If the user can be messaged.
46784680 requirescontact: boolean; // If the user requires to be contacts.
4681+ cancreatecontact: boolean; // Is the user permitted to add a contact.
46794682 contactrequests?: { // The contact requests.
46804683 id: number; // The id of the contact request.
46814684 userid: number; // The id of the user who created the contact request.
@@ -4754,6 +4757,7 @@ export type AddonMessagesGetConversationMembersWSResponse = {
47544757 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
47554758 canmessage: boolean; // If the user can be messaged.
47564759 requirescontact: boolean; // If the user requires to be contacts.
4760+ cancreatecontact: boolean; // Is the user permitted to add a contact.
47574761 contactrequests?: { // The contact requests.
47584762 id: number; // The id of the contact request.
47594763 userid: number; // The id of the user who created the contact request.
@@ -4803,6 +4807,7 @@ export type AddonMessagesGetConversationMessagesWSResponse = {
48034807 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
48044808 canmessage: boolean; // If the user can be messaged.
48054809 requirescontact: boolean; // If the user requires to be contacts.
4810+ cancreatecontact: boolean; // Is the user permitted to add a contact.
48064811 contactrequests?: { // The contact requests.
48074812 id: number; // The id of the contact request.
48084813 userid: number; // The id of the user who created the contact request.
@@ -4873,6 +4878,7 @@ export type AddonMessagesGetConversationsWSResponse = {
48734878 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
48744879 canmessage: boolean; // If the user can be messaged.
48754880 requirescontact: boolean; // If the user requires to be contacts.
4881+ cancreatecontact: boolean; // Is the user permitted to add a contact.
48764882 contactrequests?: { // The contact requests.
48774883 id: number; // The id of the contact request.
48784884 userid: number; // The id of the user who created the contact request.
@@ -4927,6 +4933,7 @@ export type AddonMessagesGetMemberInfoWSResponse = {
49274933 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
49284934 canmessage: boolean; // If the user can be messaged.
49294935 requirescontact: boolean; // If the user requires to be contacts.
4936+ cancreatecontact: boolean; // Is the user permitted to add a contact.
49304937 contactrequests?: { // The contact requests.
49314938 id: number; // The id of the contact request.
49324939 userid: number; // The id of the user who created the contact request.
@@ -5047,6 +5054,7 @@ export type AddonMessagesGetSelfConversationWSResponse = {
50475054 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
50485055 canmessage: boolean; // If the user can be messaged.
50495056 requirescontact: boolean; // If the user requires to be contacts.
5057+ cancreatecontact: boolean; // Is the user permitted to add a contact.
50505058 contactrequests?: { // The contact requests.
50515059 id: number; // The id of the contact request.
50525060 userid: number; // The id of the user who created the contact request.
@@ -5154,6 +5162,7 @@ export type AddonMessagesGetUserContactsWSResponse = {
51545162 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
51555163 canmessage: boolean; // If the user can be messaged.
51565164 requirescontact: boolean; // If the user requires to be contacts.
5165+ cancreatecontact: boolean; // Is the user permitted to add a contact.
51575166 contactrequests?: { // The contact requests.
51585167 id: number; // The id of the contact request.
51595168 userid: number; // The id of the user who created the contact request.
@@ -5386,6 +5395,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
53865395 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
53875396 canmessage: boolean; // If the user can be messaged.
53885397 requirescontact: boolean; // If the user requires to be contacts.
5398+ cancreatecontact: boolean; // Is the user permitted to add a contact.
53895399 contactrequests?: { // The contact requests.
53905400 id: number; // The id of the contact request.
53915401 userid: number; // The id of the user who created the contact request.
@@ -5413,6 +5423,7 @@ export type AddonMessagesMessageSearchUsersWSResponse = {
54135423 canmessageevenifblocked: boolean; // If the user can still message even if they get blocked.
54145424 canmessage: boolean; // If the user can be messaged.
54155425 requirescontact: boolean; // If the user requires to be contacts.
5426+ cancreatecontact: boolean; // Is the user permitted to add a contact.
54165427 contactrequests?: { // The contact requests.
54175428 id: number; // The id of the contact request.
54185429 userid: number; // The id of the user who created the contact request.
0 commit comments