@michijs/dev-server 0.7.15 → 0.7.16

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.
Files changed (2) hide show
  1. package/bin/types.d.ts +2 -0
  2. package/package.json +1 -1
package/bin/types.d.ts CHANGED
@@ -137,12 +137,14 @@ interface ProtocolHandler {
137
137
  protocol: string;
138
138
  url: string;
139
139
  }
140
+ type HandleLink = "auto" | "preferred" | "not-preferred";
140
141
  export interface ServerWebAppManifest extends WebAppManifest {
141
142
  scope_extensions?: {
142
143
  origin: string;
143
144
  }[];
144
145
  protocol_handlers?: ProtocolHandler[];
145
146
  file_handlers?: FileHandler[];
147
+ handle_links?: HandleLink;
146
148
  }
147
149
  export interface FileHandler {
148
150
  action: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@michijs/dev-server",
3
3
  "license": "MIT",
4
- "version": "0.7.15",
4
+ "version": "0.7.16",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/michijs/dev-server.git"