@connectedxm/admin-sdk 6.32.1 → 6.32.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -11048,6 +11048,7 @@ export interface NotificationPreferences {
11048
11048
  'chatPush': boolean;
11049
11049
  'chatUnreadEmail': boolean;
11050
11050
  'chatUnreadPush': boolean;
11051
+ 'activityMentionPush': boolean;
11051
11052
  'organizationAnnouncementEmail': boolean;
11052
11053
  'organizationAnnouncementPush': boolean;
11053
11054
  'groupInvitationEmail': boolean;
@@ -11074,7 +11075,8 @@ export enum NotificationType {
11074
11075
  GroupInvitation = 'GROUP_INVITATION',
11075
11076
  GroupRequestAccepted = 'GROUP_REQUEST_ACCEPTED',
11076
11077
  Content = 'CONTENT',
11077
- SupportTicketMessage = 'SUPPORT_TICKET_MESSAGE'
11078
+ SupportTicketMessage = 'SUPPORT_TICKET_MESSAGE',
11079
+ Mention = 'MENTION'
11078
11080
  }
11079
11081
 
11080
11082
 
package/dist/api.d.ts CHANGED
@@ -9761,6 +9761,7 @@ export interface NotificationPreferences {
9761
9761
  'chatPush': boolean;
9762
9762
  'chatUnreadEmail': boolean;
9763
9763
  'chatUnreadPush': boolean;
9764
+ 'activityMentionPush': boolean;
9764
9765
  'organizationAnnouncementEmail': boolean;
9765
9766
  'organizationAnnouncementPush': boolean;
9766
9767
  'groupInvitationEmail': boolean;
@@ -9790,7 +9791,8 @@ export declare enum NotificationType {
9790
9791
  GroupInvitation = "GROUP_INVITATION",
9791
9792
  GroupRequestAccepted = "GROUP_REQUEST_ACCEPTED",
9792
9793
  Content = "CONTENT",
9793
- SupportTicketMessage = "SUPPORT_TICKET_MESSAGE"
9794
+ SupportTicketMessage = "SUPPORT_TICKET_MESSAGE",
9795
+ Mention = "MENTION"
9794
9796
  }
9795
9797
  export declare enum OnSiteScanType {
9796
9798
  Both = "both",
package/dist/api.js CHANGED
@@ -2142,6 +2142,7 @@ var NotificationType;
2142
2142
  NotificationType["GroupRequestAccepted"] = "GROUP_REQUEST_ACCEPTED";
2143
2143
  NotificationType["Content"] = "CONTENT";
2144
2144
  NotificationType["SupportTicketMessage"] = "SUPPORT_TICKET_MESSAGE";
2145
+ NotificationType["Mention"] = "MENTION";
2145
2146
  })(NotificationType || (exports.NotificationType = NotificationType = {}));
2146
2147
  var OnSiteScanType;
2147
2148
  (function (OnSiteScanType) {
package/dist/esm/api.d.ts CHANGED
@@ -9761,6 +9761,7 @@ export interface NotificationPreferences {
9761
9761
  'chatPush': boolean;
9762
9762
  'chatUnreadEmail': boolean;
9763
9763
  'chatUnreadPush': boolean;
9764
+ 'activityMentionPush': boolean;
9764
9765
  'organizationAnnouncementEmail': boolean;
9765
9766
  'organizationAnnouncementPush': boolean;
9766
9767
  'groupInvitationEmail': boolean;
@@ -9790,7 +9791,8 @@ export declare enum NotificationType {
9790
9791
  GroupInvitation = "GROUP_INVITATION",
9791
9792
  GroupRequestAccepted = "GROUP_REQUEST_ACCEPTED",
9792
9793
  Content = "CONTENT",
9793
- SupportTicketMessage = "SUPPORT_TICKET_MESSAGE"
9794
+ SupportTicketMessage = "SUPPORT_TICKET_MESSAGE",
9795
+ Mention = "MENTION"
9794
9796
  }
9795
9797
  export declare enum OnSiteScanType {
9796
9798
  Both = "both",
package/dist/esm/api.js CHANGED
@@ -2112,6 +2112,7 @@ export var NotificationType;
2112
2112
  NotificationType["GroupRequestAccepted"] = "GROUP_REQUEST_ACCEPTED";
2113
2113
  NotificationType["Content"] = "CONTENT";
2114
2114
  NotificationType["SupportTicketMessage"] = "SUPPORT_TICKET_MESSAGE";
2115
+ NotificationType["Mention"] = "MENTION";
2115
2116
  })(NotificationType || (NotificationType = {}));
2116
2117
  export var OnSiteScanType;
2117
2118
  (function (OnSiteScanType) {
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **chatPush** | **boolean** | | [default to undefined]
15
15
  **chatUnreadEmail** | **boolean** | | [default to undefined]
16
16
  **chatUnreadPush** | **boolean** | | [default to undefined]
17
+ **activityMentionPush** | **boolean** | | [default to undefined]
17
18
  **organizationAnnouncementEmail** | **boolean** | | [default to undefined]
18
19
  **organizationAnnouncementPush** | **boolean** | | [default to undefined]
19
20
  **groupInvitationEmail** | **boolean** | | [default to undefined]
@@ -36,6 +37,7 @@ const instance: NotificationPreferences = {
36
37
  chatPush,
37
38
  chatUnreadEmail,
38
39
  chatUnreadPush,
40
+ activityMentionPush,
39
41
  organizationAnnouncementEmail,
40
42
  organizationAnnouncementPush,
41
43
  groupInvitationEmail,
@@ -27,4 +27,6 @@
27
27
 
28
28
  * `SupportTicketMessage` (value: `'SUPPORT_TICKET_MESSAGE'`)
29
29
 
30
+ * `Mention` (value: `'MENTION'`)
31
+
30
32
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.32.1",
3
+ "version": "6.32.2",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {