@microlink/mql 0.13.9 → 0.13.11

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.
@@ -109,12 +109,14 @@ type MediaInfo = {
109
109
  duration?: number;
110
110
  height?: number;
111
111
  palette?: string[];
112
+ size_pretty?: string;
113
+ size?: number;
112
114
  type?: string;
113
115
  url: string;
114
116
  width?: number;
115
117
  }
116
118
 
117
- type MqlResponseData = {
119
+ export type MqlResponseData = {
118
120
  audio?: MediaInfo | null;
119
121
  author?: string | null;
120
122
  date?: string | null;
@@ -794,7 +794,7 @@ const mql = factory({
794
794
  MicrolinkError,
795
795
  got,
796
796
  flatten,
797
- VERSION: '0.13.9'
797
+ VERSION: '0.13.11'
798
798
  });
799
799
 
800
800
  lightweight$1.exports = mql;
@@ -800,7 +800,7 @@
800
800
  MicrolinkError,
801
801
  got,
802
802
  flatten,
803
- VERSION: '0.13.9'
803
+ VERSION: '0.13.11'
804
804
  });
805
805
 
806
806
  lightweight$1.exports = mql;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@microlink/mql",
3
3
  "description": "Microlink Query Language. The official HTTP client to interact with Microlink API for Node.js, browsers & Deno.",
4
4
  "homepage": "https://microlink.io/mql",
5
- "version": "0.13.9",
5
+ "version": "0.13.11",
6
6
  "types": "lightweight/index.d.ts",
7
7
  "exports": {
8
8
  "require": "./src/node.js",