connectfy-shared 0.0.121 → 0.0.123
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 +4 -0
- package/dist/index.d.cts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -9967,6 +9967,10 @@ var NotificationStatus = /* @__PURE__ */ ((NotificationStatus2) => {
|
|
|
9967
9967
|
NotificationStatus2["Unread"] = "unread";
|
|
9968
9968
|
NotificationStatus2["Read"] = "read";
|
|
9969
9969
|
NotificationStatus2["Archived"] = "archived";
|
|
9970
|
+
NotificationStatus2["Pending"] = "pending";
|
|
9971
|
+
NotificationStatus2["Accepted"] = "accepted";
|
|
9972
|
+
NotificationStatus2["Declined"] = "declined";
|
|
9973
|
+
NotificationStatus2["Cancelled"] = "cancelled";
|
|
9970
9974
|
return NotificationStatus2;
|
|
9971
9975
|
})(NotificationStatus || {});
|
|
9972
9976
|
var NotificationChannel = /* @__PURE__ */ ((NotificationChannel2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -395,7 +395,11 @@ declare enum NotificationType {
|
|
|
395
395
|
declare enum NotificationStatus {
|
|
396
396
|
Unread = "unread",
|
|
397
397
|
Read = "read",
|
|
398
|
-
Archived = "archived"
|
|
398
|
+
Archived = "archived",
|
|
399
|
+
Pending = "pending",
|
|
400
|
+
Accepted = "accepted",
|
|
401
|
+
Declined = "declined",
|
|
402
|
+
Cancelled = "cancelled"
|
|
399
403
|
}
|
|
400
404
|
declare enum NotificationChannel {
|
|
401
405
|
InApp = "in_app",
|
|
@@ -691,7 +695,8 @@ interface IAccount {
|
|
|
691
695
|
bio: string | null;
|
|
692
696
|
location: string | null;
|
|
693
697
|
avatar: string | null;
|
|
694
|
-
lastSeen
|
|
698
|
+
lastSeen?: Date;
|
|
699
|
+
isOnline?: boolean;
|
|
695
700
|
birthdayDate: Date;
|
|
696
701
|
createdAt: Date;
|
|
697
702
|
updatedAt: Date;
|
|
@@ -711,7 +716,6 @@ interface INotificationSettings {
|
|
|
711
716
|
notificationContentMode: NOTIFICATION_CONTENT_MODE;
|
|
712
717
|
sendMessageSound: boolean;
|
|
713
718
|
receiveMessageSound: boolean;
|
|
714
|
-
notificationSound: boolean;
|
|
715
719
|
privateMessageSound: boolean;
|
|
716
720
|
groupMessageSound: boolean;
|
|
717
721
|
systemNotificationSound: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -395,7 +395,11 @@ declare enum NotificationType {
|
|
|
395
395
|
declare enum NotificationStatus {
|
|
396
396
|
Unread = "unread",
|
|
397
397
|
Read = "read",
|
|
398
|
-
Archived = "archived"
|
|
398
|
+
Archived = "archived",
|
|
399
|
+
Pending = "pending",
|
|
400
|
+
Accepted = "accepted",
|
|
401
|
+
Declined = "declined",
|
|
402
|
+
Cancelled = "cancelled"
|
|
399
403
|
}
|
|
400
404
|
declare enum NotificationChannel {
|
|
401
405
|
InApp = "in_app",
|
|
@@ -691,7 +695,8 @@ interface IAccount {
|
|
|
691
695
|
bio: string | null;
|
|
692
696
|
location: string | null;
|
|
693
697
|
avatar: string | null;
|
|
694
|
-
lastSeen
|
|
698
|
+
lastSeen?: Date;
|
|
699
|
+
isOnline?: boolean;
|
|
695
700
|
birthdayDate: Date;
|
|
696
701
|
createdAt: Date;
|
|
697
702
|
updatedAt: Date;
|
|
@@ -711,7 +716,6 @@ interface INotificationSettings {
|
|
|
711
716
|
notificationContentMode: NOTIFICATION_CONTENT_MODE;
|
|
712
717
|
sendMessageSound: boolean;
|
|
713
718
|
receiveMessageSound: boolean;
|
|
714
|
-
notificationSound: boolean;
|
|
715
719
|
privateMessageSound: boolean;
|
|
716
720
|
groupMessageSound: boolean;
|
|
717
721
|
systemNotificationSound: boolean;
|
package/dist/index.mjs
CHANGED
|
@@ -9866,6 +9866,10 @@ var NotificationStatus = /* @__PURE__ */ ((NotificationStatus2) => {
|
|
|
9866
9866
|
NotificationStatus2["Unread"] = "unread";
|
|
9867
9867
|
NotificationStatus2["Read"] = "read";
|
|
9868
9868
|
NotificationStatus2["Archived"] = "archived";
|
|
9869
|
+
NotificationStatus2["Pending"] = "pending";
|
|
9870
|
+
NotificationStatus2["Accepted"] = "accepted";
|
|
9871
|
+
NotificationStatus2["Declined"] = "declined";
|
|
9872
|
+
NotificationStatus2["Cancelled"] = "cancelled";
|
|
9869
9873
|
return NotificationStatus2;
|
|
9870
9874
|
})(NotificationStatus || {});
|
|
9871
9875
|
var NotificationChannel = /* @__PURE__ */ ((NotificationChannel2) => {
|