@vendasta/conversation 0.55.0 → 0.57.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.
Files changed (31) hide show
  1. package/esm2020/lib/_internal/enums/common.enum.mjs +2 -1
  2. package/esm2020/lib/_internal/enums/participant.enum.mjs +2 -1
  3. package/esm2020/lib/_internal/inbox.api.service.mjs +8 -3
  4. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/common.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/configuration.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  8. package/esm2020/lib/_internal/interfaces/participant.interface.mjs +1 -7
  9. package/esm2020/lib/_internal/objects/api.mjs +63 -2
  10. package/esm2020/lib/_internal/objects/common.mjs +27 -1
  11. package/esm2020/lib/_internal/objects/configuration.mjs +36 -1
  12. package/esm2020/lib/_internal/objects/index.mjs +4 -4
  13. package/esm2020/lib/_internal/objects/participant.mjs +14 -1
  14. package/fesm2015/vendasta-conversation.mjs +142 -1
  15. package/fesm2015/vendasta-conversation.mjs.map +1 -1
  16. package/fesm2020/vendasta-conversation.mjs +142 -1
  17. package/fesm2020/vendasta-conversation.mjs.map +1 -1
  18. package/lib/_internal/enums/common.enum.d.ts +2 -1
  19. package/lib/_internal/enums/participant.enum.d.ts +2 -1
  20. package/lib/_internal/inbox.api.service.d.ts +3 -2
  21. package/lib/_internal/interfaces/api.interface.d.ts +10 -1
  22. package/lib/_internal/interfaces/common.interface.d.ts +4 -0
  23. package/lib/_internal/interfaces/configuration.interface.d.ts +8 -0
  24. package/lib/_internal/interfaces/index.d.ts +3 -3
  25. package/lib/_internal/interfaces/participant.interface.d.ts +3 -0
  26. package/lib/_internal/objects/api.d.ts +16 -1
  27. package/lib/_internal/objects/common.d.ts +7 -0
  28. package/lib/_internal/objects/configuration.d.ts +11 -0
  29. package/lib/_internal/objects/index.d.ts +3 -3
  30. package/lib/_internal/objects/participant.d.ts +3 -0
  31. package/package.json +1 -1
@@ -8,7 +8,8 @@ export declare enum GlobalParticipantType {
8
8
  GLOBAL_PARTICIPANT_TYPE_DIGITAL_AGENT = 6,
9
9
  GLOBAL_PARTICIPANT_TYPE_VENDOR = 7,
10
10
  GLOBAL_PARTICIPANT_TYPE_OPENAI_BOT = 8,
11
- GLOBAL_PARTICIPANT_TYPE_ANONYMOUS = 9
11
+ GLOBAL_PARTICIPANT_TYPE_ANONYMOUS = 9,
12
+ GLOBAL_PARTICIPANT_TYPE_GROUP = 10
12
13
  }
