@lars_hagemann/mediaserver-frontend-plugin-types 1.0.2 → 1.1.0-beta
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/package.json +2 -1
- package/types/plugin.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lars_hagemann/mediaserver-frontend-plugin-types",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0-beta",
|
|
4
4
|
"files": [
|
|
5
5
|
"types"
|
|
6
6
|
],
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "types/plugin.d.ts",
|
|
9
9
|
"repository": {
|
|
10
|
+
"type": "git",
|
|
10
11
|
"url": "https://github.com/de-treelab/mediaserver"
|
|
11
12
|
},
|
|
12
13
|
"scripts": {
|
package/types/plugin.d.ts
CHANGED
|
@@ -10010,4 +10010,5 @@ export type FileTypePlugin = {
|
|
|
10010
10010
|
Render: React.FC<RenderContext>;
|
|
10011
10011
|
Diashow: React.FC<DiashowContext>;
|
|
10012
10012
|
description: string;
|
|
10013
|
+
fetchMode?: "download" | "stream";
|
|
10013
10014
|
};
|