@trii/types 2.10.422 → 2.10.424
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,4 @@
|
|
|
1
|
-
export type QueueType = 'Conversation' | 'Message' | 'MessageStatus' | 'MessageAckStatus' | 'Post' | 'PostComment' | 'PostReaction' | 'PostCommentReaction' | 'PostResponse' | 'Reaction' | 'ChannelML' | 'Template' | 'Email' | 'ProfilePic';
|
|
1
|
+
export type QueueType = 'Conversation' | 'Message' | 'MessageStatus' | 'MessageAckStatus' | 'Post' | 'PostComment' | 'PostReaction' | 'PostCommentReaction' | 'PostResponse' | 'Reaction' | 'ChannelML' | 'Template' | 'Email' | 'ProfilePic' | 'ChannelState';
|
|
2
2
|
export type QueueAction = 'add' | 'remove' | 'edited' | 'react' | 'unreact' | 'Reject' | 'Bounce' | 'Complaint';
|
|
3
3
|
export type EventQueue = {
|
|
4
4
|
type: QueueType;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './apiResult';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./apiResult"), exports);
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * as Calendar from './Calendar/index';
|
|
|
6
6
|
export * as Conversations from './Conversations/index';
|
|
7
7
|
export * as Calls from './Calls/index';
|
|
8
8
|
export * as Security from './Security/index';
|
|
9
|
+
export * as Reports from './Reports/index';
|
|
9
10
|
export * as Spaces from './Spaces/index';
|
|
10
11
|
export * as Tickets from './Tickets/index';
|
|
11
12
|
export * as Users from './Users/index';
|
package/dist/index.js
CHANGED
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.APIKeys = exports.EventsQueue = exports.ApiResponses = exports.Users = exports.Tickets = exports.Spaces = exports.Security = exports.Calls = exports.Conversations = exports.Calendar = exports.Contacts = exports.Common = exports.AuditLogs = exports.Accounts = void 0;
|
|
36
|
+
exports.APIKeys = exports.EventsQueue = exports.ApiResponses = exports.Users = exports.Tickets = exports.Spaces = exports.Reports = exports.Security = exports.Calls = exports.Conversations = exports.Calendar = exports.Contacts = exports.Common = exports.AuditLogs = exports.Accounts = void 0;
|
|
37
37
|
exports.Accounts = __importStar(require("./Accounts/index"));
|
|
38
38
|
exports.AuditLogs = __importStar(require("./AuditLogs/index"));
|
|
39
39
|
exports.Common = __importStar(require("./Common/index"));
|
|
@@ -42,6 +42,7 @@ exports.Calendar = __importStar(require("./Calendar/index"));
|
|
|
42
42
|
exports.Conversations = __importStar(require("./Conversations/index"));
|
|
43
43
|
exports.Calls = __importStar(require("./Calls/index"));
|
|
44
44
|
exports.Security = __importStar(require("./Security/index"));
|
|
45
|
+
exports.Reports = __importStar(require("./Reports/index"));
|
|
45
46
|
exports.Spaces = __importStar(require("./Spaces/index"));
|
|
46
47
|
exports.Tickets = __importStar(require("./Tickets/index"));
|
|
47
48
|
exports.Users = __importStar(require("./Users/index"));
|