@stndrds/constants 1.0.0-alpha.96 → 1.0.0-alpha.97
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.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
/** Image MIME types supported by AI chat (subset of all image types) */
|
|
9
9
|
declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif"];
|
|
10
10
|
/** Document MIME types supported by AI chat */
|
|
11
|
-
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "text/plain", "text/markdown", "text/csv"];
|
|
11
|
+
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
12
12
|
/** All MIME types supported by AI chat */
|
|
13
|
-
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "text/plain", "text/markdown", "text/csv"];
|
|
13
|
+
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
14
14
|
/** Comma-separated accept string for file inputs */
|
|
15
15
|
declare const AI_CHAT_ACCEPTED_TYPES: string;
|
|
16
16
|
/** Maximum file size for AI chat attachments (50 MB) */
|
package/dist/index.d.ts
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
/** Image MIME types supported by AI chat (subset of all image types) */
|
|
9
9
|
declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif"];
|
|
10
10
|
/** Document MIME types supported by AI chat */
|
|
11
|
-
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "text/plain", "text/markdown", "text/csv"];
|
|
11
|
+
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
12
12
|
/** All MIME types supported by AI chat */
|
|
13
|
-
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "text/plain", "text/markdown", "text/csv"];
|
|
13
|
+
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
14
14
|
/** Comma-separated accept string for file inputs */
|
|
15
15
|
declare const AI_CHAT_ACCEPTED_TYPES: string;
|
|
16
16
|
/** Maximum file size for AI chat attachments (50 MB) */
|
package/dist/index.js
CHANGED
|
@@ -286,6 +286,8 @@ var AI_CHAT_SUPPORTED_IMAGES = [
|
|
|
286
286
|
];
|
|
287
287
|
var AI_CHAT_SUPPORTED_DOCUMENTS = [
|
|
288
288
|
DOCUMENT_MIME_TYPES.PDF,
|
|
289
|
+
DOCUMENT_MIME_TYPES.DOC,
|
|
290
|
+
DOCUMENT_MIME_TYPES.DOCX,
|
|
289
291
|
DOCUMENT_MIME_TYPES.TXT,
|
|
290
292
|
DOCUMENT_MIME_TYPES.MARKDOWN,
|
|
291
293
|
DOCUMENT_MIME_TYPES.CSV
|
package/dist/index.mjs
CHANGED
|
@@ -180,6 +180,8 @@ var AI_CHAT_SUPPORTED_IMAGES = [
|
|
|
180
180
|
];
|
|
181
181
|
var AI_CHAT_SUPPORTED_DOCUMENTS = [
|
|
182
182
|
DOCUMENT_MIME_TYPES.PDF,
|
|
183
|
+
DOCUMENT_MIME_TYPES.DOC,
|
|
184
|
+
DOCUMENT_MIME_TYPES.DOCX,
|
|
183
185
|
DOCUMENT_MIME_TYPES.TXT,
|
|
184
186
|
DOCUMENT_MIME_TYPES.MARKDOWN,
|
|
185
187
|
DOCUMENT_MIME_TYPES.CSV
|