@solibo/home-api 1.6.3 → 1.6.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -2358,14 +2358,15 @@ export declare namespace CreateCompany {
2358
2358
  }
2359
2359
  }
2360
2360
  export declare class CreateConversationCategoryCommand {
2361
- constructor(coResponsibleIds: Nullable<KtList<bigint>> | undefined, color: Nullable<CategoryColor> | undefined, contactCategory: Nullable<boolean> | undefined, description: Nullable<string> | undefined, name: string, responsible: bigint);
2361
+ constructor(coResponsibleIds: Nullable<KtList<bigint>> | undefined, color: Nullable<CategoryColor> | undefined, contactCategory: Nullable<boolean> | undefined, description: Nullable<string> | undefined, incomingEmailCategory: Nullable<boolean> | undefined, name: string, responsible: bigint);
2362
2362
  get coResponsibleIds(): Nullable<KtList<bigint>>;
2363
2363
  get color(): Nullable<CategoryColor>;
2364
2364
  get contactCategory(): Nullable<boolean>;
2365
2365
  get description(): Nullable<string>;
2366
+ get incomingEmailCategory(): Nullable<boolean>;
2366
2367
  get name(): string;
2367
2368
  get responsible(): bigint;
2368
- copy(coResponsibleIds?: Nullable<KtList<bigint>>, color?: Nullable<CategoryColor>, contactCategory?: Nullable<boolean>, description?: Nullable<string>, name?: string, responsible?: bigint): CreateConversationCategoryCommand;
2369
+ copy(coResponsibleIds?: Nullable<KtList<bigint>>, color?: Nullable<CategoryColor>, contactCategory?: Nullable<boolean>, description?: Nullable<string>, incomingEmailCategory?: Nullable<boolean>, name?: string, responsible?: bigint): CreateConversationCategoryCommand;
2369
2370
  toString(): string;
2370
2371
  hashCode(): number;
2371
2372
  equals(other: Nullable<any>): boolean;
@@ -16243,7 +16244,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
16243
16244
  indexConversationCountByCompany(companyIds?: Nullable<KtList<bigint>>, categoryIds?: Nullable<KtList<bigint>>, status?: Nullable<ConversationStatus>, folderId?: Nullable<bigint>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, fields?: Nullable<string>): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
16244
16245
  indexConversationCountInCompany(companyId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationCount>>;
16245
16246
  indexConversationFolders(companyId: bigint, parentId?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversationFolder>>;
16246
- indexConversations(search?: Nullable<string>, companyIds?: Nullable<KtList<bigint>>, categoryIds?: Nullable<KtList<bigint>>, status?: Nullable<ConversationStatus>, byParticipants?: Nullable<KtList<bigint>>, byParticipantTypes?: Nullable<KtList<ParticipantType>>, folderId?: Nullable<bigint>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversation>>;
16247
+ indexConversations(search?: Nullable<string>, companyIds?: Nullable<KtList<bigint>>, categoryIds?: Nullable<KtList<bigint>>, status?: Nullable<ConversationStatus>, byParticipants?: Nullable<KtList<bigint>>, byParticipantTypes?: Nullable<KtList<ParticipantType>>, folderId?: Nullable<bigint>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, updatedSince?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversation>>;
16247
16248
  moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
16248
16249
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
16249
16250
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;