@rodrigobeber/patoai-dtos 3.0.9 → 3.0.10

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-role.dto';
3
3
  export * from './webchat-crew.dto';
4
+ export * from './webchat-id-crew.dto';
4
5
  export * from './webchat-member.dto';
@@ -17,4 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./webchat-channel.dto"), exports);
18
18
  __exportStar(require("./webchat-crew-role.dto"), exports);
19
19
  __exportStar(require("./webchat-crew.dto"), exports);
20
+ __exportStar(require("./webchat-id-crew.dto"), exports);
20
21
  __exportStar(require("./webchat-member.dto"), exports);
@@ -0,0 +1,12 @@
1
+ export interface WebChatJoinCrewDto {
2
+ idCrew: number;
3
+ }
4
+ export interface WebChatLeaveCrewDto {
5
+ idCrew: number;
6
+ }
7
+ export interface WebChatGetCrewDto {
8
+ idCrew: number;
9
+ }
10
+ export interface WebChatGetThreadsDto {
11
+ idCrew: number;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,3 @@
1
1
  export * from './crew';
2
2
  export * from './crm';
3
3
  export * from './thread';
4
- export * from './webchat-other.dto';
@@ -17,4 +17,3 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./crew"), exports);
18
18
  __exportStar(require("./crm"), exports);
19
19
  __exportStar(require("./thread"), exports);
20
- __exportStar(require("./webchat-other.dto"), exports);
@@ -1,7 +1,12 @@
1
1
  export * from './webchat-delete-messages.dto';
2
+ export * from './webchat-get-media-url.dto';
3
+ export * from './webchat-id-thread.dto';
2
4
  export * from './webchat-media.dto';
3
5
  export * from './webchat-last-message.dto';
4
6
  export * from './webchat-message-create.dto';
5
7
  export * from './webchat-message.dto';
8
+ export * from './webchat-set-online.dto';
6
9
  export * from './webchat-set-processed.dto';
10
+ export * from './webchat-set-thread-manual.dto';
11
+ export * from './webchat-set-user-name.dto';
7
12
  export * from './webchat-thread.dto';
@@ -15,9 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./webchat-delete-messages.dto"), exports);
18
+ __exportStar(require("./webchat-get-media-url.dto"), exports);
19
+ __exportStar(require("./webchat-id-thread.dto"), exports);
18
20
  __exportStar(require("./webchat-media.dto"), exports);
19
21
  __exportStar(require("./webchat-last-message.dto"), exports);
20
22
  __exportStar(require("./webchat-message-create.dto"), exports);
21
23
  __exportStar(require("./webchat-message.dto"), exports);
24
+ __exportStar(require("./webchat-set-online.dto"), exports);
22
25
  __exportStar(require("./webchat-set-processed.dto"), exports);
26
+ __exportStar(require("./webchat-set-thread-manual.dto"), exports);
27
+ __exportStar(require("./webchat-set-user-name.dto"), exports);
23
28
  __exportStar(require("./webchat-thread.dto"), exports);
@@ -0,0 +1,4 @@
1
+ export interface WebChatGetMediaUrlDto {
2
+ idThread: number;
3
+ mediaId: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ export interface WebChatJoinThreadDto {
2
+ idThread: number;
3
+ }
4
+ export interface WebChatLeaveThreadDto {
5
+ idThread: number;
6
+ }
7
+ export interface WebChatGetConversatioDto {
8
+ idThread: number;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface WebChatSetOnlineDto {
2
+ idCrew: number;
3
+ online: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface WebChatSetThreadManualDto {
2
+ idThread: number;
3
+ idHuman: number | null;
4
+ manual: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface WebChatSetThreadUserNameDto {
2
+ idThread: number;
3
+ userName: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",