@mdgate/converters 0.1.3 → 0.1.5

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.ts CHANGED
@@ -1,5 +1,7 @@
1
- export type { ConvertErrorCode, Converter, ConvertHint, ConvertResult } from '@mdgate/core';
1
+ export type { Convert, ConvertErrorCode, Converter, ConvertHint, ConvertOptions, ConvertResult, } from '@mdgate/core';
2
2
  export { ConvertError, create } from '@mdgate/core';
3
+ export type { ConvertImage, ImageInput, ImageMime } from '@mdgate/image';
4
+ export { image } from '@mdgate/image';
3
5
  export { office } from '@mdgate/office';
4
6
  export { pdf } from '@mdgate/pdf';
5
7
  export { all } from './all.js';
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import{ConvertError as w,create as z}from"@mdgate/core";import{office as D}from"@mdgate/office";import{pdf as G}from"@mdgate/pdf";import{office as p}from"@mdgate/office";import{pdf as t}from"@mdgate/pdf";function r(){return[p(),t()]}import{create as f}from"@mdgate/core";var C=f(r());function x(o,m){return C(o,m)}export{x as toMarkdown,G as pdf,D as office,z as create,r as all,w as ConvertError};
1
+ import{ConvertError as H,create as O}from"@mdgate/core";import{image as d}from"@mdgate/image";import{office as w}from"@mdgate/office";import{pdf as A}from"@mdgate/pdf";import{office as t}from"@mdgate/office";import{pdf as e}from"@mdgate/pdf";function r(){return[t(),e()]}import{create as p}from"@mdgate/core";var f=p(r());function C(o,m){return f(o,m)}export{C as toMarkdown,A as pdf,w as office,d as image,O as create,r as all,H as ConvertError};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdgate/converters",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Official mdgate converter bundle",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -22,9 +22,10 @@
22
22
  "prepublishOnly": "bun run build"
23
23
  },
24
24
  "dependencies": {
25
- "@mdgate/core": "0.1.1",
25
+ "@mdgate/core": "0.1.3",
26
+ "@mdgate/image": "0.1.1",
26
27
  "@mdgate/office": "0.1.1",
27
- "@mdgate/pdf": "0.1.3"
28
+ "@mdgate/pdf": "0.1.5"
28
29
  },
29
30
  "publishConfig": {
30
31
  "access": "public"