@difizen/libro-common 0.2.34 → 0.2.35

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/es/mime.d.ts CHANGED
@@ -9,5 +9,6 @@ export declare const MIME: {
9
9
  readonly python: "text/x-python";
10
10
  readonly prompt: "application/vnd.libro.prompt+json";
11
11
  readonly odpssql: "application/vnd.libro.sql+json";
12
+ readonly codemirror: "application/vnd.libro.codemirror+json";
12
13
  };
13
14
  //# sourceMappingURL=mime.d.ts.map
package/es/mime.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"mime.d.ts","sourceRoot":"","sources":["../src/mime.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;CAWP,CAAC"}
1
+ {"version":3,"file":"mime.d.ts","sourceRoot":"","sources":["../src/mime.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;CAYP,CAAC"}
package/es/mime.js CHANGED
@@ -8,5 +8,6 @@ export var MIME = {
8
8
  json: 'application/json',
9
9
  python: 'text/x-python',
10
10
  prompt: 'application/vnd.libro.prompt+json',
11
- odpssql: 'application/vnd.libro.sql+json'
11
+ odpssql: 'application/vnd.libro.sql+json',
12
+ codemirror: 'application/vnd.libro.codemirror+json'
12
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-common",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
package/src/mime.ts CHANGED
@@ -9,4 +9,5 @@ export const MIME = {
9
9
  python: 'text/x-python',
10
10
  prompt: 'application/vnd.libro.prompt+json',
11
11
  odpssql: 'application/vnd.libro.sql+json',
12
+ codemirror: 'application/vnd.libro.codemirror+json',
12
13
  } as const;