@jskit-ai/mobile-capacitor 0.1.91 → 0.1.92

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": "@jskit-ai/mobile-capacitor",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -13,8 +13,8 @@
13
13
  "dependencies": {
14
14
  "@capacitor/browser": "^7.0.1",
15
15
  "@capacitor/core": "^7.4.3",
16
- "@jskit-ai/kernel": "0.1.156",
17
- "@jskit-ai/shell-web": "0.1.160"
16
+ "@jskit-ai/kernel": "0.1.157",
17
+ "@jskit-ai/shell-web": "0.1.161"
18
18
  },
19
19
  "description": "Thin Capacitor client integration for JSKIT mobile-shell launch routing and auth callback completion.",
20
20
  "jskit": {
@@ -75,8 +75,8 @@
75
75
  "@capacitor/app": "^7.1.0",
76
76
  "@capacitor/browser": "^7.0.1",
77
77
  "@capacitor/core": "^7.4.3",
78
- "@jskit-ai/kernel": "0.1.156",
79
- "@jskit-ai/shell-web": "0.1.160"
78
+ "@jskit-ai/kernel": "0.1.157",
79
+ "@jskit-ai/shell-web": "0.1.161"
80
80
  },
81
81
  "dev": {
82
82
  "@capacitor/cli": "^7.4.3"
@@ -95,9 +95,6 @@
95
95
  }
96
96
  },
97
97
  "procfile": {},
98
- "vite": {
99
- "proxy": []
100
- },
101
98
  "text": [],
102
99
  "files": [
103
100
  {
@@ -44,7 +44,7 @@ function installCapacitorAwareGlobalFetch({ adapter = null, apiBaseUrl = "", glo
44
44
  class MobileCapacitorClientProvider {
45
45
  static id = "mobile.capacitor.client";
46
46
 
47
- static dependsOn = ["shell.web.client"];
47
+ static startsAfter = ["shell.web.client"];
48
48
 
49
49
  register(app) {
50
50
  if (!app || typeof app.singleton !== "function") {