@connectedxm/admin 6.32.0 → 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/dist/index.cjs CHANGED
@@ -3805,6 +3805,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
3805
3805
  NotificationType2["GROUP_REQUEST_ACCEPTED"] = "GROUP_REQUEST_ACCEPTED";
3806
3806
  NotificationType2["CONTENT"] = "CONTENT";
3807
3807
  NotificationType2["SUPPORT_TICKET_MESSAGE"] = "SUPPORT_TICKET_MESSAGE";
3808
+ NotificationType2["MENTION"] = "MENTION";
3808
3809
  return NotificationType2;
3809
3810
  })(NotificationType || {});
3810
3811
  var AdminNotificationType = /* @__PURE__ */ ((AdminNotificationType2) => {
package/dist/index.d.cts CHANGED
@@ -145,7 +145,8 @@ declare enum NotificationType {
145
145
  GROUP_INVITATION = "GROUP_INVITATION",
146
146
  GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED",
147
147
  CONTENT = "CONTENT",
148
- SUPPORT_TICKET_MESSAGE = "SUPPORT_TICKET_MESSAGE"
148
+ SUPPORT_TICKET_MESSAGE = "SUPPORT_TICKET_MESSAGE",
149
+ MENTION = "MENTION"
149
150
  }
150
151
  declare enum AdminNotificationType {
151
152
  SUPPORT_TICKET_CREATED = "SUPPORT_TICKET_CREATED",
@@ -1052,6 +1053,7 @@ interface Event extends BaseEvent {
1052
1053
  continuousScanning: boolean;
1053
1054
  scanType: OnSiteScanType;
1054
1055
  activationsDescription: string | null;
1056
+ activationsLabel: string;
1055
1057
  externalMeetingUrl: string | null;
1056
1058
  options: object | null;
1057
1059
  }
@@ -1065,6 +1067,7 @@ interface EventTranslation {
1065
1067
  imageId: string | null;
1066
1068
  image: BaseImage | null;
1067
1069
  activationsDescription: string | null;
1070
+ activationsLabel: string | null;
1068
1071
  createdAt: string;
1069
1072
  updatedAt: string;
1070
1073
  }
@@ -1476,6 +1479,7 @@ interface NotificationPreferences {
1476
1479
  chatPush: boolean;
1477
1480
  chatUnreadEmail: boolean;
1478
1481
  chatUnreadPush: boolean;
1482
+ activityMentionPush: boolean;
1479
1483
  organizationAnnouncementEmail: boolean;
1480
1484
  organizationAnnouncementPush: boolean;
1481
1485
  groupInvitationEmail: boolean;
@@ -5294,6 +5298,7 @@ interface EventCreateInputs {
5294
5298
  continuousScanning?: boolean;
5295
5299
  scanType?: keyof typeof OnSiteScanType | null;
5296
5300
  activationsDescription?: string | null;
5301
+ activationsLabel?: string;
5297
5302
  }
5298
5303
  interface EventUpdateInputs {
5299
5304
  featured?: boolean;
@@ -5357,6 +5362,7 @@ interface EventUpdateInputs {
5357
5362
  continuousScanning?: boolean;
5358
5363
  scanType?: keyof typeof OnSiteScanType | null;
5359
5364
  activationsDescription?: string | null;
5365
+ activationsLabel?: string;
5360
5366
  }
5361
5367
  interface EventEmailUpdateInputs {
5362
5368
  body?: string | null;
@@ -5801,6 +5807,7 @@ interface EventTranslationUpdateInputs {
5801
5807
  reservationDescription?: string | null;
5802
5808
  imageId?: string | null;
5803
5809
  activationsDescription?: string | null;
5810
+ activationsLabel?: string | null;
5804
5811
  }
5805
5812
  interface FileUpdateInputs {
5806
5813
  name?: string;
package/dist/index.d.ts CHANGED
@@ -145,7 +145,8 @@ declare enum NotificationType {
145
145
  GROUP_INVITATION = "GROUP_INVITATION",
146
146
  GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED",
147
147
  CONTENT = "CONTENT",
148
- SUPPORT_TICKET_MESSAGE = "SUPPORT_TICKET_MESSAGE"
148
+ SUPPORT_TICKET_MESSAGE = "SUPPORT_TICKET_MESSAGE",
149
+ MENTION = "MENTION"
149
150
  }
150
151
  declare enum AdminNotificationType {
151
152
  SUPPORT_TICKET_CREATED = "SUPPORT_TICKET_CREATED",
@@ -1052,6 +1053,7 @@ interface Event extends BaseEvent {
1052
1053
  continuousScanning: boolean;
1053
1054
  scanType: OnSiteScanType;
1054
1055
  activationsDescription: string | null;
1056
+ activationsLabel: string;
1055
1057
  externalMeetingUrl: string | null;
1056
1058
  options: object | null;
1057
1059
  }
@@ -1065,6 +1067,7 @@ interface EventTranslation {
1065
1067
  imageId: string | null;
1066
1068
  image: BaseImage | null;
1067
1069
  activationsDescription: string | null;
1070
+ activationsLabel: string | null;
1068
1071
  createdAt: string;
1069
1072
  updatedAt: string;
1070
1073
  }
@@ -1476,6 +1479,7 @@ interface NotificationPreferences {
1476
1479
  chatPush: boolean;
1477
1480
  chatUnreadEmail: boolean;
1478
1481
  chatUnreadPush: boolean;
1482
+ activityMentionPush: boolean;
1479
1483
  organizationAnnouncementEmail: boolean;
1480
1484
  organizationAnnouncementPush: boolean;
1481
1485
  groupInvitationEmail: boolean;
@@ -5294,6 +5298,7 @@ interface EventCreateInputs {
5294
5298
  continuousScanning?: boolean;
5295
5299
  scanType?: keyof typeof OnSiteScanType | null;
5296
5300
  activationsDescription?: string | null;
5301
+ activationsLabel?: string;
5297
5302
  }
5298
5303
  interface EventUpdateInputs {
5299
5304
  featured?: boolean;
@@ -5357,6 +5362,7 @@ interface EventUpdateInputs {
5357
5362
  continuousScanning?: boolean;
5358
5363
  scanType?: keyof typeof OnSiteScanType | null;
5359
5364
  activationsDescription?: string | null;
5365
+ activationsLabel?: string;
5360
5366
  }
5361
5367
  interface EventEmailUpdateInputs {
5362
5368
  body?: string | null;
@@ -5801,6 +5807,7 @@ interface EventTranslationUpdateInputs {
5801
5807
  reservationDescription?: string | null;
5802
5808
  imageId?: string | null;
5803
5809
  activationsDescription?: string | null;
5810
+ activationsLabel?: string | null;
5804
5811
  }
5805
5812
  interface FileUpdateInputs {
5806
5813
  name?: string;
package/dist/index.js CHANGED
@@ -208,6 +208,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
208
208
  NotificationType2["GROUP_REQUEST_ACCEPTED"] = "GROUP_REQUEST_ACCEPTED";
209
209
  NotificationType2["CONTENT"] = "CONTENT";
210
210
  NotificationType2["SUPPORT_TICKET_MESSAGE"] = "SUPPORT_TICKET_MESSAGE";
211
+ NotificationType2["MENTION"] = "MENTION";
211
212
  return NotificationType2;
212
213
  })(NotificationType || {});
213
214
  var AdminNotificationType = /* @__PURE__ */ ((AdminNotificationType2) => {
package/openapi.json CHANGED
@@ -93059,7 +93059,8 @@
93059
93059
  "GROUP_INVITATION",
93060
93060
  "GROUP_REQUEST_ACCEPTED",
93061
93061
  "CONTENT",
93062
- "SUPPORT_TICKET_MESSAGE"
93062
+ "SUPPORT_TICKET_MESSAGE",
93063
+ "MENTION"
93063
93064
  ]
93064
93065
  },
93065
93066
  "AdminNotificationType": {
@@ -96951,6 +96952,9 @@
96951
96952
  "type": "string",
96952
96953
  "nullable": true
96953
96954
  },
96955
+ "activationsLabel": {
96956
+ "type": "string"
96957
+ },
96954
96958
  "externalMeetingUrl": {
96955
96959
  "type": "string",
96956
96960
  "nullable": true
@@ -97002,6 +97006,7 @@
97002
97006
  "continuousScanning",
97003
97007
  "scanType",
97004
97008
  "activationsDescription",
97009
+ "activationsLabel",
97005
97010
  "externalMeetingUrl",
97006
97011
  "options"
97007
97012
  ]
@@ -97047,6 +97052,10 @@
97047
97052
  "type": "string",
97048
97053
  "nullable": true
97049
97054
  },
97055
+ "activationsLabel": {
97056
+ "type": "string",
97057
+ "nullable": true
97058
+ },
97050
97059
  "createdAt": {
97051
97060
  "type": "string"
97052
97061
  },
@@ -97064,6 +97073,7 @@
97064
97073
  "imageId",
97065
97074
  "image",
97066
97075
  "activationsDescription",
97076
+ "activationsLabel",
97067
97077
  "createdAt",
97068
97078
  "updatedAt"
97069
97079
  ]
@@ -98556,6 +98566,9 @@
98556
98566
  "chatUnreadPush": {
98557
98567
  "type": "boolean"
98558
98568
  },
98569
+ "activityMentionPush": {
98570
+ "type": "boolean"
98571
+ },
98559
98572
  "organizationAnnouncementEmail": {
98560
98573
  "type": "boolean"
98561
98574
  },
@@ -98585,6 +98598,7 @@
98585
98598
  "chatPush",
98586
98599
  "chatUnreadEmail",
98587
98600
  "chatUnreadPush",
98601
+ "activityMentionPush",
98588
98602
  "organizationAnnouncementEmail",
98589
98603
  "organizationAnnouncementPush",
98590
98604
  "groupInvitationEmail",
@@ -114851,6 +114865,9 @@
114851
114865
  "activationsDescription": {
114852
114866
  "type": "string",
114853
114867
  "nullable": true
114868
+ },
114869
+ "activationsLabel": {
114870
+ "type": "string"
114854
114871
  }
114855
114872
  },
114856
114873
  "required": [
@@ -115134,6 +115151,9 @@
115134
115151
  "activationsDescription": {
115135
115152
  "type": "string",
115136
115153
  "nullable": true
115154
+ },
115155
+ "activationsLabel": {
115156
+ "type": "string"
115137
115157
  }
115138
115158
  }
115139
115159
  },
@@ -116992,6 +117012,10 @@
116992
117012
  "activationsDescription": {
116993
117013
  "type": "string",
116994
117014
  "nullable": true
117015
+ },
117016
+ "activationsLabel": {
117017
+ "type": "string",
117018
+ "nullable": true
116995
117019
  }
116996
117020
  }
116997
117021
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.32.0",
3
+ "version": "6.32.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",