@rodrigobeber/patoai-dtos 3.3.4 → 3.3.6

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.
@@ -1,4 +1,5 @@
1
1
  export * from './webchat-channel.dto';
2
2
  export * from './webchat-crew.dto';
3
+ export * from './webchat-crew-online.dto';
3
4
  export * from './webchat-id-crew.dto';
4
5
  export * from './webchat-membership.dto';
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./webchat-channel.dto"), exports);
18
18
  __exportStar(require("./webchat-crew.dto"), exports);
19
+ __exportStar(require("./webchat-crew-online.dto"), exports);
19
20
  __exportStar(require("./webchat-id-crew.dto"), exports);
20
21
  __exportStar(require("./webchat-membership.dto"), exports);
@@ -0,0 +1,4 @@
1
+ export interface WebChatCrewOnlineDto {
2
+ idCrew: number;
3
+ online: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,9 +3,3 @@ export interface WebChatCrewRoleDto {
3
3
  idCrew: number;
4
4
  role: MemberRoleEnum;
5
5
  }
6
- export interface WebChatMembershipDto {
7
- idHuman: number;
8
- name: string;
9
- login: string;
10
- crews: WebChatCrewRoleDto[];
11
- }
@@ -1,4 +1,4 @@
1
1
  export interface WebChatSetLeadObservationDto {
2
2
  idLead: number;
3
- observation: string;
3
+ observation: string | null;
4
4
  }
@@ -10,3 +10,9 @@ export interface WebChatGetConversatioDto {
10
10
  export interface WebChatDeleteThreadDto {
11
11
  idThread: number;
12
12
  }
13
+ export interface WebChatThreadDeletedDto {
14
+ idThread: number;
15
+ }
16
+ export interface WebChatIdThreadDto {
17
+ idThread: number;
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "3.3.4",
3
+ "version": "3.3.6",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",