@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.
- package/dist/webchat/crew/index.d.ts +1 -0
- package/dist/webchat/crew/index.js +1 -0
- package/dist/webchat/crew/webchat-id-crew.dto.d.ts +12 -0
- package/dist/webchat/crew/webchat-id-crew.dto.js +2 -0
- package/dist/webchat/index.d.ts +0 -1
- package/dist/webchat/index.js +0 -1
- package/dist/webchat/thread/index.d.ts +5 -0
- package/dist/webchat/thread/index.js +5 -0
- package/dist/webchat/thread/webchat-get-media-url.dto.d.ts +4 -0
- package/dist/webchat/thread/webchat-get-media-url.dto.js +2 -0
- package/dist/webchat/thread/webchat-id-thread.dto.d.ts +9 -0
- package/dist/webchat/thread/webchat-id-thread.dto.js +2 -0
- package/dist/webchat/thread/webchat-set-online.dto.d.ts +4 -0
- package/dist/webchat/thread/webchat-set-online.dto.js +2 -0
- package/dist/webchat/thread/webchat-set-thread-manual.dto.d.ts +5 -0
- package/dist/webchat/thread/webchat-set-thread-manual.dto.js +2 -0
- package/dist/webchat/thread/webchat-set-user-name.dto.d.ts +4 -0
- package/dist/webchat/thread/webchat-set-user-name.dto.js +2 -0
- package/package.json +1 -1
|
@@ -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);
|
package/dist/webchat/index.d.ts
CHANGED
package/dist/webchat/index.js
CHANGED
|
@@ -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);
|