13
14
  export declare enum SortDirection {
14
15
  SORT_DIRECTION_DESCENDING = 0,
@@ -8,5 +8,6 @@ export declare enum ParticipantType {
8
8
  PARTICIPANT_TYPE_DIGITAL_AGENT = 6,
9
9
  PARTICIPANT_TYPE_VENDOR = 7,
10
10
  PARTICIPANT_TYPE_OPENAI_BOT = 8,
11
- PARTICIPANT_TYPE_ANONYMOUS = 9
11
+ PARTICIPANT_TYPE_ANONYMOUS = 9,
12
+ PARTICIPANT_TYPE_GROUP = 10
12
13
  }
@@ -1,5 +1,5 @@
1
- import { GetConfigurationRequest, GetConfigurationResponse, GetMultiConfigurationRequest, GetMultiConfigurationResponse, UpsertConfigurationRequest, UpsertConfigurationResponse } from './objects/';
2
- import { GetConfigurationRequestInterface, GetMultiConfigurationRequestInterface, UpsertConfigurationRequestInterface } from './interfaces/';
1
+ import { GetConfigurationRequest, GetConfigurationResponse, GetMultiConfigurationRequest, GetMultiConfigurationResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse } from './objects/';
2
+ import { GetConfigurationRequestInterface, GetMultiConfigurationRequestInterface, UpsertConfigurationRequestInterface, UpsertProductFeatureRequestInterface } from './interfaces/';
3
3
  import { HttpClient } from '@angular/common/http';
4
4
  import { HostService } from '../_generated/host.service';
5
5
  import { Observable } from 'rxjs';
@@ -13,6 +13,7 @@ export declare class InboxApiService {
13
13
  getConfiguration(r: GetConfigurationRequest | GetConfigurationRequestInterface): Observable<GetConfigurationResponse>;
14
14
  getMultiConfiguration(r: GetMultiConfigurationRequest | GetMultiConfigurationRequestInterface): Observable<GetMultiConfigurationResponse>;
15
15
  upsertConfiguration(r: UpsertConfigurationRequest | UpsertConfigurationRequestInterface): Observable<UpsertConfigurationResponse>;
16
+ upsertProductFeature(r: UpsertProductFeatureRequest | UpsertProductFeatureRequestInterface): Observable<UpsertProductFeatureResponse>;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<InboxApiService, never>;
17
18
  static ɵprov: i0.ɵɵInjectableDeclaration<InboxApiService>;
18
19
  }
@@ -1,4 +1,4 @@
1
- import { ConfigurationInterface } from './configuration.interface';
1
+ import { ConfigurationInterface, ProductFeatureInterface } from './configuration.interface';
2
2
  import { ConversationInterface, ConversationKeyInterface } from './conversation.interface';
3
3
  import { DataSourcesInterface, WidgetInterface } from './widget.interface';
4
4
  import { FieldMaskInterface } from './field-mask.interface';
@@ -58,6 +58,7 @@ export interface CreateMultiMessagesRequestInterface {
58
58
  }
59
59
  export interface CreateWidgetConversationRequestInterface {
60
60
  widgetId?: string;
61
+ chatSourceUrl?: string;
61
62
  }
62
63
  export interface CreateWidgetConversationResponseInterface {
63
64
  widgetParticipantToken?: string;
@@ -381,3 +382,11 @@ export interface UpsertConfigurationRequestInterface {
381
382
  export interface UpsertConfigurationResponseInterface {
382
383
  configuration?: ConfigurationInterface;
383
384
  }
385
+ export interface UpsertProductFeatureRequestInterface {
386
+ productFeature?: ProductFeatureInterface;
387
+ fieldMask?: FieldMaskInterface;
388
+ subjectParticipant?: SubjectParticipantInterface;
389
+ }
390
+ export interface UpsertProductFeatureResponseInterface {
391
+ productFeature?: ProductFeatureInterface;
392
+ }
@@ -1,4 +1,8 @@
1
1
  import * as e from '../enums';
2
+ export interface NamespaceDetailInterface {
3
+ participantType?: e.GlobalParticipantType;
4
+ internalParticipantId?: string;
5
+ }
2
6
  export interface SubjectParticipantInterface {
3
7
  participantType?: e.GlobalParticipantType;
4
8
  internalParticipantId?: string;
@@ -10,4 +10,12 @@ export interface ConfigurationInterface {
10
10
  inboxProEnabled?: boolean;
11
11
  webChatEnabled?: boolean;
12
12
  facebookMessengerEnabled?: boolean;
13
+ multiLocationEnabled?: boolean;
14
+ }
15
+ export interface ProductFeatureInterface {
16
+ googleBusinessMessagesEnabled?: boolean;
17
+ smsEnabled?: boolean;
18
+ multiLocationEnabled?: boolean;
19
+ webChatEnabled?: boolean;
20
+ facebookMessengerEnabled?: boolean;
13
21
  }
@@ -1,11 +1,11 @@
1
- export { SubjectParticipantInterface, } from './common.interface';
1
+ export { NamespaceDetailInterface, SubjectParticipantInterface, } from './common.interface';
2
2
  export { ConversationInterface, ConversationKeyInterface, LastSeenByParticipantInterface, } from './conversation.interface';
3
3
  export { MessageInterface, ParticipantMessageStatusInterface, SendStatusInterface, } from './message.interface';
4
4
  export { AddressInterface, ParticipantInterface, ParticipantKeyInterface, } from './participant.interface';
5
5
  export { AccessInterface, } from './annotations.interface';
6
- export { ConfigurationInterface, } from './configuration.interface';
6
+ export { ConfigurationInterface, ProductFeatureInterface, } from './configuration.interface';
7
7
  export { ViewInterface, } from './conversation-view.interface';
8
8
  export { DataSourcesInterface, WidgetInterface, } from './widget.interface';
9
9
  export { FieldMaskInterface, } from './field-mask.interface';
10
10
  export { MessageTemplateInterface, } from './message-template.interface';
11
- export { AddConversationToConversationViewRequestInterface, AddMultiParticipantsRequestInterface, AddMultiParticipantsResponseInterface, ConversationMessageCountInterface, LookupConversationsResponseConversationsInterface, GetMultiConversationMessageCountResponseCountsEntryInterface, CreateConversationRequestInterface, CreateConversationResponseInterface, CreateMessageTemplateRequestInterface, CreateMessageTemplateResponseInterface, CreateMultiMessagesRequestInterface, CreateWidgetConversationRequestInterface, CreateWidgetConversationResponseInterface, CreateWidgetRequestInterface, CreateWidgetResponseInterface, MetadataDataEntryInterface, DeleteConversationRequestInterface, DeleteMessageRequestInterface, DeleteMessageTemplateRequestInterface, DeleteWidgetRequestInterface, SearchConversationsResponseDetailedConversationInterface, GetMultiConversationDetailsResponseDetailedConversationInterface, EvaluateResponseRequestInterface, GetAvailableChannelsForConversationRequestInterface, GetAvailableChannelsForConversationResponseInterface, GetConfigurationRequestInterface, GetConfigurationResponseInterface, GetConversationByKeyRequestInterface, GetConversationByKeyResponseInterface, GetConversationViewsRequestInterface, GetConversationViewsResponseInterface, GetMessageRequestInterface, GetMessageTemplateRequestInterface, GetMessageTemplateResponseInterface, GetMultiConfigurationRequestInterface, GetMultiConfigurationResponseInterface, GetMultiConversationDetailsRequestInterface, GetMultiConversationDetailsResponseInterface, GetMultiConversationMessageCountRequestInterface, GetMultiConversationMessageCountResponseInterface, GetMultiMessagesRequestInterface, GetMultiMessagesResponseInterface, GetMultiParticipantsRequestInterface, GetMultiParticipantsResponseInterface, GetMultiWidgetMessagesRequestInterface, GetMultiWidgetMessagesResponseInterface, GetParticipantsByKeyRequestInterface, GetParticipantsByKeyResponseInterface, GetWidgetConfigRequestInterface, GetWidgetConfigResponseInterface, GetWidgetConversationResponseInterface, GetWidgetRequestInterface, GetWidgetResponseInterface, ListMessageTemplateRequestInterface, ListMessageTemplateResponseInterface, ListMessagesRequestListMessagesFiltersInterface, ListMessagesRequestInterface, ListMessagesResponseInterface, ListWidgetsRequestInterface, ListWidgetsResponseInterface, LookupConversationsRequestLookupConversationsFiltersInterface, LookupConversationsRequestInterface, LookupConversationsResponseInterface, MediaInterface, MetadataInterface, ReceiveMessageRequestMetadataEntryInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, ReceiveMessageRequestInterface, RemoveConversationFromConversationViewRequestInterface, SearchConversationsRequestInterface, SearchConversationsResponseInterface, SendMessageRequestInterface, SendMessageResponseInterface, SendWidgetMessageRequestInterface, SendWidgetMessageResponseInterface, SetLastSeenRequestInterface, SetLastSeenResponseInterface, UpdateConversationRequestInterface, UpdateConversationResponseInterface, UpdateMessageStatusRequestInterface, UpdateMessageTemplateRequestInterface, UpdateMessageTemplateResponseInterface, UpdateWidgetRequestInterface, UpdateWidgetResponseInterface, UpsertConfigurationRequestInterface, UpsertConfigurationResponseInterface, } from './api.interface';
11
+ export { AddConversationToConversationViewRequestInterface, AddMultiParticipantsRequestInterface, AddMultiParticipantsResponseInterface, ConversationMessageCountInterface, LookupConversationsResponseConversationsInterface, GetMultiConversationMessageCountResponseCountsEntryInterface, CreateConversationRequestInterface, CreateConversationResponseInterface, CreateMessageTemplateRequestInterface, CreateMessageTemplateResponseInterface, CreateMultiMessagesRequestInterface, CreateWidgetConversationRequestInterface, CreateWidgetConversationResponseInterface, CreateWidgetRequestInterface, CreateWidgetResponseInterface, MetadataDataEntryInterface, DeleteConversationRequestInterface, DeleteMessageRequestInterface, DeleteMessageTemplateRequestInterface, DeleteWidgetRequestInterface, SearchConversationsResponseDetailedConversationInterface, GetMultiConversationDetailsResponseDetailedConversationInterface, EvaluateResponseRequestInterface, GetAvailableChannelsForConversationRequestInterface, GetAvailableChannelsForConversationResponseInterface, GetConfigurationRequestInterface, GetConfigurationResponseInterface, GetConversationByKeyRequestInterface, GetConversationByKeyResponseInterface, GetConversationViewsRequestInterface, GetConversationViewsResponseInterface, GetMessageRequestInterface, GetMessageTemplateRequestInterface, GetMessageTemplateResponseInterface, GetMultiConfigurationRequestInterface, GetMultiConfigurationResponseInterface, GetMultiConversationDetailsRequestInterface, GetMultiConversationDetailsResponseInterface, GetMultiConversationMessageCountRequestInterface, GetMultiConversationMessageCountResponseInterface, GetMultiMessagesRequestInterface, GetMultiMessagesResponseInterface, GetMultiParticipantsRequestInterface, GetMultiParticipantsResponseInterface, GetMultiWidgetMessagesRequestInterface, GetMultiWidgetMessagesResponseInterface, GetParticipantsByKeyRequestInterface, GetParticipantsByKeyResponseInterface, GetWidgetConfigRequestInterface, GetWidgetConfigResponseInterface, GetWidgetConversationResponseInterface, GetWidgetRequestInterface, GetWidgetResponseInterface, ListMessageTemplateRequestInterface, ListMessageTemplateResponseInterface, ListMessagesRequestListMessagesFiltersInterface, ListMessagesRequestInterface, ListMessagesResponseInterface, ListWidgetsRequestInterface, ListWidgetsResponseInterface, LookupConversationsRequestLookupConversationsFiltersInterface, LookupConversationsRequestInterface, LookupConversationsResponseInterface, MediaInterface, MetadataInterface, ReceiveMessageRequestMetadataEntryInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, ReceiveMessageRequestInterface, RemoveConversationFromConversationViewRequestInterface, SearchConversationsRequestInterface, SearchConversationsResponseInterface, SendMessageRequestInterface, SendMessageResponseInterface, SendWidgetMessageRequestInterface, SendWidgetMessageResponseInterface, SetLastSeenRequestInterface, SetLastSeenResponseInterface, UpdateConversationRequestInterface, UpdateConversationResponseInterface, UpdateMessageStatusRequestInterface, UpdateMessageTemplateRequestInterface, UpdateMessageTemplateResponseInterface, UpdateWidgetRequestInterface, UpdateWidgetResponseInterface, UpsertConfigurationRequestInterface, UpsertConfigurationResponseInterface, UpsertProductFeatureRequestInterface, UpsertProductFeatureResponseInterface, } from './api.interface';
@@ -1,3 +1,4 @@
1
+ import { NamespaceDetailInterface } from './common.interface';
1
2
  import * as e from '../enums';
2
3
  export interface AddressInterface {
3
4
  firstLineAddress?: string;
@@ -26,6 +27,7 @@ export interface ParticipantInterface {
26
27
  isSubjectParticipant?: boolean;
27
28
  isParticipantInternalInfoDeleted?: boolean;
28
29
  profileImageUrl?: string;
30
+ namespaceHierarchy?: NamespaceDetailInterface[];
29
31
  }
30
32
  export interface ParticipantKeyInterface {
31
33
  internalParticipantId?: string;
@@ -34,4 +36,5 @@ export interface ParticipantKeyInterface {
34
36
  location?: e.PlatformLocation;
35
37
  channels?: e.ConversationChannel[];
36
38
  participantType?: e.GlobalParticipantType;
39
+ namespaceHierarchy?: NamespaceDetailInterface[];
37
40
  }
@@ -1,5 +1,5 @@
1
1
  import * as i from '../interfaces';
2
- import { Configuration } from './configuration';
2
+ import { Configuration, ProductFeature } from './configuration';
3
3
  import { Conversation, ConversationKey } from './conversation';
4
4
  import { DataSources, Widget } from './widget';
5
5
  import { FieldMask } from './field-mask';
@@ -93,6 +93,7 @@ export declare class CreateMultiMessagesRequest implements i.CreateMultiMessages
93
93
  }
94
94
  export declare class CreateWidgetConversationRequest implements i.CreateWidgetConversationRequestInterface {
95
95
  widgetId: string;
96
+ chatSourceUrl: string;
96
97
  static fromProto(proto: any): CreateWidgetConversationRequest;
97
98
  constructor(kwargs?: i.CreateWidgetConversationRequestInterface);
98
99
  toApiJson(): object;
@@ -644,3 +645,17 @@ export declare class UpsertConfigurationResponse implements i.UpsertConfiguratio
644
645
  constructor(kwargs?: i.UpsertConfigurationResponseInterface);
645
646
  toApiJson(): object;
646
647
  }
648
+ export declare class UpsertProductFeatureRequest implements i.UpsertProductFeatureRequestInterface {
649
+ productFeature: ProductFeature;
650
+ fieldMask: FieldMask;
651
+ subjectParticipant: SubjectParticipant;
652
+ static fromProto(proto: any): UpsertProductFeatureRequest;
653
+ constructor(kwargs?: i.UpsertProductFeatureRequestInterface);
654
+ toApiJson(): object;
655
+ }
656
+ export declare class UpsertProductFeatureResponse implements i.UpsertProductFeatureResponseInterface {
657
+ productFeature: ProductFeature;
658
+ static fromProto(proto: any): UpsertProductFeatureResponse;
659
+ constructor(kwargs?: i.UpsertProductFeatureResponseInterface);
660
+ toApiJson(): object;
661
+ }
@@ -1,6 +1,13 @@
1
1
  import * as i from '../interfaces';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
+ export declare class NamespaceDetail implements i.NamespaceDetailInterface {
5
+ participantType: e.GlobalParticipantType;
6
+ internalParticipantId: string;
7
+ static fromProto(proto: any): NamespaceDetail;
8
+ constructor(kwargs?: i.NamespaceDetailInterface);
9
+ toApiJson(): object;
10
+ }
4
11
  export declare class SubjectParticipant implements i.SubjectParticipantInterface {
5
12
  participantType: e.GlobalParticipantType;
6
13
  internalParticipantId: string;
@@ -12,7 +12,18 @@ export declare class Configuration implements i.ConfigurationInterface {
12
12
  inboxProEnabled: boolean;
13
13
  webChatEnabled: boolean;
14
14
  facebookMessengerEnabled: boolean;
15
+ multiLocationEnabled: boolean;
15
16
  static fromProto(proto: any): Configuration;
16
17
  constructor(kwargs?: i.ConfigurationInterface);
17
18
  toApiJson(): object;
18
19
  }
20
+ export declare class ProductFeature implements i.ProductFeatureInterface {
21
+ googleBusinessMessagesEnabled: boolean;
22
+ smsEnabled: boolean;
23
+ multiLocationEnabled: boolean;
24
+ webChatEnabled: boolean;
25
+ facebookMessengerEnabled: boolean;
26
+ static fromProto(proto: any): ProductFeature;
27
+ constructor(kwargs?: i.ProductFeatureInterface);
28
+ toApiJson(): object;
29
+ }
@@ -1,11 +1,11 @@
1
- export { SubjectParticipant, } from './common';
1
+ export { NamespaceDetail, SubjectParticipant, } from './common';
2
2
  export { Conversation, ConversationKey, LastSeenByParticipant, } from './conversation';
3
3
  export { Message, ParticipantMessageStatus, SendStatus, } from './message';
4
4
  export { Address, Participant, ParticipantKey, } from './participant';
5
5
  export { Access, } from './annotations';
6
- export { Configuration, } from './configuration';
6
+ export { Configuration, ProductFeature, } from './configuration';
7
7
  export { View, } from './conversation-view';
8
8
  export { DataSources, Widget, } from './widget';
9
9
  export { FieldMask, } from './field-mask';
10
10
  export { MessageTemplate, } from './message-template';
11
- export { AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, ConversationMessageCount, LookupConversationsResponseConversations, GetMultiConversationMessageCountResponseCountsEntry, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, MetadataDataEntry, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, SearchConversationsResponseDetailedConversation, GetMultiConversationDetailsResponseDetailedConversation, EvaluateResponseRequest, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateResponse, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequestListMessagesFilters, ListMessagesRequest, ListMessagesResponse, ListWidgetsRequest, ListWidgetsResponse, LookupConversationsRequestLookupConversationsFilters, LookupConversationsRequest, LookupConversationsResponse, Media, Metadata, ReceiveMessageRequestMetadataEntry, PagedRequestOptions, PagedResponseMetadata, ReceiveMessageRequest, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SendMessageRequest, SendMessageResponse, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenResponse, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, } from './api';
11
+ export { AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, ConversationMessageCount, LookupConversationsResponseConversations, GetMultiConversationMessageCountResponseCountsEntry, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, MetadataDataEntry, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, SearchConversationsResponseDetailedConversation, GetMultiConversationDetailsResponseDetailedConversation, EvaluateResponseRequest, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateResponse, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequestListMessagesFilters, ListMessagesRequest, ListMessagesResponse, ListWidgetsRequest, ListWidgetsResponse, LookupConversationsRequestLookupConversationsFilters, LookupConversationsRequest, LookupConversationsResponse, Media, Metadata, ReceiveMessageRequestMetadataEntry, PagedRequestOptions, PagedResponseMetadata, ReceiveMessageRequest, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SendMessageRequest, SendMessageResponse, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenResponse, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, } from './api';
@@ -1,4 +1,5 @@
1
1
  import * as i from '../interfaces';
2
+ import { NamespaceDetail } from './common';
2
3
  import * as e from '../enums';
3
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
5
  export declare class Address implements i.AddressInterface {
@@ -31,6 +32,7 @@ export declare class Participant implements i.ParticipantInterface {
31
32
  isSubjectParticipant: boolean;
32
33
  isParticipantInternalInfoDeleted: boolean;
33
34
  profileImageUrl: string;
35
+ namespaceHierarchy: NamespaceDetail[];
34
36
  static fromProto(proto: any): Participant;
35
37
  constructor(kwargs?: i.ParticipantInterface);
36
38
  toApiJson(): object;
@@ -42,6 +44,7 @@ export declare class ParticipantKey implements i.ParticipantKeyInterface {
42
44
  location: e.PlatformLocation;
43
45
  channels: e.ConversationChannel[];
44
46
  participantType: e.GlobalParticipantType;
47
+ namespaceHierarchy: NamespaceDetail[];
45
48
  static fromProto(proto: any): ParticipantKey;
46
49
  constructor(kwargs?: i.ParticipantKeyInterface);
47
50
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.55.0",
3
+ "version": "0.57.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"