@vendasta/conversation 0.34.0 → 0.36.0

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.
@@ -161,6 +161,7 @@ export interface MediaInterface {
161
161
  mediaContentType?: string;
162
162
  mediaLocationPath?: string;
163
163
  mediaFileName?: string;
164
+ fileSize?: number;
164
165
  }
165
166
  export interface MetadataInterface {
166
167
  identifier?: e.MetadataIdentifier;
@@ -12,6 +12,7 @@ export interface ConversationInterface {
12
12
  originLocation?: e.PlatformLocation;
13
13
  originLocationExternalId?: string;
14
14
  lastSeenByParticipant?: LastSeenByParticipantInterface[];
15
+ conversationViewIds?: string[];
15
16
  }
16
17
  export interface ConversationKeyInterface {
17
18
  subjectParticipants?: SubjectParticipantInterface[];
@@ -280,6 +280,7 @@ export declare class Media implements i.MediaInterface {
280
280
  mediaContentType: string;
281
281
  mediaLocationPath: string;
282
282
  mediaFileName: string;
283
+ fileSize: number;
283
284
  static fromProto(proto: any): Media;
284
285
  constructor(kwargs?: i.MediaInterface);
285
286
  toApiJson(): object;
@@ -14,6 +14,7 @@ export declare class Conversation implements i.ConversationInterface {
14
14
  originLocation: e.PlatformLocation;
15
15
  originLocationExternalId: string;
16
16
  lastSeenByParticipant: LastSeenByParticipant[];
17
+ conversationViewIds: string[];
17
18
  static fromProto(proto: any): Conversation;
18
19
  constructor(kwargs?: i.ConversationInterface);
19
20
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.34.0",
3
+ "version": "0.36.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"