@trii/types 2.10.421 → 2.10.423

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.
@@ -145,9 +145,17 @@ export interface MessageReference {
145
145
  externalId?: string;
146
146
  }
147
147
  export interface MessageReaction {
148
- userId: string;
148
+ emoji: string;
149
+ emojiName: string;
150
+ users: MessageReactionUser[];
151
+ }
152
+ export interface MessageReactionUser {
149
153
  timestamp: Date;
150
- emoji?: string;
154
+ fromMe: boolean;
155
+ userId: string;
156
+ address: string;
157
+ name: string;
158
+ imageUrl: string;
151
159
  }
152
160
  export interface MessageEmail {
153
161
  /**Cuenta de correo electrónico asociado a Trii */
@@ -0,0 +1,5 @@
1
+ export declare type ReportApiResult = {
2
+ reportName: string;
3
+ format: string;
4
+ url: string;
5
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.421",
3
+ "version": "2.10.423",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",