@solibo/solibo-sdk 1.6.3 → 1.6.4

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.
@@ -2718,16 +2718,18 @@ export interface CreateConversationCategoryCommandProps {
2718
2718
  color?: CategoryColorProps | null | undefined;
2719
2719
  contactCategory?: boolean | null | undefined;
2720
2720
  description?: string | null | undefined;
2721
+ incomingEmailCategory?: boolean | null | undefined;
2721
2722
  name: string;
2722
2723
  responsible: bigint;
2723
2724
  }
2724
2725
  export declare class CreateConversationCategoryCommand {
2725
2726
  constructor(props: CreateConversationCategoryCommandProps);
2726
- constructor(coResponsibleIds: bigint[] | null | undefined, color: CategoryColor | null | undefined, contactCategory: boolean | null | undefined, description: string | null | undefined, name: string, responsible: bigint);
2727
+ constructor(coResponsibleIds: bigint[] | null | undefined, color: CategoryColor | null | undefined, contactCategory: boolean | null | undefined, description: string | null | undefined, incomingEmailCategory: boolean | null | undefined, name: string, responsible: bigint);
2727
2728
  get coResponsibleIds(): bigint[] | null | undefined;
2728
2729
  get color(): CategoryColor | null | undefined;
2729
2730
  get contactCategory(): boolean | null | undefined;
2730
2731
  get description(): string | null | undefined;
2732
+ get incomingEmailCategory(): boolean | null | undefined;
2731
2733
  get name(): string;
2732
2734
  get responsible(): bigint;
2733
2735
  }
@@ -18765,7 +18767,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
18765
18767
  indexConversationCountByCompany(companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
18766
18768
  indexConversationCountInCompany(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationCount>>;
18767
18769
  indexConversationFolders(companyId: bigint, parentId?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversationFolder>>;
18768
- indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
18770
+ indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
18769
18771
  moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
18770
18772
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
18771
18773
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;