@eigenpal/sdk 0.16.6 → 0.16.8
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/lib/files.ts +2 -0
- package/src/telemetry.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/lib/files.ts
CHANGED
|
@@ -30,8 +30,10 @@ const MIME_BY_EXT: Record<string, string> = {
|
|
|
30
30
|
docx: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
31
31
|
xls: 'application/vnd.ms-excel',
|
|
32
32
|
xlsx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
33
|
+
xlsm: 'application/vnd.ms-excel.sheet.macroenabled.12',
|
|
33
34
|
ppt: 'application/vnd.ms-powerpoint',
|
|
34
35
|
pptx: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
36
|
+
msg: 'application/vnd.ms-outlook',
|
|
35
37
|
};
|
|
36
38
|
|
|
37
39
|
/** Guess a MIME type from a filename extension; falls back to octet-stream. */
|
package/src/telemetry.ts
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
export const SDK_LANGUAGE = 'typescript';
|
|
20
20
|
// Rewritten at publish time by scripts/release/platform/render-sdk-versions.sh.
|
|
21
21
|
// Keep this string literal exactly stable — sed matches on it.
|
|
22
|
-
export const SDK_VERSION = '0.16.
|
|
22
|
+
export const SDK_VERSION = '0.16.8';
|
|
23
23
|
|
|
24
24
|
function detectRuntime(): string {
|
|
25
25
|
const g = globalThis as unknown as {
|