@erdoai/types 0.1.8 → 0.1.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/index.cjs +1 -18
- package/dist/index.d.cts +1 -4
- package/dist/index.d.ts +1 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
-
}
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
-
|
|
16
|
-
// src/index.ts
|
|
17
|
-
var index_exports = {};
|
|
18
|
-
module.exports = __toCommonJS(index_exports);
|
|
1
|
+
'use strict';
|
package/dist/index.d.cts
CHANGED
|
@@ -238,10 +238,7 @@ interface SendMessageParams {
|
|
|
238
238
|
interface ThreadMessageContent {
|
|
239
239
|
id: string;
|
|
240
240
|
content_type: string;
|
|
241
|
-
ui_content_type?:
|
|
242
|
-
Valid: boolean;
|
|
243
|
-
String: string;
|
|
244
|
-
} | string;
|
|
241
|
+
ui_content_type?: string;
|
|
245
242
|
content: unknown;
|
|
246
243
|
user_visibility?: string;
|
|
247
244
|
bot_visibility?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -238,10 +238,7 @@ interface SendMessageParams {
|
|
|
238
238
|
interface ThreadMessageContent {
|
|
239
239
|
id: string;
|
|
240
240
|
content_type: string;
|
|
241
|
-
ui_content_type?:
|
|
242
|
-
Valid: boolean;
|
|
243
|
-
String: string;
|
|
244
|
-
} | string;
|
|
241
|
+
ui_content_type?: string;
|
|
245
242
|
content: unknown;
|
|
246
243
|
user_visibility?: string;
|
|
247
244
|
bot_visibility?: string;
|