@ember-home/unbound-ts-client 0.0.46 → 0.0.48
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.d.mts +17 -11
- package/dist/index.d.ts +17 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -704,12 +704,6 @@ interface APIContactUpdate {
|
|
|
704
704
|
* @interface APIConversation
|
|
705
705
|
*/
|
|
706
706
|
interface APIConversation {
|
|
707
|
-
/**
|
|
708
|
-
*
|
|
709
|
-
* @type {ConversationStatus}
|
|
710
|
-
* @memberof APIConversation
|
|
711
|
-
*/
|
|
712
|
-
'status': ConversationStatus;
|
|
713
707
|
/**
|
|
714
708
|
*
|
|
715
709
|
* @type {string}
|
|
@@ -718,16 +712,16 @@ interface APIConversation {
|
|
|
718
712
|
'conversationId': string;
|
|
719
713
|
/**
|
|
720
714
|
*
|
|
721
|
-
* @type {
|
|
715
|
+
* @type {ConversationStatus}
|
|
722
716
|
* @memberof APIConversation
|
|
723
717
|
*/
|
|
724
|
-
'
|
|
718
|
+
'status': ConversationStatus;
|
|
725
719
|
/**
|
|
726
720
|
*
|
|
727
721
|
* @type {string}
|
|
728
722
|
* @memberof APIConversation
|
|
729
723
|
*/
|
|
730
|
-
'
|
|
724
|
+
'lastMessageId'?: string | null;
|
|
731
725
|
/**
|
|
732
726
|
*
|
|
733
727
|
* @type {string}
|
|
@@ -758,6 +752,12 @@ interface APIConversation {
|
|
|
758
752
|
* @memberof APIConversation
|
|
759
753
|
*/
|
|
760
754
|
'conversationTypeData': Conversationtypedata;
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {Array<ToItemApi>}
|
|
758
|
+
* @memberof APIConversation
|
|
759
|
+
*/
|
|
760
|
+
'to': Array<ToItemApi>;
|
|
761
761
|
}
|
|
762
762
|
/**
|
|
763
763
|
*
|
|
@@ -992,7 +992,13 @@ interface APIMessage {
|
|
|
992
992
|
* @type {string}
|
|
993
993
|
* @memberof APIMessage
|
|
994
994
|
*/
|
|
995
|
-
'
|
|
995
|
+
'staffReadAt'?: string | null;
|
|
996
|
+
/**
|
|
997
|
+
*
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof APIMessage
|
|
1000
|
+
*/
|
|
1001
|
+
'guestReadAt'?: string | null;
|
|
996
1002
|
/**
|
|
997
1003
|
*
|
|
998
1004
|
* @type {string}
|
|
@@ -2721,7 +2727,7 @@ interface SubjectApi {
|
|
|
2721
2727
|
* @type {string}
|
|
2722
2728
|
* @memberof SubjectApi
|
|
2723
2729
|
*/
|
|
2724
|
-
'guestName'
|
|
2730
|
+
'guestName'?: string;
|
|
2725
2731
|
/**
|
|
2726
2732
|
*
|
|
2727
2733
|
* @type {string}
|
package/dist/index.d.ts
CHANGED
|
@@ -704,12 +704,6 @@ interface APIContactUpdate {
|
|
|
704
704
|
* @interface APIConversation
|
|
705
705
|
*/
|
|
706
706
|
interface APIConversation {
|
|
707
|
-
/**
|
|
708
|
-
*
|
|
709
|
-
* @type {ConversationStatus}
|
|
710
|
-
* @memberof APIConversation
|
|
711
|
-
*/
|
|
712
|
-
'status': ConversationStatus;
|
|
713
707
|
/**
|
|
714
708
|
*
|
|
715
709
|
* @type {string}
|
|
@@ -718,16 +712,16 @@ interface APIConversation {
|
|
|
718
712
|
'conversationId': string;
|
|
719
713
|
/**
|
|
720
714
|
*
|
|
721
|
-
* @type {
|
|
715
|
+
* @type {ConversationStatus}
|
|
722
716
|
* @memberof APIConversation
|
|
723
717
|
*/
|
|
724
|
-
'
|
|
718
|
+
'status': ConversationStatus;
|
|
725
719
|
/**
|
|
726
720
|
*
|
|
727
721
|
* @type {string}
|
|
728
722
|
* @memberof APIConversation
|
|
729
723
|
*/
|
|
730
|
-
'
|
|
724
|
+
'lastMessageId'?: string | null;
|
|
731
725
|
/**
|
|
732
726
|
*
|
|
733
727
|
* @type {string}
|
|
@@ -758,6 +752,12 @@ interface APIConversation {
|
|
|
758
752
|
* @memberof APIConversation
|
|
759
753
|
*/
|
|
760
754
|
'conversationTypeData': Conversationtypedata;
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {Array<ToItemApi>}
|
|
758
|
+
* @memberof APIConversation
|
|
759
|
+
*/
|
|
760
|
+
'to': Array<ToItemApi>;
|
|
761
761
|
}
|
|
762
762
|
/**
|
|
763
763
|
*
|
|
@@ -992,7 +992,13 @@ interface APIMessage {
|
|
|
992
992
|
* @type {string}
|
|
993
993
|
* @memberof APIMessage
|
|
994
994
|
*/
|
|
995
|
-
'
|
|
995
|
+
'staffReadAt'?: string | null;
|
|
996
|
+
/**
|
|
997
|
+
*
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof APIMessage
|
|
1000
|
+
*/
|
|
1001
|
+
'guestReadAt'?: string | null;
|
|
996
1002
|
/**
|
|
997
1003
|
*
|
|
998
1004
|
* @type {string}
|
|
@@ -2721,7 +2727,7 @@ interface SubjectApi {
|
|
|
2721
2727
|
* @type {string}
|
|
2722
2728
|
* @memberof SubjectApi
|
|
2723
2729
|
*/
|
|
2724
|
-
'guestName'
|
|
2730
|
+
'guestName'?: string;
|
|
2725
2731
|
/**
|
|
2726
2732
|
*
|
|
2727
2733
|
* @type {string}
|