@capacitor/core 5.6.0 → 5.7.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/core",
3
- "version": "5.6.0",
3
+ "version": "5.7.1",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -2,6 +2,7 @@ import type { Plugin } from './definitions';
2
2
  import { WebPlugin } from './web-plugin';
3
3
  /******** WEB VIEW PLUGIN ********/
4
4
  export interface WebViewPlugin extends Plugin {
5
+ setServerAssetPath(options: WebViewPath): Promise<void>;
5
6
  setServerBasePath(options: WebViewPath): Promise<void>;
6
7
  getServerBasePath(): Promise<WebViewPath>;
7
8
  persistServerBasePath(): Promise<void>;
@@ -135,6 +135,7 @@ export interface WindowCapacitor {
135
135
  WebView?: {
136
136
  getServerBasePath?: any;
137
137
  setServerBasePath?: any;
138
+ setServerAssetPath?: any;
138
139
  persistServerBasePath?: any;
139
140
  convertFileSrc?: any;
140
141
  };